diff --git a/grammar.d.ts b/grammar.d.ts index 466c347..0358027 100644 --- a/grammar.d.ts +++ b/grammar.d.ts @@ -57,7 +57,8 @@ declare interface IRules { regex: ($: IRules & IExternals) => any; _regex_char: ($: IRules & IExternals) => any; _regex_char_escaped: ($: IRules & IExternals) => any; - _regex_char_list: ($: IRules & IExternals) => any; + _regex_char_class: ($: IRules & IExternals) => any; + _regex_bracket_exp: ($: IRules & IExternals) => any; regex_pattern: ($: IRules & IExternals) => any; regex_flags: ($: IRules & IExternals) => any; regex_constant: ($: IRules & IExternals) => any; diff --git a/grammar.js b/grammar.js index 90afc92..b96386b 100644 --- a/grammar.js +++ b/grammar.js @@ -375,15 +375,37 @@ module.exports = grammar({ _regex_char_escaped: $ => token.immediate(seq('\\', /./)), - _regex_char_list: $ => + _regex_char_class: $ => seq( token.immediate('['), - repeat1(choice($._regex_char_escaped, $._regex_char)), + token.immediate(':'), + choice( + 'alnum', + 'alpha', + 'blank', + 'cntrl', + 'digit', + 'graph', + 'lower', + 'print', + 'punct', + 'space', + 'upper', + 'xdigit' + ), + token.immediate(':'), + token.immediate(']') + ), + + _regex_bracket_exp: $ => + seq( + token.immediate('['), + repeat1(choice($._regex_char_escaped, $._regex_char, $._regex_char_class)), token.immediate(']') ), regex_pattern: $ => { - return repeat1(choice($._regex_char, $._regex_char_escaped, $._regex_char_list)); + return repeat1(choice($._regex_char, $._regex_char_escaped, $._regex_bracket_exp)); }, regex_flags: $ => token.immediate(/[a-z]+/), diff --git a/src/grammar.json b/src/grammar.json index ad5ab82..d0a1a59 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -2583,7 +2583,93 @@ ] } }, - "_regex_char_list": { + "_regex_char_class": { + "type": "SEQ", + "members": [ + { + "type": "IMMEDIATE_TOKEN", + "content": { + "type": "STRING", + "value": "[" + } + }, + { + "type": "IMMEDIATE_TOKEN", + "content": { + "type": "STRING", + "value": ":" + } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "alnum" + }, + { + "type": "STRING", + "value": "alpha" + }, + { + "type": "STRING", + "value": "blank" + }, + { + "type": "STRING", + "value": "cntrl" + }, + { + "type": "STRING", + "value": "digit" + }, + { + "type": "STRING", + "value": "graph" + }, + { + "type": "STRING", + "value": "lower" + }, + { + "type": "STRING", + "value": "print" + }, + { + "type": "STRING", + "value": "punct" + }, + { + "type": "STRING", + "value": "space" + }, + { + "type": "STRING", + "value": "upper" + }, + { + "type": "STRING", + "value": "xdigit" + } + ] + }, + { + "type": "IMMEDIATE_TOKEN", + "content": { + "type": "STRING", + "value": ":" + } + }, + { + "type": "IMMEDIATE_TOKEN", + "content": { + "type": "STRING", + "value": "]" + } + } + ] + }, + "_regex_bracket_exp": { "type": "SEQ", "members": [ { @@ -2605,6 +2691,10 @@ { "type": "SYMBOL", "name": "_regex_char" + }, + { + "type": "SYMBOL", + "name": "_regex_char_class" } ] } @@ -2633,7 +2723,7 @@ }, { "type": "SYMBOL", - "name": "_regex_char_list" + "name": "_regex_bracket_exp" } ] } diff --git a/src/node-types.json b/src/node-types.json index 225e374..0514a0c 100644 --- a/src/node-types.json +++ b/src/node-types.json @@ -5165,6 +5165,18 @@ "type": "^=", "named": false }, + { + "type": "alnum", + "named": false + }, + { + "type": "alpha", + "named": false + }, + { + "type": "blank", + "named": false + }, { "type": "break_statement", "named": true @@ -5173,6 +5185,10 @@ "type": "case", "named": false }, + { + "type": "cntrl", + "named": false + }, { "type": "concatenating_space", "named": true @@ -5189,6 +5205,10 @@ "type": "delete", "named": false }, + { + "type": "digit", + "named": false + }, { "type": "do", "named": false @@ -5221,6 +5241,10 @@ "type": "getline", "named": false }, + { + "type": "graph", + "named": false + }, { "type": "identifier", "named": true @@ -5233,6 +5257,10 @@ "type": "in", "named": false }, + { + "type": "lower", + "named": false + }, { "type": "namespace", "named": false @@ -5253,6 +5281,10 @@ "type": "printf", "named": false }, + { + "type": "punct", + "named": false + }, { "type": "regex_flags", "named": true @@ -5261,14 +5293,26 @@ "type": "return", "named": false }, + { + "type": "space", + "named": false + }, { "type": "switch", "named": false }, + { + "type": "upper", + "named": false + }, { "type": "while", "named": false }, + { + "type": "xdigit", + "named": false + }, { "type": "{", "named": false diff --git a/src/parser.c b/src/parser.c index 5de623a..48e47c7 100644 --- a/src/parser.c +++ b/src/parser.c @@ -6,11 +6,11 @@ #endif #define LANGUAGE_VERSION 14 -#define STATE_COUNT 2102 +#define STATE_COUNT 2107 #define LARGE_STATE_COUNT 219 -#define SYMBOL_COUNT 163 +#define SYMBOL_COUNT 176 #define ALIAS_COUNT 1 -#define TOKEN_COUNT 92 +#define TOKEN_COUNT 104 #define EXTERNAL_TOKEN_COUNT 3 #define FIELD_COUNT 18 #define MAX_ALIAS_SEQUENCE_LENGTH 10 @@ -92,94 +92,107 @@ enum { sym__regex_char = 73, sym__regex_char_escaped = 74, anon_sym_LBRACK2 = 75, - anon_sym_RBRACK2 = 76, - sym_regex_flags = 77, - anon_sym_AT = 78, - anon_sym_COLON_COLON = 79, - aux_sym_number_token1 = 80, - aux_sym_number_token2 = 81, - anon_sym_DQUOTE = 82, - aux_sym_string_token1 = 83, - sym_escape_sequence = 84, - anon_sym_function = 85, - anon_sym_func = 86, - anon_sym_POUND = 87, - aux_sym_comment_token1 = 88, - sym_concatenating_space = 89, - sym__if_else_separator = 90, - sym__no_space = 91, - sym_program = 92, - sym_rule = 93, - sym_pattern = 94, - sym_range_pattern = 95, - sym__special_pattern = 96, - sym_directive = 97, - sym__statement = 98, - sym__statement_separated = 99, - sym__control_statement = 100, - sym_if_statement = 101, - sym_else_clause = 102, - sym_while_statement = 103, - sym_do_while_statement = 104, - sym_for_statement = 105, - sym_for_in_statement = 106, - sym_delete_statement = 107, - sym_exit_statement = 108, - sym_return_statement = 109, - sym_switch_statement = 110, - sym_switch_body = 111, - sym_switch_case = 112, - sym_switch_default = 113, - sym__io_statement = 114, - sym__getline_exp = 115, - sym_getline_input = 116, - sym_getline_file = 117, - sym__print_args = 118, - sym_print_statement = 119, - sym_printf_statement = 120, - sym_redirected_io_statement = 121, - sym_piped_io_statement = 122, - sym_block = 123, - sym__block_content = 124, - sym__exp = 125, - sym_ternary_exp = 126, - sym_binary_exp = 127, - sym__binary_in = 128, - sym_unary_exp = 129, - sym_update_exp = 130, - sym_assignment_exp = 131, - sym_piped_io_exp = 132, - sym_string_concat = 133, - sym_field_ref = 134, - sym_array_ref = 135, - sym_exp_list = 136, - sym_regex = 137, - sym__regex_char_list = 138, - sym_regex_pattern = 139, - sym_regex_constant = 140, - sym_grouping = 141, - sym__primitive = 142, - sym_namespace = 143, - sym_ns_qualified_name = 144, - sym_number = 145, - sym_string = 146, - sym_func_def = 147, - sym_param_list = 148, - sym_func_call = 149, - sym_indirect_func_call = 150, - sym_args = 151, - sym_comment = 152, - aux_sym_program_repeat1 = 153, - aux_sym_if_statement_repeat1 = 154, - aux_sym_switch_body_repeat1 = 155, - aux_sym_block_repeat1 = 156, - aux_sym_exp_list_repeat1 = 157, - aux_sym__regex_char_list_repeat1 = 158, - aux_sym_regex_pattern_repeat1 = 159, - aux_sym_string_repeat1 = 160, - aux_sym_param_list_repeat1 = 161, - aux_sym_args_repeat1 = 162, - anon_alias_sym_namespace = 163, + anon_sym_COLON2 = 76, + anon_sym_alnum = 77, + anon_sym_alpha = 78, + anon_sym_blank = 79, + anon_sym_cntrl = 80, + anon_sym_digit = 81, + anon_sym_graph = 82, + anon_sym_lower = 83, + anon_sym_punct = 84, + anon_sym_space = 85, + anon_sym_upper = 86, + anon_sym_xdigit = 87, + anon_sym_RBRACK2 = 88, + sym_regex_flags = 89, + anon_sym_AT = 90, + anon_sym_COLON_COLON = 91, + aux_sym_number_token1 = 92, + aux_sym_number_token2 = 93, + anon_sym_DQUOTE = 94, + aux_sym_string_token1 = 95, + sym_escape_sequence = 96, + anon_sym_function = 97, + anon_sym_func = 98, + anon_sym_POUND = 99, + aux_sym_comment_token1 = 100, + sym_concatenating_space = 101, + sym__if_else_separator = 102, + sym__no_space = 103, + sym_program = 104, + sym_rule = 105, + sym_pattern = 106, + sym_range_pattern = 107, + sym__special_pattern = 108, + sym_directive = 109, + sym__statement = 110, + sym__statement_separated = 111, + sym__control_statement = 112, + sym_if_statement = 113, + sym_else_clause = 114, + sym_while_statement = 115, + sym_do_while_statement = 116, + sym_for_statement = 117, + sym_for_in_statement = 118, + sym_delete_statement = 119, + sym_exit_statement = 120, + sym_return_statement = 121, + sym_switch_statement = 122, + sym_switch_body = 123, + sym_switch_case = 124, + sym_switch_default = 125, + sym__io_statement = 126, + sym__getline_exp = 127, + sym_getline_input = 128, + sym_getline_file = 129, + sym__print_args = 130, + sym_print_statement = 131, + sym_printf_statement = 132, + sym_redirected_io_statement = 133, + sym_piped_io_statement = 134, + sym_block = 135, + sym__block_content = 136, + sym__exp = 137, + sym_ternary_exp = 138, + sym_binary_exp = 139, + sym__binary_in = 140, + sym_unary_exp = 141, + sym_update_exp = 142, + sym_assignment_exp = 143, + sym_piped_io_exp = 144, + sym_string_concat = 145, + sym_field_ref = 146, + sym_array_ref = 147, + sym_exp_list = 148, + sym_regex = 149, + sym__regex_char_class = 150, + sym__regex_bracket_exp = 151, + sym_regex_pattern = 152, + sym_regex_constant = 153, + sym_grouping = 154, + sym__primitive = 155, + sym_namespace = 156, + sym_ns_qualified_name = 157, + sym_number = 158, + sym_string = 159, + sym_func_def = 160, + sym_param_list = 161, + sym_func_call = 162, + sym_indirect_func_call = 163, + sym_args = 164, + sym_comment = 165, + aux_sym_program_repeat1 = 166, + aux_sym_if_statement_repeat1 = 167, + aux_sym_switch_body_repeat1 = 168, + aux_sym_block_repeat1 = 169, + aux_sym_exp_list_repeat1 = 170, + aux_sym__regex_bracket_exp_repeat1 = 171, + aux_sym_regex_pattern_repeat1 = 172, + aux_sym_string_repeat1 = 173, + aux_sym_param_list_repeat1 = 174, + aux_sym_args_repeat1 = 175, + anon_alias_sym_namespace = 176, }; static const char * const ts_symbol_names[] = { @@ -259,6 +272,18 @@ static const char * const ts_symbol_names[] = { [sym__regex_char] = "_regex_char", [sym__regex_char_escaped] = "_regex_char_escaped", [anon_sym_LBRACK2] = "[", + [anon_sym_COLON2] = ":", + [anon_sym_alnum] = "alnum", + [anon_sym_alpha] = "alpha", + [anon_sym_blank] = "blank", + [anon_sym_cntrl] = "cntrl", + [anon_sym_digit] = "digit", + [anon_sym_graph] = "graph", + [anon_sym_lower] = "lower", + [anon_sym_punct] = "punct", + [anon_sym_space] = "space", + [anon_sym_upper] = "upper", + [anon_sym_xdigit] = "xdigit", [anon_sym_RBRACK2] = "]", [sym_regex_flags] = "regex_flags", [anon_sym_AT] = "@", @@ -321,7 +346,8 @@ static const char * const ts_symbol_names[] = { [sym_array_ref] = "array_ref", [sym_exp_list] = "exp_list", [sym_regex] = "regex", - [sym__regex_char_list] = "_regex_char_list", + [sym__regex_char_class] = "_regex_char_class", + [sym__regex_bracket_exp] = "_regex_bracket_exp", [sym_regex_pattern] = "regex_pattern", [sym_regex_constant] = "regex_constant", [sym_grouping] = "grouping", @@ -341,7 +367,7 @@ static const char * const ts_symbol_names[] = { [aux_sym_switch_body_repeat1] = "switch_body_repeat1", [aux_sym_block_repeat1] = "block_repeat1", [aux_sym_exp_list_repeat1] = "exp_list_repeat1", - [aux_sym__regex_char_list_repeat1] = "_regex_char_list_repeat1", + [aux_sym__regex_bracket_exp_repeat1] = "_regex_bracket_exp_repeat1", [aux_sym_regex_pattern_repeat1] = "regex_pattern_repeat1", [aux_sym_string_repeat1] = "string_repeat1", [aux_sym_param_list_repeat1] = "param_list_repeat1", @@ -426,6 +452,18 @@ static const TSSymbol ts_symbol_map[] = { [sym__regex_char] = sym__regex_char, [sym__regex_char_escaped] = sym__regex_char_escaped, [anon_sym_LBRACK2] = anon_sym_LBRACK, + [anon_sym_COLON2] = anon_sym_COLON, + [anon_sym_alnum] = anon_sym_alnum, + [anon_sym_alpha] = anon_sym_alpha, + [anon_sym_blank] = anon_sym_blank, + [anon_sym_cntrl] = anon_sym_cntrl, + [anon_sym_digit] = anon_sym_digit, + [anon_sym_graph] = anon_sym_graph, + [anon_sym_lower] = anon_sym_lower, + [anon_sym_punct] = anon_sym_punct, + [anon_sym_space] = anon_sym_space, + [anon_sym_upper] = anon_sym_upper, + [anon_sym_xdigit] = anon_sym_xdigit, [anon_sym_RBRACK2] = anon_sym_RBRACK, [sym_regex_flags] = sym_regex_flags, [anon_sym_AT] = anon_sym_AT, @@ -488,7 +526,8 @@ static const TSSymbol ts_symbol_map[] = { [sym_array_ref] = sym_array_ref, [sym_exp_list] = sym_exp_list, [sym_regex] = sym_regex, - [sym__regex_char_list] = sym__regex_char_list, + [sym__regex_char_class] = sym__regex_char_class, + [sym__regex_bracket_exp] = sym__regex_bracket_exp, [sym_regex_pattern] = sym_regex_pattern, [sym_regex_constant] = sym_regex_constant, [sym_grouping] = sym_grouping, @@ -508,7 +547,7 @@ static const TSSymbol ts_symbol_map[] = { [aux_sym_switch_body_repeat1] = aux_sym_switch_body_repeat1, [aux_sym_block_repeat1] = aux_sym_block_repeat1, [aux_sym_exp_list_repeat1] = aux_sym_exp_list_repeat1, - [aux_sym__regex_char_list_repeat1] = aux_sym__regex_char_list_repeat1, + [aux_sym__regex_bracket_exp_repeat1] = aux_sym__regex_bracket_exp_repeat1, [aux_sym_regex_pattern_repeat1] = aux_sym_regex_pattern_repeat1, [aux_sym_string_repeat1] = aux_sym_string_repeat1, [aux_sym_param_list_repeat1] = aux_sym_param_list_repeat1, @@ -821,6 +860,54 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, + [anon_sym_COLON2] = { + .visible = true, + .named = false, + }, + [anon_sym_alnum] = { + .visible = true, + .named = false, + }, + [anon_sym_alpha] = { + .visible = true, + .named = false, + }, + [anon_sym_blank] = { + .visible = true, + .named = false, + }, + [anon_sym_cntrl] = { + .visible = true, + .named = false, + }, + [anon_sym_digit] = { + .visible = true, + .named = false, + }, + [anon_sym_graph] = { + .visible = true, + .named = false, + }, + [anon_sym_lower] = { + .visible = true, + .named = false, + }, + [anon_sym_punct] = { + .visible = true, + .named = false, + }, + [anon_sym_space] = { + .visible = true, + .named = false, + }, + [anon_sym_upper] = { + .visible = true, + .named = false, + }, + [anon_sym_xdigit] = { + .visible = true, + .named = false, + }, [anon_sym_RBRACK2] = { .visible = true, .named = false, @@ -1069,7 +1156,11 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, - [sym__regex_char_list] = { + [sym__regex_char_class] = { + .visible = false, + .named = true, + }, + [sym__regex_bracket_exp] = { .visible = false, .named = true, }, @@ -1149,7 +1240,7 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = false, }, - [aux_sym__regex_char_list_repeat1] = { + [aux_sym__regex_bracket_exp_repeat1] = { .visible = false, .named = false, }, @@ -1356,150 +1447,150 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [0] = 0, [1] = 1, [2] = 2, - [3] = 2, - [4] = 4, - [5] = 4, - [6] = 6, + [3] = 3, + [4] = 2, + [5] = 5, + [6] = 3, [7] = 7, - [8] = 7, - [9] = 4, - [10] = 7, - [11] = 4, - [12] = 7, + [8] = 5, + [9] = 3, + [10] = 5, + [11] = 3, + [12] = 5, [13] = 13, [14] = 14, [15] = 15, [16] = 16, [17] = 17, [18] = 18, - [19] = 19, + [19] = 14, [20] = 20, [21] = 21, [22] = 22, - [23] = 13, + [23] = 23, [24] = 24, [25] = 25, - [26] = 13, - [27] = 24, - [28] = 14, - [29] = 19, - [30] = 13, - [31] = 16, + [26] = 26, + [27] = 13, + [28] = 28, + [29] = 29, + [30] = 30, + [31] = 17, [32] = 32, - [33] = 25, + [33] = 33, [34] = 34, - [35] = 35, + [35] = 33, [36] = 36, - [37] = 36, - [38] = 38, - [39] = 39, - [40] = 39, - [41] = 41, - [42] = 39, - [43] = 43, - [44] = 44, - [45] = 38, - [46] = 22, - [47] = 21, - [48] = 36, - [49] = 20, - [50] = 35, - [51] = 17, - [52] = 52, - [53] = 34, - [54] = 15, - [55] = 55, - [56] = 18, - [57] = 20, - [58] = 39, - [59] = 59, - [60] = 32, - [61] = 16, - [62] = 19, - [63] = 21, - [64] = 18, - [65] = 22, - [66] = 14, - [67] = 55, - [68] = 38, - [69] = 24, - [70] = 38, - [71] = 36, - [72] = 38, - [73] = 25, - [74] = 35, - [75] = 25, - [76] = 39, - [77] = 32, - [78] = 36, - [79] = 52, - [80] = 17, - [81] = 24, - [82] = 17, - [83] = 52, - [84] = 15, - [85] = 55, - [86] = 18, - [87] = 14, - [88] = 19, - [89] = 16, - [90] = 32, - [91] = 15, - [92] = 34, - [93] = 20, - [94] = 21, - [95] = 22, - [96] = 21, - [97] = 35, - [98] = 34, - [99] = 22, - [100] = 20, - [101] = 55, - [102] = 18, - [103] = 55, - [104] = 34, - [105] = 35, - [106] = 36, - [107] = 38, - [108] = 39, - [109] = 25, - [110] = 34, - [111] = 15, - [112] = 13, - [113] = 24, - [114] = 35, - [115] = 17, - [116] = 14, - [117] = 52, - [118] = 19, - [119] = 52, - [120] = 16, - [121] = 15, - [122] = 55, - [123] = 18, - [124] = 20, - [125] = 21, - [126] = 22, - [127] = 32, - [128] = 25, - [129] = 13, - [130] = 17, - [131] = 52, - [132] = 24, - [133] = 14, - [134] = 19, - [135] = 16, - [136] = 32, + [37] = 25, + [38] = 15, + [39] = 16, + [40] = 18, + [41] = 14, + [42] = 32, + [43] = 20, + [44] = 21, + [45] = 17, + [46] = 46, + [47] = 22, + [48] = 23, + [49] = 34, + [50] = 24, + [51] = 30, + [52] = 26, + [53] = 13, + [54] = 28, + [55] = 29, + [56] = 30, + [57] = 17, + [58] = 32, + [59] = 33, + [60] = 29, + [61] = 34, + [62] = 36, + [63] = 25, + [64] = 15, + [65] = 16, + [66] = 18, + [67] = 14, + [68] = 20, + [69] = 21, + [70] = 22, + [71] = 23, + [72] = 24, + [73] = 28, + [74] = 26, + [75] = 13, + [76] = 28, + [77] = 29, + [78] = 30, + [79] = 33, + [80] = 32, + [81] = 33, + [82] = 34, + [83] = 36, + [84] = 25, + [85] = 15, + [86] = 16, + [87] = 18, + [88] = 26, + [89] = 20, + [90] = 21, + [91] = 32, + [92] = 22, + [93] = 23, + [94] = 24, + [95] = 36, + [96] = 26, + [97] = 13, + [98] = 28, + [99] = 29, + [100] = 30, + [101] = 24, + [102] = 17, + [103] = 32, + [104] = 33, + [105] = 23, + [106] = 106, + [107] = 17, + [108] = 108, + [109] = 36, + [110] = 22, + [111] = 25, + [112] = 30, + [113] = 29, + [114] = 15, + [115] = 28, + [116] = 13, + [117] = 26, + [118] = 21, + [119] = 24, + [120] = 23, + [121] = 16, + [122] = 22, + [123] = 20, + [124] = 21, + [125] = 20, + [126] = 14, + [127] = 18, + [128] = 16, + [129] = 14, + [130] = 15, + [131] = 25, + [132] = 36, + [133] = 34, + [134] = 134, + [135] = 18, + [136] = 34, [137] = 137, - [138] = 137, - [139] = 139, - [140] = 139, + [138] = 138, + [139] = 137, + [140] = 138, [141] = 2, [142] = 142, - [143] = 142, + [143] = 2, [144] = 142, [145] = 142, - [146] = 2, + [146] = 142, [147] = 142, [148] = 142, [149] = 149, @@ -1513,1020 +1604,1020 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [157] = 157, [158] = 158, [159] = 159, - [160] = 160, + [160] = 156, [161] = 155, [162] = 162, [163] = 163, - [164] = 156, - [165] = 158, + [164] = 164, + [165] = 164, [166] = 166, - [167] = 156, - [168] = 168, - [169] = 169, + [167] = 167, + [168] = 167, + [169] = 158, [170] = 156, - [171] = 171, - [172] = 155, - [173] = 157, - [174] = 174, - [175] = 162, + [171] = 162, + [172] = 157, + [173] = 163, + [174] = 159, + [175] = 155, [176] = 176, [177] = 177, - [178] = 159, - [179] = 174, - [180] = 160, - [181] = 163, - [182] = 156, + [178] = 178, + [179] = 155, + [180] = 180, + [181] = 181, + [182] = 182, [183] = 183, [184] = 184, [185] = 185, - [186] = 174, - [187] = 156, - [188] = 155, + [186] = 186, + [187] = 187, + [188] = 188, [189] = 189, [190] = 190, - [191] = 176, - [192] = 171, + [191] = 164, + [192] = 192, [193] = 193, [194] = 194, [195] = 195, - [196] = 163, + [196] = 196, [197] = 197, - [198] = 198, + [198] = 178, [199] = 199, - [200] = 200, + [200] = 164, [201] = 201, - [202] = 202, - [203] = 163, - [204] = 168, - [205] = 174, - [206] = 206, - [207] = 207, - [208] = 169, - [209] = 209, - [210] = 210, - [211] = 157, + [202] = 167, + [203] = 203, + [204] = 204, + [205] = 177, + [206] = 155, + [207] = 181, + [208] = 167, + [209] = 166, + [210] = 180, + [211] = 156, [212] = 212, [213] = 213, - [214] = 177, - [215] = 189, - [216] = 216, - [217] = 217, - [218] = 166, - [219] = 194, - [220] = 189, - [221] = 163, - [222] = 195, - [223] = 189, + [214] = 157, + [215] = 215, + [216] = 176, + [217] = 155, + [218] = 213, + [219] = 176, + [220] = 193, + [221] = 159, + [222] = 222, + [223] = 196, [224] = 224, - [225] = 169, - [226] = 209, - [227] = 216, - [228] = 210, - [229] = 198, - [230] = 183, - [231] = 206, - [232] = 213, - [233] = 162, - [234] = 234, - [235] = 200, - [236] = 202, - [237] = 157, - [238] = 201, - [239] = 239, - [240] = 169, - [241] = 199, - [242] = 197, - [243] = 193, - [244] = 184, - [245] = 207, - [246] = 217, - [247] = 185, - [248] = 190, - [249] = 212, - [250] = 163, + [225] = 187, + [226] = 185, + [227] = 188, + [228] = 184, + [229] = 189, + [230] = 197, + [231] = 201, + [232] = 232, + [233] = 192, + [234] = 194, + [235] = 195, + [236] = 182, + [237] = 199, + [238] = 176, + [239] = 183, + [240] = 190, + [241] = 203, + [242] = 186, + [243] = 215, + [244] = 164, + [245] = 204, + [246] = 157, + [247] = 164, + [248] = 212, + [249] = 213, + [250] = 213, [251] = 251, [252] = 252, - [253] = 169, + [253] = 224, [254] = 254, - [255] = 255, - [256] = 202, - [257] = 162, - [258] = 258, - [259] = 234, - [260] = 239, - [261] = 261, - [262] = 202, - [263] = 263, - [264] = 224, + [255] = 222, + [256] = 159, + [257] = 257, + [258] = 192, + [259] = 259, + [260] = 260, + [261] = 232, + [262] = 262, + [263] = 176, + [264] = 192, [265] = 265, [266] = 266, [267] = 267, - [268] = 169, + [268] = 176, [269] = 269, - [270] = 267, - [271] = 255, - [272] = 202, - [273] = 252, - [274] = 251, - [275] = 254, - [276] = 202, - [277] = 269, - [278] = 266, - [279] = 263, - [280] = 258, - [281] = 265, - [282] = 261, + [270] = 265, + [271] = 251, + [272] = 269, + [273] = 267, + [274] = 192, + [275] = 266, + [276] = 254, + [277] = 252, + [278] = 262, + [279] = 192, + [280] = 257, + [281] = 259, + [282] = 260, [283] = 156, [284] = 155, - [285] = 176, - [286] = 160, - [287] = 287, - [288] = 288, + [285] = 157, + [286] = 286, + [287] = 159, + [288] = 164, [289] = 162, - [290] = 290, - [291] = 157, - [292] = 166, - [293] = 163, + [290] = 180, + [291] = 178, + [292] = 163, + [293] = 293, [294] = 294, - [295] = 159, - [296] = 171, - [297] = 174, - [298] = 166, - [299] = 162, - [300] = 168, - [301] = 288, - [302] = 169, - [303] = 159, - [304] = 176, - [305] = 168, - [306] = 174, - [307] = 160, - [308] = 287, - [309] = 185, - [310] = 177, - [311] = 166, - [312] = 176, - [313] = 224, - [314] = 201, - [315] = 199, - [316] = 209, - [317] = 216, - [318] = 159, - [319] = 197, - [320] = 171, - [321] = 166, - [322] = 160, - [323] = 189, - [324] = 177, - [325] = 213, - [326] = 185, - [327] = 168, - [328] = 189, - [329] = 194, - [330] = 198, - [331] = 200, - [332] = 195, - [333] = 185, - [334] = 202, - [335] = 162, - [336] = 234, - [337] = 160, - [338] = 239, - [339] = 193, - [340] = 176, - [341] = 183, - [342] = 210, - [343] = 207, - [344] = 190, - [345] = 184, - [346] = 206, - [347] = 217, - [348] = 159, - [349] = 212, - [350] = 168, - [351] = 162, - [352] = 159, - [353] = 269, - [354] = 265, - [355] = 184, - [356] = 185, - [357] = 261, - [358] = 177, - [359] = 266, - [360] = 190, - [361] = 195, - [362] = 171, - [363] = 209, - [364] = 216, - [365] = 255, - [366] = 210, - [367] = 183, - [368] = 206, - [369] = 200, - [370] = 224, - [371] = 193, - [372] = 156, - [373] = 254, - [374] = 252, - [375] = 375, - [376] = 267, - [377] = 239, - [378] = 258, - [379] = 201, - [380] = 199, - [381] = 263, - [382] = 197, - [383] = 160, - [384] = 176, - [385] = 162, - [386] = 194, - [387] = 251, - [388] = 168, - [389] = 234, - [390] = 212, - [391] = 171, - [392] = 224, - [393] = 177, - [394] = 207, - [395] = 156, - [396] = 213, - [397] = 234, - [398] = 217, - [399] = 198, - [400] = 155, - [401] = 239, - [402] = 166, + [295] = 295, + [296] = 181, + [297] = 177, + [298] = 159, + [299] = 178, + [300] = 166, + [301] = 167, + [302] = 162, + [303] = 177, + [304] = 180, + [305] = 163, + [306] = 167, + [307] = 190, + [308] = 176, + [309] = 178, + [310] = 295, + [311] = 294, + [312] = 180, + [313] = 166, + [314] = 197, + [315] = 177, + [316] = 224, + [317] = 185, + [318] = 186, + [319] = 222, + [320] = 215, + [321] = 187, + [322] = 190, + [323] = 159, + [324] = 181, + [325] = 163, + [326] = 232, + [327] = 195, + [328] = 194, + [329] = 177, + [330] = 204, + [331] = 192, + [332] = 178, + [333] = 182, + [334] = 162, + [335] = 163, + [336] = 180, + [337] = 203, + [338] = 201, + [339] = 190, + [340] = 193, + [341] = 159, + [342] = 189, + [343] = 162, + [344] = 184, + [345] = 212, + [346] = 213, + [347] = 213, + [348] = 196, + [349] = 199, + [350] = 183, + [351] = 188, + [352] = 178, + [353] = 190, + [354] = 159, + [355] = 196, + [356] = 177, + [357] = 251, + [358] = 265, + [359] = 359, + [360] = 222, + [361] = 224, + [362] = 259, + [363] = 252, + [364] = 266, + [365] = 166, + [366] = 232, + [367] = 215, + [368] = 181, + [369] = 197, + [370] = 193, + [371] = 155, + [372] = 195, + [373] = 194, + [374] = 180, + [375] = 262, + [376] = 212, + [377] = 269, + [378] = 163, + [379] = 189, + [380] = 260, + [381] = 187, + [382] = 181, + [383] = 188, + [384] = 186, + [385] = 232, + [386] = 166, + [387] = 162, + [388] = 185, + [389] = 267, + [390] = 155, + [391] = 184, + [392] = 201, + [393] = 182, + [394] = 222, + [395] = 254, + [396] = 183, + [397] = 199, + [398] = 156, + [399] = 204, + [400] = 257, + [401] = 203, + [402] = 224, [403] = 403, - [404] = 263, - [405] = 197, - [406] = 184, - [407] = 185, - [408] = 193, - [409] = 213, - [410] = 190, - [411] = 198, - [412] = 412, - [413] = 157, - [414] = 199, - [415] = 207, - [416] = 266, - [417] = 254, - [418] = 190, - [419] = 163, + [404] = 212, + [405] = 262, + [406] = 259, + [407] = 157, + [408] = 260, + [409] = 266, + [410] = 252, + [411] = 265, + [412] = 224, + [413] = 232, + [414] = 197, + [415] = 166, + [416] = 193, + [417] = 193, + [418] = 199, + [419] = 201, [420] = 269, - [421] = 265, - [422] = 261, - [423] = 255, - [424] = 258, - [425] = 201, - [426] = 251, - [427] = 193, - [428] = 252, - [429] = 212, - [430] = 206, - [431] = 183, - [432] = 234, - [433] = 210, - [434] = 216, - [435] = 217, - [436] = 209, - [437] = 195, - [438] = 177, - [439] = 267, - [440] = 239, - [441] = 198, - [442] = 224, - [443] = 171, - [444] = 195, - [445] = 163, - [446] = 200, - [447] = 375, - [448] = 194, - [449] = 209, - [450] = 216, - [451] = 210, - [452] = 183, - [453] = 206, - [454] = 184, - [455] = 252, + [421] = 267, + [422] = 196, + [423] = 182, + [424] = 189, + [425] = 164, + [426] = 194, + [427] = 359, + [428] = 204, + [429] = 203, + [430] = 183, + [431] = 251, + [432] = 254, + [433] = 164, + [434] = 182, + [435] = 201, + [436] = 184, + [437] = 185, + [438] = 186, + [439] = 187, + [440] = 187, + [441] = 195, + [442] = 186, + [443] = 181, + [444] = 185, + [445] = 254, + [446] = 257, + [447] = 447, + [448] = 183, + [449] = 197, + [450] = 222, + [451] = 215, + [452] = 184, + [453] = 203, + [454] = 204, + [455] = 188, [456] = 199, - [457] = 197, - [458] = 193, - [459] = 162, - [460] = 184, - [461] = 198, - [462] = 239, - [463] = 224, - [464] = 197, - [465] = 252, - [466] = 412, - [467] = 234, - [468] = 206, - [469] = 169, - [470] = 183, - [471] = 190, - [472] = 158, - [473] = 199, - [474] = 169, - [475] = 403, - [476] = 210, - [477] = 209, - [478] = 195, - [479] = 216, - [480] = 202, - [481] = 158, + [457] = 190, + [458] = 224, + [459] = 176, + [460] = 185, + [461] = 193, + [462] = 403, + [463] = 254, + [464] = 182, + [465] = 158, + [466] = 184, + [467] = 176, + [468] = 186, + [469] = 197, + [470] = 232, + [471] = 201, + [472] = 183, + [473] = 447, + [474] = 204, + [475] = 203, + [476] = 199, + [477] = 159, + [478] = 222, + [479] = 187, + [480] = 265, + [481] = 257, [482] = 482, - [483] = 261, - [484] = 255, - [485] = 258, - [486] = 202, - [487] = 263, - [488] = 266, - [489] = 251, - [490] = 254, - [491] = 252, - [492] = 492, + [483] = 483, + [484] = 267, + [485] = 485, + [486] = 269, + [487] = 259, + [488] = 252, + [489] = 266, + [490] = 192, + [491] = 260, + [492] = 254, [493] = 493, [494] = 494, - [495] = 267, - [496] = 265, - [497] = 269, - [498] = 498, - [499] = 492, - [500] = 493, - [501] = 494, - [502] = 498, - [503] = 482, + [495] = 192, + [496] = 251, + [497] = 262, + [498] = 158, + [499] = 494, + [500] = 485, + [501] = 482, + [502] = 493, + [503] = 483, [504] = 158, [505] = 158, - [506] = 176, - [507] = 166, - [508] = 185, - [509] = 160, - [510] = 176, - [511] = 159, - [512] = 166, - [513] = 168, - [514] = 185, - [515] = 162, - [516] = 159, - [517] = 162, - [518] = 168, - [519] = 171, - [520] = 224, - [521] = 239, - [522] = 177, - [523] = 234, - [524] = 160, - [525] = 258, - [526] = 210, - [527] = 269, - [528] = 224, - [529] = 171, - [530] = 217, - [531] = 255, - [532] = 261, - [533] = 201, - [534] = 263, - [535] = 267, - [536] = 265, - [537] = 198, - [538] = 184, - [539] = 190, - [540] = 251, - [541] = 254, - [542] = 213, - [543] = 184, - [544] = 197, - [545] = 199, - [546] = 288, - [547] = 287, - [548] = 207, - [549] = 194, - [550] = 252, - [551] = 177, - [552] = 266, - [553] = 239, - [554] = 206, - [555] = 183, - [556] = 200, - [557] = 166, - [558] = 234, - [559] = 375, + [506] = 178, + [507] = 180, + [508] = 163, + [509] = 190, + [510] = 178, + [511] = 162, + [512] = 180, + [513] = 177, + [514] = 222, + [515] = 181, + [516] = 224, + [517] = 232, + [518] = 162, + [519] = 166, + [520] = 159, + [521] = 190, + [522] = 159, + [523] = 177, + [524] = 163, + [525] = 222, + [526] = 259, + [527] = 266, + [528] = 265, + [529] = 195, + [530] = 254, + [531] = 251, + [532] = 257, + [533] = 181, + [534] = 215, + [535] = 182, + [536] = 197, + [537] = 188, + [538] = 359, + [539] = 194, + [540] = 186, + [541] = 182, + [542] = 201, + [543] = 196, + [544] = 212, + [545] = 295, + [546] = 260, + [547] = 294, + [548] = 252, + [549] = 224, + [550] = 199, + [551] = 203, + [552] = 184, + [553] = 185, + [554] = 178, + [555] = 267, + [556] = 166, + [557] = 232, + [558] = 183, + [559] = 204, [560] = 193, - [561] = 195, - [562] = 212, - [563] = 206, - [564] = 209, - [565] = 216, - [566] = 155, - [567] = 190, - [568] = 216, - [569] = 199, - [570] = 197, - [571] = 287, - [572] = 209, - [573] = 288, - [574] = 210, - [575] = 176, + [561] = 269, + [562] = 204, + [563] = 189, + [564] = 187, + [565] = 262, + [566] = 178, + [567] = 187, + [568] = 294, + [569] = 203, + [570] = 199, + [571] = 571, + [572] = 295, + [573] = 254, + [574] = 201, + [575] = 183, [576] = 193, - [577] = 252, - [578] = 578, - [579] = 198, - [580] = 166, - [581] = 195, - [582] = 183, - [583] = 583, - [584] = 156, - [585] = 156, - [586] = 155, - [587] = 157, - [588] = 176, - [589] = 288, - [590] = 157, - [591] = 287, - [592] = 163, - [593] = 163, - [594] = 156, - [595] = 185, - [596] = 156, - [597] = 234, - [598] = 163, - [599] = 287, - [600] = 239, - [601] = 288, - [602] = 185, - [603] = 169, - [604] = 176, - [605] = 224, - [606] = 169, - [607] = 163, - [608] = 608, - [609] = 239, - [610] = 169, - [611] = 611, - [612] = 224, - [613] = 261, - [614] = 614, - [615] = 255, - [616] = 265, - [617] = 269, - [618] = 252, - [619] = 202, - [620] = 620, - [621] = 611, - [622] = 169, - [623] = 258, - [624] = 620, - [625] = 614, - [626] = 614, - [627] = 627, - [628] = 202, - [629] = 254, - [630] = 266, - [631] = 614, - [632] = 176, - [633] = 614, - [634] = 614, - [635] = 234, - [636] = 636, - [637] = 637, - [638] = 156, - [639] = 267, - [640] = 251, - [641] = 156, - [642] = 263, + [577] = 186, + [578] = 185, + [579] = 180, + [580] = 197, + [581] = 184, + [582] = 156, + [583] = 155, + [584] = 584, + [585] = 157, + [586] = 180, + [587] = 155, + [588] = 156, + [589] = 295, + [590] = 164, + [591] = 164, + [592] = 190, + [593] = 155, + [594] = 155, + [595] = 157, + [596] = 294, + [597] = 164, + [598] = 295, + [599] = 180, + [600] = 232, + [601] = 176, + [602] = 224, + [603] = 222, + [604] = 294, + [605] = 176, + [606] = 164, + [607] = 190, + [608] = 259, + [609] = 262, + [610] = 251, + [611] = 176, + [612] = 180, + [613] = 265, + [614] = 176, + [615] = 615, + [616] = 252, + [617] = 617, + [618] = 266, + [619] = 260, + [620] = 155, + [621] = 621, + [622] = 615, + [623] = 269, + [624] = 267, + [625] = 232, + [626] = 615, + [627] = 257, + [628] = 192, + [629] = 629, + [630] = 615, + [631] = 617, + [632] = 192, + [633] = 633, + [634] = 222, + [635] = 615, + [636] = 615, + [637] = 254, + [638] = 224, + [639] = 639, + [640] = 640, + [641] = 621, + [642] = 155, [643] = 643, - [644] = 252, - [645] = 166, - [646] = 251, - [647] = 163, - [648] = 163, - [649] = 263, - [650] = 156, - [651] = 258, - [652] = 255, - [653] = 261, - [654] = 176, - [655] = 265, - [656] = 269, - [657] = 254, - [658] = 266, - [659] = 643, - [660] = 643, - [661] = 661, - [662] = 661, - [663] = 637, - [664] = 643, - [665] = 627, - [666] = 661, - [667] = 661, - [668] = 661, - [669] = 661, - [670] = 643, - [671] = 661, - [672] = 672, - [673] = 661, - [674] = 643, - [675] = 185, - [676] = 672, - [677] = 661, - [678] = 643, - [679] = 672, - [680] = 672, - [681] = 661, - [682] = 156, + [644] = 265, + [645] = 645, + [646] = 643, + [647] = 643, + [648] = 643, + [649] = 645, + [650] = 645, + [651] = 643, + [652] = 254, + [653] = 640, + [654] = 180, + [655] = 655, + [656] = 178, + [657] = 645, + [658] = 190, + [659] = 629, + [660] = 633, + [661] = 257, + [662] = 251, + [663] = 655, + [664] = 655, + [665] = 643, + [666] = 655, + [667] = 655, + [668] = 643, + [669] = 655, + [670] = 164, + [671] = 252, + [672] = 164, + [673] = 643, + [674] = 266, + [675] = 155, + [676] = 643, + [677] = 260, + [678] = 645, + [679] = 262, + [680] = 645, + [681] = 655, + [682] = 643, [683] = 643, - [684] = 202, - [685] = 661, - [686] = 672, + [684] = 259, + [685] = 655, + [686] = 192, [687] = 643, - [688] = 643, - [689] = 608, - [690] = 661, - [691] = 661, - [692] = 636, + [688] = 645, + [689] = 645, + [690] = 269, + [691] = 643, + [692] = 267, [693] = 643, - [694] = 267, - [695] = 672, - [696] = 672, - [697] = 672, - [698] = 672, - [699] = 661, - [700] = 672, - [701] = 672, - [702] = 661, - [703] = 202, - [704] = 643, - [705] = 672, - [706] = 672, - [707] = 643, + [694] = 639, + [695] = 155, + [696] = 645, + [697] = 645, + [698] = 645, + [699] = 645, + [700] = 655, + [701] = 645, + [702] = 655, + [703] = 645, + [704] = 655, + [705] = 192, + [706] = 655, + [707] = 645, [708] = 643, - [709] = 643, - [710] = 643, - [711] = 672, - [712] = 672, + [709] = 645, + [710] = 655, + [711] = 655, + [712] = 655, [713] = 713, [714] = 714, [715] = 715, - [716] = 155, + [716] = 716, [717] = 717, [718] = 718, [719] = 719, - [720] = 720, - [721] = 720, - [722] = 720, - [723] = 720, - [724] = 724, - [725] = 715, - [726] = 719, - [727] = 717, - [728] = 718, - [729] = 717, - [730] = 718, - [731] = 714, - [732] = 156, - [733] = 733, - [734] = 717, - [735] = 719, - [736] = 714, - [737] = 733, - [738] = 733, - [739] = 733, - [740] = 740, - [741] = 714, - [742] = 224, - [743] = 163, - [744] = 163, - [745] = 733, - [746] = 717, - [747] = 724, - [748] = 234, - [749] = 239, - [750] = 718, - [751] = 719, - [752] = 720, - [753] = 753, - [754] = 718, - [755] = 724, - [756] = 717, - [757] = 714, - [758] = 169, - [759] = 185, - [760] = 714, - [761] = 733, - [762] = 715, - [763] = 720, - [764] = 715, - [765] = 719, + [720] = 164, + [721] = 718, + [722] = 718, + [723] = 723, + [724] = 719, + [725] = 156, + [726] = 714, + [727] = 727, + [728] = 723, + [729] = 716, + [730] = 727, + [731] = 731, + [732] = 155, + [733] = 715, + [734] = 713, + [735] = 718, + [736] = 713, + [737] = 716, + [738] = 164, + [739] = 155, + [740] = 176, + [741] = 715, + [742] = 176, + [743] = 727, + [744] = 723, + [745] = 716, + [746] = 713, + [747] = 222, + [748] = 224, + [749] = 715, + [750] = 719, + [751] = 716, + [752] = 713, + [753] = 715, + [754] = 727, + [755] = 232, + [756] = 719, + [757] = 715, + [758] = 719, + [759] = 190, + [760] = 713, + [761] = 723, + [762] = 716, + [763] = 727, + [764] = 723, + [765] = 714, [766] = 718, - [767] = 724, - [768] = 719, - [769] = 156, - [770] = 715, - [771] = 733, - [772] = 724, - [773] = 715, - [774] = 169, - [775] = 724, - [776] = 776, + [767] = 719, + [768] = 723, + [769] = 727, + [770] = 770, + [771] = 718, + [772] = 718, + [773] = 714, + [774] = 714, + [775] = 714, + [776] = 157, [777] = 777, [778] = 778, [779] = 779, [780] = 780, [781] = 781, [782] = 782, - [783] = 779, - [784] = 776, - [785] = 778, + [783] = 783, + [784] = 784, + [785] = 785, [786] = 786, - [787] = 777, - [788] = 788, - [789] = 777, - [790] = 788, + [787] = 787, + [788] = 782, + [789] = 789, + [790] = 781, [791] = 791, [792] = 780, [793] = 793, - [794] = 794, + [794] = 779, [795] = 795, - [796] = 780, + [796] = 796, [797] = 797, - [798] = 781, - [799] = 782, - [800] = 776, - [801] = 801, - [802] = 802, - [803] = 266, - [804] = 254, - [805] = 805, - [806] = 802, - [807] = 269, - [808] = 805, - [809] = 802, - [810] = 805, - [811] = 801, - [812] = 795, - [813] = 793, - [814] = 776, - [815] = 795, - [816] = 795, - [817] = 776, - [818] = 805, - [819] = 795, - [820] = 252, - [821] = 795, - [822] = 793, - [823] = 265, - [824] = 776, - [825] = 802, - [826] = 795, - [827] = 793, - [828] = 261, - [829] = 776, - [830] = 794, - [831] = 776, - [832] = 793, - [833] = 833, - [834] = 777, - [835] = 788, - [836] = 786, + [798] = 777, + [799] = 799, + [800] = 267, + [801] = 785, + [802] = 796, + [803] = 799, + [804] = 804, + [805] = 784, + [806] = 789, + [807] = 777, + [808] = 269, + [809] = 797, + [810] = 777, + [811] = 259, + [812] = 791, + [813] = 797, + [814] = 789, + [815] = 796, + [816] = 793, + [817] = 791, + [818] = 796, + [819] = 786, + [820] = 796, + [821] = 789, + [822] = 799, + [823] = 799, + [824] = 795, + [825] = 785, + [826] = 784, + [827] = 783, + [828] = 260, + [829] = 789, + [830] = 782, + [831] = 781, + [832] = 780, + [833] = 266, + [834] = 779, + [835] = 787, + [836] = 778, [837] = 778, - [838] = 779, - [839] = 780, - [840] = 781, - [841] = 782, + [838] = 804, + [839] = 779, + [840] = 780, + [841] = 781, [842] = 782, - [843] = 781, - [844] = 776, - [845] = 780, - [846] = 255, - [847] = 258, - [848] = 779, - [849] = 778, - [850] = 786, - [851] = 788, - [852] = 777, - [853] = 853, - [854] = 793, - [855] = 795, - [856] = 805, - [857] = 802, - [858] = 776, + [843] = 783, + [844] = 784, + [845] = 785, + [846] = 786, + [847] = 796, + [848] = 795, + [849] = 789, + [850] = 795, + [851] = 252, + [852] = 265, + [853] = 796, + [854] = 796, + [855] = 791, + [856] = 787, + [857] = 787, + [858] = 858, [859] = 791, - [860] = 833, - [861] = 782, - [862] = 802, - [863] = 781, + [860] = 777, + [861] = 797, + [862] = 791, + [863] = 793, [864] = 777, - [865] = 779, - [866] = 263, - [867] = 778, - [868] = 805, - [869] = 251, - [870] = 786, - [871] = 788, - [872] = 777, + [865] = 865, + [866] = 789, + [867] = 777, + [868] = 799, + [869] = 770, + [870] = 797, + [871] = 251, + [872] = 799, [873] = 797, - [874] = 782, - [875] = 781, - [876] = 853, + [874] = 257, + [875] = 875, + [876] = 795, [877] = 795, - [878] = 791, - [879] = 795, - [880] = 791, - [881] = 794, - [882] = 805, + [878] = 795, + [879] = 797, + [880] = 777, + [881] = 804, + [882] = 778, [883] = 791, - [884] = 780, - [885] = 791, - [886] = 794, - [887] = 802, - [888] = 794, - [889] = 776, - [890] = 740, - [891] = 797, - [892] = 794, - [893] = 794, - [894] = 777, - [895] = 788, - [896] = 786, - [897] = 778, - [898] = 779, - [899] = 780, - [900] = 781, - [901] = 782, - [902] = 779, - [903] = 782, - [904] = 776, - [905] = 781, - [906] = 780, - [907] = 778, - [908] = 786, - [909] = 779, - [910] = 778, - [911] = 786, - [912] = 788, - [913] = 777, - [914] = 788, - [915] = 915, - [916] = 776, - [917] = 793, - [918] = 795, - [919] = 795, - [920] = 797, - [921] = 805, - [922] = 802, - [923] = 793, - [924] = 795, - [925] = 793, - [926] = 805, - [927] = 802, - [928] = 805, - [929] = 805, - [930] = 802, - [931] = 931, - [932] = 777, - [933] = 788, - [934] = 795, - [935] = 935, - [936] = 915, - [937] = 786, - [938] = 935, - [939] = 778, - [940] = 779, - [941] = 782, - [942] = 781, - [943] = 780, + [884] = 795, + [885] = 795, + [886] = 797, + [887] = 795, + [888] = 888, + [889] = 786, + [890] = 190, + [891] = 891, + [892] = 791, + [893] = 779, + [894] = 891, + [895] = 796, + [896] = 804, + [897] = 780, + [898] = 804, + [899] = 779, + [900] = 780, + [901] = 781, + [902] = 782, + [903] = 783, + [904] = 784, + [905] = 785, + [906] = 786, + [907] = 781, + [908] = 888, + [909] = 789, + [910] = 791, + [911] = 799, + [912] = 785, + [913] = 891, + [914] = 888, + [915] = 791, + [916] = 262, + [917] = 784, + [918] = 783, + [919] = 799, + [920] = 777, + [921] = 795, + [922] = 782, + [923] = 781, + [924] = 780, + [925] = 779, + [926] = 789, + [927] = 777, + [928] = 791, + [929] = 782, + [930] = 783, + [931] = 799, + [932] = 791, + [933] = 797, + [934] = 799, + [935] = 778, + [936] = 795, + [937] = 799, + [938] = 791, + [939] = 795, + [940] = 797, + [941] = 804, + [942] = 777, + [943] = 784, [944] = 779, - [945] = 778, - [946] = 793, - [947] = 786, - [948] = 788, - [949] = 776, - [950] = 777, - [951] = 776, - [952] = 805, - [953] = 802, - [954] = 780, - [955] = 781, - [956] = 782, - [957] = 782, - [958] = 776, - [959] = 782, - [960] = 781, - [961] = 801, - [962] = 781, - [963] = 780, - [964] = 779, - [965] = 795, - [966] = 778, - [967] = 786, - [968] = 788, - [969] = 780, - [970] = 777, - [971] = 793, - [972] = 797, - [973] = 795, - [974] = 801, - [975] = 935, - [976] = 853, - [977] = 793, - [978] = 833, - [979] = 776, - [980] = 753, - [981] = 779, - [982] = 982, - [983] = 833, - [984] = 853, - [985] = 776, - [986] = 794, - [987] = 791, - [988] = 797, - [989] = 801, - [990] = 267, - [991] = 778, - [992] = 202, - [993] = 795, - [994] = 802, - [995] = 202, - [996] = 797, - [997] = 239, - [998] = 169, - [999] = 185, - [1000] = 163, - [1001] = 1001, - [1002] = 982, - [1003] = 935, - [1004] = 801, - [1005] = 793, - [1006] = 805, - [1007] = 776, - [1008] = 1008, - [1009] = 234, - [1010] = 915, - [1011] = 915, - [1012] = 915, - [1013] = 915, - [1014] = 915, - [1015] = 915, - [1016] = 1016, - [1017] = 915, - [1018] = 915, - [1019] = 915, - [1020] = 915, - [1021] = 795, - [1022] = 169, - [1023] = 915, - [1024] = 915, - [1025] = 224, - [1026] = 935, - [1027] = 791, - [1028] = 794, - [1029] = 833, - [1030] = 853, - [1031] = 915, - [1032] = 791, - [1033] = 794, - [1034] = 776, - [1035] = 791, - [1036] = 802, - [1037] = 786, - [1038] = 788, - [1039] = 786, - [1040] = 778, - [1041] = 779, - [1042] = 780, - [1043] = 794, - [1044] = 781, - [1045] = 782, - [1046] = 802, - [1047] = 786, - [1048] = 788, - [1049] = 795, - [1050] = 777, - [1051] = 805, - [1052] = 795, - [1053] = 777, - [1054] = 157, - [1055] = 853, - [1056] = 833, - [1057] = 805, - [1058] = 802, - [1059] = 791, - [1060] = 794, - [1061] = 793, - [1062] = 791, - [1063] = 776, - [1064] = 794, - [1065] = 788, - [1066] = 794, - [1067] = 163, - [1068] = 791, - [1069] = 794, - [1070] = 782, - [1071] = 781, - [1072] = 780, - [1073] = 779, - [1074] = 791, - [1075] = 786, - [1076] = 778, - [1077] = 795, - [1078] = 786, - [1079] = 794, - [1080] = 788, - [1081] = 778, - [1082] = 794, - [1083] = 777, - [1084] = 794, - [1085] = 776, - [1086] = 779, - [1087] = 780, - [1088] = 791, - [1089] = 793, - [1090] = 791, - [1091] = 776, - [1092] = 1016, - [1093] = 781, - [1094] = 794, - [1095] = 776, - [1096] = 795, - [1097] = 782, - [1098] = 1098, - [1099] = 1008, - [1100] = 782, - [1101] = 794, - [1102] = 795, - [1103] = 781, - [1104] = 780, - [1105] = 779, - [1106] = 935, - [1107] = 915, - [1108] = 778, - [1109] = 794, - [1110] = 786, - [1111] = 788, - [1112] = 794, - [1113] = 777, - [1114] = 795, - [1115] = 793, - [1116] = 794, - [1117] = 797, - [1118] = 794, - [1119] = 802, - [1120] = 805, - [1121] = 202, - [1122] = 234, - [1123] = 252, - [1124] = 239, - [1125] = 166, - [1126] = 266, - [1127] = 254, + [945] = 780, + [946] = 192, + [947] = 785, + [948] = 781, + [949] = 782, + [950] = 192, + [951] = 778, + [952] = 786, + [953] = 783, + [954] = 789, + [955] = 176, + [956] = 784, + [957] = 786, + [958] = 785, + [959] = 785, + [960] = 164, + [961] = 784, + [962] = 783, + [963] = 782, + [964] = 781, + [965] = 786, + [966] = 786, + [967] = 791, + [968] = 968, + [969] = 785, + [970] = 795, + [971] = 789, + [972] = 784, + [973] = 783, + [974] = 780, + [975] = 804, + [976] = 796, + [977] = 783, + [978] = 232, + [979] = 778, + [980] = 791, + [981] = 777, + [982] = 778, + [983] = 797, + [984] = 789, + [985] = 985, + [986] = 779, + [987] = 779, + [988] = 780, + [989] = 793, + [990] = 782, + [991] = 176, + [992] = 796, + [993] = 781, + [994] = 783, + [995] = 784, + [996] = 799, + [997] = 785, + [998] = 795, + [999] = 786, + [1000] = 787, + [1001] = 799, + [1002] = 224, + [1003] = 804, + [1004] = 795, + [1005] = 789, + [1006] = 778, + [1007] = 786, + [1008] = 785, + [1009] = 784, + [1010] = 778, + [1011] = 799, + [1012] = 789, + [1013] = 783, + [1014] = 222, + [1015] = 782, + [1016] = 787, + [1017] = 778, + [1018] = 793, + [1019] = 799, + [1020] = 891, + [1021] = 888, + [1022] = 778, + [1023] = 781, + [1024] = 799, + [1025] = 799, + [1026] = 795, + [1027] = 779, + [1028] = 799, + [1029] = 780, + [1030] = 781, + [1031] = 799, + [1032] = 782, + [1033] = 789, + [1034] = 783, + [1035] = 731, + [1036] = 784, + [1037] = 785, + [1038] = 786, + [1039] = 789, + [1040] = 780, + [1041] = 797, + [1042] = 779, + [1043] = 789, + [1044] = 799, + [1045] = 796, + [1046] = 891, + [1047] = 888, + [1048] = 795, + [1049] = 779, + [1050] = 796, + [1051] = 793, + [1052] = 797, + [1053] = 797, + [1054] = 795, + [1055] = 783, + [1056] = 780, + [1057] = 789, + [1058] = 780, + [1059] = 779, + [1060] = 781, + [1061] = 858, + [1062] = 782, + [1063] = 789, + [1064] = 786, + [1065] = 785, + [1066] = 778, + [1067] = 784, + [1068] = 789, + [1069] = 783, + [1070] = 777, + [1071] = 786, + [1072] = 782, + [1073] = 799, + [1074] = 781, + [1075] = 780, + [1076] = 779, + [1077] = 799, + [1078] = 891, + [1079] = 888, + [1080] = 781, + [1081] = 796, + [1082] = 795, + [1083] = 795, + [1084] = 1084, + [1085] = 865, + [1086] = 782, + [1087] = 797, + [1088] = 777, + [1089] = 789, + [1090] = 778, + [1091] = 795, + [1092] = 789, + [1093] = 164, + [1094] = 778, + [1095] = 778, + [1096] = 789, + [1097] = 796, + [1098] = 784, + [1099] = 796, + [1100] = 797, + [1101] = 1084, + [1102] = 799, + [1103] = 779, + [1104] = 791, + [1105] = 777, + [1106] = 780, + [1107] = 777, + [1108] = 795, + [1109] = 795, + [1110] = 254, + [1111] = 781, + [1112] = 782, + [1113] = 786, + [1114] = 785, + [1115] = 799, + [1116] = 789, + [1117] = 783, + [1118] = 784, + [1119] = 785, + [1120] = 786, + [1121] = 1121, + [1122] = 222, + [1123] = 1123, + [1124] = 1124, + [1125] = 254, + [1126] = 1126, + [1127] = 224, [1128] = 1128, [1129] = 1129, - [1130] = 269, - [1131] = 265, - [1132] = 261, - [1133] = 255, - [1134] = 258, - [1135] = 263, - [1136] = 251, - [1137] = 169, + [1130] = 1130, + [1131] = 1131, + [1132] = 1132, + [1133] = 1133, + [1134] = 1134, + [1135] = 1135, + [1136] = 1136, + [1137] = 178, [1138] = 1138, - [1139] = 1139, + [1139] = 232, [1140] = 1140, - [1141] = 1141, - [1142] = 1142, + [1141] = 262, + [1142] = 176, [1143] = 1143, - [1144] = 1098, + [1144] = 1144, [1145] = 1145, [1146] = 1146, [1147] = 1147, [1148] = 1148, [1149] = 1149, - [1150] = 1150, - [1151] = 1151, - [1152] = 1152, - [1153] = 1153, - [1154] = 1154, - [1155] = 1155, - [1156] = 267, - [1157] = 1157, - [1158] = 1158, - [1159] = 1159, + [1150] = 267, + [1151] = 269, + [1152] = 259, + [1153] = 260, + [1154] = 266, + [1155] = 252, + [1156] = 265, + [1157] = 251, + [1158] = 257, + [1159] = 192, [1160] = 1160, - [1161] = 1161, + [1161] = 176, [1162] = 1162, - [1163] = 224, + [1163] = 1163, [1164] = 1164, - [1165] = 202, + [1165] = 1165, [1166] = 1166, [1167] = 1167, - [1168] = 169, + [1168] = 1168, [1169] = 1169, [1170] = 1170, [1171] = 1171, [1172] = 1172, - [1173] = 1173, + [1173] = 968, [1174] = 1174, [1175] = 1175, [1176] = 1176, @@ -2547,489 +2638,489 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1191] = 1191, [1192] = 1192, [1193] = 1193, - [1194] = 1194, - [1195] = 1154, - [1196] = 1166, - [1197] = 1189, - [1198] = 1191, - [1199] = 1193, - [1200] = 1190, - [1201] = 1194, - [1202] = 1192, - [1203] = 1184, - [1204] = 1183, - [1205] = 1178, - [1206] = 1177, - [1207] = 1171, - [1208] = 1169, - [1209] = 1161, - [1210] = 1160, - [1211] = 1138, - [1212] = 1187, - [1213] = 1186, - [1214] = 1159, - [1215] = 1157, - [1216] = 1139, - [1217] = 251, - [1218] = 1185, - [1219] = 1182, - [1220] = 1181, - [1221] = 1179, - [1222] = 1176, - [1223] = 1175, - [1224] = 1174, - [1225] = 1173, - [1226] = 1172, - [1227] = 1170, - [1228] = 1167, - [1229] = 1180, - [1230] = 166, - [1231] = 202, - [1232] = 267, - [1233] = 263, - [1234] = 252, - [1235] = 202, - [1236] = 1164, - [1237] = 1162, - [1238] = 1238, - [1239] = 1158, - [1240] = 1155, - [1241] = 166, - [1242] = 1153, - [1243] = 1152, - [1244] = 1151, - [1245] = 1150, - [1246] = 258, - [1247] = 1188, - [1248] = 1149, - [1249] = 255, - [1250] = 1148, - [1251] = 266, - [1252] = 1140, - [1253] = 254, - [1254] = 1141, - [1255] = 269, - [1256] = 176, - [1257] = 265, - [1258] = 1142, - [1259] = 1147, - [1260] = 1146, - [1261] = 1129, - [1262] = 1128, - [1263] = 261, - [1264] = 1145, - [1265] = 1143, + [1194] = 192, + [1195] = 1186, + [1196] = 178, + [1197] = 180, + [1198] = 1178, + [1199] = 1131, + [1200] = 1135, + [1201] = 266, + [1202] = 1136, + [1203] = 1138, + [1204] = 1193, + [1205] = 1190, + [1206] = 1140, + [1207] = 260, + [1208] = 1143, + [1209] = 1144, + [1210] = 1145, + [1211] = 1146, + [1212] = 265, + [1213] = 1147, + [1214] = 1184, + [1215] = 1185, + [1216] = 1148, + [1217] = 1187, + [1218] = 1188, + [1219] = 1132, + [1220] = 1149, + [1221] = 1124, + [1222] = 1189, + [1223] = 1192, + [1224] = 1191, + [1225] = 1162, + [1226] = 257, + [1227] = 251, + [1228] = 1121, + [1229] = 1164, + [1230] = 1134, + [1231] = 1179, + [1232] = 1163, + [1233] = 1183, + [1234] = 1172, + [1235] = 1170, + [1236] = 1168, + [1237] = 254, + [1238] = 259, + [1239] = 1130, + [1240] = 192, + [1241] = 269, + [1242] = 178, + [1243] = 1169, + [1244] = 1167, + [1245] = 1123, + [1246] = 1133, + [1247] = 1129, + [1248] = 262, + [1249] = 1160, + [1250] = 1180, + [1251] = 192, + [1252] = 1252, + [1253] = 1128, + [1254] = 1126, + [1255] = 1177, + [1256] = 1165, + [1257] = 1181, + [1258] = 1182, + [1259] = 1176, + [1260] = 267, + [1261] = 1175, + [1262] = 1171, + [1263] = 1166, + [1264] = 1174, + [1265] = 252, [1266] = 1266, - [1267] = 160, - [1268] = 176, - [1269] = 159, - [1270] = 166, - [1271] = 1266, - [1272] = 1266, - [1273] = 1266, + [1267] = 178, + [1268] = 180, + [1269] = 1266, + [1270] = 163, + [1271] = 1271, + [1272] = 180, + [1273] = 1271, [1274] = 1274, - [1275] = 1275, + [1275] = 1266, [1276] = 1266, - [1277] = 1266, - [1278] = 1274, - [1279] = 176, - [1280] = 1275, + [1277] = 162, + [1278] = 1266, + [1279] = 1274, + [1280] = 1266, [1281] = 1281, - [1282] = 159, - [1283] = 171, - [1284] = 160, - [1285] = 177, - [1286] = 1281, - [1287] = 162, + [1282] = 181, + [1283] = 163, + [1284] = 1281, + [1285] = 162, + [1286] = 177, + [1287] = 1287, [1288] = 1288, - [1289] = 160, - [1290] = 185, + [1289] = 162, + [1290] = 1281, [1291] = 1281, - [1292] = 168, - [1293] = 1281, - [1294] = 1281, - [1295] = 1295, - [1296] = 1281, - [1297] = 176, - [1298] = 159, - [1299] = 171, - [1300] = 162, - [1301] = 160, - [1302] = 185, - [1303] = 185, - [1304] = 224, - [1305] = 234, - [1306] = 239, - [1307] = 159, - [1308] = 194, - [1309] = 200, - [1310] = 190, - [1311] = 168, - [1312] = 176, - [1313] = 212, - [1314] = 201, - [1315] = 195, - [1316] = 198, - [1317] = 209, - [1318] = 216, - [1319] = 193, - [1320] = 171, - [1321] = 210, + [1292] = 1281, + [1293] = 159, + [1294] = 163, + [1295] = 166, + [1296] = 190, + [1297] = 1281, + [1298] = 180, + [1299] = 187, + [1300] = 185, + [1301] = 184, + [1302] = 186, + [1303] = 182, + [1304] = 188, + [1305] = 194, + [1306] = 195, + [1307] = 196, + [1308] = 222, + [1309] = 224, + [1310] = 201, + [1311] = 183, + [1312] = 203, + [1313] = 159, + [1314] = 163, + [1315] = 204, + [1316] = 189, + [1317] = 190, + [1318] = 199, + [1319] = 166, + [1320] = 181, + [1321] = 180, [1322] = 177, - [1323] = 213, - [1324] = 168, - [1325] = 177, - [1326] = 183, - [1327] = 217, - [1328] = 206, - [1329] = 162, - [1330] = 207, - [1331] = 199, - [1332] = 197, - [1333] = 184, - [1334] = 210, - [1335] = 190, - [1336] = 185, - [1337] = 171, - [1338] = 193, - [1339] = 190, - [1340] = 267, - [1341] = 206, - [1342] = 184, - [1343] = 266, - [1344] = 197, - [1345] = 199, - [1346] = 162, - [1347] = 199, - [1348] = 224, - [1349] = 254, - [1350] = 252, - [1351] = 177, - [1352] = 213, - [1353] = 269, - [1354] = 375, - [1355] = 265, - [1356] = 217, - [1357] = 261, - [1358] = 206, - [1359] = 183, - [1360] = 210, - [1361] = 216, - [1362] = 209, - [1363] = 198, - [1364] = 195, - [1365] = 183, - [1366] = 255, - [1367] = 176, - [1368] = 198, - [1369] = 224, - [1370] = 209, - [1371] = 176, - [1372] = 194, - [1373] = 200, - [1374] = 258, - [1375] = 207, - [1376] = 263, - [1377] = 184, - [1378] = 212, - [1379] = 168, - [1380] = 251, - [1381] = 201, - [1382] = 193, - [1383] = 216, - [1384] = 239, - [1385] = 195, - [1386] = 197, - [1387] = 234, - [1388] = 234, - [1389] = 239, - [1390] = 166, - [1391] = 195, - [1392] = 1138, - [1393] = 199, - [1394] = 224, - [1395] = 184, - [1396] = 252, - [1397] = 234, - [1398] = 206, - [1399] = 183, - [1400] = 176, - [1401] = 216, - [1402] = 252, - [1403] = 190, - [1404] = 198, - [1405] = 267, - [1406] = 185, - [1407] = 412, - [1408] = 1139, - [1409] = 239, - [1410] = 403, - [1411] = 210, - [1412] = 176, - [1413] = 209, - [1414] = 255, - [1415] = 193, - [1416] = 266, - [1417] = 254, - [1418] = 269, - [1419] = 265, - [1420] = 261, - [1421] = 375, - [1422] = 258, - [1423] = 197, - [1424] = 251, - [1425] = 263, - [1426] = 252, - [1427] = 234, - [1428] = 239, - [1429] = 224, - [1430] = 185, - [1431] = 166, - [1432] = 176, - [1433] = 403, - [1434] = 185, - [1435] = 412, - [1436] = 1295, - [1437] = 266, - [1438] = 492, - [1439] = 185, - [1440] = 224, - [1441] = 375, - [1442] = 252, - [1443] = 159, - [1444] = 234, - [1445] = 239, - [1446] = 239, - [1447] = 234, - [1448] = 224, - [1449] = 254, - [1450] = 269, - [1451] = 265, - [1452] = 261, - [1453] = 255, - [1454] = 258, - [1455] = 263, - [1456] = 251, - [1457] = 494, - [1458] = 267, - [1459] = 185, - [1460] = 160, - [1461] = 493, - [1462] = 482, - [1463] = 498, - [1464] = 171, - [1465] = 265, - [1466] = 252, - [1467] = 185, - [1468] = 160, - [1469] = 224, - [1470] = 375, - [1471] = 239, - [1472] = 159, - [1473] = 252, - [1474] = 177, - [1475] = 261, - [1476] = 239, - [1477] = 255, - [1478] = 224, - [1479] = 258, - [1480] = 234, - [1481] = 267, - [1482] = 263, - [1483] = 162, - [1484] = 493, - [1485] = 251, - [1486] = 162, + [1323] = 212, + [1324] = 162, + [1325] = 193, + [1326] = 197, + [1327] = 181, + [1328] = 215, + [1329] = 177, + [1330] = 166, + [1331] = 232, + [1332] = 159, + [1333] = 190, + [1334] = 180, + [1335] = 215, + [1336] = 159, + [1337] = 224, + [1338] = 222, + [1339] = 224, + [1340] = 222, + [1341] = 193, + [1342] = 197, + [1343] = 204, + [1344] = 203, + [1345] = 183, + [1346] = 182, + [1347] = 201, + [1348] = 184, + [1349] = 185, + [1350] = 186, + [1351] = 199, + [1352] = 187, + [1353] = 204, + [1354] = 203, + [1355] = 183, + [1356] = 182, + [1357] = 201, + [1358] = 184, + [1359] = 185, + [1360] = 186, + [1361] = 199, + [1362] = 187, + [1363] = 180, + [1364] = 190, + [1365] = 177, + [1366] = 262, + [1367] = 193, + [1368] = 197, + [1369] = 232, + [1370] = 181, + [1371] = 359, + [1372] = 257, + [1373] = 251, + [1374] = 265, + [1375] = 252, + [1376] = 266, + [1377] = 260, + [1378] = 259, + [1379] = 232, + [1380] = 269, + [1381] = 267, + [1382] = 166, + [1383] = 195, + [1384] = 189, + [1385] = 194, + [1386] = 196, + [1387] = 254, + [1388] = 212, + [1389] = 188, + [1390] = 262, + [1391] = 185, + [1392] = 186, + [1393] = 224, + [1394] = 222, + [1395] = 201, + [1396] = 182, + [1397] = 254, + [1398] = 178, + [1399] = 254, + [1400] = 180, + [1401] = 190, + [1402] = 1126, + [1403] = 257, + [1404] = 251, + [1405] = 265, + [1406] = 252, + [1407] = 266, + [1408] = 260, + [1409] = 259, + [1410] = 184, + [1411] = 183, + [1412] = 203, + [1413] = 269, + [1414] = 267, + [1415] = 204, + [1416] = 199, + [1417] = 187, + [1418] = 193, + [1419] = 232, + [1420] = 359, + [1421] = 180, + [1422] = 197, + [1423] = 447, + [1424] = 403, + [1425] = 1123, + [1426] = 190, + [1427] = 224, + [1428] = 222, + [1429] = 180, + [1430] = 178, + [1431] = 232, + [1432] = 254, + [1433] = 190, + [1434] = 447, + [1435] = 1288, + [1436] = 403, + [1437] = 257, + [1438] = 222, + [1439] = 493, + [1440] = 190, + [1441] = 482, + [1442] = 485, + [1443] = 265, + [1444] = 163, + [1445] = 251, + [1446] = 483, + [1447] = 262, + [1448] = 267, + [1449] = 224, + [1450] = 252, + [1451] = 266, + [1452] = 260, + [1453] = 494, + [1454] = 162, + [1455] = 232, + [1456] = 259, + [1457] = 254, + [1458] = 224, + [1459] = 222, + [1460] = 190, + [1461] = 359, + [1462] = 269, + [1463] = 232, + [1464] = 224, + [1465] = 166, + [1466] = 222, + [1467] = 162, + [1468] = 190, + [1469] = 254, + [1470] = 163, + [1471] = 483, + [1472] = 485, + [1473] = 482, + [1474] = 493, + [1475] = 494, + [1476] = 359, + [1477] = 254, + [1478] = 159, + [1479] = 262, + [1480] = 232, + [1481] = 403, + [1482] = 447, + [1483] = 257, + [1484] = 251, + [1485] = 265, + [1486] = 252, [1487] = 266, - [1488] = 234, - [1489] = 498, - [1490] = 254, - [1491] = 403, - [1492] = 492, - [1493] = 412, - [1494] = 494, - [1495] = 482, - [1496] = 269, - [1497] = 168, - [1498] = 251, - [1499] = 212, - [1500] = 375, - [1501] = 194, - [1502] = 200, - [1503] = 252, - [1504] = 210, - [1505] = 224, - [1506] = 239, - [1507] = 267, - [1508] = 216, - [1509] = 177, - [1510] = 207, - [1511] = 217, - [1512] = 403, - [1513] = 234, - [1514] = 1138, - [1515] = 195, - [1516] = 193, - [1517] = 206, - [1518] = 1139, - [1519] = 213, - [1520] = 184, - [1521] = 252, - [1522] = 1522, - [1523] = 199, - [1524] = 198, - [1525] = 168, - [1526] = 263, - [1527] = 201, - [1528] = 258, - [1529] = 197, - [1530] = 255, - [1531] = 261, + [1488] = 260, + [1489] = 222, + [1490] = 259, + [1491] = 159, + [1492] = 267, + [1493] = 269, + [1494] = 177, + [1495] = 224, + [1496] = 232, + [1497] = 181, + [1498] = 260, + [1499] = 177, + [1500] = 251, + [1501] = 195, + [1502] = 193, + [1503] = 257, + [1504] = 199, + [1505] = 359, + [1506] = 215, + [1507] = 254, + [1508] = 269, + [1509] = 254, + [1510] = 194, + [1511] = 267, + [1512] = 201, + [1513] = 197, + [1514] = 184, + [1515] = 188, + [1516] = 183, + [1517] = 222, + [1518] = 185, + [1519] = 166, + [1520] = 186, + [1521] = 187, + [1522] = 266, + [1523] = 232, + [1524] = 224, + [1525] = 262, + [1526] = 203, + [1527] = 212, + [1528] = 196, + [1529] = 403, + [1530] = 259, + [1531] = 204, [1532] = 265, - [1533] = 269, - [1534] = 171, - [1535] = 213, - [1536] = 190, - [1537] = 209, - [1538] = 412, - [1539] = 183, - [1540] = 207, - [1541] = 266, - [1542] = 254, - [1543] = 252, - [1544] = 216, - [1545] = 184, - [1546] = 1546, - [1547] = 482, - [1548] = 197, - [1549] = 1549, - [1550] = 1550, - [1551] = 195, - [1552] = 209, - [1553] = 198, - [1554] = 494, + [1533] = 252, + [1534] = 1534, + [1535] = 447, + [1536] = 215, + [1537] = 1123, + [1538] = 182, + [1539] = 189, + [1540] = 212, + [1541] = 1126, + [1542] = 181, + [1543] = 187, + [1544] = 482, + [1545] = 1545, + [1546] = 185, + [1547] = 1547, + [1548] = 186, + [1549] = 183, + [1550] = 494, + [1551] = 197, + [1552] = 493, + [1553] = 1553, + [1554] = 182, [1555] = 1555, - [1556] = 492, - [1557] = 1557, + [1556] = 485, + [1557] = 184, [1558] = 1558, - [1559] = 210, - [1560] = 498, - [1561] = 183, - [1562] = 190, - [1563] = 206, - [1564] = 199, - [1565] = 493, - [1566] = 193, - [1567] = 494, + [1559] = 199, + [1560] = 203, + [1561] = 193, + [1562] = 483, + [1563] = 204, + [1564] = 254, + [1565] = 201, + [1566] = 1566, + [1567] = 493, [1568] = 482, - [1569] = 493, - [1570] = 492, - [1571] = 498, - [1572] = 412, + [1569] = 485, + [1570] = 483, + [1571] = 494, + [1572] = 403, [1573] = 1573, [1574] = 1574, - [1575] = 1575, + [1575] = 1574, [1576] = 1576, - [1577] = 1575, - [1578] = 1575, - [1579] = 1575, - [1580] = 1576, - [1581] = 1575, + [1577] = 1576, + [1578] = 1578, + [1579] = 1576, + [1580] = 1574, + [1581] = 1576, [1582] = 1576, - [1583] = 1575, + [1583] = 1574, [1584] = 1576, - [1585] = 1575, - [1586] = 1576, + [1585] = 1576, + [1586] = 1574, [1587] = 1576, - [1588] = 1576, - [1589] = 1576, + [1588] = 1574, + [1589] = 1574, [1590] = 1576, - [1591] = 1591, + [1591] = 447, [1592] = 1576, [1593] = 1576, [1594] = 1576, - [1595] = 1576, - [1596] = 1575, - [1597] = 1576, - [1598] = 403, - [1599] = 1575, + [1595] = 1595, + [1596] = 1576, + [1597] = 1574, + [1598] = 1574, + [1599] = 1576, [1600] = 1576, [1601] = 1601, [1602] = 1602, - [1603] = 1603, - [1604] = 1601, - [1605] = 1603, - [1606] = 1606, - [1607] = 1607, - [1608] = 1607, + [1603] = 1601, + [1604] = 1604, + [1605] = 1605, + [1606] = 1604, + [1607] = 1602, + [1608] = 1608, [1609] = 1609, - [1610] = 1606, - [1611] = 1601, + [1610] = 1602, + [1611] = 1609, [1612] = 1612, [1613] = 1613, [1614] = 1614, - [1615] = 1615, - [1616] = 1616, + [1615] = 1602, + [1616] = 1613, [1617] = 1612, - [1618] = 1603, - [1619] = 1607, - [1620] = 1613, - [1621] = 1616, + [1618] = 1601, + [1619] = 1601, + [1620] = 1604, + [1621] = 1621, [1622] = 1601, [1623] = 1623, - [1624] = 1603, - [1625] = 1606, - [1626] = 1607, - [1627] = 1609, - [1628] = 1623, - [1629] = 1612, - [1630] = 1630, - [1631] = 1601, - [1632] = 1616, - [1633] = 1612, - [1634] = 1634, - [1635] = 1612, - [1636] = 1634, - [1637] = 1603, - [1638] = 1606, - [1639] = 1607, - [1640] = 1609, - [1641] = 1630, - [1642] = 1623, - [1643] = 1612, - [1644] = 1614, - [1645] = 1607, - [1646] = 1606, - [1647] = 1616, - [1648] = 1630, - [1649] = 1603, - [1650] = 1614, - [1651] = 1616, - [1652] = 1601, + [1624] = 1609, + [1625] = 1602, + [1626] = 1623, + [1627] = 1608, + [1628] = 1602, + [1629] = 1629, + [1630] = 1601, + [1631] = 1631, + [1632] = 1621, + [1633] = 1631, + [1634] = 1601, + [1635] = 1608, + [1636] = 1601, + [1637] = 1601, + [1638] = 1621, + [1639] = 1605, + [1640] = 1608, + [1641] = 1621, + [1642] = 1631, + [1643] = 1601, + [1644] = 1623, + [1645] = 1608, + [1646] = 1604, + [1647] = 1613, + [1648] = 1613, + [1649] = 1612, + [1650] = 1601, + [1651] = 1609, + [1652] = 1629, [1653] = 1614, - [1654] = 1601, - [1655] = 1609, - [1656] = 1601, + [1654] = 1621, + [1655] = 1608, + [1656] = 1623, [1657] = 1601, [1658] = 1601, - [1659] = 1609, + [1659] = 1612, [1660] = 1623, - [1661] = 1630, - [1662] = 1601, - [1663] = 1601, - [1664] = 1614, - [1665] = 1623, - [1666] = 1614, - [1667] = 1630, - [1668] = 1601, - [1669] = 1606, - [1670] = 1601, - [1671] = 1609, - [1672] = 1601, - [1673] = 1630, - [1674] = 1615, - [1675] = 1623, - [1676] = 1616, + [1661] = 1601, + [1662] = 1613, + [1663] = 1609, + [1664] = 1609, + [1665] = 1601, + [1666] = 1604, + [1667] = 1631, + [1668] = 1612, + [1669] = 1623, + [1670] = 1631, + [1671] = 1613, + [1672] = 1631, + [1673] = 1621, + [1674] = 1674, + [1675] = 1604, + [1676] = 1612, [1677] = 1601, [1678] = 1678, [1679] = 1678, @@ -3048,413 +3139,418 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1692] = 1678, [1693] = 1678, [1694] = 1694, - [1695] = 740, - [1696] = 740, - [1697] = 740, - [1698] = 1698, - [1699] = 740, - [1700] = 1275, - [1701] = 1275, - [1702] = 1702, - [1703] = 1698, - [1704] = 1274, - [1705] = 1274, - [1706] = 1706, - [1707] = 1707, - [1708] = 1702, + [1695] = 1695, + [1696] = 770, + [1697] = 770, + [1698] = 770, + [1699] = 1699, + [1700] = 1699, + [1701] = 1271, + [1702] = 1274, + [1703] = 1271, + [1704] = 1704, + [1705] = 1705, + [1706] = 1705, + [1707] = 770, + [1708] = 1274, [1709] = 1709, - [1710] = 1709, - [1711] = 1709, - [1712] = 1709, - [1713] = 1709, - [1714] = 1709, - [1715] = 1709, - [1716] = 1709, - [1717] = 1717, - [1718] = 1709, - [1719] = 1709, - [1720] = 1709, - [1721] = 1709, - [1722] = 1709, - [1723] = 1723, - [1724] = 1709, - [1725] = 1709, - [1726] = 1709, - [1727] = 1709, - [1728] = 1709, - [1729] = 1709, - [1730] = 1709, - [1731] = 1709, - [1732] = 1709, - [1733] = 1709, - [1734] = 1709, - [1735] = 1735, - [1736] = 1736, - [1737] = 1709, - [1738] = 1738, - [1739] = 1738, - [1740] = 1740, - [1741] = 1738, - [1742] = 1738, - [1743] = 1740, - [1744] = 1740, - [1745] = 1738, - [1746] = 1738, - [1747] = 1738, - [1748] = 1740, - [1749] = 1740, - [1750] = 1738, - [1751] = 1738, - [1752] = 1740, - [1753] = 1738, - [1754] = 1740, - [1755] = 1738, - [1756] = 1738, - [1757] = 1757, - [1758] = 1740, - [1759] = 1740, - [1760] = 1738, - [1761] = 1738, - [1762] = 1740, - [1763] = 1738, - [1764] = 1738, - [1765] = 1740, - [1766] = 1740, - [1767] = 1738, - [1768] = 1738, - [1769] = 1740, - [1770] = 1738, - [1771] = 1738, - [1772] = 1740, - [1773] = 1738, - [1774] = 1774, - [1775] = 1740, - [1776] = 1740, - [1777] = 1738, - [1778] = 1740, - [1779] = 1738, - [1780] = 1740, - [1781] = 1740, - [1782] = 1740, - [1783] = 1740, - [1784] = 1740, - [1785] = 1738, - [1786] = 1740, - [1787] = 1740, - [1788] = 1275, - [1789] = 1275, - [1790] = 1790, - [1791] = 1790, - [1792] = 1790, - [1793] = 1793, - [1794] = 1793, - [1795] = 1790, - [1796] = 1790, - [1797] = 1793, - [1798] = 1798, - [1799] = 1793, - [1800] = 1793, - [1801] = 1793, - [1802] = 1802, - [1803] = 1274, - [1804] = 1802, - [1805] = 1274, - [1806] = 1238, - [1807] = 1798, - [1808] = 1790, - [1809] = 1809, + [1710] = 1710, + [1711] = 1711, + [1712] = 1710, + [1713] = 1710, + [1714] = 1710, + [1715] = 1710, + [1716] = 1710, + [1717] = 1710, + [1718] = 1710, + [1719] = 1710, + [1720] = 1720, + [1721] = 1710, + [1722] = 1722, + [1723] = 1710, + [1724] = 1710, + [1725] = 1710, + [1726] = 1710, + [1727] = 1727, + [1728] = 1710, + [1729] = 1710, + [1730] = 1710, + [1731] = 1710, + [1732] = 1710, + [1733] = 1710, + [1734] = 1710, + [1735] = 1710, + [1736] = 1710, + [1737] = 1710, + [1738] = 1710, + [1739] = 1739, + [1740] = 1739, + [1741] = 1741, + [1742] = 1739, + [1743] = 1739, + [1744] = 1739, + [1745] = 1741, + [1746] = 1739, + [1747] = 1739, + [1748] = 1739, + [1749] = 1741, + [1750] = 1739, + [1751] = 1741, + [1752] = 1741, + [1753] = 1739, + [1754] = 1741, + [1755] = 1741, + [1756] = 1756, + [1757] = 1739, + [1758] = 1741, + [1759] = 1741, + [1760] = 1739, + [1761] = 1761, + [1762] = 1739, + [1763] = 1739, + [1764] = 1739, + [1765] = 1741, + [1766] = 1741, + [1767] = 1739, + [1768] = 1739, + [1769] = 1741, + [1770] = 1741, + [1771] = 1741, + [1772] = 1741, + [1773] = 1739, + [1774] = 1741, + [1775] = 1739, + [1776] = 1741, + [1777] = 1741, + [1778] = 1741, + [1779] = 1741, + [1780] = 1741, + [1781] = 1739, + [1782] = 1739, + [1783] = 1739, + [1784] = 1741, + [1785] = 1741, + [1786] = 1739, + [1787] = 1787, + [1788] = 1788, + [1789] = 1739, + [1790] = 1741, + [1791] = 1791, + [1792] = 1792, + [1793] = 1274, + [1794] = 1271, + [1795] = 1791, + [1796] = 1796, + [1797] = 1796, + [1798] = 1274, + [1799] = 1271, + [1800] = 1252, + [1801] = 1796, + [1802] = 1792, + [1803] = 1803, + [1804] = 1792, + [1805] = 1792, + [1806] = 1792, + [1807] = 1803, + [1808] = 1796, + [1809] = 1796, [1810] = 1810, - [1811] = 1810, - [1812] = 1812, + [1811] = 1796, + [1812] = 1792, [1813] = 1813, - [1814] = 1813, + [1814] = 1814, [1815] = 1815, - [1816] = 1812, - [1817] = 1812, - [1818] = 1812, - [1819] = 1813, - [1820] = 1810, - [1821] = 1809, + [1816] = 1814, + [1817] = 1817, + [1818] = 1818, + [1819] = 1818, + [1820] = 1814, + [1821] = 1818, [1822] = 1813, - [1823] = 1823, - [1824] = 1813, - [1825] = 1813, - [1826] = 1812, - [1827] = 1812, - [1828] = 1812, - [1829] = 1815, - [1830] = 1813, - [1831] = 1812, - [1832] = 1810, - [1833] = 1813, - [1834] = 1823, - [1835] = 1812, + [1823] = 1814, + [1824] = 1818, + [1825] = 1815, + [1826] = 1813, + [1827] = 1813, + [1828] = 1818, + [1829] = 1813, + [1830] = 1830, + [1831] = 1831, + [1832] = 1814, + [1833] = 1814, + [1834] = 1818, + [1835] = 1813, [1836] = 1836, - [1837] = 1813, + [1837] = 1837, [1838] = 1813, - [1839] = 1839, - [1840] = 1812, - [1841] = 1841, - [1842] = 1842, - [1843] = 1810, - [1844] = 1810, - [1845] = 1845, - [1846] = 1846, - [1847] = 1847, + [1839] = 1813, + [1840] = 1818, + [1841] = 1818, + [1842] = 1818, + [1843] = 1818, + [1844] = 1817, + [1845] = 1813, + [1846] = 1813, + [1847] = 1837, [1848] = 1848, - [1849] = 1846, - [1850] = 1846, - [1851] = 1846, - [1852] = 1846, + [1849] = 1848, + [1850] = 1850, + [1851] = 1851, + [1852] = 1848, [1853] = 1853, - [1854] = 1854, + [1854] = 1848, [1855] = 1855, - [1856] = 1856, + [1856] = 1848, [1857] = 1857, - [1858] = 1846, - [1859] = 1859, + [1858] = 1858, + [1859] = 1848, [1860] = 1860, [1861] = 1861, - [1862] = 1860, - [1863] = 1860, - [1864] = 1860, + [1862] = 1861, + [1863] = 1863, + [1864] = 1861, [1865] = 1861, - [1866] = 1859, - [1867] = 1859, - [1868] = 1859, - [1869] = 1861, - [1870] = 1859, + [1866] = 1863, + [1867] = 224, + [1868] = 1861, + [1869] = 1869, + [1870] = 1861, [1871] = 1861, - [1872] = 1859, - [1873] = 1860, - [1874] = 1874, - [1875] = 1859, - [1876] = 1859, - [1877] = 1859, - [1878] = 1859, - [1879] = 1859, - [1880] = 1859, - [1881] = 1881, - [1882] = 1859, - [1883] = 1859, - [1884] = 1859, - [1885] = 1860, - [1886] = 1859, - [1887] = 1860, - [1888] = 234, - [1889] = 1860, - [1890] = 1860, - [1891] = 1860, - [1892] = 1859, - [1893] = 1860, - [1894] = 1860, - [1895] = 1861, - [1896] = 1860, - [1897] = 1859, - [1898] = 1860, + [1872] = 1863, + [1873] = 1861, + [1874] = 1869, + [1875] = 1863, + [1876] = 1876, + [1877] = 1861, + [1878] = 1863, + [1879] = 1861, + [1880] = 1869, + [1881] = 1863, + [1882] = 1863, + [1883] = 1869, + [1884] = 1861, + [1885] = 1861, + [1886] = 1863, + [1887] = 1887, + [1888] = 1861, + [1889] = 1863, + [1890] = 1861, + [1891] = 1861, + [1892] = 1863, + [1893] = 1869, + [1894] = 1861, + [1895] = 1863, + [1896] = 1861, + [1897] = 1897, + [1898] = 1863, [1899] = 1899, - [1900] = 1900, - [1901] = 1901, - [1902] = 1860, - [1903] = 239, - [1904] = 1861, - [1905] = 1905, - [1906] = 1906, + [1900] = 1861, + [1901] = 1863, + [1902] = 1902, + [1903] = 1863, + [1904] = 1869, + [1905] = 222, + [1906] = 1863, [1907] = 1907, [1908] = 1908, - [1909] = 1909, + [1909] = 1908, [1910] = 1910, - [1911] = 1907, + [1911] = 1910, [1912] = 1910, - [1913] = 1907, - [1914] = 1909, - [1915] = 1910, - [1916] = 1909, - [1917] = 1907, - [1918] = 1909, - [1919] = 1910, - [1920] = 1905, - [1921] = 1907, - [1922] = 1909, + [1913] = 1913, + [1914] = 1914, + [1915] = 1908, + [1916] = 1908, + [1917] = 1910, + [1918] = 1914, + [1919] = 1908, + [1920] = 1914, + [1921] = 1908, + [1922] = 1908, [1923] = 1910, - [1924] = 1905, - [1925] = 1907, - [1926] = 1909, - [1927] = 1910, - [1928] = 1905, - [1929] = 1905, - [1930] = 1907, - [1931] = 1909, - [1932] = 1910, - [1933] = 1905, - [1934] = 1907, - [1935] = 1909, - [1936] = 1910, - [1937] = 1937, - [1938] = 1905, - [1939] = 1907, - [1940] = 1909, + [1924] = 1910, + [1925] = 1910, + [1926] = 1914, + [1927] = 1908, + [1928] = 1914, + [1929] = 1910, + [1930] = 1930, + [1931] = 1914, + [1932] = 1914, + [1933] = 1908, + [1934] = 1914, + [1935] = 1910, + [1936] = 1936, + [1937] = 1908, + [1938] = 1914, + [1939] = 1908, + [1940] = 1940, [1941] = 1910, - [1942] = 1905, - [1943] = 1943, - [1944] = 1907, - [1945] = 1909, - [1946] = 1910, - [1947] = 1905, - [1948] = 1943, - [1949] = 1907, - [1950] = 1909, - [1951] = 1905, - [1952] = 1907, - [1953] = 1907, - [1954] = 1907, - [1955] = 1955, + [1942] = 1910, + [1943] = 1913, + [1944] = 1914, + [1945] = 1908, + [1946] = 1946, + [1947] = 1910, + [1948] = 1948, + [1949] = 1914, + [1950] = 1914, + [1951] = 1908, + [1952] = 1913, + [1953] = 1914, + [1954] = 1914, + [1955] = 1914, [1956] = 1956, [1957] = 1957, - [1958] = 1958, - [1959] = 1943, + [1958] = 1914, + [1959] = 1959, [1960] = 1960, - [1961] = 1905, - [1962] = 1943, + [1961] = 1910, + [1962] = 1962, [1963] = 1908, - [1964] = 1906, - [1965] = 1957, - [1966] = 1905, - [1967] = 1943, - [1968] = 1968, - [1969] = 1908, - [1970] = 1906, - [1971] = 1905, - [1972] = 1943, - [1973] = 1905, - [1974] = 1906, - [1975] = 1905, - [1976] = 1943, - [1977] = 1908, - [1978] = 1906, - [1979] = 1910, + [1964] = 1913, + [1965] = 1913, + [1966] = 1913, + [1967] = 1913, + [1968] = 1959, + [1969] = 195, + [1970] = 1914, + [1971] = 1971, + [1972] = 1907, + [1973] = 1913, + [1974] = 1974, + [1975] = 1975, + [1976] = 1976, + [1977] = 1974, + [1978] = 1978, + [1979] = 1979, [1980] = 1910, - [1981] = 1943, - [1982] = 1908, - [1983] = 1906, - [1984] = 1909, - [1985] = 1985, - [1986] = 1905, - [1987] = 1943, - [1988] = 1908, - [1989] = 1906, - [1990] = 1960, - [1991] = 1991, - [1992] = 1905, - [1993] = 1943, - [1994] = 1908, - [1995] = 1906, - [1996] = 1996, - [1997] = 1943, - [1998] = 1996, - [1999] = 1943, - [2000] = 2000, - [2001] = 1943, - [2002] = 1908, - [2003] = 1908, - [2004] = 194, - [2005] = 1907, - [2006] = 1906, - [2007] = 1996, - [2008] = 1996, - [2009] = 1905, - [2010] = 1905, - [2011] = 1943, - [2012] = 1908, - [2013] = 1906, - [2014] = 1996, - [2015] = 1996, - [2016] = 1910, - [2017] = 1909, - [2018] = 2018, - [2019] = 1905, - [2020] = 1996, - [2021] = 1996, - [2022] = 1955, - [2023] = 1956, - [2024] = 1943, - [2025] = 1907, - [2026] = 2026, - [2027] = 1908, - [2028] = 1906, - [2029] = 1996, - [2030] = 2030, - [2031] = 1996, - [2032] = 1905, - [2033] = 1909, - [2034] = 1908, - [2035] = 1943, - [2036] = 1908, - [2037] = 1906, - [2038] = 1910, - [2039] = 2039, - [2040] = 1996, - [2041] = 1905, - [2042] = 1910, - [2043] = 1943, - [2044] = 2044, - [2045] = 1905, - [2046] = 2046, - [2047] = 1955, - [2048] = 1956, - [2049] = 1956, - [2050] = 2050, - [2051] = 1909, - [2052] = 2026, - [2053] = 1968, - [2054] = 1955, - [2055] = 1907, - [2056] = 1955, - [2057] = 1955, - [2058] = 1955, - [2059] = 1955, - [2060] = 1955, - [2061] = 1955, - [2062] = 1955, - [2063] = 1955, - [2064] = 1955, - [2065] = 1955, - [2066] = 1955, - [2067] = 1955, - [2068] = 1955, - [2069] = 2050, + [1981] = 1908, + [1982] = 1907, + [1983] = 1974, + [1984] = 1907, + [1985] = 1907, + [1986] = 1907, + [1987] = 1907, + [1988] = 1979, + [1989] = 1978, + [1990] = 1907, + [1991] = 1907, + [1992] = 1976, + [1993] = 1907, + [1994] = 1976, + [1995] = 1995, + [1996] = 1976, + [1997] = 1962, + [1998] = 1907, + [1999] = 1976, + [2000] = 1975, + [2001] = 1974, + [2002] = 1907, + [2003] = 1976, + [2004] = 1976, + [2005] = 1975, + [2006] = 1974, + [2007] = 1907, + [2008] = 1976, + [2009] = 1975, + [2010] = 1975, + [2011] = 1974, + [2012] = 1907, + [2013] = 1976, + [2014] = 1975, + [2015] = 1974, + [2016] = 1907, + [2017] = 1976, + [2018] = 1975, + [2019] = 2019, + [2020] = 1907, + [2021] = 1907, + [2022] = 1976, + [2023] = 2023, + [2024] = 1975, + [2025] = 1974, + [2026] = 1913, + [2027] = 1956, + [2028] = 1957, + [2029] = 1907, + [2030] = 1914, + [2031] = 1976, + [2032] = 1975, + [2033] = 1974, + [2034] = 1913, + [2035] = 2035, + [2036] = 1907, + [2037] = 1976, + [2038] = 1975, + [2039] = 1974, + [2040] = 1913, + [2041] = 1907, + [2042] = 1976, + [2043] = 1910, + [2044] = 1975, + [2045] = 1974, + [2046] = 1907, + [2047] = 1913, + [2048] = 1907, + [2049] = 2049, + [2050] = 1907, + [2051] = 2051, + [2052] = 1956, + [2053] = 1957, + [2054] = 1957, + [2055] = 2055, + [2056] = 1908, + [2057] = 1976, + [2058] = 1975, + [2059] = 1956, + [2060] = 1974, + [2061] = 1956, + [2062] = 1956, + [2063] = 1956, + [2064] = 1956, + [2065] = 1956, + [2066] = 1956, + [2067] = 1956, + [2068] = 1956, + [2069] = 1956, [2070] = 1956, - [2071] = 2046, - [2072] = 2044, - [2073] = 1943, - [2074] = 2018, - [2075] = 1955, - [2076] = 1908, - [2077] = 1906, - [2078] = 1985, - [2079] = 1996, - [2080] = 1996, - [2081] = 1909, - [2082] = 1905, - [2083] = 2083, - [2084] = 1907, - [2085] = 1996, - [2086] = 2050, - [2087] = 1956, - [2088] = 2046, - [2089] = 2000, - [2090] = 1906, - [2091] = 1905, - [2092] = 1996, - [2093] = 2050, - [2094] = 2046, - [2095] = 2050, - [2096] = 1996, - [2097] = 2046, - [2098] = 1906, - [2099] = 1908, - [2100] = 2046, - [2101] = 2050, + [2071] = 1956, + [2072] = 1956, + [2073] = 1956, + [2074] = 2055, + [2075] = 1957, + [2076] = 2051, + [2077] = 2049, + [2078] = 1913, + [2079] = 2023, + [2080] = 1956, + [2081] = 1907, + [2082] = 1913, + [2083] = 1995, + [2084] = 1974, + [2085] = 1976, + [2086] = 1975, + [2087] = 1974, + [2088] = 2088, + [2089] = 1913, + [2090] = 1907, + [2091] = 2055, + [2092] = 1957, + [2093] = 2051, + [2094] = 1971, + [2095] = 1975, + [2096] = 1976, + [2097] = 1976, + [2098] = 2055, + [2099] = 2051, + [2100] = 2055, + [2101] = 1975, + [2102] = 2051, + [2103] = 1974, + [2104] = 1913, + [2105] = 2051, + [2106] = 2055, }; static bool ts_lex(TSLexer *lexer, TSStateId state) { @@ -3462,42 +3558,42 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { eof = lexer->eof(lexer); switch (state) { case 0: - if (eof) ADVANCE(100); - if (lookahead == '!') ADVANCE(153); - if (lookahead == '"') ADVANCE(179); - if (lookahead == '#') ADVANCE(186); - if (lookahead == '$') ADVANCE(163); - if (lookahead == '%') ADVANCE(137); - if (lookahead == '&') ADVANCE(52); - if (lookahead == '(') ADVANCE(120); - if (lookahead == ')') ADVANCE(114); - if (lookahead == '*') ADVANCE(133); - if (lookahead == '+') ADVANCE(140); - if (lookahead == ',') ADVANCE(101); - if (lookahead == '-') ADVANCE(143); - if (lookahead == '/') ADVANCE(166); - if (lookahead == ':') ADVANCE(118); - if (lookahead == ';') ADVANCE(105); - if (lookahead == '<') ADVANCE(119); - if (lookahead == '=') ADVANCE(156); - if (lookahead == '>') ADVANCE(122); - if (lookahead == '?') ADVANCE(128); - if (lookahead == '@') ADVANCE(174); - if (lookahead == '[') ADVANCE(169); + if (eof) ADVANCE(101); + if (lookahead == '!') ADVANCE(154); + if (lookahead == '"') ADVANCE(182); + if (lookahead == '#') ADVANCE(189); + if (lookahead == '$') ADVANCE(164); + if (lookahead == '%') ADVANCE(138); + if (lookahead == '&') ADVANCE(53); + if (lookahead == '(') ADVANCE(121); + if (lookahead == ')') ADVANCE(115); + if (lookahead == '*') ADVANCE(134); + if (lookahead == '+') ADVANCE(141); + if (lookahead == ',') ADVANCE(102); + if (lookahead == '-') ADVANCE(144); + if (lookahead == '/') ADVANCE(167); + if (lookahead == ':') ADVANCE(172); + if (lookahead == ';') ADVANCE(106); + if (lookahead == '<') ADVANCE(120); + if (lookahead == '=') ADVANCE(157); + if (lookahead == '>') ADVANCE(123); + if (lookahead == '?') ADVANCE(129); + if (lookahead == '@') ADVANCE(177); + if (lookahead == '[') ADVANCE(170); if (lookahead == '\\') ADVANCE(3); - if (lookahead == ']') ADVANCE(170); - if (lookahead == '^') ADVANCE(130); - if (lookahead == '{') ADVANCE(115); - if (lookahead == '|') ADVANCE(126); - if (lookahead == '}') ADVANCE(116); - if (lookahead == '~') ADVANCE(148); + if (lookahead == ']') ADVANCE(173); + if (lookahead == '^') ADVANCE(131); + if (lookahead == '{') ADVANCE(116); + if (lookahead == '|') ADVANCE(127); + if (lookahead == '}') ADVANCE(117); + if (lookahead == '~') ADVANCE(149); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(91) - if (('.' <= lookahead && lookahead <= '9')) ADVANCE(177); + lookahead == ' ') SKIP(92) + if (('.' <= lookahead && lookahead <= '9')) ADVANCE(180); if (('A' <= lookahead && lookahead <= '_') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(175); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(178); END_STATE(); case 1: if (lookahead == '\n') SKIP(44) @@ -3517,80 +3613,80 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 'n' || lookahead == 'r' || lookahead == 't' || - lookahead == 'v') ADVANCE(182); - if (lookahead == 'x') ADVANCE(78); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(184); + lookahead == 'v') ADVANCE(185); + if (lookahead == 'x') ADVANCE(79); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(187); END_STATE(); case 4: - if (lookahead == '\n') ADVANCE(106); + if (lookahead == '\n') ADVANCE(107); if (lookahead == '\r') ADVANCE(5); - if (lookahead == '!') ADVANCE(153); - if (lookahead == '"') ADVANCE(179); - if (lookahead == '#') ADVANCE(186); - if (lookahead == '$') ADVANCE(163); - if (lookahead == '%') ADVANCE(136); - if (lookahead == '&') ADVANCE(52); - if (lookahead == '(') ADVANCE(113); - if (lookahead == '*') ADVANCE(132); - if (lookahead == '+') ADVANCE(139); - if (lookahead == ',') ADVANCE(101); - if (lookahead == '-') ADVANCE(142); - if (lookahead == '/') ADVANCE(134); - if (lookahead == ':') ADVANCE(54); - if (lookahead == ';') ADVANCE(105); - if (lookahead == '<') ADVANCE(119); - if (lookahead == '=') ADVANCE(58); - if (lookahead == '>') ADVANCE(122); - if (lookahead == '?') ADVANCE(128); - if (lookahead == '@') ADVANCE(173); - if (lookahead == '[') ADVANCE(164); + if (lookahead == '!') ADVANCE(154); + if (lookahead == '"') ADVANCE(182); + if (lookahead == '#') ADVANCE(189); + if (lookahead == '$') ADVANCE(164); + if (lookahead == '%') ADVANCE(137); + if (lookahead == '&') ADVANCE(53); + if (lookahead == '(') ADVANCE(114); + if (lookahead == '*') ADVANCE(133); + if (lookahead == '+') ADVANCE(140); + if (lookahead == ',') ADVANCE(102); + if (lookahead == '-') ADVANCE(143); + if (lookahead == '/') ADVANCE(135); + if (lookahead == ':') ADVANCE(55); + if (lookahead == ';') ADVANCE(106); + if (lookahead == '<') ADVANCE(120); + if (lookahead == '=') ADVANCE(59); + if (lookahead == '>') ADVANCE(123); + if (lookahead == '?') ADVANCE(129); + if (lookahead == '@') ADVANCE(176); + if (lookahead == '[') ADVANCE(165); if (lookahead == '\\') SKIP(7) - if (lookahead == '^') ADVANCE(129); - if (lookahead == '{') ADVANCE(115); - if (lookahead == '|') ADVANCE(126); - if (lookahead == '}') ADVANCE(116); - if (lookahead == '~') ADVANCE(148); + if (lookahead == '^') ADVANCE(130); + if (lookahead == '{') ADVANCE(116); + if (lookahead == '|') ADVANCE(127); + if (lookahead == '}') ADVANCE(117); + if (lookahead == '~') ADVANCE(149); if (lookahead == '\t' || lookahead == ' ') SKIP(5) - if (('.' <= lookahead && lookahead <= '9')) ADVANCE(177); + if (('.' <= lookahead && lookahead <= '9')) ADVANCE(180); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(175); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(178); END_STATE(); case 5: - if (lookahead == '\n') ADVANCE(106); + if (lookahead == '\n') ADVANCE(107); if (lookahead == '\r') ADVANCE(5); - if (lookahead == '!') ADVANCE(153); - if (lookahead == '"') ADVANCE(179); - if (lookahead == '#') ADVANCE(186); - if (lookahead == '$') ADVANCE(163); - if (lookahead == '%') ADVANCE(136); - if (lookahead == '&') ADVANCE(52); - if (lookahead == '(') ADVANCE(113); - if (lookahead == '*') ADVANCE(132); - if (lookahead == '+') ADVANCE(139); - if (lookahead == ',') ADVANCE(101); - if (lookahead == '-') ADVANCE(142); - if (lookahead == '/') ADVANCE(134); - if (lookahead == ';') ADVANCE(105); - if (lookahead == '<') ADVANCE(119); - if (lookahead == '=') ADVANCE(58); - if (lookahead == '>') ADVANCE(122); - if (lookahead == '?') ADVANCE(128); - if (lookahead == '@') ADVANCE(173); - if (lookahead == '[') ADVANCE(164); + if (lookahead == '!') ADVANCE(154); + if (lookahead == '"') ADVANCE(182); + if (lookahead == '#') ADVANCE(189); + if (lookahead == '$') ADVANCE(164); + if (lookahead == '%') ADVANCE(137); + if (lookahead == '&') ADVANCE(53); + if (lookahead == '(') ADVANCE(114); + if (lookahead == '*') ADVANCE(133); + if (lookahead == '+') ADVANCE(140); + if (lookahead == ',') ADVANCE(102); + if (lookahead == '-') ADVANCE(143); + if (lookahead == '/') ADVANCE(135); + if (lookahead == ';') ADVANCE(106); + if (lookahead == '<') ADVANCE(120); + if (lookahead == '=') ADVANCE(59); + if (lookahead == '>') ADVANCE(123); + if (lookahead == '?') ADVANCE(129); + if (lookahead == '@') ADVANCE(176); + if (lookahead == '[') ADVANCE(165); if (lookahead == '\\') SKIP(7) - if (lookahead == '^') ADVANCE(129); - if (lookahead == '{') ADVANCE(115); - if (lookahead == '|') ADVANCE(126); - if (lookahead == '}') ADVANCE(116); - if (lookahead == '~') ADVANCE(148); + if (lookahead == '^') ADVANCE(130); + if (lookahead == '{') ADVANCE(116); + if (lookahead == '|') ADVANCE(127); + if (lookahead == '}') ADVANCE(117); + if (lookahead == '~') ADVANCE(149); if (lookahead == '\t' || lookahead == ' ') SKIP(5) - if (('.' <= lookahead && lookahead <= '9')) ADVANCE(177); + if (('.' <= lookahead && lookahead <= '9')) ADVANCE(180); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(175); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(178); END_STATE(); case 6: if (lookahead == '\n') SKIP(5) @@ -3600,10 +3696,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\r') SKIP(6) END_STATE(); case 8: - if (lookahead == '\n') SKIP(45) + if (lookahead == '\n') SKIP(46) END_STATE(); case 9: - if (lookahead == '\n') SKIP(45) + if (lookahead == '\n') SKIP(46) if (lookahead == '\r') SKIP(8) END_STATE(); case 10: @@ -3628,28 +3724,28 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\r') SKIP(14) END_STATE(); case 16: - if (lookahead == '\n') SKIP(47) + if (lookahead == '\n') SKIP(48) END_STATE(); case 17: - if (lookahead == '\n') SKIP(47) + if (lookahead == '\n') SKIP(48) if (lookahead == '\r') SKIP(16) END_STATE(); case 18: - if (lookahead == '\n') SKIP(49) + if (lookahead == '\n') SKIP(50) END_STATE(); case 19: - if (lookahead == '\n') SKIP(49) + if (lookahead == '\n') SKIP(50) if (lookahead == '\r') SKIP(18) END_STATE(); case 20: - if (lookahead == '\n') SKIP(51) + if (lookahead == '\n') SKIP(52) END_STATE(); case 21: - if (lookahead == '\n') SKIP(51) + if (lookahead == '\n') SKIP(52) if (lookahead == '\r') SKIP(20) END_STATE(); case 22: - if (lookahead == '\n') SKIP(51) + if (lookahead == '\n') SKIP(52) if (lookahead == '\r') SKIP(20) if (lookahead == '"' || lookahead == '\\' || @@ -3659,66 +3755,66 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 'n' || lookahead == 'r' || lookahead == 't' || - lookahead == 'v') ADVANCE(182); - if (lookahead == 'x') ADVANCE(78); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(184); + lookahead == 'v') ADVANCE(185); + if (lookahead == 'x') ADVANCE(79); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(187); END_STATE(); case 23: - if (lookahead == '\n') SKIP(55) + if (lookahead == '\n') SKIP(56) END_STATE(); case 24: - if (lookahead == '\n') SKIP(55) + if (lookahead == '\n') SKIP(56) if (lookahead == '\r') SKIP(23) END_STATE(); case 25: - if (lookahead == '\n') ADVANCE(107); + if (lookahead == '\n') ADVANCE(108); if (lookahead == '\r') ADVANCE(26); - if (lookahead == '!') ADVANCE(152); - if (lookahead == '"') ADVANCE(179); - if (lookahead == '#') ADVANCE(186); - if (lookahead == '$') ADVANCE(163); - if (lookahead == '(') ADVANCE(120); - if (lookahead == '+') ADVANCE(139); - if (lookahead == '-') ADVANCE(142); - if (lookahead == '/') ADVANCE(134); - if (lookahead == ';') ADVANCE(105); - if (lookahead == '>') ADVANCE(123); - if (lookahead == '@') ADVANCE(173); + if (lookahead == '!') ADVANCE(153); + if (lookahead == '"') ADVANCE(182); + if (lookahead == '#') ADVANCE(189); + if (lookahead == '$') ADVANCE(164); + if (lookahead == '(') ADVANCE(121); + if (lookahead == '+') ADVANCE(140); + if (lookahead == '-') ADVANCE(143); + if (lookahead == '/') ADVANCE(135); + if (lookahead == ';') ADVANCE(106); + if (lookahead == '>') ADVANCE(124); + if (lookahead == '@') ADVANCE(176); if (lookahead == '\\') SKIP(30) - if (lookahead == '{') ADVANCE(115); - if (lookahead == '|') ADVANCE(125); - if (lookahead == '}') ADVANCE(116); + if (lookahead == '{') ADVANCE(116); + if (lookahead == '|') ADVANCE(126); + if (lookahead == '}') ADVANCE(117); if (lookahead == '\t' || lookahead == ' ') SKIP(26) - if (('.' <= lookahead && lookahead <= '9')) ADVANCE(177); + if (('.' <= lookahead && lookahead <= '9')) ADVANCE(180); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(175); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(178); END_STATE(); case 26: - if (lookahead == '\n') ADVANCE(107); + if (lookahead == '\n') ADVANCE(108); if (lookahead == '\r') ADVANCE(26); - if (lookahead == '!') ADVANCE(152); - if (lookahead == '"') ADVANCE(179); - if (lookahead == '#') ADVANCE(186); - if (lookahead == '$') ADVANCE(163); - if (lookahead == '(') ADVANCE(113); - if (lookahead == '+') ADVANCE(139); - if (lookahead == '-') ADVANCE(142); - if (lookahead == '/') ADVANCE(134); - if (lookahead == ';') ADVANCE(105); - if (lookahead == '>') ADVANCE(123); - if (lookahead == '@') ADVANCE(173); + if (lookahead == '!') ADVANCE(153); + if (lookahead == '"') ADVANCE(182); + if (lookahead == '#') ADVANCE(189); + if (lookahead == '$') ADVANCE(164); + if (lookahead == '(') ADVANCE(114); + if (lookahead == '+') ADVANCE(140); + if (lookahead == '-') ADVANCE(143); + if (lookahead == '/') ADVANCE(135); + if (lookahead == ';') ADVANCE(106); + if (lookahead == '>') ADVANCE(124); + if (lookahead == '@') ADVANCE(176); if (lookahead == '\\') SKIP(30) - if (lookahead == '{') ADVANCE(115); - if (lookahead == '|') ADVANCE(125); - if (lookahead == '}') ADVANCE(116); + if (lookahead == '{') ADVANCE(116); + if (lookahead == '|') ADVANCE(126); + if (lookahead == '}') ADVANCE(117); if (lookahead == '\t' || lookahead == ' ') SKIP(26) - if (('.' <= lookahead && lookahead <= '9')) ADVANCE(177); + if (('.' <= lookahead && lookahead <= '9')) ADVANCE(180); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(175); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(178); END_STATE(); case 27: if (lookahead == '\n') SKIP(43) @@ -3742,1432 +3838,1466 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\r') SKIP(31) END_STATE(); case 33: - if (lookahead == '\n') ADVANCE(108); + if (lookahead == '\n') ADVANCE(109); if (lookahead == '\r') ADVANCE(34); - if (lookahead == '!') ADVANCE(153); - if (lookahead == '"') ADVANCE(179); - if (lookahead == '#') ADVANCE(186); - if (lookahead == '$') ADVANCE(163); - if (lookahead == '%') ADVANCE(137); - if (lookahead == '&') ADVANCE(52); - if (lookahead == '(') ADVANCE(113); - if (lookahead == '*') ADVANCE(133); - if (lookahead == '+') ADVANCE(140); - if (lookahead == ',') ADVANCE(101); - if (lookahead == '-') ADVANCE(143); - if (lookahead == '/') ADVANCE(135); - if (lookahead == ';') ADVANCE(105); - if (lookahead == '<') ADVANCE(119); - if (lookahead == '=') ADVANCE(156); - if (lookahead == '>') ADVANCE(122); - if (lookahead == '?') ADVANCE(128); - if (lookahead == '@') ADVANCE(173); + if (lookahead == '!') ADVANCE(154); + if (lookahead == '"') ADVANCE(182); + if (lookahead == '#') ADVANCE(189); + if (lookahead == '$') ADVANCE(164); + if (lookahead == '%') ADVANCE(138); + if (lookahead == '&') ADVANCE(53); + if (lookahead == '(') ADVANCE(114); + if (lookahead == '*') ADVANCE(134); + if (lookahead == '+') ADVANCE(141); + if (lookahead == ',') ADVANCE(102); + if (lookahead == '-') ADVANCE(144); + if (lookahead == '/') ADVANCE(136); + if (lookahead == ';') ADVANCE(106); + if (lookahead == '<') ADVANCE(120); + if (lookahead == '=') ADVANCE(157); + if (lookahead == '>') ADVANCE(123); + if (lookahead == '?') ADVANCE(129); + if (lookahead == '@') ADVANCE(176); if (lookahead == '\\') SKIP(11) - if (lookahead == '^') ADVANCE(130); - if (lookahead == '{') ADVANCE(115); - if (lookahead == '|') ADVANCE(126); - if (lookahead == '}') ADVANCE(116); - if (lookahead == '~') ADVANCE(148); + if (lookahead == '^') ADVANCE(131); + if (lookahead == '{') ADVANCE(116); + if (lookahead == '|') ADVANCE(127); + if (lookahead == '}') ADVANCE(117); + if (lookahead == '~') ADVANCE(149); if (lookahead == '\t' || lookahead == ' ') SKIP(34) - if (('.' <= lookahead && lookahead <= '9')) ADVANCE(177); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(171); + if (('.' <= lookahead && lookahead <= '9')) ADVANCE(180); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(174); if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(175); + lookahead == '_') ADVANCE(178); END_STATE(); case 34: - if (lookahead == '\n') ADVANCE(108); + if (lookahead == '\n') ADVANCE(109); if (lookahead == '\r') ADVANCE(34); - if (lookahead == '!') ADVANCE(153); - if (lookahead == '"') ADVANCE(179); - if (lookahead == '#') ADVANCE(186); - if (lookahead == '$') ADVANCE(163); - if (lookahead == '%') ADVANCE(137); - if (lookahead == '&') ADVANCE(52); - if (lookahead == '(') ADVANCE(113); - if (lookahead == '*') ADVANCE(133); - if (lookahead == '+') ADVANCE(140); - if (lookahead == ',') ADVANCE(101); - if (lookahead == '-') ADVANCE(143); - if (lookahead == '/') ADVANCE(135); - if (lookahead == ';') ADVANCE(105); - if (lookahead == '<') ADVANCE(119); - if (lookahead == '=') ADVANCE(156); - if (lookahead == '>') ADVANCE(122); - if (lookahead == '?') ADVANCE(128); - if (lookahead == '@') ADVANCE(173); + if (lookahead == '!') ADVANCE(154); + if (lookahead == '"') ADVANCE(182); + if (lookahead == '#') ADVANCE(189); + if (lookahead == '$') ADVANCE(164); + if (lookahead == '%') ADVANCE(138); + if (lookahead == '&') ADVANCE(53); + if (lookahead == '(') ADVANCE(114); + if (lookahead == '*') ADVANCE(134); + if (lookahead == '+') ADVANCE(141); + if (lookahead == ',') ADVANCE(102); + if (lookahead == '-') ADVANCE(144); + if (lookahead == '/') ADVANCE(136); + if (lookahead == ';') ADVANCE(106); + if (lookahead == '<') ADVANCE(120); + if (lookahead == '=') ADVANCE(157); + if (lookahead == '>') ADVANCE(123); + if (lookahead == '?') ADVANCE(129); + if (lookahead == '@') ADVANCE(176); if (lookahead == '\\') SKIP(11) - if (lookahead == '^') ADVANCE(130); - if (lookahead == '{') ADVANCE(115); - if (lookahead == '|') ADVANCE(126); - if (lookahead == '}') ADVANCE(116); - if (lookahead == '~') ADVANCE(148); + if (lookahead == '^') ADVANCE(131); + if (lookahead == '{') ADVANCE(116); + if (lookahead == '|') ADVANCE(127); + if (lookahead == '}') ADVANCE(117); + if (lookahead == '~') ADVANCE(149); if (lookahead == '\t' || lookahead == ' ') SKIP(34) - if (('.' <= lookahead && lookahead <= '9')) ADVANCE(177); + if (('.' <= lookahead && lookahead <= '9')) ADVANCE(180); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(175); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(178); END_STATE(); case 35: - if (lookahead == '\n') ADVANCE(109); + if (lookahead == '\n') ADVANCE(110); if (lookahead == '\r') ADVANCE(36); - if (lookahead == '!') ADVANCE(153); - if (lookahead == '"') ADVANCE(179); - if (lookahead == '#') ADVANCE(186); - if (lookahead == '$') ADVANCE(163); - if (lookahead == '%') ADVANCE(136); - if (lookahead == '&') ADVANCE(52); - if (lookahead == '(') ADVANCE(113); - if (lookahead == '*') ADVANCE(132); - if (lookahead == '+') ADVANCE(139); - if (lookahead == ',') ADVANCE(101); - if (lookahead == '-') ADVANCE(142); - if (lookahead == '/') ADVANCE(134); - if (lookahead == ';') ADVANCE(105); - if (lookahead == '<') ADVANCE(119); - if (lookahead == '=') ADVANCE(58); - if (lookahead == '>') ADVANCE(122); - if (lookahead == '?') ADVANCE(128); - if (lookahead == '@') ADVANCE(173); + if (lookahead == '!') ADVANCE(154); + if (lookahead == '"') ADVANCE(182); + if (lookahead == '#') ADVANCE(189); + if (lookahead == '$') ADVANCE(164); + if (lookahead == '%') ADVANCE(137); + if (lookahead == '&') ADVANCE(53); + if (lookahead == '(') ADVANCE(114); + if (lookahead == '*') ADVANCE(133); + if (lookahead == '+') ADVANCE(140); + if (lookahead == ',') ADVANCE(102); + if (lookahead == '-') ADVANCE(143); + if (lookahead == '/') ADVANCE(135); + if (lookahead == ';') ADVANCE(106); + if (lookahead == '<') ADVANCE(120); + if (lookahead == '=') ADVANCE(59); + if (lookahead == '>') ADVANCE(123); + if (lookahead == '?') ADVANCE(129); + if (lookahead == '@') ADVANCE(176); if (lookahead == '\\') SKIP(32) - if (lookahead == '^') ADVANCE(129); - if (lookahead == '{') ADVANCE(115); - if (lookahead == '|') ADVANCE(126); - if (lookahead == '}') ADVANCE(116); - if (lookahead == '~') ADVANCE(148); + if (lookahead == '^') ADVANCE(130); + if (lookahead == '{') ADVANCE(116); + if (lookahead == '|') ADVANCE(127); + if (lookahead == '}') ADVANCE(117); + if (lookahead == '~') ADVANCE(149); if (lookahead == '\t' || lookahead == ' ') SKIP(36) - if (('.' <= lookahead && lookahead <= '9')) ADVANCE(177); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(171); + if (('.' <= lookahead && lookahead <= '9')) ADVANCE(180); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(174); if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(175); + lookahead == '_') ADVANCE(178); END_STATE(); case 36: - if (lookahead == '\n') ADVANCE(109); + if (lookahead == '\n') ADVANCE(110); if (lookahead == '\r') ADVANCE(36); - if (lookahead == '!') ADVANCE(153); - if (lookahead == '"') ADVANCE(179); - if (lookahead == '#') ADVANCE(186); - if (lookahead == '$') ADVANCE(163); - if (lookahead == '%') ADVANCE(136); - if (lookahead == '&') ADVANCE(52); - if (lookahead == '(') ADVANCE(113); - if (lookahead == '*') ADVANCE(132); - if (lookahead == '+') ADVANCE(139); - if (lookahead == ',') ADVANCE(101); - if (lookahead == '-') ADVANCE(142); - if (lookahead == '/') ADVANCE(134); - if (lookahead == ';') ADVANCE(105); - if (lookahead == '<') ADVANCE(119); - if (lookahead == '=') ADVANCE(58); - if (lookahead == '>') ADVANCE(122); - if (lookahead == '?') ADVANCE(128); - if (lookahead == '@') ADVANCE(173); + if (lookahead == '!') ADVANCE(154); + if (lookahead == '"') ADVANCE(182); + if (lookahead == '#') ADVANCE(189); + if (lookahead == '$') ADVANCE(164); + if (lookahead == '%') ADVANCE(137); + if (lookahead == '&') ADVANCE(53); + if (lookahead == '(') ADVANCE(114); + if (lookahead == '*') ADVANCE(133); + if (lookahead == '+') ADVANCE(140); + if (lookahead == ',') ADVANCE(102); + if (lookahead == '-') ADVANCE(143); + if (lookahead == '/') ADVANCE(135); + if (lookahead == ';') ADVANCE(106); + if (lookahead == '<') ADVANCE(120); + if (lookahead == '=') ADVANCE(59); + if (lookahead == '>') ADVANCE(123); + if (lookahead == '?') ADVANCE(129); + if (lookahead == '@') ADVANCE(176); if (lookahead == '\\') SKIP(32) - if (lookahead == '^') ADVANCE(129); - if (lookahead == '{') ADVANCE(115); - if (lookahead == '|') ADVANCE(126); - if (lookahead == '}') ADVANCE(116); - if (lookahead == '~') ADVANCE(148); + if (lookahead == '^') ADVANCE(130); + if (lookahead == '{') ADVANCE(116); + if (lookahead == '|') ADVANCE(127); + if (lookahead == '}') ADVANCE(117); + if (lookahead == '~') ADVANCE(149); if (lookahead == '\t' || lookahead == ' ') SKIP(36) - if (('.' <= lookahead && lookahead <= '9')) ADVANCE(177); + if (('.' <= lookahead && lookahead <= '9')) ADVANCE(180); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(175); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(178); END_STATE(); case 37: - if (lookahead == '\n') ADVANCE(110); + if (lookahead == '\n') ADVANCE(111); if (lookahead == '\r') ADVANCE(38); - if (lookahead == '!') ADVANCE(57); - if (lookahead == '#') ADVANCE(186); - if (lookahead == '%') ADVANCE(136); - if (lookahead == '&') ADVANCE(52); - if (lookahead == '*') ADVANCE(132); - if (lookahead == '+') ADVANCE(138); - if (lookahead == ',') ADVANCE(101); - if (lookahead == '-') ADVANCE(141); - if (lookahead == '/') ADVANCE(134); - if (lookahead == ':') ADVANCE(54); - if (lookahead == ';') ADVANCE(105); - if (lookahead == '<') ADVANCE(119); - if (lookahead == '=') ADVANCE(58); - if (lookahead == '>') ADVANCE(122); - if (lookahead == '?') ADVANCE(128); - if (lookahead == '[') ADVANCE(164); + if (lookahead == '!') ADVANCE(58); + if (lookahead == '#') ADVANCE(189); + if (lookahead == '%') ADVANCE(137); + if (lookahead == '&') ADVANCE(53); + if (lookahead == '*') ADVANCE(133); + if (lookahead == '+') ADVANCE(139); + if (lookahead == ',') ADVANCE(102); + if (lookahead == '-') ADVANCE(142); + if (lookahead == '/') ADVANCE(135); + if (lookahead == ':') ADVANCE(55); + if (lookahead == ';') ADVANCE(106); + if (lookahead == '<') ADVANCE(120); + if (lookahead == '=') ADVANCE(59); + if (lookahead == '>') ADVANCE(123); + if (lookahead == '?') ADVANCE(129); + if (lookahead == '[') ADVANCE(165); if (lookahead == '\\') SKIP(13) - if (lookahead == '^') ADVANCE(129); - if (lookahead == '|') ADVANCE(126); - if (lookahead == '}') ADVANCE(116); - if (lookahead == '~') ADVANCE(148); + if (lookahead == '^') ADVANCE(130); + if (lookahead == '|') ADVANCE(127); + if (lookahead == '}') ADVANCE(117); + if (lookahead == '~') ADVANCE(149); if (lookahead == '\t' || lookahead == ' ') SKIP(38) if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(175); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(178); END_STATE(); case 38: - if (lookahead == '\n') ADVANCE(110); + if (lookahead == '\n') ADVANCE(111); if (lookahead == '\r') ADVANCE(38); - if (lookahead == '!') ADVANCE(57); - if (lookahead == '#') ADVANCE(186); - if (lookahead == '%') ADVANCE(136); - if (lookahead == '&') ADVANCE(52); - if (lookahead == '*') ADVANCE(132); - if (lookahead == '+') ADVANCE(138); - if (lookahead == ',') ADVANCE(101); - if (lookahead == '-') ADVANCE(141); - if (lookahead == '/') ADVANCE(134); - if (lookahead == ';') ADVANCE(105); - if (lookahead == '<') ADVANCE(119); - if (lookahead == '=') ADVANCE(58); - if (lookahead == '>') ADVANCE(122); - if (lookahead == '?') ADVANCE(128); - if (lookahead == '[') ADVANCE(164); + if (lookahead == '!') ADVANCE(58); + if (lookahead == '#') ADVANCE(189); + if (lookahead == '%') ADVANCE(137); + if (lookahead == '&') ADVANCE(53); + if (lookahead == '*') ADVANCE(133); + if (lookahead == '+') ADVANCE(139); + if (lookahead == ',') ADVANCE(102); + if (lookahead == '-') ADVANCE(142); + if (lookahead == '/') ADVANCE(135); + if (lookahead == ';') ADVANCE(106); + if (lookahead == '<') ADVANCE(120); + if (lookahead == '=') ADVANCE(59); + if (lookahead == '>') ADVANCE(123); + if (lookahead == '?') ADVANCE(129); + if (lookahead == '[') ADVANCE(165); if (lookahead == '\\') SKIP(13) - if (lookahead == '^') ADVANCE(129); - if (lookahead == '|') ADVANCE(126); - if (lookahead == '}') ADVANCE(116); - if (lookahead == '~') ADVANCE(148); + if (lookahead == '^') ADVANCE(130); + if (lookahead == '|') ADVANCE(127); + if (lookahead == '}') ADVANCE(117); + if (lookahead == '~') ADVANCE(149); if (lookahead == '\t' || lookahead == ' ') SKIP(38) if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(175); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(178); END_STATE(); case 39: - if (lookahead == '\n') ADVANCE(111); + if (lookahead == '\n') ADVANCE(112); if (lookahead == '\r') ADVANCE(40); - if (lookahead == '!') ADVANCE(57); - if (lookahead == '#') ADVANCE(186); - if (lookahead == '%') ADVANCE(136); - if (lookahead == '&') ADVANCE(52); - if (lookahead == '*') ADVANCE(132); - if (lookahead == '+') ADVANCE(138); - if (lookahead == ',') ADVANCE(101); - if (lookahead == '-') ADVANCE(141); - if (lookahead == '/') ADVANCE(134); - if (lookahead == ';') ADVANCE(105); - if (lookahead == '<') ADVANCE(119); - if (lookahead == '=') ADVANCE(58); - if (lookahead == '>') ADVANCE(122); - if (lookahead == '?') ADVANCE(128); + if (lookahead == '!') ADVANCE(58); + if (lookahead == '#') ADVANCE(189); + if (lookahead == '%') ADVANCE(137); + if (lookahead == '&') ADVANCE(53); + if (lookahead == '*') ADVANCE(133); + if (lookahead == '+') ADVANCE(139); + if (lookahead == ',') ADVANCE(102); + if (lookahead == '-') ADVANCE(142); + if (lookahead == '/') ADVANCE(135); + if (lookahead == ';') ADVANCE(106); + if (lookahead == '<') ADVANCE(120); + if (lookahead == '=') ADVANCE(59); + if (lookahead == '>') ADVANCE(123); + if (lookahead == '?') ADVANCE(129); if (lookahead == '\\') SKIP(15) - if (lookahead == '^') ADVANCE(129); - if (lookahead == '|') ADVANCE(126); - if (lookahead == '}') ADVANCE(116); - if (lookahead == '~') ADVANCE(148); + if (lookahead == '^') ADVANCE(130); + if (lookahead == '|') ADVANCE(127); + if (lookahead == '}') ADVANCE(117); + if (lookahead == '~') ADVANCE(149); if (lookahead == '\t' || lookahead == ' ') SKIP(40) - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(171); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(174); if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(175); + lookahead == '_') ADVANCE(178); END_STATE(); case 40: - if (lookahead == '\n') ADVANCE(111); + if (lookahead == '\n') ADVANCE(112); if (lookahead == '\r') ADVANCE(40); - if (lookahead == '!') ADVANCE(57); - if (lookahead == '#') ADVANCE(186); - if (lookahead == '%') ADVANCE(136); - if (lookahead == '&') ADVANCE(52); - if (lookahead == '*') ADVANCE(132); - if (lookahead == '+') ADVANCE(138); - if (lookahead == ',') ADVANCE(101); - if (lookahead == '-') ADVANCE(141); - if (lookahead == '/') ADVANCE(134); - if (lookahead == ';') ADVANCE(105); - if (lookahead == '<') ADVANCE(119); - if (lookahead == '=') ADVANCE(58); - if (lookahead == '>') ADVANCE(122); - if (lookahead == '?') ADVANCE(128); + if (lookahead == '!') ADVANCE(58); + if (lookahead == '#') ADVANCE(189); + if (lookahead == '%') ADVANCE(137); + if (lookahead == '&') ADVANCE(53); + if (lookahead == '*') ADVANCE(133); + if (lookahead == '+') ADVANCE(139); + if (lookahead == ',') ADVANCE(102); + if (lookahead == '-') ADVANCE(142); + if (lookahead == '/') ADVANCE(135); + if (lookahead == ';') ADVANCE(106); + if (lookahead == '<') ADVANCE(120); + if (lookahead == '=') ADVANCE(59); + if (lookahead == '>') ADVANCE(123); + if (lookahead == '?') ADVANCE(129); if (lookahead == '\\') SKIP(15) - if (lookahead == '^') ADVANCE(129); - if (lookahead == '|') ADVANCE(126); - if (lookahead == '}') ADVANCE(116); - if (lookahead == '~') ADVANCE(148); + if (lookahead == '^') ADVANCE(130); + if (lookahead == '|') ADVANCE(127); + if (lookahead == '}') ADVANCE(117); + if (lookahead == '~') ADVANCE(149); if (lookahead == '\t' || lookahead == ' ') SKIP(40) if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(175); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(178); END_STATE(); case 41: - if (lookahead == '\n') ADVANCE(112); + if (lookahead == '\n') ADVANCE(113); if (lookahead == '\r') ADVANCE(43); - if (lookahead == '!') ADVANCE(153); - if (lookahead == '"') ADVANCE(179); - if (lookahead == '#') ADVANCE(186); - if (lookahead == '$') ADVANCE(163); - if (lookahead == '%') ADVANCE(137); - if (lookahead == '&') ADVANCE(52); - if (lookahead == '(') ADVANCE(120); - if (lookahead == '*') ADVANCE(133); - if (lookahead == '+') ADVANCE(140); - if (lookahead == ',') ADVANCE(101); - if (lookahead == '-') ADVANCE(143); - if (lookahead == '/') ADVANCE(135); - if (lookahead == ':') ADVANCE(54); - if (lookahead == ';') ADVANCE(105); - if (lookahead == '<') ADVANCE(119); - if (lookahead == '=') ADVANCE(156); - if (lookahead == '>') ADVANCE(122); - if (lookahead == '?') ADVANCE(128); - if (lookahead == '@') ADVANCE(173); - if (lookahead == '[') ADVANCE(164); + if (lookahead == '!') ADVANCE(154); + if (lookahead == '"') ADVANCE(182); + if (lookahead == '#') ADVANCE(189); + if (lookahead == '$') ADVANCE(164); + if (lookahead == '%') ADVANCE(138); + if (lookahead == '&') ADVANCE(53); + if (lookahead == '(') ADVANCE(121); + if (lookahead == '*') ADVANCE(134); + if (lookahead == '+') ADVANCE(141); + if (lookahead == ',') ADVANCE(102); + if (lookahead == '-') ADVANCE(144); + if (lookahead == '/') ADVANCE(136); + if (lookahead == ':') ADVANCE(55); + if (lookahead == ';') ADVANCE(106); + if (lookahead == '<') ADVANCE(120); + if (lookahead == '=') ADVANCE(157); + if (lookahead == '>') ADVANCE(123); + if (lookahead == '?') ADVANCE(129); + if (lookahead == '@') ADVANCE(176); + if (lookahead == '[') ADVANCE(165); if (lookahead == '\\') SKIP(28) - if (lookahead == '^') ADVANCE(130); - if (lookahead == '{') ADVANCE(115); - if (lookahead == '|') ADVANCE(126); - if (lookahead == '}') ADVANCE(116); - if (lookahead == '~') ADVANCE(148); + if (lookahead == '^') ADVANCE(131); + if (lookahead == '{') ADVANCE(116); + if (lookahead == '|') ADVANCE(127); + if (lookahead == '}') ADVANCE(117); + if (lookahead == '~') ADVANCE(149); if (lookahead == '\t' || lookahead == ' ') SKIP(43) - if (('.' <= lookahead && lookahead <= '9')) ADVANCE(177); + if (('.' <= lookahead && lookahead <= '9')) ADVANCE(180); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(175); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(178); END_STATE(); case 42: - if (lookahead == '\n') ADVANCE(112); + if (lookahead == '\n') ADVANCE(113); if (lookahead == '\r') ADVANCE(43); - if (lookahead == '!') ADVANCE(153); - if (lookahead == '"') ADVANCE(179); - if (lookahead == '#') ADVANCE(186); - if (lookahead == '$') ADVANCE(163); - if (lookahead == '%') ADVANCE(137); - if (lookahead == '&') ADVANCE(52); - if (lookahead == '(') ADVANCE(113); - if (lookahead == '*') ADVANCE(133); - if (lookahead == '+') ADVANCE(140); - if (lookahead == ',') ADVANCE(101); - if (lookahead == '-') ADVANCE(143); - if (lookahead == '/') ADVANCE(135); - if (lookahead == ':') ADVANCE(54); - if (lookahead == ';') ADVANCE(105); - if (lookahead == '<') ADVANCE(119); - if (lookahead == '=') ADVANCE(156); - if (lookahead == '>') ADVANCE(122); - if (lookahead == '?') ADVANCE(128); - if (lookahead == '@') ADVANCE(173); - if (lookahead == '[') ADVANCE(164); + if (lookahead == '!') ADVANCE(154); + if (lookahead == '"') ADVANCE(182); + if (lookahead == '#') ADVANCE(189); + if (lookahead == '$') ADVANCE(164); + if (lookahead == '%') ADVANCE(138); + if (lookahead == '&') ADVANCE(53); + if (lookahead == '(') ADVANCE(114); + if (lookahead == '*') ADVANCE(134); + if (lookahead == '+') ADVANCE(141); + if (lookahead == ',') ADVANCE(102); + if (lookahead == '-') ADVANCE(144); + if (lookahead == '/') ADVANCE(136); + if (lookahead == ':') ADVANCE(55); + if (lookahead == ';') ADVANCE(106); + if (lookahead == '<') ADVANCE(120); + if (lookahead == '=') ADVANCE(157); + if (lookahead == '>') ADVANCE(123); + if (lookahead == '?') ADVANCE(129); + if (lookahead == '@') ADVANCE(176); + if (lookahead == '[') ADVANCE(165); if (lookahead == '\\') SKIP(28) - if (lookahead == '^') ADVANCE(130); - if (lookahead == '{') ADVANCE(115); - if (lookahead == '|') ADVANCE(126); - if (lookahead == '}') ADVANCE(116); - if (lookahead == '~') ADVANCE(148); + if (lookahead == '^') ADVANCE(131); + if (lookahead == '{') ADVANCE(116); + if (lookahead == '|') ADVANCE(127); + if (lookahead == '}') ADVANCE(117); + if (lookahead == '~') ADVANCE(149); if (lookahead == '\t' || lookahead == ' ') SKIP(43) - if (('.' <= lookahead && lookahead <= '9')) ADVANCE(177); + if (('.' <= lookahead && lookahead <= '9')) ADVANCE(180); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(175); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(178); END_STATE(); case 43: - if (lookahead == '\n') ADVANCE(112); + if (lookahead == '\n') ADVANCE(113); if (lookahead == '\r') ADVANCE(43); - if (lookahead == '!') ADVANCE(153); - if (lookahead == '"') ADVANCE(179); - if (lookahead == '#') ADVANCE(186); - if (lookahead == '$') ADVANCE(163); - if (lookahead == '%') ADVANCE(137); - if (lookahead == '&') ADVANCE(52); - if (lookahead == '(') ADVANCE(113); - if (lookahead == '*') ADVANCE(133); - if (lookahead == '+') ADVANCE(140); - if (lookahead == ',') ADVANCE(101); - if (lookahead == '-') ADVANCE(143); - if (lookahead == '/') ADVANCE(135); - if (lookahead == ';') ADVANCE(105); - if (lookahead == '<') ADVANCE(119); - if (lookahead == '=') ADVANCE(156); - if (lookahead == '>') ADVANCE(122); - if (lookahead == '?') ADVANCE(128); - if (lookahead == '@') ADVANCE(173); - if (lookahead == '[') ADVANCE(164); + if (lookahead == '!') ADVANCE(154); + if (lookahead == '"') ADVANCE(182); + if (lookahead == '#') ADVANCE(189); + if (lookahead == '$') ADVANCE(164); + if (lookahead == '%') ADVANCE(138); + if (lookahead == '&') ADVANCE(53); + if (lookahead == '(') ADVANCE(114); + if (lookahead == '*') ADVANCE(134); + if (lookahead == '+') ADVANCE(141); + if (lookahead == ',') ADVANCE(102); + if (lookahead == '-') ADVANCE(144); + if (lookahead == '/') ADVANCE(136); + if (lookahead == ';') ADVANCE(106); + if (lookahead == '<') ADVANCE(120); + if (lookahead == '=') ADVANCE(157); + if (lookahead == '>') ADVANCE(123); + if (lookahead == '?') ADVANCE(129); + if (lookahead == '@') ADVANCE(176); + if (lookahead == '[') ADVANCE(165); if (lookahead == '\\') SKIP(28) - if (lookahead == '^') ADVANCE(130); - if (lookahead == '{') ADVANCE(115); - if (lookahead == '|') ADVANCE(126); - if (lookahead == '}') ADVANCE(116); - if (lookahead == '~') ADVANCE(148); + if (lookahead == '^') ADVANCE(131); + if (lookahead == '{') ADVANCE(116); + if (lookahead == '|') ADVANCE(127); + if (lookahead == '}') ADVANCE(117); + if (lookahead == '~') ADVANCE(149); if (lookahead == '\t' || lookahead == ' ') SKIP(43) - if (('.' <= lookahead && lookahead <= '9')) ADVANCE(177); + if (('.' <= lookahead && lookahead <= '9')) ADVANCE(180); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(175); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(178); END_STATE(); case 44: - if (lookahead == '!') ADVANCE(153); - if (lookahead == '"') ADVANCE(179); - if (lookahead == '#') ADVANCE(186); - if (lookahead == '$') ADVANCE(163); - if (lookahead == '%') ADVANCE(137); - if (lookahead == '&') ADVANCE(52); - if (lookahead == '(') ADVANCE(113); - if (lookahead == ')') ADVANCE(114); - if (lookahead == '*') ADVANCE(133); - if (lookahead == '+') ADVANCE(140); - if (lookahead == ',') ADVANCE(101); - if (lookahead == '-') ADVANCE(143); - if (lookahead == '/') ADVANCE(134); - if (lookahead == ':') ADVANCE(117); - if (lookahead == ';') ADVANCE(105); - if (lookahead == '<') ADVANCE(119); - if (lookahead == '=') ADVANCE(156); - if (lookahead == '>') ADVANCE(122); - if (lookahead == '?') ADVANCE(128); - if (lookahead == '@') ADVANCE(174); - if (lookahead == '[') ADVANCE(164); + if (lookahead == '!') ADVANCE(154); + if (lookahead == '"') ADVANCE(182); + if (lookahead == '#') ADVANCE(189); + if (lookahead == '$') ADVANCE(164); + if (lookahead == '%') ADVANCE(138); + if (lookahead == '&') ADVANCE(53); + if (lookahead == '(') ADVANCE(114); + if (lookahead == ')') ADVANCE(115); + if (lookahead == '*') ADVANCE(134); + if (lookahead == '+') ADVANCE(141); + if (lookahead == ',') ADVANCE(102); + if (lookahead == '-') ADVANCE(144); + if (lookahead == '/') ADVANCE(135); + if (lookahead == ':') ADVANCE(118); + if (lookahead == ';') ADVANCE(106); + if (lookahead == '<') ADVANCE(120); + if (lookahead == '=') ADVANCE(157); + if (lookahead == '>') ADVANCE(123); + if (lookahead == '?') ADVANCE(129); + if (lookahead == '@') ADVANCE(177); + if (lookahead == '[') ADVANCE(165); if (lookahead == '\\') SKIP(2) - if (lookahead == ']') ADVANCE(165); - if (lookahead == '^') ADVANCE(130); - if (lookahead == '{') ADVANCE(115); - if (lookahead == '|') ADVANCE(126); - if (lookahead == '}') ADVANCE(116); - if (lookahead == '~') ADVANCE(148); + if (lookahead == ']') ADVANCE(166); + if (lookahead == '^') ADVANCE(131); + if (lookahead == '{') ADVANCE(116); + if (lookahead == '|') ADVANCE(127); + if (lookahead == '}') ADVANCE(117); + if (lookahead == '~') ADVANCE(149); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(44) - if (('.' <= lookahead && lookahead <= '9')) ADVANCE(177); + if (('.' <= lookahead && lookahead <= '9')) ADVANCE(180); if (('A' <= lookahead && lookahead <= '_') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(175); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(178); END_STATE(); case 45: - if (lookahead == '!') ADVANCE(152); - if (lookahead == '"') ADVANCE(179); - if (lookahead == '#') ADVANCE(186); - if (lookahead == '$') ADVANCE(163); - if (lookahead == '(') ADVANCE(113); - if (lookahead == ')') ADVANCE(114); - if (lookahead == '+') ADVANCE(139); - if (lookahead == '-') ADVANCE(142); - if (lookahead == '/') ADVANCE(134); - if (lookahead == ';') ADVANCE(105); - if (lookahead == '@') ADVANCE(173); + if (lookahead == '!') ADVANCE(153); + if (lookahead == '"') ADVANCE(182); + if (lookahead == '#') ADVANCE(189); + if (lookahead == '$') ADVANCE(164); + if (lookahead == '(') ADVANCE(114); + if (lookahead == ')') ADVANCE(115); + if (lookahead == '+') ADVANCE(140); + if (lookahead == '-') ADVANCE(143); + if (lookahead == '/') ADVANCE(135); + if (lookahead == ':') ADVANCE(171); + if (lookahead == ';') ADVANCE(106); + if (lookahead == '@') ADVANCE(176); if (lookahead == '\\') SKIP(9) - if (lookahead == '{') ADVANCE(115); - if (lookahead == '}') ADVANCE(116); + if (lookahead == ']') ADVANCE(166); + if (lookahead == '{') ADVANCE(116); + if (lookahead == '}') ADVANCE(117); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(45) - if (('.' <= lookahead && lookahead <= '9')) ADVANCE(177); + lookahead == ' ') SKIP(46) + if (('.' <= lookahead && lookahead <= '9')) ADVANCE(180); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(175); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(178); END_STATE(); case 46: - if (lookahead == '!') ADVANCE(57); - if (lookahead == '%') ADVANCE(136); - if (lookahead == '&') ADVANCE(52); - if (lookahead == '(') ADVANCE(120); - if (lookahead == ')') ADVANCE(114); - if (lookahead == '*') ADVANCE(132); - if (lookahead == '+') ADVANCE(138); - if (lookahead == ',') ADVANCE(101); - if (lookahead == '-') ADVANCE(141); - if (lookahead == '/') ADVANCE(134); - if (lookahead == ':') ADVANCE(118); - if (lookahead == ';') ADVANCE(105); - if (lookahead == '<') ADVANCE(119); - if (lookahead == '=') ADVANCE(58); - if (lookahead == '>') ADVANCE(121); - if (lookahead == '?') ADVANCE(128); - if (lookahead == '[') ADVANCE(164); - if (lookahead == '\\') SKIP(17) - if (lookahead == ']') ADVANCE(165); - if (lookahead == '^') ADVANCE(129); - if (lookahead == '|') ADVANCE(126); - if (lookahead == '~') ADVANCE(148); + if (lookahead == '!') ADVANCE(153); + if (lookahead == '"') ADVANCE(182); + if (lookahead == '#') ADVANCE(189); + if (lookahead == '$') ADVANCE(164); + if (lookahead == '(') ADVANCE(114); + if (lookahead == ')') ADVANCE(115); + if (lookahead == '+') ADVANCE(140); + if (lookahead == '-') ADVANCE(143); + if (lookahead == '/') ADVANCE(135); + if (lookahead == ';') ADVANCE(106); + if (lookahead == '@') ADVANCE(176); + if (lookahead == '\\') SKIP(9) + if (lookahead == ']') ADVANCE(166); + if (lookahead == '{') ADVANCE(116); + if (lookahead == '}') ADVANCE(117); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(47) - if (('A' <= lookahead && lookahead <= '_') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(175); + lookahead == ' ') SKIP(46) + if (('.' <= lookahead && lookahead <= '9')) ADVANCE(180); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(178); END_STATE(); case 47: - if (lookahead == '!') ADVANCE(57); - if (lookahead == '%') ADVANCE(136); - if (lookahead == '&') ADVANCE(52); - if (lookahead == ')') ADVANCE(114); - if (lookahead == '*') ADVANCE(132); - if (lookahead == '+') ADVANCE(138); - if (lookahead == ',') ADVANCE(101); - if (lookahead == '-') ADVANCE(141); - if (lookahead == '/') ADVANCE(134); - if (lookahead == ':') ADVANCE(117); - if (lookahead == ';') ADVANCE(105); - if (lookahead == '<') ADVANCE(119); - if (lookahead == '=') ADVANCE(58); - if (lookahead == '>') ADVANCE(121); - if (lookahead == '?') ADVANCE(128); - if (lookahead == '[') ADVANCE(164); + if (lookahead == '!') ADVANCE(58); + if (lookahead == '%') ADVANCE(137); + if (lookahead == '&') ADVANCE(53); + if (lookahead == '(') ADVANCE(121); + if (lookahead == ')') ADVANCE(115); + if (lookahead == '*') ADVANCE(133); + if (lookahead == '+') ADVANCE(139); + if (lookahead == ',') ADVANCE(102); + if (lookahead == '-') ADVANCE(142); + if (lookahead == '/') ADVANCE(135); + if (lookahead == ':') ADVANCE(119); + if (lookahead == ';') ADVANCE(106); + if (lookahead == '<') ADVANCE(120); + if (lookahead == '=') ADVANCE(59); + if (lookahead == '>') ADVANCE(122); + if (lookahead == '?') ADVANCE(129); + if (lookahead == '[') ADVANCE(165); if (lookahead == '\\') SKIP(17) - if (lookahead == ']') ADVANCE(165); - if (lookahead == '^') ADVANCE(129); - if (lookahead == '|') ADVANCE(126); - if (lookahead == '~') ADVANCE(148); + if (lookahead == ']') ADVANCE(166); + if (lookahead == '^') ADVANCE(130); + if (lookahead == '|') ADVANCE(127); + if (lookahead == '~') ADVANCE(149); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(47) + lookahead == ' ') SKIP(48) if (('A' <= lookahead && lookahead <= '_') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(175); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(178); END_STATE(); case 48: - if (lookahead == '!') ADVANCE(57); - if (lookahead == '%') ADVANCE(136); - if (lookahead == '&') ADVANCE(52); - if (lookahead == ')') ADVANCE(114); - if (lookahead == '*') ADVANCE(132); - if (lookahead == '+') ADVANCE(138); - if (lookahead == ',') ADVANCE(101); - if (lookahead == '-') ADVANCE(141); - if (lookahead == '/') ADVANCE(134); - if (lookahead == ':') ADVANCE(117); - if (lookahead == ';') ADVANCE(105); - if (lookahead == '<') ADVANCE(119); - if (lookahead == '=') ADVANCE(58); - if (lookahead == '>') ADVANCE(121); - if (lookahead == '?') ADVANCE(128); - if (lookahead == '\\') SKIP(19) - if (lookahead == ']') ADVANCE(165); - if (lookahead == '^') ADVANCE(129); - if (lookahead == '|') ADVANCE(126); - if (lookahead == '~') ADVANCE(148); + if (lookahead == '!') ADVANCE(58); + if (lookahead == '%') ADVANCE(137); + if (lookahead == '&') ADVANCE(53); + if (lookahead == ')') ADVANCE(115); + if (lookahead == '*') ADVANCE(133); + if (lookahead == '+') ADVANCE(139); + if (lookahead == ',') ADVANCE(102); + if (lookahead == '-') ADVANCE(142); + if (lookahead == '/') ADVANCE(135); + if (lookahead == ':') ADVANCE(118); + if (lookahead == ';') ADVANCE(106); + if (lookahead == '<') ADVANCE(120); + if (lookahead == '=') ADVANCE(59); + if (lookahead == '>') ADVANCE(122); + if (lookahead == '?') ADVANCE(129); + if (lookahead == '[') ADVANCE(165); + if (lookahead == '\\') SKIP(17) + if (lookahead == ']') ADVANCE(166); + if (lookahead == '^') ADVANCE(130); + if (lookahead == '|') ADVANCE(127); + if (lookahead == '~') ADVANCE(149); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(49) - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(171); - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(175); + lookahead == ' ') SKIP(48) + if (('A' <= lookahead && lookahead <= '_') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(178); END_STATE(); case 49: - if (lookahead == '!') ADVANCE(57); - if (lookahead == '%') ADVANCE(136); - if (lookahead == '&') ADVANCE(52); - if (lookahead == ')') ADVANCE(114); - if (lookahead == '*') ADVANCE(132); - if (lookahead == '+') ADVANCE(138); - if (lookahead == ',') ADVANCE(101); - if (lookahead == '-') ADVANCE(141); - if (lookahead == '/') ADVANCE(134); - if (lookahead == ':') ADVANCE(117); - if (lookahead == ';') ADVANCE(105); - if (lookahead == '<') ADVANCE(119); - if (lookahead == '=') ADVANCE(58); - if (lookahead == '>') ADVANCE(121); - if (lookahead == '?') ADVANCE(128); + if (lookahead == '!') ADVANCE(58); + if (lookahead == '%') ADVANCE(137); + if (lookahead == '&') ADVANCE(53); + if (lookahead == ')') ADVANCE(115); + if (lookahead == '*') ADVANCE(133); + if (lookahead == '+') ADVANCE(139); + if (lookahead == ',') ADVANCE(102); + if (lookahead == '-') ADVANCE(142); + if (lookahead == '/') ADVANCE(135); + if (lookahead == ':') ADVANCE(118); + if (lookahead == ';') ADVANCE(106); + if (lookahead == '<') ADVANCE(120); + if (lookahead == '=') ADVANCE(59); + if (lookahead == '>') ADVANCE(122); + if (lookahead == '?') ADVANCE(129); if (lookahead == '\\') SKIP(19) - if (lookahead == ']') ADVANCE(165); - if (lookahead == '^') ADVANCE(129); - if (lookahead == '|') ADVANCE(126); - if (lookahead == '~') ADVANCE(148); + if (lookahead == ']') ADVANCE(166); + if (lookahead == '^') ADVANCE(130); + if (lookahead == '|') ADVANCE(127); + if (lookahead == '~') ADVANCE(149); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(49) + lookahead == ' ') SKIP(50) + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(174); if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(175); + lookahead == '_') ADVANCE(178); END_STATE(); case 50: - if (lookahead == '"') ADVANCE(179); - if (lookahead == '\\') ADVANCE(22); + if (lookahead == '!') ADVANCE(58); + if (lookahead == '%') ADVANCE(137); + if (lookahead == '&') ADVANCE(53); + if (lookahead == ')') ADVANCE(115); + if (lookahead == '*') ADVANCE(133); + if (lookahead == '+') ADVANCE(139); + if (lookahead == ',') ADVANCE(102); + if (lookahead == '-') ADVANCE(142); + if (lookahead == '/') ADVANCE(135); + if (lookahead == ':') ADVANCE(118); + if (lookahead == ';') ADVANCE(106); + if (lookahead == '<') ADVANCE(120); + if (lookahead == '=') ADVANCE(59); + if (lookahead == '>') ADVANCE(122); + if (lookahead == '?') ADVANCE(129); + if (lookahead == '\\') SKIP(19) + if (lookahead == ']') ADVANCE(166); + if (lookahead == '^') ADVANCE(130); + if (lookahead == '|') ADVANCE(127); + if (lookahead == '~') ADVANCE(149); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') ADVANCE(180); - if (lookahead != 0) ADVANCE(181); + lookahead == ' ') SKIP(50) + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(178); END_STATE(); case 51: - if (lookahead == '"') ADVANCE(179); - if (lookahead == '\\') SKIP(21) + if (lookahead == '"') ADVANCE(182); + if (lookahead == '\\') ADVANCE(22); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') ADVANCE(180); - if (lookahead != 0) ADVANCE(181); + lookahead == ' ') ADVANCE(183); + if (lookahead != 0) ADVANCE(184); END_STATE(); case 52: - if (lookahead == '&') ADVANCE(150); + if (lookahead == '"') ADVANCE(182); + if (lookahead == '\\') SKIP(21) + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') ADVANCE(183); + if (lookahead != 0) ADVANCE(184); END_STATE(); case 53: - if (lookahead == '/') ADVANCE(166); - if (lookahead == '[') ADVANCE(169); - if (lookahead == '\\') ADVANCE(79); - if (lookahead != 0 && - lookahead != '\n' && - lookahead != '\r') ADVANCE(167); + if (lookahead == '&') ADVANCE(151); END_STATE(); case 54: - if (lookahead == ':') ADVANCE(176); + if (lookahead == '/') ADVANCE(167); + if (lookahead == '[') ADVANCE(170); + if (lookahead == '\\') ADVANCE(80); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '\r') ADVANCE(168); END_STATE(); case 55: - if (lookahead == ':') ADVANCE(117); + if (lookahead == ':') ADVANCE(179); + END_STATE(); + case 56: + if (lookahead == ':') ADVANCE(118); if (lookahead == '\\') SKIP(24) if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(55) + lookahead == ' ') SKIP(56) END_STATE(); - case 56: - if (lookahead == ':') ADVANCE(117); + case 57: + if (lookahead == ':') ADVANCE(118); if (lookahead == '\\') SKIP(24) if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(55) - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(172); - END_STATE(); - case 57: - if (lookahead == '=') ADVANCE(147); - if (lookahead == '~') ADVANCE(149); + lookahead == ' ') SKIP(56) + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(175); END_STATE(); case 58: - if (lookahead == '=') ADVANCE(146); + if (lookahead == '=') ADVANCE(148); + if (lookahead == '~') ADVANCE(150); END_STATE(); case 59: - if (lookahead == '\\') ADVANCE(79); - if (lookahead == ']') ADVANCE(170); + if (lookahead == '=') ADVANCE(147); + END_STATE(); + case 60: + if (lookahead == '[') ADVANCE(170); + if (lookahead == '\\') ADVANCE(80); + if (lookahead == ']') ADVANCE(173); if (lookahead != 0 && lookahead != '\n' && lookahead != '\r' && - lookahead != '/' && - lookahead != '[') ADVANCE(167); - END_STATE(); - case 60: - if (lookahead == 'a') ADVANCE(71); + lookahead != '/') ADVANCE(168); END_STATE(); case 61: - if (lookahead == 'a') ADVANCE(65); + if (lookahead == 'a') ADVANCE(72); END_STATE(); case 62: - if (lookahead == 'a') ADVANCE(64); + if (lookahead == 'a') ADVANCE(66); END_STATE(); case 63: - if (lookahead == 'c') ADVANCE(70); + if (lookahead == 'a') ADVANCE(65); END_STATE(); case 64: - if (lookahead == 'c') ADVANCE(69); + if (lookahead == 'c') ADVANCE(71); END_STATE(); case 65: - if (lookahead == 'd') ADVANCE(103); + if (lookahead == 'c') ADVANCE(70); END_STATE(); case 66: - if (lookahead == 'd') ADVANCE(68); + if (lookahead == 'd') ADVANCE(104); END_STATE(); case 67: - if (lookahead == 'e') ADVANCE(75); + if (lookahead == 'd') ADVANCE(69); END_STATE(); case 68: - if (lookahead == 'e') ADVANCE(102); + if (lookahead == 'e') ADVANCE(76); END_STATE(); case 69: - if (lookahead == 'e') ADVANCE(104); + if (lookahead == 'e') ADVANCE(103); END_STATE(); case 70: - if (lookahead == 'l') ADVANCE(76); + if (lookahead == 'e') ADVANCE(105); END_STATE(); case 71: - if (lookahead == 'm') ADVANCE(67); + if (lookahead == 'l') ADVANCE(77); END_STATE(); case 72: - if (lookahead == 'n') ADVANCE(63); + if (lookahead == 'm') ADVANCE(68); END_STATE(); case 73: - if (lookahead == 'o') ADVANCE(61); + if (lookahead == 'n') ADVANCE(64); END_STATE(); case 74: - if (lookahead == 'p') ADVANCE(62); + if (lookahead == 'o') ADVANCE(62); END_STATE(); case 75: - if (lookahead == 's') ADVANCE(74); + if (lookahead == 'p') ADVANCE(63); END_STATE(); case 76: - if (lookahead == 'u') ADVANCE(66); + if (lookahead == 's') ADVANCE(75); END_STATE(); case 77: + if (lookahead == 'u') ADVANCE(67); + END_STATE(); + case 78: if (lookahead == '+' || lookahead == '-' || lookahead == '.' || - ('0' <= lookahead && lookahead <= '9')) ADVANCE(178); + ('0' <= lookahead && lookahead <= '9')) ADVANCE(181); END_STATE(); - case 78: + case 79: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(185); - END_STATE(); - case 79: - if (lookahead != 0 && - lookahead != '\n') ADVANCE(168); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(188); END_STATE(); case 80: - if (eof) ADVANCE(100); - if (lookahead == '\n') SKIP(91) + if (lookahead != 0 && + lookahead != '\n') ADVANCE(169); END_STATE(); case 81: - if (eof) ADVANCE(100); - if (lookahead == '\n') SKIP(91) - if (lookahead == '\r') SKIP(80) + if (eof) ADVANCE(101); + if (lookahead == '\n') SKIP(92) END_STATE(); case 82: - if (eof) ADVANCE(100); - if (lookahead == '\n') SKIP(95) + if (eof) ADVANCE(101); + if (lookahead == '\n') SKIP(92) + if (lookahead == '\r') SKIP(81) END_STATE(); case 83: - if (eof) ADVANCE(100); - if (lookahead == '\n') SKIP(95) - if (lookahead == '\r') SKIP(82) + if (eof) ADVANCE(101); + if (lookahead == '\n') SKIP(97) END_STATE(); case 84: - if (eof) ADVANCE(100); - if (lookahead == '\n') SKIP(99) + if (eof) ADVANCE(101); + if (lookahead == '\n') SKIP(97) + if (lookahead == '\r') SKIP(83) END_STATE(); case 85: - if (eof) ADVANCE(100); - if (lookahead == '\n') SKIP(99) - if (lookahead == '\r') SKIP(84) + if (eof) ADVANCE(101); + if (lookahead == '\n') SKIP(95) END_STATE(); case 86: - if (eof) ADVANCE(100); - if (lookahead == '\n') SKIP(97) + if (eof) ADVANCE(101); + if (lookahead == '\n') SKIP(95) + if (lookahead == '\r') SKIP(85) END_STATE(); case 87: - if (eof) ADVANCE(100); - if (lookahead == '\n') SKIP(97) - if (lookahead == '\r') SKIP(86) + if (eof) ADVANCE(101); + if (lookahead == '\n') SKIP(100) END_STATE(); case 88: - if (eof) ADVANCE(100); - if (lookahead == '\n') SKIP(93) + if (eof) ADVANCE(101); + if (lookahead == '\n') SKIP(100) + if (lookahead == '\r') SKIP(87) END_STATE(); case 89: - if (eof) ADVANCE(100); + if (eof) ADVANCE(101); if (lookahead == '\n') SKIP(93) - if (lookahead == '\r') SKIP(88) END_STATE(); case 90: - if (eof) ADVANCE(100); - if (lookahead == '!') ADVANCE(153); - if (lookahead == '"') ADVANCE(179); - if (lookahead == '#') ADVANCE(186); - if (lookahead == '$') ADVANCE(163); - if (lookahead == '%') ADVANCE(137); - if (lookahead == '&') ADVANCE(52); - if (lookahead == '(') ADVANCE(120); - if (lookahead == ')') ADVANCE(114); - if (lookahead == '*') ADVANCE(133); - if (lookahead == '+') ADVANCE(140); - if (lookahead == ',') ADVANCE(101); - if (lookahead == '-') ADVANCE(143); + if (eof) ADVANCE(101); + if (lookahead == '\n') SKIP(93) + if (lookahead == '\r') SKIP(89) + END_STATE(); + case 91: + if (eof) ADVANCE(101); + if (lookahead == '!') ADVANCE(154); + if (lookahead == '"') ADVANCE(182); + if (lookahead == '#') ADVANCE(189); + if (lookahead == '$') ADVANCE(164); + if (lookahead == '%') ADVANCE(138); + if (lookahead == '&') ADVANCE(53); + if (lookahead == '(') ADVANCE(121); + if (lookahead == ')') ADVANCE(115); + if (lookahead == '*') ADVANCE(134); + if (lookahead == '+') ADVANCE(141); + if (lookahead == ',') ADVANCE(102); + if (lookahead == '-') ADVANCE(144); + if (lookahead == '/') ADVANCE(136); + if (lookahead == ':') ADVANCE(119); + if (lookahead == ';') ADVANCE(106); + if (lookahead == '<') ADVANCE(120); + if (lookahead == '=') ADVANCE(157); + if (lookahead == '>') ADVANCE(122); + if (lookahead == '?') ADVANCE(129); + if (lookahead == '@') ADVANCE(177); + if (lookahead == '[') ADVANCE(165); + if (lookahead == '\\') SKIP(90) + if (lookahead == ']') ADVANCE(166); + if (lookahead == '^') ADVANCE(131); + if (lookahead == '{') ADVANCE(116); + if (lookahead == '|') ADVANCE(127); + if (lookahead == '~') ADVANCE(149); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(93) + if (('.' <= lookahead && lookahead <= '9')) ADVANCE(180); + if (('A' <= lookahead && lookahead <= '_') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(178); + END_STATE(); + case 92: + if (eof) ADVANCE(101); + if (lookahead == '!') ADVANCE(154); + if (lookahead == '"') ADVANCE(182); + if (lookahead == '#') ADVANCE(189); + if (lookahead == '$') ADVANCE(164); + if (lookahead == '%') ADVANCE(138); + if (lookahead == '&') ADVANCE(53); + if (lookahead == '(') ADVANCE(114); + if (lookahead == ')') ADVANCE(115); + if (lookahead == '*') ADVANCE(134); + if (lookahead == '+') ADVANCE(141); + if (lookahead == ',') ADVANCE(102); + if (lookahead == '-') ADVANCE(144); if (lookahead == '/') ADVANCE(135); if (lookahead == ':') ADVANCE(118); - if (lookahead == ';') ADVANCE(105); - if (lookahead == '<') ADVANCE(119); - if (lookahead == '=') ADVANCE(156); - if (lookahead == '>') ADVANCE(121); - if (lookahead == '?') ADVANCE(128); - if (lookahead == '@') ADVANCE(174); - if (lookahead == '[') ADVANCE(164); - if (lookahead == '\\') SKIP(89) - if (lookahead == ']') ADVANCE(165); - if (lookahead == '^') ADVANCE(130); - if (lookahead == '{') ADVANCE(115); - if (lookahead == '|') ADVANCE(126); - if (lookahead == '~') ADVANCE(148); + if (lookahead == ';') ADVANCE(106); + if (lookahead == '<') ADVANCE(120); + if (lookahead == '=') ADVANCE(157); + if (lookahead == '>') ADVANCE(123); + if (lookahead == '?') ADVANCE(129); + if (lookahead == '@') ADVANCE(177); + if (lookahead == '[') ADVANCE(165); + if (lookahead == '\\') SKIP(82) + if (lookahead == ']') ADVANCE(166); + if (lookahead == '^') ADVANCE(131); + if (lookahead == '{') ADVANCE(116); + if (lookahead == '|') ADVANCE(127); + if (lookahead == '}') ADVANCE(117); + if (lookahead == '~') ADVANCE(149); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(92) + if (('.' <= lookahead && lookahead <= '9')) ADVANCE(180); + if (('A' <= lookahead && lookahead <= '_') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(178); + END_STATE(); + case 93: + if (eof) ADVANCE(101); + if (lookahead == '!') ADVANCE(154); + if (lookahead == '"') ADVANCE(182); + if (lookahead == '#') ADVANCE(189); + if (lookahead == '$') ADVANCE(164); + if (lookahead == '%') ADVANCE(138); + if (lookahead == '&') ADVANCE(53); + if (lookahead == '(') ADVANCE(114); + if (lookahead == ')') ADVANCE(115); + if (lookahead == '*') ADVANCE(134); + if (lookahead == '+') ADVANCE(141); + if (lookahead == ',') ADVANCE(102); + if (lookahead == '-') ADVANCE(144); + if (lookahead == '/') ADVANCE(136); + if (lookahead == ':') ADVANCE(118); + if (lookahead == ';') ADVANCE(106); + if (lookahead == '<') ADVANCE(120); + if (lookahead == '=') ADVANCE(157); + if (lookahead == '>') ADVANCE(122); + if (lookahead == '?') ADVANCE(129); + if (lookahead == '@') ADVANCE(177); + if (lookahead == '[') ADVANCE(165); + if (lookahead == '\\') SKIP(90) + if (lookahead == ']') ADVANCE(166); + if (lookahead == '^') ADVANCE(131); + if (lookahead == '{') ADVANCE(116); + if (lookahead == '|') ADVANCE(127); + if (lookahead == '~') ADVANCE(149); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(93) - if (('.' <= lookahead && lookahead <= '9')) ADVANCE(177); + if (('.' <= lookahead && lookahead <= '9')) ADVANCE(180); if (('A' <= lookahead && lookahead <= '_') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(175); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(178); END_STATE(); - case 91: - if (eof) ADVANCE(100); - if (lookahead == '!') ADVANCE(153); - if (lookahead == '"') ADVANCE(179); - if (lookahead == '#') ADVANCE(186); - if (lookahead == '$') ADVANCE(163); - if (lookahead == '%') ADVANCE(137); - if (lookahead == '&') ADVANCE(52); - if (lookahead == '(') ADVANCE(113); - if (lookahead == ')') ADVANCE(114); - if (lookahead == '*') ADVANCE(133); - if (lookahead == '+') ADVANCE(140); - if (lookahead == ',') ADVANCE(101); - if (lookahead == '-') ADVANCE(143); - if (lookahead == '/') ADVANCE(134); - if (lookahead == ':') ADVANCE(117); - if (lookahead == ';') ADVANCE(105); - if (lookahead == '<') ADVANCE(119); - if (lookahead == '=') ADVANCE(156); + case 94: + if (eof) ADVANCE(101); + if (lookahead == '!') ADVANCE(154); + if (lookahead == '"') ADVANCE(182); + if (lookahead == '#') ADVANCE(189); + if (lookahead == '$') ADVANCE(164); + if (lookahead == '%') ADVANCE(138); + if (lookahead == '&') ADVANCE(53); + if (lookahead == '(') ADVANCE(114); + if (lookahead == ')') ADVANCE(115); + if (lookahead == '*') ADVANCE(134); + if (lookahead == '+') ADVANCE(141); + if (lookahead == ',') ADVANCE(102); + if (lookahead == '-') ADVANCE(144); + if (lookahead == '/') ADVANCE(136); + if (lookahead == ':') ADVANCE(118); + if (lookahead == ';') ADVANCE(106); + if (lookahead == '<') ADVANCE(120); + if (lookahead == '=') ADVANCE(157); if (lookahead == '>') ADVANCE(122); - if (lookahead == '?') ADVANCE(128); - if (lookahead == '@') ADVANCE(174); - if (lookahead == '[') ADVANCE(164); - if (lookahead == '\\') SKIP(81) - if (lookahead == ']') ADVANCE(165); - if (lookahead == '^') ADVANCE(130); - if (lookahead == '{') ADVANCE(115); - if (lookahead == '|') ADVANCE(126); - if (lookahead == '}') ADVANCE(116); - if (lookahead == '~') ADVANCE(148); + if (lookahead == '?') ADVANCE(129); + if (lookahead == '@') ADVANCE(177); + if (lookahead == '\\') SKIP(86) + if (lookahead == ']') ADVANCE(166); + if (lookahead == '^') ADVANCE(131); + if (lookahead == '{') ADVANCE(116); + if (lookahead == '|') ADVANCE(127); + if (lookahead == '~') ADVANCE(149); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(95) + if (('.' <= lookahead && lookahead <= '9')) ADVANCE(180); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(174); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_') ADVANCE(178); + END_STATE(); + case 95: + if (eof) ADVANCE(101); + if (lookahead == '!') ADVANCE(154); + if (lookahead == '"') ADVANCE(182); + if (lookahead == '#') ADVANCE(189); + if (lookahead == '$') ADVANCE(164); + if (lookahead == '%') ADVANCE(138); + if (lookahead == '&') ADVANCE(53); + if (lookahead == '(') ADVANCE(114); + if (lookahead == ')') ADVANCE(115); + if (lookahead == '*') ADVANCE(134); + if (lookahead == '+') ADVANCE(141); + if (lookahead == ',') ADVANCE(102); + if (lookahead == '-') ADVANCE(144); + if (lookahead == '/') ADVANCE(136); + if (lookahead == ':') ADVANCE(118); + if (lookahead == ';') ADVANCE(106); + if (lookahead == '<') ADVANCE(120); + if (lookahead == '=') ADVANCE(157); + if (lookahead == '>') ADVANCE(122); + if (lookahead == '?') ADVANCE(129); + if (lookahead == '@') ADVANCE(177); + if (lookahead == '\\') SKIP(86) + if (lookahead == ']') ADVANCE(166); + if (lookahead == '^') ADVANCE(131); + if (lookahead == '{') ADVANCE(116); + if (lookahead == '|') ADVANCE(127); + if (lookahead == '~') ADVANCE(149); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(95) + if (('.' <= lookahead && lookahead <= '9')) ADVANCE(180); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(178); + END_STATE(); + case 96: + if (eof) ADVANCE(101); + if (lookahead == '!') ADVANCE(154); + if (lookahead == '"') ADVANCE(182); + if (lookahead == '#') ADVANCE(189); + if (lookahead == '$') ADVANCE(164); + if (lookahead == '%') ADVANCE(138); + if (lookahead == '&') ADVANCE(53); + if (lookahead == '(') ADVANCE(114); + if (lookahead == ')') ADVANCE(115); + if (lookahead == '*') ADVANCE(134); + if (lookahead == '+') ADVANCE(141); + if (lookahead == ',') ADVANCE(102); + if (lookahead == '-') ADVANCE(144); + if (lookahead == '/') ADVANCE(136); + if (lookahead == ':') ADVANCE(119); + if (lookahead == ';') ADVANCE(106); + if (lookahead == '<') ADVANCE(120); + if (lookahead == '=') ADVANCE(157); + if (lookahead == '>') ADVANCE(122); + if (lookahead == '?') ADVANCE(129); + if (lookahead == '@') ADVANCE(177); + if (lookahead == '[') ADVANCE(165); + if (lookahead == '\\') SKIP(90) + if (lookahead == ']') ADVANCE(166); + if (lookahead == '^') ADVANCE(131); + if (lookahead == '{') ADVANCE(116); + if (lookahead == '|') ADVANCE(127); + if (lookahead == '~') ADVANCE(149); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(91) - if (('.' <= lookahead && lookahead <= '9')) ADVANCE(177); + lookahead == ' ') SKIP(93) + if (('.' <= lookahead && lookahead <= '9')) ADVANCE(180); if (('A' <= lookahead && lookahead <= '_') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(175); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(178); END_STATE(); - case 92: - if (eof) ADVANCE(100); - if (lookahead == '!') ADVANCE(153); - if (lookahead == '"') ADVANCE(179); - if (lookahead == '#') ADVANCE(186); - if (lookahead == '$') ADVANCE(163); + case 97: + if (eof) ADVANCE(101); + if (lookahead == '!') ADVANCE(154); + if (lookahead == '"') ADVANCE(182); + if (lookahead == '#') ADVANCE(189); + if (lookahead == '$') ADVANCE(164); if (lookahead == '%') ADVANCE(137); - if (lookahead == '&') ADVANCE(52); - if (lookahead == '(') ADVANCE(113); - if (lookahead == ')') ADVANCE(114); + if (lookahead == '&') ADVANCE(53); + if (lookahead == '(') ADVANCE(114); + if (lookahead == ')') ADVANCE(115); if (lookahead == '*') ADVANCE(133); if (lookahead == '+') ADVANCE(140); - if (lookahead == ',') ADVANCE(101); + if (lookahead == ',') ADVANCE(102); if (lookahead == '-') ADVANCE(143); if (lookahead == '/') ADVANCE(135); if (lookahead == ':') ADVANCE(118); - if (lookahead == ';') ADVANCE(105); - if (lookahead == '<') ADVANCE(119); - if (lookahead == '=') ADVANCE(156); - if (lookahead == '>') ADVANCE(121); - if (lookahead == '?') ADVANCE(128); - if (lookahead == '@') ADVANCE(174); - if (lookahead == '[') ADVANCE(164); - if (lookahead == '\\') SKIP(89) - if (lookahead == ']') ADVANCE(165); + if (lookahead == '<') ADVANCE(120); + if (lookahead == '=') ADVANCE(59); + if (lookahead == '>') ADVANCE(122); + if (lookahead == '?') ADVANCE(129); + if (lookahead == '@') ADVANCE(177); + if (lookahead == '[') ADVANCE(165); + if (lookahead == '\\') SKIP(84) if (lookahead == '^') ADVANCE(130); - if (lookahead == '{') ADVANCE(115); - if (lookahead == '|') ADVANCE(126); - if (lookahead == '~') ADVANCE(148); + if (lookahead == '{') ADVANCE(116); + if (lookahead == '|') ADVANCE(127); + if (lookahead == '}') ADVANCE(117); + if (lookahead == '~') ADVANCE(149); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(93) - if (('.' <= lookahead && lookahead <= '9')) ADVANCE(177); - if (('A' <= lookahead && lookahead <= '_') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(175); + lookahead == ' ') SKIP(97) + if (('.' <= lookahead && lookahead <= '9')) ADVANCE(180); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(178); END_STATE(); - case 93: - if (eof) ADVANCE(100); - if (lookahead == '!') ADVANCE(153); - if (lookahead == '"') ADVANCE(179); - if (lookahead == '#') ADVANCE(186); - if (lookahead == '$') ADVANCE(163); + case 98: + if (eof) ADVANCE(101); + if (lookahead == '!') ADVANCE(154); + if (lookahead == '"') ADVANCE(182); + if (lookahead == '#') ADVANCE(189); + if (lookahead == '$') ADVANCE(164); if (lookahead == '%') ADVANCE(137); - if (lookahead == '&') ADVANCE(52); - if (lookahead == '(') ADVANCE(113); - if (lookahead == ')') ADVANCE(114); + if (lookahead == '&') ADVANCE(53); + if (lookahead == '(') ADVANCE(114); + if (lookahead == ')') ADVANCE(115); if (lookahead == '*') ADVANCE(133); if (lookahead == '+') ADVANCE(140); - if (lookahead == ',') ADVANCE(101); + if (lookahead == ',') ADVANCE(102); if (lookahead == '-') ADVANCE(143); if (lookahead == '/') ADVANCE(135); - if (lookahead == ':') ADVANCE(117); - if (lookahead == ';') ADVANCE(105); - if (lookahead == '<') ADVANCE(119); - if (lookahead == '=') ADVANCE(156); - if (lookahead == '>') ADVANCE(121); - if (lookahead == '?') ADVANCE(128); - if (lookahead == '@') ADVANCE(174); - if (lookahead == '[') ADVANCE(164); - if (lookahead == '\\') SKIP(89) - if (lookahead == ']') ADVANCE(165); + if (lookahead == ':') ADVANCE(119); + if (lookahead == '<') ADVANCE(120); + if (lookahead == '=') ADVANCE(59); + if (lookahead == '>') ADVANCE(122); + if (lookahead == '?') ADVANCE(129); + if (lookahead == '@') ADVANCE(177); + if (lookahead == '[') ADVANCE(165); + if (lookahead == '\\') SKIP(84) + if (lookahead == ']') ADVANCE(173); if (lookahead == '^') ADVANCE(130); - if (lookahead == '{') ADVANCE(115); - if (lookahead == '|') ADVANCE(126); - if (lookahead == '~') ADVANCE(148); + if (lookahead == '{') ADVANCE(116); + if (lookahead == '|') ADVANCE(127); + if (lookahead == '}') ADVANCE(117); + if (lookahead == '~') ADVANCE(149); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(93) - if (('.' <= lookahead && lookahead <= '9')) ADVANCE(177); + lookahead == ' ') SKIP(97) + if (('.' <= lookahead && lookahead <= '9')) ADVANCE(180); if (('A' <= lookahead && lookahead <= '_') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(175); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(178); END_STATE(); - case 94: - if (eof) ADVANCE(100); - if (lookahead == '!') ADVANCE(153); - if (lookahead == '"') ADVANCE(179); - if (lookahead == '#') ADVANCE(186); - if (lookahead == '$') ADVANCE(163); + case 99: + if (eof) ADVANCE(101); + if (lookahead == '!') ADVANCE(154); + if (lookahead == '"') ADVANCE(182); + if (lookahead == '#') ADVANCE(189); + if (lookahead == '$') ADVANCE(164); if (lookahead == '%') ADVANCE(137); - if (lookahead == '&') ADVANCE(52); - if (lookahead == '(') ADVANCE(113); - if (lookahead == ')') ADVANCE(114); + if (lookahead == '&') ADVANCE(53); + if (lookahead == '(') ADVANCE(114); if (lookahead == '*') ADVANCE(133); if (lookahead == '+') ADVANCE(140); - if (lookahead == ',') ADVANCE(101); + if (lookahead == ',') ADVANCE(102); if (lookahead == '-') ADVANCE(143); if (lookahead == '/') ADVANCE(135); - if (lookahead == ':') ADVANCE(117); - if (lookahead == ';') ADVANCE(105); - if (lookahead == '<') ADVANCE(119); - if (lookahead == '=') ADVANCE(156); - if (lookahead == '>') ADVANCE(121); - if (lookahead == '?') ADVANCE(128); - if (lookahead == '@') ADVANCE(174); - if (lookahead == '\\') SKIP(83) - if (lookahead == ']') ADVANCE(165); + if (lookahead == '<') ADVANCE(120); + if (lookahead == '=') ADVANCE(59); + if (lookahead == '>') ADVANCE(122); + if (lookahead == '?') ADVANCE(129); + if (lookahead == '@') ADVANCE(177); + if (lookahead == '\\') SKIP(88) if (lookahead == '^') ADVANCE(130); - if (lookahead == '{') ADVANCE(115); - if (lookahead == '|') ADVANCE(126); - if (lookahead == '~') ADVANCE(148); + if (lookahead == '{') ADVANCE(116); + if (lookahead == '|') ADVANCE(127); + if (lookahead == '~') ADVANCE(149); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(95) - if (('.' <= lookahead && lookahead <= '9')) ADVANCE(177); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(171); + lookahead == ' ') SKIP(100) + if (('.' <= lookahead && lookahead <= '9')) ADVANCE(180); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(174); if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(175); + lookahead == '_') ADVANCE(178); END_STATE(); - case 95: - if (eof) ADVANCE(100); - if (lookahead == '!') ADVANCE(153); - if (lookahead == '"') ADVANCE(179); - if (lookahead == '#') ADVANCE(186); - if (lookahead == '$') ADVANCE(163); + case 100: + if (eof) ADVANCE(101); + if (lookahead == '!') ADVANCE(154); + if (lookahead == '"') ADVANCE(182); + if (lookahead == '#') ADVANCE(189); + if (lookahead == '$') ADVANCE(164); if (lookahead == '%') ADVANCE(137); - if (lookahead == '&') ADVANCE(52); - if (lookahead == '(') ADVANCE(113); - if (lookahead == ')') ADVANCE(114); + if (lookahead == '&') ADVANCE(53); + if (lookahead == '(') ADVANCE(114); if (lookahead == '*') ADVANCE(133); if (lookahead == '+') ADVANCE(140); - if (lookahead == ',') ADVANCE(101); + if (lookahead == ',') ADVANCE(102); if (lookahead == '-') ADVANCE(143); if (lookahead == '/') ADVANCE(135); - if (lookahead == ':') ADVANCE(117); - if (lookahead == ';') ADVANCE(105); - if (lookahead == '<') ADVANCE(119); - if (lookahead == '=') ADVANCE(156); - if (lookahead == '>') ADVANCE(121); - if (lookahead == '?') ADVANCE(128); - if (lookahead == '@') ADVANCE(174); - if (lookahead == '\\') SKIP(83) - if (lookahead == ']') ADVANCE(165); + if (lookahead == '<') ADVANCE(120); + if (lookahead == '=') ADVANCE(59); + if (lookahead == '>') ADVANCE(122); + if (lookahead == '?') ADVANCE(129); + if (lookahead == '@') ADVANCE(177); + if (lookahead == '\\') SKIP(88) if (lookahead == '^') ADVANCE(130); - if (lookahead == '{') ADVANCE(115); - if (lookahead == '|') ADVANCE(126); - if (lookahead == '~') ADVANCE(148); + if (lookahead == '{') ADVANCE(116); + if (lookahead == '|') ADVANCE(127); + if (lookahead == '~') ADVANCE(149); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(95) - if (('.' <= lookahead && lookahead <= '9')) ADVANCE(177); + lookahead == ' ') SKIP(100) + if (('.' <= lookahead && lookahead <= '9')) ADVANCE(180); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(175); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(178); END_STATE(); - case 96: - if (eof) ADVANCE(100); - if (lookahead == '!') ADVANCE(153); - if (lookahead == '"') ADVANCE(179); - if (lookahead == '#') ADVANCE(186); - if (lookahead == '$') ADVANCE(163); - if (lookahead == '%') ADVANCE(136); - if (lookahead == '&') ADVANCE(52); - if (lookahead == '(') ADVANCE(113); - if (lookahead == ')') ADVANCE(114); - if (lookahead == '*') ADVANCE(132); - if (lookahead == '+') ADVANCE(139); - if (lookahead == ',') ADVANCE(101); - if (lookahead == '-') ADVANCE(142); - if (lookahead == '/') ADVANCE(134); - if (lookahead == ':') ADVANCE(118); - if (lookahead == '<') ADVANCE(119); - if (lookahead == '=') ADVANCE(58); - if (lookahead == '>') ADVANCE(121); - if (lookahead == '?') ADVANCE(128); - if (lookahead == '@') ADVANCE(174); - if (lookahead == '[') ADVANCE(164); - if (lookahead == '\\') SKIP(87) - if (lookahead == ']') ADVANCE(165); - if (lookahead == '^') ADVANCE(129); - if (lookahead == '{') ADVANCE(115); - if (lookahead == '|') ADVANCE(126); - if (lookahead == '}') ADVANCE(116); - if (lookahead == '~') ADVANCE(148); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(97) - if (('.' <= lookahead && lookahead <= '9')) ADVANCE(177); - if (('A' <= lookahead && lookahead <= '_') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(175); - END_STATE(); - case 97: - if (eof) ADVANCE(100); - if (lookahead == '!') ADVANCE(153); - if (lookahead == '"') ADVANCE(179); - if (lookahead == '#') ADVANCE(186); - if (lookahead == '$') ADVANCE(163); - if (lookahead == '%') ADVANCE(136); - if (lookahead == '&') ADVANCE(52); - if (lookahead == '(') ADVANCE(113); - if (lookahead == ')') ADVANCE(114); - if (lookahead == '*') ADVANCE(132); - if (lookahead == '+') ADVANCE(139); - if (lookahead == ',') ADVANCE(101); - if (lookahead == '-') ADVANCE(142); - if (lookahead == '/') ADVANCE(134); - if (lookahead == ':') ADVANCE(117); - if (lookahead == '<') ADVANCE(119); - if (lookahead == '=') ADVANCE(58); - if (lookahead == '>') ADVANCE(121); - if (lookahead == '?') ADVANCE(128); - if (lookahead == '@') ADVANCE(174); - if (lookahead == '[') ADVANCE(164); - if (lookahead == '\\') SKIP(87) - if (lookahead == ']') ADVANCE(165); - if (lookahead == '^') ADVANCE(129); - if (lookahead == '{') ADVANCE(115); - if (lookahead == '|') ADVANCE(126); - if (lookahead == '}') ADVANCE(116); - if (lookahead == '~') ADVANCE(148); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(97) - if (('.' <= lookahead && lookahead <= '9')) ADVANCE(177); - if (('A' <= lookahead && lookahead <= '_') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(175); - END_STATE(); - case 98: - if (eof) ADVANCE(100); - if (lookahead == '!') ADVANCE(153); - if (lookahead == '"') ADVANCE(179); - if (lookahead == '#') ADVANCE(186); - if (lookahead == '$') ADVANCE(163); - if (lookahead == '%') ADVANCE(136); - if (lookahead == '&') ADVANCE(52); - if (lookahead == '(') ADVANCE(113); - if (lookahead == '*') ADVANCE(132); - if (lookahead == '+') ADVANCE(139); - if (lookahead == ',') ADVANCE(101); - if (lookahead == '-') ADVANCE(142); - if (lookahead == '/') ADVANCE(134); - if (lookahead == '<') ADVANCE(119); - if (lookahead == '=') ADVANCE(58); - if (lookahead == '>') ADVANCE(121); - if (lookahead == '?') ADVANCE(128); - if (lookahead == '@') ADVANCE(174); - if (lookahead == '\\') SKIP(85) - if (lookahead == '^') ADVANCE(129); - if (lookahead == '{') ADVANCE(115); - if (lookahead == '|') ADVANCE(126); - if (lookahead == '~') ADVANCE(148); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(99) - if (('.' <= lookahead && lookahead <= '9')) ADVANCE(177); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(171); - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(175); - END_STATE(); - case 99: - if (eof) ADVANCE(100); - if (lookahead == '!') ADVANCE(153); - if (lookahead == '"') ADVANCE(179); - if (lookahead == '#') ADVANCE(186); - if (lookahead == '$') ADVANCE(163); - if (lookahead == '%') ADVANCE(136); - if (lookahead == '&') ADVANCE(52); - if (lookahead == '(') ADVANCE(113); - if (lookahead == '*') ADVANCE(132); - if (lookahead == '+') ADVANCE(139); - if (lookahead == ',') ADVANCE(101); - if (lookahead == '-') ADVANCE(142); - if (lookahead == '/') ADVANCE(134); - if (lookahead == '<') ADVANCE(119); - if (lookahead == '=') ADVANCE(58); - if (lookahead == '>') ADVANCE(121); - if (lookahead == '?') ADVANCE(128); - if (lookahead == '@') ADVANCE(174); - if (lookahead == '\\') SKIP(85) - if (lookahead == '^') ADVANCE(129); - if (lookahead == '{') ADVANCE(115); - if (lookahead == '|') ADVANCE(126); - if (lookahead == '~') ADVANCE(148); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(99) - if (('.' <= lookahead && lookahead <= '9')) ADVANCE(177); - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(175); - END_STATE(); - case 100: - ACCEPT_TOKEN(ts_builtin_sym_end); - END_STATE(); - case 101: - ACCEPT_TOKEN(anon_sym_COMMA); + case 101: + ACCEPT_TOKEN(ts_builtin_sym_end); END_STATE(); case 102: - ACCEPT_TOKEN(anon_sym_ATinclude); + ACCEPT_TOKEN(anon_sym_COMMA); END_STATE(); case 103: - ACCEPT_TOKEN(anon_sym_ATload); + ACCEPT_TOKEN(anon_sym_ATinclude); END_STATE(); case 104: - ACCEPT_TOKEN(anon_sym_ATnamespace); + ACCEPT_TOKEN(anon_sym_ATload); END_STATE(); case 105: - ACCEPT_TOKEN(anon_sym_SEMI); + ACCEPT_TOKEN(anon_sym_ATnamespace); END_STATE(); case 106: - ACCEPT_TOKEN(anon_sym_LF); - if (lookahead == '\n') ADVANCE(106); - if (lookahead == '\r') ADVANCE(5); + ACCEPT_TOKEN(anon_sym_SEMI); END_STATE(); case 107: ACCEPT_TOKEN(anon_sym_LF); if (lookahead == '\n') ADVANCE(107); - if (lookahead == '\r') ADVANCE(26); + if (lookahead == '\r') ADVANCE(5); END_STATE(); case 108: ACCEPT_TOKEN(anon_sym_LF); if (lookahead == '\n') ADVANCE(108); - if (lookahead == '\r') ADVANCE(34); + if (lookahead == '\r') ADVANCE(26); END_STATE(); case 109: ACCEPT_TOKEN(anon_sym_LF); if (lookahead == '\n') ADVANCE(109); - if (lookahead == '\r') ADVANCE(36); + if (lookahead == '\r') ADVANCE(34); END_STATE(); case 110: ACCEPT_TOKEN(anon_sym_LF); if (lookahead == '\n') ADVANCE(110); - if (lookahead == '\r') ADVANCE(38); + if (lookahead == '\r') ADVANCE(36); END_STATE(); case 111: ACCEPT_TOKEN(anon_sym_LF); if (lookahead == '\n') ADVANCE(111); - if (lookahead == '\r') ADVANCE(40); + if (lookahead == '\r') ADVANCE(38); END_STATE(); case 112: ACCEPT_TOKEN(anon_sym_LF); if (lookahead == '\n') ADVANCE(112); - if (lookahead == '\r') ADVANCE(43); + if (lookahead == '\r') ADVANCE(40); END_STATE(); case 113: - ACCEPT_TOKEN(anon_sym_LPAREN); + ACCEPT_TOKEN(anon_sym_LF); + if (lookahead == '\n') ADVANCE(113); + if (lookahead == '\r') ADVANCE(43); END_STATE(); case 114: - ACCEPT_TOKEN(anon_sym_RPAREN); + ACCEPT_TOKEN(anon_sym_LPAREN); END_STATE(); case 115: - ACCEPT_TOKEN(anon_sym_LBRACE); + ACCEPT_TOKEN(anon_sym_RPAREN); END_STATE(); case 116: - ACCEPT_TOKEN(anon_sym_RBRACE); + ACCEPT_TOKEN(anon_sym_LBRACE); END_STATE(); case 117: - ACCEPT_TOKEN(anon_sym_COLON); + ACCEPT_TOKEN(anon_sym_RBRACE); END_STATE(); case 118: ACCEPT_TOKEN(anon_sym_COLON); - if (lookahead == ':') ADVANCE(176); END_STATE(); case 119: - ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '=') ADVANCE(144); + ACCEPT_TOKEN(anon_sym_COLON); + if (lookahead == ':') ADVANCE(179); END_STATE(); case 120: - ACCEPT_TOKEN(anon_sym_LPAREN2); + ACCEPT_TOKEN(anon_sym_LT); + if (lookahead == '=') ADVANCE(145); END_STATE(); case 121: - ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '=') ADVANCE(145); + ACCEPT_TOKEN(anon_sym_LPAREN2); END_STATE(); case 122: ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '=') ADVANCE(145); - if (lookahead == '>') ADVANCE(124); + if (lookahead == '=') ADVANCE(146); END_STATE(); case 123: ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '>') ADVANCE(124); + if (lookahead == '=') ADVANCE(146); + if (lookahead == '>') ADVANCE(125); END_STATE(); case 124: - ACCEPT_TOKEN(anon_sym_GT_GT); + ACCEPT_TOKEN(anon_sym_GT); + if (lookahead == '>') ADVANCE(125); END_STATE(); case 125: - ACCEPT_TOKEN(anon_sym_PIPE); - if (lookahead == '&') ADVANCE(127); + ACCEPT_TOKEN(anon_sym_GT_GT); END_STATE(); case 126: ACCEPT_TOKEN(anon_sym_PIPE); - if (lookahead == '&') ADVANCE(127); - if (lookahead == '|') ADVANCE(151); + if (lookahead == '&') ADVANCE(128); END_STATE(); case 127: - ACCEPT_TOKEN(anon_sym_PIPE_AMP); + ACCEPT_TOKEN(anon_sym_PIPE); + if (lookahead == '&') ADVANCE(128); + if (lookahead == '|') ADVANCE(152); END_STATE(); case 128: - ACCEPT_TOKEN(anon_sym_QMARK); + ACCEPT_TOKEN(anon_sym_PIPE_AMP); END_STATE(); case 129: - ACCEPT_TOKEN(anon_sym_CARET); + ACCEPT_TOKEN(anon_sym_QMARK); END_STATE(); case 130: ACCEPT_TOKEN(anon_sym_CARET); - if (lookahead == '=') ADVANCE(162); END_STATE(); case 131: - ACCEPT_TOKEN(anon_sym_STAR_STAR); + ACCEPT_TOKEN(anon_sym_CARET); + if (lookahead == '=') ADVANCE(163); END_STATE(); case 132: - ACCEPT_TOKEN(anon_sym_STAR); - if (lookahead == '*') ADVANCE(131); + ACCEPT_TOKEN(anon_sym_STAR_STAR); END_STATE(); case 133: ACCEPT_TOKEN(anon_sym_STAR); - if (lookahead == '*') ADVANCE(131); - if (lookahead == '=') ADVANCE(159); + if (lookahead == '*') ADVANCE(132); END_STATE(); case 134: - ACCEPT_TOKEN(anon_sym_SLASH); + ACCEPT_TOKEN(anon_sym_STAR); + if (lookahead == '*') ADVANCE(132); + if (lookahead == '=') ADVANCE(160); END_STATE(); case 135: ACCEPT_TOKEN(anon_sym_SLASH); - if (lookahead == '=') ADVANCE(160); END_STATE(); case 136: - ACCEPT_TOKEN(anon_sym_PERCENT); + ACCEPT_TOKEN(anon_sym_SLASH); + if (lookahead == '=') ADVANCE(161); END_STATE(); case 137: ACCEPT_TOKEN(anon_sym_PERCENT); - if (lookahead == '=') ADVANCE(161); END_STATE(); case 138: - ACCEPT_TOKEN(anon_sym_PLUS); + ACCEPT_TOKEN(anon_sym_PERCENT); + if (lookahead == '=') ADVANCE(162); END_STATE(); case 139: ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '+') ADVANCE(154); END_STATE(); case 140: ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '+') ADVANCE(154); - if (lookahead == '=') ADVANCE(157); + if (lookahead == '+') ADVANCE(155); END_STATE(); case 141: - ACCEPT_TOKEN(anon_sym_DASH); + ACCEPT_TOKEN(anon_sym_PLUS); + if (lookahead == '+') ADVANCE(155); + if (lookahead == '=') ADVANCE(158); END_STATE(); case 142: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(155); END_STATE(); case 143: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(155); - if (lookahead == '=') ADVANCE(158); + if (lookahead == '-') ADVANCE(156); END_STATE(); case 144: - ACCEPT_TOKEN(anon_sym_LT_EQ); + ACCEPT_TOKEN(anon_sym_DASH); + if (lookahead == '-') ADVANCE(156); + if (lookahead == '=') ADVANCE(159); END_STATE(); case 145: - ACCEPT_TOKEN(anon_sym_GT_EQ); + ACCEPT_TOKEN(anon_sym_LT_EQ); END_STATE(); case 146: - ACCEPT_TOKEN(anon_sym_EQ_EQ); + ACCEPT_TOKEN(anon_sym_GT_EQ); END_STATE(); case 147: - ACCEPT_TOKEN(anon_sym_BANG_EQ); + ACCEPT_TOKEN(anon_sym_EQ_EQ); END_STATE(); case 148: - ACCEPT_TOKEN(anon_sym_TILDE); + ACCEPT_TOKEN(anon_sym_BANG_EQ); END_STATE(); case 149: - ACCEPT_TOKEN(anon_sym_BANG_TILDE); + ACCEPT_TOKEN(anon_sym_TILDE); END_STATE(); case 150: - ACCEPT_TOKEN(anon_sym_AMP_AMP); + ACCEPT_TOKEN(anon_sym_BANG_TILDE); END_STATE(); case 151: - ACCEPT_TOKEN(anon_sym_PIPE_PIPE); + ACCEPT_TOKEN(anon_sym_AMP_AMP); END_STATE(); case 152: - ACCEPT_TOKEN(anon_sym_BANG); + ACCEPT_TOKEN(anon_sym_PIPE_PIPE); END_STATE(); case 153: ACCEPT_TOKEN(anon_sym_BANG); - if (lookahead == '=') ADVANCE(147); - if (lookahead == '~') ADVANCE(149); END_STATE(); case 154: - ACCEPT_TOKEN(anon_sym_PLUS_PLUS); + ACCEPT_TOKEN(anon_sym_BANG); + if (lookahead == '=') ADVANCE(148); + if (lookahead == '~') ADVANCE(150); END_STATE(); case 155: - ACCEPT_TOKEN(anon_sym_DASH_DASH); + ACCEPT_TOKEN(anon_sym_PLUS_PLUS); END_STATE(); case 156: - ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '=') ADVANCE(146); + ACCEPT_TOKEN(anon_sym_DASH_DASH); END_STATE(); case 157: - ACCEPT_TOKEN(anon_sym_PLUS_EQ); + ACCEPT_TOKEN(anon_sym_EQ); + if (lookahead == '=') ADVANCE(147); END_STATE(); case 158: - ACCEPT_TOKEN(anon_sym_DASH_EQ); + ACCEPT_TOKEN(anon_sym_PLUS_EQ); END_STATE(); case 159: - ACCEPT_TOKEN(anon_sym_STAR_EQ); + ACCEPT_TOKEN(anon_sym_DASH_EQ); END_STATE(); case 160: - ACCEPT_TOKEN(anon_sym_SLASH_EQ); + ACCEPT_TOKEN(anon_sym_STAR_EQ); END_STATE(); case 161: - ACCEPT_TOKEN(anon_sym_PERCENT_EQ); + ACCEPT_TOKEN(anon_sym_SLASH_EQ); END_STATE(); case 162: - ACCEPT_TOKEN(anon_sym_CARET_EQ); + ACCEPT_TOKEN(anon_sym_PERCENT_EQ); END_STATE(); case 163: - ACCEPT_TOKEN(anon_sym_DOLLAR); + ACCEPT_TOKEN(anon_sym_CARET_EQ); END_STATE(); case 164: - ACCEPT_TOKEN(anon_sym_LBRACK); + ACCEPT_TOKEN(anon_sym_DOLLAR); END_STATE(); case 165: - ACCEPT_TOKEN(anon_sym_RBRACK); + ACCEPT_TOKEN(anon_sym_LBRACK); END_STATE(); case 166: - ACCEPT_TOKEN(anon_sym_SLASH2); + ACCEPT_TOKEN(anon_sym_RBRACK); END_STATE(); case 167: - ACCEPT_TOKEN(sym__regex_char); + ACCEPT_TOKEN(anon_sym_SLASH2); END_STATE(); case 168: - ACCEPT_TOKEN(sym__regex_char_escaped); + ACCEPT_TOKEN(sym__regex_char); END_STATE(); case 169: - ACCEPT_TOKEN(anon_sym_LBRACK2); + ACCEPT_TOKEN(sym__regex_char_escaped); END_STATE(); case 170: - ACCEPT_TOKEN(anon_sym_RBRACK2); + ACCEPT_TOKEN(anon_sym_LBRACK2); END_STATE(); case 171: + ACCEPT_TOKEN(anon_sym_COLON2); + END_STATE(); + case 172: + ACCEPT_TOKEN(anon_sym_COLON2); + if (lookahead == ':') ADVANCE(179); + END_STATE(); + case 173: + ACCEPT_TOKEN(anon_sym_RBRACK2); + END_STATE(); + case 174: ACCEPT_TOKEN(sym_regex_flags); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(171); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(174); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(175); + lookahead == '_') ADVANCE(178); END_STATE(); - case 172: + case 175: ACCEPT_TOKEN(sym_regex_flags); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(172); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(175); END_STATE(); - case 173: + case 176: ACCEPT_TOKEN(anon_sym_AT); END_STATE(); - case 174: + case 177: ACCEPT_TOKEN(anon_sym_AT); - if (lookahead == 'i') ADVANCE(72); - if (lookahead == 'l') ADVANCE(73); - if (lookahead == 'n') ADVANCE(60); + if (lookahead == 'i') ADVANCE(73); + if (lookahead == 'l') ADVANCE(74); + if (lookahead == 'n') ADVANCE(61); END_STATE(); - case 175: + case 178: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(175); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(178); END_STATE(); - case 176: + case 179: ACCEPT_TOKEN(anon_sym_COLON_COLON); END_STATE(); - case 177: + case 180: ACCEPT_TOKEN(aux_sym_number_token1); - if (lookahead == 'e') ADVANCE(77); + if (lookahead == 'e') ADVANCE(78); if (lookahead == '.' || - ('0' <= lookahead && lookahead <= '9')) ADVANCE(177); + ('0' <= lookahead && lookahead <= '9')) ADVANCE(180); END_STATE(); - case 178: + case 181: ACCEPT_TOKEN(aux_sym_number_token2); if (lookahead == '+' || lookahead == '-' || lookahead == '.' || - ('0' <= lookahead && lookahead <= '9')) ADVANCE(178); + ('0' <= lookahead && lookahead <= '9')) ADVANCE(181); END_STATE(); - case 179: + case 182: ACCEPT_TOKEN(anon_sym_DQUOTE); END_STATE(); - case 180: + case 183: ACCEPT_TOKEN(aux_sym_string_token1); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') ADVANCE(180); + lookahead == ' ') ADVANCE(183); if (lookahead != 0 && lookahead != '"' && - lookahead != '\\') ADVANCE(181); + lookahead != '\\') ADVANCE(184); END_STATE(); - case 181: + case 184: ACCEPT_TOKEN(aux_sym_string_token1); if (lookahead != 0 && lookahead != '"' && - lookahead != '\\') ADVANCE(181); + lookahead != '\\') ADVANCE(184); END_STATE(); - case 182: + case 185: ACCEPT_TOKEN(sym_escape_sequence); END_STATE(); - case 183: + case 186: ACCEPT_TOKEN(sym_escape_sequence); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(182); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(185); END_STATE(); - case 184: + case 187: ACCEPT_TOKEN(sym_escape_sequence); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(183); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(186); END_STATE(); - case 185: + case 188: ACCEPT_TOKEN(sym_escape_sequence); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(182); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(185); END_STATE(); - case 186: + case 189: ACCEPT_TOKEN(anon_sym_POUND); END_STATE(); - case 187: + case 190: ACCEPT_TOKEN(aux_sym_comment_token1); - if (lookahead == '\r') ADVANCE(189); + if (lookahead == '\r') ADVANCE(192); if (lookahead != 0 && - lookahead != '\n') ADVANCE(189); + lookahead != '\n') ADVANCE(192); END_STATE(); - case 188: + case 191: ACCEPT_TOKEN(aux_sym_comment_token1); - if (lookahead == '\\') ADVANCE(187); + if (lookahead == '\\') ADVANCE(190); if (lookahead == '\t' || lookahead == '\r' || - lookahead == ' ') ADVANCE(188); + lookahead == ' ') ADVANCE(191); if (lookahead != 0 && - lookahead != '\n') ADVANCE(189); + lookahead != '\n') ADVANCE(192); END_STATE(); - case 189: + case 192: ACCEPT_TOKEN(aux_sym_comment_token1); if (lookahead != 0 && - lookahead != '\n') ADVANCE(189); + lookahead != '\n') ADVANCE(192); END_STATE(); default: return false; @@ -5182,345 +5312,500 @@ static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { if (lookahead == 'B') ADVANCE(1); if (lookahead == 'E') ADVANCE(2); if (lookahead == '\\') SKIP(3) - if (lookahead == 'b') ADVANCE(4); - if (lookahead == 'c') ADVANCE(5); - if (lookahead == 'd') ADVANCE(6); - if (lookahead == 'e') ADVANCE(7); - if (lookahead == 'f') ADVANCE(8); - if (lookahead == 'g') ADVANCE(9); - if (lookahead == 'i') ADVANCE(10); - if (lookahead == 'n') ADVANCE(11); - if (lookahead == 'p') ADVANCE(12); - if (lookahead == 'r') ADVANCE(13); - if (lookahead == 's') ADVANCE(14); - if (lookahead == 'w') ADVANCE(15); + if (lookahead == 'a') ADVANCE(4); + if (lookahead == 'b') ADVANCE(5); + if (lookahead == 'c') ADVANCE(6); + if (lookahead == 'd') ADVANCE(7); + if (lookahead == 'e') ADVANCE(8); + if (lookahead == 'f') ADVANCE(9); + if (lookahead == 'g') ADVANCE(10); + if (lookahead == 'i') ADVANCE(11); + if (lookahead == 'l') ADVANCE(12); + if (lookahead == 'n') ADVANCE(13); + if (lookahead == 'p') ADVANCE(14); + if (lookahead == 'r') ADVANCE(15); + if (lookahead == 's') ADVANCE(16); + if (lookahead == 'u') ADVANCE(17); + if (lookahead == 'w') ADVANCE(18); + if (lookahead == 'x') ADVANCE(19); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(0) END_STATE(); case 1: - if (lookahead == 'E') ADVANCE(16); + if (lookahead == 'E') ADVANCE(20); END_STATE(); case 2: - if (lookahead == 'N') ADVANCE(17); + if (lookahead == 'N') ADVANCE(21); END_STATE(); case 3: if (lookahead == '\n') SKIP(0) - if (lookahead == '\r') SKIP(18) + if (lookahead == '\r') SKIP(22) END_STATE(); case 4: - if (lookahead == 'r') ADVANCE(19); + if (lookahead == 'l') ADVANCE(23); END_STATE(); case 5: - if (lookahead == 'a') ADVANCE(20); - if (lookahead == 'o') ADVANCE(21); + if (lookahead == 'l') ADVANCE(24); + if (lookahead == 'r') ADVANCE(25); END_STATE(); case 6: - if (lookahead == 'e') ADVANCE(22); - if (lookahead == 'o') ADVANCE(23); + if (lookahead == 'a') ADVANCE(26); + if (lookahead == 'n') ADVANCE(27); + if (lookahead == 'o') ADVANCE(28); END_STATE(); case 7: - if (lookahead == 'l') ADVANCE(24); - if (lookahead == 'x') ADVANCE(25); + if (lookahead == 'e') ADVANCE(29); + if (lookahead == 'i') ADVANCE(30); + if (lookahead == 'o') ADVANCE(31); END_STATE(); case 8: - if (lookahead == 'o') ADVANCE(26); - if (lookahead == 'u') ADVANCE(27); + if (lookahead == 'l') ADVANCE(32); + if (lookahead == 'x') ADVANCE(33); END_STATE(); case 9: - if (lookahead == 'e') ADVANCE(28); + if (lookahead == 'o') ADVANCE(34); + if (lookahead == 'u') ADVANCE(35); END_STATE(); case 10: - if (lookahead == 'f') ADVANCE(29); - if (lookahead == 'n') ADVANCE(30); + if (lookahead == 'e') ADVANCE(36); + if (lookahead == 'r') ADVANCE(37); END_STATE(); case 11: - if (lookahead == 'e') ADVANCE(31); + if (lookahead == 'f') ADVANCE(38); + if (lookahead == 'n') ADVANCE(39); END_STATE(); case 12: - if (lookahead == 'r') ADVANCE(32); + if (lookahead == 'o') ADVANCE(40); END_STATE(); case 13: - if (lookahead == 'e') ADVANCE(33); + if (lookahead == 'e') ADVANCE(41); END_STATE(); case 14: - if (lookahead == 'w') ADVANCE(34); + if (lookahead == 'r') ADVANCE(42); + if (lookahead == 'u') ADVANCE(43); END_STATE(); case 15: - if (lookahead == 'h') ADVANCE(35); + if (lookahead == 'e') ADVANCE(44); END_STATE(); case 16: - if (lookahead == 'G') ADVANCE(36); + if (lookahead == 'p') ADVANCE(45); + if (lookahead == 'w') ADVANCE(46); END_STATE(); case 17: - if (lookahead == 'D') ADVANCE(37); + if (lookahead == 'p') ADVANCE(47); END_STATE(); case 18: - if (lookahead == '\n') SKIP(0) + if (lookahead == 'h') ADVANCE(48); END_STATE(); case 19: - if (lookahead == 'e') ADVANCE(38); + if (lookahead == 'd') ADVANCE(49); END_STATE(); case 20: - if (lookahead == 's') ADVANCE(39); + if (lookahead == 'G') ADVANCE(50); END_STATE(); case 21: - if (lookahead == 'n') ADVANCE(40); + if (lookahead == 'D') ADVANCE(51); END_STATE(); case 22: - if (lookahead == 'f') ADVANCE(41); - if (lookahead == 'l') ADVANCE(42); + if (lookahead == '\n') SKIP(0) END_STATE(); case 23: - ACCEPT_TOKEN(anon_sym_do); + if (lookahead == 'n') ADVANCE(52); + if (lookahead == 'p') ADVANCE(53); END_STATE(); case 24: - if (lookahead == 's') ADVANCE(43); + if (lookahead == 'a') ADVANCE(54); END_STATE(); case 25: - if (lookahead == 'i') ADVANCE(44); + if (lookahead == 'e') ADVANCE(55); END_STATE(); case 26: - if (lookahead == 'r') ADVANCE(45); + if (lookahead == 's') ADVANCE(56); END_STATE(); case 27: - if (lookahead == 'n') ADVANCE(46); + if (lookahead == 't') ADVANCE(57); END_STATE(); case 28: - if (lookahead == 't') ADVANCE(47); + if (lookahead == 'n') ADVANCE(58); END_STATE(); case 29: - ACCEPT_TOKEN(anon_sym_if); + if (lookahead == 'f') ADVANCE(59); + if (lookahead == 'l') ADVANCE(60); END_STATE(); case 30: - ACCEPT_TOKEN(anon_sym_in); + if (lookahead == 'g') ADVANCE(61); END_STATE(); case 31: - if (lookahead == 'x') ADVANCE(48); + ACCEPT_TOKEN(anon_sym_do); END_STATE(); case 32: - if (lookahead == 'i') ADVANCE(49); + if (lookahead == 's') ADVANCE(62); END_STATE(); case 33: - if (lookahead == 't') ADVANCE(50); + if (lookahead == 'i') ADVANCE(63); END_STATE(); case 34: - if (lookahead == 'i') ADVANCE(51); + if (lookahead == 'r') ADVANCE(64); END_STATE(); case 35: - if (lookahead == 'i') ADVANCE(52); + if (lookahead == 'n') ADVANCE(65); END_STATE(); case 36: - if (lookahead == 'I') ADVANCE(53); + if (lookahead == 't') ADVANCE(66); END_STATE(); case 37: - ACCEPT_TOKEN(anon_sym_END); - if (lookahead == 'F') ADVANCE(54); + if (lookahead == 'a') ADVANCE(67); END_STATE(); case 38: - if (lookahead == 'a') ADVANCE(55); + ACCEPT_TOKEN(anon_sym_if); END_STATE(); case 39: - if (lookahead == 'e') ADVANCE(56); + ACCEPT_TOKEN(anon_sym_in); END_STATE(); case 40: - if (lookahead == 't') ADVANCE(57); + if (lookahead == 'w') ADVANCE(68); END_STATE(); case 41: - if (lookahead == 'a') ADVANCE(58); + if (lookahead == 'x') ADVANCE(69); END_STATE(); case 42: - if (lookahead == 'e') ADVANCE(59); + if (lookahead == 'i') ADVANCE(70); END_STATE(); case 43: - if (lookahead == 'e') ADVANCE(60); + if (lookahead == 'n') ADVANCE(71); END_STATE(); case 44: - if (lookahead == 't') ADVANCE(61); + if (lookahead == 't') ADVANCE(72); END_STATE(); case 45: - ACCEPT_TOKEN(anon_sym_for); + if (lookahead == 'a') ADVANCE(73); END_STATE(); case 46: - if (lookahead == 'c') ADVANCE(62); + if (lookahead == 'i') ADVANCE(74); END_STATE(); case 47: - if (lookahead == 'l') ADVANCE(63); + if (lookahead == 'p') ADVANCE(75); END_STATE(); case 48: - if (lookahead == 't') ADVANCE(64); + if (lookahead == 'i') ADVANCE(76); END_STATE(); case 49: - if (lookahead == 'n') ADVANCE(65); + if (lookahead == 'i') ADVANCE(77); END_STATE(); case 50: - if (lookahead == 'u') ADVANCE(66); + if (lookahead == 'I') ADVANCE(78); END_STATE(); case 51: - if (lookahead == 't') ADVANCE(67); + ACCEPT_TOKEN(anon_sym_END); + if (lookahead == 'F') ADVANCE(79); END_STATE(); case 52: - if (lookahead == 'l') ADVANCE(68); + if (lookahead == 'u') ADVANCE(80); END_STATE(); case 53: - if (lookahead == 'N') ADVANCE(69); + if (lookahead == 'h') ADVANCE(81); END_STATE(); case 54: - if (lookahead == 'I') ADVANCE(70); + if (lookahead == 'n') ADVANCE(82); END_STATE(); case 55: - if (lookahead == 'k') ADVANCE(71); + if (lookahead == 'a') ADVANCE(83); END_STATE(); case 56: - ACCEPT_TOKEN(anon_sym_case); + if (lookahead == 'e') ADVANCE(84); END_STATE(); case 57: - if (lookahead == 'i') ADVANCE(72); + if (lookahead == 'r') ADVANCE(85); END_STATE(); case 58: - if (lookahead == 'u') ADVANCE(73); + if (lookahead == 't') ADVANCE(86); END_STATE(); case 59: - if (lookahead == 't') ADVANCE(74); + if (lookahead == 'a') ADVANCE(87); END_STATE(); case 60: - ACCEPT_TOKEN(anon_sym_else); + if (lookahead == 'e') ADVANCE(88); END_STATE(); case 61: - ACCEPT_TOKEN(anon_sym_exit); + if (lookahead == 'i') ADVANCE(89); END_STATE(); case 62: - ACCEPT_TOKEN(anon_sym_func); - if (lookahead == 't') ADVANCE(75); + if (lookahead == 'e') ADVANCE(90); END_STATE(); case 63: - if (lookahead == 'i') ADVANCE(76); + if (lookahead == 't') ADVANCE(91); END_STATE(); case 64: - ACCEPT_TOKEN(sym_next_statement); - if (lookahead == 'f') ADVANCE(77); + ACCEPT_TOKEN(anon_sym_for); END_STATE(); case 65: - if (lookahead == 't') ADVANCE(78); + if (lookahead == 'c') ADVANCE(92); END_STATE(); case 66: - if (lookahead == 'r') ADVANCE(79); + if (lookahead == 'l') ADVANCE(93); END_STATE(); case 67: - if (lookahead == 'c') ADVANCE(80); + if (lookahead == 'p') ADVANCE(94); END_STATE(); case 68: - if (lookahead == 'e') ADVANCE(81); + if (lookahead == 'e') ADVANCE(95); END_STATE(); case 69: - ACCEPT_TOKEN(anon_sym_BEGIN); - if (lookahead == 'F') ADVANCE(82); + if (lookahead == 't') ADVANCE(96); END_STATE(); case 70: - if (lookahead == 'L') ADVANCE(83); + if (lookahead == 'n') ADVANCE(97); END_STATE(); case 71: - ACCEPT_TOKEN(sym_break_statement); + if (lookahead == 'c') ADVANCE(98); END_STATE(); case 72: - if (lookahead == 'n') ADVANCE(84); + if (lookahead == 'u') ADVANCE(99); END_STATE(); case 73: - if (lookahead == 'l') ADVANCE(85); + if (lookahead == 'c') ADVANCE(100); END_STATE(); case 74: - if (lookahead == 'e') ADVANCE(86); + if (lookahead == 't') ADVANCE(101); END_STATE(); case 75: - if (lookahead == 'i') ADVANCE(87); + if (lookahead == 'e') ADVANCE(102); END_STATE(); case 76: - if (lookahead == 'n') ADVANCE(88); + if (lookahead == 'l') ADVANCE(103); END_STATE(); case 77: - if (lookahead == 'i') ADVANCE(89); + if (lookahead == 'g') ADVANCE(104); END_STATE(); case 78: - ACCEPT_TOKEN(anon_sym_print); - if (lookahead == 'f') ADVANCE(90); + if (lookahead == 'N') ADVANCE(105); END_STATE(); case 79: - if (lookahead == 'n') ADVANCE(91); + if (lookahead == 'I') ADVANCE(106); END_STATE(); case 80: - if (lookahead == 'h') ADVANCE(92); + if (lookahead == 'm') ADVANCE(107); END_STATE(); case 81: - ACCEPT_TOKEN(anon_sym_while); + if (lookahead == 'a') ADVANCE(108); END_STATE(); case 82: - if (lookahead == 'I') ADVANCE(93); + if (lookahead == 'k') ADVANCE(109); END_STATE(); case 83: - if (lookahead == 'E') ADVANCE(94); + if (lookahead == 'k') ADVANCE(110); END_STATE(); case 84: - if (lookahead == 'u') ADVANCE(95); + ACCEPT_TOKEN(anon_sym_case); END_STATE(); case 85: - if (lookahead == 't') ADVANCE(96); + if (lookahead == 'l') ADVANCE(111); END_STATE(); case 86: - ACCEPT_TOKEN(anon_sym_delete); + if (lookahead == 'i') ADVANCE(112); END_STATE(); case 87: - if (lookahead == 'o') ADVANCE(97); + if (lookahead == 'u') ADVANCE(113); END_STATE(); case 88: - if (lookahead == 'e') ADVANCE(98); + if (lookahead == 't') ADVANCE(114); END_STATE(); case 89: - if (lookahead == 'l') ADVANCE(99); + if (lookahead == 't') ADVANCE(115); END_STATE(); case 90: - ACCEPT_TOKEN(anon_sym_printf); + ACCEPT_TOKEN(anon_sym_else); END_STATE(); case 91: - ACCEPT_TOKEN(anon_sym_return); + ACCEPT_TOKEN(anon_sym_exit); END_STATE(); case 92: - ACCEPT_TOKEN(anon_sym_switch); + ACCEPT_TOKEN(anon_sym_func); + if (lookahead == 't') ADVANCE(116); END_STATE(); case 93: - if (lookahead == 'L') ADVANCE(100); + if (lookahead == 'i') ADVANCE(117); END_STATE(); case 94: - ACCEPT_TOKEN(anon_sym_ENDFILE); + if (lookahead == 'h') ADVANCE(118); END_STATE(); case 95: - if (lookahead == 'e') ADVANCE(101); + if (lookahead == 'r') ADVANCE(119); END_STATE(); case 96: - ACCEPT_TOKEN(anon_sym_default); + ACCEPT_TOKEN(sym_next_statement); + if (lookahead == 'f') ADVANCE(120); END_STATE(); case 97: - if (lookahead == 'n') ADVANCE(102); + if (lookahead == 't') ADVANCE(121); END_STATE(); case 98: - ACCEPT_TOKEN(anon_sym_getline); + if (lookahead == 't') ADVANCE(122); END_STATE(); case 99: - if (lookahead == 'e') ADVANCE(103); + if (lookahead == 'r') ADVANCE(123); END_STATE(); case 100: - if (lookahead == 'E') ADVANCE(104); + if (lookahead == 'e') ADVANCE(124); END_STATE(); case 101: - ACCEPT_TOKEN(sym_continue_statement); + if (lookahead == 'c') ADVANCE(125); END_STATE(); case 102: - ACCEPT_TOKEN(anon_sym_function); + if (lookahead == 'r') ADVANCE(126); END_STATE(); case 103: - ACCEPT_TOKEN(sym_nextfile_statement); + if (lookahead == 'e') ADVANCE(127); END_STATE(); case 104: + if (lookahead == 'i') ADVANCE(128); + END_STATE(); + case 105: + ACCEPT_TOKEN(anon_sym_BEGIN); + if (lookahead == 'F') ADVANCE(129); + END_STATE(); + case 106: + if (lookahead == 'L') ADVANCE(130); + END_STATE(); + case 107: + ACCEPT_TOKEN(anon_sym_alnum); + END_STATE(); + case 108: + ACCEPT_TOKEN(anon_sym_alpha); + END_STATE(); + case 109: + ACCEPT_TOKEN(anon_sym_blank); + END_STATE(); + case 110: + ACCEPT_TOKEN(sym_break_statement); + END_STATE(); + case 111: + ACCEPT_TOKEN(anon_sym_cntrl); + END_STATE(); + case 112: + if (lookahead == 'n') ADVANCE(131); + END_STATE(); + case 113: + if (lookahead == 'l') ADVANCE(132); + END_STATE(); + case 114: + if (lookahead == 'e') ADVANCE(133); + END_STATE(); + case 115: + ACCEPT_TOKEN(anon_sym_digit); + END_STATE(); + case 116: + if (lookahead == 'i') ADVANCE(134); + END_STATE(); + case 117: + if (lookahead == 'n') ADVANCE(135); + END_STATE(); + case 118: + ACCEPT_TOKEN(anon_sym_graph); + END_STATE(); + case 119: + ACCEPT_TOKEN(anon_sym_lower); + END_STATE(); + case 120: + if (lookahead == 'i') ADVANCE(136); + END_STATE(); + case 121: + ACCEPT_TOKEN(anon_sym_print); + if (lookahead == 'f') ADVANCE(137); + END_STATE(); + case 122: + ACCEPT_TOKEN(anon_sym_punct); + END_STATE(); + case 123: + if (lookahead == 'n') ADVANCE(138); + END_STATE(); + case 124: + ACCEPT_TOKEN(anon_sym_space); + END_STATE(); + case 125: + if (lookahead == 'h') ADVANCE(139); + END_STATE(); + case 126: + ACCEPT_TOKEN(anon_sym_upper); + END_STATE(); + case 127: + ACCEPT_TOKEN(anon_sym_while); + END_STATE(); + case 128: + if (lookahead == 't') ADVANCE(140); + END_STATE(); + case 129: + if (lookahead == 'I') ADVANCE(141); + END_STATE(); + case 130: + if (lookahead == 'E') ADVANCE(142); + END_STATE(); + case 131: + if (lookahead == 'u') ADVANCE(143); + END_STATE(); + case 132: + if (lookahead == 't') ADVANCE(144); + END_STATE(); + case 133: + ACCEPT_TOKEN(anon_sym_delete); + END_STATE(); + case 134: + if (lookahead == 'o') ADVANCE(145); + END_STATE(); + case 135: + if (lookahead == 'e') ADVANCE(146); + END_STATE(); + case 136: + if (lookahead == 'l') ADVANCE(147); + END_STATE(); + case 137: + ACCEPT_TOKEN(anon_sym_printf); + END_STATE(); + case 138: + ACCEPT_TOKEN(anon_sym_return); + END_STATE(); + case 139: + ACCEPT_TOKEN(anon_sym_switch); + END_STATE(); + case 140: + ACCEPT_TOKEN(anon_sym_xdigit); + END_STATE(); + case 141: + if (lookahead == 'L') ADVANCE(148); + END_STATE(); + case 142: + ACCEPT_TOKEN(anon_sym_ENDFILE); + END_STATE(); + case 143: + if (lookahead == 'e') ADVANCE(149); + END_STATE(); + case 144: + ACCEPT_TOKEN(anon_sym_default); + END_STATE(); + case 145: + if (lookahead == 'n') ADVANCE(150); + END_STATE(); + case 146: + ACCEPT_TOKEN(anon_sym_getline); + END_STATE(); + case 147: + if (lookahead == 'e') ADVANCE(151); + END_STATE(); + case 148: + if (lookahead == 'E') ADVANCE(152); + END_STATE(); + case 149: + ACCEPT_TOKEN(sym_continue_statement); + END_STATE(); + case 150: + ACCEPT_TOKEN(anon_sym_function); + END_STATE(); + case 151: + ACCEPT_TOKEN(sym_nextfile_statement); + END_STATE(); + case 152: ACCEPT_TOKEN(anon_sym_BEGINFILE); END_STATE(); default: @@ -5530,10 +5815,10 @@ 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 = 96}, + [1] = {.lex_state = 98}, [2] = {.lex_state = 4, .external_lex_state = 2}, - [3] = {.lex_state = 4}, - [4] = {.lex_state = 45}, + [3] = {.lex_state = 45}, + [4] = {.lex_state = 4}, [5] = {.lex_state = 45}, [6] = {.lex_state = 45}, [7] = {.lex_state = 45}, @@ -5672,10 +5957,10 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [140] = {.lex_state = 45}, [141] = {.lex_state = 4, .external_lex_state = 2}, [142] = {.lex_state = 45}, - [143] = {.lex_state = 45}, + [143] = {.lex_state = 4}, [144] = {.lex_state = 45}, [145] = {.lex_state = 45}, - [146] = {.lex_state = 4}, + [146] = {.lex_state = 45}, [147] = {.lex_state = 45}, [148] = {.lex_state = 45}, [149] = {.lex_state = 45}, @@ -5688,112 +5973,112 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [156] = {.lex_state = 41, .external_lex_state = 3}, [157] = {.lex_state = 41, .external_lex_state = 3}, [158] = {.lex_state = 25, .external_lex_state = 2}, - [159] = {.lex_state = 42, .external_lex_state = 3}, - [160] = {.lex_state = 42, .external_lex_state = 3}, + [159] = {.lex_state = 41, .external_lex_state = 3}, + [160] = {.lex_state = 41, .external_lex_state = 4}, [161] = {.lex_state = 41, .external_lex_state = 4}, - [162] = {.lex_state = 41, .external_lex_state = 3}, - [163] = {.lex_state = 41, .external_lex_state = 3}, - [164] = {.lex_state = 41, .external_lex_state = 4}, - [165] = {.lex_state = 25}, + [162] = {.lex_state = 42, .external_lex_state = 3}, + [163] = {.lex_state = 42, .external_lex_state = 3}, + [164] = {.lex_state = 41, .external_lex_state = 3}, + [165] = {.lex_state = 41, .external_lex_state = 4}, [166] = {.lex_state = 42, .external_lex_state = 3}, - [167] = {.lex_state = 41, .external_lex_state = 3}, + [167] = {.lex_state = 42, .external_lex_state = 3}, [168] = {.lex_state = 42, .external_lex_state = 3}, - [169] = {.lex_state = 42, .external_lex_state = 3}, + [169] = {.lex_state = 25}, [170] = {.lex_state = 41, .external_lex_state = 3}, - [171] = {.lex_state = 42, .external_lex_state = 3}, - [172] = {.lex_state = 41, .external_lex_state = 3}, - [173] = {.lex_state = 41, .external_lex_state = 4}, - [174] = {.lex_state = 42, .external_lex_state = 3}, - [175] = {.lex_state = 41, .external_lex_state = 4}, + [171] = {.lex_state = 42, .external_lex_state = 4}, + [172] = {.lex_state = 41, .external_lex_state = 4}, + [173] = {.lex_state = 42, .external_lex_state = 4}, + [174] = {.lex_state = 41, .external_lex_state = 4}, + [175] = {.lex_state = 41, .external_lex_state = 3}, [176] = {.lex_state = 42, .external_lex_state = 3}, [177] = {.lex_state = 42, .external_lex_state = 3}, - [178] = {.lex_state = 42, .external_lex_state = 4}, - [179] = {.lex_state = 42, .external_lex_state = 3}, - [180] = {.lex_state = 42, .external_lex_state = 4}, - [181] = {.lex_state = 41, .external_lex_state = 4}, - [182] = {.lex_state = 41, .external_lex_state = 4}, + [178] = {.lex_state = 42, .external_lex_state = 3}, + [179] = {.lex_state = 41, .external_lex_state = 3}, + [180] = {.lex_state = 42, .external_lex_state = 3}, + [181] = {.lex_state = 42, .external_lex_state = 3}, + [182] = {.lex_state = 42, .external_lex_state = 3}, [183] = {.lex_state = 42, .external_lex_state = 3}, [184] = {.lex_state = 42, .external_lex_state = 3}, [185] = {.lex_state = 42, .external_lex_state = 3}, - [186] = {.lex_state = 42, .external_lex_state = 4}, - [187] = {.lex_state = 41, .external_lex_state = 4}, - [188] = {.lex_state = 41, .external_lex_state = 4}, + [186] = {.lex_state = 42, .external_lex_state = 3}, + [187] = {.lex_state = 42, .external_lex_state = 3}, + [188] = {.lex_state = 42, .external_lex_state = 3}, [189] = {.lex_state = 42, .external_lex_state = 3}, [190] = {.lex_state = 42, .external_lex_state = 3}, - [191] = {.lex_state = 42, .external_lex_state = 4}, - [192] = {.lex_state = 42, .external_lex_state = 4}, + [191] = {.lex_state = 41, .external_lex_state = 3}, + [192] = {.lex_state = 42, .external_lex_state = 3}, [193] = {.lex_state = 42, .external_lex_state = 3}, [194] = {.lex_state = 42, .external_lex_state = 3}, [195] = {.lex_state = 42, .external_lex_state = 3}, - [196] = {.lex_state = 41, .external_lex_state = 3}, + [196] = {.lex_state = 42, .external_lex_state = 3}, [197] = {.lex_state = 42, .external_lex_state = 3}, - [198] = {.lex_state = 42, .external_lex_state = 3}, + [198] = {.lex_state = 42, .external_lex_state = 4}, [199] = {.lex_state = 42, .external_lex_state = 3}, - [200] = {.lex_state = 42, .external_lex_state = 3}, + [200] = {.lex_state = 41, .external_lex_state = 3}, [201] = {.lex_state = 42, .external_lex_state = 3}, - [202] = {.lex_state = 42, .external_lex_state = 3}, - [203] = {.lex_state = 41, .external_lex_state = 3}, - [204] = {.lex_state = 42, .external_lex_state = 4}, + [202] = {.lex_state = 42, .external_lex_state = 4}, + [203] = {.lex_state = 42, .external_lex_state = 3}, + [204] = {.lex_state = 42, .external_lex_state = 3}, [205] = {.lex_state = 42, .external_lex_state = 4}, - [206] = {.lex_state = 42, .external_lex_state = 3}, - [207] = {.lex_state = 42, .external_lex_state = 3}, + [206] = {.lex_state = 41, .external_lex_state = 4}, + [207] = {.lex_state = 42, .external_lex_state = 4}, [208] = {.lex_state = 42, .external_lex_state = 4}, - [209] = {.lex_state = 42, .external_lex_state = 3}, - [210] = {.lex_state = 42, .external_lex_state = 3}, - [211] = {.lex_state = 41, .external_lex_state = 3}, + [209] = {.lex_state = 42, .external_lex_state = 4}, + [210] = {.lex_state = 42, .external_lex_state = 4}, + [211] = {.lex_state = 41, .external_lex_state = 4}, [212] = {.lex_state = 42, .external_lex_state = 3}, [213] = {.lex_state = 42, .external_lex_state = 3}, - [214] = {.lex_state = 42, .external_lex_state = 4}, + [214] = {.lex_state = 41, .external_lex_state = 3}, [215] = {.lex_state = 42, .external_lex_state = 3}, - [216] = {.lex_state = 42, .external_lex_state = 3}, - [217] = {.lex_state = 42, .external_lex_state = 3}, - [218] = {.lex_state = 42, .external_lex_state = 4}, - [219] = {.lex_state = 42, .external_lex_state = 4}, + [216] = {.lex_state = 42, .external_lex_state = 4}, + [217] = {.lex_state = 41, .external_lex_state = 4}, + [218] = {.lex_state = 42, .external_lex_state = 3}, + [219] = {.lex_state = 42, .external_lex_state = 3}, [220] = {.lex_state = 42, .external_lex_state = 4}, - [221] = {.lex_state = 41, .external_lex_state = 4}, - [222] = {.lex_state = 42, .external_lex_state = 4}, + [221] = {.lex_state = 42, .external_lex_state = 3}, + [222] = {.lex_state = 33, .external_lex_state = 3}, [223] = {.lex_state = 42, .external_lex_state = 4}, - [224] = {.lex_state = 42, .external_lex_state = 3}, - [225] = {.lex_state = 42, .external_lex_state = 3}, + [224] = {.lex_state = 33, .external_lex_state = 3}, + [225] = {.lex_state = 42, .external_lex_state = 4}, [226] = {.lex_state = 42, .external_lex_state = 4}, [227] = {.lex_state = 42, .external_lex_state = 4}, [228] = {.lex_state = 42, .external_lex_state = 4}, [229] = {.lex_state = 42, .external_lex_state = 4}, [230] = {.lex_state = 42, .external_lex_state = 4}, [231] = {.lex_state = 42, .external_lex_state = 4}, - [232] = {.lex_state = 42, .external_lex_state = 4}, - [233] = {.lex_state = 42, .external_lex_state = 3}, - [234] = {.lex_state = 33, .external_lex_state = 3}, + [232] = {.lex_state = 42, .external_lex_state = 3}, + [233] = {.lex_state = 42, .external_lex_state = 4}, + [234] = {.lex_state = 42, .external_lex_state = 4}, [235] = {.lex_state = 42, .external_lex_state = 4}, [236] = {.lex_state = 42, .external_lex_state = 4}, - [237] = {.lex_state = 41, .external_lex_state = 4}, - [238] = {.lex_state = 42, .external_lex_state = 4}, - [239] = {.lex_state = 33, .external_lex_state = 3}, - [240] = {.lex_state = 42, .external_lex_state = 3}, + [237] = {.lex_state = 42, .external_lex_state = 4}, + [238] = {.lex_state = 42, .external_lex_state = 3}, + [239] = {.lex_state = 42, .external_lex_state = 4}, + [240] = {.lex_state = 42, .external_lex_state = 4}, [241] = {.lex_state = 42, .external_lex_state = 4}, [242] = {.lex_state = 42, .external_lex_state = 4}, [243] = {.lex_state = 42, .external_lex_state = 4}, - [244] = {.lex_state = 42, .external_lex_state = 4}, + [244] = {.lex_state = 41, .external_lex_state = 4}, [245] = {.lex_state = 42, .external_lex_state = 4}, - [246] = {.lex_state = 42, .external_lex_state = 4}, - [247] = {.lex_state = 42, .external_lex_state = 4}, + [246] = {.lex_state = 41, .external_lex_state = 4}, + [247] = {.lex_state = 41, .external_lex_state = 4}, [248] = {.lex_state = 42, .external_lex_state = 4}, [249] = {.lex_state = 42, .external_lex_state = 4}, - [250] = {.lex_state = 41, .external_lex_state = 4}, + [250] = {.lex_state = 42, .external_lex_state = 4}, [251] = {.lex_state = 42, .external_lex_state = 3}, [252] = {.lex_state = 42, .external_lex_state = 3}, - [253] = {.lex_state = 42, .external_lex_state = 4}, + [253] = {.lex_state = 33, .external_lex_state = 4}, [254] = {.lex_state = 42, .external_lex_state = 3}, - [255] = {.lex_state = 42, .external_lex_state = 3}, - [256] = {.lex_state = 42, .external_lex_state = 3}, - [257] = {.lex_state = 42, .external_lex_state = 4}, + [255] = {.lex_state = 33, .external_lex_state = 4}, + [256] = {.lex_state = 42, .external_lex_state = 4}, + [257] = {.lex_state = 42, .external_lex_state = 3}, [258] = {.lex_state = 42, .external_lex_state = 3}, - [259] = {.lex_state = 33, .external_lex_state = 4}, - [260] = {.lex_state = 33, .external_lex_state = 4}, - [261] = {.lex_state = 42, .external_lex_state = 3}, + [259] = {.lex_state = 42, .external_lex_state = 3}, + [260] = {.lex_state = 42, .external_lex_state = 3}, + [261] = {.lex_state = 42, .external_lex_state = 4}, [262] = {.lex_state = 42, .external_lex_state = 3}, - [263] = {.lex_state = 42, .external_lex_state = 3}, - [264] = {.lex_state = 42, .external_lex_state = 4}, + [263] = {.lex_state = 42, .external_lex_state = 4}, + [264] = {.lex_state = 42, .external_lex_state = 3}, [265] = {.lex_state = 42, .external_lex_state = 3}, [266] = {.lex_state = 42, .external_lex_state = 3}, [267] = {.lex_state = 42, .external_lex_state = 3}, @@ -5812,222 +6097,222 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [280] = {.lex_state = 42, .external_lex_state = 4}, [281] = {.lex_state = 42, .external_lex_state = 4}, [282] = {.lex_state = 42, .external_lex_state = 4}, - [283] = {.lex_state = 90, .external_lex_state = 4}, - [284] = {.lex_state = 90, .external_lex_state = 4}, - [285] = {.lex_state = 4, .external_lex_state = 3}, - [286] = {.lex_state = 92, .external_lex_state = 4}, - [287] = {.lex_state = 4, .external_lex_state = 2}, - [288] = {.lex_state = 4, .external_lex_state = 2}, - [289] = {.lex_state = 90, .external_lex_state = 4}, - [290] = {.lex_state = 96}, - [291] = {.lex_state = 90, .external_lex_state = 4}, - [292] = {.lex_state = 4, .external_lex_state = 3}, - [293] = {.lex_state = 90, .external_lex_state = 4}, - [294] = {.lex_state = 96}, - [295] = {.lex_state = 92, .external_lex_state = 4}, - [296] = {.lex_state = 92, .external_lex_state = 4}, - [297] = {.lex_state = 92, .external_lex_state = 4}, - [298] = {.lex_state = 4, .external_lex_state = 4}, - [299] = {.lex_state = 4, .external_lex_state = 2}, - [300] = {.lex_state = 92, .external_lex_state = 4}, - [301] = {.lex_state = 4}, - [302] = {.lex_state = 92, .external_lex_state = 4}, - [303] = {.lex_state = 4, .external_lex_state = 3}, - [304] = {.lex_state = 4, .external_lex_state = 2}, - [305] = {.lex_state = 4, .external_lex_state = 2}, - [306] = {.lex_state = 92, .external_lex_state = 4}, + [283] = {.lex_state = 91, .external_lex_state = 4}, + [284] = {.lex_state = 91, .external_lex_state = 4}, + [285] = {.lex_state = 91, .external_lex_state = 4}, + [286] = {.lex_state = 98}, + [287] = {.lex_state = 91, .external_lex_state = 4}, + [288] = {.lex_state = 91, .external_lex_state = 4}, + [289] = {.lex_state = 96, .external_lex_state = 4}, + [290] = {.lex_state = 4, .external_lex_state = 3}, + [291] = {.lex_state = 4, .external_lex_state = 3}, + [292] = {.lex_state = 96, .external_lex_state = 4}, + [293] = {.lex_state = 98}, + [294] = {.lex_state = 4, .external_lex_state = 2}, + [295] = {.lex_state = 4, .external_lex_state = 2}, + [296] = {.lex_state = 96, .external_lex_state = 4}, + [297] = {.lex_state = 96, .external_lex_state = 4}, + [298] = {.lex_state = 4, .external_lex_state = 2}, + [299] = {.lex_state = 4, .external_lex_state = 4}, + [300] = {.lex_state = 96, .external_lex_state = 4}, + [301] = {.lex_state = 96, .external_lex_state = 4}, + [302] = {.lex_state = 4, .external_lex_state = 3}, + [303] = {.lex_state = 4, .external_lex_state = 2}, + [304] = {.lex_state = 4, .external_lex_state = 4}, + [305] = {.lex_state = 4, .external_lex_state = 3}, + [306] = {.lex_state = 96, .external_lex_state = 4}, [307] = {.lex_state = 4, .external_lex_state = 3}, - [308] = {.lex_state = 4}, - [309] = {.lex_state = 4, .external_lex_state = 3}, - [310] = {.lex_state = 92, .external_lex_state = 4}, - [311] = {.lex_state = 4, .external_lex_state = 2}, - [312] = {.lex_state = 4, .external_lex_state = 4}, + [308] = {.lex_state = 96, .external_lex_state = 4}, + [309] = {.lex_state = 4, .external_lex_state = 2}, + [310] = {.lex_state = 4}, + [311] = {.lex_state = 4}, + [312] = {.lex_state = 4, .external_lex_state = 2}, [313] = {.lex_state = 4, .external_lex_state = 3}, - [314] = {.lex_state = 92, .external_lex_state = 4}, - [315] = {.lex_state = 92, .external_lex_state = 4}, - [316] = {.lex_state = 92, .external_lex_state = 4}, - [317] = {.lex_state = 92, .external_lex_state = 4}, - [318] = {.lex_state = 4, .external_lex_state = 2}, - [319] = {.lex_state = 92, .external_lex_state = 4}, - [320] = {.lex_state = 4, .external_lex_state = 3}, - [321] = {.lex_state = 4}, - [322] = {.lex_state = 4, .external_lex_state = 2}, - [323] = {.lex_state = 92, .external_lex_state = 4}, + [314] = {.lex_state = 96, .external_lex_state = 4}, + [315] = {.lex_state = 4, .external_lex_state = 3}, + [316] = {.lex_state = 35, .external_lex_state = 3}, + [317] = {.lex_state = 96, .external_lex_state = 4}, + [318] = {.lex_state = 96, .external_lex_state = 4}, + [319] = {.lex_state = 35, .external_lex_state = 3}, + [320] = {.lex_state = 96, .external_lex_state = 4}, + [321] = {.lex_state = 96, .external_lex_state = 4}, + [322] = {.lex_state = 4, .external_lex_state = 4}, + [323] = {.lex_state = 4, .external_lex_state = 3}, [324] = {.lex_state = 4, .external_lex_state = 3}, - [325] = {.lex_state = 92, .external_lex_state = 4}, - [326] = {.lex_state = 4, .external_lex_state = 4}, - [327] = {.lex_state = 4}, - [328] = {.lex_state = 92, .external_lex_state = 4}, - [329] = {.lex_state = 92, .external_lex_state = 4}, - [330] = {.lex_state = 92, .external_lex_state = 4}, - [331] = {.lex_state = 92, .external_lex_state = 4}, - [332] = {.lex_state = 92, .external_lex_state = 4}, - [333] = {.lex_state = 4, .external_lex_state = 2}, - [334] = {.lex_state = 92, .external_lex_state = 4}, - [335] = {.lex_state = 4, .external_lex_state = 3}, - [336] = {.lex_state = 35, .external_lex_state = 3}, - [337] = {.lex_state = 4, .external_lex_state = 4}, - [338] = {.lex_state = 35, .external_lex_state = 3}, - [339] = {.lex_state = 92, .external_lex_state = 4}, - [340] = {.lex_state = 4}, - [341] = {.lex_state = 92, .external_lex_state = 4}, - [342] = {.lex_state = 92, .external_lex_state = 4}, - [343] = {.lex_state = 92, .external_lex_state = 4}, - [344] = {.lex_state = 92, .external_lex_state = 4}, - [345] = {.lex_state = 92, .external_lex_state = 4}, - [346] = {.lex_state = 92, .external_lex_state = 4}, - [347] = {.lex_state = 92, .external_lex_state = 4}, - [348] = {.lex_state = 4, .external_lex_state = 4}, - [349] = {.lex_state = 92, .external_lex_state = 4}, - [350] = {.lex_state = 4, .external_lex_state = 3}, - [351] = {.lex_state = 4}, - [352] = {.lex_state = 4}, - [353] = {.lex_state = 4, .external_lex_state = 3}, - [354] = {.lex_state = 4, .external_lex_state = 3}, + [325] = {.lex_state = 4, .external_lex_state = 4}, + [326] = {.lex_state = 4, .external_lex_state = 3}, + [327] = {.lex_state = 96, .external_lex_state = 4}, + [328] = {.lex_state = 96, .external_lex_state = 4}, + [329] = {.lex_state = 4}, + [330] = {.lex_state = 96, .external_lex_state = 4}, + [331] = {.lex_state = 96, .external_lex_state = 4}, + [332] = {.lex_state = 4}, + [333] = {.lex_state = 96, .external_lex_state = 4}, + [334] = {.lex_state = 4, .external_lex_state = 2}, + [335] = {.lex_state = 4, .external_lex_state = 2}, + [336] = {.lex_state = 4}, + [337] = {.lex_state = 96, .external_lex_state = 4}, + [338] = {.lex_state = 96, .external_lex_state = 4}, + [339] = {.lex_state = 4, .external_lex_state = 2}, + [340] = {.lex_state = 96, .external_lex_state = 4}, + [341] = {.lex_state = 4}, + [342] = {.lex_state = 96, .external_lex_state = 4}, + [343] = {.lex_state = 4, .external_lex_state = 4}, + [344] = {.lex_state = 96, .external_lex_state = 4}, + [345] = {.lex_state = 96, .external_lex_state = 4}, + [346] = {.lex_state = 96, .external_lex_state = 4}, + [347] = {.lex_state = 96, .external_lex_state = 4}, + [348] = {.lex_state = 96, .external_lex_state = 4}, + [349] = {.lex_state = 96, .external_lex_state = 4}, + [350] = {.lex_state = 96, .external_lex_state = 4}, + [351] = {.lex_state = 96, .external_lex_state = 4}, + [352] = {.lex_state = 96, .external_lex_state = 4}, + [353] = {.lex_state = 4}, + [354] = {.lex_state = 4, .external_lex_state = 4}, [355] = {.lex_state = 4, .external_lex_state = 3}, - [356] = {.lex_state = 4}, + [356] = {.lex_state = 4, .external_lex_state = 4}, [357] = {.lex_state = 4, .external_lex_state = 3}, - [358] = {.lex_state = 4, .external_lex_state = 2}, + [358] = {.lex_state = 4, .external_lex_state = 3}, [359] = {.lex_state = 4, .external_lex_state = 3}, - [360] = {.lex_state = 4, .external_lex_state = 3}, - [361] = {.lex_state = 4, .external_lex_state = 3}, - [362] = {.lex_state = 4, .external_lex_state = 2}, + [360] = {.lex_state = 35, .external_lex_state = 4}, + [361] = {.lex_state = 35, .external_lex_state = 4}, + [362] = {.lex_state = 4, .external_lex_state = 3}, [363] = {.lex_state = 4, .external_lex_state = 3}, [364] = {.lex_state = 4, .external_lex_state = 3}, - [365] = {.lex_state = 4, .external_lex_state = 3}, - [366] = {.lex_state = 4, .external_lex_state = 3}, + [365] = {.lex_state = 4, .external_lex_state = 2}, + [366] = {.lex_state = 4, .external_lex_state = 2}, [367] = {.lex_state = 4, .external_lex_state = 3}, - [368] = {.lex_state = 4, .external_lex_state = 3}, + [368] = {.lex_state = 4, .external_lex_state = 2}, [369] = {.lex_state = 4, .external_lex_state = 3}, - [370] = {.lex_state = 4, .external_lex_state = 2}, - [371] = {.lex_state = 4, .external_lex_state = 3}, - [372] = {.lex_state = 90, .external_lex_state = 4}, + [370] = {.lex_state = 4, .external_lex_state = 3}, + [371] = {.lex_state = 91, .external_lex_state = 4}, + [372] = {.lex_state = 4, .external_lex_state = 3}, [373] = {.lex_state = 4, .external_lex_state = 3}, - [374] = {.lex_state = 4, .external_lex_state = 3}, + [374] = {.lex_state = 96, .external_lex_state = 4}, [375] = {.lex_state = 4, .external_lex_state = 3}, [376] = {.lex_state = 4, .external_lex_state = 3}, - [377] = {.lex_state = 35, .external_lex_state = 2}, - [378] = {.lex_state = 4, .external_lex_state = 3}, + [377] = {.lex_state = 4, .external_lex_state = 3}, + [378] = {.lex_state = 4}, [379] = {.lex_state = 4, .external_lex_state = 3}, [380] = {.lex_state = 4, .external_lex_state = 3}, [381] = {.lex_state = 4, .external_lex_state = 3}, - [382] = {.lex_state = 4, .external_lex_state = 3}, - [383] = {.lex_state = 4}, - [384] = {.lex_state = 92, .external_lex_state = 4}, + [382] = {.lex_state = 4, .external_lex_state = 4}, + [383] = {.lex_state = 4, .external_lex_state = 3}, + [384] = {.lex_state = 4, .external_lex_state = 3}, [385] = {.lex_state = 4, .external_lex_state = 4}, - [386] = {.lex_state = 4, .external_lex_state = 3}, - [387] = {.lex_state = 4, .external_lex_state = 3}, - [388] = {.lex_state = 4, .external_lex_state = 4}, - [389] = {.lex_state = 35, .external_lex_state = 2}, - [390] = {.lex_state = 4, .external_lex_state = 3}, - [391] = {.lex_state = 4, .external_lex_state = 4}, - [392] = {.lex_state = 4, .external_lex_state = 4}, - [393] = {.lex_state = 4, .external_lex_state = 4}, - [394] = {.lex_state = 4, .external_lex_state = 3}, - [395] = {.lex_state = 90, .external_lex_state = 4}, + [386] = {.lex_state = 4, .external_lex_state = 4}, + [387] = {.lex_state = 4}, + [388] = {.lex_state = 4, .external_lex_state = 3}, + [389] = {.lex_state = 4, .external_lex_state = 3}, + [390] = {.lex_state = 91, .external_lex_state = 4}, + [391] = {.lex_state = 4, .external_lex_state = 3}, + [392] = {.lex_state = 4, .external_lex_state = 3}, + [393] = {.lex_state = 4, .external_lex_state = 3}, + [394] = {.lex_state = 35, .external_lex_state = 2}, + [395] = {.lex_state = 4, .external_lex_state = 3}, [396] = {.lex_state = 4, .external_lex_state = 3}, - [397] = {.lex_state = 35, .external_lex_state = 4}, - [398] = {.lex_state = 4, .external_lex_state = 3}, + [397] = {.lex_state = 4, .external_lex_state = 3}, + [398] = {.lex_state = 91, .external_lex_state = 4}, [399] = {.lex_state = 4, .external_lex_state = 3}, - [400] = {.lex_state = 90, .external_lex_state = 4}, - [401] = {.lex_state = 35, .external_lex_state = 4}, - [402] = {.lex_state = 92, .external_lex_state = 4}, + [400] = {.lex_state = 4, .external_lex_state = 3}, + [401] = {.lex_state = 4, .external_lex_state = 3}, + [402] = {.lex_state = 35, .external_lex_state = 2}, [403] = {.lex_state = 4, .external_lex_state = 2}, [404] = {.lex_state = 4, .external_lex_state = 4}, [405] = {.lex_state = 4, .external_lex_state = 4}, [406] = {.lex_state = 4, .external_lex_state = 4}, - [407] = {.lex_state = 92, .external_lex_state = 4}, - [408] = {.lex_state = 4, .external_lex_state = 2}, + [407] = {.lex_state = 91, .external_lex_state = 4}, + [408] = {.lex_state = 4, .external_lex_state = 4}, [409] = {.lex_state = 4, .external_lex_state = 4}, - [410] = {.lex_state = 4, .external_lex_state = 2}, + [410] = {.lex_state = 4, .external_lex_state = 4}, [411] = {.lex_state = 4, .external_lex_state = 4}, - [412] = {.lex_state = 4, .external_lex_state = 2}, - [413] = {.lex_state = 90, .external_lex_state = 4}, - [414] = {.lex_state = 4, .external_lex_state = 4}, - [415] = {.lex_state = 4, .external_lex_state = 4}, - [416] = {.lex_state = 4, .external_lex_state = 4}, + [412] = {.lex_state = 35}, + [413] = {.lex_state = 4}, + [414] = {.lex_state = 4, .external_lex_state = 2}, + [415] = {.lex_state = 4}, + [416] = {.lex_state = 4, .external_lex_state = 2}, [417] = {.lex_state = 4, .external_lex_state = 4}, - [418] = {.lex_state = 4, .external_lex_state = 4}, - [419] = {.lex_state = 90, .external_lex_state = 4}, + [418] = {.lex_state = 4, .external_lex_state = 2}, + [419] = {.lex_state = 4, .external_lex_state = 4}, [420] = {.lex_state = 4, .external_lex_state = 4}, [421] = {.lex_state = 4, .external_lex_state = 4}, [422] = {.lex_state = 4, .external_lex_state = 4}, [423] = {.lex_state = 4, .external_lex_state = 4}, [424] = {.lex_state = 4, .external_lex_state = 4}, - [425] = {.lex_state = 4, .external_lex_state = 4}, + [425] = {.lex_state = 91, .external_lex_state = 4}, [426] = {.lex_state = 4, .external_lex_state = 4}, [427] = {.lex_state = 4, .external_lex_state = 4}, - [428] = {.lex_state = 4, .external_lex_state = 4}, - [429] = {.lex_state = 4, .external_lex_state = 4}, - [430] = {.lex_state = 4, .external_lex_state = 4}, + [428] = {.lex_state = 4, .external_lex_state = 2}, + [429] = {.lex_state = 4, .external_lex_state = 2}, + [430] = {.lex_state = 4, .external_lex_state = 2}, [431] = {.lex_state = 4, .external_lex_state = 4}, - [432] = {.lex_state = 35}, - [433] = {.lex_state = 4, .external_lex_state = 4}, - [434] = {.lex_state = 4, .external_lex_state = 4}, - [435] = {.lex_state = 4, .external_lex_state = 4}, - [436] = {.lex_state = 4, .external_lex_state = 4}, + [432] = {.lex_state = 4, .external_lex_state = 2}, + [433] = {.lex_state = 91, .external_lex_state = 4}, + [434] = {.lex_state = 4, .external_lex_state = 2}, + [435] = {.lex_state = 4, .external_lex_state = 2}, + [436] = {.lex_state = 4, .external_lex_state = 2}, [437] = {.lex_state = 4, .external_lex_state = 2}, - [438] = {.lex_state = 4}, + [438] = {.lex_state = 4, .external_lex_state = 2}, [439] = {.lex_state = 4, .external_lex_state = 4}, - [440] = {.lex_state = 35}, - [441] = {.lex_state = 4, .external_lex_state = 2}, - [442] = {.lex_state = 4}, + [440] = {.lex_state = 4, .external_lex_state = 2}, + [441] = {.lex_state = 4, .external_lex_state = 4}, + [442] = {.lex_state = 4, .external_lex_state = 4}, [443] = {.lex_state = 4}, [444] = {.lex_state = 4, .external_lex_state = 4}, - [445] = {.lex_state = 90, .external_lex_state = 4}, + [445] = {.lex_state = 4, .external_lex_state = 4}, [446] = {.lex_state = 4, .external_lex_state = 4}, - [447] = {.lex_state = 4, .external_lex_state = 4}, + [447] = {.lex_state = 4, .external_lex_state = 2}, [448] = {.lex_state = 4, .external_lex_state = 4}, - [449] = {.lex_state = 4, .external_lex_state = 2}, - [450] = {.lex_state = 4, .external_lex_state = 2}, - [451] = {.lex_state = 4, .external_lex_state = 2}, - [452] = {.lex_state = 4, .external_lex_state = 2}, - [453] = {.lex_state = 4, .external_lex_state = 2}, - [454] = {.lex_state = 4, .external_lex_state = 2}, - [455] = {.lex_state = 4, .external_lex_state = 2}, - [456] = {.lex_state = 4, .external_lex_state = 2}, - [457] = {.lex_state = 4, .external_lex_state = 2}, - [458] = {.lex_state = 4}, - [459] = {.lex_state = 92, .external_lex_state = 4}, + [449] = {.lex_state = 4, .external_lex_state = 4}, + [450] = {.lex_state = 35}, + [451] = {.lex_state = 4, .external_lex_state = 4}, + [452] = {.lex_state = 4, .external_lex_state = 4}, + [453] = {.lex_state = 4, .external_lex_state = 4}, + [454] = {.lex_state = 4, .external_lex_state = 4}, + [455] = {.lex_state = 4, .external_lex_state = 4}, + [456] = {.lex_state = 4, .external_lex_state = 4}, + [457] = {.lex_state = 96, .external_lex_state = 4}, + [458] = {.lex_state = 94, .external_lex_state = 4}, + [459] = {.lex_state = 96, .external_lex_state = 4}, [460] = {.lex_state = 4}, [461] = {.lex_state = 4}, - [462] = {.lex_state = 94, .external_lex_state = 4}, - [463] = {.lex_state = 92, .external_lex_state = 4}, + [462] = {.lex_state = 4}, + [463] = {.lex_state = 4}, [464] = {.lex_state = 4}, - [465] = {.lex_state = 4}, + [465] = {.lex_state = 25, .external_lex_state = 2}, [466] = {.lex_state = 4}, - [467] = {.lex_state = 94, .external_lex_state = 4}, + [467] = {.lex_state = 96, .external_lex_state = 4}, [468] = {.lex_state = 4}, - [469] = {.lex_state = 92, .external_lex_state = 4}, - [470] = {.lex_state = 4}, + [469] = {.lex_state = 4}, + [470] = {.lex_state = 96, .external_lex_state = 4}, [471] = {.lex_state = 4}, - [472] = {.lex_state = 25, .external_lex_state = 2}, + [472] = {.lex_state = 4}, [473] = {.lex_state = 4}, - [474] = {.lex_state = 92, .external_lex_state = 4}, + [474] = {.lex_state = 4}, [475] = {.lex_state = 4}, [476] = {.lex_state = 4}, - [477] = {.lex_state = 4}, - [478] = {.lex_state = 4}, + [477] = {.lex_state = 96, .external_lex_state = 4}, + [478] = {.lex_state = 94, .external_lex_state = 4}, [479] = {.lex_state = 4}, - [480] = {.lex_state = 92, .external_lex_state = 4}, - [481] = {.lex_state = 25}, + [480] = {.lex_state = 96, .external_lex_state = 4}, + [481] = {.lex_state = 96, .external_lex_state = 4}, [482] = {.lex_state = 4, .external_lex_state = 2}, - [483] = {.lex_state = 92, .external_lex_state = 4}, - [484] = {.lex_state = 92, .external_lex_state = 4}, - [485] = {.lex_state = 92, .external_lex_state = 4}, - [486] = {.lex_state = 92, .external_lex_state = 4}, - [487] = {.lex_state = 92, .external_lex_state = 4}, - [488] = {.lex_state = 92, .external_lex_state = 4}, - [489] = {.lex_state = 92, .external_lex_state = 4}, - [490] = {.lex_state = 92, .external_lex_state = 4}, - [491] = {.lex_state = 92, .external_lex_state = 4}, - [492] = {.lex_state = 4, .external_lex_state = 2}, + [483] = {.lex_state = 4, .external_lex_state = 2}, + [484] = {.lex_state = 96, .external_lex_state = 4}, + [485] = {.lex_state = 4, .external_lex_state = 2}, + [486] = {.lex_state = 96, .external_lex_state = 4}, + [487] = {.lex_state = 96, .external_lex_state = 4}, + [488] = {.lex_state = 96, .external_lex_state = 4}, + [489] = {.lex_state = 96, .external_lex_state = 4}, + [490] = {.lex_state = 96, .external_lex_state = 4}, + [491] = {.lex_state = 96, .external_lex_state = 4}, + [492] = {.lex_state = 96, .external_lex_state = 4}, [493] = {.lex_state = 4, .external_lex_state = 2}, [494] = {.lex_state = 4, .external_lex_state = 2}, - [495] = {.lex_state = 92, .external_lex_state = 4}, - [496] = {.lex_state = 92, .external_lex_state = 4}, - [497] = {.lex_state = 92, .external_lex_state = 4}, - [498] = {.lex_state = 4, .external_lex_state = 2}, + [495] = {.lex_state = 96, .external_lex_state = 4}, + [496] = {.lex_state = 96, .external_lex_state = 4}, + [497] = {.lex_state = 96, .external_lex_state = 4}, + [498] = {.lex_state = 25}, [499] = {.lex_state = 4}, [500] = {.lex_state = 4}, [501] = {.lex_state = 4}, @@ -6035,196 +6320,196 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [503] = {.lex_state = 4}, [504] = {.lex_state = 25, .external_lex_state = 2}, [505] = {.lex_state = 25}, - [506] = {.lex_state = 96, .external_lex_state = 4}, - [507] = {.lex_state = 96, .external_lex_state = 4}, - [508] = {.lex_state = 96, .external_lex_state = 4}, - [509] = {.lex_state = 96, .external_lex_state = 4}, - [510] = {.lex_state = 96}, - [511] = {.lex_state = 96, .external_lex_state = 4}, - [512] = {.lex_state = 96}, - [513] = {.lex_state = 96}, - [514] = {.lex_state = 96}, - [515] = {.lex_state = 96}, - [516] = {.lex_state = 96}, - [517] = {.lex_state = 96, .external_lex_state = 4}, - [518] = {.lex_state = 96, .external_lex_state = 4}, - [519] = {.lex_state = 96, .external_lex_state = 4}, - [520] = {.lex_state = 96, .external_lex_state = 4}, - [521] = {.lex_state = 98, .external_lex_state = 4}, - [522] = {.lex_state = 96, .external_lex_state = 4}, - [523] = {.lex_state = 98, .external_lex_state = 4}, - [524] = {.lex_state = 96}, - [525] = {.lex_state = 96, .external_lex_state = 4}, - [526] = {.lex_state = 96, .external_lex_state = 4}, - [527] = {.lex_state = 96, .external_lex_state = 4}, - [528] = {.lex_state = 96}, - [529] = {.lex_state = 96}, - [530] = {.lex_state = 96, .external_lex_state = 4}, - [531] = {.lex_state = 96, .external_lex_state = 4}, - [532] = {.lex_state = 96, .external_lex_state = 4}, - [533] = {.lex_state = 96, .external_lex_state = 4}, - [534] = {.lex_state = 96, .external_lex_state = 4}, - [535] = {.lex_state = 96, .external_lex_state = 4}, - [536] = {.lex_state = 96, .external_lex_state = 4}, - [537] = {.lex_state = 96, .external_lex_state = 4}, - [538] = {.lex_state = 96}, - [539] = {.lex_state = 96, .external_lex_state = 4}, - [540] = {.lex_state = 96, .external_lex_state = 4}, - [541] = {.lex_state = 96, .external_lex_state = 4}, - [542] = {.lex_state = 96, .external_lex_state = 4}, - [543] = {.lex_state = 96, .external_lex_state = 4}, - [544] = {.lex_state = 96, .external_lex_state = 4}, - [545] = {.lex_state = 96, .external_lex_state = 4}, - [546] = {.lex_state = 4, .external_lex_state = 2}, + [506] = {.lex_state = 98, .external_lex_state = 4}, + [507] = {.lex_state = 98, .external_lex_state = 4}, + [508] = {.lex_state = 98, .external_lex_state = 4}, + [509] = {.lex_state = 98, .external_lex_state = 4}, + [510] = {.lex_state = 98}, + [511] = {.lex_state = 98, .external_lex_state = 4}, + [512] = {.lex_state = 98}, + [513] = {.lex_state = 98, .external_lex_state = 4}, + [514] = {.lex_state = 99, .external_lex_state = 4}, + [515] = {.lex_state = 98, .external_lex_state = 4}, + [516] = {.lex_state = 99, .external_lex_state = 4}, + [517] = {.lex_state = 98, .external_lex_state = 4}, + [518] = {.lex_state = 98}, + [519] = {.lex_state = 98, .external_lex_state = 4}, + [520] = {.lex_state = 98, .external_lex_state = 4}, + [521] = {.lex_state = 98}, + [522] = {.lex_state = 98}, + [523] = {.lex_state = 98}, + [524] = {.lex_state = 98}, + [525] = {.lex_state = 99}, + [526] = {.lex_state = 98, .external_lex_state = 4}, + [527] = {.lex_state = 98, .external_lex_state = 4}, + [528] = {.lex_state = 98, .external_lex_state = 4}, + [529] = {.lex_state = 98, .external_lex_state = 4}, + [530] = {.lex_state = 98, .external_lex_state = 4}, + [531] = {.lex_state = 98, .external_lex_state = 4}, + [532] = {.lex_state = 98, .external_lex_state = 4}, + [533] = {.lex_state = 98}, + [534] = {.lex_state = 98, .external_lex_state = 4}, + [535] = {.lex_state = 98, .external_lex_state = 4}, + [536] = {.lex_state = 98, .external_lex_state = 4}, + [537] = {.lex_state = 98, .external_lex_state = 4}, + [538] = {.lex_state = 98, .external_lex_state = 4}, + [539] = {.lex_state = 98, .external_lex_state = 4}, + [540] = {.lex_state = 98, .external_lex_state = 4}, + [541] = {.lex_state = 98}, + [542] = {.lex_state = 98, .external_lex_state = 4}, + [543] = {.lex_state = 98, .external_lex_state = 4}, + [544] = {.lex_state = 98, .external_lex_state = 4}, + [545] = {.lex_state = 4, .external_lex_state = 2}, + [546] = {.lex_state = 98, .external_lex_state = 4}, [547] = {.lex_state = 4, .external_lex_state = 2}, - [548] = {.lex_state = 96, .external_lex_state = 4}, - [549] = {.lex_state = 96, .external_lex_state = 4}, - [550] = {.lex_state = 96, .external_lex_state = 4}, - [551] = {.lex_state = 96}, - [552] = {.lex_state = 96, .external_lex_state = 4}, - [553] = {.lex_state = 98}, - [554] = {.lex_state = 96, .external_lex_state = 4}, - [555] = {.lex_state = 96, .external_lex_state = 4}, - [556] = {.lex_state = 96, .external_lex_state = 4}, - [557] = {.lex_state = 41, .external_lex_state = 3}, - [558] = {.lex_state = 98}, - [559] = {.lex_state = 96, .external_lex_state = 4}, - [560] = {.lex_state = 96, .external_lex_state = 4}, - [561] = {.lex_state = 96, .external_lex_state = 4}, - [562] = {.lex_state = 96, .external_lex_state = 4}, - [563] = {.lex_state = 96}, - [564] = {.lex_state = 96, .external_lex_state = 4}, - [565] = {.lex_state = 96, .external_lex_state = 4}, - [566] = {.lex_state = 41, .external_lex_state = 3}, - [567] = {.lex_state = 96}, - [568] = {.lex_state = 96}, - [569] = {.lex_state = 96}, - [570] = {.lex_state = 96}, - [571] = {.lex_state = 4}, - [572] = {.lex_state = 96}, - [573] = {.lex_state = 4}, - [574] = {.lex_state = 96}, - [575] = {.lex_state = 41, .external_lex_state = 3}, - [576] = {.lex_state = 96}, - [577] = {.lex_state = 96}, - [578] = {.lex_state = 96}, - [579] = {.lex_state = 96}, - [580] = {.lex_state = 41, .external_lex_state = 4}, - [581] = {.lex_state = 96}, - [582] = {.lex_state = 96}, - [583] = {.lex_state = 96}, - [584] = {.lex_state = 41, .external_lex_state = 3}, + [548] = {.lex_state = 98, .external_lex_state = 4}, + [549] = {.lex_state = 99}, + [550] = {.lex_state = 98, .external_lex_state = 4}, + [551] = {.lex_state = 98, .external_lex_state = 4}, + [552] = {.lex_state = 98, .external_lex_state = 4}, + [553] = {.lex_state = 98, .external_lex_state = 4}, + [554] = {.lex_state = 41, .external_lex_state = 3}, + [555] = {.lex_state = 98, .external_lex_state = 4}, + [556] = {.lex_state = 98}, + [557] = {.lex_state = 98}, + [558] = {.lex_state = 98, .external_lex_state = 4}, + [559] = {.lex_state = 98}, + [560] = {.lex_state = 98, .external_lex_state = 4}, + [561] = {.lex_state = 98, .external_lex_state = 4}, + [562] = {.lex_state = 98, .external_lex_state = 4}, + [563] = {.lex_state = 98, .external_lex_state = 4}, + [564] = {.lex_state = 98, .external_lex_state = 4}, + [565] = {.lex_state = 98, .external_lex_state = 4}, + [566] = {.lex_state = 41, .external_lex_state = 4}, + [567] = {.lex_state = 98}, + [568] = {.lex_state = 4}, + [569] = {.lex_state = 98}, + [570] = {.lex_state = 98}, + [571] = {.lex_state = 98}, + [572] = {.lex_state = 4}, + [573] = {.lex_state = 98}, + [574] = {.lex_state = 98}, + [575] = {.lex_state = 98}, + [576] = {.lex_state = 98}, + [577] = {.lex_state = 98}, + [578] = {.lex_state = 98}, + [579] = {.lex_state = 41, .external_lex_state = 3}, + [580] = {.lex_state = 98}, + [581] = {.lex_state = 98}, + [582] = {.lex_state = 41, .external_lex_state = 3}, + [583] = {.lex_state = 41, .external_lex_state = 3}, + [584] = {.lex_state = 98}, [585] = {.lex_state = 41, .external_lex_state = 3}, [586] = {.lex_state = 41, .external_lex_state = 4}, [587] = {.lex_state = 41, .external_lex_state = 3}, [588] = {.lex_state = 41, .external_lex_state = 4}, [589] = {.lex_state = 4, .external_lex_state = 2}, - [590] = {.lex_state = 41, .external_lex_state = 4}, - [591] = {.lex_state = 4, .external_lex_state = 2}, + [590] = {.lex_state = 41, .external_lex_state = 3}, + [591] = {.lex_state = 41, .external_lex_state = 3}, [592] = {.lex_state = 41, .external_lex_state = 3}, - [593] = {.lex_state = 41, .external_lex_state = 3}, + [593] = {.lex_state = 41, .external_lex_state = 4}, [594] = {.lex_state = 41, .external_lex_state = 4}, - [595] = {.lex_state = 41, .external_lex_state = 3}, - [596] = {.lex_state = 41, .external_lex_state = 4}, - [597] = {.lex_state = 33, .external_lex_state = 3}, - [598] = {.lex_state = 41, .external_lex_state = 4}, - [599] = {.lex_state = 4}, - [600] = {.lex_state = 33, .external_lex_state = 3}, - [601] = {.lex_state = 4}, - [602] = {.lex_state = 41, .external_lex_state = 4}, - [603] = {.lex_state = 41, .external_lex_state = 3}, - [604] = {.lex_state = 41, .external_lex_state = 3}, + [595] = {.lex_state = 41, .external_lex_state = 4}, + [596] = {.lex_state = 4, .external_lex_state = 2}, + [597] = {.lex_state = 41, .external_lex_state = 4}, + [598] = {.lex_state = 4}, + [599] = {.lex_state = 41, .external_lex_state = 3}, + [600] = {.lex_state = 41, .external_lex_state = 3}, + [601] = {.lex_state = 41, .external_lex_state = 3}, + [602] = {.lex_state = 33, .external_lex_state = 3}, + [603] = {.lex_state = 33, .external_lex_state = 3}, + [604] = {.lex_state = 4}, [605] = {.lex_state = 41, .external_lex_state = 3}, - [606] = {.lex_state = 41, .external_lex_state = 3}, + [606] = {.lex_state = 41, .external_lex_state = 4}, [607] = {.lex_state = 41, .external_lex_state = 4}, - [608] = {.lex_state = 4, .external_lex_state = 2}, - [609] = {.lex_state = 33, .external_lex_state = 4}, - [610] = {.lex_state = 41, .external_lex_state = 4}, - [611] = {.lex_state = 45}, + [608] = {.lex_state = 41, .external_lex_state = 3}, + [609] = {.lex_state = 41, .external_lex_state = 3}, + [610] = {.lex_state = 41, .external_lex_state = 3}, + [611] = {.lex_state = 41, .external_lex_state = 4}, [612] = {.lex_state = 41, .external_lex_state = 4}, [613] = {.lex_state = 41, .external_lex_state = 3}, - [614] = {.lex_state = 45}, - [615] = {.lex_state = 41, .external_lex_state = 3}, + [614] = {.lex_state = 41, .external_lex_state = 4}, + [615] = {.lex_state = 45}, [616] = {.lex_state = 41, .external_lex_state = 3}, - [617] = {.lex_state = 41, .external_lex_state = 3}, + [617] = {.lex_state = 45}, [618] = {.lex_state = 41, .external_lex_state = 3}, [619] = {.lex_state = 41, .external_lex_state = 3}, - [620] = {.lex_state = 45}, + [620] = {.lex_state = 41, .external_lex_state = 3}, [621] = {.lex_state = 45}, - [622] = {.lex_state = 41, .external_lex_state = 4}, + [622] = {.lex_state = 45}, [623] = {.lex_state = 41, .external_lex_state = 3}, - [624] = {.lex_state = 45}, - [625] = {.lex_state = 45}, + [624] = {.lex_state = 41, .external_lex_state = 3}, + [625] = {.lex_state = 41, .external_lex_state = 4}, [626] = {.lex_state = 45}, - [627] = {.lex_state = 4, .external_lex_state = 2}, + [627] = {.lex_state = 41, .external_lex_state = 3}, [628] = {.lex_state = 41, .external_lex_state = 3}, - [629] = {.lex_state = 41, .external_lex_state = 3}, - [630] = {.lex_state = 41, .external_lex_state = 3}, + [629] = {.lex_state = 4, .external_lex_state = 2}, + [630] = {.lex_state = 45}, [631] = {.lex_state = 45}, - [632] = {.lex_state = 41, .external_lex_state = 4}, - [633] = {.lex_state = 45}, - [634] = {.lex_state = 45}, - [635] = {.lex_state = 33, .external_lex_state = 4}, - [636] = {.lex_state = 4, .external_lex_state = 2}, - [637] = {.lex_state = 4, .external_lex_state = 2}, - [638] = {.lex_state = 41, .external_lex_state = 3}, - [639] = {.lex_state = 41, .external_lex_state = 3}, - [640] = {.lex_state = 41, .external_lex_state = 3}, - [641] = {.lex_state = 41, .external_lex_state = 3}, + [632] = {.lex_state = 41, .external_lex_state = 3}, + [633] = {.lex_state = 4, .external_lex_state = 2}, + [634] = {.lex_state = 33, .external_lex_state = 4}, + [635] = {.lex_state = 45}, + [636] = {.lex_state = 45}, + [637] = {.lex_state = 41, .external_lex_state = 3}, + [638] = {.lex_state = 33, .external_lex_state = 4}, + [639] = {.lex_state = 4, .external_lex_state = 2}, + [640] = {.lex_state = 4, .external_lex_state = 2}, + [641] = {.lex_state = 45}, [642] = {.lex_state = 41, .external_lex_state = 3}, [643] = {.lex_state = 45}, [644] = {.lex_state = 41, .external_lex_state = 4}, - [645] = {.lex_state = 90, .external_lex_state = 4}, - [646] = {.lex_state = 41, .external_lex_state = 4}, - [647] = {.lex_state = 41, .external_lex_state = 3}, - [648] = {.lex_state = 41, .external_lex_state = 3}, - [649] = {.lex_state = 41, .external_lex_state = 4}, - [650] = {.lex_state = 41, .external_lex_state = 4}, - [651] = {.lex_state = 41, .external_lex_state = 4}, + [645] = {.lex_state = 45}, + [646] = {.lex_state = 45}, + [647] = {.lex_state = 45}, + [648] = {.lex_state = 45}, + [649] = {.lex_state = 45}, + [650] = {.lex_state = 45}, + [651] = {.lex_state = 45}, [652] = {.lex_state = 41, .external_lex_state = 4}, - [653] = {.lex_state = 41, .external_lex_state = 4}, - [654] = {.lex_state = 90, .external_lex_state = 4}, - [655] = {.lex_state = 41, .external_lex_state = 4}, - [656] = {.lex_state = 41, .external_lex_state = 4}, - [657] = {.lex_state = 41, .external_lex_state = 4}, - [658] = {.lex_state = 41, .external_lex_state = 4}, - [659] = {.lex_state = 45}, - [660] = {.lex_state = 45}, - [661] = {.lex_state = 45}, - [662] = {.lex_state = 45}, - [663] = {.lex_state = 4}, + [653] = {.lex_state = 4}, + [654] = {.lex_state = 91, .external_lex_state = 4}, + [655] = {.lex_state = 45}, + [656] = {.lex_state = 91, .external_lex_state = 4}, + [657] = {.lex_state = 45}, + [658] = {.lex_state = 41, .external_lex_state = 3}, + [659] = {.lex_state = 4}, + [660] = {.lex_state = 4}, + [661] = {.lex_state = 41, .external_lex_state = 4}, + [662] = {.lex_state = 41, .external_lex_state = 4}, + [663] = {.lex_state = 45}, [664] = {.lex_state = 45}, - [665] = {.lex_state = 4}, + [665] = {.lex_state = 45}, [666] = {.lex_state = 45}, [667] = {.lex_state = 45}, [668] = {.lex_state = 45}, [669] = {.lex_state = 45}, - [670] = {.lex_state = 45}, - [671] = {.lex_state = 45}, - [672] = {.lex_state = 45}, + [670] = {.lex_state = 41, .external_lex_state = 3}, + [671] = {.lex_state = 41, .external_lex_state = 4}, + [672] = {.lex_state = 41, .external_lex_state = 3}, [673] = {.lex_state = 45}, - [674] = {.lex_state = 45}, - [675] = {.lex_state = 41, .external_lex_state = 3}, + [674] = {.lex_state = 41, .external_lex_state = 4}, + [675] = {.lex_state = 41, .external_lex_state = 4}, [676] = {.lex_state = 45}, - [677] = {.lex_state = 45}, + [677] = {.lex_state = 41, .external_lex_state = 4}, [678] = {.lex_state = 45}, - [679] = {.lex_state = 45}, + [679] = {.lex_state = 41, .external_lex_state = 4}, [680] = {.lex_state = 45}, [681] = {.lex_state = 45}, - [682] = {.lex_state = 41, .external_lex_state = 4}, + [682] = {.lex_state = 45}, [683] = {.lex_state = 45}, [684] = {.lex_state = 41, .external_lex_state = 4}, [685] = {.lex_state = 45}, - [686] = {.lex_state = 45}, + [686] = {.lex_state = 41, .external_lex_state = 4}, [687] = {.lex_state = 45}, [688] = {.lex_state = 45}, - [689] = {.lex_state = 4}, - [690] = {.lex_state = 45}, + [689] = {.lex_state = 45}, + [690] = {.lex_state = 41, .external_lex_state = 4}, [691] = {.lex_state = 45}, - [692] = {.lex_state = 4}, + [692] = {.lex_state = 41, .external_lex_state = 4}, [693] = {.lex_state = 45}, - [694] = {.lex_state = 41, .external_lex_state = 4}, - [695] = {.lex_state = 45}, + [694] = {.lex_state = 4}, + [695] = {.lex_state = 41, .external_lex_state = 4}, [696] = {.lex_state = 45}, [697] = {.lex_state = 45}, [698] = {.lex_state = 45}, @@ -6232,9 +6517,9 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [700] = {.lex_state = 45}, [701] = {.lex_state = 45}, [702] = {.lex_state = 45}, - [703] = {.lex_state = 41, .external_lex_state = 4}, + [703] = {.lex_state = 45}, [704] = {.lex_state = 45}, - [705] = {.lex_state = 45}, + [705] = {.lex_state = 41, .external_lex_state = 4}, [706] = {.lex_state = 45}, [707] = {.lex_state = 45}, [708] = {.lex_state = 45}, @@ -6245,49 +6530,49 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [713] = {.lex_state = 45}, [714] = {.lex_state = 45}, [715] = {.lex_state = 45}, - [716] = {.lex_state = 90, .external_lex_state = 4}, + [716] = {.lex_state = 45}, [717] = {.lex_state = 45}, [718] = {.lex_state = 45}, [719] = {.lex_state = 45}, - [720] = {.lex_state = 45}, + [720] = {.lex_state = 41, .external_lex_state = 4}, [721] = {.lex_state = 45}, [722] = {.lex_state = 45}, [723] = {.lex_state = 45}, [724] = {.lex_state = 45}, - [725] = {.lex_state = 45}, + [725] = {.lex_state = 91, .external_lex_state = 4}, [726] = {.lex_state = 45}, [727] = {.lex_state = 45}, [728] = {.lex_state = 45}, [729] = {.lex_state = 45}, [730] = {.lex_state = 45}, - [731] = {.lex_state = 45}, - [732] = {.lex_state = 90, .external_lex_state = 4}, + [731] = {.lex_state = 4, .external_lex_state = 2}, + [732] = {.lex_state = 91, .external_lex_state = 4}, [733] = {.lex_state = 45}, [734] = {.lex_state = 45}, [735] = {.lex_state = 45}, [736] = {.lex_state = 45}, [737] = {.lex_state = 45}, - [738] = {.lex_state = 45}, - [739] = {.lex_state = 45}, - [740] = {.lex_state = 4, .external_lex_state = 2}, + [738] = {.lex_state = 41, .external_lex_state = 4}, + [739] = {.lex_state = 91, .external_lex_state = 4}, + [740] = {.lex_state = 41, .external_lex_state = 3}, [741] = {.lex_state = 45}, [742] = {.lex_state = 41, .external_lex_state = 3}, - [743] = {.lex_state = 41, .external_lex_state = 4}, - [744] = {.lex_state = 41, .external_lex_state = 4}, + [743] = {.lex_state = 45}, + [744] = {.lex_state = 45}, [745] = {.lex_state = 45}, [746] = {.lex_state = 45}, - [747] = {.lex_state = 45}, + [747] = {.lex_state = 33, .external_lex_state = 3}, [748] = {.lex_state = 33, .external_lex_state = 3}, - [749] = {.lex_state = 33, .external_lex_state = 3}, + [749] = {.lex_state = 45}, [750] = {.lex_state = 45}, [751] = {.lex_state = 45}, [752] = {.lex_state = 45}, - [753] = {.lex_state = 4, .external_lex_state = 2}, + [753] = {.lex_state = 45}, [754] = {.lex_state = 45}, - [755] = {.lex_state = 45}, + [755] = {.lex_state = 41, .external_lex_state = 3}, [756] = {.lex_state = 45}, [757] = {.lex_state = 45}, - [758] = {.lex_state = 41, .external_lex_state = 3}, + [758] = {.lex_state = 45}, [759] = {.lex_state = 41, .external_lex_state = 4}, [760] = {.lex_state = 45}, [761] = {.lex_state = 45}, @@ -6298,14 +6583,14 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [766] = {.lex_state = 45}, [767] = {.lex_state = 45}, [768] = {.lex_state = 45}, - [769] = {.lex_state = 90, .external_lex_state = 4}, - [770] = {.lex_state = 45}, + [769] = {.lex_state = 45}, + [770] = {.lex_state = 4, .external_lex_state = 2}, [771] = {.lex_state = 45}, [772] = {.lex_state = 45}, [773] = {.lex_state = 45}, - [774] = {.lex_state = 41, .external_lex_state = 3}, + [774] = {.lex_state = 45}, [775] = {.lex_state = 45}, - [776] = {.lex_state = 45}, + [776] = {.lex_state = 91, .external_lex_state = 4}, [777] = {.lex_state = 45}, [778] = {.lex_state = 45}, [779] = {.lex_state = 45}, @@ -6329,18 +6614,18 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [797] = {.lex_state = 45}, [798] = {.lex_state = 45}, [799] = {.lex_state = 45}, - [800] = {.lex_state = 45}, + [800] = {.lex_state = 41, .external_lex_state = 3}, [801] = {.lex_state = 45}, [802] = {.lex_state = 45}, - [803] = {.lex_state = 41, .external_lex_state = 3}, - [804] = {.lex_state = 41, .external_lex_state = 3}, + [803] = {.lex_state = 45}, + [804] = {.lex_state = 45}, [805] = {.lex_state = 45}, [806] = {.lex_state = 45}, - [807] = {.lex_state = 41, .external_lex_state = 3}, - [808] = {.lex_state = 45}, + [807] = {.lex_state = 45}, + [808] = {.lex_state = 41, .external_lex_state = 3}, [809] = {.lex_state = 45}, [810] = {.lex_state = 45}, - [811] = {.lex_state = 45}, + [811] = {.lex_state = 41, .external_lex_state = 3}, [812] = {.lex_state = 45}, [813] = {.lex_state = 45}, [814] = {.lex_state = 45}, @@ -6349,10 +6634,10 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [817] = {.lex_state = 45}, [818] = {.lex_state = 45}, [819] = {.lex_state = 45}, - [820] = {.lex_state = 41, .external_lex_state = 3}, + [820] = {.lex_state = 45}, [821] = {.lex_state = 45}, [822] = {.lex_state = 45}, - [823] = {.lex_state = 41, .external_lex_state = 3}, + [823] = {.lex_state = 45}, [824] = {.lex_state = 45}, [825] = {.lex_state = 45}, [826] = {.lex_state = 45}, @@ -6362,7 +6647,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [830] = {.lex_state = 45}, [831] = {.lex_state = 45}, [832] = {.lex_state = 45}, - [833] = {.lex_state = 45}, + [833] = {.lex_state = 41, .external_lex_state = 3}, [834] = {.lex_state = 45}, [835] = {.lex_state = 45}, [836] = {.lex_state = 45}, @@ -6375,13 +6660,13 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [843] = {.lex_state = 45}, [844] = {.lex_state = 45}, [845] = {.lex_state = 45}, - [846] = {.lex_state = 41, .external_lex_state = 3}, - [847] = {.lex_state = 41, .external_lex_state = 3}, + [846] = {.lex_state = 45}, + [847] = {.lex_state = 45}, [848] = {.lex_state = 45}, [849] = {.lex_state = 45}, [850] = {.lex_state = 45}, - [851] = {.lex_state = 45}, - [852] = {.lex_state = 45}, + [851] = {.lex_state = 41, .external_lex_state = 3}, + [852] = {.lex_state = 41, .external_lex_state = 3}, [853] = {.lex_state = 45}, [854] = {.lex_state = 45}, [855] = {.lex_state = 45}, @@ -6395,15 +6680,15 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [863] = {.lex_state = 45}, [864] = {.lex_state = 45}, [865] = {.lex_state = 45}, - [866] = {.lex_state = 41, .external_lex_state = 3}, + [866] = {.lex_state = 45}, [867] = {.lex_state = 45}, [868] = {.lex_state = 45}, - [869] = {.lex_state = 41, .external_lex_state = 3}, + [869] = {.lex_state = 4}, [870] = {.lex_state = 45}, - [871] = {.lex_state = 45}, + [871] = {.lex_state = 41, .external_lex_state = 3}, [872] = {.lex_state = 45}, [873] = {.lex_state = 45}, - [874] = {.lex_state = 45}, + [874] = {.lex_state = 41, .external_lex_state = 3}, [875] = {.lex_state = 45}, [876] = {.lex_state = 45}, [877] = {.lex_state = 45}, @@ -6419,7 +6704,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [887] = {.lex_state = 45}, [888] = {.lex_state = 45}, [889] = {.lex_state = 45}, - [890] = {.lex_state = 4}, + [890] = {.lex_state = 91, .external_lex_state = 4}, [891] = {.lex_state = 45}, [892] = {.lex_state = 45}, [893] = {.lex_state = 45}, @@ -6445,7 +6730,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [913] = {.lex_state = 45}, [914] = {.lex_state = 45}, [915] = {.lex_state = 45}, - [916] = {.lex_state = 45}, + [916] = {.lex_state = 41, .external_lex_state = 3}, [917] = {.lex_state = 45}, [918] = {.lex_state = 45}, [919] = {.lex_state = 45}, @@ -6475,21 +6760,21 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [943] = {.lex_state = 45}, [944] = {.lex_state = 45}, [945] = {.lex_state = 45}, - [946] = {.lex_state = 45}, + [946] = {.lex_state = 41, .external_lex_state = 3}, [947] = {.lex_state = 45}, [948] = {.lex_state = 45}, [949] = {.lex_state = 45}, - [950] = {.lex_state = 45}, + [950] = {.lex_state = 41, .external_lex_state = 3}, [951] = {.lex_state = 45}, [952] = {.lex_state = 45}, [953] = {.lex_state = 45}, [954] = {.lex_state = 45}, - [955] = {.lex_state = 45}, + [955] = {.lex_state = 41, .external_lex_state = 4}, [956] = {.lex_state = 45}, [957] = {.lex_state = 45}, [958] = {.lex_state = 45}, [959] = {.lex_state = 45}, - [960] = {.lex_state = 45}, + [960] = {.lex_state = 91, .external_lex_state = 4}, [961] = {.lex_state = 45}, [962] = {.lex_state = 45}, [963] = {.lex_state = 45}, @@ -6497,7 +6782,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [965] = {.lex_state = 45}, [966] = {.lex_state = 45}, [967] = {.lex_state = 45}, - [968] = {.lex_state = 45}, + [968] = {.lex_state = 4, .external_lex_state = 2}, [969] = {.lex_state = 45}, [970] = {.lex_state = 45}, [971] = {.lex_state = 45}, @@ -6507,9 +6792,9 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [975] = {.lex_state = 45}, [976] = {.lex_state = 45}, [977] = {.lex_state = 45}, - [978] = {.lex_state = 45}, + [978] = {.lex_state = 41, .external_lex_state = 4}, [979] = {.lex_state = 45}, - [980] = {.lex_state = 4}, + [980] = {.lex_state = 45}, [981] = {.lex_state = 45}, [982] = {.lex_state = 45}, [983] = {.lex_state = 45}, @@ -6519,31 +6804,31 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [987] = {.lex_state = 45}, [988] = {.lex_state = 45}, [989] = {.lex_state = 45}, - [990] = {.lex_state = 41, .external_lex_state = 3}, - [991] = {.lex_state = 45}, - [992] = {.lex_state = 41, .external_lex_state = 3}, + [990] = {.lex_state = 45}, + [991] = {.lex_state = 41, .external_lex_state = 4}, + [992] = {.lex_state = 45}, [993] = {.lex_state = 45}, [994] = {.lex_state = 45}, - [995] = {.lex_state = 41, .external_lex_state = 3}, + [995] = {.lex_state = 45}, [996] = {.lex_state = 45}, - [997] = {.lex_state = 33, .external_lex_state = 4}, - [998] = {.lex_state = 41, .external_lex_state = 4}, - [999] = {.lex_state = 90, .external_lex_state = 4}, - [1000] = {.lex_state = 90, .external_lex_state = 4}, + [997] = {.lex_state = 45}, + [998] = {.lex_state = 45}, + [999] = {.lex_state = 45}, + [1000] = {.lex_state = 45}, [1001] = {.lex_state = 45}, - [1002] = {.lex_state = 45}, + [1002] = {.lex_state = 33, .external_lex_state = 4}, [1003] = {.lex_state = 45}, [1004] = {.lex_state = 45}, [1005] = {.lex_state = 45}, [1006] = {.lex_state = 45}, [1007] = {.lex_state = 45}, [1008] = {.lex_state = 45}, - [1009] = {.lex_state = 33, .external_lex_state = 4}, + [1009] = {.lex_state = 45}, [1010] = {.lex_state = 45}, [1011] = {.lex_state = 45}, [1012] = {.lex_state = 45}, [1013] = {.lex_state = 45}, - [1014] = {.lex_state = 45}, + [1014] = {.lex_state = 33, .external_lex_state = 4}, [1015] = {.lex_state = 45}, [1016] = {.lex_state = 45}, [1017] = {.lex_state = 45}, @@ -6551,10 +6836,10 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1019] = {.lex_state = 45}, [1020] = {.lex_state = 45}, [1021] = {.lex_state = 45}, - [1022] = {.lex_state = 41, .external_lex_state = 4}, + [1022] = {.lex_state = 45}, [1023] = {.lex_state = 45}, [1024] = {.lex_state = 45}, - [1025] = {.lex_state = 41, .external_lex_state = 4}, + [1025] = {.lex_state = 45}, [1026] = {.lex_state = 45}, [1027] = {.lex_state = 45}, [1028] = {.lex_state = 45}, @@ -6564,7 +6849,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1032] = {.lex_state = 45}, [1033] = {.lex_state = 45}, [1034] = {.lex_state = 45}, - [1035] = {.lex_state = 45}, + [1035] = {.lex_state = 4}, [1036] = {.lex_state = 45}, [1037] = {.lex_state = 45}, [1038] = {.lex_state = 45}, @@ -6583,7 +6868,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1051] = {.lex_state = 45}, [1052] = {.lex_state = 45}, [1053] = {.lex_state = 45}, - [1054] = {.lex_state = 90, .external_lex_state = 4}, + [1054] = {.lex_state = 45}, [1055] = {.lex_state = 45}, [1056] = {.lex_state = 45}, [1057] = {.lex_state = 45}, @@ -6596,7 +6881,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1064] = {.lex_state = 45}, [1065] = {.lex_state = 45}, [1066] = {.lex_state = 45}, - [1067] = {.lex_state = 90, .external_lex_state = 4}, + [1067] = {.lex_state = 45}, [1068] = {.lex_state = 45}, [1069] = {.lex_state = 45}, [1070] = {.lex_state = 45}, @@ -6622,12 +6907,12 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1090] = {.lex_state = 45}, [1091] = {.lex_state = 45}, [1092] = {.lex_state = 45}, - [1093] = {.lex_state = 45}, + [1093] = {.lex_state = 91, .external_lex_state = 4}, [1094] = {.lex_state = 45}, [1095] = {.lex_state = 45}, [1096] = {.lex_state = 45}, [1097] = {.lex_state = 45}, - [1098] = {.lex_state = 4, .external_lex_state = 2}, + [1098] = {.lex_state = 45}, [1099] = {.lex_state = 45}, [1100] = {.lex_state = 45}, [1101] = {.lex_state = 45}, @@ -6639,7 +6924,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1107] = {.lex_state = 45}, [1108] = {.lex_state = 45}, [1109] = {.lex_state = 45}, - [1110] = {.lex_state = 45}, + [1110] = {.lex_state = 41, .external_lex_state = 3}, [1111] = {.lex_state = 45}, [1112] = {.lex_state = 45}, [1113] = {.lex_state = 45}, @@ -6650,59 +6935,59 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1118] = {.lex_state = 45}, [1119] = {.lex_state = 45}, [1120] = {.lex_state = 45}, - [1121] = {.lex_state = 41, .external_lex_state = 4}, + [1121] = {.lex_state = 4, .external_lex_state = 2}, [1122] = {.lex_state = 94, .external_lex_state = 4}, - [1123] = {.lex_state = 41, .external_lex_state = 4}, - [1124] = {.lex_state = 94, .external_lex_state = 4}, - [1125] = {.lex_state = 37, .external_lex_state = 3}, - [1126] = {.lex_state = 41, .external_lex_state = 4}, - [1127] = {.lex_state = 41, .external_lex_state = 4}, + [1123] = {.lex_state = 4, .external_lex_state = 2}, + [1124] = {.lex_state = 4, .external_lex_state = 2}, + [1125] = {.lex_state = 41, .external_lex_state = 4}, + [1126] = {.lex_state = 4, .external_lex_state = 2}, + [1127] = {.lex_state = 94, .external_lex_state = 4}, [1128] = {.lex_state = 4, .external_lex_state = 2}, [1129] = {.lex_state = 4, .external_lex_state = 2}, - [1130] = {.lex_state = 41, .external_lex_state = 4}, - [1131] = {.lex_state = 41, .external_lex_state = 4}, - [1132] = {.lex_state = 41, .external_lex_state = 4}, - [1133] = {.lex_state = 41, .external_lex_state = 4}, - [1134] = {.lex_state = 41, .external_lex_state = 4}, - [1135] = {.lex_state = 41, .external_lex_state = 4}, - [1136] = {.lex_state = 41, .external_lex_state = 4}, - [1137] = {.lex_state = 90, .external_lex_state = 4}, + [1130] = {.lex_state = 4, .external_lex_state = 2}, + [1131] = {.lex_state = 4, .external_lex_state = 2}, + [1132] = {.lex_state = 4, .external_lex_state = 2}, + [1133] = {.lex_state = 4, .external_lex_state = 2}, + [1134] = {.lex_state = 4, .external_lex_state = 2}, + [1135] = {.lex_state = 4, .external_lex_state = 2}, + [1136] = {.lex_state = 4, .external_lex_state = 2}, + [1137] = {.lex_state = 37, .external_lex_state = 3}, [1138] = {.lex_state = 4, .external_lex_state = 2}, - [1139] = {.lex_state = 4, .external_lex_state = 2}, + [1139] = {.lex_state = 91, .external_lex_state = 4}, [1140] = {.lex_state = 4, .external_lex_state = 2}, - [1141] = {.lex_state = 4, .external_lex_state = 2}, - [1142] = {.lex_state = 4, .external_lex_state = 2}, + [1141] = {.lex_state = 41, .external_lex_state = 4}, + [1142] = {.lex_state = 91, .external_lex_state = 4}, [1143] = {.lex_state = 4, .external_lex_state = 2}, - [1144] = {.lex_state = 4}, + [1144] = {.lex_state = 4, .external_lex_state = 2}, [1145] = {.lex_state = 4, .external_lex_state = 2}, [1146] = {.lex_state = 4, .external_lex_state = 2}, [1147] = {.lex_state = 4, .external_lex_state = 2}, [1148] = {.lex_state = 4, .external_lex_state = 2}, [1149] = {.lex_state = 4, .external_lex_state = 2}, - [1150] = {.lex_state = 4, .external_lex_state = 2}, - [1151] = {.lex_state = 4, .external_lex_state = 2}, - [1152] = {.lex_state = 4, .external_lex_state = 2}, - [1153] = {.lex_state = 4, .external_lex_state = 2}, - [1154] = {.lex_state = 4, .external_lex_state = 2}, - [1155] = {.lex_state = 4, .external_lex_state = 2}, + [1150] = {.lex_state = 41, .external_lex_state = 4}, + [1151] = {.lex_state = 41, .external_lex_state = 4}, + [1152] = {.lex_state = 41, .external_lex_state = 4}, + [1153] = {.lex_state = 41, .external_lex_state = 4}, + [1154] = {.lex_state = 41, .external_lex_state = 4}, + [1155] = {.lex_state = 41, .external_lex_state = 4}, [1156] = {.lex_state = 41, .external_lex_state = 4}, - [1157] = {.lex_state = 4, .external_lex_state = 2}, - [1158] = {.lex_state = 4, .external_lex_state = 2}, - [1159] = {.lex_state = 4, .external_lex_state = 2}, + [1157] = {.lex_state = 41, .external_lex_state = 4}, + [1158] = {.lex_state = 41, .external_lex_state = 4}, + [1159] = {.lex_state = 41, .external_lex_state = 4}, [1160] = {.lex_state = 4, .external_lex_state = 2}, - [1161] = {.lex_state = 4, .external_lex_state = 2}, + [1161] = {.lex_state = 91, .external_lex_state = 4}, [1162] = {.lex_state = 4, .external_lex_state = 2}, - [1163] = {.lex_state = 90, .external_lex_state = 4}, + [1163] = {.lex_state = 4, .external_lex_state = 2}, [1164] = {.lex_state = 4, .external_lex_state = 2}, - [1165] = {.lex_state = 41, .external_lex_state = 4}, + [1165] = {.lex_state = 4, .external_lex_state = 2}, [1166] = {.lex_state = 4, .external_lex_state = 2}, [1167] = {.lex_state = 4, .external_lex_state = 2}, - [1168] = {.lex_state = 90, .external_lex_state = 4}, + [1168] = {.lex_state = 4, .external_lex_state = 2}, [1169] = {.lex_state = 4, .external_lex_state = 2}, [1170] = {.lex_state = 4, .external_lex_state = 2}, [1171] = {.lex_state = 4, .external_lex_state = 2}, [1172] = {.lex_state = 4, .external_lex_state = 2}, - [1173] = {.lex_state = 4, .external_lex_state = 2}, + [1173] = {.lex_state = 4}, [1174] = {.lex_state = 4, .external_lex_state = 2}, [1175] = {.lex_state = 4, .external_lex_state = 2}, [1176] = {.lex_state = 4, .external_lex_state = 2}, @@ -6723,30 +7008,30 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1191] = {.lex_state = 4, .external_lex_state = 2}, [1192] = {.lex_state = 4, .external_lex_state = 2}, [1193] = {.lex_state = 4, .external_lex_state = 2}, - [1194] = {.lex_state = 4, .external_lex_state = 2}, + [1194] = {.lex_state = 41, .external_lex_state = 4}, [1195] = {.lex_state = 4}, - [1196] = {.lex_state = 4}, - [1197] = {.lex_state = 4}, + [1196] = {.lex_state = 37, .external_lex_state = 2}, + [1197] = {.lex_state = 37, .external_lex_state = 3}, [1198] = {.lex_state = 4}, [1199] = {.lex_state = 4}, [1200] = {.lex_state = 4}, - [1201] = {.lex_state = 4}, + [1201] = {.lex_state = 91, .external_lex_state = 4}, [1202] = {.lex_state = 4}, [1203] = {.lex_state = 4}, [1204] = {.lex_state = 4}, [1205] = {.lex_state = 4}, [1206] = {.lex_state = 4}, - [1207] = {.lex_state = 4}, + [1207] = {.lex_state = 91, .external_lex_state = 4}, [1208] = {.lex_state = 4}, [1209] = {.lex_state = 4}, [1210] = {.lex_state = 4}, [1211] = {.lex_state = 4}, - [1212] = {.lex_state = 4}, + [1212] = {.lex_state = 91, .external_lex_state = 4}, [1213] = {.lex_state = 4}, [1214] = {.lex_state = 4}, [1215] = {.lex_state = 4}, [1216] = {.lex_state = 4}, - [1217] = {.lex_state = 90, .external_lex_state = 4}, + [1217] = {.lex_state = 4}, [1218] = {.lex_state = 4}, [1219] = {.lex_state = 4}, [1220] = {.lex_state = 4}, @@ -6755,882 +7040,887 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1223] = {.lex_state = 4}, [1224] = {.lex_state = 4}, [1225] = {.lex_state = 4}, - [1226] = {.lex_state = 4}, - [1227] = {.lex_state = 4}, + [1226] = {.lex_state = 91, .external_lex_state = 4}, + [1227] = {.lex_state = 91, .external_lex_state = 4}, [1228] = {.lex_state = 4}, [1229] = {.lex_state = 4}, - [1230] = {.lex_state = 37, .external_lex_state = 2}, - [1231] = {.lex_state = 90, .external_lex_state = 4}, - [1232] = {.lex_state = 90, .external_lex_state = 4}, - [1233] = {.lex_state = 90, .external_lex_state = 4}, - [1234] = {.lex_state = 90, .external_lex_state = 4}, - [1235] = {.lex_state = 90, .external_lex_state = 4}, + [1230] = {.lex_state = 4}, + [1231] = {.lex_state = 4}, + [1232] = {.lex_state = 4}, + [1233] = {.lex_state = 4}, + [1234] = {.lex_state = 4}, + [1235] = {.lex_state = 4}, [1236] = {.lex_state = 4}, - [1237] = {.lex_state = 4}, - [1238] = {.lex_state = 45}, + [1237] = {.lex_state = 91, .external_lex_state = 4}, + [1238] = {.lex_state = 91, .external_lex_state = 4}, [1239] = {.lex_state = 4}, - [1240] = {.lex_state = 4}, - [1241] = {.lex_state = 37, .external_lex_state = 4}, - [1242] = {.lex_state = 4}, + [1240] = {.lex_state = 91, .external_lex_state = 4}, + [1241] = {.lex_state = 91, .external_lex_state = 4}, + [1242] = {.lex_state = 37, .external_lex_state = 4}, [1243] = {.lex_state = 4}, [1244] = {.lex_state = 4}, [1245] = {.lex_state = 4}, - [1246] = {.lex_state = 90, .external_lex_state = 4}, + [1246] = {.lex_state = 4}, [1247] = {.lex_state = 4}, - [1248] = {.lex_state = 4}, - [1249] = {.lex_state = 90, .external_lex_state = 4}, + [1248] = {.lex_state = 91, .external_lex_state = 4}, + [1249] = {.lex_state = 4}, [1250] = {.lex_state = 4}, - [1251] = {.lex_state = 90, .external_lex_state = 4}, - [1252] = {.lex_state = 4}, - [1253] = {.lex_state = 90, .external_lex_state = 4}, + [1251] = {.lex_state = 91, .external_lex_state = 4}, + [1252] = {.lex_state = 45}, + [1253] = {.lex_state = 4}, [1254] = {.lex_state = 4}, - [1255] = {.lex_state = 90, .external_lex_state = 4}, - [1256] = {.lex_state = 37, .external_lex_state = 3}, - [1257] = {.lex_state = 90, .external_lex_state = 4}, + [1255] = {.lex_state = 4}, + [1256] = {.lex_state = 4}, + [1257] = {.lex_state = 4}, [1258] = {.lex_state = 4}, [1259] = {.lex_state = 4}, - [1260] = {.lex_state = 4}, + [1260] = {.lex_state = 91, .external_lex_state = 4}, [1261] = {.lex_state = 4}, [1262] = {.lex_state = 4}, - [1263] = {.lex_state = 90, .external_lex_state = 4}, + [1263] = {.lex_state = 4}, [1264] = {.lex_state = 4}, - [1265] = {.lex_state = 4}, - [1266] = {.lex_state = 90, .external_lex_state = 4}, - [1267] = {.lex_state = 37, .external_lex_state = 3}, - [1268] = {.lex_state = 37, .external_lex_state = 4}, - [1269] = {.lex_state = 37, .external_lex_state = 3}, - [1270] = {.lex_state = 37}, - [1271] = {.lex_state = 90, .external_lex_state = 4}, - [1272] = {.lex_state = 90, .external_lex_state = 4}, - [1273] = {.lex_state = 90, .external_lex_state = 4}, + [1265] = {.lex_state = 91, .external_lex_state = 4}, + [1266] = {.lex_state = 91, .external_lex_state = 4}, + [1267] = {.lex_state = 37}, + [1268] = {.lex_state = 37, .external_lex_state = 2}, + [1269] = {.lex_state = 91, .external_lex_state = 4}, + [1270] = {.lex_state = 37, .external_lex_state = 3}, + [1271] = {.lex_state = 4, .external_lex_state = 2}, + [1272] = {.lex_state = 37, .external_lex_state = 4}, + [1273] = {.lex_state = 4, .external_lex_state = 2}, [1274] = {.lex_state = 4, .external_lex_state = 2}, - [1275] = {.lex_state = 4, .external_lex_state = 2}, - [1276] = {.lex_state = 90, .external_lex_state = 4}, - [1277] = {.lex_state = 90, .external_lex_state = 4}, - [1278] = {.lex_state = 4, .external_lex_state = 2}, - [1279] = {.lex_state = 37, .external_lex_state = 2}, - [1280] = {.lex_state = 4, .external_lex_state = 2}, - [1281] = {.lex_state = 90, .external_lex_state = 4}, - [1282] = {.lex_state = 37, .external_lex_state = 2}, - [1283] = {.lex_state = 37, .external_lex_state = 3}, - [1284] = {.lex_state = 37, .external_lex_state = 2}, - [1285] = {.lex_state = 37, .external_lex_state = 3}, - [1286] = {.lex_state = 90, .external_lex_state = 4}, - [1287] = {.lex_state = 37, .external_lex_state = 3}, - [1288] = {.lex_state = 4}, + [1275] = {.lex_state = 91, .external_lex_state = 4}, + [1276] = {.lex_state = 91, .external_lex_state = 4}, + [1277] = {.lex_state = 37, .external_lex_state = 3}, + [1278] = {.lex_state = 91, .external_lex_state = 4}, + [1279] = {.lex_state = 4, .external_lex_state = 2}, + [1280] = {.lex_state = 91, .external_lex_state = 4}, + [1281] = {.lex_state = 91, .external_lex_state = 4}, + [1282] = {.lex_state = 37, .external_lex_state = 3}, + [1283] = {.lex_state = 37, .external_lex_state = 2}, + [1284] = {.lex_state = 91, .external_lex_state = 4}, + [1285] = {.lex_state = 37, .external_lex_state = 2}, + [1286] = {.lex_state = 37, .external_lex_state = 3}, + [1287] = {.lex_state = 4}, + [1288] = {.lex_state = 45}, [1289] = {.lex_state = 37, .external_lex_state = 4}, - [1290] = {.lex_state = 37, .external_lex_state = 3}, - [1291] = {.lex_state = 90, .external_lex_state = 4}, - [1292] = {.lex_state = 37, .external_lex_state = 3}, - [1293] = {.lex_state = 90, .external_lex_state = 4}, - [1294] = {.lex_state = 90, .external_lex_state = 4}, - [1295] = {.lex_state = 45}, - [1296] = {.lex_state = 90, .external_lex_state = 4}, - [1297] = {.lex_state = 37}, - [1298] = {.lex_state = 37, .external_lex_state = 4}, - [1299] = {.lex_state = 37, .external_lex_state = 2}, - [1300] = {.lex_state = 37, .external_lex_state = 2}, - [1301] = {.lex_state = 37}, - [1302] = {.lex_state = 37, .external_lex_state = 4}, - [1303] = {.lex_state = 37, .external_lex_state = 2}, + [1290] = {.lex_state = 91, .external_lex_state = 4}, + [1291] = {.lex_state = 91, .external_lex_state = 4}, + [1292] = {.lex_state = 91, .external_lex_state = 4}, + [1293] = {.lex_state = 37, .external_lex_state = 3}, + [1294] = {.lex_state = 37, .external_lex_state = 4}, + [1295] = {.lex_state = 37, .external_lex_state = 3}, + [1296] = {.lex_state = 37, .external_lex_state = 3}, + [1297] = {.lex_state = 91, .external_lex_state = 4}, + [1298] = {.lex_state = 37}, + [1299] = {.lex_state = 37, .external_lex_state = 3}, + [1300] = {.lex_state = 37, .external_lex_state = 3}, + [1301] = {.lex_state = 37, .external_lex_state = 3}, + [1302] = {.lex_state = 37, .external_lex_state = 3}, + [1303] = {.lex_state = 37, .external_lex_state = 3}, [1304] = {.lex_state = 37, .external_lex_state = 3}, - [1305] = {.lex_state = 39, .external_lex_state = 3}, - [1306] = {.lex_state = 39, .external_lex_state = 3}, - [1307] = {.lex_state = 37}, - [1308] = {.lex_state = 37, .external_lex_state = 3}, - [1309] = {.lex_state = 37, .external_lex_state = 3}, + [1305] = {.lex_state = 37, .external_lex_state = 3}, + [1306] = {.lex_state = 37, .external_lex_state = 3}, + [1307] = {.lex_state = 37, .external_lex_state = 3}, + [1308] = {.lex_state = 39, .external_lex_state = 3}, + [1309] = {.lex_state = 39, .external_lex_state = 3}, [1310] = {.lex_state = 37, .external_lex_state = 3}, - [1311] = {.lex_state = 37, .external_lex_state = 2}, + [1311] = {.lex_state = 37, .external_lex_state = 3}, [1312] = {.lex_state = 37, .external_lex_state = 3}, - [1313] = {.lex_state = 37, .external_lex_state = 3}, - [1314] = {.lex_state = 37, .external_lex_state = 3}, + [1313] = {.lex_state = 37, .external_lex_state = 2}, + [1314] = {.lex_state = 37}, [1315] = {.lex_state = 37, .external_lex_state = 3}, [1316] = {.lex_state = 37, .external_lex_state = 3}, - [1317] = {.lex_state = 37, .external_lex_state = 3}, + [1317] = {.lex_state = 37, .external_lex_state = 2}, [1318] = {.lex_state = 37, .external_lex_state = 3}, - [1319] = {.lex_state = 37, .external_lex_state = 3}, + [1319] = {.lex_state = 37, .external_lex_state = 4}, [1320] = {.lex_state = 37, .external_lex_state = 4}, [1321] = {.lex_state = 37, .external_lex_state = 3}, [1322] = {.lex_state = 37, .external_lex_state = 2}, [1323] = {.lex_state = 37, .external_lex_state = 3}, - [1324] = {.lex_state = 37, .external_lex_state = 4}, - [1325] = {.lex_state = 37, .external_lex_state = 4}, + [1324] = {.lex_state = 37}, + [1325] = {.lex_state = 37, .external_lex_state = 3}, [1326] = {.lex_state = 37, .external_lex_state = 3}, - [1327] = {.lex_state = 37, .external_lex_state = 3}, + [1327] = {.lex_state = 37, .external_lex_state = 2}, [1328] = {.lex_state = 37, .external_lex_state = 3}, [1329] = {.lex_state = 37, .external_lex_state = 4}, - [1330] = {.lex_state = 37, .external_lex_state = 3}, + [1330] = {.lex_state = 37, .external_lex_state = 2}, [1331] = {.lex_state = 37, .external_lex_state = 3}, - [1332] = {.lex_state = 37, .external_lex_state = 3}, - [1333] = {.lex_state = 37, .external_lex_state = 3}, + [1332] = {.lex_state = 37, .external_lex_state = 4}, + [1333] = {.lex_state = 37, .external_lex_state = 4}, [1334] = {.lex_state = 37, .external_lex_state = 2}, [1335] = {.lex_state = 37, .external_lex_state = 4}, [1336] = {.lex_state = 37}, - [1337] = {.lex_state = 37}, - [1338] = {.lex_state = 37, .external_lex_state = 2}, - [1339] = {.lex_state = 37, .external_lex_state = 2}, - [1340] = {.lex_state = 37, .external_lex_state = 3}, + [1337] = {.lex_state = 39, .external_lex_state = 4}, + [1338] = {.lex_state = 39, .external_lex_state = 4}, + [1339] = {.lex_state = 39, .external_lex_state = 2}, + [1340] = {.lex_state = 39, .external_lex_state = 2}, [1341] = {.lex_state = 37, .external_lex_state = 2}, - [1342] = {.lex_state = 37, .external_lex_state = 4}, - [1343] = {.lex_state = 37, .external_lex_state = 3}, - [1344] = {.lex_state = 37, .external_lex_state = 4}, + [1342] = {.lex_state = 37, .external_lex_state = 2}, + [1343] = {.lex_state = 37, .external_lex_state = 2}, + [1344] = {.lex_state = 37, .external_lex_state = 2}, [1345] = {.lex_state = 37, .external_lex_state = 2}, - [1346] = {.lex_state = 37}, - [1347] = {.lex_state = 37, .external_lex_state = 4}, - [1348] = {.lex_state = 37, .external_lex_state = 4}, - [1349] = {.lex_state = 37, .external_lex_state = 3}, - [1350] = {.lex_state = 37, .external_lex_state = 3}, - [1351] = {.lex_state = 37}, - [1352] = {.lex_state = 37, .external_lex_state = 4}, - [1353] = {.lex_state = 37, .external_lex_state = 3}, - [1354] = {.lex_state = 37, .external_lex_state = 3}, - [1355] = {.lex_state = 37, .external_lex_state = 3}, + [1346] = {.lex_state = 37, .external_lex_state = 2}, + [1347] = {.lex_state = 37, .external_lex_state = 2}, + [1348] = {.lex_state = 37, .external_lex_state = 2}, + [1349] = {.lex_state = 37, .external_lex_state = 2}, + [1350] = {.lex_state = 37, .external_lex_state = 2}, + [1351] = {.lex_state = 37, .external_lex_state = 2}, + [1352] = {.lex_state = 37, .external_lex_state = 2}, + [1353] = {.lex_state = 37, .external_lex_state = 4}, + [1354] = {.lex_state = 37, .external_lex_state = 4}, + [1355] = {.lex_state = 37, .external_lex_state = 4}, [1356] = {.lex_state = 37, .external_lex_state = 4}, - [1357] = {.lex_state = 37, .external_lex_state = 3}, + [1357] = {.lex_state = 37, .external_lex_state = 4}, [1358] = {.lex_state = 37, .external_lex_state = 4}, [1359] = {.lex_state = 37, .external_lex_state = 4}, [1360] = {.lex_state = 37, .external_lex_state = 4}, [1361] = {.lex_state = 37, .external_lex_state = 4}, [1362] = {.lex_state = 37, .external_lex_state = 4}, [1363] = {.lex_state = 37, .external_lex_state = 4}, - [1364] = {.lex_state = 37, .external_lex_state = 4}, - [1365] = {.lex_state = 37, .external_lex_state = 2}, + [1364] = {.lex_state = 37}, + [1365] = {.lex_state = 37}, [1366] = {.lex_state = 37, .external_lex_state = 3}, [1367] = {.lex_state = 37, .external_lex_state = 4}, - [1368] = {.lex_state = 37, .external_lex_state = 2}, - [1369] = {.lex_state = 37, .external_lex_state = 2}, - [1370] = {.lex_state = 37, .external_lex_state = 2}, - [1371] = {.lex_state = 37, .external_lex_state = 2}, - [1372] = {.lex_state = 37, .external_lex_state = 4}, - [1373] = {.lex_state = 37, .external_lex_state = 4}, + [1368] = {.lex_state = 37, .external_lex_state = 4}, + [1369] = {.lex_state = 37, .external_lex_state = 4}, + [1370] = {.lex_state = 37}, + [1371] = {.lex_state = 37, .external_lex_state = 3}, + [1372] = {.lex_state = 37, .external_lex_state = 3}, + [1373] = {.lex_state = 37, .external_lex_state = 3}, [1374] = {.lex_state = 37, .external_lex_state = 3}, - [1375] = {.lex_state = 37, .external_lex_state = 4}, + [1375] = {.lex_state = 37, .external_lex_state = 3}, [1376] = {.lex_state = 37, .external_lex_state = 3}, - [1377] = {.lex_state = 37, .external_lex_state = 2}, - [1378] = {.lex_state = 37, .external_lex_state = 4}, - [1379] = {.lex_state = 37}, + [1377] = {.lex_state = 37, .external_lex_state = 3}, + [1378] = {.lex_state = 37, .external_lex_state = 3}, + [1379] = {.lex_state = 37, .external_lex_state = 2}, [1380] = {.lex_state = 37, .external_lex_state = 3}, - [1381] = {.lex_state = 37, .external_lex_state = 4}, - [1382] = {.lex_state = 37, .external_lex_state = 4}, - [1383] = {.lex_state = 37, .external_lex_state = 2}, - [1384] = {.lex_state = 39, .external_lex_state = 4}, - [1385] = {.lex_state = 37, .external_lex_state = 2}, - [1386] = {.lex_state = 37, .external_lex_state = 2}, - [1387] = {.lex_state = 39, .external_lex_state = 4}, - [1388] = {.lex_state = 39, .external_lex_state = 2}, - [1389] = {.lex_state = 39, .external_lex_state = 2}, - [1390] = {.lex_state = 46, .external_lex_state = 4}, + [1381] = {.lex_state = 37, .external_lex_state = 3}, + [1382] = {.lex_state = 37}, + [1383] = {.lex_state = 37, .external_lex_state = 4}, + [1384] = {.lex_state = 37, .external_lex_state = 4}, + [1385] = {.lex_state = 37, .external_lex_state = 4}, + [1386] = {.lex_state = 37, .external_lex_state = 4}, + [1387] = {.lex_state = 37, .external_lex_state = 3}, + [1388] = {.lex_state = 37, .external_lex_state = 4}, + [1389] = {.lex_state = 37, .external_lex_state = 4}, + [1390] = {.lex_state = 37, .external_lex_state = 4}, [1391] = {.lex_state = 37}, - [1392] = {.lex_state = 45}, - [1393] = {.lex_state = 37}, - [1394] = {.lex_state = 37}, + [1392] = {.lex_state = 37}, + [1393] = {.lex_state = 39}, + [1394] = {.lex_state = 39}, [1395] = {.lex_state = 37}, - [1396] = {.lex_state = 37, .external_lex_state = 4}, - [1397] = {.lex_state = 39}, - [1398] = {.lex_state = 37}, - [1399] = {.lex_state = 37}, + [1396] = {.lex_state = 37}, + [1397] = {.lex_state = 37, .external_lex_state = 2}, + [1398] = {.lex_state = 47, .external_lex_state = 4}, + [1399] = {.lex_state = 37, .external_lex_state = 4}, [1400] = {.lex_state = 37}, - [1401] = {.lex_state = 37}, - [1402] = {.lex_state = 37, .external_lex_state = 2}, - [1403] = {.lex_state = 37}, - [1404] = {.lex_state = 37}, + [1401] = {.lex_state = 37, .external_lex_state = 3}, + [1402] = {.lex_state = 45}, + [1403] = {.lex_state = 37, .external_lex_state = 4}, + [1404] = {.lex_state = 37, .external_lex_state = 4}, [1405] = {.lex_state = 37, .external_lex_state = 4}, - [1406] = {.lex_state = 37, .external_lex_state = 3}, - [1407] = {.lex_state = 37, .external_lex_state = 2}, - [1408] = {.lex_state = 45}, - [1409] = {.lex_state = 39}, - [1410] = {.lex_state = 37, .external_lex_state = 2}, + [1406] = {.lex_state = 37, .external_lex_state = 4}, + [1407] = {.lex_state = 37, .external_lex_state = 4}, + [1408] = {.lex_state = 37, .external_lex_state = 4}, + [1409] = {.lex_state = 37, .external_lex_state = 4}, + [1410] = {.lex_state = 37}, [1411] = {.lex_state = 37}, - [1412] = {.lex_state = 46, .external_lex_state = 4}, - [1413] = {.lex_state = 37}, + [1412] = {.lex_state = 37}, + [1413] = {.lex_state = 37, .external_lex_state = 4}, [1414] = {.lex_state = 37, .external_lex_state = 4}, [1415] = {.lex_state = 37}, - [1416] = {.lex_state = 37, .external_lex_state = 4}, - [1417] = {.lex_state = 37, .external_lex_state = 4}, - [1418] = {.lex_state = 37, .external_lex_state = 4}, - [1419] = {.lex_state = 37, .external_lex_state = 4}, + [1416] = {.lex_state = 37}, + [1417] = {.lex_state = 37}, + [1418] = {.lex_state = 37}, + [1419] = {.lex_state = 37}, [1420] = {.lex_state = 37, .external_lex_state = 4}, - [1421] = {.lex_state = 37, .external_lex_state = 4}, - [1422] = {.lex_state = 37, .external_lex_state = 4}, - [1423] = {.lex_state = 37}, - [1424] = {.lex_state = 37, .external_lex_state = 4}, - [1425] = {.lex_state = 37, .external_lex_state = 4}, - [1426] = {.lex_state = 37}, + [1421] = {.lex_state = 47, .external_lex_state = 4}, + [1422] = {.lex_state = 37}, + [1423] = {.lex_state = 37, .external_lex_state = 2}, + [1424] = {.lex_state = 37, .external_lex_state = 2}, + [1425] = {.lex_state = 45}, + [1426] = {.lex_state = 37, .external_lex_state = 4}, [1427] = {.lex_state = 39, .external_lex_state = 3}, [1428] = {.lex_state = 39, .external_lex_state = 3}, - [1429] = {.lex_state = 37, .external_lex_state = 3}, - [1430] = {.lex_state = 37, .external_lex_state = 4}, - [1431] = {.lex_state = 46}, - [1432] = {.lex_state = 46}, - [1433] = {.lex_state = 37}, - [1434] = {.lex_state = 37, .external_lex_state = 2}, - [1435] = {.lex_state = 37}, - [1436] = {.lex_state = 96}, + [1429] = {.lex_state = 47}, + [1430] = {.lex_state = 47}, + [1431] = {.lex_state = 37, .external_lex_state = 3}, + [1432] = {.lex_state = 37}, + [1433] = {.lex_state = 37, .external_lex_state = 2}, + [1434] = {.lex_state = 37}, + [1435] = {.lex_state = 98}, + [1436] = {.lex_state = 37}, [1437] = {.lex_state = 37, .external_lex_state = 3}, - [1438] = {.lex_state = 37, .external_lex_state = 2}, - [1439] = {.lex_state = 37}, - [1440] = {.lex_state = 37, .external_lex_state = 2}, - [1441] = {.lex_state = 37, .external_lex_state = 3}, - [1442] = {.lex_state = 37, .external_lex_state = 3}, - [1443] = {.lex_state = 46, .external_lex_state = 4}, - [1444] = {.lex_state = 39, .external_lex_state = 4}, - [1445] = {.lex_state = 39, .external_lex_state = 4}, - [1446] = {.lex_state = 39, .external_lex_state = 2}, - [1447] = {.lex_state = 39, .external_lex_state = 2}, - [1448] = {.lex_state = 37, .external_lex_state = 4}, - [1449] = {.lex_state = 37, .external_lex_state = 3}, + [1438] = {.lex_state = 39, .external_lex_state = 4}, + [1439] = {.lex_state = 37, .external_lex_state = 2}, + [1440] = {.lex_state = 47, .external_lex_state = 4}, + [1441] = {.lex_state = 37, .external_lex_state = 2}, + [1442] = {.lex_state = 37, .external_lex_state = 2}, + [1443] = {.lex_state = 37, .external_lex_state = 3}, + [1444] = {.lex_state = 47, .external_lex_state = 4}, + [1445] = {.lex_state = 37, .external_lex_state = 3}, + [1446] = {.lex_state = 37, .external_lex_state = 2}, + [1447] = {.lex_state = 37, .external_lex_state = 3}, + [1448] = {.lex_state = 37, .external_lex_state = 3}, + [1449] = {.lex_state = 39, .external_lex_state = 4}, [1450] = {.lex_state = 37, .external_lex_state = 3}, [1451] = {.lex_state = 37, .external_lex_state = 3}, [1452] = {.lex_state = 37, .external_lex_state = 3}, - [1453] = {.lex_state = 37, .external_lex_state = 3}, - [1454] = {.lex_state = 37, .external_lex_state = 3}, - [1455] = {.lex_state = 37, .external_lex_state = 3}, + [1453] = {.lex_state = 37, .external_lex_state = 2}, + [1454] = {.lex_state = 47, .external_lex_state = 4}, + [1455] = {.lex_state = 37, .external_lex_state = 2}, [1456] = {.lex_state = 37, .external_lex_state = 3}, - [1457] = {.lex_state = 37, .external_lex_state = 2}, - [1458] = {.lex_state = 37, .external_lex_state = 3}, - [1459] = {.lex_state = 46, .external_lex_state = 4}, - [1460] = {.lex_state = 46, .external_lex_state = 4}, - [1461] = {.lex_state = 37, .external_lex_state = 2}, - [1462] = {.lex_state = 37, .external_lex_state = 2}, - [1463] = {.lex_state = 37, .external_lex_state = 2}, - [1464] = {.lex_state = 46, .external_lex_state = 4}, - [1465] = {.lex_state = 37, .external_lex_state = 4}, - [1466] = {.lex_state = 37, .external_lex_state = 2}, - [1467] = {.lex_state = 46}, - [1468] = {.lex_state = 46}, - [1469] = {.lex_state = 37}, - [1470] = {.lex_state = 37, .external_lex_state = 4}, - [1471] = {.lex_state = 48, .external_lex_state = 4}, - [1472] = {.lex_state = 46}, - [1473] = {.lex_state = 37, .external_lex_state = 4}, - [1474] = {.lex_state = 46, .external_lex_state = 4}, - [1475] = {.lex_state = 37, .external_lex_state = 4}, - [1476] = {.lex_state = 39}, + [1457] = {.lex_state = 37, .external_lex_state = 3}, + [1458] = {.lex_state = 39, .external_lex_state = 2}, + [1459] = {.lex_state = 39, .external_lex_state = 2}, + [1460] = {.lex_state = 37}, + [1461] = {.lex_state = 37, .external_lex_state = 3}, + [1462] = {.lex_state = 37, .external_lex_state = 3}, + [1463] = {.lex_state = 37, .external_lex_state = 4}, + [1464] = {.lex_state = 49, .external_lex_state = 4}, + [1465] = {.lex_state = 47, .external_lex_state = 4}, + [1466] = {.lex_state = 49, .external_lex_state = 4}, + [1467] = {.lex_state = 47}, + [1468] = {.lex_state = 47}, + [1469] = {.lex_state = 37, .external_lex_state = 2}, + [1470] = {.lex_state = 47}, + [1471] = {.lex_state = 37}, + [1472] = {.lex_state = 37}, + [1473] = {.lex_state = 37}, + [1474] = {.lex_state = 37}, + [1475] = {.lex_state = 37}, + [1476] = {.lex_state = 37, .external_lex_state = 4}, [1477] = {.lex_state = 37, .external_lex_state = 4}, - [1478] = {.lex_state = 46, .external_lex_state = 4}, + [1478] = {.lex_state = 47}, [1479] = {.lex_state = 37, .external_lex_state = 4}, - [1480] = {.lex_state = 39}, - [1481] = {.lex_state = 37, .external_lex_state = 4}, - [1482] = {.lex_state = 37, .external_lex_state = 4}, - [1483] = {.lex_state = 46, .external_lex_state = 4}, - [1484] = {.lex_state = 37}, + [1480] = {.lex_state = 37}, + [1481] = {.lex_state = 37, .external_lex_state = 2}, + [1482] = {.lex_state = 37, .external_lex_state = 2}, + [1483] = {.lex_state = 37, .external_lex_state = 4}, + [1484] = {.lex_state = 37, .external_lex_state = 4}, [1485] = {.lex_state = 37, .external_lex_state = 4}, - [1486] = {.lex_state = 46}, + [1486] = {.lex_state = 37, .external_lex_state = 4}, [1487] = {.lex_state = 37, .external_lex_state = 4}, - [1488] = {.lex_state = 48, .external_lex_state = 4}, - [1489] = {.lex_state = 37}, + [1488] = {.lex_state = 37, .external_lex_state = 4}, + [1489] = {.lex_state = 39}, [1490] = {.lex_state = 37, .external_lex_state = 4}, - [1491] = {.lex_state = 37, .external_lex_state = 2}, - [1492] = {.lex_state = 37}, - [1493] = {.lex_state = 37, .external_lex_state = 2}, - [1494] = {.lex_state = 37}, - [1495] = {.lex_state = 37}, - [1496] = {.lex_state = 37, .external_lex_state = 4}, - [1497] = {.lex_state = 46, .external_lex_state = 4}, - [1498] = {.lex_state = 46, .external_lex_state = 4}, - [1499] = {.lex_state = 46, .external_lex_state = 4}, - [1500] = {.lex_state = 46, .external_lex_state = 4}, - [1501] = {.lex_state = 46, .external_lex_state = 4}, - [1502] = {.lex_state = 46, .external_lex_state = 4}, - [1503] = {.lex_state = 37}, - [1504] = {.lex_state = 46, .external_lex_state = 4}, - [1505] = {.lex_state = 46}, - [1506] = {.lex_state = 48}, - [1507] = {.lex_state = 46, .external_lex_state = 4}, - [1508] = {.lex_state = 46, .external_lex_state = 4}, - [1509] = {.lex_state = 46}, - [1510] = {.lex_state = 96}, - [1511] = {.lex_state = 46, .external_lex_state = 4}, - [1512] = {.lex_state = 37}, - [1513] = {.lex_state = 48}, - [1514] = {.lex_state = 96}, - [1515] = {.lex_state = 46, .external_lex_state = 4}, - [1516] = {.lex_state = 46, .external_lex_state = 4}, - [1517] = {.lex_state = 46, .external_lex_state = 4}, - [1518] = {.lex_state = 96}, - [1519] = {.lex_state = 96}, - [1520] = {.lex_state = 46, .external_lex_state = 4}, - [1521] = {.lex_state = 46, .external_lex_state = 4}, - [1522] = {.lex_state = 96}, - [1523] = {.lex_state = 46, .external_lex_state = 4}, - [1524] = {.lex_state = 46, .external_lex_state = 4}, - [1525] = {.lex_state = 46}, - [1526] = {.lex_state = 46, .external_lex_state = 4}, - [1527] = {.lex_state = 46, .external_lex_state = 4}, - [1528] = {.lex_state = 46, .external_lex_state = 4}, - [1529] = {.lex_state = 46, .external_lex_state = 4}, - [1530] = {.lex_state = 46, .external_lex_state = 4}, - [1531] = {.lex_state = 46, .external_lex_state = 4}, - [1532] = {.lex_state = 46, .external_lex_state = 4}, - [1533] = {.lex_state = 46, .external_lex_state = 4}, - [1534] = {.lex_state = 46}, - [1535] = {.lex_state = 46, .external_lex_state = 4}, - [1536] = {.lex_state = 46, .external_lex_state = 4}, - [1537] = {.lex_state = 46, .external_lex_state = 4}, - [1538] = {.lex_state = 37}, - [1539] = {.lex_state = 46, .external_lex_state = 4}, - [1540] = {.lex_state = 46, .external_lex_state = 4}, - [1541] = {.lex_state = 46, .external_lex_state = 4}, - [1542] = {.lex_state = 46, .external_lex_state = 4}, - [1543] = {.lex_state = 46}, - [1544] = {.lex_state = 46}, - [1545] = {.lex_state = 46}, - [1546] = {.lex_state = 96}, - [1547] = {.lex_state = 37, .external_lex_state = 2}, - [1548] = {.lex_state = 46}, - [1549] = {.lex_state = 96}, - [1550] = {.lex_state = 96}, - [1551] = {.lex_state = 46}, - [1552] = {.lex_state = 46}, - [1553] = {.lex_state = 46}, - [1554] = {.lex_state = 37, .external_lex_state = 2}, - [1555] = {.lex_state = 96}, + [1491] = {.lex_state = 47, .external_lex_state = 4}, + [1492] = {.lex_state = 37, .external_lex_state = 4}, + [1493] = {.lex_state = 37, .external_lex_state = 4}, + [1494] = {.lex_state = 47, .external_lex_state = 4}, + [1495] = {.lex_state = 39}, + [1496] = {.lex_state = 47, .external_lex_state = 4}, + [1497] = {.lex_state = 47, .external_lex_state = 4}, + [1498] = {.lex_state = 47, .external_lex_state = 4}, + [1499] = {.lex_state = 47}, + [1500] = {.lex_state = 47, .external_lex_state = 4}, + [1501] = {.lex_state = 47, .external_lex_state = 4}, + [1502] = {.lex_state = 47, .external_lex_state = 4}, + [1503] = {.lex_state = 47, .external_lex_state = 4}, + [1504] = {.lex_state = 47, .external_lex_state = 4}, + [1505] = {.lex_state = 47, .external_lex_state = 4}, + [1506] = {.lex_state = 98}, + [1507] = {.lex_state = 47, .external_lex_state = 4}, + [1508] = {.lex_state = 47, .external_lex_state = 4}, + [1509] = {.lex_state = 37}, + [1510] = {.lex_state = 47, .external_lex_state = 4}, + [1511] = {.lex_state = 47, .external_lex_state = 4}, + [1512] = {.lex_state = 47, .external_lex_state = 4}, + [1513] = {.lex_state = 47, .external_lex_state = 4}, + [1514] = {.lex_state = 47, .external_lex_state = 4}, + [1515] = {.lex_state = 47, .external_lex_state = 4}, + [1516] = {.lex_state = 47, .external_lex_state = 4}, + [1517] = {.lex_state = 49}, + [1518] = {.lex_state = 47, .external_lex_state = 4}, + [1519] = {.lex_state = 47}, + [1520] = {.lex_state = 47, .external_lex_state = 4}, + [1521] = {.lex_state = 47, .external_lex_state = 4}, + [1522] = {.lex_state = 47, .external_lex_state = 4}, + [1523] = {.lex_state = 47}, + [1524] = {.lex_state = 49}, + [1525] = {.lex_state = 47, .external_lex_state = 4}, + [1526] = {.lex_state = 47, .external_lex_state = 4}, + [1527] = {.lex_state = 47, .external_lex_state = 4}, + [1528] = {.lex_state = 47, .external_lex_state = 4}, + [1529] = {.lex_state = 37}, + [1530] = {.lex_state = 47, .external_lex_state = 4}, + [1531] = {.lex_state = 47, .external_lex_state = 4}, + [1532] = {.lex_state = 47, .external_lex_state = 4}, + [1533] = {.lex_state = 47, .external_lex_state = 4}, + [1534] = {.lex_state = 98}, + [1535] = {.lex_state = 37}, + [1536] = {.lex_state = 47, .external_lex_state = 4}, + [1537] = {.lex_state = 98}, + [1538] = {.lex_state = 47, .external_lex_state = 4}, + [1539] = {.lex_state = 47, .external_lex_state = 4}, + [1540] = {.lex_state = 98}, + [1541] = {.lex_state = 98}, + [1542] = {.lex_state = 47}, + [1543] = {.lex_state = 47}, + [1544] = {.lex_state = 37, .external_lex_state = 2}, + [1545] = {.lex_state = 98}, + [1546] = {.lex_state = 47}, + [1547] = {.lex_state = 98}, + [1548] = {.lex_state = 47}, + [1549] = {.lex_state = 47}, + [1550] = {.lex_state = 37, .external_lex_state = 2}, + [1551] = {.lex_state = 47}, + [1552] = {.lex_state = 37, .external_lex_state = 2}, + [1553] = {.lex_state = 98}, + [1554] = {.lex_state = 47}, + [1555] = {.lex_state = 98}, [1556] = {.lex_state = 37, .external_lex_state = 2}, - [1557] = {.lex_state = 96}, - [1558] = {.lex_state = 96}, - [1559] = {.lex_state = 46}, - [1560] = {.lex_state = 37, .external_lex_state = 2}, - [1561] = {.lex_state = 46}, - [1562] = {.lex_state = 46}, - [1563] = {.lex_state = 46}, - [1564] = {.lex_state = 46}, - [1565] = {.lex_state = 37, .external_lex_state = 2}, - [1566] = {.lex_state = 46}, + [1557] = {.lex_state = 47}, + [1558] = {.lex_state = 98}, + [1559] = {.lex_state = 47}, + [1560] = {.lex_state = 47}, + [1561] = {.lex_state = 47}, + [1562] = {.lex_state = 37, .external_lex_state = 2}, + [1563] = {.lex_state = 47}, + [1564] = {.lex_state = 47}, + [1565] = {.lex_state = 47}, + [1566] = {.lex_state = 98}, [1567] = {.lex_state = 37}, [1568] = {.lex_state = 37}, [1569] = {.lex_state = 37}, [1570] = {.lex_state = 37}, [1571] = {.lex_state = 37}, - [1572] = {.lex_state = 46}, - [1573] = {.lex_state = 46}, - [1574] = {.lex_state = 46}, - [1575] = {.lex_state = 46}, - [1576] = {.lex_state = 46}, - [1577] = {.lex_state = 46}, - [1578] = {.lex_state = 46}, - [1579] = {.lex_state = 46}, - [1580] = {.lex_state = 46}, - [1581] = {.lex_state = 46}, - [1582] = {.lex_state = 46}, - [1583] = {.lex_state = 46}, - [1584] = {.lex_state = 46}, - [1585] = {.lex_state = 46}, - [1586] = {.lex_state = 46}, - [1587] = {.lex_state = 46}, - [1588] = {.lex_state = 46}, - [1589] = {.lex_state = 46}, - [1590] = {.lex_state = 46}, - [1591] = {.lex_state = 46}, - [1592] = {.lex_state = 46}, - [1593] = {.lex_state = 46}, - [1594] = {.lex_state = 46}, - [1595] = {.lex_state = 46}, - [1596] = {.lex_state = 46}, - [1597] = {.lex_state = 46}, - [1598] = {.lex_state = 46}, - [1599] = {.lex_state = 46}, - [1600] = {.lex_state = 46}, - [1601] = {.lex_state = 46}, - [1602] = {.lex_state = 46}, - [1603] = {.lex_state = 46}, - [1604] = {.lex_state = 46}, - [1605] = {.lex_state = 46}, - [1606] = {.lex_state = 46}, - [1607] = {.lex_state = 46}, - [1608] = {.lex_state = 46}, - [1609] = {.lex_state = 46}, - [1610] = {.lex_state = 46}, - [1611] = {.lex_state = 46}, - [1612] = {.lex_state = 46}, - [1613] = {.lex_state = 46}, - [1614] = {.lex_state = 46}, - [1615] = {.lex_state = 46}, - [1616] = {.lex_state = 46}, - [1617] = {.lex_state = 46}, - [1618] = {.lex_state = 46}, - [1619] = {.lex_state = 46}, - [1620] = {.lex_state = 46}, - [1621] = {.lex_state = 46}, - [1622] = {.lex_state = 46}, - [1623] = {.lex_state = 46}, - [1624] = {.lex_state = 46}, - [1625] = {.lex_state = 46}, - [1626] = {.lex_state = 46}, - [1627] = {.lex_state = 46}, - [1628] = {.lex_state = 46}, - [1629] = {.lex_state = 46}, - [1630] = {.lex_state = 46}, - [1631] = {.lex_state = 46}, - [1632] = {.lex_state = 46}, - [1633] = {.lex_state = 46}, - [1634] = {.lex_state = 46}, - [1635] = {.lex_state = 46}, - [1636] = {.lex_state = 46}, - [1637] = {.lex_state = 46}, - [1638] = {.lex_state = 46}, - [1639] = {.lex_state = 46}, - [1640] = {.lex_state = 46}, - [1641] = {.lex_state = 46}, - [1642] = {.lex_state = 46}, - [1643] = {.lex_state = 46}, - [1644] = {.lex_state = 46}, - [1645] = {.lex_state = 46}, - [1646] = {.lex_state = 46}, - [1647] = {.lex_state = 46}, - [1648] = {.lex_state = 46}, - [1649] = {.lex_state = 46}, - [1650] = {.lex_state = 46}, - [1651] = {.lex_state = 46}, - [1652] = {.lex_state = 46}, - [1653] = {.lex_state = 46}, - [1654] = {.lex_state = 46}, - [1655] = {.lex_state = 46}, - [1656] = {.lex_state = 46}, - [1657] = {.lex_state = 46}, - [1658] = {.lex_state = 46}, - [1659] = {.lex_state = 46}, - [1660] = {.lex_state = 46}, - [1661] = {.lex_state = 46}, - [1662] = {.lex_state = 46}, - [1663] = {.lex_state = 46}, - [1664] = {.lex_state = 46}, - [1665] = {.lex_state = 46}, - [1666] = {.lex_state = 46}, - [1667] = {.lex_state = 46}, - [1668] = {.lex_state = 46}, - [1669] = {.lex_state = 46}, - [1670] = {.lex_state = 46}, - [1671] = {.lex_state = 46}, - [1672] = {.lex_state = 46}, - [1673] = {.lex_state = 46}, - [1674] = {.lex_state = 46}, - [1675] = {.lex_state = 46}, - [1676] = {.lex_state = 46}, - [1677] = {.lex_state = 46}, - [1678] = {.lex_state = 46}, - [1679] = {.lex_state = 46}, - [1680] = {.lex_state = 46}, - [1681] = {.lex_state = 46}, - [1682] = {.lex_state = 46}, - [1683] = {.lex_state = 46}, - [1684] = {.lex_state = 46}, - [1685] = {.lex_state = 46}, - [1686] = {.lex_state = 46}, - [1687] = {.lex_state = 46}, - [1688] = {.lex_state = 46}, - [1689] = {.lex_state = 46}, - [1690] = {.lex_state = 46}, - [1691] = {.lex_state = 46}, - [1692] = {.lex_state = 46}, - [1693] = {.lex_state = 46}, + [1572] = {.lex_state = 47}, + [1573] = {.lex_state = 47}, + [1574] = {.lex_state = 47}, + [1575] = {.lex_state = 47}, + [1576] = {.lex_state = 47}, + [1577] = {.lex_state = 47}, + [1578] = {.lex_state = 47}, + [1579] = {.lex_state = 47}, + [1580] = {.lex_state = 47}, + [1581] = {.lex_state = 47}, + [1582] = {.lex_state = 47}, + [1583] = {.lex_state = 47}, + [1584] = {.lex_state = 47}, + [1585] = {.lex_state = 47}, + [1586] = {.lex_state = 47}, + [1587] = {.lex_state = 47}, + [1588] = {.lex_state = 47}, + [1589] = {.lex_state = 47}, + [1590] = {.lex_state = 47}, + [1591] = {.lex_state = 47}, + [1592] = {.lex_state = 47}, + [1593] = {.lex_state = 47}, + [1594] = {.lex_state = 47}, + [1595] = {.lex_state = 47}, + [1596] = {.lex_state = 47}, + [1597] = {.lex_state = 47}, + [1598] = {.lex_state = 47}, + [1599] = {.lex_state = 47}, + [1600] = {.lex_state = 47}, + [1601] = {.lex_state = 47}, + [1602] = {.lex_state = 47}, + [1603] = {.lex_state = 47}, + [1604] = {.lex_state = 47}, + [1605] = {.lex_state = 47}, + [1606] = {.lex_state = 47}, + [1607] = {.lex_state = 47}, + [1608] = {.lex_state = 47}, + [1609] = {.lex_state = 47}, + [1610] = {.lex_state = 47}, + [1611] = {.lex_state = 47}, + [1612] = {.lex_state = 47}, + [1613] = {.lex_state = 47}, + [1614] = {.lex_state = 47}, + [1615] = {.lex_state = 47}, + [1616] = {.lex_state = 47}, + [1617] = {.lex_state = 47}, + [1618] = {.lex_state = 47}, + [1619] = {.lex_state = 47}, + [1620] = {.lex_state = 47}, + [1621] = {.lex_state = 47}, + [1622] = {.lex_state = 47}, + [1623] = {.lex_state = 47}, + [1624] = {.lex_state = 47}, + [1625] = {.lex_state = 47}, + [1626] = {.lex_state = 47}, + [1627] = {.lex_state = 47}, + [1628] = {.lex_state = 47}, + [1629] = {.lex_state = 47}, + [1630] = {.lex_state = 47}, + [1631] = {.lex_state = 47}, + [1632] = {.lex_state = 47}, + [1633] = {.lex_state = 47}, + [1634] = {.lex_state = 47}, + [1635] = {.lex_state = 47}, + [1636] = {.lex_state = 47}, + [1637] = {.lex_state = 47}, + [1638] = {.lex_state = 47}, + [1639] = {.lex_state = 47}, + [1640] = {.lex_state = 47}, + [1641] = {.lex_state = 47}, + [1642] = {.lex_state = 47}, + [1643] = {.lex_state = 47}, + [1644] = {.lex_state = 47}, + [1645] = {.lex_state = 47}, + [1646] = {.lex_state = 47}, + [1647] = {.lex_state = 47}, + [1648] = {.lex_state = 47}, + [1649] = {.lex_state = 47}, + [1650] = {.lex_state = 47}, + [1651] = {.lex_state = 47}, + [1652] = {.lex_state = 47}, + [1653] = {.lex_state = 47}, + [1654] = {.lex_state = 47}, + [1655] = {.lex_state = 47}, + [1656] = {.lex_state = 47}, + [1657] = {.lex_state = 47}, + [1658] = {.lex_state = 47}, + [1659] = {.lex_state = 47}, + [1660] = {.lex_state = 47}, + [1661] = {.lex_state = 47}, + [1662] = {.lex_state = 47}, + [1663] = {.lex_state = 47}, + [1664] = {.lex_state = 47}, + [1665] = {.lex_state = 47}, + [1666] = {.lex_state = 47}, + [1667] = {.lex_state = 47}, + [1668] = {.lex_state = 47}, + [1669] = {.lex_state = 47}, + [1670] = {.lex_state = 47}, + [1671] = {.lex_state = 47}, + [1672] = {.lex_state = 47}, + [1673] = {.lex_state = 47}, + [1674] = {.lex_state = 47}, + [1675] = {.lex_state = 47}, + [1676] = {.lex_state = 47}, + [1677] = {.lex_state = 47}, + [1678] = {.lex_state = 47}, + [1679] = {.lex_state = 47}, + [1680] = {.lex_state = 47}, + [1681] = {.lex_state = 47}, + [1682] = {.lex_state = 47}, + [1683] = {.lex_state = 47}, + [1684] = {.lex_state = 47}, + [1685] = {.lex_state = 47}, + [1686] = {.lex_state = 47}, + [1687] = {.lex_state = 47}, + [1688] = {.lex_state = 47}, + [1689] = {.lex_state = 47}, + [1690] = {.lex_state = 47}, + [1691] = {.lex_state = 47}, + [1692] = {.lex_state = 47}, + [1693] = {.lex_state = 47}, [1694] = {.lex_state = 45}, - [1695] = {.lex_state = 4, .external_lex_state = 2}, - [1696] = {.lex_state = 4}, - [1697] = {.lex_state = 4, .external_lex_state = 2}, - [1698] = {.lex_state = 0}, - [1699] = {.lex_state = 4}, - [1700] = {.lex_state = 4, .external_lex_state = 2}, + [1695] = {.lex_state = 0}, + [1696] = {.lex_state = 4, .external_lex_state = 2}, + [1697] = {.lex_state = 4}, + [1698] = {.lex_state = 4, .external_lex_state = 2}, + [1699] = {.lex_state = 0}, + [1700] = {.lex_state = 0}, [1701] = {.lex_state = 4, .external_lex_state = 2}, - [1702] = {.lex_state = 0}, - [1703] = {.lex_state = 0}, - [1704] = {.lex_state = 4, .external_lex_state = 2}, - [1705] = {.lex_state = 4, .external_lex_state = 2}, + [1702] = {.lex_state = 4, .external_lex_state = 2}, + [1703] = {.lex_state = 4, .external_lex_state = 2}, + [1704] = {.lex_state = 98}, + [1705] = {.lex_state = 0}, [1706] = {.lex_state = 0}, - [1707] = {.lex_state = 96}, - [1708] = {.lex_state = 0}, - [1709] = {.lex_state = 53}, - [1710] = {.lex_state = 53}, - [1711] = {.lex_state = 53}, - [1712] = {.lex_state = 53}, - [1713] = {.lex_state = 53}, - [1714] = {.lex_state = 53}, - [1715] = {.lex_state = 53}, - [1716] = {.lex_state = 53}, - [1717] = {.lex_state = 4}, - [1718] = {.lex_state = 53}, - [1719] = {.lex_state = 53}, - [1720] = {.lex_state = 53}, - [1721] = {.lex_state = 53}, - [1722] = {.lex_state = 53}, - [1723] = {.lex_state = 4}, - [1724] = {.lex_state = 53}, - [1725] = {.lex_state = 53}, - [1726] = {.lex_state = 53}, - [1727] = {.lex_state = 53}, - [1728] = {.lex_state = 53}, - [1729] = {.lex_state = 53}, - [1730] = {.lex_state = 53}, - [1731] = {.lex_state = 53}, - [1732] = {.lex_state = 53}, - [1733] = {.lex_state = 53}, - [1734] = {.lex_state = 53}, - [1735] = {.lex_state = 4}, - [1736] = {.lex_state = 4}, - [1737] = {.lex_state = 53}, - [1738] = {.lex_state = 0}, - [1739] = {.lex_state = 0}, - [1740] = {.lex_state = 96}, + [1707] = {.lex_state = 4}, + [1708] = {.lex_state = 4, .external_lex_state = 2}, + [1709] = {.lex_state = 0}, + [1710] = {.lex_state = 54}, + [1711] = {.lex_state = 4}, + [1712] = {.lex_state = 54}, + [1713] = {.lex_state = 54}, + [1714] = {.lex_state = 54}, + [1715] = {.lex_state = 54}, + [1716] = {.lex_state = 54}, + [1717] = {.lex_state = 54}, + [1718] = {.lex_state = 54}, + [1719] = {.lex_state = 54}, + [1720] = {.lex_state = 4}, + [1721] = {.lex_state = 54}, + [1722] = {.lex_state = 4}, + [1723] = {.lex_state = 54}, + [1724] = {.lex_state = 54}, + [1725] = {.lex_state = 54}, + [1726] = {.lex_state = 54}, + [1727] = {.lex_state = 4}, + [1728] = {.lex_state = 54}, + [1729] = {.lex_state = 54}, + [1730] = {.lex_state = 54}, + [1731] = {.lex_state = 54}, + [1732] = {.lex_state = 54}, + [1733] = {.lex_state = 54}, + [1734] = {.lex_state = 54}, + [1735] = {.lex_state = 54}, + [1736] = {.lex_state = 54}, + [1737] = {.lex_state = 54}, + [1738] = {.lex_state = 54}, + [1739] = {.lex_state = 98}, + [1740] = {.lex_state = 98}, [1741] = {.lex_state = 0}, - [1742] = {.lex_state = 0}, - [1743] = {.lex_state = 96}, - [1744] = {.lex_state = 96}, + [1742] = {.lex_state = 98}, + [1743] = {.lex_state = 98}, + [1744] = {.lex_state = 98}, [1745] = {.lex_state = 0}, - [1746] = {.lex_state = 0}, - [1747] = {.lex_state = 0}, - [1748] = {.lex_state = 96}, - [1749] = {.lex_state = 96}, - [1750] = {.lex_state = 0}, + [1746] = {.lex_state = 98}, + [1747] = {.lex_state = 98}, + [1748] = {.lex_state = 98}, + [1749] = {.lex_state = 0}, + [1750] = {.lex_state = 98}, [1751] = {.lex_state = 0}, - [1752] = {.lex_state = 96}, - [1753] = {.lex_state = 0}, - [1754] = {.lex_state = 96}, + [1752] = {.lex_state = 0}, + [1753] = {.lex_state = 98}, + [1754] = {.lex_state = 0}, [1755] = {.lex_state = 0}, - [1756] = {.lex_state = 0}, - [1757] = {.lex_state = 53}, - [1758] = {.lex_state = 96}, - [1759] = {.lex_state = 96}, - [1760] = {.lex_state = 0}, - [1761] = {.lex_state = 0}, - [1762] = {.lex_state = 96}, - [1763] = {.lex_state = 0}, - [1764] = {.lex_state = 0}, - [1765] = {.lex_state = 96}, - [1766] = {.lex_state = 96}, - [1767] = {.lex_state = 0}, - [1768] = {.lex_state = 0}, - [1769] = {.lex_state = 96}, + [1756] = {.lex_state = 60}, + [1757] = {.lex_state = 98}, + [1758] = {.lex_state = 0}, + [1759] = {.lex_state = 0}, + [1760] = {.lex_state = 98}, + [1761] = {.lex_state = 54}, + [1762] = {.lex_state = 98}, + [1763] = {.lex_state = 98}, + [1764] = {.lex_state = 98}, + [1765] = {.lex_state = 0}, + [1766] = {.lex_state = 0}, + [1767] = {.lex_state = 98}, + [1768] = {.lex_state = 98}, + [1769] = {.lex_state = 0}, [1770] = {.lex_state = 0}, [1771] = {.lex_state = 0}, - [1772] = {.lex_state = 96}, - [1773] = {.lex_state = 0}, - [1774] = {.lex_state = 53}, - [1775] = {.lex_state = 96}, - [1776] = {.lex_state = 96}, + [1772] = {.lex_state = 0}, + [1773] = {.lex_state = 98}, + [1774] = {.lex_state = 0}, + [1775] = {.lex_state = 98}, + [1776] = {.lex_state = 0}, [1777] = {.lex_state = 0}, - [1778] = {.lex_state = 96}, + [1778] = {.lex_state = 0}, [1779] = {.lex_state = 0}, - [1780] = {.lex_state = 96}, - [1781] = {.lex_state = 96}, - [1782] = {.lex_state = 96}, - [1783] = {.lex_state = 96}, - [1784] = {.lex_state = 96}, + [1780] = {.lex_state = 0}, + [1781] = {.lex_state = 98}, + [1782] = {.lex_state = 98}, + [1783] = {.lex_state = 98}, + [1784] = {.lex_state = 0}, [1785] = {.lex_state = 0}, - [1786] = {.lex_state = 96}, - [1787] = {.lex_state = 96}, - [1788] = {.lex_state = 4, .external_lex_state = 2}, - [1789] = {.lex_state = 4, .external_lex_state = 2}, + [1786] = {.lex_state = 98}, + [1787] = {.lex_state = 54}, + [1788] = {.lex_state = 60}, + [1789] = {.lex_state = 98}, [1790] = {.lex_state = 0}, [1791] = {.lex_state = 0}, [1792] = {.lex_state = 0}, - [1793] = {.lex_state = 0}, - [1794] = {.lex_state = 0}, + [1793] = {.lex_state = 4, .external_lex_state = 2}, + [1794] = {.lex_state = 4, .external_lex_state = 2}, [1795] = {.lex_state = 0}, [1796] = {.lex_state = 0}, [1797] = {.lex_state = 0}, - [1798] = {.lex_state = 0}, - [1799] = {.lex_state = 0}, + [1798] = {.lex_state = 4, .external_lex_state = 2}, + [1799] = {.lex_state = 4, .external_lex_state = 2}, [1800] = {.lex_state = 0}, [1801] = {.lex_state = 0}, [1802] = {.lex_state = 0}, - [1803] = {.lex_state = 4, .external_lex_state = 2}, + [1803] = {.lex_state = 0}, [1804] = {.lex_state = 0}, - [1805] = {.lex_state = 4, .external_lex_state = 2}, + [1805] = {.lex_state = 0}, [1806] = {.lex_state = 0}, [1807] = {.lex_state = 0}, [1808] = {.lex_state = 0}, [1809] = {.lex_state = 0}, - [1810] = {.lex_state = 0}, + [1810] = {.lex_state = 54}, [1811] = {.lex_state = 0}, - [1812] = {.lex_state = 50}, - [1813] = {.lex_state = 50}, - [1814] = {.lex_state = 50}, - [1815] = {.lex_state = 4}, - [1816] = {.lex_state = 50}, - [1817] = {.lex_state = 50}, - [1818] = {.lex_state = 50}, - [1819] = {.lex_state = 50}, + [1812] = {.lex_state = 0}, + [1813] = {.lex_state = 51}, + [1814] = {.lex_state = 0}, + [1815] = {.lex_state = 0}, + [1816] = {.lex_state = 0}, + [1817] = {.lex_state = 4}, + [1818] = {.lex_state = 51}, + [1819] = {.lex_state = 51}, [1820] = {.lex_state = 0}, - [1821] = {.lex_state = 0}, - [1822] = {.lex_state = 50}, - [1823] = {.lex_state = 4}, - [1824] = {.lex_state = 50}, - [1825] = {.lex_state = 50}, - [1826] = {.lex_state = 50}, - [1827] = {.lex_state = 50}, - [1828] = {.lex_state = 50}, - [1829] = {.lex_state = 4}, - [1830] = {.lex_state = 50}, - [1831] = {.lex_state = 50}, + [1821] = {.lex_state = 51}, + [1822] = {.lex_state = 51}, + [1823] = {.lex_state = 0}, + [1824] = {.lex_state = 51}, + [1825] = {.lex_state = 0}, + [1826] = {.lex_state = 51}, + [1827] = {.lex_state = 51}, + [1828] = {.lex_state = 51}, + [1829] = {.lex_state = 51}, + [1830] = {.lex_state = 60}, + [1831] = {.lex_state = 51}, [1832] = {.lex_state = 0}, - [1833] = {.lex_state = 50}, - [1834] = {.lex_state = 4}, - [1835] = {.lex_state = 50}, - [1836] = {.lex_state = 59}, - [1837] = {.lex_state = 50}, - [1838] = {.lex_state = 50}, - [1839] = {.lex_state = 59}, - [1840] = {.lex_state = 50}, - [1841] = {.lex_state = 53}, - [1842] = {.lex_state = 50}, - [1843] = {.lex_state = 0}, - [1844] = {.lex_state = 0}, - [1845] = {.lex_state = 0}, - [1846] = {.lex_state = 96}, - [1847] = {.lex_state = 0}, - [1848] = {.lex_state = 0}, - [1849] = {.lex_state = 96}, - [1850] = {.lex_state = 96}, - [1851] = {.lex_state = 96}, - [1852] = {.lex_state = 96}, + [1833] = {.lex_state = 0}, + [1834] = {.lex_state = 51}, + [1835] = {.lex_state = 51}, + [1836] = {.lex_state = 54}, + [1837] = {.lex_state = 4}, + [1838] = {.lex_state = 51}, + [1839] = {.lex_state = 51}, + [1840] = {.lex_state = 51}, + [1841] = {.lex_state = 51}, + [1842] = {.lex_state = 51}, + [1843] = {.lex_state = 51}, + [1844] = {.lex_state = 4}, + [1845] = {.lex_state = 51}, + [1846] = {.lex_state = 51}, + [1847] = {.lex_state = 4}, + [1848] = {.lex_state = 98}, + [1849] = {.lex_state = 98}, + [1850] = {.lex_state = 0}, + [1851] = {.lex_state = 0}, + [1852] = {.lex_state = 98}, [1853] = {.lex_state = 0}, - [1854] = {.lex_state = 53}, + [1854] = {.lex_state = 98}, [1855] = {.lex_state = 0}, - [1856] = {.lex_state = 0}, + [1856] = {.lex_state = 98}, [1857] = {.lex_state = 0}, - [1858] = {.lex_state = 96}, - [1859] = {.lex_state = 0}, + [1858] = {.lex_state = 0}, + [1859] = {.lex_state = 98}, [1860] = {.lex_state = 0}, - [1861] = {.lex_state = 96}, + [1861] = {.lex_state = 0}, [1862] = {.lex_state = 0}, - [1863] = {.lex_state = 0}, + [1863] = {.lex_state = 41}, [1864] = {.lex_state = 0}, - [1865] = {.lex_state = 96}, - [1866] = {.lex_state = 0}, - [1867] = {.lex_state = 0}, + [1865] = {.lex_state = 0}, + [1866] = {.lex_state = 41}, + [1867] = {.lex_state = 57}, [1868] = {.lex_state = 0}, - [1869] = {.lex_state = 96}, + [1869] = {.lex_state = 98}, [1870] = {.lex_state = 0}, - [1871] = {.lex_state = 96}, - [1872] = {.lex_state = 0}, + [1871] = {.lex_state = 0}, + [1872] = {.lex_state = 41}, [1873] = {.lex_state = 0}, - [1874] = {.lex_state = 96}, - [1875] = {.lex_state = 0}, + [1874] = {.lex_state = 98}, + [1875] = {.lex_state = 41}, [1876] = {.lex_state = 0}, [1877] = {.lex_state = 0}, - [1878] = {.lex_state = 0}, + [1878] = {.lex_state = 41}, [1879] = {.lex_state = 0}, - [1880] = {.lex_state = 0}, - [1881] = {.lex_state = 0}, - [1882] = {.lex_state = 0}, - [1883] = {.lex_state = 0}, + [1880] = {.lex_state = 98}, + [1881] = {.lex_state = 41}, + [1882] = {.lex_state = 41}, + [1883] = {.lex_state = 98}, [1884] = {.lex_state = 0}, [1885] = {.lex_state = 0}, - [1886] = {.lex_state = 0}, + [1886] = {.lex_state = 41}, [1887] = {.lex_state = 0}, - [1888] = {.lex_state = 56}, - [1889] = {.lex_state = 0}, + [1888] = {.lex_state = 0}, + [1889] = {.lex_state = 41}, [1890] = {.lex_state = 0}, [1891] = {.lex_state = 0}, - [1892] = {.lex_state = 0}, - [1893] = {.lex_state = 0}, + [1892] = {.lex_state = 41}, + [1893] = {.lex_state = 98}, [1894] = {.lex_state = 0}, - [1895] = {.lex_state = 96}, + [1895] = {.lex_state = 41}, [1896] = {.lex_state = 0}, [1897] = {.lex_state = 0}, - [1898] = {.lex_state = 0}, + [1898] = {.lex_state = 41}, [1899] = {.lex_state = 0}, [1900] = {.lex_state = 0}, - [1901] = {.lex_state = 0}, - [1902] = {.lex_state = 0}, - [1903] = {.lex_state = 56}, - [1904] = {.lex_state = 96}, - [1905] = {.lex_state = 53}, - [1906] = {.lex_state = 0}, - [1907] = {.lex_state = 0, .external_lex_state = 5}, - [1908] = {.lex_state = 96}, + [1901] = {.lex_state = 41}, + [1902] = {.lex_state = 98}, + [1903] = {.lex_state = 41}, + [1904] = {.lex_state = 98}, + [1905] = {.lex_state = 57}, + [1906] = {.lex_state = 41}, + [1907] = {.lex_state = 54}, + [1908] = {.lex_state = 0}, [1909] = {.lex_state = 0}, [1910] = {.lex_state = 0}, - [1911] = {.lex_state = 0, .external_lex_state = 5}, + [1911] = {.lex_state = 0}, [1912] = {.lex_state = 0}, - [1913] = {.lex_state = 0, .external_lex_state = 5}, - [1914] = {.lex_state = 0}, + [1913] = {.lex_state = 0}, + [1914] = {.lex_state = 0, .external_lex_state = 5}, [1915] = {.lex_state = 0}, [1916] = {.lex_state = 0}, - [1917] = {.lex_state = 0, .external_lex_state = 5}, - [1918] = {.lex_state = 0}, + [1917] = {.lex_state = 0}, + [1918] = {.lex_state = 0, .external_lex_state = 5}, [1919] = {.lex_state = 0}, - [1920] = {.lex_state = 53}, - [1921] = {.lex_state = 0, .external_lex_state = 5}, + [1920] = {.lex_state = 0, .external_lex_state = 5}, + [1921] = {.lex_state = 0}, [1922] = {.lex_state = 0}, [1923] = {.lex_state = 0}, - [1924] = {.lex_state = 53}, - [1925] = {.lex_state = 0, .external_lex_state = 5}, - [1926] = {.lex_state = 0}, + [1924] = {.lex_state = 0}, + [1925] = {.lex_state = 0}, + [1926] = {.lex_state = 0, .external_lex_state = 5}, [1927] = {.lex_state = 0}, - [1928] = {.lex_state = 53}, - [1929] = {.lex_state = 53}, - [1930] = {.lex_state = 0, .external_lex_state = 5}, - [1931] = {.lex_state = 0}, - [1932] = {.lex_state = 0}, - [1933] = {.lex_state = 53}, + [1928] = {.lex_state = 0, .external_lex_state = 5}, + [1929] = {.lex_state = 0}, + [1930] = {.lex_state = 98}, + [1931] = {.lex_state = 0, .external_lex_state = 5}, + [1932] = {.lex_state = 0, .external_lex_state = 5}, + [1933] = {.lex_state = 0}, [1934] = {.lex_state = 0, .external_lex_state = 5}, [1935] = {.lex_state = 0}, [1936] = {.lex_state = 0}, [1937] = {.lex_state = 0}, - [1938] = {.lex_state = 53}, - [1939] = {.lex_state = 0, .external_lex_state = 5}, - [1940] = {.lex_state = 0}, + [1938] = {.lex_state = 0, .external_lex_state = 5}, + [1939] = {.lex_state = 0}, + [1940] = {.lex_state = 98}, [1941] = {.lex_state = 0}, - [1942] = {.lex_state = 53}, + [1942] = {.lex_state = 0}, [1943] = {.lex_state = 0}, [1944] = {.lex_state = 0, .external_lex_state = 5}, [1945] = {.lex_state = 0}, - [1946] = {.lex_state = 0}, - [1947] = {.lex_state = 53}, - [1948] = {.lex_state = 0}, + [1946] = {.lex_state = 98}, + [1947] = {.lex_state = 0}, + [1948] = {.lex_state = 45}, [1949] = {.lex_state = 0, .external_lex_state = 5}, - [1950] = {.lex_state = 0}, - [1951] = {.lex_state = 53}, - [1952] = {.lex_state = 0, .external_lex_state = 5}, + [1950] = {.lex_state = 0, .external_lex_state = 5}, + [1951] = {.lex_state = 0}, + [1952] = {.lex_state = 0}, [1953] = {.lex_state = 0, .external_lex_state = 5}, [1954] = {.lex_state = 0, .external_lex_state = 5}, - [1955] = {.lex_state = 0}, - [1956] = {.lex_state = 96}, - [1957] = {.lex_state = 96}, - [1958] = {.lex_state = 0}, - [1959] = {.lex_state = 0}, - [1960] = {.lex_state = 96}, - [1961] = {.lex_state = 53}, - [1962] = {.lex_state = 0}, - [1963] = {.lex_state = 96}, + [1955] = {.lex_state = 0, .external_lex_state = 5}, + [1956] = {.lex_state = 98}, + [1957] = {.lex_state = 98}, + [1958] = {.lex_state = 0, .external_lex_state = 5}, + [1959] = {.lex_state = 98}, + [1960] = {.lex_state = 0}, + [1961] = {.lex_state = 0}, + [1962] = {.lex_state = 98}, + [1963] = {.lex_state = 0}, [1964] = {.lex_state = 0}, - [1965] = {.lex_state = 96}, - [1966] = {.lex_state = 53}, + [1965] = {.lex_state = 0}, + [1966] = {.lex_state = 0}, [1967] = {.lex_state = 0}, - [1968] = {.lex_state = 0}, - [1969] = {.lex_state = 96}, - [1970] = {.lex_state = 0}, - [1971] = {.lex_state = 53}, - [1972] = {.lex_state = 0}, - [1973] = {.lex_state = 53}, + [1968] = {.lex_state = 98}, + [1969] = {.lex_state = 98}, + [1970] = {.lex_state = 0, .external_lex_state = 5}, + [1971] = {.lex_state = 191}, + [1972] = {.lex_state = 54}, + [1973] = {.lex_state = 0}, [1974] = {.lex_state = 0}, - [1975] = {.lex_state = 53}, + [1975] = {.lex_state = 45}, [1976] = {.lex_state = 0}, - [1977] = {.lex_state = 96}, + [1977] = {.lex_state = 0}, [1978] = {.lex_state = 0}, [1979] = {.lex_state = 0}, [1980] = {.lex_state = 0}, [1981] = {.lex_state = 0}, - [1982] = {.lex_state = 96}, + [1982] = {.lex_state = 54}, [1983] = {.lex_state = 0}, - [1984] = {.lex_state = 0}, - [1985] = {.lex_state = 0}, - [1986] = {.lex_state = 53}, - [1987] = {.lex_state = 0}, - [1988] = {.lex_state = 96}, + [1984] = {.lex_state = 54}, + [1985] = {.lex_state = 54}, + [1986] = {.lex_state = 54}, + [1987] = {.lex_state = 54}, + [1988] = {.lex_state = 0}, [1989] = {.lex_state = 0}, - [1990] = {.lex_state = 96}, - [1991] = {.lex_state = 0}, - [1992] = {.lex_state = 53}, - [1993] = {.lex_state = 0}, - [1994] = {.lex_state = 96}, + [1990] = {.lex_state = 54}, + [1991] = {.lex_state = 54}, + [1992] = {.lex_state = 0}, + [1993] = {.lex_state = 54}, + [1994] = {.lex_state = 0}, [1995] = {.lex_state = 0}, [1996] = {.lex_state = 0}, - [1997] = {.lex_state = 0}, - [1998] = {.lex_state = 0}, + [1997] = {.lex_state = 98}, + [1998] = {.lex_state = 54}, [1999] = {.lex_state = 0}, - [2000] = {.lex_state = 188}, + [2000] = {.lex_state = 45}, [2001] = {.lex_state = 0}, - [2002] = {.lex_state = 96}, - [2003] = {.lex_state = 96}, + [2002] = {.lex_state = 54}, + [2003] = {.lex_state = 0}, [2004] = {.lex_state = 0}, - [2005] = {.lex_state = 0, .external_lex_state = 5}, + [2005] = {.lex_state = 45}, [2006] = {.lex_state = 0}, - [2007] = {.lex_state = 0}, + [2007] = {.lex_state = 54}, [2008] = {.lex_state = 0}, - [2009] = {.lex_state = 53}, - [2010] = {.lex_state = 53}, + [2009] = {.lex_state = 45}, + [2010] = {.lex_state = 45}, [2011] = {.lex_state = 0}, - [2012] = {.lex_state = 96}, + [2012] = {.lex_state = 54}, [2013] = {.lex_state = 0}, - [2014] = {.lex_state = 0}, + [2014] = {.lex_state = 45}, [2015] = {.lex_state = 0}, - [2016] = {.lex_state = 0}, + [2016] = {.lex_state = 54}, [2017] = {.lex_state = 0}, - [2018] = {.lex_state = 0}, - [2019] = {.lex_state = 53}, - [2020] = {.lex_state = 0}, - [2021] = {.lex_state = 0}, + [2018] = {.lex_state = 45}, + [2019] = {.lex_state = 45}, + [2020] = {.lex_state = 54}, + [2021] = {.lex_state = 54}, [2022] = {.lex_state = 0}, - [2023] = {.lex_state = 96}, - [2024] = {.lex_state = 0}, - [2025] = {.lex_state = 0, .external_lex_state = 5}, + [2023] = {.lex_state = 0}, + [2024] = {.lex_state = 45}, + [2025] = {.lex_state = 0}, [2026] = {.lex_state = 0}, - [2027] = {.lex_state = 96}, - [2028] = {.lex_state = 0}, - [2029] = {.lex_state = 0}, - [2030] = {.lex_state = 96}, + [2027] = {.lex_state = 98}, + [2028] = {.lex_state = 98}, + [2029] = {.lex_state = 54}, + [2030] = {.lex_state = 0, .external_lex_state = 5}, [2031] = {.lex_state = 0}, - [2032] = {.lex_state = 53}, + [2032] = {.lex_state = 45}, [2033] = {.lex_state = 0}, - [2034] = {.lex_state = 96}, - [2035] = {.lex_state = 0}, - [2036] = {.lex_state = 96}, + [2034] = {.lex_state = 0}, + [2035] = {.lex_state = 98}, + [2036] = {.lex_state = 54}, [2037] = {.lex_state = 0}, - [2038] = {.lex_state = 0}, + [2038] = {.lex_state = 45}, [2039] = {.lex_state = 0}, [2040] = {.lex_state = 0}, - [2041] = {.lex_state = 53}, + [2041] = {.lex_state = 54}, [2042] = {.lex_state = 0}, [2043] = {.lex_state = 0}, - [2044] = {.lex_state = 96}, - [2045] = {.lex_state = 53}, - [2046] = {.lex_state = 96}, + [2044] = {.lex_state = 45}, + [2045] = {.lex_state = 0}, + [2046] = {.lex_state = 54}, [2047] = {.lex_state = 0}, - [2048] = {.lex_state = 96}, - [2049] = {.lex_state = 96}, - [2050] = {.lex_state = 96}, - [2051] = {.lex_state = 0}, - [2052] = {.lex_state = 0}, - [2053] = {.lex_state = 0}, - [2054] = {.lex_state = 0}, - [2055] = {.lex_state = 0, .external_lex_state = 5}, + [2048] = {.lex_state = 54}, + [2049] = {.lex_state = 98}, + [2050] = {.lex_state = 54}, + [2051] = {.lex_state = 98}, + [2052] = {.lex_state = 98}, + [2053] = {.lex_state = 98}, + [2054] = {.lex_state = 98}, + [2055] = {.lex_state = 98}, [2056] = {.lex_state = 0}, [2057] = {.lex_state = 0}, - [2058] = {.lex_state = 0}, - [2059] = {.lex_state = 0}, + [2058] = {.lex_state = 45}, + [2059] = {.lex_state = 98}, [2060] = {.lex_state = 0}, - [2061] = {.lex_state = 0}, - [2062] = {.lex_state = 0}, - [2063] = {.lex_state = 0}, - [2064] = {.lex_state = 0}, - [2065] = {.lex_state = 0}, - [2066] = {.lex_state = 0}, - [2067] = {.lex_state = 0}, - [2068] = {.lex_state = 0}, - [2069] = {.lex_state = 96}, - [2070] = {.lex_state = 96}, - [2071] = {.lex_state = 96}, - [2072] = {.lex_state = 96}, - [2073] = {.lex_state = 0}, - [2074] = {.lex_state = 0}, - [2075] = {.lex_state = 0}, - [2076] = {.lex_state = 96}, - [2077] = {.lex_state = 0}, + [2061] = {.lex_state = 98}, + [2062] = {.lex_state = 98}, + [2063] = {.lex_state = 98}, + [2064] = {.lex_state = 98}, + [2065] = {.lex_state = 98}, + [2066] = {.lex_state = 98}, + [2067] = {.lex_state = 98}, + [2068] = {.lex_state = 98}, + [2069] = {.lex_state = 98}, + [2070] = {.lex_state = 98}, + [2071] = {.lex_state = 98}, + [2072] = {.lex_state = 98}, + [2073] = {.lex_state = 98}, + [2074] = {.lex_state = 98}, + [2075] = {.lex_state = 98}, + [2076] = {.lex_state = 98}, + [2077] = {.lex_state = 98}, [2078] = {.lex_state = 0}, [2079] = {.lex_state = 0}, - [2080] = {.lex_state = 0}, - [2081] = {.lex_state = 0}, - [2082] = {.lex_state = 53}, + [2080] = {.lex_state = 98}, + [2081] = {.lex_state = 54}, + [2082] = {.lex_state = 0}, [2083] = {.lex_state = 0}, - [2084] = {.lex_state = 0, .external_lex_state = 5}, + [2084] = {.lex_state = 0}, [2085] = {.lex_state = 0}, - [2086] = {.lex_state = 96}, - [2087] = {.lex_state = 96}, - [2088] = {.lex_state = 96}, - [2089] = {.lex_state = 188}, - [2090] = {.lex_state = 0}, - [2091] = {.lex_state = 53}, - [2092] = {.lex_state = 0}, - [2093] = {.lex_state = 96}, - [2094] = {.lex_state = 96}, - [2095] = {.lex_state = 96}, + [2086] = {.lex_state = 45}, + [2087] = {.lex_state = 0}, + [2088] = {.lex_state = 0}, + [2089] = {.lex_state = 0}, + [2090] = {.lex_state = 54}, + [2091] = {.lex_state = 98}, + [2092] = {.lex_state = 98}, + [2093] = {.lex_state = 98}, + [2094] = {.lex_state = 191}, + [2095] = {.lex_state = 45}, [2096] = {.lex_state = 0}, - [2097] = {.lex_state = 96}, - [2098] = {.lex_state = 0}, - [2099] = {.lex_state = 96}, - [2100] = {.lex_state = 96}, - [2101] = {.lex_state = 96}, + [2097] = {.lex_state = 0}, + [2098] = {.lex_state = 98}, + [2099] = {.lex_state = 98}, + [2100] = {.lex_state = 98}, + [2101] = {.lex_state = 45}, + [2102] = {.lex_state = 98}, + [2103] = {.lex_state = 0}, + [2104] = {.lex_state = 0}, + [2105] = {.lex_state = 98}, + [2106] = {.lex_state = 98}, }; enum { @@ -7739,6 +8029,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_RBRACK] = ACTIONS(1), [anon_sym_SLASH2] = ACTIONS(1), [anon_sym_LBRACK2] = ACTIONS(1), + [anon_sym_COLON2] = ACTIONS(1), + [anon_sym_alnum] = ACTIONS(1), + [anon_sym_alpha] = ACTIONS(1), + [anon_sym_blank] = ACTIONS(1), + [anon_sym_cntrl] = ACTIONS(1), + [anon_sym_digit] = ACTIONS(1), + [anon_sym_graph] = ACTIONS(1), + [anon_sym_lower] = ACTIONS(1), + [anon_sym_punct] = ACTIONS(1), + [anon_sym_space] = ACTIONS(1), + [anon_sym_upper] = ACTIONS(1), + [anon_sym_xdigit] = ACTIONS(1), [anon_sym_RBRACK2] = ACTIONS(1), [anon_sym_AT] = ACTIONS(1), [anon_sym_COLON_COLON] = ACTIONS(1), @@ -7754,40 +8056,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__no_space] = ACTIONS(1), }, [1] = { - [sym_program] = STATE(2083), - [sym_rule] = STATE(290), - [sym_pattern] = STATE(1522), - [sym_range_pattern] = STATE(1558), - [sym__special_pattern] = STATE(1558), - [sym_directive] = STATE(290), - [sym__getline_exp] = STATE(578), - [sym_getline_input] = STATE(578), - [sym_getline_file] = STATE(578), - [sym_block] = STATE(1555), - [sym__exp] = STATE(578), - [sym_ternary_exp] = STATE(559), - [sym_binary_exp] = STATE(559), - [sym__binary_in] = STATE(556), - [sym_unary_exp] = STATE(559), - [sym_update_exp] = STATE(578), - [sym_assignment_exp] = STATE(578), - [sym_piped_io_exp] = STATE(578), - [sym_string_concat] = STATE(559), - [sym_field_ref] = STATE(486), - [sym_array_ref] = STATE(469), - [sym_regex] = STATE(578), - [sym_regex_constant] = STATE(578), - [sym_grouping] = STATE(559), - [sym__primitive] = STATE(559), - [sym_namespace] = STATE(2075), - [sym_ns_qualified_name] = STATE(419), - [sym_number] = STATE(559), - [sym_string] = STATE(559), - [sym_func_def] = STATE(290), - [sym_func_call] = STATE(559), - [sym_indirect_func_call] = STATE(578), - [sym_comment] = STATE(290), - [aux_sym_program_repeat1] = STATE(290), + [sym_program] = STATE(2088), + [sym_rule] = STATE(286), + [sym_pattern] = STATE(1534), + [sym_range_pattern] = STATE(1555), + [sym__special_pattern] = STATE(1555), + [sym_directive] = STATE(286), + [sym__getline_exp] = STATE(571), + [sym_getline_input] = STATE(571), + [sym_getline_file] = STATE(571), + [sym_block] = STATE(1545), + [sym__exp] = STATE(571), + [sym_ternary_exp] = STATE(538), + [sym_binary_exp] = STATE(538), + [sym__binary_in] = STATE(539), + [sym_unary_exp] = STATE(538), + [sym_update_exp] = STATE(571), + [sym_assignment_exp] = STATE(571), + [sym_piped_io_exp] = STATE(571), + [sym_string_concat] = STATE(538), + [sym_field_ref] = STATE(495), + [sym_array_ref] = STATE(459), + [sym_regex] = STATE(571), + [sym_regex_constant] = STATE(571), + [sym_grouping] = STATE(538), + [sym__primitive] = STATE(538), + [sym_namespace] = STATE(2080), + [sym_ns_qualified_name] = STATE(433), + [sym_number] = STATE(538), + [sym_string] = STATE(538), + [sym_func_def] = STATE(286), + [sym_func_call] = STATE(538), + [sym_indirect_func_call] = STATE(571), + [sym_comment] = STATE(286), + [aux_sym_program_repeat1] = STATE(286), [ts_builtin_sym_end] = ACTIONS(3), [sym_identifier] = ACTIONS(5), [anon_sym_BEGIN] = ACTIONS(7), @@ -7816,47 +8118,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(37), }, [2] = { - [sym__statement] = STATE(1129), + [sym__statement] = STATE(1172), [sym__statement_separated] = STATE(2), - [sym__control_statement] = STATE(1129), - [sym_if_statement] = STATE(1129), - [sym_while_statement] = STATE(1129), - [sym_do_while_statement] = STATE(1129), - [sym_for_statement] = STATE(1129), - [sym_for_in_statement] = STATE(1129), - [sym_delete_statement] = STATE(1129), - [sym_exit_statement] = STATE(1129), - [sym_return_statement] = STATE(1129), - [sym_switch_statement] = STATE(1129), - [sym__io_statement] = STATE(1129), - [sym__getline_exp] = STATE(1462), - [sym_getline_input] = STATE(1462), - [sym_getline_file] = STATE(1462), - [sym_print_statement] = STATE(1695), - [sym_printf_statement] = STATE(1695), - [sym_redirected_io_statement] = STATE(1129), - [sym_piped_io_statement] = STATE(1129), - [sym__exp] = STATE(1462), - [sym_ternary_exp] = STATE(1354), - [sym_binary_exp] = STATE(1354), - [sym__binary_in] = STATE(1309), - [sym_unary_exp] = STATE(1354), - [sym_update_exp] = STATE(1462), - [sym_assignment_exp] = STATE(1462), - [sym_piped_io_exp] = STATE(1462), - [sym_string_concat] = STATE(1354), - [sym_field_ref] = STATE(619), - [sym_array_ref] = STATE(603), - [sym_regex] = STATE(1462), - [sym_regex_constant] = STATE(1462), - [sym_grouping] = STATE(1354), - [sym__primitive] = STATE(1354), - [sym_namespace] = STATE(2063), - [sym_ns_qualified_name] = STATE(592), - [sym_number] = STATE(1354), - [sym_string] = STATE(1354), - [sym_func_call] = STATE(1354), - [sym_indirect_func_call] = STATE(1462), + [sym__control_statement] = STATE(1172), + [sym_if_statement] = STATE(1172), + [sym_while_statement] = STATE(1172), + [sym_do_while_statement] = STATE(1172), + [sym_for_statement] = STATE(1172), + [sym_for_in_statement] = STATE(1172), + [sym_delete_statement] = STATE(1172), + [sym_exit_statement] = STATE(1172), + [sym_return_statement] = STATE(1172), + [sym_switch_statement] = STATE(1172), + [sym__io_statement] = STATE(1172), + [sym__getline_exp] = STATE(1446), + [sym_getline_input] = STATE(1446), + [sym_getline_file] = STATE(1446), + [sym_print_statement] = STATE(1696), + [sym_printf_statement] = STATE(1696), + [sym_redirected_io_statement] = STATE(1172), + [sym_piped_io_statement] = STATE(1172), + [sym__exp] = STATE(1446), + [sym_ternary_exp] = STATE(1371), + [sym_binary_exp] = STATE(1371), + [sym__binary_in] = STATE(1305), + [sym_unary_exp] = STATE(1371), + [sym_update_exp] = STATE(1446), + [sym_assignment_exp] = STATE(1446), + [sym_piped_io_exp] = STATE(1446), + [sym_string_concat] = STATE(1371), + [sym_field_ref] = STATE(632), + [sym_array_ref] = STATE(601), + [sym_regex] = STATE(1446), + [sym_regex_constant] = STATE(1446), + [sym_grouping] = STATE(1371), + [sym__primitive] = STATE(1371), + [sym_namespace] = STATE(2068), + [sym_ns_qualified_name] = STATE(590), + [sym_number] = STATE(1371), + [sym_string] = STATE(1371), + [sym_func_call] = STATE(1371), + [sym_indirect_func_call] = STATE(1446), [sym_identifier] = ACTIONS(39), [anon_sym_SEMI] = ACTIONS(41), [anon_sym_LF] = ACTIONS(41), @@ -7895,51 +8197,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__if_else_separator] = ACTIONS(83), }, [3] = { - [sym__statement] = STATE(1261), - [sym__statement_separated] = STATE(3), - [sym__control_statement] = STATE(1261), - [sym_if_statement] = STATE(1261), - [sym_while_statement] = STATE(1261), - [sym_do_while_statement] = STATE(1261), - [sym_for_statement] = STATE(1261), - [sym_for_in_statement] = STATE(1261), - [sym_delete_statement] = STATE(1261), - [sym_exit_statement] = STATE(1261), - [sym_return_statement] = STATE(1261), - [sym_switch_statement] = STATE(1261), - [sym__io_statement] = STATE(1261), - [sym__getline_exp] = STATE(1495), - [sym_getline_input] = STATE(1495), - [sym_getline_file] = STATE(1495), - [sym_print_statement] = STATE(1696), - [sym_printf_statement] = STATE(1696), - [sym_redirected_io_statement] = STATE(1261), - [sym_piped_io_statement] = STATE(1261), - [sym__exp] = STATE(1495), - [sym_ternary_exp] = STATE(1421), - [sym_binary_exp] = STATE(1421), - [sym__binary_in] = STATE(1373), - [sym_unary_exp] = STATE(1421), - [sym_update_exp] = STATE(1495), - [sym_assignment_exp] = STATE(1495), - [sym_piped_io_exp] = STATE(1495), - [sym_string_concat] = STATE(1421), - [sym_field_ref] = STATE(703), - [sym_array_ref] = STATE(610), - [sym_regex] = STATE(1495), - [sym_regex_constant] = STATE(1495), - [sym_grouping] = STATE(1421), - [sym__primitive] = STATE(1421), - [sym_namespace] = STATE(1955), - [sym_ns_qualified_name] = STATE(607), - [sym_number] = STATE(1421), - [sym_string] = STATE(1421), - [sym_func_call] = STATE(1421), - [sym_indirect_func_call] = STATE(1495), + [sym__statement] = STATE(1287), + [sym__statement_separated] = STATE(1287), + [sym__control_statement] = STATE(1287), + [sym_if_statement] = STATE(1287), + [sym_while_statement] = STATE(1287), + [sym_do_while_statement] = STATE(1287), + [sym_for_statement] = STATE(1287), + [sym_for_in_statement] = STATE(1287), + [sym_delete_statement] = STATE(1287), + [sym_exit_statement] = STATE(1287), + [sym_return_statement] = STATE(1287), + [sym_switch_statement] = STATE(1287), + [sym__io_statement] = STATE(1287), + [sym__getline_exp] = STATE(503), + [sym_getline_input] = STATE(503), + [sym_getline_file] = STATE(503), + [sym_print_statement] = STATE(869), + [sym_printf_statement] = STATE(869), + [sym_redirected_io_statement] = STATE(1287), + [sym_piped_io_statement] = STATE(1287), + [sym_block] = STATE(7), + [sym__block_content] = STATE(7), + [sym__exp] = STATE(503), + [sym_ternary_exp] = STATE(427), + [sym_binary_exp] = STATE(427), + [sym__binary_in] = STATE(426), + [sym_unary_exp] = STATE(427), + [sym_update_exp] = STATE(503), + [sym_assignment_exp] = STATE(503), + [sym_piped_io_exp] = STATE(503), + [sym_string_concat] = STATE(427), + [sym_field_ref] = STATE(274), + [sym_array_ref] = STATE(268), + [sym_regex] = STATE(503), + [sym_regex_constant] = STATE(503), + [sym_grouping] = STATE(427), + [sym__primitive] = STATE(427), + [sym_namespace] = STATE(1956), + [sym_ns_qualified_name] = STATE(244), + [sym_number] = STATE(427), + [sym_string] = STATE(427), + [sym_func_call] = STATE(427), + [sym_indirect_func_call] = STATE(503), + [sym_comment] = STATE(7), + [aux_sym_block_repeat1] = STATE(7), [sym_identifier] = ACTIONS(85), - [anon_sym_SEMI] = ACTIONS(41), - [anon_sym_LF] = ACTIONS(41), - [anon_sym_CR_LF] = ACTIONS(41), [anon_sym_if] = ACTIONS(87), [anon_sym_LPAREN] = ACTIONS(89), [anon_sym_while] = ACTIONS(91), @@ -7951,1117 +8254,1039 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_exit] = ACTIONS(101), [anon_sym_return] = ACTIONS(103), [anon_sym_switch] = ACTIONS(105), - [anon_sym_RBRACE] = ACTIONS(41), - [anon_sym_case] = ACTIONS(41), - [anon_sym_default] = ACTIONS(41), - [anon_sym_getline] = ACTIONS(107), + [anon_sym_LBRACE] = ACTIONS(107), + [anon_sym_RBRACE] = ACTIONS(109), + [anon_sym_getline] = ACTIONS(111), [sym_next_statement] = ACTIONS(97), [sym_nextfile_statement] = ACTIONS(97), - [anon_sym_print] = ACTIONS(109), - [anon_sym_printf] = ACTIONS(111), - [anon_sym_SLASH] = ACTIONS(113), - [anon_sym_PLUS] = ACTIONS(115), - [anon_sym_DASH] = ACTIONS(115), - [anon_sym_BANG] = ACTIONS(115), - [anon_sym_PLUS_PLUS] = ACTIONS(117), - [anon_sym_DASH_DASH] = ACTIONS(117), - [anon_sym_DOLLAR] = ACTIONS(119), - [anon_sym_AT] = ACTIONS(121), - [aux_sym_number_token1] = ACTIONS(123), - [aux_sym_number_token2] = ACTIONS(123), - [anon_sym_DQUOTE] = ACTIONS(125), - [anon_sym_POUND] = ACTIONS(41), + [anon_sym_print] = ACTIONS(113), + [anon_sym_printf] = ACTIONS(115), + [anon_sym_SLASH] = ACTIONS(117), + [anon_sym_PLUS] = ACTIONS(119), + [anon_sym_DASH] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(121), + [anon_sym_PLUS_PLUS] = ACTIONS(123), + [anon_sym_DASH_DASH] = ACTIONS(123), + [anon_sym_DOLLAR] = ACTIONS(125), + [anon_sym_AT] = ACTIONS(127), + [aux_sym_number_token1] = ACTIONS(129), + [aux_sym_number_token2] = ACTIONS(131), + [anon_sym_DQUOTE] = ACTIONS(133), + [anon_sym_POUND] = ACTIONS(135), }, [4] = { - [sym__statement] = STATE(1288), - [sym__statement_separated] = STATE(1288), - [sym__control_statement] = STATE(1288), - [sym_if_statement] = STATE(1288), - [sym_while_statement] = STATE(1288), - [sym_do_while_statement] = STATE(1288), - [sym_for_statement] = STATE(1288), - [sym_for_in_statement] = STATE(1288), - [sym_delete_statement] = STATE(1288), - [sym_exit_statement] = STATE(1288), - [sym_return_statement] = STATE(1288), - [sym_switch_statement] = STATE(1288), - [sym__io_statement] = STATE(1288), - [sym__getline_exp] = STATE(503), - [sym_getline_input] = STATE(503), - [sym_getline_file] = STATE(503), - [sym_print_statement] = STATE(890), - [sym_printf_statement] = STATE(890), - [sym_redirected_io_statement] = STATE(1288), - [sym_piped_io_statement] = STATE(1288), - [sym_block] = STATE(7), - [sym__block_content] = STATE(7), - [sym__exp] = STATE(503), - [sym_ternary_exp] = STATE(447), - [sym_binary_exp] = STATE(447), - [sym__binary_in] = STATE(446), - [sym_unary_exp] = STATE(447), - [sym_update_exp] = STATE(503), - [sym_assignment_exp] = STATE(503), - [sym_piped_io_exp] = STATE(503), - [sym_string_concat] = STATE(447), - [sym_field_ref] = STATE(272), - [sym_array_ref] = STATE(253), - [sym_regex] = STATE(503), - [sym_regex_constant] = STATE(503), - [sym_grouping] = STATE(447), - [sym__primitive] = STATE(447), - [sym_namespace] = STATE(1955), - [sym_ns_qualified_name] = STATE(221), - [sym_number] = STATE(447), - [sym_string] = STATE(447), - [sym_func_call] = STATE(447), - [sym_indirect_func_call] = STATE(503), - [sym_comment] = STATE(7), - [aux_sym_block_repeat1] = STATE(7), - [sym_identifier] = ACTIONS(127), - [anon_sym_if] = ACTIONS(129), - [anon_sym_LPAREN] = ACTIONS(131), - [anon_sym_while] = ACTIONS(133), + [sym__statement] = STATE(1234), + [sym__statement_separated] = STATE(4), + [sym__control_statement] = STATE(1234), + [sym_if_statement] = STATE(1234), + [sym_while_statement] = STATE(1234), + [sym_do_while_statement] = STATE(1234), + [sym_for_statement] = STATE(1234), + [sym_for_in_statement] = STATE(1234), + [sym_delete_statement] = STATE(1234), + [sym_exit_statement] = STATE(1234), + [sym_return_statement] = STATE(1234), + [sym_switch_statement] = STATE(1234), + [sym__io_statement] = STATE(1234), + [sym__getline_exp] = STATE(1471), + [sym_getline_input] = STATE(1471), + [sym_getline_file] = STATE(1471), + [sym_print_statement] = STATE(1697), + [sym_printf_statement] = STATE(1697), + [sym_redirected_io_statement] = STATE(1234), + [sym_piped_io_statement] = STATE(1234), + [sym__exp] = STATE(1471), + [sym_ternary_exp] = STATE(1420), + [sym_binary_exp] = STATE(1420), + [sym__binary_in] = STATE(1385), + [sym_unary_exp] = STATE(1420), + [sym_update_exp] = STATE(1471), + [sym_assignment_exp] = STATE(1471), + [sym_piped_io_exp] = STATE(1471), + [sym_string_concat] = STATE(1420), + [sym_field_ref] = STATE(705), + [sym_array_ref] = STATE(614), + [sym_regex] = STATE(1471), + [sym_regex_constant] = STATE(1471), + [sym_grouping] = STATE(1420), + [sym__primitive] = STATE(1420), + [sym_namespace] = STATE(1956), + [sym_ns_qualified_name] = STATE(597), + [sym_number] = STATE(1420), + [sym_string] = STATE(1420), + [sym_func_call] = STATE(1420), + [sym_indirect_func_call] = STATE(1471), + [sym_identifier] = ACTIONS(137), + [anon_sym_SEMI] = ACTIONS(41), + [anon_sym_LF] = ACTIONS(41), + [anon_sym_CR_LF] = ACTIONS(41), + [anon_sym_if] = ACTIONS(139), + [anon_sym_LPAREN] = ACTIONS(141), + [anon_sym_while] = ACTIONS(143), [anon_sym_do] = ACTIONS(93), - [anon_sym_for] = ACTIONS(135), - [sym_break_statement] = ACTIONS(137), - [sym_continue_statement] = ACTIONS(137), + [anon_sym_for] = ACTIONS(145), + [sym_break_statement] = ACTIONS(147), + [sym_continue_statement] = ACTIONS(147), [anon_sym_delete] = ACTIONS(99), - [anon_sym_exit] = ACTIONS(139), - [anon_sym_return] = ACTIONS(141), + [anon_sym_exit] = ACTIONS(149), + [anon_sym_return] = ACTIONS(151), [anon_sym_switch] = ACTIONS(105), - [anon_sym_LBRACE] = ACTIONS(143), - [anon_sym_RBRACE] = ACTIONS(145), - [anon_sym_getline] = ACTIONS(147), - [sym_next_statement] = ACTIONS(137), - [sym_nextfile_statement] = ACTIONS(137), - [anon_sym_print] = ACTIONS(149), - [anon_sym_printf] = ACTIONS(151), - [anon_sym_SLASH] = ACTIONS(153), - [anon_sym_PLUS] = ACTIONS(155), - [anon_sym_DASH] = ACTIONS(155), - [anon_sym_BANG] = ACTIONS(157), - [anon_sym_PLUS_PLUS] = ACTIONS(159), - [anon_sym_DASH_DASH] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(161), - [anon_sym_AT] = ACTIONS(163), - [aux_sym_number_token1] = ACTIONS(165), - [aux_sym_number_token2] = ACTIONS(167), - [anon_sym_DQUOTE] = ACTIONS(169), - [anon_sym_POUND] = ACTIONS(171), + [anon_sym_RBRACE] = ACTIONS(41), + [anon_sym_case] = ACTIONS(41), + [anon_sym_default] = ACTIONS(41), + [anon_sym_getline] = ACTIONS(153), + [sym_next_statement] = ACTIONS(147), + [sym_nextfile_statement] = ACTIONS(147), + [anon_sym_print] = ACTIONS(155), + [anon_sym_printf] = ACTIONS(157), + [anon_sym_SLASH] = ACTIONS(159), + [anon_sym_PLUS] = ACTIONS(161), + [anon_sym_DASH] = ACTIONS(161), + [anon_sym_BANG] = ACTIONS(161), + [anon_sym_PLUS_PLUS] = ACTIONS(163), + [anon_sym_DASH_DASH] = ACTIONS(163), + [anon_sym_DOLLAR] = ACTIONS(165), + [anon_sym_AT] = ACTIONS(167), + [aux_sym_number_token1] = ACTIONS(169), + [aux_sym_number_token2] = ACTIONS(169), + [anon_sym_DQUOTE] = ACTIONS(171), + [anon_sym_POUND] = ACTIONS(41), }, [5] = { - [sym__statement] = STATE(1288), - [sym__statement_separated] = STATE(1288), - [sym__control_statement] = STATE(1288), - [sym_if_statement] = STATE(1288), - [sym_while_statement] = STATE(1288), - [sym_do_while_statement] = STATE(1288), - [sym_for_statement] = STATE(1288), - [sym_for_in_statement] = STATE(1288), - [sym_delete_statement] = STATE(1288), - [sym_exit_statement] = STATE(1288), - [sym_return_statement] = STATE(1288), - [sym_switch_statement] = STATE(1288), - [sym__io_statement] = STATE(1288), + [sym__statement] = STATE(1287), + [sym__statement_separated] = STATE(1287), + [sym__control_statement] = STATE(1287), + [sym_if_statement] = STATE(1287), + [sym_while_statement] = STATE(1287), + [sym_do_while_statement] = STATE(1287), + [sym_for_statement] = STATE(1287), + [sym_for_in_statement] = STATE(1287), + [sym_delete_statement] = STATE(1287), + [sym_exit_statement] = STATE(1287), + [sym_return_statement] = STATE(1287), + [sym_switch_statement] = STATE(1287), + [sym__io_statement] = STATE(1287), [sym__getline_exp] = STATE(503), [sym_getline_input] = STATE(503), [sym_getline_file] = STATE(503), - [sym_print_statement] = STATE(890), - [sym_printf_statement] = STATE(890), - [sym_redirected_io_statement] = STATE(1288), - [sym_piped_io_statement] = STATE(1288), - [sym_block] = STATE(8), - [sym__block_content] = STATE(8), + [sym_print_statement] = STATE(869), + [sym_printf_statement] = STATE(869), + [sym_redirected_io_statement] = STATE(1287), + [sym_piped_io_statement] = STATE(1287), + [sym_block] = STATE(3), + [sym__block_content] = STATE(3), [sym__exp] = STATE(503), - [sym_ternary_exp] = STATE(447), - [sym_binary_exp] = STATE(447), - [sym__binary_in] = STATE(446), - [sym_unary_exp] = STATE(447), + [sym_ternary_exp] = STATE(427), + [sym_binary_exp] = STATE(427), + [sym__binary_in] = STATE(426), + [sym_unary_exp] = STATE(427), [sym_update_exp] = STATE(503), [sym_assignment_exp] = STATE(503), [sym_piped_io_exp] = STATE(503), - [sym_string_concat] = STATE(447), - [sym_field_ref] = STATE(272), - [sym_array_ref] = STATE(253), + [sym_string_concat] = STATE(427), + [sym_field_ref] = STATE(274), + [sym_array_ref] = STATE(268), [sym_regex] = STATE(503), [sym_regex_constant] = STATE(503), - [sym_grouping] = STATE(447), - [sym__primitive] = STATE(447), - [sym_namespace] = STATE(1955), - [sym_ns_qualified_name] = STATE(221), - [sym_number] = STATE(447), - [sym_string] = STATE(447), - [sym_func_call] = STATE(447), + [sym_grouping] = STATE(427), + [sym__primitive] = STATE(427), + [sym_namespace] = STATE(1956), + [sym_ns_qualified_name] = STATE(244), + [sym_number] = STATE(427), + [sym_string] = STATE(427), + [sym_func_call] = STATE(427), [sym_indirect_func_call] = STATE(503), - [sym_comment] = STATE(8), - [aux_sym_block_repeat1] = STATE(8), - [sym_identifier] = ACTIONS(127), - [anon_sym_if] = ACTIONS(129), - [anon_sym_LPAREN] = ACTIONS(131), - [anon_sym_while] = ACTIONS(133), + [sym_comment] = STATE(3), + [aux_sym_block_repeat1] = STATE(3), + [sym_identifier] = ACTIONS(85), + [anon_sym_if] = ACTIONS(87), + [anon_sym_LPAREN] = ACTIONS(89), + [anon_sym_while] = ACTIONS(91), [anon_sym_do] = ACTIONS(93), - [anon_sym_for] = ACTIONS(135), - [sym_break_statement] = ACTIONS(137), - [sym_continue_statement] = ACTIONS(137), + [anon_sym_for] = ACTIONS(95), + [sym_break_statement] = ACTIONS(97), + [sym_continue_statement] = ACTIONS(97), [anon_sym_delete] = ACTIONS(99), - [anon_sym_exit] = ACTIONS(139), - [anon_sym_return] = ACTIONS(141), + [anon_sym_exit] = ACTIONS(101), + [anon_sym_return] = ACTIONS(103), [anon_sym_switch] = ACTIONS(105), - [anon_sym_LBRACE] = ACTIONS(143), + [anon_sym_LBRACE] = ACTIONS(107), [anon_sym_RBRACE] = ACTIONS(173), - [anon_sym_getline] = ACTIONS(147), - [sym_next_statement] = ACTIONS(137), - [sym_nextfile_statement] = ACTIONS(137), - [anon_sym_print] = ACTIONS(149), - [anon_sym_printf] = ACTIONS(151), - [anon_sym_SLASH] = ACTIONS(153), - [anon_sym_PLUS] = ACTIONS(155), - [anon_sym_DASH] = ACTIONS(155), - [anon_sym_BANG] = ACTIONS(157), - [anon_sym_PLUS_PLUS] = ACTIONS(159), - [anon_sym_DASH_DASH] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(161), - [anon_sym_AT] = ACTIONS(163), - [aux_sym_number_token1] = ACTIONS(165), - [aux_sym_number_token2] = ACTIONS(167), - [anon_sym_DQUOTE] = ACTIONS(169), - [anon_sym_POUND] = ACTIONS(171), + [anon_sym_getline] = ACTIONS(111), + [sym_next_statement] = ACTIONS(97), + [sym_nextfile_statement] = ACTIONS(97), + [anon_sym_print] = ACTIONS(113), + [anon_sym_printf] = ACTIONS(115), + [anon_sym_SLASH] = ACTIONS(117), + [anon_sym_PLUS] = ACTIONS(119), + [anon_sym_DASH] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(121), + [anon_sym_PLUS_PLUS] = ACTIONS(123), + [anon_sym_DASH_DASH] = ACTIONS(123), + [anon_sym_DOLLAR] = ACTIONS(125), + [anon_sym_AT] = ACTIONS(127), + [aux_sym_number_token1] = ACTIONS(129), + [aux_sym_number_token2] = ACTIONS(131), + [anon_sym_DQUOTE] = ACTIONS(133), + [anon_sym_POUND] = ACTIONS(135), }, [6] = { - [sym__statement] = STATE(1288), - [sym__statement_separated] = STATE(1288), - [sym__control_statement] = STATE(1288), - [sym_if_statement] = STATE(1288), - [sym_while_statement] = STATE(1288), - [sym_do_while_statement] = STATE(1288), - [sym_for_statement] = STATE(1288), - [sym_for_in_statement] = STATE(1288), - [sym_delete_statement] = STATE(1288), - [sym_exit_statement] = STATE(1288), - [sym_return_statement] = STATE(1288), - [sym_switch_statement] = STATE(1288), - [sym__io_statement] = STATE(1288), + [sym__statement] = STATE(1287), + [sym__statement_separated] = STATE(1287), + [sym__control_statement] = STATE(1287), + [sym_if_statement] = STATE(1287), + [sym_while_statement] = STATE(1287), + [sym_do_while_statement] = STATE(1287), + [sym_for_statement] = STATE(1287), + [sym_for_in_statement] = STATE(1287), + [sym_delete_statement] = STATE(1287), + [sym_exit_statement] = STATE(1287), + [sym_return_statement] = STATE(1287), + [sym_switch_statement] = STATE(1287), + [sym__io_statement] = STATE(1287), [sym__getline_exp] = STATE(503), [sym_getline_input] = STATE(503), [sym_getline_file] = STATE(503), - [sym_print_statement] = STATE(890), - [sym_printf_statement] = STATE(890), - [sym_redirected_io_statement] = STATE(1288), - [sym_piped_io_statement] = STATE(1288), - [sym_block] = STATE(6), - [sym__block_content] = STATE(6), + [sym_print_statement] = STATE(869), + [sym_printf_statement] = STATE(869), + [sym_redirected_io_statement] = STATE(1287), + [sym_piped_io_statement] = STATE(1287), + [sym_block] = STATE(7), + [sym__block_content] = STATE(7), [sym__exp] = STATE(503), - [sym_ternary_exp] = STATE(447), - [sym_binary_exp] = STATE(447), - [sym__binary_in] = STATE(446), - [sym_unary_exp] = STATE(447), + [sym_ternary_exp] = STATE(427), + [sym_binary_exp] = STATE(427), + [sym__binary_in] = STATE(426), + [sym_unary_exp] = STATE(427), [sym_update_exp] = STATE(503), [sym_assignment_exp] = STATE(503), [sym_piped_io_exp] = STATE(503), - [sym_string_concat] = STATE(447), - [sym_field_ref] = STATE(272), - [sym_array_ref] = STATE(253), + [sym_string_concat] = STATE(427), + [sym_field_ref] = STATE(274), + [sym_array_ref] = STATE(268), [sym_regex] = STATE(503), [sym_regex_constant] = STATE(503), - [sym_grouping] = STATE(447), - [sym__primitive] = STATE(447), - [sym_namespace] = STATE(1955), - [sym_ns_qualified_name] = STATE(221), - [sym_number] = STATE(447), - [sym_string] = STATE(447), - [sym_func_call] = STATE(447), + [sym_grouping] = STATE(427), + [sym__primitive] = STATE(427), + [sym_namespace] = STATE(1956), + [sym_ns_qualified_name] = STATE(244), + [sym_number] = STATE(427), + [sym_string] = STATE(427), + [sym_func_call] = STATE(427), [sym_indirect_func_call] = STATE(503), - [sym_comment] = STATE(6), - [aux_sym_block_repeat1] = STATE(6), - [sym_identifier] = ACTIONS(175), - [anon_sym_if] = ACTIONS(178), - [anon_sym_LPAREN] = ACTIONS(181), - [anon_sym_while] = ACTIONS(184), - [anon_sym_do] = ACTIONS(187), - [anon_sym_for] = ACTIONS(190), - [sym_break_statement] = ACTIONS(193), - [sym_continue_statement] = ACTIONS(193), - [anon_sym_delete] = ACTIONS(196), - [anon_sym_exit] = ACTIONS(199), - [anon_sym_return] = ACTIONS(202), - [anon_sym_switch] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(208), - [anon_sym_RBRACE] = ACTIONS(211), - [anon_sym_getline] = ACTIONS(213), - [sym_next_statement] = ACTIONS(193), - [sym_nextfile_statement] = ACTIONS(193), - [anon_sym_print] = ACTIONS(216), - [anon_sym_printf] = ACTIONS(219), - [anon_sym_SLASH] = ACTIONS(222), - [anon_sym_PLUS] = ACTIONS(225), - [anon_sym_DASH] = ACTIONS(225), - [anon_sym_BANG] = ACTIONS(228), - [anon_sym_PLUS_PLUS] = ACTIONS(231), - [anon_sym_DASH_DASH] = ACTIONS(231), - [anon_sym_DOLLAR] = ACTIONS(234), - [anon_sym_AT] = ACTIONS(237), - [aux_sym_number_token1] = ACTIONS(240), - [aux_sym_number_token2] = ACTIONS(243), - [anon_sym_DQUOTE] = ACTIONS(246), - [anon_sym_POUND] = ACTIONS(249), + [sym_comment] = STATE(7), + [aux_sym_block_repeat1] = STATE(7), + [sym_identifier] = ACTIONS(85), + [anon_sym_if] = ACTIONS(87), + [anon_sym_LPAREN] = ACTIONS(89), + [anon_sym_while] = ACTIONS(91), + [anon_sym_do] = ACTIONS(93), + [anon_sym_for] = ACTIONS(95), + [sym_break_statement] = ACTIONS(97), + [sym_continue_statement] = ACTIONS(97), + [anon_sym_delete] = ACTIONS(99), + [anon_sym_exit] = ACTIONS(101), + [anon_sym_return] = ACTIONS(103), + [anon_sym_switch] = ACTIONS(105), + [anon_sym_LBRACE] = ACTIONS(107), + [anon_sym_RBRACE] = ACTIONS(175), + [anon_sym_getline] = ACTIONS(111), + [sym_next_statement] = ACTIONS(97), + [sym_nextfile_statement] = ACTIONS(97), + [anon_sym_print] = ACTIONS(113), + [anon_sym_printf] = ACTIONS(115), + [anon_sym_SLASH] = ACTIONS(117), + [anon_sym_PLUS] = ACTIONS(119), + [anon_sym_DASH] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(121), + [anon_sym_PLUS_PLUS] = ACTIONS(123), + [anon_sym_DASH_DASH] = ACTIONS(123), + [anon_sym_DOLLAR] = ACTIONS(125), + [anon_sym_AT] = ACTIONS(127), + [aux_sym_number_token1] = ACTIONS(129), + [aux_sym_number_token2] = ACTIONS(131), + [anon_sym_DQUOTE] = ACTIONS(133), + [anon_sym_POUND] = ACTIONS(135), }, [7] = { - [sym__statement] = STATE(1288), - [sym__statement_separated] = STATE(1288), - [sym__control_statement] = STATE(1288), - [sym_if_statement] = STATE(1288), - [sym_while_statement] = STATE(1288), - [sym_do_while_statement] = STATE(1288), - [sym_for_statement] = STATE(1288), - [sym_for_in_statement] = STATE(1288), - [sym_delete_statement] = STATE(1288), - [sym_exit_statement] = STATE(1288), - [sym_return_statement] = STATE(1288), - [sym_switch_statement] = STATE(1288), - [sym__io_statement] = STATE(1288), + [sym__statement] = STATE(1287), + [sym__statement_separated] = STATE(1287), + [sym__control_statement] = STATE(1287), + [sym_if_statement] = STATE(1287), + [sym_while_statement] = STATE(1287), + [sym_do_while_statement] = STATE(1287), + [sym_for_statement] = STATE(1287), + [sym_for_in_statement] = STATE(1287), + [sym_delete_statement] = STATE(1287), + [sym_exit_statement] = STATE(1287), + [sym_return_statement] = STATE(1287), + [sym_switch_statement] = STATE(1287), + [sym__io_statement] = STATE(1287), [sym__getline_exp] = STATE(503), [sym_getline_input] = STATE(503), [sym_getline_file] = STATE(503), - [sym_print_statement] = STATE(890), - [sym_printf_statement] = STATE(890), - [sym_redirected_io_statement] = STATE(1288), - [sym_piped_io_statement] = STATE(1288), - [sym_block] = STATE(6), - [sym__block_content] = STATE(6), + [sym_print_statement] = STATE(869), + [sym_printf_statement] = STATE(869), + [sym_redirected_io_statement] = STATE(1287), + [sym_piped_io_statement] = STATE(1287), + [sym_block] = STATE(7), + [sym__block_content] = STATE(7), [sym__exp] = STATE(503), - [sym_ternary_exp] = STATE(447), - [sym_binary_exp] = STATE(447), - [sym__binary_in] = STATE(446), - [sym_unary_exp] = STATE(447), + [sym_ternary_exp] = STATE(427), + [sym_binary_exp] = STATE(427), + [sym__binary_in] = STATE(426), + [sym_unary_exp] = STATE(427), [sym_update_exp] = STATE(503), [sym_assignment_exp] = STATE(503), [sym_piped_io_exp] = STATE(503), - [sym_string_concat] = STATE(447), - [sym_field_ref] = STATE(272), - [sym_array_ref] = STATE(253), + [sym_string_concat] = STATE(427), + [sym_field_ref] = STATE(274), + [sym_array_ref] = STATE(268), [sym_regex] = STATE(503), [sym_regex_constant] = STATE(503), - [sym_grouping] = STATE(447), - [sym__primitive] = STATE(447), - [sym_namespace] = STATE(1955), - [sym_ns_qualified_name] = STATE(221), - [sym_number] = STATE(447), - [sym_string] = STATE(447), - [sym_func_call] = STATE(447), + [sym_grouping] = STATE(427), + [sym__primitive] = STATE(427), + [sym_namespace] = STATE(1956), + [sym_ns_qualified_name] = STATE(244), + [sym_number] = STATE(427), + [sym_string] = STATE(427), + [sym_func_call] = STATE(427), [sym_indirect_func_call] = STATE(503), - [sym_comment] = STATE(6), - [aux_sym_block_repeat1] = STATE(6), - [sym_identifier] = ACTIONS(127), - [anon_sym_if] = ACTIONS(129), - [anon_sym_LPAREN] = ACTIONS(131), - [anon_sym_while] = ACTIONS(133), - [anon_sym_do] = ACTIONS(93), - [anon_sym_for] = ACTIONS(135), - [sym_break_statement] = ACTIONS(137), - [sym_continue_statement] = ACTIONS(137), - [anon_sym_delete] = ACTIONS(99), - [anon_sym_exit] = ACTIONS(139), - [anon_sym_return] = ACTIONS(141), - [anon_sym_switch] = ACTIONS(105), - [anon_sym_LBRACE] = ACTIONS(143), - [anon_sym_RBRACE] = ACTIONS(252), - [anon_sym_getline] = ACTIONS(147), - [sym_next_statement] = ACTIONS(137), - [sym_nextfile_statement] = ACTIONS(137), - [anon_sym_print] = ACTIONS(149), - [anon_sym_printf] = ACTIONS(151), - [anon_sym_SLASH] = ACTIONS(153), - [anon_sym_PLUS] = ACTIONS(155), - [anon_sym_DASH] = ACTIONS(155), - [anon_sym_BANG] = ACTIONS(157), - [anon_sym_PLUS_PLUS] = ACTIONS(159), - [anon_sym_DASH_DASH] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(161), - [anon_sym_AT] = ACTIONS(163), - [aux_sym_number_token1] = ACTIONS(165), - [aux_sym_number_token2] = ACTIONS(167), - [anon_sym_DQUOTE] = ACTIONS(169), - [anon_sym_POUND] = ACTIONS(171), + [sym_comment] = STATE(7), + [aux_sym_block_repeat1] = STATE(7), + [sym_identifier] = ACTIONS(177), + [anon_sym_if] = ACTIONS(180), + [anon_sym_LPAREN] = ACTIONS(183), + [anon_sym_while] = ACTIONS(186), + [anon_sym_do] = ACTIONS(189), + [anon_sym_for] = ACTIONS(192), + [sym_break_statement] = ACTIONS(195), + [sym_continue_statement] = ACTIONS(195), + [anon_sym_delete] = ACTIONS(198), + [anon_sym_exit] = ACTIONS(201), + [anon_sym_return] = ACTIONS(204), + [anon_sym_switch] = ACTIONS(207), + [anon_sym_LBRACE] = ACTIONS(210), + [anon_sym_RBRACE] = ACTIONS(213), + [anon_sym_getline] = ACTIONS(215), + [sym_next_statement] = ACTIONS(195), + [sym_nextfile_statement] = ACTIONS(195), + [anon_sym_print] = ACTIONS(218), + [anon_sym_printf] = ACTIONS(221), + [anon_sym_SLASH] = ACTIONS(224), + [anon_sym_PLUS] = ACTIONS(227), + [anon_sym_DASH] = ACTIONS(227), + [anon_sym_BANG] = ACTIONS(230), + [anon_sym_PLUS_PLUS] = ACTIONS(233), + [anon_sym_DASH_DASH] = ACTIONS(233), + [anon_sym_DOLLAR] = ACTIONS(236), + [anon_sym_AT] = ACTIONS(239), + [aux_sym_number_token1] = ACTIONS(242), + [aux_sym_number_token2] = ACTIONS(245), + [anon_sym_DQUOTE] = ACTIONS(248), + [anon_sym_POUND] = ACTIONS(251), }, [8] = { - [sym__statement] = STATE(1288), - [sym__statement_separated] = STATE(1288), - [sym__control_statement] = STATE(1288), - [sym_if_statement] = STATE(1288), - [sym_while_statement] = STATE(1288), - [sym_do_while_statement] = STATE(1288), - [sym_for_statement] = STATE(1288), - [sym_for_in_statement] = STATE(1288), - [sym_delete_statement] = STATE(1288), - [sym_exit_statement] = STATE(1288), - [sym_return_statement] = STATE(1288), - [sym_switch_statement] = STATE(1288), - [sym__io_statement] = STATE(1288), + [sym__statement] = STATE(1287), + [sym__statement_separated] = STATE(1287), + [sym__control_statement] = STATE(1287), + [sym_if_statement] = STATE(1287), + [sym_while_statement] = STATE(1287), + [sym_do_while_statement] = STATE(1287), + [sym_for_statement] = STATE(1287), + [sym_for_in_statement] = STATE(1287), + [sym_delete_statement] = STATE(1287), + [sym_exit_statement] = STATE(1287), + [sym_return_statement] = STATE(1287), + [sym_switch_statement] = STATE(1287), + [sym__io_statement] = STATE(1287), [sym__getline_exp] = STATE(503), [sym_getline_input] = STATE(503), [sym_getline_file] = STATE(503), - [sym_print_statement] = STATE(890), - [sym_printf_statement] = STATE(890), - [sym_redirected_io_statement] = STATE(1288), - [sym_piped_io_statement] = STATE(1288), + [sym_print_statement] = STATE(869), + [sym_printf_statement] = STATE(869), + [sym_redirected_io_statement] = STATE(1287), + [sym_piped_io_statement] = STATE(1287), [sym_block] = STATE(6), [sym__block_content] = STATE(6), [sym__exp] = STATE(503), - [sym_ternary_exp] = STATE(447), - [sym_binary_exp] = STATE(447), - [sym__binary_in] = STATE(446), - [sym_unary_exp] = STATE(447), + [sym_ternary_exp] = STATE(427), + [sym_binary_exp] = STATE(427), + [sym__binary_in] = STATE(426), + [sym_unary_exp] = STATE(427), [sym_update_exp] = STATE(503), [sym_assignment_exp] = STATE(503), [sym_piped_io_exp] = STATE(503), - [sym_string_concat] = STATE(447), - [sym_field_ref] = STATE(272), - [sym_array_ref] = STATE(253), + [sym_string_concat] = STATE(427), + [sym_field_ref] = STATE(274), + [sym_array_ref] = STATE(268), [sym_regex] = STATE(503), [sym_regex_constant] = STATE(503), - [sym_grouping] = STATE(447), - [sym__primitive] = STATE(447), - [sym_namespace] = STATE(1955), - [sym_ns_qualified_name] = STATE(221), - [sym_number] = STATE(447), - [sym_string] = STATE(447), - [sym_func_call] = STATE(447), + [sym_grouping] = STATE(427), + [sym__primitive] = STATE(427), + [sym_namespace] = STATE(1956), + [sym_ns_qualified_name] = STATE(244), + [sym_number] = STATE(427), + [sym_string] = STATE(427), + [sym_func_call] = STATE(427), [sym_indirect_func_call] = STATE(503), [sym_comment] = STATE(6), [aux_sym_block_repeat1] = STATE(6), - [sym_identifier] = ACTIONS(127), - [anon_sym_if] = ACTIONS(129), - [anon_sym_LPAREN] = ACTIONS(131), - [anon_sym_while] = ACTIONS(133), + [sym_identifier] = ACTIONS(85), + [anon_sym_if] = ACTIONS(87), + [anon_sym_LPAREN] = ACTIONS(89), + [anon_sym_while] = ACTIONS(91), [anon_sym_do] = ACTIONS(93), - [anon_sym_for] = ACTIONS(135), - [sym_break_statement] = ACTIONS(137), - [sym_continue_statement] = ACTIONS(137), + [anon_sym_for] = ACTIONS(95), + [sym_break_statement] = ACTIONS(97), + [sym_continue_statement] = ACTIONS(97), [anon_sym_delete] = ACTIONS(99), - [anon_sym_exit] = ACTIONS(139), - [anon_sym_return] = ACTIONS(141), + [anon_sym_exit] = ACTIONS(101), + [anon_sym_return] = ACTIONS(103), [anon_sym_switch] = ACTIONS(105), - [anon_sym_LBRACE] = ACTIONS(143), + [anon_sym_LBRACE] = ACTIONS(107), [anon_sym_RBRACE] = ACTIONS(254), - [anon_sym_getline] = ACTIONS(147), - [sym_next_statement] = ACTIONS(137), - [sym_nextfile_statement] = ACTIONS(137), - [anon_sym_print] = ACTIONS(149), - [anon_sym_printf] = ACTIONS(151), - [anon_sym_SLASH] = ACTIONS(153), - [anon_sym_PLUS] = ACTIONS(155), - [anon_sym_DASH] = ACTIONS(155), - [anon_sym_BANG] = ACTIONS(157), - [anon_sym_PLUS_PLUS] = ACTIONS(159), - [anon_sym_DASH_DASH] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(161), - [anon_sym_AT] = ACTIONS(163), - [aux_sym_number_token1] = ACTIONS(165), - [aux_sym_number_token2] = ACTIONS(167), - [anon_sym_DQUOTE] = ACTIONS(169), - [anon_sym_POUND] = ACTIONS(171), + [anon_sym_getline] = ACTIONS(111), + [sym_next_statement] = ACTIONS(97), + [sym_nextfile_statement] = ACTIONS(97), + [anon_sym_print] = ACTIONS(113), + [anon_sym_printf] = ACTIONS(115), + [anon_sym_SLASH] = ACTIONS(117), + [anon_sym_PLUS] = ACTIONS(119), + [anon_sym_DASH] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(121), + [anon_sym_PLUS_PLUS] = ACTIONS(123), + [anon_sym_DASH_DASH] = ACTIONS(123), + [anon_sym_DOLLAR] = ACTIONS(125), + [anon_sym_AT] = ACTIONS(127), + [aux_sym_number_token1] = ACTIONS(129), + [aux_sym_number_token2] = ACTIONS(131), + [anon_sym_DQUOTE] = ACTIONS(133), + [anon_sym_POUND] = ACTIONS(135), }, [9] = { - [sym__statement] = STATE(1288), - [sym__statement_separated] = STATE(1288), - [sym__control_statement] = STATE(1288), - [sym_if_statement] = STATE(1288), - [sym_while_statement] = STATE(1288), - [sym_do_while_statement] = STATE(1288), - [sym_for_statement] = STATE(1288), - [sym_for_in_statement] = STATE(1288), - [sym_delete_statement] = STATE(1288), - [sym_exit_statement] = STATE(1288), - [sym_return_statement] = STATE(1288), - [sym_switch_statement] = STATE(1288), - [sym__io_statement] = STATE(1288), + [sym__statement] = STATE(1287), + [sym__statement_separated] = STATE(1287), + [sym__control_statement] = STATE(1287), + [sym_if_statement] = STATE(1287), + [sym_while_statement] = STATE(1287), + [sym_do_while_statement] = STATE(1287), + [sym_for_statement] = STATE(1287), + [sym_for_in_statement] = STATE(1287), + [sym_delete_statement] = STATE(1287), + [sym_exit_statement] = STATE(1287), + [sym_return_statement] = STATE(1287), + [sym_switch_statement] = STATE(1287), + [sym__io_statement] = STATE(1287), [sym__getline_exp] = STATE(503), [sym_getline_input] = STATE(503), [sym_getline_file] = STATE(503), - [sym_print_statement] = STATE(890), - [sym_printf_statement] = STATE(890), - [sym_redirected_io_statement] = STATE(1288), - [sym_piped_io_statement] = STATE(1288), - [sym_block] = STATE(12), - [sym__block_content] = STATE(12), + [sym_print_statement] = STATE(869), + [sym_printf_statement] = STATE(869), + [sym_redirected_io_statement] = STATE(1287), + [sym_piped_io_statement] = STATE(1287), + [sym_block] = STATE(7), + [sym__block_content] = STATE(7), [sym__exp] = STATE(503), - [sym_ternary_exp] = STATE(447), - [sym_binary_exp] = STATE(447), - [sym__binary_in] = STATE(446), - [sym_unary_exp] = STATE(447), + [sym_ternary_exp] = STATE(427), + [sym_binary_exp] = STATE(427), + [sym__binary_in] = STATE(426), + [sym_unary_exp] = STATE(427), [sym_update_exp] = STATE(503), [sym_assignment_exp] = STATE(503), [sym_piped_io_exp] = STATE(503), - [sym_string_concat] = STATE(447), - [sym_field_ref] = STATE(272), - [sym_array_ref] = STATE(253), + [sym_string_concat] = STATE(427), + [sym_field_ref] = STATE(274), + [sym_array_ref] = STATE(268), [sym_regex] = STATE(503), [sym_regex_constant] = STATE(503), - [sym_grouping] = STATE(447), - [sym__primitive] = STATE(447), - [sym_namespace] = STATE(1955), - [sym_ns_qualified_name] = STATE(221), - [sym_number] = STATE(447), - [sym_string] = STATE(447), - [sym_func_call] = STATE(447), + [sym_grouping] = STATE(427), + [sym__primitive] = STATE(427), + [sym_namespace] = STATE(1956), + [sym_ns_qualified_name] = STATE(244), + [sym_number] = STATE(427), + [sym_string] = STATE(427), + [sym_func_call] = STATE(427), [sym_indirect_func_call] = STATE(503), - [sym_comment] = STATE(12), - [aux_sym_block_repeat1] = STATE(12), - [sym_identifier] = ACTIONS(127), - [anon_sym_if] = ACTIONS(129), - [anon_sym_LPAREN] = ACTIONS(131), - [anon_sym_while] = ACTIONS(133), + [sym_comment] = STATE(7), + [aux_sym_block_repeat1] = STATE(7), + [sym_identifier] = ACTIONS(85), + [anon_sym_if] = ACTIONS(87), + [anon_sym_LPAREN] = ACTIONS(89), + [anon_sym_while] = ACTIONS(91), [anon_sym_do] = ACTIONS(93), - [anon_sym_for] = ACTIONS(135), - [sym_break_statement] = ACTIONS(137), - [sym_continue_statement] = ACTIONS(137), + [anon_sym_for] = ACTIONS(95), + [sym_break_statement] = ACTIONS(97), + [sym_continue_statement] = ACTIONS(97), [anon_sym_delete] = ACTIONS(99), - [anon_sym_exit] = ACTIONS(139), - [anon_sym_return] = ACTIONS(141), + [anon_sym_exit] = ACTIONS(101), + [anon_sym_return] = ACTIONS(103), [anon_sym_switch] = ACTIONS(105), - [anon_sym_LBRACE] = ACTIONS(143), + [anon_sym_LBRACE] = ACTIONS(107), [anon_sym_RBRACE] = ACTIONS(256), - [anon_sym_getline] = ACTIONS(147), - [sym_next_statement] = ACTIONS(137), - [sym_nextfile_statement] = ACTIONS(137), - [anon_sym_print] = ACTIONS(149), - [anon_sym_printf] = ACTIONS(151), - [anon_sym_SLASH] = ACTIONS(153), - [anon_sym_PLUS] = ACTIONS(155), - [anon_sym_DASH] = ACTIONS(155), - [anon_sym_BANG] = ACTIONS(157), - [anon_sym_PLUS_PLUS] = ACTIONS(159), - [anon_sym_DASH_DASH] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(161), - [anon_sym_AT] = ACTIONS(163), - [aux_sym_number_token1] = ACTIONS(165), - [aux_sym_number_token2] = ACTIONS(167), - [anon_sym_DQUOTE] = ACTIONS(169), - [anon_sym_POUND] = ACTIONS(171), + [anon_sym_getline] = ACTIONS(111), + [sym_next_statement] = ACTIONS(97), + [sym_nextfile_statement] = ACTIONS(97), + [anon_sym_print] = ACTIONS(113), + [anon_sym_printf] = ACTIONS(115), + [anon_sym_SLASH] = ACTIONS(117), + [anon_sym_PLUS] = ACTIONS(119), + [anon_sym_DASH] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(121), + [anon_sym_PLUS_PLUS] = ACTIONS(123), + [anon_sym_DASH_DASH] = ACTIONS(123), + [anon_sym_DOLLAR] = ACTIONS(125), + [anon_sym_AT] = ACTIONS(127), + [aux_sym_number_token1] = ACTIONS(129), + [aux_sym_number_token2] = ACTIONS(131), + [anon_sym_DQUOTE] = ACTIONS(133), + [anon_sym_POUND] = ACTIONS(135), }, [10] = { - [sym__statement] = STATE(1288), - [sym__statement_separated] = STATE(1288), - [sym__control_statement] = STATE(1288), - [sym_if_statement] = STATE(1288), - [sym_while_statement] = STATE(1288), - [sym_do_while_statement] = STATE(1288), - [sym_for_statement] = STATE(1288), - [sym_for_in_statement] = STATE(1288), - [sym_delete_statement] = STATE(1288), - [sym_exit_statement] = STATE(1288), - [sym_return_statement] = STATE(1288), - [sym_switch_statement] = STATE(1288), - [sym__io_statement] = STATE(1288), + [sym__statement] = STATE(1287), + [sym__statement_separated] = STATE(1287), + [sym__control_statement] = STATE(1287), + [sym_if_statement] = STATE(1287), + [sym_while_statement] = STATE(1287), + [sym_do_while_statement] = STATE(1287), + [sym_for_statement] = STATE(1287), + [sym_for_in_statement] = STATE(1287), + [sym_delete_statement] = STATE(1287), + [sym_exit_statement] = STATE(1287), + [sym_return_statement] = STATE(1287), + [sym_switch_statement] = STATE(1287), + [sym__io_statement] = STATE(1287), [sym__getline_exp] = STATE(503), [sym_getline_input] = STATE(503), [sym_getline_file] = STATE(503), - [sym_print_statement] = STATE(890), - [sym_printf_statement] = STATE(890), - [sym_redirected_io_statement] = STATE(1288), - [sym_piped_io_statement] = STATE(1288), - [sym_block] = STATE(6), - [sym__block_content] = STATE(6), + [sym_print_statement] = STATE(869), + [sym_printf_statement] = STATE(869), + [sym_redirected_io_statement] = STATE(1287), + [sym_piped_io_statement] = STATE(1287), + [sym_block] = STATE(9), + [sym__block_content] = STATE(9), [sym__exp] = STATE(503), - [sym_ternary_exp] = STATE(447), - [sym_binary_exp] = STATE(447), - [sym__binary_in] = STATE(446), - [sym_unary_exp] = STATE(447), + [sym_ternary_exp] = STATE(427), + [sym_binary_exp] = STATE(427), + [sym__binary_in] = STATE(426), + [sym_unary_exp] = STATE(427), [sym_update_exp] = STATE(503), [sym_assignment_exp] = STATE(503), [sym_piped_io_exp] = STATE(503), - [sym_string_concat] = STATE(447), - [sym_field_ref] = STATE(272), - [sym_array_ref] = STATE(253), + [sym_string_concat] = STATE(427), + [sym_field_ref] = STATE(274), + [sym_array_ref] = STATE(268), [sym_regex] = STATE(503), [sym_regex_constant] = STATE(503), - [sym_grouping] = STATE(447), - [sym__primitive] = STATE(447), - [sym_namespace] = STATE(1955), - [sym_ns_qualified_name] = STATE(221), - [sym_number] = STATE(447), - [sym_string] = STATE(447), - [sym_func_call] = STATE(447), + [sym_grouping] = STATE(427), + [sym__primitive] = STATE(427), + [sym_namespace] = STATE(1956), + [sym_ns_qualified_name] = STATE(244), + [sym_number] = STATE(427), + [sym_string] = STATE(427), + [sym_func_call] = STATE(427), [sym_indirect_func_call] = STATE(503), - [sym_comment] = STATE(6), - [aux_sym_block_repeat1] = STATE(6), - [sym_identifier] = ACTIONS(127), - [anon_sym_if] = ACTIONS(129), - [anon_sym_LPAREN] = ACTIONS(131), - [anon_sym_while] = ACTIONS(133), + [sym_comment] = STATE(9), + [aux_sym_block_repeat1] = STATE(9), + [sym_identifier] = ACTIONS(85), + [anon_sym_if] = ACTIONS(87), + [anon_sym_LPAREN] = ACTIONS(89), + [anon_sym_while] = ACTIONS(91), [anon_sym_do] = ACTIONS(93), - [anon_sym_for] = ACTIONS(135), - [sym_break_statement] = ACTIONS(137), - [sym_continue_statement] = ACTIONS(137), + [anon_sym_for] = ACTIONS(95), + [sym_break_statement] = ACTIONS(97), + [sym_continue_statement] = ACTIONS(97), [anon_sym_delete] = ACTIONS(99), - [anon_sym_exit] = ACTIONS(139), - [anon_sym_return] = ACTIONS(141), + [anon_sym_exit] = ACTIONS(101), + [anon_sym_return] = ACTIONS(103), [anon_sym_switch] = ACTIONS(105), - [anon_sym_LBRACE] = ACTIONS(143), + [anon_sym_LBRACE] = ACTIONS(107), [anon_sym_RBRACE] = ACTIONS(258), - [anon_sym_getline] = ACTIONS(147), - [sym_next_statement] = ACTIONS(137), - [sym_nextfile_statement] = ACTIONS(137), - [anon_sym_print] = ACTIONS(149), - [anon_sym_printf] = ACTIONS(151), - [anon_sym_SLASH] = ACTIONS(153), - [anon_sym_PLUS] = ACTIONS(155), - [anon_sym_DASH] = ACTIONS(155), - [anon_sym_BANG] = ACTIONS(157), - [anon_sym_PLUS_PLUS] = ACTIONS(159), - [anon_sym_DASH_DASH] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(161), - [anon_sym_AT] = ACTIONS(163), - [aux_sym_number_token1] = ACTIONS(165), - [aux_sym_number_token2] = ACTIONS(167), - [anon_sym_DQUOTE] = ACTIONS(169), - [anon_sym_POUND] = ACTIONS(171), + [anon_sym_getline] = ACTIONS(111), + [sym_next_statement] = ACTIONS(97), + [sym_nextfile_statement] = ACTIONS(97), + [anon_sym_print] = ACTIONS(113), + [anon_sym_printf] = ACTIONS(115), + [anon_sym_SLASH] = ACTIONS(117), + [anon_sym_PLUS] = ACTIONS(119), + [anon_sym_DASH] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(121), + [anon_sym_PLUS_PLUS] = ACTIONS(123), + [anon_sym_DASH_DASH] = ACTIONS(123), + [anon_sym_DOLLAR] = ACTIONS(125), + [anon_sym_AT] = ACTIONS(127), + [aux_sym_number_token1] = ACTIONS(129), + [aux_sym_number_token2] = ACTIONS(131), + [anon_sym_DQUOTE] = ACTIONS(133), + [anon_sym_POUND] = ACTIONS(135), }, [11] = { - [sym__statement] = STATE(1288), - [sym__statement_separated] = STATE(1288), - [sym__control_statement] = STATE(1288), - [sym_if_statement] = STATE(1288), - [sym_while_statement] = STATE(1288), - [sym_do_while_statement] = STATE(1288), - [sym_for_statement] = STATE(1288), - [sym_for_in_statement] = STATE(1288), - [sym_delete_statement] = STATE(1288), - [sym_exit_statement] = STATE(1288), - [sym_return_statement] = STATE(1288), - [sym_switch_statement] = STATE(1288), - [sym__io_statement] = STATE(1288), + [sym__statement] = STATE(1287), + [sym__statement_separated] = STATE(1287), + [sym__control_statement] = STATE(1287), + [sym_if_statement] = STATE(1287), + [sym_while_statement] = STATE(1287), + [sym_do_while_statement] = STATE(1287), + [sym_for_statement] = STATE(1287), + [sym_for_in_statement] = STATE(1287), + [sym_delete_statement] = STATE(1287), + [sym_exit_statement] = STATE(1287), + [sym_return_statement] = STATE(1287), + [sym_switch_statement] = STATE(1287), + [sym__io_statement] = STATE(1287), [sym__getline_exp] = STATE(503), [sym_getline_input] = STATE(503), [sym_getline_file] = STATE(503), - [sym_print_statement] = STATE(890), - [sym_printf_statement] = STATE(890), - [sym_redirected_io_statement] = STATE(1288), - [sym_piped_io_statement] = STATE(1288), - [sym_block] = STATE(10), - [sym__block_content] = STATE(10), + [sym_print_statement] = STATE(869), + [sym_printf_statement] = STATE(869), + [sym_redirected_io_statement] = STATE(1287), + [sym_piped_io_statement] = STATE(1287), + [sym_block] = STATE(7), + [sym__block_content] = STATE(7), [sym__exp] = STATE(503), - [sym_ternary_exp] = STATE(447), - [sym_binary_exp] = STATE(447), - [sym__binary_in] = STATE(446), - [sym_unary_exp] = STATE(447), + [sym_ternary_exp] = STATE(427), + [sym_binary_exp] = STATE(427), + [sym__binary_in] = STATE(426), + [sym_unary_exp] = STATE(427), [sym_update_exp] = STATE(503), [sym_assignment_exp] = STATE(503), [sym_piped_io_exp] = STATE(503), - [sym_string_concat] = STATE(447), - [sym_field_ref] = STATE(272), - [sym_array_ref] = STATE(253), + [sym_string_concat] = STATE(427), + [sym_field_ref] = STATE(274), + [sym_array_ref] = STATE(268), [sym_regex] = STATE(503), [sym_regex_constant] = STATE(503), - [sym_grouping] = STATE(447), - [sym__primitive] = STATE(447), - [sym_namespace] = STATE(1955), - [sym_ns_qualified_name] = STATE(221), - [sym_number] = STATE(447), - [sym_string] = STATE(447), - [sym_func_call] = STATE(447), + [sym_grouping] = STATE(427), + [sym__primitive] = STATE(427), + [sym_namespace] = STATE(1956), + [sym_ns_qualified_name] = STATE(244), + [sym_number] = STATE(427), + [sym_string] = STATE(427), + [sym_func_call] = STATE(427), [sym_indirect_func_call] = STATE(503), - [sym_comment] = STATE(10), - [aux_sym_block_repeat1] = STATE(10), - [sym_identifier] = ACTIONS(127), - [anon_sym_if] = ACTIONS(129), - [anon_sym_LPAREN] = ACTIONS(131), - [anon_sym_while] = ACTIONS(133), + [sym_comment] = STATE(7), + [aux_sym_block_repeat1] = STATE(7), + [sym_identifier] = ACTIONS(85), + [anon_sym_if] = ACTIONS(87), + [anon_sym_LPAREN] = ACTIONS(89), + [anon_sym_while] = ACTIONS(91), [anon_sym_do] = ACTIONS(93), - [anon_sym_for] = ACTIONS(135), - [sym_break_statement] = ACTIONS(137), - [sym_continue_statement] = ACTIONS(137), + [anon_sym_for] = ACTIONS(95), + [sym_break_statement] = ACTIONS(97), + [sym_continue_statement] = ACTIONS(97), [anon_sym_delete] = ACTIONS(99), - [anon_sym_exit] = ACTIONS(139), - [anon_sym_return] = ACTIONS(141), + [anon_sym_exit] = ACTIONS(101), + [anon_sym_return] = ACTIONS(103), [anon_sym_switch] = ACTIONS(105), - [anon_sym_LBRACE] = ACTIONS(143), + [anon_sym_LBRACE] = ACTIONS(107), [anon_sym_RBRACE] = ACTIONS(260), - [anon_sym_getline] = ACTIONS(147), - [sym_next_statement] = ACTIONS(137), - [sym_nextfile_statement] = ACTIONS(137), - [anon_sym_print] = ACTIONS(149), - [anon_sym_printf] = ACTIONS(151), - [anon_sym_SLASH] = ACTIONS(153), - [anon_sym_PLUS] = ACTIONS(155), - [anon_sym_DASH] = ACTIONS(155), - [anon_sym_BANG] = ACTIONS(157), - [anon_sym_PLUS_PLUS] = ACTIONS(159), - [anon_sym_DASH_DASH] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(161), - [anon_sym_AT] = ACTIONS(163), - [aux_sym_number_token1] = ACTIONS(165), - [aux_sym_number_token2] = ACTIONS(167), - [anon_sym_DQUOTE] = ACTIONS(169), - [anon_sym_POUND] = ACTIONS(171), + [anon_sym_getline] = ACTIONS(111), + [sym_next_statement] = ACTIONS(97), + [sym_nextfile_statement] = ACTIONS(97), + [anon_sym_print] = ACTIONS(113), + [anon_sym_printf] = ACTIONS(115), + [anon_sym_SLASH] = ACTIONS(117), + [anon_sym_PLUS] = ACTIONS(119), + [anon_sym_DASH] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(121), + [anon_sym_PLUS_PLUS] = ACTIONS(123), + [anon_sym_DASH_DASH] = ACTIONS(123), + [anon_sym_DOLLAR] = ACTIONS(125), + [anon_sym_AT] = ACTIONS(127), + [aux_sym_number_token1] = ACTIONS(129), + [aux_sym_number_token2] = ACTIONS(131), + [anon_sym_DQUOTE] = ACTIONS(133), + [anon_sym_POUND] = ACTIONS(135), }, [12] = { - [sym__statement] = STATE(1288), - [sym__statement_separated] = STATE(1288), - [sym__control_statement] = STATE(1288), - [sym_if_statement] = STATE(1288), - [sym_while_statement] = STATE(1288), - [sym_do_while_statement] = STATE(1288), - [sym_for_statement] = STATE(1288), - [sym_for_in_statement] = STATE(1288), - [sym_delete_statement] = STATE(1288), - [sym_exit_statement] = STATE(1288), - [sym_return_statement] = STATE(1288), - [sym_switch_statement] = STATE(1288), - [sym__io_statement] = STATE(1288), + [sym__statement] = STATE(1287), + [sym__statement_separated] = STATE(1287), + [sym__control_statement] = STATE(1287), + [sym_if_statement] = STATE(1287), + [sym_while_statement] = STATE(1287), + [sym_do_while_statement] = STATE(1287), + [sym_for_statement] = STATE(1287), + [sym_for_in_statement] = STATE(1287), + [sym_delete_statement] = STATE(1287), + [sym_exit_statement] = STATE(1287), + [sym_return_statement] = STATE(1287), + [sym_switch_statement] = STATE(1287), + [sym__io_statement] = STATE(1287), [sym__getline_exp] = STATE(503), [sym_getline_input] = STATE(503), [sym_getline_file] = STATE(503), - [sym_print_statement] = STATE(890), - [sym_printf_statement] = STATE(890), - [sym_redirected_io_statement] = STATE(1288), - [sym_piped_io_statement] = STATE(1288), - [sym_block] = STATE(6), - [sym__block_content] = STATE(6), + [sym_print_statement] = STATE(869), + [sym_printf_statement] = STATE(869), + [sym_redirected_io_statement] = STATE(1287), + [sym_piped_io_statement] = STATE(1287), + [sym_block] = STATE(11), + [sym__block_content] = STATE(11), [sym__exp] = STATE(503), - [sym_ternary_exp] = STATE(447), - [sym_binary_exp] = STATE(447), - [sym__binary_in] = STATE(446), - [sym_unary_exp] = STATE(447), + [sym_ternary_exp] = STATE(427), + [sym_binary_exp] = STATE(427), + [sym__binary_in] = STATE(426), + [sym_unary_exp] = STATE(427), [sym_update_exp] = STATE(503), [sym_assignment_exp] = STATE(503), [sym_piped_io_exp] = STATE(503), - [sym_string_concat] = STATE(447), - [sym_field_ref] = STATE(272), - [sym_array_ref] = STATE(253), + [sym_string_concat] = STATE(427), + [sym_field_ref] = STATE(274), + [sym_array_ref] = STATE(268), [sym_regex] = STATE(503), [sym_regex_constant] = STATE(503), - [sym_grouping] = STATE(447), - [sym__primitive] = STATE(447), - [sym_namespace] = STATE(1955), - [sym_ns_qualified_name] = STATE(221), - [sym_number] = STATE(447), - [sym_string] = STATE(447), - [sym_func_call] = STATE(447), + [sym_grouping] = STATE(427), + [sym__primitive] = STATE(427), + [sym_namespace] = STATE(1956), + [sym_ns_qualified_name] = STATE(244), + [sym_number] = STATE(427), + [sym_string] = STATE(427), + [sym_func_call] = STATE(427), [sym_indirect_func_call] = STATE(503), - [sym_comment] = STATE(6), - [aux_sym_block_repeat1] = STATE(6), - [sym_identifier] = ACTIONS(127), - [anon_sym_if] = ACTIONS(129), - [anon_sym_LPAREN] = ACTIONS(131), - [anon_sym_while] = ACTIONS(133), + [sym_comment] = STATE(11), + [aux_sym_block_repeat1] = STATE(11), + [sym_identifier] = ACTIONS(85), + [anon_sym_if] = ACTIONS(87), + [anon_sym_LPAREN] = ACTIONS(89), + [anon_sym_while] = ACTIONS(91), [anon_sym_do] = ACTIONS(93), - [anon_sym_for] = ACTIONS(135), - [sym_break_statement] = ACTIONS(137), - [sym_continue_statement] = ACTIONS(137), + [anon_sym_for] = ACTIONS(95), + [sym_break_statement] = ACTIONS(97), + [sym_continue_statement] = ACTIONS(97), [anon_sym_delete] = ACTIONS(99), - [anon_sym_exit] = ACTIONS(139), - [anon_sym_return] = ACTIONS(141), + [anon_sym_exit] = ACTIONS(101), + [anon_sym_return] = ACTIONS(103), [anon_sym_switch] = ACTIONS(105), - [anon_sym_LBRACE] = ACTIONS(143), + [anon_sym_LBRACE] = ACTIONS(107), [anon_sym_RBRACE] = ACTIONS(262), - [anon_sym_getline] = ACTIONS(147), - [sym_next_statement] = ACTIONS(137), - [sym_nextfile_statement] = ACTIONS(137), - [anon_sym_print] = ACTIONS(149), - [anon_sym_printf] = ACTIONS(151), - [anon_sym_SLASH] = ACTIONS(153), - [anon_sym_PLUS] = ACTIONS(155), - [anon_sym_DASH] = ACTIONS(155), - [anon_sym_BANG] = ACTIONS(157), - [anon_sym_PLUS_PLUS] = ACTIONS(159), - [anon_sym_DASH_DASH] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(161), - [anon_sym_AT] = ACTIONS(163), - [aux_sym_number_token1] = ACTIONS(165), - [aux_sym_number_token2] = ACTIONS(167), - [anon_sym_DQUOTE] = ACTIONS(169), - [anon_sym_POUND] = ACTIONS(171), + [anon_sym_getline] = ACTIONS(111), + [sym_next_statement] = ACTIONS(97), + [sym_nextfile_statement] = ACTIONS(97), + [anon_sym_print] = ACTIONS(113), + [anon_sym_printf] = ACTIONS(115), + [anon_sym_SLASH] = ACTIONS(117), + [anon_sym_PLUS] = ACTIONS(119), + [anon_sym_DASH] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(121), + [anon_sym_PLUS_PLUS] = ACTIONS(123), + [anon_sym_DASH_DASH] = ACTIONS(123), + [anon_sym_DOLLAR] = ACTIONS(125), + [anon_sym_AT] = ACTIONS(127), + [aux_sym_number_token1] = ACTIONS(129), + [aux_sym_number_token2] = ACTIONS(131), + [anon_sym_DQUOTE] = ACTIONS(133), + [anon_sym_POUND] = ACTIONS(135), }, [13] = { - [sym__statement] = STATE(1227), - [sym__statement_separated] = STATE(1227), - [sym__control_statement] = STATE(1227), - [sym_if_statement] = STATE(1227), - [sym_while_statement] = STATE(1227), - [sym_do_while_statement] = STATE(1227), - [sym_for_statement] = STATE(1227), - [sym_for_in_statement] = STATE(1227), - [sym_delete_statement] = STATE(1227), - [sym_exit_statement] = STATE(1227), - [sym_return_statement] = STATE(1227), - [sym_switch_statement] = STATE(1227), - [sym__io_statement] = STATE(1227), + [sym__statement] = STATE(1195), + [sym__statement_separated] = STATE(1195), + [sym__control_statement] = STATE(1195), + [sym_if_statement] = STATE(1195), + [sym_while_statement] = STATE(1195), + [sym_do_while_statement] = STATE(1195), + [sym_for_statement] = STATE(1195), + [sym_for_in_statement] = STATE(1195), + [sym_delete_statement] = STATE(1195), + [sym_exit_statement] = STATE(1195), + [sym_return_statement] = STATE(1195), + [sym_switch_statement] = STATE(1195), + [sym__io_statement] = STATE(1195), [sym__getline_exp] = STATE(503), [sym_getline_input] = STATE(503), [sym_getline_file] = STATE(503), - [sym_print_statement] = STATE(890), - [sym_printf_statement] = STATE(890), - [sym_redirected_io_statement] = STATE(1227), - [sym_piped_io_statement] = STATE(1227), - [sym_block] = STATE(1226), + [sym_print_statement] = STATE(869), + [sym_printf_statement] = STATE(869), + [sym_redirected_io_statement] = STATE(1195), + [sym_piped_io_statement] = STATE(1195), + [sym_block] = STATE(1257), [sym__exp] = STATE(503), - [sym_ternary_exp] = STATE(447), - [sym_binary_exp] = STATE(447), - [sym__binary_in] = STATE(446), - [sym_unary_exp] = STATE(447), + [sym_ternary_exp] = STATE(427), + [sym_binary_exp] = STATE(427), + [sym__binary_in] = STATE(426), + [sym_unary_exp] = STATE(427), [sym_update_exp] = STATE(503), [sym_assignment_exp] = STATE(503), [sym_piped_io_exp] = STATE(503), - [sym_string_concat] = STATE(447), - [sym_field_ref] = STATE(272), - [sym_array_ref] = STATE(253), + [sym_string_concat] = STATE(427), + [sym_field_ref] = STATE(274), + [sym_array_ref] = STATE(268), [sym_regex] = STATE(503), [sym_regex_constant] = STATE(503), - [sym_grouping] = STATE(447), - [sym__primitive] = STATE(447), - [sym_namespace] = STATE(1955), - [sym_ns_qualified_name] = STATE(221), - [sym_number] = STATE(447), - [sym_string] = STATE(447), - [sym_func_call] = STATE(447), + [sym_grouping] = STATE(427), + [sym__primitive] = STATE(427), + [sym_namespace] = STATE(1956), + [sym_ns_qualified_name] = STATE(244), + [sym_number] = STATE(427), + [sym_string] = STATE(427), + [sym_func_call] = STATE(427), [sym_indirect_func_call] = STATE(503), - [sym_comment] = STATE(1238), - [aux_sym_if_statement_repeat1] = STATE(1238), - [sym_identifier] = ACTIONS(127), + [sym_comment] = STATE(118), + [aux_sym_if_statement_repeat1] = STATE(118), + [sym_identifier] = ACTIONS(85), [anon_sym_SEMI] = ACTIONS(264), - [anon_sym_if] = ACTIONS(129), - [anon_sym_LPAREN] = ACTIONS(131), - [anon_sym_while] = ACTIONS(133), + [anon_sym_if] = ACTIONS(87), + [anon_sym_LPAREN] = ACTIONS(89), + [anon_sym_while] = ACTIONS(91), [anon_sym_do] = ACTIONS(93), - [anon_sym_for] = ACTIONS(135), + [anon_sym_for] = ACTIONS(95), [sym_break_statement] = ACTIONS(266), [sym_continue_statement] = ACTIONS(266), [anon_sym_delete] = ACTIONS(99), - [anon_sym_exit] = ACTIONS(139), - [anon_sym_return] = ACTIONS(141), + [anon_sym_exit] = ACTIONS(101), + [anon_sym_return] = ACTIONS(103), [anon_sym_switch] = ACTIONS(105), [anon_sym_LBRACE] = ACTIONS(268), - [anon_sym_getline] = ACTIONS(147), + [anon_sym_getline] = ACTIONS(111), [sym_next_statement] = ACTIONS(266), [sym_nextfile_statement] = ACTIONS(266), - [anon_sym_print] = ACTIONS(149), - [anon_sym_printf] = ACTIONS(151), - [anon_sym_SLASH] = ACTIONS(153), - [anon_sym_PLUS] = ACTIONS(155), - [anon_sym_DASH] = ACTIONS(155), - [anon_sym_BANG] = ACTIONS(157), - [anon_sym_PLUS_PLUS] = ACTIONS(159), - [anon_sym_DASH_DASH] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(161), - [anon_sym_AT] = ACTIONS(163), - [aux_sym_number_token1] = ACTIONS(165), - [aux_sym_number_token2] = ACTIONS(167), - [anon_sym_DQUOTE] = ACTIONS(169), - [anon_sym_POUND] = ACTIONS(171), + [anon_sym_print] = ACTIONS(113), + [anon_sym_printf] = ACTIONS(115), + [anon_sym_SLASH] = ACTIONS(117), + [anon_sym_PLUS] = ACTIONS(119), + [anon_sym_DASH] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(121), + [anon_sym_PLUS_PLUS] = ACTIONS(123), + [anon_sym_DASH_DASH] = ACTIONS(123), + [anon_sym_DOLLAR] = ACTIONS(125), + [anon_sym_AT] = ACTIONS(127), + [aux_sym_number_token1] = ACTIONS(129), + [aux_sym_number_token2] = ACTIONS(131), + [anon_sym_DQUOTE] = ACTIONS(133), + [anon_sym_POUND] = ACTIONS(135), }, [14] = { - [sym__statement] = STATE(1237), - [sym__statement_separated] = STATE(3), - [sym__control_statement] = STATE(1237), - [sym_if_statement] = STATE(1237), - [sym_while_statement] = STATE(1237), - [sym_do_while_statement] = STATE(1237), - [sym_for_statement] = STATE(1237), - [sym_for_in_statement] = STATE(1237), - [sym_delete_statement] = STATE(1237), - [sym_exit_statement] = STATE(1237), - [sym_return_statement] = STATE(1237), - [sym_switch_statement] = STATE(1237), - [sym__io_statement] = STATE(1237), - [sym__getline_exp] = STATE(1495), - [sym_getline_input] = STATE(1495), - [sym_getline_file] = STATE(1495), - [sym_print_statement] = STATE(1696), - [sym_printf_statement] = STATE(1696), - [sym_redirected_io_statement] = STATE(1237), - [sym_piped_io_statement] = STATE(1237), - [sym_block] = STATE(1236), - [sym__exp] = STATE(1495), - [sym_ternary_exp] = STATE(1421), - [sym_binary_exp] = STATE(1421), - [sym__binary_in] = STATE(1373), - [sym_unary_exp] = STATE(1421), - [sym_update_exp] = STATE(1495), - [sym_assignment_exp] = STATE(1495), - [sym_piped_io_exp] = STATE(1495), - [sym_string_concat] = STATE(1421), - [sym_field_ref] = STATE(703), - [sym_array_ref] = STATE(610), - [sym_regex] = STATE(1495), - [sym_regex_constant] = STATE(1495), - [sym_grouping] = STATE(1421), - [sym__primitive] = STATE(1421), - [sym_namespace] = STATE(1955), - [sym_ns_qualified_name] = STATE(607), - [sym_number] = STATE(1421), - [sym_string] = STATE(1421), - [sym_func_call] = STATE(1421), - [sym_indirect_func_call] = STATE(1495), - [sym_comment] = STATE(1238), - [aux_sym_if_statement_repeat1] = STATE(1238), - [sym_identifier] = ACTIONS(85), - [anon_sym_SEMI] = ACTIONS(270), - [anon_sym_if] = ACTIONS(87), - [anon_sym_LPAREN] = ACTIONS(272), - [anon_sym_while] = ACTIONS(91), + [sym__statement] = STATE(1209), + [sym__statement_separated] = STATE(143), + [sym__control_statement] = STATE(1209), + [sym_if_statement] = STATE(1209), + [sym_while_statement] = STATE(1209), + [sym_do_while_statement] = STATE(1209), + [sym_for_statement] = STATE(1209), + [sym_for_in_statement] = STATE(1209), + [sym_delete_statement] = STATE(1209), + [sym_exit_statement] = STATE(1209), + [sym_return_statement] = STATE(1209), + [sym_switch_statement] = STATE(1209), + [sym__io_statement] = STATE(1209), + [sym__getline_exp] = STATE(1570), + [sym_getline_input] = STATE(1570), + [sym_getline_file] = STATE(1570), + [sym_print_statement] = STATE(1707), + [sym_printf_statement] = STATE(1707), + [sym_redirected_io_statement] = STATE(1209), + [sym_piped_io_statement] = STATE(1209), + [sym_block] = STATE(1210), + [sym__exp] = STATE(1570), + [sym_ternary_exp] = STATE(1476), + [sym_binary_exp] = STATE(1476), + [sym__binary_in] = STATE(1385), + [sym_unary_exp] = STATE(1476), + [sym_update_exp] = STATE(1570), + [sym_assignment_exp] = STATE(1570), + [sym_piped_io_exp] = STATE(1570), + [sym_string_concat] = STATE(1476), + [sym_field_ref] = STATE(1194), + [sym_array_ref] = STATE(991), + [sym_regex] = STATE(1570), + [sym_regex_constant] = STATE(1570), + [sym_grouping] = STATE(1476), + [sym__primitive] = STATE(1476), + [sym_namespace] = STATE(1956), + [sym_ns_qualified_name] = STATE(720), + [sym_number] = STATE(1476), + [sym_string] = STATE(1476), + [sym_func_call] = STATE(1476), + [sym_indirect_func_call] = STATE(1570), + [sym_comment] = STATE(85), + [aux_sym_if_statement_repeat1] = STATE(85), + [sym_identifier] = ACTIONS(270), + [anon_sym_SEMI] = ACTIONS(272), + [anon_sym_if] = ACTIONS(274), + [anon_sym_LPAREN] = ACTIONS(276), + [anon_sym_while] = ACTIONS(278), [anon_sym_do] = ACTIONS(93), - [anon_sym_for] = ACTIONS(95), - [sym_break_statement] = ACTIONS(274), - [sym_continue_statement] = ACTIONS(274), + [anon_sym_for] = ACTIONS(280), + [sym_break_statement] = ACTIONS(282), + [sym_continue_statement] = ACTIONS(282), [anon_sym_delete] = ACTIONS(99), - [anon_sym_exit] = ACTIONS(101), - [anon_sym_return] = ACTIONS(103), + [anon_sym_exit] = ACTIONS(284), + [anon_sym_return] = ACTIONS(286), [anon_sym_switch] = ACTIONS(105), [anon_sym_LBRACE] = ACTIONS(268), - [anon_sym_getline] = ACTIONS(107), - [sym_next_statement] = ACTIONS(274), - [sym_nextfile_statement] = ACTIONS(274), - [anon_sym_print] = ACTIONS(109), - [anon_sym_printf] = ACTIONS(111), - [anon_sym_SLASH] = ACTIONS(276), - [anon_sym_PLUS] = ACTIONS(115), - [anon_sym_DASH] = ACTIONS(115), - [anon_sym_BANG] = ACTIONS(278), - [anon_sym_PLUS_PLUS] = ACTIONS(280), - [anon_sym_DASH_DASH] = ACTIONS(280), - [anon_sym_DOLLAR] = ACTIONS(282), - [anon_sym_AT] = ACTIONS(284), - [aux_sym_number_token1] = ACTIONS(123), - [aux_sym_number_token2] = ACTIONS(286), - [anon_sym_DQUOTE] = ACTIONS(288), - [anon_sym_POUND] = ACTIONS(171), + [anon_sym_getline] = ACTIONS(288), + [sym_next_statement] = ACTIONS(282), + [sym_nextfile_statement] = ACTIONS(282), + [anon_sym_print] = ACTIONS(290), + [anon_sym_printf] = ACTIONS(292), + [anon_sym_SLASH] = ACTIONS(294), + [anon_sym_PLUS] = ACTIONS(296), + [anon_sym_DASH] = ACTIONS(296), + [anon_sym_BANG] = ACTIONS(298), + [anon_sym_PLUS_PLUS] = ACTIONS(300), + [anon_sym_DASH_DASH] = ACTIONS(300), + [anon_sym_DOLLAR] = ACTIONS(302), + [anon_sym_AT] = ACTIONS(304), + [aux_sym_number_token1] = ACTIONS(169), + [aux_sym_number_token2] = ACTIONS(306), + [anon_sym_DQUOTE] = ACTIONS(308), + [anon_sym_POUND] = ACTIONS(135), }, [15] = { - [sym__statement] = STATE(1205), - [sym__statement_separated] = STATE(3), - [sym__control_statement] = STATE(1205), - [sym_if_statement] = STATE(1205), - [sym_while_statement] = STATE(1205), - [sym_do_while_statement] = STATE(1205), - [sym_for_statement] = STATE(1205), - [sym_for_in_statement] = STATE(1205), - [sym_delete_statement] = STATE(1205), - [sym_exit_statement] = STATE(1205), - [sym_return_statement] = STATE(1205), - [sym_switch_statement] = STATE(1205), - [sym__io_statement] = STATE(1205), - [sym__getline_exp] = STATE(1495), - [sym_getline_input] = STATE(1495), - [sym_getline_file] = STATE(1495), + [sym__statement] = STATE(1134), + [sym__statement_separated] = STATE(2), + [sym__control_statement] = STATE(1134), + [sym_if_statement] = STATE(1134), + [sym_while_statement] = STATE(1134), + [sym_do_while_statement] = STATE(1134), + [sym_for_statement] = STATE(1134), + [sym_for_in_statement] = STATE(1134), + [sym_delete_statement] = STATE(1134), + [sym_exit_statement] = STATE(1134), + [sym_return_statement] = STATE(1134), + [sym_switch_statement] = STATE(1134), + [sym__io_statement] = STATE(1134), + [sym__getline_exp] = STATE(1446), + [sym_getline_input] = STATE(1446), + [sym_getline_file] = STATE(1446), [sym_print_statement] = STATE(1696), [sym_printf_statement] = STATE(1696), - [sym_redirected_io_statement] = STATE(1205), - [sym_piped_io_statement] = STATE(1205), - [sym_block] = STATE(1206), - [sym__exp] = STATE(1495), - [sym_ternary_exp] = STATE(1421), - [sym_binary_exp] = STATE(1421), - [sym__binary_in] = STATE(1373), - [sym_unary_exp] = STATE(1421), - [sym_update_exp] = STATE(1495), - [sym_assignment_exp] = STATE(1495), - [sym_piped_io_exp] = STATE(1495), - [sym_string_concat] = STATE(1421), - [sym_field_ref] = STATE(703), - [sym_array_ref] = STATE(610), - [sym_regex] = STATE(1495), - [sym_regex_constant] = STATE(1495), - [sym_grouping] = STATE(1421), - [sym__primitive] = STATE(1421), - [sym_namespace] = STATE(1955), - [sym_ns_qualified_name] = STATE(607), - [sym_number] = STATE(1421), - [sym_string] = STATE(1421), - [sym_func_call] = STATE(1421), - [sym_indirect_func_call] = STATE(1495), - [sym_comment] = STATE(67), - [aux_sym_if_statement_repeat1] = STATE(67), - [sym_identifier] = ACTIONS(85), - [anon_sym_SEMI] = ACTIONS(290), - [anon_sym_if] = ACTIONS(87), - [anon_sym_LPAREN] = ACTIONS(272), - [anon_sym_while] = ACTIONS(91), - [anon_sym_do] = ACTIONS(93), - [anon_sym_for] = ACTIONS(95), - [sym_break_statement] = ACTIONS(292), - [sym_continue_statement] = ACTIONS(292), - [anon_sym_delete] = ACTIONS(99), - [anon_sym_exit] = ACTIONS(101), - [anon_sym_return] = ACTIONS(103), - [anon_sym_switch] = ACTIONS(105), - [anon_sym_LBRACE] = ACTIONS(268), - [anon_sym_getline] = ACTIONS(107), - [sym_next_statement] = ACTIONS(292), - [sym_nextfile_statement] = ACTIONS(292), - [anon_sym_print] = ACTIONS(109), - [anon_sym_printf] = ACTIONS(111), - [anon_sym_SLASH] = ACTIONS(276), - [anon_sym_PLUS] = ACTIONS(115), - [anon_sym_DASH] = ACTIONS(115), - [anon_sym_BANG] = ACTIONS(278), - [anon_sym_PLUS_PLUS] = ACTIONS(280), - [anon_sym_DASH_DASH] = ACTIONS(280), - [anon_sym_DOLLAR] = ACTIONS(282), - [anon_sym_AT] = ACTIONS(284), - [aux_sym_number_token1] = ACTIONS(123), - [aux_sym_number_token2] = ACTIONS(286), - [anon_sym_DQUOTE] = ACTIONS(288), - [anon_sym_POUND] = ACTIONS(171), + [sym_redirected_io_statement] = STATE(1134), + [sym_piped_io_statement] = STATE(1134), + [sym_block] = STATE(1135), + [sym__exp] = STATE(1446), + [sym_ternary_exp] = STATE(1371), + [sym_binary_exp] = STATE(1371), + [sym__binary_in] = STATE(1305), + [sym_unary_exp] = STATE(1371), + [sym_update_exp] = STATE(1446), + [sym_assignment_exp] = STATE(1446), + [sym_piped_io_exp] = STATE(1446), + [sym_string_concat] = STATE(1371), + [sym_field_ref] = STATE(632), + [sym_array_ref] = STATE(601), + [sym_regex] = STATE(1446), + [sym_regex_constant] = STATE(1446), + [sym_grouping] = STATE(1371), + [sym__primitive] = STATE(1371), + [sym_namespace] = STATE(2068), + [sym_ns_qualified_name] = STATE(590), + [sym_number] = STATE(1371), + [sym_string] = STATE(1371), + [sym_func_call] = STATE(1371), + [sym_indirect_func_call] = STATE(1446), + [sym_comment] = STATE(1252), + [aux_sym_if_statement_repeat1] = STATE(1252), + [sym_identifier] = ACTIONS(39), + [anon_sym_SEMI] = ACTIONS(310), + [anon_sym_if] = ACTIONS(43), + [anon_sym_LPAREN] = ACTIONS(312), + [anon_sym_while] = ACTIONS(47), + [anon_sym_do] = ACTIONS(49), + [anon_sym_for] = ACTIONS(51), + [sym_break_statement] = ACTIONS(314), + [sym_continue_statement] = ACTIONS(314), + [anon_sym_delete] = ACTIONS(55), + [anon_sym_exit] = ACTIONS(57), + [anon_sym_return] = ACTIONS(59), + [anon_sym_switch] = ACTIONS(61), + [anon_sym_LBRACE] = ACTIONS(316), + [anon_sym_getline] = ACTIONS(63), + [sym_next_statement] = ACTIONS(314), + [sym_nextfile_statement] = ACTIONS(314), + [anon_sym_print] = ACTIONS(65), + [anon_sym_printf] = ACTIONS(67), + [anon_sym_SLASH] = ACTIONS(318), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(71), + [anon_sym_BANG] = ACTIONS(320), + [anon_sym_PLUS_PLUS] = ACTIONS(322), + [anon_sym_DASH_DASH] = ACTIONS(322), + [anon_sym_DOLLAR] = ACTIONS(324), + [anon_sym_AT] = ACTIONS(326), + [aux_sym_number_token1] = ACTIONS(79), + [aux_sym_number_token2] = ACTIONS(328), + [anon_sym_DQUOTE] = ACTIONS(330), + [anon_sym_POUND] = ACTIONS(135), }, [16] = { - [sym__statement] = STATE(1242), - [sym__statement_separated] = STATE(3), - [sym__control_statement] = STATE(1242), - [sym_if_statement] = STATE(1242), - [sym_while_statement] = STATE(1242), - [sym_do_while_statement] = STATE(1242), - [sym_for_statement] = STATE(1242), - [sym_for_in_statement] = STATE(1242), - [sym_delete_statement] = STATE(1242), - [sym_exit_statement] = STATE(1242), - [sym_return_statement] = STATE(1242), - [sym_switch_statement] = STATE(1242), - [sym__io_statement] = STATE(1242), - [sym__getline_exp] = STATE(1495), - [sym_getline_input] = STATE(1495), - [sym_getline_file] = STATE(1495), + [sym__statement] = STATE(1136), + [sym__statement_separated] = STATE(2), + [sym__control_statement] = STATE(1136), + [sym_if_statement] = STATE(1136), + [sym_while_statement] = STATE(1136), + [sym_do_while_statement] = STATE(1136), + [sym_for_statement] = STATE(1136), + [sym_for_in_statement] = STATE(1136), + [sym_delete_statement] = STATE(1136), + [sym_exit_statement] = STATE(1136), + [sym_return_statement] = STATE(1136), + [sym_switch_statement] = STATE(1136), + [sym__io_statement] = STATE(1136), + [sym__getline_exp] = STATE(1446), + [sym_getline_input] = STATE(1446), + [sym_getline_file] = STATE(1446), [sym_print_statement] = STATE(1696), [sym_printf_statement] = STATE(1696), - [sym_redirected_io_statement] = STATE(1242), - [sym_piped_io_statement] = STATE(1242), - [sym_block] = STATE(1195), - [sym__exp] = STATE(1495), - [sym_ternary_exp] = STATE(1421), - [sym_binary_exp] = STATE(1421), - [sym__binary_in] = STATE(1373), - [sym_unary_exp] = STATE(1421), - [sym_update_exp] = STATE(1495), - [sym_assignment_exp] = STATE(1495), - [sym_piped_io_exp] = STATE(1495), - [sym_string_concat] = STATE(1421), - [sym_field_ref] = STATE(703), - [sym_array_ref] = STATE(610), - [sym_regex] = STATE(1495), - [sym_regex_constant] = STATE(1495), - [sym_grouping] = STATE(1421), - [sym__primitive] = STATE(1421), - [sym_namespace] = STATE(1955), - [sym_ns_qualified_name] = STATE(607), - [sym_number] = STATE(1421), - [sym_string] = STATE(1421), - [sym_func_call] = STATE(1421), - [sym_indirect_func_call] = STATE(1495), - [sym_comment] = STATE(114), - [aux_sym_if_statement_repeat1] = STATE(114), - [sym_identifier] = ACTIONS(85), - [anon_sym_SEMI] = ACTIONS(294), - [anon_sym_if] = ACTIONS(87), - [anon_sym_LPAREN] = ACTIONS(272), - [anon_sym_while] = ACTIONS(91), - [anon_sym_do] = ACTIONS(93), - [anon_sym_for] = ACTIONS(95), - [sym_break_statement] = ACTIONS(296), - [sym_continue_statement] = ACTIONS(296), - [anon_sym_delete] = ACTIONS(99), - [anon_sym_exit] = ACTIONS(101), - [anon_sym_return] = ACTIONS(103), - [anon_sym_switch] = ACTIONS(105), - [anon_sym_LBRACE] = ACTIONS(268), - [anon_sym_getline] = ACTIONS(107), - [sym_next_statement] = ACTIONS(296), - [sym_nextfile_statement] = ACTIONS(296), - [anon_sym_print] = ACTIONS(109), - [anon_sym_printf] = ACTIONS(111), - [anon_sym_SLASH] = ACTIONS(276), - [anon_sym_PLUS] = ACTIONS(115), - [anon_sym_DASH] = ACTIONS(115), - [anon_sym_BANG] = ACTIONS(278), - [anon_sym_PLUS_PLUS] = ACTIONS(280), - [anon_sym_DASH_DASH] = ACTIONS(280), - [anon_sym_DOLLAR] = ACTIONS(282), - [anon_sym_AT] = ACTIONS(284), - [aux_sym_number_token1] = ACTIONS(123), - [aux_sym_number_token2] = ACTIONS(286), - [anon_sym_DQUOTE] = ACTIONS(288), - [anon_sym_POUND] = ACTIONS(171), - }, - [17] = { - [sym__statement] = STATE(1159), - [sym__statement_separated] = STATE(1159), - [sym__control_statement] = STATE(1159), - [sym_if_statement] = STATE(1159), - [sym_while_statement] = STATE(1159), - [sym_do_while_statement] = STATE(1159), - [sym_for_statement] = STATE(1159), - [sym_for_in_statement] = STATE(1159), - [sym_delete_statement] = STATE(1159), - [sym_exit_statement] = STATE(1159), - [sym_return_statement] = STATE(1159), - [sym_switch_statement] = STATE(1159), - [sym__io_statement] = STATE(1159), - [sym__getline_exp] = STATE(482), - [sym_getline_input] = STATE(482), - [sym_getline_file] = STATE(482), - [sym_print_statement] = STATE(740), - [sym_printf_statement] = STATE(740), - [sym_redirected_io_statement] = STATE(1159), - [sym_piped_io_statement] = STATE(1159), - [sym_block] = STATE(1157), - [sym__exp] = STATE(482), - [sym_ternary_exp] = STATE(375), - [sym_binary_exp] = STATE(375), - [sym__binary_in] = STATE(369), - [sym_unary_exp] = STATE(375), - [sym_update_exp] = STATE(482), - [sym_assignment_exp] = STATE(482), - [sym_piped_io_exp] = STATE(482), - [sym_string_concat] = STATE(375), - [sym_field_ref] = STATE(256), - [sym_array_ref] = STATE(240), - [sym_regex] = STATE(482), - [sym_regex_constant] = STATE(482), - [sym_grouping] = STATE(375), - [sym__primitive] = STATE(375), - [sym_namespace] = STATE(2063), - [sym_ns_qualified_name] = STATE(196), - [sym_number] = STATE(375), - [sym_string] = STATE(375), - [sym_func_call] = STATE(375), - [sym_indirect_func_call] = STATE(482), - [sym_comment] = STATE(131), - [aux_sym_if_statement_repeat1] = STATE(131), - [sym_identifier] = ACTIONS(298), - [anon_sym_SEMI] = ACTIONS(300), - [anon_sym_if] = ACTIONS(302), - [anon_sym_LPAREN] = ACTIONS(304), - [anon_sym_while] = ACTIONS(306), + [sym_redirected_io_statement] = STATE(1136), + [sym_piped_io_statement] = STATE(1136), + [sym_block] = STATE(1138), + [sym__exp] = STATE(1446), + [sym_ternary_exp] = STATE(1371), + [sym_binary_exp] = STATE(1371), + [sym__binary_in] = STATE(1305), + [sym_unary_exp] = STATE(1371), + [sym_update_exp] = STATE(1446), + [sym_assignment_exp] = STATE(1446), + [sym_piped_io_exp] = STATE(1446), + [sym_string_concat] = STATE(1371), + [sym_field_ref] = STATE(632), + [sym_array_ref] = STATE(601), + [sym_regex] = STATE(1446), + [sym_regex_constant] = STATE(1446), + [sym_grouping] = STATE(1371), + [sym__primitive] = STATE(1371), + [sym_namespace] = STATE(2068), + [sym_ns_qualified_name] = STATE(590), + [sym_number] = STATE(1371), + [sym_string] = STATE(1371), + [sym_func_call] = STATE(1371), + [sym_indirect_func_call] = STATE(1446), + [sym_comment] = STATE(1252), + [aux_sym_if_statement_repeat1] = STATE(1252), + [sym_identifier] = ACTIONS(39), + [anon_sym_SEMI] = ACTIONS(332), + [anon_sym_if] = ACTIONS(43), + [anon_sym_LPAREN] = ACTIONS(312), + [anon_sym_while] = ACTIONS(47), [anon_sym_do] = ACTIONS(49), - [anon_sym_for] = ACTIONS(308), - [sym_break_statement] = ACTIONS(310), - [sym_continue_statement] = ACTIONS(310), + [anon_sym_for] = ACTIONS(51), + [sym_break_statement] = ACTIONS(334), + [sym_continue_statement] = ACTIONS(334), [anon_sym_delete] = ACTIONS(55), - [anon_sym_exit] = ACTIONS(312), - [anon_sym_return] = ACTIONS(314), + [anon_sym_exit] = ACTIONS(57), + [anon_sym_return] = ACTIONS(59), [anon_sym_switch] = ACTIONS(61), [anon_sym_LBRACE] = ACTIONS(316), - [anon_sym_getline] = ACTIONS(318), - [sym_next_statement] = ACTIONS(310), - [sym_nextfile_statement] = ACTIONS(310), - [anon_sym_print] = ACTIONS(320), - [anon_sym_printf] = ACTIONS(322), - [anon_sym_SLASH] = ACTIONS(324), - [anon_sym_PLUS] = ACTIONS(326), - [anon_sym_DASH] = ACTIONS(326), - [anon_sym_BANG] = ACTIONS(328), - [anon_sym_PLUS_PLUS] = ACTIONS(330), - [anon_sym_DASH_DASH] = ACTIONS(330), - [anon_sym_DOLLAR] = ACTIONS(332), - [anon_sym_AT] = ACTIONS(334), - [aux_sym_number_token1] = ACTIONS(336), - [aux_sym_number_token2] = ACTIONS(338), - [anon_sym_DQUOTE] = ACTIONS(340), - [anon_sym_POUND] = ACTIONS(171), + [anon_sym_getline] = ACTIONS(63), + [sym_next_statement] = ACTIONS(334), + [sym_nextfile_statement] = ACTIONS(334), + [anon_sym_print] = ACTIONS(65), + [anon_sym_printf] = ACTIONS(67), + [anon_sym_SLASH] = ACTIONS(318), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(71), + [anon_sym_BANG] = ACTIONS(320), + [anon_sym_PLUS_PLUS] = ACTIONS(322), + [anon_sym_DASH_DASH] = ACTIONS(322), + [anon_sym_DOLLAR] = ACTIONS(324), + [anon_sym_AT] = ACTIONS(326), + [aux_sym_number_token1] = ACTIONS(79), + [aux_sym_number_token2] = ACTIONS(328), + [anon_sym_DQUOTE] = ACTIONS(330), + [anon_sym_POUND] = ACTIONS(135), }, - [18] = { + [17] = { [sym__statement] = STATE(1189), - [sym__statement_separated] = STATE(1189), + [sym__statement_separated] = STATE(141), [sym__control_statement] = STATE(1189), [sym_if_statement] = STATE(1189), [sym_while_statement] = STATE(1189), @@ -9073,2767 +9298,2690 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_return_statement] = STATE(1189), [sym_switch_statement] = STATE(1189), [sym__io_statement] = STATE(1189), - [sym__getline_exp] = STATE(482), - [sym_getline_input] = STATE(482), - [sym_getline_file] = STATE(482), - [sym_print_statement] = STATE(740), - [sym_printf_statement] = STATE(740), + [sym__getline_exp] = STATE(1562), + [sym_getline_input] = STATE(1562), + [sym_getline_file] = STATE(1562), + [sym_print_statement] = STATE(1698), + [sym_printf_statement] = STATE(1698), [sym_redirected_io_statement] = STATE(1189), [sym_piped_io_statement] = STATE(1189), - [sym_block] = STATE(1191), - [sym__exp] = STATE(482), - [sym_ternary_exp] = STATE(375), - [sym_binary_exp] = STATE(375), - [sym__binary_in] = STATE(369), - [sym_unary_exp] = STATE(375), - [sym_update_exp] = STATE(482), - [sym_assignment_exp] = STATE(482), - [sym_piped_io_exp] = STATE(482), - [sym_string_concat] = STATE(375), - [sym_field_ref] = STATE(256), - [sym_array_ref] = STATE(240), - [sym_regex] = STATE(482), - [sym_regex_constant] = STATE(482), - [sym_grouping] = STATE(375), - [sym__primitive] = STATE(375), - [sym_namespace] = STATE(2063), - [sym_ns_qualified_name] = STATE(196), - [sym_number] = STATE(375), - [sym_string] = STATE(375), - [sym_func_call] = STATE(375), - [sym_indirect_func_call] = STATE(482), + [sym_block] = STATE(1188), + [sym__exp] = STATE(1562), + [sym_ternary_exp] = STATE(1461), + [sym_binary_exp] = STATE(1461), + [sym__binary_in] = STATE(1305), + [sym_unary_exp] = STATE(1461), + [sym_update_exp] = STATE(1562), + [sym_assignment_exp] = STATE(1562), + [sym_piped_io_exp] = STATE(1562), + [sym_string_concat] = STATE(1461), + [sym_field_ref] = STATE(950), + [sym_array_ref] = STATE(740), + [sym_regex] = STATE(1562), + [sym_regex_constant] = STATE(1562), + [sym_grouping] = STATE(1461), + [sym__primitive] = STATE(1461), + [sym_namespace] = STATE(2068), + [sym_ns_qualified_name] = STATE(672), + [sym_number] = STATE(1461), + [sym_string] = STATE(1461), + [sym_func_call] = STATE(1461), + [sym_indirect_func_call] = STATE(1562), + [sym_comment] = STATE(78), + [aux_sym_if_statement_repeat1] = STATE(78), + [sym_identifier] = ACTIONS(336), + [anon_sym_SEMI] = ACTIONS(338), + [anon_sym_if] = ACTIONS(340), + [anon_sym_LPAREN] = ACTIONS(342), + [anon_sym_while] = ACTIONS(344), + [anon_sym_do] = ACTIONS(49), + [anon_sym_for] = ACTIONS(346), + [sym_break_statement] = ACTIONS(348), + [sym_continue_statement] = ACTIONS(348), + [anon_sym_delete] = ACTIONS(55), + [anon_sym_exit] = ACTIONS(350), + [anon_sym_return] = ACTIONS(352), + [anon_sym_switch] = ACTIONS(61), + [anon_sym_LBRACE] = ACTIONS(316), + [anon_sym_getline] = ACTIONS(354), + [sym_next_statement] = ACTIONS(348), + [sym_nextfile_statement] = ACTIONS(348), + [anon_sym_print] = ACTIONS(356), + [anon_sym_printf] = ACTIONS(358), + [anon_sym_SLASH] = ACTIONS(360), + [anon_sym_PLUS] = ACTIONS(362), + [anon_sym_DASH] = ACTIONS(362), + [anon_sym_BANG] = ACTIONS(364), + [anon_sym_PLUS_PLUS] = ACTIONS(366), + [anon_sym_DASH_DASH] = ACTIONS(366), + [anon_sym_DOLLAR] = ACTIONS(368), + [anon_sym_AT] = ACTIONS(370), + [aux_sym_number_token1] = ACTIONS(79), + [aux_sym_number_token2] = ACTIONS(328), + [anon_sym_DQUOTE] = ACTIONS(330), + [anon_sym_POUND] = ACTIONS(135), + }, + [18] = { + [sym__statement] = STATE(1140), + [sym__statement_separated] = STATE(2), + [sym__control_statement] = STATE(1140), + [sym_if_statement] = STATE(1140), + [sym_while_statement] = STATE(1140), + [sym_do_while_statement] = STATE(1140), + [sym_for_statement] = STATE(1140), + [sym_for_in_statement] = STATE(1140), + [sym_delete_statement] = STATE(1140), + [sym_exit_statement] = STATE(1140), + [sym_return_statement] = STATE(1140), + [sym_switch_statement] = STATE(1140), + [sym__io_statement] = STATE(1140), + [sym__getline_exp] = STATE(1446), + [sym_getline_input] = STATE(1446), + [sym_getline_file] = STATE(1446), + [sym_print_statement] = STATE(1696), + [sym_printf_statement] = STATE(1696), + [sym_redirected_io_statement] = STATE(1140), + [sym_piped_io_statement] = STATE(1140), + [sym_block] = STATE(1143), + [sym__exp] = STATE(1446), + [sym_ternary_exp] = STATE(1371), + [sym_binary_exp] = STATE(1371), + [sym__binary_in] = STATE(1305), + [sym_unary_exp] = STATE(1371), + [sym_update_exp] = STATE(1446), + [sym_assignment_exp] = STATE(1446), + [sym_piped_io_exp] = STATE(1446), + [sym_string_concat] = STATE(1371), + [sym_field_ref] = STATE(632), + [sym_array_ref] = STATE(601), + [sym_regex] = STATE(1446), + [sym_regex_constant] = STATE(1446), + [sym_grouping] = STATE(1371), + [sym__primitive] = STATE(1371), + [sym_namespace] = STATE(2068), + [sym_ns_qualified_name] = STATE(590), + [sym_number] = STATE(1371), + [sym_string] = STATE(1371), + [sym_func_call] = STATE(1371), + [sym_indirect_func_call] = STATE(1446), [sym_comment] = STATE(25), [aux_sym_if_statement_repeat1] = STATE(25), - [sym_identifier] = ACTIONS(298), - [anon_sym_SEMI] = ACTIONS(342), - [anon_sym_if] = ACTIONS(302), - [anon_sym_LPAREN] = ACTIONS(304), - [anon_sym_while] = ACTIONS(306), + [sym_identifier] = ACTIONS(39), + [anon_sym_SEMI] = ACTIONS(372), + [anon_sym_if] = ACTIONS(43), + [anon_sym_LPAREN] = ACTIONS(312), + [anon_sym_while] = ACTIONS(47), [anon_sym_do] = ACTIONS(49), - [anon_sym_for] = ACTIONS(308), - [sym_break_statement] = ACTIONS(344), - [sym_continue_statement] = ACTIONS(344), + [anon_sym_for] = ACTIONS(51), + [sym_break_statement] = ACTIONS(374), + [sym_continue_statement] = ACTIONS(374), [anon_sym_delete] = ACTIONS(55), - [anon_sym_exit] = ACTIONS(312), - [anon_sym_return] = ACTIONS(314), + [anon_sym_exit] = ACTIONS(57), + [anon_sym_return] = ACTIONS(59), [anon_sym_switch] = ACTIONS(61), [anon_sym_LBRACE] = ACTIONS(316), - [anon_sym_getline] = ACTIONS(318), - [sym_next_statement] = ACTIONS(344), - [sym_nextfile_statement] = ACTIONS(344), - [anon_sym_print] = ACTIONS(320), - [anon_sym_printf] = ACTIONS(322), - [anon_sym_SLASH] = ACTIONS(324), - [anon_sym_PLUS] = ACTIONS(326), - [anon_sym_DASH] = ACTIONS(326), - [anon_sym_BANG] = ACTIONS(328), - [anon_sym_PLUS_PLUS] = ACTIONS(330), - [anon_sym_DASH_DASH] = ACTIONS(330), - [anon_sym_DOLLAR] = ACTIONS(332), - [anon_sym_AT] = ACTIONS(334), - [aux_sym_number_token1] = ACTIONS(336), - [aux_sym_number_token2] = ACTIONS(338), - [anon_sym_DQUOTE] = ACTIONS(340), - [anon_sym_POUND] = ACTIONS(171), + [anon_sym_getline] = ACTIONS(63), + [sym_next_statement] = ACTIONS(374), + [sym_nextfile_statement] = ACTIONS(374), + [anon_sym_print] = ACTIONS(65), + [anon_sym_printf] = ACTIONS(67), + [anon_sym_SLASH] = ACTIONS(318), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(71), + [anon_sym_BANG] = ACTIONS(320), + [anon_sym_PLUS_PLUS] = ACTIONS(322), + [anon_sym_DASH_DASH] = ACTIONS(322), + [anon_sym_DOLLAR] = ACTIONS(324), + [anon_sym_AT] = ACTIONS(326), + [aux_sym_number_token1] = ACTIONS(79), + [aux_sym_number_token2] = ACTIONS(328), + [anon_sym_DQUOTE] = ACTIONS(330), + [anon_sym_POUND] = ACTIONS(135), }, [19] = { - [sym__statement] = STATE(1240), - [sym__statement_separated] = STATE(3), - [sym__control_statement] = STATE(1240), - [sym_if_statement] = STATE(1240), - [sym_while_statement] = STATE(1240), - [sym_do_while_statement] = STATE(1240), - [sym_for_statement] = STATE(1240), - [sym_for_in_statement] = STATE(1240), - [sym_delete_statement] = STATE(1240), - [sym_exit_statement] = STATE(1240), - [sym_return_statement] = STATE(1240), - [sym_switch_statement] = STATE(1240), - [sym__io_statement] = STATE(1240), - [sym__getline_exp] = STATE(1495), - [sym_getline_input] = STATE(1495), - [sym_getline_file] = STATE(1495), + [sym__statement] = STATE(1144), + [sym__statement_separated] = STATE(2), + [sym__control_statement] = STATE(1144), + [sym_if_statement] = STATE(1144), + [sym_while_statement] = STATE(1144), + [sym_do_while_statement] = STATE(1144), + [sym_for_statement] = STATE(1144), + [sym_for_in_statement] = STATE(1144), + [sym_delete_statement] = STATE(1144), + [sym_exit_statement] = STATE(1144), + [sym_return_statement] = STATE(1144), + [sym_switch_statement] = STATE(1144), + [sym__io_statement] = STATE(1144), + [sym__getline_exp] = STATE(1446), + [sym_getline_input] = STATE(1446), + [sym_getline_file] = STATE(1446), [sym_print_statement] = STATE(1696), [sym_printf_statement] = STATE(1696), - [sym_redirected_io_statement] = STATE(1240), - [sym_piped_io_statement] = STATE(1240), - [sym_block] = STATE(1239), - [sym__exp] = STATE(1495), - [sym_ternary_exp] = STATE(1421), - [sym_binary_exp] = STATE(1421), - [sym__binary_in] = STATE(1373), - [sym_unary_exp] = STATE(1421), - [sym_update_exp] = STATE(1495), - [sym_assignment_exp] = STATE(1495), - [sym_piped_io_exp] = STATE(1495), - [sym_string_concat] = STATE(1421), - [sym_field_ref] = STATE(703), - [sym_array_ref] = STATE(610), - [sym_regex] = STATE(1495), - [sym_regex_constant] = STATE(1495), - [sym_grouping] = STATE(1421), - [sym__primitive] = STATE(1421), - [sym_namespace] = STATE(1955), - [sym_ns_qualified_name] = STATE(607), - [sym_number] = STATE(1421), - [sym_string] = STATE(1421), - [sym_func_call] = STATE(1421), - [sym_indirect_func_call] = STATE(1495), - [sym_comment] = STATE(1238), - [aux_sym_if_statement_repeat1] = STATE(1238), - [sym_identifier] = ACTIONS(85), - [anon_sym_SEMI] = ACTIONS(346), - [anon_sym_if] = ACTIONS(87), - [anon_sym_LPAREN] = ACTIONS(272), - [anon_sym_while] = ACTIONS(91), - [anon_sym_do] = ACTIONS(93), - [anon_sym_for] = ACTIONS(95), - [sym_break_statement] = ACTIONS(348), - [sym_continue_statement] = ACTIONS(348), - [anon_sym_delete] = ACTIONS(99), - [anon_sym_exit] = ACTIONS(101), - [anon_sym_return] = ACTIONS(103), - [anon_sym_switch] = ACTIONS(105), - [anon_sym_LBRACE] = ACTIONS(268), - [anon_sym_getline] = ACTIONS(107), - [sym_next_statement] = ACTIONS(348), - [sym_nextfile_statement] = ACTIONS(348), - [anon_sym_print] = ACTIONS(109), - [anon_sym_printf] = ACTIONS(111), - [anon_sym_SLASH] = ACTIONS(276), - [anon_sym_PLUS] = ACTIONS(115), - [anon_sym_DASH] = ACTIONS(115), - [anon_sym_BANG] = ACTIONS(278), - [anon_sym_PLUS_PLUS] = ACTIONS(280), - [anon_sym_DASH_DASH] = ACTIONS(280), - [anon_sym_DOLLAR] = ACTIONS(282), - [anon_sym_AT] = ACTIONS(284), - [aux_sym_number_token1] = ACTIONS(123), - [aux_sym_number_token2] = ACTIONS(286), - [anon_sym_DQUOTE] = ACTIONS(288), - [anon_sym_POUND] = ACTIONS(171), + [sym_redirected_io_statement] = STATE(1144), + [sym_piped_io_statement] = STATE(1144), + [sym_block] = STATE(1145), + [sym__exp] = STATE(1446), + [sym_ternary_exp] = STATE(1371), + [sym_binary_exp] = STATE(1371), + [sym__binary_in] = STATE(1305), + [sym_unary_exp] = STATE(1371), + [sym_update_exp] = STATE(1446), + [sym_assignment_exp] = STATE(1446), + [sym_piped_io_exp] = STATE(1446), + [sym_string_concat] = STATE(1371), + [sym_field_ref] = STATE(632), + [sym_array_ref] = STATE(601), + [sym_regex] = STATE(1446), + [sym_regex_constant] = STATE(1446), + [sym_grouping] = STATE(1371), + [sym__primitive] = STATE(1371), + [sym_namespace] = STATE(2068), + [sym_ns_qualified_name] = STATE(590), + [sym_number] = STATE(1371), + [sym_string] = STATE(1371), + [sym_func_call] = STATE(1371), + [sym_indirect_func_call] = STATE(1446), + [sym_comment] = STATE(15), + [aux_sym_if_statement_repeat1] = STATE(15), + [sym_identifier] = ACTIONS(39), + [anon_sym_SEMI] = ACTIONS(376), + [anon_sym_if] = ACTIONS(43), + [anon_sym_LPAREN] = ACTIONS(312), + [anon_sym_while] = ACTIONS(47), + [anon_sym_do] = ACTIONS(49), + [anon_sym_for] = ACTIONS(51), + [sym_break_statement] = ACTIONS(378), + [sym_continue_statement] = ACTIONS(378), + [anon_sym_delete] = ACTIONS(55), + [anon_sym_exit] = ACTIONS(57), + [anon_sym_return] = ACTIONS(59), + [anon_sym_switch] = ACTIONS(61), + [anon_sym_LBRACE] = ACTIONS(316), + [anon_sym_getline] = ACTIONS(63), + [sym_next_statement] = ACTIONS(378), + [sym_nextfile_statement] = ACTIONS(378), + [anon_sym_print] = ACTIONS(65), + [anon_sym_printf] = ACTIONS(67), + [anon_sym_SLASH] = ACTIONS(318), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(71), + [anon_sym_BANG] = ACTIONS(320), + [anon_sym_PLUS_PLUS] = ACTIONS(322), + [anon_sym_DASH_DASH] = ACTIONS(322), + [anon_sym_DOLLAR] = ACTIONS(324), + [anon_sym_AT] = ACTIONS(326), + [aux_sym_number_token1] = ACTIONS(79), + [aux_sym_number_token2] = ACTIONS(328), + [anon_sym_DQUOTE] = ACTIONS(330), + [anon_sym_POUND] = ACTIONS(135), }, [20] = { - [sym__statement] = STATE(1187), - [sym__statement_separated] = STATE(1187), - [sym__control_statement] = STATE(1187), - [sym_if_statement] = STATE(1187), - [sym_while_statement] = STATE(1187), - [sym_do_while_statement] = STATE(1187), - [sym_for_statement] = STATE(1187), - [sym_for_in_statement] = STATE(1187), - [sym_delete_statement] = STATE(1187), - [sym_exit_statement] = STATE(1187), - [sym_return_statement] = STATE(1187), - [sym_switch_statement] = STATE(1187), - [sym__io_statement] = STATE(1187), - [sym__getline_exp] = STATE(482), - [sym_getline_input] = STATE(482), - [sym_getline_file] = STATE(482), - [sym_print_statement] = STATE(740), - [sym_printf_statement] = STATE(740), - [sym_redirected_io_statement] = STATE(1187), - [sym_piped_io_statement] = STATE(1187), - [sym_block] = STATE(1188), - [sym__exp] = STATE(482), - [sym_ternary_exp] = STATE(375), - [sym_binary_exp] = STATE(375), - [sym__binary_in] = STATE(369), - [sym_unary_exp] = STATE(375), - [sym_update_exp] = STATE(482), - [sym_assignment_exp] = STATE(482), - [sym_piped_io_exp] = STATE(482), - [sym_string_concat] = STATE(375), - [sym_field_ref] = STATE(256), - [sym_array_ref] = STATE(240), - [sym_regex] = STATE(482), - [sym_regex_constant] = STATE(482), - [sym_grouping] = STATE(375), - [sym__primitive] = STATE(375), - [sym_namespace] = STATE(2063), - [sym_ns_qualified_name] = STATE(196), - [sym_number] = STATE(375), - [sym_string] = STATE(375), - [sym_func_call] = STATE(375), - [sym_indirect_func_call] = STATE(482), - [sym_comment] = STATE(26), - [aux_sym_if_statement_repeat1] = STATE(26), - [sym_identifier] = ACTIONS(298), - [anon_sym_SEMI] = ACTIONS(350), - [anon_sym_if] = ACTIONS(302), - [anon_sym_LPAREN] = ACTIONS(304), - [anon_sym_while] = ACTIONS(306), + [sym__statement] = STATE(1146), + [sym__statement_separated] = STATE(2), + [sym__control_statement] = STATE(1146), + [sym_if_statement] = STATE(1146), + [sym_while_statement] = STATE(1146), + [sym_do_while_statement] = STATE(1146), + [sym_for_statement] = STATE(1146), + [sym_for_in_statement] = STATE(1146), + [sym_delete_statement] = STATE(1146), + [sym_exit_statement] = STATE(1146), + [sym_return_statement] = STATE(1146), + [sym_switch_statement] = STATE(1146), + [sym__io_statement] = STATE(1146), + [sym__getline_exp] = STATE(1446), + [sym_getline_input] = STATE(1446), + [sym_getline_file] = STATE(1446), + [sym_print_statement] = STATE(1696), + [sym_printf_statement] = STATE(1696), + [sym_redirected_io_statement] = STATE(1146), + [sym_piped_io_statement] = STATE(1146), + [sym_block] = STATE(1147), + [sym__exp] = STATE(1446), + [sym_ternary_exp] = STATE(1371), + [sym_binary_exp] = STATE(1371), + [sym__binary_in] = STATE(1305), + [sym_unary_exp] = STATE(1371), + [sym_update_exp] = STATE(1446), + [sym_assignment_exp] = STATE(1446), + [sym_piped_io_exp] = STATE(1446), + [sym_string_concat] = STATE(1371), + [sym_field_ref] = STATE(632), + [sym_array_ref] = STATE(601), + [sym_regex] = STATE(1446), + [sym_regex_constant] = STATE(1446), + [sym_grouping] = STATE(1371), + [sym__primitive] = STATE(1371), + [sym_namespace] = STATE(2068), + [sym_ns_qualified_name] = STATE(590), + [sym_number] = STATE(1371), + [sym_string] = STATE(1371), + [sym_func_call] = STATE(1371), + [sym_indirect_func_call] = STATE(1446), + [sym_comment] = STATE(1252), + [aux_sym_if_statement_repeat1] = STATE(1252), + [sym_identifier] = ACTIONS(39), + [anon_sym_SEMI] = ACTIONS(380), + [anon_sym_if] = ACTIONS(43), + [anon_sym_LPAREN] = ACTIONS(312), + [anon_sym_while] = ACTIONS(47), [anon_sym_do] = ACTIONS(49), - [anon_sym_for] = ACTIONS(308), - [sym_break_statement] = ACTIONS(352), - [sym_continue_statement] = ACTIONS(352), + [anon_sym_for] = ACTIONS(51), + [sym_break_statement] = ACTIONS(382), + [sym_continue_statement] = ACTIONS(382), [anon_sym_delete] = ACTIONS(55), - [anon_sym_exit] = ACTIONS(312), - [anon_sym_return] = ACTIONS(314), + [anon_sym_exit] = ACTIONS(57), + [anon_sym_return] = ACTIONS(59), [anon_sym_switch] = ACTIONS(61), [anon_sym_LBRACE] = ACTIONS(316), - [anon_sym_getline] = ACTIONS(318), - [sym_next_statement] = ACTIONS(352), - [sym_nextfile_statement] = ACTIONS(352), - [anon_sym_print] = ACTIONS(320), - [anon_sym_printf] = ACTIONS(322), - [anon_sym_SLASH] = ACTIONS(324), - [anon_sym_PLUS] = ACTIONS(326), - [anon_sym_DASH] = ACTIONS(326), - [anon_sym_BANG] = ACTIONS(328), - [anon_sym_PLUS_PLUS] = ACTIONS(330), - [anon_sym_DASH_DASH] = ACTIONS(330), - [anon_sym_DOLLAR] = ACTIONS(332), - [anon_sym_AT] = ACTIONS(334), - [aux_sym_number_token1] = ACTIONS(336), - [aux_sym_number_token2] = ACTIONS(338), - [anon_sym_DQUOTE] = ACTIONS(340), - [anon_sym_POUND] = ACTIONS(171), + [anon_sym_getline] = ACTIONS(63), + [sym_next_statement] = ACTIONS(382), + [sym_nextfile_statement] = ACTIONS(382), + [anon_sym_print] = ACTIONS(65), + [anon_sym_printf] = ACTIONS(67), + [anon_sym_SLASH] = ACTIONS(318), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(71), + [anon_sym_BANG] = ACTIONS(320), + [anon_sym_PLUS_PLUS] = ACTIONS(322), + [anon_sym_DASH_DASH] = ACTIONS(322), + [anon_sym_DOLLAR] = ACTIONS(324), + [anon_sym_AT] = ACTIONS(326), + [aux_sym_number_token1] = ACTIONS(79), + [aux_sym_number_token2] = ACTIONS(328), + [anon_sym_DQUOTE] = ACTIONS(330), + [anon_sym_POUND] = ACTIONS(135), }, [21] = { - [sym__statement] = STATE(1185), - [sym__statement_separated] = STATE(1185), - [sym__control_statement] = STATE(1185), - [sym_if_statement] = STATE(1185), - [sym_while_statement] = STATE(1185), - [sym_do_while_statement] = STATE(1185), - [sym_for_statement] = STATE(1185), - [sym_for_in_statement] = STATE(1185), - [sym_delete_statement] = STATE(1185), - [sym_exit_statement] = STATE(1185), - [sym_return_statement] = STATE(1185), - [sym_switch_statement] = STATE(1185), - [sym__io_statement] = STATE(1185), - [sym__getline_exp] = STATE(482), - [sym_getline_input] = STATE(482), - [sym_getline_file] = STATE(482), - [sym_print_statement] = STATE(740), - [sym_printf_statement] = STATE(740), - [sym_redirected_io_statement] = STATE(1185), - [sym_piped_io_statement] = STATE(1185), - [sym_block] = STATE(1186), - [sym__exp] = STATE(482), - [sym_ternary_exp] = STATE(375), - [sym_binary_exp] = STATE(375), - [sym__binary_in] = STATE(369), - [sym_unary_exp] = STATE(375), - [sym_update_exp] = STATE(482), - [sym_assignment_exp] = STATE(482), - [sym_piped_io_exp] = STATE(482), - [sym_string_concat] = STATE(375), - [sym_field_ref] = STATE(256), - [sym_array_ref] = STATE(240), - [sym_regex] = STATE(482), - [sym_regex_constant] = STATE(482), - [sym_grouping] = STATE(375), - [sym__primitive] = STATE(375), - [sym_namespace] = STATE(2063), - [sym_ns_qualified_name] = STATE(196), - [sym_number] = STATE(375), - [sym_string] = STATE(375), - [sym_func_call] = STATE(375), - [sym_indirect_func_call] = STATE(482), - [sym_comment] = STATE(28), - [aux_sym_if_statement_repeat1] = STATE(28), - [sym_identifier] = ACTIONS(298), - [anon_sym_SEMI] = ACTIONS(354), - [anon_sym_if] = ACTIONS(302), - [anon_sym_LPAREN] = ACTIONS(304), - [anon_sym_while] = ACTIONS(306), + [sym__statement] = STATE(1148), + [sym__statement_separated] = STATE(2), + [sym__control_statement] = STATE(1148), + [sym_if_statement] = STATE(1148), + [sym_while_statement] = STATE(1148), + [sym_do_while_statement] = STATE(1148), + [sym_for_statement] = STATE(1148), + [sym_for_in_statement] = STATE(1148), + [sym_delete_statement] = STATE(1148), + [sym_exit_statement] = STATE(1148), + [sym_return_statement] = STATE(1148), + [sym_switch_statement] = STATE(1148), + [sym__io_statement] = STATE(1148), + [sym__getline_exp] = STATE(1446), + [sym_getline_input] = STATE(1446), + [sym_getline_file] = STATE(1446), + [sym_print_statement] = STATE(1696), + [sym_printf_statement] = STATE(1696), + [sym_redirected_io_statement] = STATE(1148), + [sym_piped_io_statement] = STATE(1148), + [sym_block] = STATE(1149), + [sym__exp] = STATE(1446), + [sym_ternary_exp] = STATE(1371), + [sym_binary_exp] = STATE(1371), + [sym__binary_in] = STATE(1305), + [sym_unary_exp] = STATE(1371), + [sym_update_exp] = STATE(1446), + [sym_assignment_exp] = STATE(1446), + [sym_piped_io_exp] = STATE(1446), + [sym_string_concat] = STATE(1371), + [sym_field_ref] = STATE(632), + [sym_array_ref] = STATE(601), + [sym_regex] = STATE(1446), + [sym_regex_constant] = STATE(1446), + [sym_grouping] = STATE(1371), + [sym__primitive] = STATE(1371), + [sym_namespace] = STATE(2068), + [sym_ns_qualified_name] = STATE(590), + [sym_number] = STATE(1371), + [sym_string] = STATE(1371), + [sym_func_call] = STATE(1371), + [sym_indirect_func_call] = STATE(1446), + [sym_comment] = STATE(1252), + [aux_sym_if_statement_repeat1] = STATE(1252), + [sym_identifier] = ACTIONS(39), + [anon_sym_SEMI] = ACTIONS(384), + [anon_sym_if] = ACTIONS(43), + [anon_sym_LPAREN] = ACTIONS(312), + [anon_sym_while] = ACTIONS(47), [anon_sym_do] = ACTIONS(49), - [anon_sym_for] = ACTIONS(308), - [sym_break_statement] = ACTIONS(356), - [sym_continue_statement] = ACTIONS(356), + [anon_sym_for] = ACTIONS(51), + [sym_break_statement] = ACTIONS(386), + [sym_continue_statement] = ACTIONS(386), [anon_sym_delete] = ACTIONS(55), - [anon_sym_exit] = ACTIONS(312), - [anon_sym_return] = ACTIONS(314), + [anon_sym_exit] = ACTIONS(57), + [anon_sym_return] = ACTIONS(59), [anon_sym_switch] = ACTIONS(61), [anon_sym_LBRACE] = ACTIONS(316), - [anon_sym_getline] = ACTIONS(318), - [sym_next_statement] = ACTIONS(356), - [sym_nextfile_statement] = ACTIONS(356), - [anon_sym_print] = ACTIONS(320), - [anon_sym_printf] = ACTIONS(322), - [anon_sym_SLASH] = ACTIONS(324), - [anon_sym_PLUS] = ACTIONS(326), - [anon_sym_DASH] = ACTIONS(326), - [anon_sym_BANG] = ACTIONS(328), - [anon_sym_PLUS_PLUS] = ACTIONS(330), - [anon_sym_DASH_DASH] = ACTIONS(330), - [anon_sym_DOLLAR] = ACTIONS(332), - [anon_sym_AT] = ACTIONS(334), - [aux_sym_number_token1] = ACTIONS(336), - [aux_sym_number_token2] = ACTIONS(338), - [anon_sym_DQUOTE] = ACTIONS(340), - [anon_sym_POUND] = ACTIONS(171), + [anon_sym_getline] = ACTIONS(63), + [sym_next_statement] = ACTIONS(386), + [sym_nextfile_statement] = ACTIONS(386), + [anon_sym_print] = ACTIONS(65), + [anon_sym_printf] = ACTIONS(67), + [anon_sym_SLASH] = ACTIONS(318), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(71), + [anon_sym_BANG] = ACTIONS(320), + [anon_sym_PLUS_PLUS] = ACTIONS(322), + [anon_sym_DASH_DASH] = ACTIONS(322), + [anon_sym_DOLLAR] = ACTIONS(324), + [anon_sym_AT] = ACTIONS(326), + [aux_sym_number_token1] = ACTIONS(79), + [aux_sym_number_token2] = ACTIONS(328), + [anon_sym_DQUOTE] = ACTIONS(330), + [anon_sym_POUND] = ACTIONS(135), }, [22] = { - [sym__statement] = STATE(1181), - [sym__statement_separated] = STATE(1181), - [sym__control_statement] = STATE(1181), - [sym_if_statement] = STATE(1181), - [sym_while_statement] = STATE(1181), - [sym_do_while_statement] = STATE(1181), - [sym_for_statement] = STATE(1181), - [sym_for_in_statement] = STATE(1181), - [sym_delete_statement] = STATE(1181), - [sym_exit_statement] = STATE(1181), - [sym_return_statement] = STATE(1181), - [sym_switch_statement] = STATE(1181), - [sym__io_statement] = STATE(1181), - [sym__getline_exp] = STATE(482), - [sym_getline_input] = STATE(482), - [sym_getline_file] = STATE(482), - [sym_print_statement] = STATE(740), - [sym_printf_statement] = STATE(740), - [sym_redirected_io_statement] = STATE(1181), - [sym_piped_io_statement] = STATE(1181), - [sym_block] = STATE(1182), - [sym__exp] = STATE(482), - [sym_ternary_exp] = STATE(375), - [sym_binary_exp] = STATE(375), - [sym__binary_in] = STATE(369), - [sym_unary_exp] = STATE(375), - [sym_update_exp] = STATE(482), - [sym_assignment_exp] = STATE(482), - [sym_piped_io_exp] = STATE(482), - [sym_string_concat] = STATE(375), - [sym_field_ref] = STATE(256), - [sym_array_ref] = STATE(240), - [sym_regex] = STATE(482), - [sym_regex_constant] = STATE(482), - [sym_grouping] = STATE(375), - [sym__primitive] = STATE(375), - [sym_namespace] = STATE(2063), - [sym_ns_qualified_name] = STATE(196), - [sym_number] = STATE(375), - [sym_string] = STATE(375), - [sym_func_call] = STATE(375), - [sym_indirect_func_call] = STATE(482), - [sym_comment] = STATE(29), - [aux_sym_if_statement_repeat1] = STATE(29), - [sym_identifier] = ACTIONS(298), - [anon_sym_SEMI] = ACTIONS(358), - [anon_sym_if] = ACTIONS(302), - [anon_sym_LPAREN] = ACTIONS(304), - [anon_sym_while] = ACTIONS(306), + [sym__statement] = STATE(1124), + [sym__statement_separated] = STATE(2), + [sym__control_statement] = STATE(1124), + [sym_if_statement] = STATE(1124), + [sym_while_statement] = STATE(1124), + [sym_do_while_statement] = STATE(1124), + [sym_for_statement] = STATE(1124), + [sym_for_in_statement] = STATE(1124), + [sym_delete_statement] = STATE(1124), + [sym_exit_statement] = STATE(1124), + [sym_return_statement] = STATE(1124), + [sym_switch_statement] = STATE(1124), + [sym__io_statement] = STATE(1124), + [sym__getline_exp] = STATE(1446), + [sym_getline_input] = STATE(1446), + [sym_getline_file] = STATE(1446), + [sym_print_statement] = STATE(1696), + [sym_printf_statement] = STATE(1696), + [sym_redirected_io_statement] = STATE(1124), + [sym_piped_io_statement] = STATE(1124), + [sym_block] = STATE(1162), + [sym__exp] = STATE(1446), + [sym_ternary_exp] = STATE(1371), + [sym_binary_exp] = STATE(1371), + [sym__binary_in] = STATE(1305), + [sym_unary_exp] = STATE(1371), + [sym_update_exp] = STATE(1446), + [sym_assignment_exp] = STATE(1446), + [sym_piped_io_exp] = STATE(1446), + [sym_string_concat] = STATE(1371), + [sym_field_ref] = STATE(632), + [sym_array_ref] = STATE(601), + [sym_regex] = STATE(1446), + [sym_regex_constant] = STATE(1446), + [sym_grouping] = STATE(1371), + [sym__primitive] = STATE(1371), + [sym_namespace] = STATE(2068), + [sym_ns_qualified_name] = STATE(590), + [sym_number] = STATE(1371), + [sym_string] = STATE(1371), + [sym_func_call] = STATE(1371), + [sym_indirect_func_call] = STATE(1446), + [sym_comment] = STATE(16), + [aux_sym_if_statement_repeat1] = STATE(16), + [sym_identifier] = ACTIONS(39), + [anon_sym_SEMI] = ACTIONS(388), + [anon_sym_if] = ACTIONS(43), + [anon_sym_LPAREN] = ACTIONS(312), + [anon_sym_while] = ACTIONS(47), [anon_sym_do] = ACTIONS(49), - [anon_sym_for] = ACTIONS(308), - [sym_break_statement] = ACTIONS(360), - [sym_continue_statement] = ACTIONS(360), + [anon_sym_for] = ACTIONS(51), + [sym_break_statement] = ACTIONS(390), + [sym_continue_statement] = ACTIONS(390), [anon_sym_delete] = ACTIONS(55), - [anon_sym_exit] = ACTIONS(312), - [anon_sym_return] = ACTIONS(314), + [anon_sym_exit] = ACTIONS(57), + [anon_sym_return] = ACTIONS(59), [anon_sym_switch] = ACTIONS(61), [anon_sym_LBRACE] = ACTIONS(316), - [anon_sym_getline] = ACTIONS(318), - [sym_next_statement] = ACTIONS(360), - [sym_nextfile_statement] = ACTIONS(360), - [anon_sym_print] = ACTIONS(320), - [anon_sym_printf] = ACTIONS(322), - [anon_sym_SLASH] = ACTIONS(324), - [anon_sym_PLUS] = ACTIONS(326), - [anon_sym_DASH] = ACTIONS(326), - [anon_sym_BANG] = ACTIONS(328), - [anon_sym_PLUS_PLUS] = ACTIONS(330), - [anon_sym_DASH_DASH] = ACTIONS(330), - [anon_sym_DOLLAR] = ACTIONS(332), - [anon_sym_AT] = ACTIONS(334), - [aux_sym_number_token1] = ACTIONS(336), - [aux_sym_number_token2] = ACTIONS(338), - [anon_sym_DQUOTE] = ACTIONS(340), - [anon_sym_POUND] = ACTIONS(171), + [anon_sym_getline] = ACTIONS(63), + [sym_next_statement] = ACTIONS(390), + [sym_nextfile_statement] = ACTIONS(390), + [anon_sym_print] = ACTIONS(65), + [anon_sym_printf] = ACTIONS(67), + [anon_sym_SLASH] = ACTIONS(318), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(71), + [anon_sym_BANG] = ACTIONS(320), + [anon_sym_PLUS_PLUS] = ACTIONS(322), + [anon_sym_DASH_DASH] = ACTIONS(322), + [anon_sym_DOLLAR] = ACTIONS(324), + [anon_sym_AT] = ACTIONS(326), + [aux_sym_number_token1] = ACTIONS(79), + [aux_sym_number_token2] = ACTIONS(328), + [anon_sym_DQUOTE] = ACTIONS(330), + [anon_sym_POUND] = ACTIONS(135), }, [23] = { - [sym__statement] = STATE(1227), - [sym__statement_separated] = STATE(146), - [sym__control_statement] = STATE(1227), - [sym_if_statement] = STATE(1227), - [sym_while_statement] = STATE(1227), - [sym_do_while_statement] = STATE(1227), - [sym_for_statement] = STATE(1227), - [sym_for_in_statement] = STATE(1227), - [sym_delete_statement] = STATE(1227), - [sym_exit_statement] = STATE(1227), - [sym_return_statement] = STATE(1227), - [sym_switch_statement] = STATE(1227), - [sym__io_statement] = STATE(1227), - [sym__getline_exp] = STATE(1568), - [sym_getline_input] = STATE(1568), - [sym_getline_file] = STATE(1568), - [sym_print_statement] = STATE(1699), - [sym_printf_statement] = STATE(1699), - [sym_redirected_io_statement] = STATE(1227), - [sym_piped_io_statement] = STATE(1227), - [sym_block] = STATE(1226), - [sym__exp] = STATE(1568), - [sym_ternary_exp] = STATE(1470), - [sym_binary_exp] = STATE(1470), - [sym__binary_in] = STATE(1373), - [sym_unary_exp] = STATE(1470), - [sym_update_exp] = STATE(1568), - [sym_assignment_exp] = STATE(1568), - [sym_piped_io_exp] = STATE(1568), - [sym_string_concat] = STATE(1470), - [sym_field_ref] = STATE(1121), - [sym_array_ref] = STATE(1022), - [sym_regex] = STATE(1568), - [sym_regex_constant] = STATE(1568), - [sym_grouping] = STATE(1470), - [sym__primitive] = STATE(1470), - [sym_namespace] = STATE(1955), - [sym_ns_qualified_name] = STATE(744), - [sym_number] = STATE(1470), - [sym_string] = STATE(1470), - [sym_func_call] = STATE(1470), - [sym_indirect_func_call] = STATE(1568), - [sym_comment] = STATE(1238), - [aux_sym_if_statement_repeat1] = STATE(1238), - [sym_identifier] = ACTIONS(362), - [anon_sym_SEMI] = ACTIONS(264), - [anon_sym_if] = ACTIONS(364), - [anon_sym_LPAREN] = ACTIONS(366), - [anon_sym_while] = ACTIONS(368), - [anon_sym_do] = ACTIONS(93), - [anon_sym_for] = ACTIONS(370), - [sym_break_statement] = ACTIONS(266), - [sym_continue_statement] = ACTIONS(266), - [anon_sym_delete] = ACTIONS(99), - [anon_sym_exit] = ACTIONS(372), - [anon_sym_return] = ACTIONS(374), - [anon_sym_switch] = ACTIONS(105), - [anon_sym_LBRACE] = ACTIONS(268), - [anon_sym_getline] = ACTIONS(376), - [sym_next_statement] = ACTIONS(266), - [sym_nextfile_statement] = ACTIONS(266), - [anon_sym_print] = ACTIONS(378), - [anon_sym_printf] = ACTIONS(380), - [anon_sym_SLASH] = ACTIONS(382), - [anon_sym_PLUS] = ACTIONS(384), - [anon_sym_DASH] = ACTIONS(384), - [anon_sym_BANG] = ACTIONS(386), - [anon_sym_PLUS_PLUS] = ACTIONS(388), - [anon_sym_DASH_DASH] = ACTIONS(388), - [anon_sym_DOLLAR] = ACTIONS(390), - [anon_sym_AT] = ACTIONS(392), - [aux_sym_number_token1] = ACTIONS(123), - [aux_sym_number_token2] = ACTIONS(286), - [anon_sym_DQUOTE] = ACTIONS(288), - [anon_sym_POUND] = ACTIONS(171), - }, - [24] = { - [sym__statement] = STATE(1196), - [sym__statement_separated] = STATE(3), - [sym__control_statement] = STATE(1196), - [sym_if_statement] = STATE(1196), - [sym_while_statement] = STATE(1196), - [sym_do_while_statement] = STATE(1196), - [sym_for_statement] = STATE(1196), - [sym_for_in_statement] = STATE(1196), - [sym_delete_statement] = STATE(1196), - [sym_exit_statement] = STATE(1196), - [sym_return_statement] = STATE(1196), - [sym_switch_statement] = STATE(1196), - [sym__io_statement] = STATE(1196), - [sym__getline_exp] = STATE(1495), - [sym_getline_input] = STATE(1495), - [sym_getline_file] = STATE(1495), + [sym__statement] = STATE(1163), + [sym__statement_separated] = STATE(2), + [sym__control_statement] = STATE(1163), + [sym_if_statement] = STATE(1163), + [sym_while_statement] = STATE(1163), + [sym_do_while_statement] = STATE(1163), + [sym_for_statement] = STATE(1163), + [sym_for_in_statement] = STATE(1163), + [sym_delete_statement] = STATE(1163), + [sym_exit_statement] = STATE(1163), + [sym_return_statement] = STATE(1163), + [sym_switch_statement] = STATE(1163), + [sym__io_statement] = STATE(1163), + [sym__getline_exp] = STATE(1446), + [sym_getline_input] = STATE(1446), + [sym_getline_file] = STATE(1446), [sym_print_statement] = STATE(1696), [sym_printf_statement] = STATE(1696), - [sym_redirected_io_statement] = STATE(1196), - [sym_piped_io_statement] = STATE(1196), - [sym_block] = STATE(1228), - [sym__exp] = STATE(1495), - [sym_ternary_exp] = STATE(1421), - [sym_binary_exp] = STATE(1421), - [sym__binary_in] = STATE(1373), - [sym_unary_exp] = STATE(1421), - [sym_update_exp] = STATE(1495), - [sym_assignment_exp] = STATE(1495), - [sym_piped_io_exp] = STATE(1495), - [sym_string_concat] = STATE(1421), - [sym_field_ref] = STATE(703), - [sym_array_ref] = STATE(610), - [sym_regex] = STATE(1495), - [sym_regex_constant] = STATE(1495), - [sym_grouping] = STATE(1421), - [sym__primitive] = STATE(1421), - [sym_namespace] = STATE(1955), - [sym_ns_qualified_name] = STATE(607), - [sym_number] = STATE(1421), - [sym_string] = STATE(1421), - [sym_func_call] = STATE(1421), - [sym_indirect_func_call] = STATE(1495), - [sym_comment] = STATE(110), - [aux_sym_if_statement_repeat1] = STATE(110), - [sym_identifier] = ACTIONS(85), - [anon_sym_SEMI] = ACTIONS(394), - [anon_sym_if] = ACTIONS(87), - [anon_sym_LPAREN] = ACTIONS(272), - [anon_sym_while] = ACTIONS(91), - [anon_sym_do] = ACTIONS(93), - [anon_sym_for] = ACTIONS(95), - [sym_break_statement] = ACTIONS(396), - [sym_continue_statement] = ACTIONS(396), - [anon_sym_delete] = ACTIONS(99), - [anon_sym_exit] = ACTIONS(101), - [anon_sym_return] = ACTIONS(103), - [anon_sym_switch] = ACTIONS(105), - [anon_sym_LBRACE] = ACTIONS(268), - [anon_sym_getline] = ACTIONS(107), - [sym_next_statement] = ACTIONS(396), - [sym_nextfile_statement] = ACTIONS(396), - [anon_sym_print] = ACTIONS(109), - [anon_sym_printf] = ACTIONS(111), - [anon_sym_SLASH] = ACTIONS(276), - [anon_sym_PLUS] = ACTIONS(115), - [anon_sym_DASH] = ACTIONS(115), - [anon_sym_BANG] = ACTIONS(278), - [anon_sym_PLUS_PLUS] = ACTIONS(280), - [anon_sym_DASH_DASH] = ACTIONS(280), - [anon_sym_DOLLAR] = ACTIONS(282), - [anon_sym_AT] = ACTIONS(284), - [aux_sym_number_token1] = ACTIONS(123), - [aux_sym_number_token2] = ACTIONS(286), - [anon_sym_DQUOTE] = ACTIONS(288), - [anon_sym_POUND] = ACTIONS(171), - }, - [25] = { - [sym__statement] = STATE(1173), - [sym__statement_separated] = STATE(1173), - [sym__control_statement] = STATE(1173), - [sym_if_statement] = STATE(1173), - [sym_while_statement] = STATE(1173), - [sym_do_while_statement] = STATE(1173), - [sym_for_statement] = STATE(1173), - [sym_for_in_statement] = STATE(1173), - [sym_delete_statement] = STATE(1173), - [sym_exit_statement] = STATE(1173), - [sym_return_statement] = STATE(1173), - [sym_switch_statement] = STATE(1173), - [sym__io_statement] = STATE(1173), - [sym__getline_exp] = STATE(482), - [sym_getline_input] = STATE(482), - [sym_getline_file] = STATE(482), - [sym_print_statement] = STATE(740), - [sym_printf_statement] = STATE(740), - [sym_redirected_io_statement] = STATE(1173), - [sym_piped_io_statement] = STATE(1173), - [sym_block] = STATE(1174), - [sym__exp] = STATE(482), - [sym_ternary_exp] = STATE(375), - [sym_binary_exp] = STATE(375), - [sym__binary_in] = STATE(369), - [sym_unary_exp] = STATE(375), - [sym_update_exp] = STATE(482), - [sym_assignment_exp] = STATE(482), - [sym_piped_io_exp] = STATE(482), - [sym_string_concat] = STATE(375), - [sym_field_ref] = STATE(256), - [sym_array_ref] = STATE(240), - [sym_regex] = STATE(482), - [sym_regex_constant] = STATE(482), - [sym_grouping] = STATE(375), - [sym__primitive] = STATE(375), - [sym_namespace] = STATE(2063), - [sym_ns_qualified_name] = STATE(196), - [sym_number] = STATE(375), - [sym_string] = STATE(375), - [sym_func_call] = STATE(375), - [sym_indirect_func_call] = STATE(482), - [sym_comment] = STATE(1238), - [aux_sym_if_statement_repeat1] = STATE(1238), - [sym_identifier] = ACTIONS(298), - [anon_sym_SEMI] = ACTIONS(398), - [anon_sym_if] = ACTIONS(302), - [anon_sym_LPAREN] = ACTIONS(304), - [anon_sym_while] = ACTIONS(306), + [sym_redirected_io_statement] = STATE(1163), + [sym_piped_io_statement] = STATE(1163), + [sym_block] = STATE(1164), + [sym__exp] = STATE(1446), + [sym_ternary_exp] = STATE(1371), + [sym_binary_exp] = STATE(1371), + [sym__binary_in] = STATE(1305), + [sym_unary_exp] = STATE(1371), + [sym_update_exp] = STATE(1446), + [sym_assignment_exp] = STATE(1446), + [sym_piped_io_exp] = STATE(1446), + [sym_string_concat] = STATE(1371), + [sym_field_ref] = STATE(632), + [sym_array_ref] = STATE(601), + [sym_regex] = STATE(1446), + [sym_regex_constant] = STATE(1446), + [sym_grouping] = STATE(1371), + [sym__primitive] = STATE(1371), + [sym_namespace] = STATE(2068), + [sym_ns_qualified_name] = STATE(590), + [sym_number] = STATE(1371), + [sym_string] = STATE(1371), + [sym_func_call] = STATE(1371), + [sym_indirect_func_call] = STATE(1446), + [sym_comment] = STATE(1252), + [aux_sym_if_statement_repeat1] = STATE(1252), + [sym_identifier] = ACTIONS(39), + [anon_sym_SEMI] = ACTIONS(392), + [anon_sym_if] = ACTIONS(43), + [anon_sym_LPAREN] = ACTIONS(312), + [anon_sym_while] = ACTIONS(47), [anon_sym_do] = ACTIONS(49), - [anon_sym_for] = ACTIONS(308), - [sym_break_statement] = ACTIONS(400), - [sym_continue_statement] = ACTIONS(400), + [anon_sym_for] = ACTIONS(51), + [sym_break_statement] = ACTIONS(394), + [sym_continue_statement] = ACTIONS(394), [anon_sym_delete] = ACTIONS(55), - [anon_sym_exit] = ACTIONS(312), - [anon_sym_return] = ACTIONS(314), + [anon_sym_exit] = ACTIONS(57), + [anon_sym_return] = ACTIONS(59), [anon_sym_switch] = ACTIONS(61), [anon_sym_LBRACE] = ACTIONS(316), - [anon_sym_getline] = ACTIONS(318), - [sym_next_statement] = ACTIONS(400), - [sym_nextfile_statement] = ACTIONS(400), - [anon_sym_print] = ACTIONS(320), - [anon_sym_printf] = ACTIONS(322), - [anon_sym_SLASH] = ACTIONS(324), - [anon_sym_PLUS] = ACTIONS(326), - [anon_sym_DASH] = ACTIONS(326), - [anon_sym_BANG] = ACTIONS(328), - [anon_sym_PLUS_PLUS] = ACTIONS(330), - [anon_sym_DASH_DASH] = ACTIONS(330), - [anon_sym_DOLLAR] = ACTIONS(332), - [anon_sym_AT] = ACTIONS(334), - [aux_sym_number_token1] = ACTIONS(336), - [aux_sym_number_token2] = ACTIONS(338), - [anon_sym_DQUOTE] = ACTIONS(340), - [anon_sym_POUND] = ACTIONS(171), + [anon_sym_getline] = ACTIONS(63), + [sym_next_statement] = ACTIONS(394), + [sym_nextfile_statement] = ACTIONS(394), + [anon_sym_print] = ACTIONS(65), + [anon_sym_printf] = ACTIONS(67), + [anon_sym_SLASH] = ACTIONS(318), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(71), + [anon_sym_BANG] = ACTIONS(320), + [anon_sym_PLUS_PLUS] = ACTIONS(322), + [anon_sym_DASH_DASH] = ACTIONS(322), + [anon_sym_DOLLAR] = ACTIONS(324), + [anon_sym_AT] = ACTIONS(326), + [aux_sym_number_token1] = ACTIONS(79), + [aux_sym_number_token2] = ACTIONS(328), + [anon_sym_DQUOTE] = ACTIONS(330), + [anon_sym_POUND] = ACTIONS(135), }, - [26] = { - [sym__statement] = STATE(1170), - [sym__statement_separated] = STATE(1170), - [sym__control_statement] = STATE(1170), - [sym_if_statement] = STATE(1170), - [sym_while_statement] = STATE(1170), - [sym_do_while_statement] = STATE(1170), - [sym_for_statement] = STATE(1170), - [sym_for_in_statement] = STATE(1170), - [sym_delete_statement] = STATE(1170), - [sym_exit_statement] = STATE(1170), - [sym_return_statement] = STATE(1170), - [sym_switch_statement] = STATE(1170), - [sym__io_statement] = STATE(1170), - [sym__getline_exp] = STATE(482), - [sym_getline_input] = STATE(482), - [sym_getline_file] = STATE(482), - [sym_print_statement] = STATE(740), - [sym_printf_statement] = STATE(740), - [sym_redirected_io_statement] = STATE(1170), - [sym_piped_io_statement] = STATE(1170), - [sym_block] = STATE(1172), - [sym__exp] = STATE(482), - [sym_ternary_exp] = STATE(375), - [sym_binary_exp] = STATE(375), - [sym__binary_in] = STATE(369), - [sym_unary_exp] = STATE(375), - [sym_update_exp] = STATE(482), - [sym_assignment_exp] = STATE(482), - [sym_piped_io_exp] = STATE(482), - [sym_string_concat] = STATE(375), - [sym_field_ref] = STATE(256), - [sym_array_ref] = STATE(240), - [sym_regex] = STATE(482), - [sym_regex_constant] = STATE(482), - [sym_grouping] = STATE(375), - [sym__primitive] = STATE(375), - [sym_namespace] = STATE(2063), - [sym_ns_qualified_name] = STATE(196), - [sym_number] = STATE(375), - [sym_string] = STATE(375), - [sym_func_call] = STATE(375), - [sym_indirect_func_call] = STATE(482), - [sym_comment] = STATE(1238), - [aux_sym_if_statement_repeat1] = STATE(1238), - [sym_identifier] = ACTIONS(298), - [anon_sym_SEMI] = ACTIONS(402), - [anon_sym_if] = ACTIONS(302), - [anon_sym_LPAREN] = ACTIONS(304), - [anon_sym_while] = ACTIONS(306), + [24] = { + [sym__statement] = STATE(1165), + [sym__statement_separated] = STATE(2), + [sym__control_statement] = STATE(1165), + [sym_if_statement] = STATE(1165), + [sym_while_statement] = STATE(1165), + [sym_do_while_statement] = STATE(1165), + [sym_for_statement] = STATE(1165), + [sym_for_in_statement] = STATE(1165), + [sym_delete_statement] = STATE(1165), + [sym_exit_statement] = STATE(1165), + [sym_return_statement] = STATE(1165), + [sym_switch_statement] = STATE(1165), + [sym__io_statement] = STATE(1165), + [sym__getline_exp] = STATE(1446), + [sym_getline_input] = STATE(1446), + [sym_getline_file] = STATE(1446), + [sym_print_statement] = STATE(1696), + [sym_printf_statement] = STATE(1696), + [sym_redirected_io_statement] = STATE(1165), + [sym_piped_io_statement] = STATE(1165), + [sym_block] = STATE(1166), + [sym__exp] = STATE(1446), + [sym_ternary_exp] = STATE(1371), + [sym_binary_exp] = STATE(1371), + [sym__binary_in] = STATE(1305), + [sym_unary_exp] = STATE(1371), + [sym_update_exp] = STATE(1446), + [sym_assignment_exp] = STATE(1446), + [sym_piped_io_exp] = STATE(1446), + [sym_string_concat] = STATE(1371), + [sym_field_ref] = STATE(632), + [sym_array_ref] = STATE(601), + [sym_regex] = STATE(1446), + [sym_regex_constant] = STATE(1446), + [sym_grouping] = STATE(1371), + [sym__primitive] = STATE(1371), + [sym_namespace] = STATE(2068), + [sym_ns_qualified_name] = STATE(590), + [sym_number] = STATE(1371), + [sym_string] = STATE(1371), + [sym_func_call] = STATE(1371), + [sym_indirect_func_call] = STATE(1446), + [sym_comment] = STATE(1252), + [aux_sym_if_statement_repeat1] = STATE(1252), + [sym_identifier] = ACTIONS(39), + [anon_sym_SEMI] = ACTIONS(396), + [anon_sym_if] = ACTIONS(43), + [anon_sym_LPAREN] = ACTIONS(312), + [anon_sym_while] = ACTIONS(47), [anon_sym_do] = ACTIONS(49), - [anon_sym_for] = ACTIONS(308), - [sym_break_statement] = ACTIONS(404), - [sym_continue_statement] = ACTIONS(404), + [anon_sym_for] = ACTIONS(51), + [sym_break_statement] = ACTIONS(398), + [sym_continue_statement] = ACTIONS(398), [anon_sym_delete] = ACTIONS(55), - [anon_sym_exit] = ACTIONS(312), - [anon_sym_return] = ACTIONS(314), + [anon_sym_exit] = ACTIONS(57), + [anon_sym_return] = ACTIONS(59), [anon_sym_switch] = ACTIONS(61), [anon_sym_LBRACE] = ACTIONS(316), - [anon_sym_getline] = ACTIONS(318), - [sym_next_statement] = ACTIONS(404), - [sym_nextfile_statement] = ACTIONS(404), - [anon_sym_print] = ACTIONS(320), - [anon_sym_printf] = ACTIONS(322), - [anon_sym_SLASH] = ACTIONS(324), - [anon_sym_PLUS] = ACTIONS(326), - [anon_sym_DASH] = ACTIONS(326), - [anon_sym_BANG] = ACTIONS(328), - [anon_sym_PLUS_PLUS] = ACTIONS(330), - [anon_sym_DASH_DASH] = ACTIONS(330), - [anon_sym_DOLLAR] = ACTIONS(332), - [anon_sym_AT] = ACTIONS(334), - [aux_sym_number_token1] = ACTIONS(336), - [aux_sym_number_token2] = ACTIONS(338), - [anon_sym_DQUOTE] = ACTIONS(340), - [anon_sym_POUND] = ACTIONS(171), + [anon_sym_getline] = ACTIONS(63), + [sym_next_statement] = ACTIONS(398), + [sym_nextfile_statement] = ACTIONS(398), + [anon_sym_print] = ACTIONS(65), + [anon_sym_printf] = ACTIONS(67), + [anon_sym_SLASH] = ACTIONS(318), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(71), + [anon_sym_BANG] = ACTIONS(320), + [anon_sym_PLUS_PLUS] = ACTIONS(322), + [anon_sym_DASH_DASH] = ACTIONS(322), + [anon_sym_DOLLAR] = ACTIONS(324), + [anon_sym_AT] = ACTIONS(326), + [aux_sym_number_token1] = ACTIONS(79), + [aux_sym_number_token2] = ACTIONS(328), + [anon_sym_DQUOTE] = ACTIONS(330), + [anon_sym_POUND] = ACTIONS(135), }, - [27] = { - [sym__statement] = STATE(1166), - [sym__statement_separated] = STATE(1166), - [sym__control_statement] = STATE(1166), - [sym_if_statement] = STATE(1166), - [sym_while_statement] = STATE(1166), - [sym_do_while_statement] = STATE(1166), - [sym_for_statement] = STATE(1166), - [sym_for_in_statement] = STATE(1166), - [sym_delete_statement] = STATE(1166), - [sym_exit_statement] = STATE(1166), - [sym_return_statement] = STATE(1166), - [sym_switch_statement] = STATE(1166), - [sym__io_statement] = STATE(1166), - [sym__getline_exp] = STATE(482), - [sym_getline_input] = STATE(482), - [sym_getline_file] = STATE(482), - [sym_print_statement] = STATE(740), - [sym_printf_statement] = STATE(740), - [sym_redirected_io_statement] = STATE(1166), - [sym_piped_io_statement] = STATE(1166), - [sym_block] = STATE(1167), - [sym__exp] = STATE(482), - [sym_ternary_exp] = STATE(375), - [sym_binary_exp] = STATE(375), - [sym__binary_in] = STATE(369), - [sym_unary_exp] = STATE(375), - [sym_update_exp] = STATE(482), - [sym_assignment_exp] = STATE(482), - [sym_piped_io_exp] = STATE(482), - [sym_string_concat] = STATE(375), - [sym_field_ref] = STATE(256), - [sym_array_ref] = STATE(240), - [sym_regex] = STATE(482), - [sym_regex_constant] = STATE(482), - [sym_grouping] = STATE(375), - [sym__primitive] = STATE(375), - [sym_namespace] = STATE(2063), - [sym_ns_qualified_name] = STATE(196), - [sym_number] = STATE(375), - [sym_string] = STATE(375), - [sym_func_call] = STATE(375), - [sym_indirect_func_call] = STATE(482), - [sym_comment] = STATE(34), - [aux_sym_if_statement_repeat1] = STATE(34), - [sym_identifier] = ACTIONS(298), - [anon_sym_SEMI] = ACTIONS(406), - [anon_sym_if] = ACTIONS(302), - [anon_sym_LPAREN] = ACTIONS(304), - [anon_sym_while] = ACTIONS(306), + [25] = { + [sym__statement] = STATE(1132), + [sym__statement_separated] = STATE(2), + [sym__control_statement] = STATE(1132), + [sym_if_statement] = STATE(1132), + [sym_while_statement] = STATE(1132), + [sym_do_while_statement] = STATE(1132), + [sym_for_statement] = STATE(1132), + [sym_for_in_statement] = STATE(1132), + [sym_delete_statement] = STATE(1132), + [sym_exit_statement] = STATE(1132), + [sym_return_statement] = STATE(1132), + [sym_switch_statement] = STATE(1132), + [sym__io_statement] = STATE(1132), + [sym__getline_exp] = STATE(1446), + [sym_getline_input] = STATE(1446), + [sym_getline_file] = STATE(1446), + [sym_print_statement] = STATE(1696), + [sym_printf_statement] = STATE(1696), + [sym_redirected_io_statement] = STATE(1132), + [sym_piped_io_statement] = STATE(1132), + [sym_block] = STATE(1133), + [sym__exp] = STATE(1446), + [sym_ternary_exp] = STATE(1371), + [sym_binary_exp] = STATE(1371), + [sym__binary_in] = STATE(1305), + [sym_unary_exp] = STATE(1371), + [sym_update_exp] = STATE(1446), + [sym_assignment_exp] = STATE(1446), + [sym_piped_io_exp] = STATE(1446), + [sym_string_concat] = STATE(1371), + [sym_field_ref] = STATE(632), + [sym_array_ref] = STATE(601), + [sym_regex] = STATE(1446), + [sym_regex_constant] = STATE(1446), + [sym_grouping] = STATE(1371), + [sym__primitive] = STATE(1371), + [sym_namespace] = STATE(2068), + [sym_ns_qualified_name] = STATE(590), + [sym_number] = STATE(1371), + [sym_string] = STATE(1371), + [sym_func_call] = STATE(1371), + [sym_indirect_func_call] = STATE(1446), + [sym_comment] = STATE(1252), + [aux_sym_if_statement_repeat1] = STATE(1252), + [sym_identifier] = ACTIONS(39), + [anon_sym_SEMI] = ACTIONS(400), + [anon_sym_if] = ACTIONS(43), + [anon_sym_LPAREN] = ACTIONS(312), + [anon_sym_while] = ACTIONS(47), [anon_sym_do] = ACTIONS(49), - [anon_sym_for] = ACTIONS(308), - [sym_break_statement] = ACTIONS(408), - [sym_continue_statement] = ACTIONS(408), + [anon_sym_for] = ACTIONS(51), + [sym_break_statement] = ACTIONS(402), + [sym_continue_statement] = ACTIONS(402), [anon_sym_delete] = ACTIONS(55), - [anon_sym_exit] = ACTIONS(312), - [anon_sym_return] = ACTIONS(314), + [anon_sym_exit] = ACTIONS(57), + [anon_sym_return] = ACTIONS(59), [anon_sym_switch] = ACTIONS(61), [anon_sym_LBRACE] = ACTIONS(316), - [anon_sym_getline] = ACTIONS(318), - [sym_next_statement] = ACTIONS(408), - [sym_nextfile_statement] = ACTIONS(408), - [anon_sym_print] = ACTIONS(320), - [anon_sym_printf] = ACTIONS(322), - [anon_sym_SLASH] = ACTIONS(324), - [anon_sym_PLUS] = ACTIONS(326), - [anon_sym_DASH] = ACTIONS(326), - [anon_sym_BANG] = ACTIONS(328), - [anon_sym_PLUS_PLUS] = ACTIONS(330), - [anon_sym_DASH_DASH] = ACTIONS(330), - [anon_sym_DOLLAR] = ACTIONS(332), - [anon_sym_AT] = ACTIONS(334), - [aux_sym_number_token1] = ACTIONS(336), - [aux_sym_number_token2] = ACTIONS(338), - [anon_sym_DQUOTE] = ACTIONS(340), - [anon_sym_POUND] = ACTIONS(171), + [anon_sym_getline] = ACTIONS(63), + [sym_next_statement] = ACTIONS(402), + [sym_nextfile_statement] = ACTIONS(402), + [anon_sym_print] = ACTIONS(65), + [anon_sym_printf] = ACTIONS(67), + [anon_sym_SLASH] = ACTIONS(318), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(71), + [anon_sym_BANG] = ACTIONS(320), + [anon_sym_PLUS_PLUS] = ACTIONS(322), + [anon_sym_DASH_DASH] = ACTIONS(322), + [anon_sym_DOLLAR] = ACTIONS(324), + [anon_sym_AT] = ACTIONS(326), + [aux_sym_number_token1] = ACTIONS(79), + [aux_sym_number_token2] = ACTIONS(328), + [anon_sym_DQUOTE] = ACTIONS(330), + [anon_sym_POUND] = ACTIONS(135), }, - [28] = { - [sym__statement] = STATE(1162), - [sym__statement_separated] = STATE(1162), - [sym__control_statement] = STATE(1162), - [sym_if_statement] = STATE(1162), - [sym_while_statement] = STATE(1162), - [sym_do_while_statement] = STATE(1162), - [sym_for_statement] = STATE(1162), - [sym_for_in_statement] = STATE(1162), - [sym_delete_statement] = STATE(1162), - [sym_exit_statement] = STATE(1162), - [sym_return_statement] = STATE(1162), - [sym_switch_statement] = STATE(1162), - [sym__io_statement] = STATE(1162), - [sym__getline_exp] = STATE(482), - [sym_getline_input] = STATE(482), - [sym_getline_file] = STATE(482), - [sym_print_statement] = STATE(740), - [sym_printf_statement] = STATE(740), - [sym_redirected_io_statement] = STATE(1162), - [sym_piped_io_statement] = STATE(1162), - [sym_block] = STATE(1164), - [sym__exp] = STATE(482), - [sym_ternary_exp] = STATE(375), - [sym_binary_exp] = STATE(375), - [sym__binary_in] = STATE(369), - [sym_unary_exp] = STATE(375), - [sym_update_exp] = STATE(482), - [sym_assignment_exp] = STATE(482), - [sym_piped_io_exp] = STATE(482), - [sym_string_concat] = STATE(375), - [sym_field_ref] = STATE(256), - [sym_array_ref] = STATE(240), - [sym_regex] = STATE(482), - [sym_regex_constant] = STATE(482), - [sym_grouping] = STATE(375), - [sym__primitive] = STATE(375), - [sym_namespace] = STATE(2063), - [sym_ns_qualified_name] = STATE(196), - [sym_number] = STATE(375), - [sym_string] = STATE(375), - [sym_func_call] = STATE(375), - [sym_indirect_func_call] = STATE(482), - [sym_comment] = STATE(1238), - [aux_sym_if_statement_repeat1] = STATE(1238), - [sym_identifier] = ACTIONS(298), - [anon_sym_SEMI] = ACTIONS(410), - [anon_sym_if] = ACTIONS(302), - [anon_sym_LPAREN] = ACTIONS(304), - [anon_sym_while] = ACTIONS(306), + [26] = { + [sym__statement] = STATE(1190), + [sym__statement_separated] = STATE(2), + [sym__control_statement] = STATE(1190), + [sym_if_statement] = STATE(1190), + [sym_while_statement] = STATE(1190), + [sym_do_while_statement] = STATE(1190), + [sym_for_statement] = STATE(1190), + [sym_for_in_statement] = STATE(1190), + [sym_delete_statement] = STATE(1190), + [sym_exit_statement] = STATE(1190), + [sym_return_statement] = STATE(1190), + [sym_switch_statement] = STATE(1190), + [sym__io_statement] = STATE(1190), + [sym__getline_exp] = STATE(1446), + [sym_getline_input] = STATE(1446), + [sym_getline_file] = STATE(1446), + [sym_print_statement] = STATE(1696), + [sym_printf_statement] = STATE(1696), + [sym_redirected_io_statement] = STATE(1190), + [sym_piped_io_statement] = STATE(1190), + [sym_block] = STATE(1193), + [sym__exp] = STATE(1446), + [sym_ternary_exp] = STATE(1371), + [sym_binary_exp] = STATE(1371), + [sym__binary_in] = STATE(1305), + [sym_unary_exp] = STATE(1371), + [sym_update_exp] = STATE(1446), + [sym_assignment_exp] = STATE(1446), + [sym_piped_io_exp] = STATE(1446), + [sym_string_concat] = STATE(1371), + [sym_field_ref] = STATE(632), + [sym_array_ref] = STATE(601), + [sym_regex] = STATE(1446), + [sym_regex_constant] = STATE(1446), + [sym_grouping] = STATE(1371), + [sym__primitive] = STATE(1371), + [sym_namespace] = STATE(2068), + [sym_ns_qualified_name] = STATE(590), + [sym_number] = STATE(1371), + [sym_string] = STATE(1371), + [sym_func_call] = STATE(1371), + [sym_indirect_func_call] = STATE(1446), + [sym_comment] = STATE(20), + [aux_sym_if_statement_repeat1] = STATE(20), + [sym_identifier] = ACTIONS(39), + [anon_sym_SEMI] = ACTIONS(404), + [anon_sym_if] = ACTIONS(43), + [anon_sym_LPAREN] = ACTIONS(312), + [anon_sym_while] = ACTIONS(47), [anon_sym_do] = ACTIONS(49), - [anon_sym_for] = ACTIONS(308), - [sym_break_statement] = ACTIONS(412), - [sym_continue_statement] = ACTIONS(412), + [anon_sym_for] = ACTIONS(51), + [sym_break_statement] = ACTIONS(406), + [sym_continue_statement] = ACTIONS(406), [anon_sym_delete] = ACTIONS(55), - [anon_sym_exit] = ACTIONS(312), - [anon_sym_return] = ACTIONS(314), + [anon_sym_exit] = ACTIONS(57), + [anon_sym_return] = ACTIONS(59), [anon_sym_switch] = ACTIONS(61), [anon_sym_LBRACE] = ACTIONS(316), - [anon_sym_getline] = ACTIONS(318), - [sym_next_statement] = ACTIONS(412), - [sym_nextfile_statement] = ACTIONS(412), - [anon_sym_print] = ACTIONS(320), - [anon_sym_printf] = ACTIONS(322), - [anon_sym_SLASH] = ACTIONS(324), - [anon_sym_PLUS] = ACTIONS(326), - [anon_sym_DASH] = ACTIONS(326), - [anon_sym_BANG] = ACTIONS(328), - [anon_sym_PLUS_PLUS] = ACTIONS(330), - [anon_sym_DASH_DASH] = ACTIONS(330), - [anon_sym_DOLLAR] = ACTIONS(332), - [anon_sym_AT] = ACTIONS(334), - [aux_sym_number_token1] = ACTIONS(336), - [aux_sym_number_token2] = ACTIONS(338), - [anon_sym_DQUOTE] = ACTIONS(340), - [anon_sym_POUND] = ACTIONS(171), + [anon_sym_getline] = ACTIONS(63), + [sym_next_statement] = ACTIONS(406), + [sym_nextfile_statement] = ACTIONS(406), + [anon_sym_print] = ACTIONS(65), + [anon_sym_printf] = ACTIONS(67), + [anon_sym_SLASH] = ACTIONS(318), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(71), + [anon_sym_BANG] = ACTIONS(320), + [anon_sym_PLUS_PLUS] = ACTIONS(322), + [anon_sym_DASH_DASH] = ACTIONS(322), + [anon_sym_DOLLAR] = ACTIONS(324), + [anon_sym_AT] = ACTIONS(326), + [aux_sym_number_token1] = ACTIONS(79), + [aux_sym_number_token2] = ACTIONS(328), + [anon_sym_DQUOTE] = ACTIONS(330), + [anon_sym_POUND] = ACTIONS(135), }, - [29] = { - [sym__statement] = STATE(1155), - [sym__statement_separated] = STATE(1155), - [sym__control_statement] = STATE(1155), - [sym_if_statement] = STATE(1155), - [sym_while_statement] = STATE(1155), - [sym_do_while_statement] = STATE(1155), - [sym_for_statement] = STATE(1155), - [sym_for_in_statement] = STATE(1155), - [sym_delete_statement] = STATE(1155), - [sym_exit_statement] = STATE(1155), - [sym_return_statement] = STATE(1155), - [sym_switch_statement] = STATE(1155), - [sym__io_statement] = STATE(1155), - [sym__getline_exp] = STATE(482), - [sym_getline_input] = STATE(482), - [sym_getline_file] = STATE(482), - [sym_print_statement] = STATE(740), - [sym_printf_statement] = STATE(740), - [sym_redirected_io_statement] = STATE(1155), - [sym_piped_io_statement] = STATE(1155), - [sym_block] = STATE(1158), - [sym__exp] = STATE(482), - [sym_ternary_exp] = STATE(375), - [sym_binary_exp] = STATE(375), - [sym__binary_in] = STATE(369), - [sym_unary_exp] = STATE(375), - [sym_update_exp] = STATE(482), - [sym_assignment_exp] = STATE(482), - [sym_piped_io_exp] = STATE(482), - [sym_string_concat] = STATE(375), - [sym_field_ref] = STATE(256), - [sym_array_ref] = STATE(240), - [sym_regex] = STATE(482), - [sym_regex_constant] = STATE(482), - [sym_grouping] = STATE(375), - [sym__primitive] = STATE(375), - [sym_namespace] = STATE(2063), - [sym_ns_qualified_name] = STATE(196), - [sym_number] = STATE(375), - [sym_string] = STATE(375), - [sym_func_call] = STATE(375), - [sym_indirect_func_call] = STATE(482), - [sym_comment] = STATE(1238), - [aux_sym_if_statement_repeat1] = STATE(1238), - [sym_identifier] = ACTIONS(298), - [anon_sym_SEMI] = ACTIONS(414), - [anon_sym_if] = ACTIONS(302), - [anon_sym_LPAREN] = ACTIONS(304), - [anon_sym_while] = ACTIONS(306), + [27] = { + [sym__statement] = STATE(1186), + [sym__statement_separated] = STATE(2), + [sym__control_statement] = STATE(1186), + [sym_if_statement] = STATE(1186), + [sym_while_statement] = STATE(1186), + [sym_do_while_statement] = STATE(1186), + [sym_for_statement] = STATE(1186), + [sym_for_in_statement] = STATE(1186), + [sym_delete_statement] = STATE(1186), + [sym_exit_statement] = STATE(1186), + [sym_return_statement] = STATE(1186), + [sym_switch_statement] = STATE(1186), + [sym__io_statement] = STATE(1186), + [sym__getline_exp] = STATE(1446), + [sym_getline_input] = STATE(1446), + [sym_getline_file] = STATE(1446), + [sym_print_statement] = STATE(1696), + [sym_printf_statement] = STATE(1696), + [sym_redirected_io_statement] = STATE(1186), + [sym_piped_io_statement] = STATE(1186), + [sym_block] = STATE(1181), + [sym__exp] = STATE(1446), + [sym_ternary_exp] = STATE(1371), + [sym_binary_exp] = STATE(1371), + [sym__binary_in] = STATE(1305), + [sym_unary_exp] = STATE(1371), + [sym_update_exp] = STATE(1446), + [sym_assignment_exp] = STATE(1446), + [sym_piped_io_exp] = STATE(1446), + [sym_string_concat] = STATE(1371), + [sym_field_ref] = STATE(632), + [sym_array_ref] = STATE(601), + [sym_regex] = STATE(1446), + [sym_regex_constant] = STATE(1446), + [sym_grouping] = STATE(1371), + [sym__primitive] = STATE(1371), + [sym_namespace] = STATE(2068), + [sym_ns_qualified_name] = STATE(590), + [sym_number] = STATE(1371), + [sym_string] = STATE(1371), + [sym_func_call] = STATE(1371), + [sym_indirect_func_call] = STATE(1446), + [sym_comment] = STATE(21), + [aux_sym_if_statement_repeat1] = STATE(21), + [sym_identifier] = ACTIONS(39), + [anon_sym_SEMI] = ACTIONS(408), + [anon_sym_if] = ACTIONS(43), + [anon_sym_LPAREN] = ACTIONS(312), + [anon_sym_while] = ACTIONS(47), [anon_sym_do] = ACTIONS(49), - [anon_sym_for] = ACTIONS(308), - [sym_break_statement] = ACTIONS(416), - [sym_continue_statement] = ACTIONS(416), + [anon_sym_for] = ACTIONS(51), + [sym_break_statement] = ACTIONS(410), + [sym_continue_statement] = ACTIONS(410), [anon_sym_delete] = ACTIONS(55), - [anon_sym_exit] = ACTIONS(312), - [anon_sym_return] = ACTIONS(314), + [anon_sym_exit] = ACTIONS(57), + [anon_sym_return] = ACTIONS(59), [anon_sym_switch] = ACTIONS(61), [anon_sym_LBRACE] = ACTIONS(316), - [anon_sym_getline] = ACTIONS(318), - [sym_next_statement] = ACTIONS(416), - [sym_nextfile_statement] = ACTIONS(416), - [anon_sym_print] = ACTIONS(320), - [anon_sym_printf] = ACTIONS(322), - [anon_sym_SLASH] = ACTIONS(324), - [anon_sym_PLUS] = ACTIONS(326), - [anon_sym_DASH] = ACTIONS(326), - [anon_sym_BANG] = ACTIONS(328), - [anon_sym_PLUS_PLUS] = ACTIONS(330), - [anon_sym_DASH_DASH] = ACTIONS(330), - [anon_sym_DOLLAR] = ACTIONS(332), - [anon_sym_AT] = ACTIONS(334), - [aux_sym_number_token1] = ACTIONS(336), - [aux_sym_number_token2] = ACTIONS(338), - [anon_sym_DQUOTE] = ACTIONS(340), - [anon_sym_POUND] = ACTIONS(171), + [anon_sym_getline] = ACTIONS(63), + [sym_next_statement] = ACTIONS(410), + [sym_nextfile_statement] = ACTIONS(410), + [anon_sym_print] = ACTIONS(65), + [anon_sym_printf] = ACTIONS(67), + [anon_sym_SLASH] = ACTIONS(318), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(71), + [anon_sym_BANG] = ACTIONS(320), + [anon_sym_PLUS_PLUS] = ACTIONS(322), + [anon_sym_DASH_DASH] = ACTIONS(322), + [anon_sym_DOLLAR] = ACTIONS(324), + [anon_sym_AT] = ACTIONS(326), + [aux_sym_number_token1] = ACTIONS(79), + [aux_sym_number_token2] = ACTIONS(328), + [anon_sym_DQUOTE] = ACTIONS(330), + [anon_sym_POUND] = ACTIONS(135), }, - [30] = { - [sym__statement] = STATE(1227), - [sym__statement_separated] = STATE(3), - [sym__control_statement] = STATE(1227), - [sym_if_statement] = STATE(1227), - [sym_while_statement] = STATE(1227), - [sym_do_while_statement] = STATE(1227), - [sym_for_statement] = STATE(1227), - [sym_for_in_statement] = STATE(1227), - [sym_delete_statement] = STATE(1227), - [sym_exit_statement] = STATE(1227), - [sym_return_statement] = STATE(1227), - [sym_switch_statement] = STATE(1227), - [sym__io_statement] = STATE(1227), - [sym__getline_exp] = STATE(1495), - [sym_getline_input] = STATE(1495), - [sym_getline_file] = STATE(1495), + [28] = { + [sym__statement] = STATE(1192), + [sym__statement_separated] = STATE(2), + [sym__control_statement] = STATE(1192), + [sym_if_statement] = STATE(1192), + [sym_while_statement] = STATE(1192), + [sym_do_while_statement] = STATE(1192), + [sym_for_statement] = STATE(1192), + [sym_for_in_statement] = STATE(1192), + [sym_delete_statement] = STATE(1192), + [sym_exit_statement] = STATE(1192), + [sym_return_statement] = STATE(1192), + [sym_switch_statement] = STATE(1192), + [sym__io_statement] = STATE(1192), + [sym__getline_exp] = STATE(1446), + [sym_getline_input] = STATE(1446), + [sym_getline_file] = STATE(1446), [sym_print_statement] = STATE(1696), [sym_printf_statement] = STATE(1696), - [sym_redirected_io_statement] = STATE(1227), - [sym_piped_io_statement] = STATE(1227), - [sym_block] = STATE(1226), - [sym__exp] = STATE(1495), - [sym_ternary_exp] = STATE(1421), - [sym_binary_exp] = STATE(1421), - [sym__binary_in] = STATE(1373), - [sym_unary_exp] = STATE(1421), - [sym_update_exp] = STATE(1495), - [sym_assignment_exp] = STATE(1495), - [sym_piped_io_exp] = STATE(1495), - [sym_string_concat] = STATE(1421), - [sym_field_ref] = STATE(703), - [sym_array_ref] = STATE(610), - [sym_regex] = STATE(1495), - [sym_regex_constant] = STATE(1495), - [sym_grouping] = STATE(1421), - [sym__primitive] = STATE(1421), - [sym_namespace] = STATE(1955), - [sym_ns_qualified_name] = STATE(607), - [sym_number] = STATE(1421), - [sym_string] = STATE(1421), - [sym_func_call] = STATE(1421), - [sym_indirect_func_call] = STATE(1495), - [sym_comment] = STATE(1238), - [aux_sym_if_statement_repeat1] = STATE(1238), - [sym_identifier] = ACTIONS(85), - [anon_sym_SEMI] = ACTIONS(264), - [anon_sym_if] = ACTIONS(87), - [anon_sym_LPAREN] = ACTIONS(272), - [anon_sym_while] = ACTIONS(91), - [anon_sym_do] = ACTIONS(93), - [anon_sym_for] = ACTIONS(95), - [sym_break_statement] = ACTIONS(266), - [sym_continue_statement] = ACTIONS(266), - [anon_sym_delete] = ACTIONS(99), - [anon_sym_exit] = ACTIONS(101), - [anon_sym_return] = ACTIONS(103), - [anon_sym_switch] = ACTIONS(105), - [anon_sym_LBRACE] = ACTIONS(268), - [anon_sym_getline] = ACTIONS(107), - [sym_next_statement] = ACTIONS(266), - [sym_nextfile_statement] = ACTIONS(266), - [anon_sym_print] = ACTIONS(109), - [anon_sym_printf] = ACTIONS(111), - [anon_sym_SLASH] = ACTIONS(276), - [anon_sym_PLUS] = ACTIONS(115), - [anon_sym_DASH] = ACTIONS(115), - [anon_sym_BANG] = ACTIONS(278), - [anon_sym_PLUS_PLUS] = ACTIONS(280), - [anon_sym_DASH_DASH] = ACTIONS(280), - [anon_sym_DOLLAR] = ACTIONS(282), - [anon_sym_AT] = ACTIONS(284), - [aux_sym_number_token1] = ACTIONS(123), - [aux_sym_number_token2] = ACTIONS(286), - [anon_sym_DQUOTE] = ACTIONS(288), - [anon_sym_POUND] = ACTIONS(171), + [sym_redirected_io_statement] = STATE(1192), + [sym_piped_io_statement] = STATE(1192), + [sym_block] = STATE(1191), + [sym__exp] = STATE(1446), + [sym_ternary_exp] = STATE(1371), + [sym_binary_exp] = STATE(1371), + [sym__binary_in] = STATE(1305), + [sym_unary_exp] = STATE(1371), + [sym_update_exp] = STATE(1446), + [sym_assignment_exp] = STATE(1446), + [sym_piped_io_exp] = STATE(1446), + [sym_string_concat] = STATE(1371), + [sym_field_ref] = STATE(632), + [sym_array_ref] = STATE(601), + [sym_regex] = STATE(1446), + [sym_regex_constant] = STATE(1446), + [sym_grouping] = STATE(1371), + [sym__primitive] = STATE(1371), + [sym_namespace] = STATE(2068), + [sym_ns_qualified_name] = STATE(590), + [sym_number] = STATE(1371), + [sym_string] = STATE(1371), + [sym_func_call] = STATE(1371), + [sym_indirect_func_call] = STATE(1446), + [sym_comment] = STATE(23), + [aux_sym_if_statement_repeat1] = STATE(23), + [sym_identifier] = ACTIONS(39), + [anon_sym_SEMI] = ACTIONS(412), + [anon_sym_if] = ACTIONS(43), + [anon_sym_LPAREN] = ACTIONS(312), + [anon_sym_while] = ACTIONS(47), + [anon_sym_do] = ACTIONS(49), + [anon_sym_for] = ACTIONS(51), + [sym_break_statement] = ACTIONS(414), + [sym_continue_statement] = ACTIONS(414), + [anon_sym_delete] = ACTIONS(55), + [anon_sym_exit] = ACTIONS(57), + [anon_sym_return] = ACTIONS(59), + [anon_sym_switch] = ACTIONS(61), + [anon_sym_LBRACE] = ACTIONS(316), + [anon_sym_getline] = ACTIONS(63), + [sym_next_statement] = ACTIONS(414), + [sym_nextfile_statement] = ACTIONS(414), + [anon_sym_print] = ACTIONS(65), + [anon_sym_printf] = ACTIONS(67), + [anon_sym_SLASH] = ACTIONS(318), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(71), + [anon_sym_BANG] = ACTIONS(320), + [anon_sym_PLUS_PLUS] = ACTIONS(322), + [anon_sym_DASH_DASH] = ACTIONS(322), + [anon_sym_DOLLAR] = ACTIONS(324), + [anon_sym_AT] = ACTIONS(326), + [aux_sym_number_token1] = ACTIONS(79), + [aux_sym_number_token2] = ACTIONS(328), + [anon_sym_DQUOTE] = ACTIONS(330), + [anon_sym_POUND] = ACTIONS(135), }, - [31] = { - [sym__statement] = STATE(1153), - [sym__statement_separated] = STATE(1153), - [sym__control_statement] = STATE(1153), - [sym_if_statement] = STATE(1153), - [sym_while_statement] = STATE(1153), - [sym_do_while_statement] = STATE(1153), - [sym_for_statement] = STATE(1153), - [sym_for_in_statement] = STATE(1153), - [sym_delete_statement] = STATE(1153), - [sym_exit_statement] = STATE(1153), - [sym_return_statement] = STATE(1153), - [sym_switch_statement] = STATE(1153), - [sym__io_statement] = STATE(1153), - [sym__getline_exp] = STATE(482), - [sym_getline_input] = STATE(482), - [sym_getline_file] = STATE(482), - [sym_print_statement] = STATE(740), - [sym_printf_statement] = STATE(740), - [sym_redirected_io_statement] = STATE(1153), - [sym_piped_io_statement] = STATE(1153), - [sym_block] = STATE(1154), - [sym__exp] = STATE(482), - [sym_ternary_exp] = STATE(375), - [sym_binary_exp] = STATE(375), - [sym__binary_in] = STATE(369), - [sym_unary_exp] = STATE(375), - [sym_update_exp] = STATE(482), - [sym_assignment_exp] = STATE(482), - [sym_piped_io_exp] = STATE(482), - [sym_string_concat] = STATE(375), - [sym_field_ref] = STATE(256), - [sym_array_ref] = STATE(240), - [sym_regex] = STATE(482), - [sym_regex_constant] = STATE(482), - [sym_grouping] = STATE(375), - [sym__primitive] = STATE(375), - [sym_namespace] = STATE(2063), - [sym_ns_qualified_name] = STATE(196), - [sym_number] = STATE(375), - [sym_string] = STATE(375), - [sym_func_call] = STATE(375), - [sym_indirect_func_call] = STATE(482), - [sym_comment] = STATE(35), - [aux_sym_if_statement_repeat1] = STATE(35), - [sym_identifier] = ACTIONS(298), - [anon_sym_SEMI] = ACTIONS(418), - [anon_sym_if] = ACTIONS(302), - [anon_sym_LPAREN] = ACTIONS(304), - [anon_sym_while] = ACTIONS(306), + [29] = { + [sym__statement] = STATE(1183), + [sym__statement_separated] = STATE(2), + [sym__control_statement] = STATE(1183), + [sym_if_statement] = STATE(1183), + [sym_while_statement] = STATE(1183), + [sym_do_while_statement] = STATE(1183), + [sym_for_statement] = STATE(1183), + [sym_for_in_statement] = STATE(1183), + [sym_delete_statement] = STATE(1183), + [sym_exit_statement] = STATE(1183), + [sym_return_statement] = STATE(1183), + [sym_switch_statement] = STATE(1183), + [sym__io_statement] = STATE(1183), + [sym__getline_exp] = STATE(1446), + [sym_getline_input] = STATE(1446), + [sym_getline_file] = STATE(1446), + [sym_print_statement] = STATE(1696), + [sym_printf_statement] = STATE(1696), + [sym_redirected_io_statement] = STATE(1183), + [sym_piped_io_statement] = STATE(1183), + [sym_block] = STATE(1180), + [sym__exp] = STATE(1446), + [sym_ternary_exp] = STATE(1371), + [sym_binary_exp] = STATE(1371), + [sym__binary_in] = STATE(1305), + [sym_unary_exp] = STATE(1371), + [sym_update_exp] = STATE(1446), + [sym_assignment_exp] = STATE(1446), + [sym_piped_io_exp] = STATE(1446), + [sym_string_concat] = STATE(1371), + [sym_field_ref] = STATE(632), + [sym_array_ref] = STATE(601), + [sym_regex] = STATE(1446), + [sym_regex_constant] = STATE(1446), + [sym_grouping] = STATE(1371), + [sym__primitive] = STATE(1371), + [sym_namespace] = STATE(2068), + [sym_ns_qualified_name] = STATE(590), + [sym_number] = STATE(1371), + [sym_string] = STATE(1371), + [sym_func_call] = STATE(1371), + [sym_indirect_func_call] = STATE(1446), + [sym_comment] = STATE(24), + [aux_sym_if_statement_repeat1] = STATE(24), + [sym_identifier] = ACTIONS(39), + [anon_sym_SEMI] = ACTIONS(416), + [anon_sym_if] = ACTIONS(43), + [anon_sym_LPAREN] = ACTIONS(312), + [anon_sym_while] = ACTIONS(47), [anon_sym_do] = ACTIONS(49), - [anon_sym_for] = ACTIONS(308), - [sym_break_statement] = ACTIONS(420), - [sym_continue_statement] = ACTIONS(420), + [anon_sym_for] = ACTIONS(51), + [sym_break_statement] = ACTIONS(418), + [sym_continue_statement] = ACTIONS(418), [anon_sym_delete] = ACTIONS(55), - [anon_sym_exit] = ACTIONS(312), - [anon_sym_return] = ACTIONS(314), + [anon_sym_exit] = ACTIONS(57), + [anon_sym_return] = ACTIONS(59), [anon_sym_switch] = ACTIONS(61), [anon_sym_LBRACE] = ACTIONS(316), - [anon_sym_getline] = ACTIONS(318), - [sym_next_statement] = ACTIONS(420), - [sym_nextfile_statement] = ACTIONS(420), - [anon_sym_print] = ACTIONS(320), - [anon_sym_printf] = ACTIONS(322), - [anon_sym_SLASH] = ACTIONS(324), - [anon_sym_PLUS] = ACTIONS(326), - [anon_sym_DASH] = ACTIONS(326), - [anon_sym_BANG] = ACTIONS(328), - [anon_sym_PLUS_PLUS] = ACTIONS(330), - [anon_sym_DASH_DASH] = ACTIONS(330), - [anon_sym_DOLLAR] = ACTIONS(332), - [anon_sym_AT] = ACTIONS(334), - [aux_sym_number_token1] = ACTIONS(336), - [aux_sym_number_token2] = ACTIONS(338), - [anon_sym_DQUOTE] = ACTIONS(340), - [anon_sym_POUND] = ACTIONS(171), + [anon_sym_getline] = ACTIONS(63), + [sym_next_statement] = ACTIONS(418), + [sym_nextfile_statement] = ACTIONS(418), + [anon_sym_print] = ACTIONS(65), + [anon_sym_printf] = ACTIONS(67), + [anon_sym_SLASH] = ACTIONS(318), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(71), + [anon_sym_BANG] = ACTIONS(320), + [anon_sym_PLUS_PLUS] = ACTIONS(322), + [anon_sym_DASH_DASH] = ACTIONS(322), + [anon_sym_DOLLAR] = ACTIONS(324), + [anon_sym_AT] = ACTIONS(326), + [aux_sym_number_token1] = ACTIONS(79), + [aux_sym_number_token2] = ACTIONS(328), + [anon_sym_DQUOTE] = ACTIONS(330), + [anon_sym_POUND] = ACTIONS(135), }, - [32] = { - [sym__statement] = STATE(1151), - [sym__statement_separated] = STATE(1151), - [sym__control_statement] = STATE(1151), - [sym_if_statement] = STATE(1151), - [sym_while_statement] = STATE(1151), - [sym_do_while_statement] = STATE(1151), - [sym_for_statement] = STATE(1151), - [sym_for_in_statement] = STATE(1151), - [sym_delete_statement] = STATE(1151), - [sym_exit_statement] = STATE(1151), - [sym_return_statement] = STATE(1151), - [sym_switch_statement] = STATE(1151), - [sym__io_statement] = STATE(1151), - [sym__getline_exp] = STATE(482), - [sym_getline_input] = STATE(482), - [sym_getline_file] = STATE(482), - [sym_print_statement] = STATE(740), - [sym_printf_statement] = STATE(740), - [sym_redirected_io_statement] = STATE(1151), - [sym_piped_io_statement] = STATE(1151), - [sym_block] = STATE(1152), - [sym__exp] = STATE(482), - [sym_ternary_exp] = STATE(375), - [sym_binary_exp] = STATE(375), - [sym__binary_in] = STATE(369), - [sym_unary_exp] = STATE(375), - [sym_update_exp] = STATE(482), - [sym_assignment_exp] = STATE(482), - [sym_piped_io_exp] = STATE(482), - [sym_string_concat] = STATE(375), - [sym_field_ref] = STATE(256), - [sym_array_ref] = STATE(240), - [sym_regex] = STATE(482), - [sym_regex_constant] = STATE(482), - [sym_grouping] = STATE(375), - [sym__primitive] = STATE(375), - [sym_namespace] = STATE(2063), - [sym_ns_qualified_name] = STATE(196), - [sym_number] = STATE(375), - [sym_string] = STATE(375), - [sym_func_call] = STATE(375), - [sym_indirect_func_call] = STATE(482), - [sym_comment] = STATE(37), - [aux_sym_if_statement_repeat1] = STATE(37), - [sym_identifier] = ACTIONS(298), - [anon_sym_SEMI] = ACTIONS(422), - [anon_sym_if] = ACTIONS(302), - [anon_sym_LPAREN] = ACTIONS(304), - [anon_sym_while] = ACTIONS(306), + [30] = { + [sym__statement] = STATE(1177), + [sym__statement_separated] = STATE(2), + [sym__control_statement] = STATE(1177), + [sym_if_statement] = STATE(1177), + [sym_while_statement] = STATE(1177), + [sym_do_while_statement] = STATE(1177), + [sym_for_statement] = STATE(1177), + [sym_for_in_statement] = STATE(1177), + [sym_delete_statement] = STATE(1177), + [sym_exit_statement] = STATE(1177), + [sym_return_statement] = STATE(1177), + [sym_switch_statement] = STATE(1177), + [sym__io_statement] = STATE(1177), + [sym__getline_exp] = STATE(1446), + [sym_getline_input] = STATE(1446), + [sym_getline_file] = STATE(1446), + [sym_print_statement] = STATE(1696), + [sym_printf_statement] = STATE(1696), + [sym_redirected_io_statement] = STATE(1177), + [sym_piped_io_statement] = STATE(1177), + [sym_block] = STATE(1176), + [sym__exp] = STATE(1446), + [sym_ternary_exp] = STATE(1371), + [sym_binary_exp] = STATE(1371), + [sym__binary_in] = STATE(1305), + [sym_unary_exp] = STATE(1371), + [sym_update_exp] = STATE(1446), + [sym_assignment_exp] = STATE(1446), + [sym_piped_io_exp] = STATE(1446), + [sym_string_concat] = STATE(1371), + [sym_field_ref] = STATE(632), + [sym_array_ref] = STATE(601), + [sym_regex] = STATE(1446), + [sym_regex_constant] = STATE(1446), + [sym_grouping] = STATE(1371), + [sym__primitive] = STATE(1371), + [sym_namespace] = STATE(2068), + [sym_ns_qualified_name] = STATE(590), + [sym_number] = STATE(1371), + [sym_string] = STATE(1371), + [sym_func_call] = STATE(1371), + [sym_indirect_func_call] = STATE(1446), + [sym_comment] = STATE(1252), + [aux_sym_if_statement_repeat1] = STATE(1252), + [sym_identifier] = ACTIONS(39), + [anon_sym_SEMI] = ACTIONS(420), + [anon_sym_if] = ACTIONS(43), + [anon_sym_LPAREN] = ACTIONS(312), + [anon_sym_while] = ACTIONS(47), [anon_sym_do] = ACTIONS(49), - [anon_sym_for] = ACTIONS(308), - [sym_break_statement] = ACTIONS(424), - [sym_continue_statement] = ACTIONS(424), + [anon_sym_for] = ACTIONS(51), + [sym_break_statement] = ACTIONS(422), + [sym_continue_statement] = ACTIONS(422), [anon_sym_delete] = ACTIONS(55), - [anon_sym_exit] = ACTIONS(312), - [anon_sym_return] = ACTIONS(314), + [anon_sym_exit] = ACTIONS(57), + [anon_sym_return] = ACTIONS(59), [anon_sym_switch] = ACTIONS(61), [anon_sym_LBRACE] = ACTIONS(316), - [anon_sym_getline] = ACTIONS(318), - [sym_next_statement] = ACTIONS(424), - [sym_nextfile_statement] = ACTIONS(424), - [anon_sym_print] = ACTIONS(320), - [anon_sym_printf] = ACTIONS(322), - [anon_sym_SLASH] = ACTIONS(324), - [anon_sym_PLUS] = ACTIONS(326), - [anon_sym_DASH] = ACTIONS(326), - [anon_sym_BANG] = ACTIONS(328), - [anon_sym_PLUS_PLUS] = ACTIONS(330), - [anon_sym_DASH_DASH] = ACTIONS(330), - [anon_sym_DOLLAR] = ACTIONS(332), - [anon_sym_AT] = ACTIONS(334), - [aux_sym_number_token1] = ACTIONS(336), - [aux_sym_number_token2] = ACTIONS(338), - [anon_sym_DQUOTE] = ACTIONS(340), - [anon_sym_POUND] = ACTIONS(171), + [anon_sym_getline] = ACTIONS(63), + [sym_next_statement] = ACTIONS(422), + [sym_nextfile_statement] = ACTIONS(422), + [anon_sym_print] = ACTIONS(65), + [anon_sym_printf] = ACTIONS(67), + [anon_sym_SLASH] = ACTIONS(318), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(71), + [anon_sym_BANG] = ACTIONS(320), + [anon_sym_PLUS_PLUS] = ACTIONS(322), + [anon_sym_DASH_DASH] = ACTIONS(322), + [anon_sym_DOLLAR] = ACTIONS(324), + [anon_sym_AT] = ACTIONS(326), + [aux_sym_number_token1] = ACTIONS(79), + [aux_sym_number_token2] = ACTIONS(328), + [anon_sym_DQUOTE] = ACTIONS(330), + [anon_sym_POUND] = ACTIONS(135), }, - [33] = { - [sym__statement] = STATE(1225), - [sym__statement_separated] = STATE(3), - [sym__control_statement] = STATE(1225), - [sym_if_statement] = STATE(1225), - [sym_while_statement] = STATE(1225), - [sym_do_while_statement] = STATE(1225), - [sym_for_statement] = STATE(1225), - [sym_for_in_statement] = STATE(1225), - [sym_delete_statement] = STATE(1225), - [sym_exit_statement] = STATE(1225), - [sym_return_statement] = STATE(1225), - [sym_switch_statement] = STATE(1225), - [sym__io_statement] = STATE(1225), - [sym__getline_exp] = STATE(1495), - [sym_getline_input] = STATE(1495), - [sym_getline_file] = STATE(1495), + [31] = { + [sym__statement] = STATE(1189), + [sym__statement_separated] = STATE(2), + [sym__control_statement] = STATE(1189), + [sym_if_statement] = STATE(1189), + [sym_while_statement] = STATE(1189), + [sym_do_while_statement] = STATE(1189), + [sym_for_statement] = STATE(1189), + [sym_for_in_statement] = STATE(1189), + [sym_delete_statement] = STATE(1189), + [sym_exit_statement] = STATE(1189), + [sym_return_statement] = STATE(1189), + [sym_switch_statement] = STATE(1189), + [sym__io_statement] = STATE(1189), + [sym__getline_exp] = STATE(1446), + [sym_getline_input] = STATE(1446), + [sym_getline_file] = STATE(1446), [sym_print_statement] = STATE(1696), [sym_printf_statement] = STATE(1696), - [sym_redirected_io_statement] = STATE(1225), - [sym_piped_io_statement] = STATE(1225), - [sym_block] = STATE(1224), - [sym__exp] = STATE(1495), - [sym_ternary_exp] = STATE(1421), - [sym_binary_exp] = STATE(1421), - [sym__binary_in] = STATE(1373), - [sym_unary_exp] = STATE(1421), - [sym_update_exp] = STATE(1495), - [sym_assignment_exp] = STATE(1495), - [sym_piped_io_exp] = STATE(1495), - [sym_string_concat] = STATE(1421), - [sym_field_ref] = STATE(703), - [sym_array_ref] = STATE(610), - [sym_regex] = STATE(1495), - [sym_regex_constant] = STATE(1495), - [sym_grouping] = STATE(1421), - [sym__primitive] = STATE(1421), - [sym_namespace] = STATE(1955), - [sym_ns_qualified_name] = STATE(607), - [sym_number] = STATE(1421), - [sym_string] = STATE(1421), - [sym_func_call] = STATE(1421), - [sym_indirect_func_call] = STATE(1495), - [sym_comment] = STATE(1238), - [aux_sym_if_statement_repeat1] = STATE(1238), - [sym_identifier] = ACTIONS(85), - [anon_sym_SEMI] = ACTIONS(426), - [anon_sym_if] = ACTIONS(87), - [anon_sym_LPAREN] = ACTIONS(272), - [anon_sym_while] = ACTIONS(91), - [anon_sym_do] = ACTIONS(93), - [anon_sym_for] = ACTIONS(95), - [sym_break_statement] = ACTIONS(428), - [sym_continue_statement] = ACTIONS(428), - [anon_sym_delete] = ACTIONS(99), - [anon_sym_exit] = ACTIONS(101), - [anon_sym_return] = ACTIONS(103), - [anon_sym_switch] = ACTIONS(105), - [anon_sym_LBRACE] = ACTIONS(268), - [anon_sym_getline] = ACTIONS(107), - [sym_next_statement] = ACTIONS(428), - [sym_nextfile_statement] = ACTIONS(428), - [anon_sym_print] = ACTIONS(109), - [anon_sym_printf] = ACTIONS(111), - [anon_sym_SLASH] = ACTIONS(276), - [anon_sym_PLUS] = ACTIONS(115), - [anon_sym_DASH] = ACTIONS(115), - [anon_sym_BANG] = ACTIONS(278), - [anon_sym_PLUS_PLUS] = ACTIONS(280), - [anon_sym_DASH_DASH] = ACTIONS(280), - [anon_sym_DOLLAR] = ACTIONS(282), - [anon_sym_AT] = ACTIONS(284), - [aux_sym_number_token1] = ACTIONS(123), - [aux_sym_number_token2] = ACTIONS(286), - [anon_sym_DQUOTE] = ACTIONS(288), - [anon_sym_POUND] = ACTIONS(171), + [sym_redirected_io_statement] = STATE(1189), + [sym_piped_io_statement] = STATE(1189), + [sym_block] = STATE(1188), + [sym__exp] = STATE(1446), + [sym_ternary_exp] = STATE(1371), + [sym_binary_exp] = STATE(1371), + [sym__binary_in] = STATE(1305), + [sym_unary_exp] = STATE(1371), + [sym_update_exp] = STATE(1446), + [sym_assignment_exp] = STATE(1446), + [sym_piped_io_exp] = STATE(1446), + [sym_string_concat] = STATE(1371), + [sym_field_ref] = STATE(632), + [sym_array_ref] = STATE(601), + [sym_regex] = STATE(1446), + [sym_regex_constant] = STATE(1446), + [sym_grouping] = STATE(1371), + [sym__primitive] = STATE(1371), + [sym_namespace] = STATE(2068), + [sym_ns_qualified_name] = STATE(590), + [sym_number] = STATE(1371), + [sym_string] = STATE(1371), + [sym_func_call] = STATE(1371), + [sym_indirect_func_call] = STATE(1446), + [sym_comment] = STATE(30), + [aux_sym_if_statement_repeat1] = STATE(30), + [sym_identifier] = ACTIONS(39), + [anon_sym_SEMI] = ACTIONS(338), + [anon_sym_if] = ACTIONS(43), + [anon_sym_LPAREN] = ACTIONS(312), + [anon_sym_while] = ACTIONS(47), + [anon_sym_do] = ACTIONS(49), + [anon_sym_for] = ACTIONS(51), + [sym_break_statement] = ACTIONS(348), + [sym_continue_statement] = ACTIONS(348), + [anon_sym_delete] = ACTIONS(55), + [anon_sym_exit] = ACTIONS(57), + [anon_sym_return] = ACTIONS(59), + [anon_sym_switch] = ACTIONS(61), + [anon_sym_LBRACE] = ACTIONS(316), + [anon_sym_getline] = ACTIONS(63), + [sym_next_statement] = ACTIONS(348), + [sym_nextfile_statement] = ACTIONS(348), + [anon_sym_print] = ACTIONS(65), + [anon_sym_printf] = ACTIONS(67), + [anon_sym_SLASH] = ACTIONS(318), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(71), + [anon_sym_BANG] = ACTIONS(320), + [anon_sym_PLUS_PLUS] = ACTIONS(322), + [anon_sym_DASH_DASH] = ACTIONS(322), + [anon_sym_DOLLAR] = ACTIONS(324), + [anon_sym_AT] = ACTIONS(326), + [aux_sym_number_token1] = ACTIONS(79), + [aux_sym_number_token2] = ACTIONS(328), + [anon_sym_DQUOTE] = ACTIONS(330), + [anon_sym_POUND] = ACTIONS(135), }, - [34] = { - [sym__statement] = STATE(1149), - [sym__statement_separated] = STATE(1149), - [sym__control_statement] = STATE(1149), - [sym_if_statement] = STATE(1149), - [sym_while_statement] = STATE(1149), - [sym_do_while_statement] = STATE(1149), - [sym_for_statement] = STATE(1149), - [sym_for_in_statement] = STATE(1149), - [sym_delete_statement] = STATE(1149), - [sym_exit_statement] = STATE(1149), - [sym_return_statement] = STATE(1149), - [sym_switch_statement] = STATE(1149), - [sym__io_statement] = STATE(1149), - [sym__getline_exp] = STATE(482), - [sym_getline_input] = STATE(482), - [sym_getline_file] = STATE(482), - [sym_print_statement] = STATE(740), - [sym_printf_statement] = STATE(740), - [sym_redirected_io_statement] = STATE(1149), - [sym_piped_io_statement] = STATE(1149), - [sym_block] = STATE(1150), - [sym__exp] = STATE(482), - [sym_ternary_exp] = STATE(375), - [sym_binary_exp] = STATE(375), - [sym__binary_in] = STATE(369), - [sym_unary_exp] = STATE(375), - [sym_update_exp] = STATE(482), - [sym_assignment_exp] = STATE(482), - [sym_piped_io_exp] = STATE(482), - [sym_string_concat] = STATE(375), - [sym_field_ref] = STATE(256), - [sym_array_ref] = STATE(240), - [sym_regex] = STATE(482), - [sym_regex_constant] = STATE(482), - [sym_grouping] = STATE(375), - [sym__primitive] = STATE(375), - [sym_namespace] = STATE(2063), - [sym_ns_qualified_name] = STATE(196), - [sym_number] = STATE(375), - [sym_string] = STATE(375), - [sym_func_call] = STATE(375), - [sym_indirect_func_call] = STATE(482), - [sym_comment] = STATE(1238), - [aux_sym_if_statement_repeat1] = STATE(1238), - [sym_identifier] = ACTIONS(298), - [anon_sym_SEMI] = ACTIONS(430), - [anon_sym_if] = ACTIONS(302), - [anon_sym_LPAREN] = ACTIONS(304), - [anon_sym_while] = ACTIONS(306), + [32] = { + [sym__statement] = STATE(1185), + [sym__statement_separated] = STATE(2), + [sym__control_statement] = STATE(1185), + [sym_if_statement] = STATE(1185), + [sym_while_statement] = STATE(1185), + [sym_do_while_statement] = STATE(1185), + [sym_for_statement] = STATE(1185), + [sym_for_in_statement] = STATE(1185), + [sym_delete_statement] = STATE(1185), + [sym_exit_statement] = STATE(1185), + [sym_return_statement] = STATE(1185), + [sym_switch_statement] = STATE(1185), + [sym__io_statement] = STATE(1185), + [sym__getline_exp] = STATE(1446), + [sym_getline_input] = STATE(1446), + [sym_getline_file] = STATE(1446), + [sym_print_statement] = STATE(1696), + [sym_printf_statement] = STATE(1696), + [sym_redirected_io_statement] = STATE(1185), + [sym_piped_io_statement] = STATE(1185), + [sym_block] = STATE(1184), + [sym__exp] = STATE(1446), + [sym_ternary_exp] = STATE(1371), + [sym_binary_exp] = STATE(1371), + [sym__binary_in] = STATE(1305), + [sym_unary_exp] = STATE(1371), + [sym_update_exp] = STATE(1446), + [sym_assignment_exp] = STATE(1446), + [sym_piped_io_exp] = STATE(1446), + [sym_string_concat] = STATE(1371), + [sym_field_ref] = STATE(632), + [sym_array_ref] = STATE(601), + [sym_regex] = STATE(1446), + [sym_regex_constant] = STATE(1446), + [sym_grouping] = STATE(1371), + [sym__primitive] = STATE(1371), + [sym_namespace] = STATE(2068), + [sym_ns_qualified_name] = STATE(590), + [sym_number] = STATE(1371), + [sym_string] = STATE(1371), + [sym_func_call] = STATE(1371), + [sym_indirect_func_call] = STATE(1446), + [sym_comment] = STATE(1252), + [aux_sym_if_statement_repeat1] = STATE(1252), + [sym_identifier] = ACTIONS(39), + [anon_sym_SEMI] = ACTIONS(424), + [anon_sym_if] = ACTIONS(43), + [anon_sym_LPAREN] = ACTIONS(312), + [anon_sym_while] = ACTIONS(47), [anon_sym_do] = ACTIONS(49), - [anon_sym_for] = ACTIONS(308), - [sym_break_statement] = ACTIONS(432), - [sym_continue_statement] = ACTIONS(432), + [anon_sym_for] = ACTIONS(51), + [sym_break_statement] = ACTIONS(426), + [sym_continue_statement] = ACTIONS(426), [anon_sym_delete] = ACTIONS(55), - [anon_sym_exit] = ACTIONS(312), - [anon_sym_return] = ACTIONS(314), + [anon_sym_exit] = ACTIONS(57), + [anon_sym_return] = ACTIONS(59), [anon_sym_switch] = ACTIONS(61), [anon_sym_LBRACE] = ACTIONS(316), - [anon_sym_getline] = ACTIONS(318), - [sym_next_statement] = ACTIONS(432), - [sym_nextfile_statement] = ACTIONS(432), - [anon_sym_print] = ACTIONS(320), - [anon_sym_printf] = ACTIONS(322), - [anon_sym_SLASH] = ACTIONS(324), - [anon_sym_PLUS] = ACTIONS(326), - [anon_sym_DASH] = ACTIONS(326), - [anon_sym_BANG] = ACTIONS(328), - [anon_sym_PLUS_PLUS] = ACTIONS(330), - [anon_sym_DASH_DASH] = ACTIONS(330), - [anon_sym_DOLLAR] = ACTIONS(332), - [anon_sym_AT] = ACTIONS(334), - [aux_sym_number_token1] = ACTIONS(336), - [aux_sym_number_token2] = ACTIONS(338), - [anon_sym_DQUOTE] = ACTIONS(340), - [anon_sym_POUND] = ACTIONS(171), + [anon_sym_getline] = ACTIONS(63), + [sym_next_statement] = ACTIONS(426), + [sym_nextfile_statement] = ACTIONS(426), + [anon_sym_print] = ACTIONS(65), + [anon_sym_printf] = ACTIONS(67), + [anon_sym_SLASH] = ACTIONS(318), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(71), + [anon_sym_BANG] = ACTIONS(320), + [anon_sym_PLUS_PLUS] = ACTIONS(322), + [anon_sym_DASH_DASH] = ACTIONS(322), + [anon_sym_DOLLAR] = ACTIONS(324), + [anon_sym_AT] = ACTIONS(326), + [aux_sym_number_token1] = ACTIONS(79), + [aux_sym_number_token2] = ACTIONS(328), + [anon_sym_DQUOTE] = ACTIONS(330), + [anon_sym_POUND] = ACTIONS(135), }, - [35] = { - [sym__statement] = STATE(1147), - [sym__statement_separated] = STATE(1147), - [sym__control_statement] = STATE(1147), - [sym_if_statement] = STATE(1147), - [sym_while_statement] = STATE(1147), - [sym_do_while_statement] = STATE(1147), - [sym_for_statement] = STATE(1147), - [sym_for_in_statement] = STATE(1147), - [sym_delete_statement] = STATE(1147), - [sym_exit_statement] = STATE(1147), - [sym_return_statement] = STATE(1147), - [sym_switch_statement] = STATE(1147), - [sym__io_statement] = STATE(1147), - [sym__getline_exp] = STATE(482), - [sym_getline_input] = STATE(482), - [sym_getline_file] = STATE(482), - [sym_print_statement] = STATE(740), - [sym_printf_statement] = STATE(740), - [sym_redirected_io_statement] = STATE(1147), - [sym_piped_io_statement] = STATE(1147), - [sym_block] = STATE(1148), - [sym__exp] = STATE(482), - [sym_ternary_exp] = STATE(375), - [sym_binary_exp] = STATE(375), - [sym__binary_in] = STATE(369), - [sym_unary_exp] = STATE(375), - [sym_update_exp] = STATE(482), - [sym_assignment_exp] = STATE(482), - [sym_piped_io_exp] = STATE(482), - [sym_string_concat] = STATE(375), - [sym_field_ref] = STATE(256), - [sym_array_ref] = STATE(240), - [sym_regex] = STATE(482), - [sym_regex_constant] = STATE(482), - [sym_grouping] = STATE(375), - [sym__primitive] = STATE(375), - [sym_namespace] = STATE(2063), - [sym_ns_qualified_name] = STATE(196), - [sym_number] = STATE(375), - [sym_string] = STATE(375), - [sym_func_call] = STATE(375), - [sym_indirect_func_call] = STATE(482), - [sym_comment] = STATE(1238), - [aux_sym_if_statement_repeat1] = STATE(1238), - [sym_identifier] = ACTIONS(298), - [anon_sym_SEMI] = ACTIONS(434), - [anon_sym_if] = ACTIONS(302), - [anon_sym_LPAREN] = ACTIONS(304), - [anon_sym_while] = ACTIONS(306), + [33] = { + [sym__statement] = STATE(1179), + [sym__statement_separated] = STATE(2), + [sym__control_statement] = STATE(1179), + [sym_if_statement] = STATE(1179), + [sym_while_statement] = STATE(1179), + [sym_do_while_statement] = STATE(1179), + [sym_for_statement] = STATE(1179), + [sym_for_in_statement] = STATE(1179), + [sym_delete_statement] = STATE(1179), + [sym_exit_statement] = STATE(1179), + [sym_return_statement] = STATE(1179), + [sym_switch_statement] = STATE(1179), + [sym__io_statement] = STATE(1179), + [sym__getline_exp] = STATE(1446), + [sym_getline_input] = STATE(1446), + [sym_getline_file] = STATE(1446), + [sym_print_statement] = STATE(1696), + [sym_printf_statement] = STATE(1696), + [sym_redirected_io_statement] = STATE(1179), + [sym_piped_io_statement] = STATE(1179), + [sym_block] = STATE(1178), + [sym__exp] = STATE(1446), + [sym_ternary_exp] = STATE(1371), + [sym_binary_exp] = STATE(1371), + [sym__binary_in] = STATE(1305), + [sym_unary_exp] = STATE(1371), + [sym_update_exp] = STATE(1446), + [sym_assignment_exp] = STATE(1446), + [sym_piped_io_exp] = STATE(1446), + [sym_string_concat] = STATE(1371), + [sym_field_ref] = STATE(632), + [sym_array_ref] = STATE(601), + [sym_regex] = STATE(1446), + [sym_regex_constant] = STATE(1446), + [sym_grouping] = STATE(1371), + [sym__primitive] = STATE(1371), + [sym_namespace] = STATE(2068), + [sym_ns_qualified_name] = STATE(590), + [sym_number] = STATE(1371), + [sym_string] = STATE(1371), + [sym_func_call] = STATE(1371), + [sym_indirect_func_call] = STATE(1446), + [sym_comment] = STATE(32), + [aux_sym_if_statement_repeat1] = STATE(32), + [sym_identifier] = ACTIONS(39), + [anon_sym_SEMI] = ACTIONS(428), + [anon_sym_if] = ACTIONS(43), + [anon_sym_LPAREN] = ACTIONS(312), + [anon_sym_while] = ACTIONS(47), [anon_sym_do] = ACTIONS(49), - [anon_sym_for] = ACTIONS(308), - [sym_break_statement] = ACTIONS(436), - [sym_continue_statement] = ACTIONS(436), + [anon_sym_for] = ACTIONS(51), + [sym_break_statement] = ACTIONS(430), + [sym_continue_statement] = ACTIONS(430), [anon_sym_delete] = ACTIONS(55), - [anon_sym_exit] = ACTIONS(312), - [anon_sym_return] = ACTIONS(314), + [anon_sym_exit] = ACTIONS(57), + [anon_sym_return] = ACTIONS(59), [anon_sym_switch] = ACTIONS(61), [anon_sym_LBRACE] = ACTIONS(316), - [anon_sym_getline] = ACTIONS(318), + [anon_sym_getline] = ACTIONS(63), + [sym_next_statement] = ACTIONS(430), + [sym_nextfile_statement] = ACTIONS(430), + [anon_sym_print] = ACTIONS(65), + [anon_sym_printf] = ACTIONS(67), + [anon_sym_SLASH] = ACTIONS(318), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(71), + [anon_sym_BANG] = ACTIONS(320), + [anon_sym_PLUS_PLUS] = ACTIONS(322), + [anon_sym_DASH_DASH] = ACTIONS(322), + [anon_sym_DOLLAR] = ACTIONS(324), + [anon_sym_AT] = ACTIONS(326), + [aux_sym_number_token1] = ACTIONS(79), + [aux_sym_number_token2] = ACTIONS(328), + [anon_sym_DQUOTE] = ACTIONS(330), + [anon_sym_POUND] = ACTIONS(135), + }, + [34] = { + [sym__statement] = STATE(1253), + [sym__statement_separated] = STATE(4), + [sym__control_statement] = STATE(1253), + [sym_if_statement] = STATE(1253), + [sym_while_statement] = STATE(1253), + [sym_do_while_statement] = STATE(1253), + [sym_for_statement] = STATE(1253), + [sym_for_in_statement] = STATE(1253), + [sym_delete_statement] = STATE(1253), + [sym_exit_statement] = STATE(1253), + [sym_return_statement] = STATE(1253), + [sym_switch_statement] = STATE(1253), + [sym__io_statement] = STATE(1253), + [sym__getline_exp] = STATE(1471), + [sym_getline_input] = STATE(1471), + [sym_getline_file] = STATE(1471), + [sym_print_statement] = STATE(1697), + [sym_printf_statement] = STATE(1697), + [sym_redirected_io_statement] = STATE(1253), + [sym_piped_io_statement] = STATE(1253), + [sym_block] = STATE(1247), + [sym__exp] = STATE(1471), + [sym_ternary_exp] = STATE(1420), + [sym_binary_exp] = STATE(1420), + [sym__binary_in] = STATE(1385), + [sym_unary_exp] = STATE(1420), + [sym_update_exp] = STATE(1471), + [sym_assignment_exp] = STATE(1471), + [sym_piped_io_exp] = STATE(1471), + [sym_string_concat] = STATE(1420), + [sym_field_ref] = STATE(705), + [sym_array_ref] = STATE(614), + [sym_regex] = STATE(1471), + [sym_regex_constant] = STATE(1471), + [sym_grouping] = STATE(1420), + [sym__primitive] = STATE(1420), + [sym_namespace] = STATE(1956), + [sym_ns_qualified_name] = STATE(597), + [sym_number] = STATE(1420), + [sym_string] = STATE(1420), + [sym_func_call] = STATE(1420), + [sym_indirect_func_call] = STATE(1471), + [sym_comment] = STATE(1252), + [aux_sym_if_statement_repeat1] = STATE(1252), + [sym_identifier] = ACTIONS(137), + [anon_sym_SEMI] = ACTIONS(432), + [anon_sym_if] = ACTIONS(139), + [anon_sym_LPAREN] = ACTIONS(434), + [anon_sym_while] = ACTIONS(143), + [anon_sym_do] = ACTIONS(93), + [anon_sym_for] = ACTIONS(145), + [sym_break_statement] = ACTIONS(436), + [sym_continue_statement] = ACTIONS(436), + [anon_sym_delete] = ACTIONS(99), + [anon_sym_exit] = ACTIONS(149), + [anon_sym_return] = ACTIONS(151), + [anon_sym_switch] = ACTIONS(105), + [anon_sym_LBRACE] = ACTIONS(268), + [anon_sym_getline] = ACTIONS(153), [sym_next_statement] = ACTIONS(436), [sym_nextfile_statement] = ACTIONS(436), - [anon_sym_print] = ACTIONS(320), - [anon_sym_printf] = ACTIONS(322), - [anon_sym_SLASH] = ACTIONS(324), - [anon_sym_PLUS] = ACTIONS(326), - [anon_sym_DASH] = ACTIONS(326), - [anon_sym_BANG] = ACTIONS(328), - [anon_sym_PLUS_PLUS] = ACTIONS(330), - [anon_sym_DASH_DASH] = ACTIONS(330), - [anon_sym_DOLLAR] = ACTIONS(332), - [anon_sym_AT] = ACTIONS(334), - [aux_sym_number_token1] = ACTIONS(336), - [aux_sym_number_token2] = ACTIONS(338), - [anon_sym_DQUOTE] = ACTIONS(340), - [anon_sym_POUND] = ACTIONS(171), + [anon_sym_print] = ACTIONS(155), + [anon_sym_printf] = ACTIONS(157), + [anon_sym_SLASH] = ACTIONS(438), + [anon_sym_PLUS] = ACTIONS(161), + [anon_sym_DASH] = ACTIONS(161), + [anon_sym_BANG] = ACTIONS(440), + [anon_sym_PLUS_PLUS] = ACTIONS(442), + [anon_sym_DASH_DASH] = ACTIONS(442), + [anon_sym_DOLLAR] = ACTIONS(444), + [anon_sym_AT] = ACTIONS(446), + [aux_sym_number_token1] = ACTIONS(169), + [aux_sym_number_token2] = ACTIONS(306), + [anon_sym_DQUOTE] = ACTIONS(308), + [anon_sym_POUND] = ACTIONS(135), }, - [36] = { - [sym__statement] = STATE(1264), - [sym__statement_separated] = STATE(3), - [sym__control_statement] = STATE(1264), - [sym_if_statement] = STATE(1264), - [sym_while_statement] = STATE(1264), - [sym_do_while_statement] = STATE(1264), - [sym_for_statement] = STATE(1264), - [sym_for_in_statement] = STATE(1264), - [sym_delete_statement] = STATE(1264), - [sym_exit_statement] = STATE(1264), - [sym_return_statement] = STATE(1264), - [sym_switch_statement] = STATE(1264), - [sym__io_statement] = STATE(1264), - [sym__getline_exp] = STATE(1495), - [sym_getline_input] = STATE(1495), - [sym_getline_file] = STATE(1495), - [sym_print_statement] = STATE(1696), - [sym_printf_statement] = STATE(1696), - [sym_redirected_io_statement] = STATE(1264), - [sym_piped_io_statement] = STATE(1264), - [sym_block] = STATE(1260), - [sym__exp] = STATE(1495), - [sym_ternary_exp] = STATE(1421), - [sym_binary_exp] = STATE(1421), - [sym__binary_in] = STATE(1373), - [sym_unary_exp] = STATE(1421), - [sym_update_exp] = STATE(1495), - [sym_assignment_exp] = STATE(1495), - [sym_piped_io_exp] = STATE(1495), - [sym_string_concat] = STATE(1421), - [sym_field_ref] = STATE(703), - [sym_array_ref] = STATE(610), - [sym_regex] = STATE(1495), - [sym_regex_constant] = STATE(1495), - [sym_grouping] = STATE(1421), - [sym__primitive] = STATE(1421), - [sym_namespace] = STATE(1955), - [sym_ns_qualified_name] = STATE(607), - [sym_number] = STATE(1421), - [sym_string] = STATE(1421), - [sym_func_call] = STATE(1421), - [sym_indirect_func_call] = STATE(1495), - [sym_comment] = STATE(1238), - [aux_sym_if_statement_repeat1] = STATE(1238), + [35] = { + [sym__statement] = STATE(1231), + [sym__statement_separated] = STATE(1231), + [sym__control_statement] = STATE(1231), + [sym_if_statement] = STATE(1231), + [sym_while_statement] = STATE(1231), + [sym_do_while_statement] = STATE(1231), + [sym_for_statement] = STATE(1231), + [sym_for_in_statement] = STATE(1231), + [sym_delete_statement] = STATE(1231), + [sym_exit_statement] = STATE(1231), + [sym_return_statement] = STATE(1231), + [sym_switch_statement] = STATE(1231), + [sym__io_statement] = STATE(1231), + [sym__getline_exp] = STATE(503), + [sym_getline_input] = STATE(503), + [sym_getline_file] = STATE(503), + [sym_print_statement] = STATE(869), + [sym_printf_statement] = STATE(869), + [sym_redirected_io_statement] = STATE(1231), + [sym_piped_io_statement] = STATE(1231), + [sym_block] = STATE(1198), + [sym__exp] = STATE(503), + [sym_ternary_exp] = STATE(427), + [sym_binary_exp] = STATE(427), + [sym__binary_in] = STATE(426), + [sym_unary_exp] = STATE(427), + [sym_update_exp] = STATE(503), + [sym_assignment_exp] = STATE(503), + [sym_piped_io_exp] = STATE(503), + [sym_string_concat] = STATE(427), + [sym_field_ref] = STATE(274), + [sym_array_ref] = STATE(268), + [sym_regex] = STATE(503), + [sym_regex_constant] = STATE(503), + [sym_grouping] = STATE(427), + [sym__primitive] = STATE(427), + [sym_namespace] = STATE(1956), + [sym_ns_qualified_name] = STATE(244), + [sym_number] = STATE(427), + [sym_string] = STATE(427), + [sym_func_call] = STATE(427), + [sym_indirect_func_call] = STATE(503), + [sym_comment] = STATE(42), + [aux_sym_if_statement_repeat1] = STATE(42), [sym_identifier] = ACTIONS(85), - [anon_sym_SEMI] = ACTIONS(438), + [anon_sym_SEMI] = ACTIONS(448), [anon_sym_if] = ACTIONS(87), - [anon_sym_LPAREN] = ACTIONS(272), + [anon_sym_LPAREN] = ACTIONS(89), [anon_sym_while] = ACTIONS(91), [anon_sym_do] = ACTIONS(93), [anon_sym_for] = ACTIONS(95), - [sym_break_statement] = ACTIONS(440), - [sym_continue_statement] = ACTIONS(440), + [sym_break_statement] = ACTIONS(450), + [sym_continue_statement] = ACTIONS(450), [anon_sym_delete] = ACTIONS(99), [anon_sym_exit] = ACTIONS(101), [anon_sym_return] = ACTIONS(103), [anon_sym_switch] = ACTIONS(105), [anon_sym_LBRACE] = ACTIONS(268), - [anon_sym_getline] = ACTIONS(107), - [sym_next_statement] = ACTIONS(440), - [sym_nextfile_statement] = ACTIONS(440), - [anon_sym_print] = ACTIONS(109), - [anon_sym_printf] = ACTIONS(111), - [anon_sym_SLASH] = ACTIONS(276), - [anon_sym_PLUS] = ACTIONS(115), - [anon_sym_DASH] = ACTIONS(115), - [anon_sym_BANG] = ACTIONS(278), - [anon_sym_PLUS_PLUS] = ACTIONS(280), - [anon_sym_DASH_DASH] = ACTIONS(280), - [anon_sym_DOLLAR] = ACTIONS(282), - [anon_sym_AT] = ACTIONS(284), - [aux_sym_number_token1] = ACTIONS(123), - [aux_sym_number_token2] = ACTIONS(286), - [anon_sym_DQUOTE] = ACTIONS(288), - [anon_sym_POUND] = ACTIONS(171), + [anon_sym_getline] = ACTIONS(111), + [sym_next_statement] = ACTIONS(450), + [sym_nextfile_statement] = ACTIONS(450), + [anon_sym_print] = ACTIONS(113), + [anon_sym_printf] = ACTIONS(115), + [anon_sym_SLASH] = ACTIONS(117), + [anon_sym_PLUS] = ACTIONS(119), + [anon_sym_DASH] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(121), + [anon_sym_PLUS_PLUS] = ACTIONS(123), + [anon_sym_DASH_DASH] = ACTIONS(123), + [anon_sym_DOLLAR] = ACTIONS(125), + [anon_sym_AT] = ACTIONS(127), + [aux_sym_number_token1] = ACTIONS(129), + [aux_sym_number_token2] = ACTIONS(131), + [anon_sym_DQUOTE] = ACTIONS(133), + [anon_sym_POUND] = ACTIONS(135), + }, + [36] = { + [sym__statement] = STATE(1239), + [sym__statement_separated] = STATE(4), + [sym__control_statement] = STATE(1239), + [sym_if_statement] = STATE(1239), + [sym_while_statement] = STATE(1239), + [sym_do_while_statement] = STATE(1239), + [sym_for_statement] = STATE(1239), + [sym_for_in_statement] = STATE(1239), + [sym_delete_statement] = STATE(1239), + [sym_exit_statement] = STATE(1239), + [sym_return_statement] = STATE(1239), + [sym_switch_statement] = STATE(1239), + [sym__io_statement] = STATE(1239), + [sym__getline_exp] = STATE(1471), + [sym_getline_input] = STATE(1471), + [sym_getline_file] = STATE(1471), + [sym_print_statement] = STATE(1697), + [sym_printf_statement] = STATE(1697), + [sym_redirected_io_statement] = STATE(1239), + [sym_piped_io_statement] = STATE(1239), + [sym_block] = STATE(1199), + [sym__exp] = STATE(1471), + [sym_ternary_exp] = STATE(1420), + [sym_binary_exp] = STATE(1420), + [sym__binary_in] = STATE(1385), + [sym_unary_exp] = STATE(1420), + [sym_update_exp] = STATE(1471), + [sym_assignment_exp] = STATE(1471), + [sym_piped_io_exp] = STATE(1471), + [sym_string_concat] = STATE(1420), + [sym_field_ref] = STATE(705), + [sym_array_ref] = STATE(614), + [sym_regex] = STATE(1471), + [sym_regex_constant] = STATE(1471), + [sym_grouping] = STATE(1420), + [sym__primitive] = STATE(1420), + [sym_namespace] = STATE(1956), + [sym_ns_qualified_name] = STATE(597), + [sym_number] = STATE(1420), + [sym_string] = STATE(1420), + [sym_func_call] = STATE(1420), + [sym_indirect_func_call] = STATE(1471), + [sym_comment] = STATE(34), + [aux_sym_if_statement_repeat1] = STATE(34), + [sym_identifier] = ACTIONS(137), + [anon_sym_SEMI] = ACTIONS(452), + [anon_sym_if] = ACTIONS(139), + [anon_sym_LPAREN] = ACTIONS(434), + [anon_sym_while] = ACTIONS(143), + [anon_sym_do] = ACTIONS(93), + [anon_sym_for] = ACTIONS(145), + [sym_break_statement] = ACTIONS(454), + [sym_continue_statement] = ACTIONS(454), + [anon_sym_delete] = ACTIONS(99), + [anon_sym_exit] = ACTIONS(149), + [anon_sym_return] = ACTIONS(151), + [anon_sym_switch] = ACTIONS(105), + [anon_sym_LBRACE] = ACTIONS(268), + [anon_sym_getline] = ACTIONS(153), + [sym_next_statement] = ACTIONS(454), + [sym_nextfile_statement] = ACTIONS(454), + [anon_sym_print] = ACTIONS(155), + [anon_sym_printf] = ACTIONS(157), + [anon_sym_SLASH] = ACTIONS(438), + [anon_sym_PLUS] = ACTIONS(161), + [anon_sym_DASH] = ACTIONS(161), + [anon_sym_BANG] = ACTIONS(440), + [anon_sym_PLUS_PLUS] = ACTIONS(442), + [anon_sym_DASH_DASH] = ACTIONS(442), + [anon_sym_DOLLAR] = ACTIONS(444), + [anon_sym_AT] = ACTIONS(446), + [aux_sym_number_token1] = ACTIONS(169), + [aux_sym_number_token2] = ACTIONS(306), + [anon_sym_DQUOTE] = ACTIONS(308), + [anon_sym_POUND] = ACTIONS(135), }, [37] = { - [sym__statement] = STATE(1145), - [sym__statement_separated] = STATE(1145), - [sym__control_statement] = STATE(1145), - [sym_if_statement] = STATE(1145), - [sym_while_statement] = STATE(1145), - [sym_do_while_statement] = STATE(1145), - [sym_for_statement] = STATE(1145), - [sym_for_in_statement] = STATE(1145), - [sym_delete_statement] = STATE(1145), - [sym_exit_statement] = STATE(1145), - [sym_return_statement] = STATE(1145), - [sym_switch_statement] = STATE(1145), - [sym__io_statement] = STATE(1145), - [sym__getline_exp] = STATE(482), - [sym_getline_input] = STATE(482), - [sym_getline_file] = STATE(482), - [sym_print_statement] = STATE(740), - [sym_printf_statement] = STATE(740), - [sym_redirected_io_statement] = STATE(1145), - [sym_piped_io_statement] = STATE(1145), - [sym_block] = STATE(1146), - [sym__exp] = STATE(482), - [sym_ternary_exp] = STATE(375), - [sym_binary_exp] = STATE(375), - [sym__binary_in] = STATE(369), - [sym_unary_exp] = STATE(375), - [sym_update_exp] = STATE(482), - [sym_assignment_exp] = STATE(482), - [sym_piped_io_exp] = STATE(482), - [sym_string_concat] = STATE(375), - [sym_field_ref] = STATE(256), - [sym_array_ref] = STATE(240), - [sym_regex] = STATE(482), - [sym_regex_constant] = STATE(482), - [sym_grouping] = STATE(375), - [sym__primitive] = STATE(375), - [sym_namespace] = STATE(2063), - [sym_ns_qualified_name] = STATE(196), - [sym_number] = STATE(375), - [sym_string] = STATE(375), - [sym_func_call] = STATE(375), - [sym_indirect_func_call] = STATE(482), - [sym_comment] = STATE(1238), - [aux_sym_if_statement_repeat1] = STATE(1238), - [sym_identifier] = ACTIONS(298), - [anon_sym_SEMI] = ACTIONS(442), - [anon_sym_if] = ACTIONS(302), - [anon_sym_LPAREN] = ACTIONS(304), - [anon_sym_while] = ACTIONS(306), - [anon_sym_do] = ACTIONS(49), - [anon_sym_for] = ACTIONS(308), - [sym_break_statement] = ACTIONS(444), - [sym_continue_statement] = ACTIONS(444), - [anon_sym_delete] = ACTIONS(55), - [anon_sym_exit] = ACTIONS(312), - [anon_sym_return] = ACTIONS(314), - [anon_sym_switch] = ACTIONS(61), - [anon_sym_LBRACE] = ACTIONS(316), - [anon_sym_getline] = ACTIONS(318), - [sym_next_statement] = ACTIONS(444), - [sym_nextfile_statement] = ACTIONS(444), - [anon_sym_print] = ACTIONS(320), - [anon_sym_printf] = ACTIONS(322), - [anon_sym_SLASH] = ACTIONS(324), - [anon_sym_PLUS] = ACTIONS(326), - [anon_sym_DASH] = ACTIONS(326), - [anon_sym_BANG] = ACTIONS(328), - [anon_sym_PLUS_PLUS] = ACTIONS(330), - [anon_sym_DASH_DASH] = ACTIONS(330), - [anon_sym_DOLLAR] = ACTIONS(332), - [anon_sym_AT] = ACTIONS(334), - [aux_sym_number_token1] = ACTIONS(336), - [aux_sym_number_token2] = ACTIONS(338), - [anon_sym_DQUOTE] = ACTIONS(340), - [anon_sym_POUND] = ACTIONS(171), + [sym__statement] = STATE(1219), + [sym__statement_separated] = STATE(4), + [sym__control_statement] = STATE(1219), + [sym_if_statement] = STATE(1219), + [sym_while_statement] = STATE(1219), + [sym_do_while_statement] = STATE(1219), + [sym_for_statement] = STATE(1219), + [sym_for_in_statement] = STATE(1219), + [sym_delete_statement] = STATE(1219), + [sym_exit_statement] = STATE(1219), + [sym_return_statement] = STATE(1219), + [sym_switch_statement] = STATE(1219), + [sym__io_statement] = STATE(1219), + [sym__getline_exp] = STATE(1471), + [sym_getline_input] = STATE(1471), + [sym_getline_file] = STATE(1471), + [sym_print_statement] = STATE(1697), + [sym_printf_statement] = STATE(1697), + [sym_redirected_io_statement] = STATE(1219), + [sym_piped_io_statement] = STATE(1219), + [sym_block] = STATE(1246), + [sym__exp] = STATE(1471), + [sym_ternary_exp] = STATE(1420), + [sym_binary_exp] = STATE(1420), + [sym__binary_in] = STATE(1385), + [sym_unary_exp] = STATE(1420), + [sym_update_exp] = STATE(1471), + [sym_assignment_exp] = STATE(1471), + [sym_piped_io_exp] = STATE(1471), + [sym_string_concat] = STATE(1420), + [sym_field_ref] = STATE(705), + [sym_array_ref] = STATE(614), + [sym_regex] = STATE(1471), + [sym_regex_constant] = STATE(1471), + [sym_grouping] = STATE(1420), + [sym__primitive] = STATE(1420), + [sym_namespace] = STATE(1956), + [sym_ns_qualified_name] = STATE(597), + [sym_number] = STATE(1420), + [sym_string] = STATE(1420), + [sym_func_call] = STATE(1420), + [sym_indirect_func_call] = STATE(1471), + [sym_comment] = STATE(1252), + [aux_sym_if_statement_repeat1] = STATE(1252), + [sym_identifier] = ACTIONS(137), + [anon_sym_SEMI] = ACTIONS(456), + [anon_sym_if] = ACTIONS(139), + [anon_sym_LPAREN] = ACTIONS(434), + [anon_sym_while] = ACTIONS(143), + [anon_sym_do] = ACTIONS(93), + [anon_sym_for] = ACTIONS(145), + [sym_break_statement] = ACTIONS(458), + [sym_continue_statement] = ACTIONS(458), + [anon_sym_delete] = ACTIONS(99), + [anon_sym_exit] = ACTIONS(149), + [anon_sym_return] = ACTIONS(151), + [anon_sym_switch] = ACTIONS(105), + [anon_sym_LBRACE] = ACTIONS(268), + [anon_sym_getline] = ACTIONS(153), + [sym_next_statement] = ACTIONS(458), + [sym_nextfile_statement] = ACTIONS(458), + [anon_sym_print] = ACTIONS(155), + [anon_sym_printf] = ACTIONS(157), + [anon_sym_SLASH] = ACTIONS(438), + [anon_sym_PLUS] = ACTIONS(161), + [anon_sym_DASH] = ACTIONS(161), + [anon_sym_BANG] = ACTIONS(440), + [anon_sym_PLUS_PLUS] = ACTIONS(442), + [anon_sym_DASH_DASH] = ACTIONS(442), + [anon_sym_DOLLAR] = ACTIONS(444), + [anon_sym_AT] = ACTIONS(446), + [aux_sym_number_token1] = ACTIONS(169), + [aux_sym_number_token2] = ACTIONS(306), + [anon_sym_DQUOTE] = ACTIONS(308), + [anon_sym_POUND] = ACTIONS(135), }, [38] = { - [sym__statement] = STATE(1142), - [sym__statement_separated] = STATE(1142), - [sym__control_statement] = STATE(1142), - [sym_if_statement] = STATE(1142), - [sym_while_statement] = STATE(1142), - [sym_do_while_statement] = STATE(1142), - [sym_for_statement] = STATE(1142), - [sym_for_in_statement] = STATE(1142), - [sym_delete_statement] = STATE(1142), - [sym_exit_statement] = STATE(1142), - [sym_return_statement] = STATE(1142), - [sym_switch_statement] = STATE(1142), - [sym__io_statement] = STATE(1142), - [sym__getline_exp] = STATE(482), - [sym_getline_input] = STATE(482), - [sym_getline_file] = STATE(482), - [sym_print_statement] = STATE(740), - [sym_printf_statement] = STATE(740), - [sym_redirected_io_statement] = STATE(1142), - [sym_piped_io_statement] = STATE(1142), - [sym_block] = STATE(1143), - [sym__exp] = STATE(482), - [sym_ternary_exp] = STATE(375), - [sym_binary_exp] = STATE(375), - [sym__binary_in] = STATE(369), - [sym_unary_exp] = STATE(375), - [sym_update_exp] = STATE(482), - [sym_assignment_exp] = STATE(482), - [sym_piped_io_exp] = STATE(482), - [sym_string_concat] = STATE(375), - [sym_field_ref] = STATE(256), - [sym_array_ref] = STATE(240), - [sym_regex] = STATE(482), - [sym_regex_constant] = STATE(482), - [sym_grouping] = STATE(375), - [sym__primitive] = STATE(375), - [sym_namespace] = STATE(2063), - [sym_ns_qualified_name] = STATE(196), - [sym_number] = STATE(375), - [sym_string] = STATE(375), - [sym_func_call] = STATE(375), - [sym_indirect_func_call] = STATE(482), - [sym_comment] = STATE(40), - [aux_sym_if_statement_repeat1] = STATE(40), - [sym_identifier] = ACTIONS(298), - [anon_sym_SEMI] = ACTIONS(446), - [anon_sym_if] = ACTIONS(302), - [anon_sym_LPAREN] = ACTIONS(304), - [anon_sym_while] = ACTIONS(306), - [anon_sym_do] = ACTIONS(49), - [anon_sym_for] = ACTIONS(308), - [sym_break_statement] = ACTIONS(448), - [sym_continue_statement] = ACTIONS(448), - [anon_sym_delete] = ACTIONS(55), - [anon_sym_exit] = ACTIONS(312), - [anon_sym_return] = ACTIONS(314), - [anon_sym_switch] = ACTIONS(61), - [anon_sym_LBRACE] = ACTIONS(316), - [anon_sym_getline] = ACTIONS(318), - [sym_next_statement] = ACTIONS(448), - [sym_nextfile_statement] = ACTIONS(448), - [anon_sym_print] = ACTIONS(320), - [anon_sym_printf] = ACTIONS(322), - [anon_sym_SLASH] = ACTIONS(324), - [anon_sym_PLUS] = ACTIONS(326), - [anon_sym_DASH] = ACTIONS(326), - [anon_sym_BANG] = ACTIONS(328), - [anon_sym_PLUS_PLUS] = ACTIONS(330), - [anon_sym_DASH_DASH] = ACTIONS(330), - [anon_sym_DOLLAR] = ACTIONS(332), - [anon_sym_AT] = ACTIONS(334), - [aux_sym_number_token1] = ACTIONS(336), - [aux_sym_number_token2] = ACTIONS(338), - [anon_sym_DQUOTE] = ACTIONS(340), - [anon_sym_POUND] = ACTIONS(171), - }, - [39] = { - [sym__statement] = STATE(1140), - [sym__statement_separated] = STATE(141), - [sym__control_statement] = STATE(1140), - [sym_if_statement] = STATE(1140), - [sym_while_statement] = STATE(1140), - [sym_do_while_statement] = STATE(1140), - [sym_for_statement] = STATE(1140), - [sym_for_in_statement] = STATE(1140), - [sym_delete_statement] = STATE(1140), - [sym_exit_statement] = STATE(1140), - [sym_return_statement] = STATE(1140), - [sym_switch_statement] = STATE(1140), - [sym__io_statement] = STATE(1140), - [sym__getline_exp] = STATE(1547), - [sym_getline_input] = STATE(1547), - [sym_getline_file] = STATE(1547), + [sym__statement] = STATE(1230), + [sym__statement_separated] = STATE(4), + [sym__control_statement] = STATE(1230), + [sym_if_statement] = STATE(1230), + [sym_while_statement] = STATE(1230), + [sym_do_while_statement] = STATE(1230), + [sym_for_statement] = STATE(1230), + [sym_for_in_statement] = STATE(1230), + [sym_delete_statement] = STATE(1230), + [sym_exit_statement] = STATE(1230), + [sym_return_statement] = STATE(1230), + [sym_switch_statement] = STATE(1230), + [sym__io_statement] = STATE(1230), + [sym__getline_exp] = STATE(1471), + [sym_getline_input] = STATE(1471), + [sym_getline_file] = STATE(1471), [sym_print_statement] = STATE(1697), [sym_printf_statement] = STATE(1697), - [sym_redirected_io_statement] = STATE(1140), - [sym_piped_io_statement] = STATE(1140), - [sym_block] = STATE(1141), - [sym__exp] = STATE(1547), - [sym_ternary_exp] = STATE(1441), - [sym_binary_exp] = STATE(1441), - [sym__binary_in] = STATE(1309), - [sym_unary_exp] = STATE(1441), - [sym_update_exp] = STATE(1547), - [sym_assignment_exp] = STATE(1547), - [sym_piped_io_exp] = STATE(1547), - [sym_string_concat] = STATE(1441), - [sym_field_ref] = STATE(995), - [sym_array_ref] = STATE(774), - [sym_regex] = STATE(1547), - [sym_regex_constant] = STATE(1547), - [sym_grouping] = STATE(1441), - [sym__primitive] = STATE(1441), - [sym_namespace] = STATE(2063), - [sym_ns_qualified_name] = STATE(647), - [sym_number] = STATE(1441), - [sym_string] = STATE(1441), - [sym_func_call] = STATE(1441), - [sym_indirect_func_call] = STATE(1547), - [sym_comment] = STATE(1238), - [aux_sym_if_statement_repeat1] = STATE(1238), - [sym_identifier] = ACTIONS(450), - [anon_sym_SEMI] = ACTIONS(452), - [anon_sym_if] = ACTIONS(454), - [anon_sym_LPAREN] = ACTIONS(456), - [anon_sym_while] = ACTIONS(458), - [anon_sym_do] = ACTIONS(49), - [anon_sym_for] = ACTIONS(460), + [sym_redirected_io_statement] = STATE(1230), + [sym_piped_io_statement] = STATE(1230), + [sym_block] = STATE(1200), + [sym__exp] = STATE(1471), + [sym_ternary_exp] = STATE(1420), + [sym_binary_exp] = STATE(1420), + [sym__binary_in] = STATE(1385), + [sym_unary_exp] = STATE(1420), + [sym_update_exp] = STATE(1471), + [sym_assignment_exp] = STATE(1471), + [sym_piped_io_exp] = STATE(1471), + [sym_string_concat] = STATE(1420), + [sym_field_ref] = STATE(705), + [sym_array_ref] = STATE(614), + [sym_regex] = STATE(1471), + [sym_regex_constant] = STATE(1471), + [sym_grouping] = STATE(1420), + [sym__primitive] = STATE(1420), + [sym_namespace] = STATE(1956), + [sym_ns_qualified_name] = STATE(597), + [sym_number] = STATE(1420), + [sym_string] = STATE(1420), + [sym_func_call] = STATE(1420), + [sym_indirect_func_call] = STATE(1471), + [sym_comment] = STATE(1252), + [aux_sym_if_statement_repeat1] = STATE(1252), + [sym_identifier] = ACTIONS(137), + [anon_sym_SEMI] = ACTIONS(460), + [anon_sym_if] = ACTIONS(139), + [anon_sym_LPAREN] = ACTIONS(434), + [anon_sym_while] = ACTIONS(143), + [anon_sym_do] = ACTIONS(93), + [anon_sym_for] = ACTIONS(145), [sym_break_statement] = ACTIONS(462), [sym_continue_statement] = ACTIONS(462), - [anon_sym_delete] = ACTIONS(55), - [anon_sym_exit] = ACTIONS(464), - [anon_sym_return] = ACTIONS(466), - [anon_sym_switch] = ACTIONS(61), - [anon_sym_LBRACE] = ACTIONS(316), - [anon_sym_getline] = ACTIONS(468), + [anon_sym_delete] = ACTIONS(99), + [anon_sym_exit] = ACTIONS(149), + [anon_sym_return] = ACTIONS(151), + [anon_sym_switch] = ACTIONS(105), + [anon_sym_LBRACE] = ACTIONS(268), + [anon_sym_getline] = ACTIONS(153), [sym_next_statement] = ACTIONS(462), [sym_nextfile_statement] = ACTIONS(462), - [anon_sym_print] = ACTIONS(470), - [anon_sym_printf] = ACTIONS(472), - [anon_sym_SLASH] = ACTIONS(474), - [anon_sym_PLUS] = ACTIONS(476), - [anon_sym_DASH] = ACTIONS(476), - [anon_sym_BANG] = ACTIONS(478), - [anon_sym_PLUS_PLUS] = ACTIONS(480), - [anon_sym_DASH_DASH] = ACTIONS(480), - [anon_sym_DOLLAR] = ACTIONS(482), - [anon_sym_AT] = ACTIONS(484), - [aux_sym_number_token1] = ACTIONS(79), - [aux_sym_number_token2] = ACTIONS(486), - [anon_sym_DQUOTE] = ACTIONS(488), - [anon_sym_POUND] = ACTIONS(171), + [anon_sym_print] = ACTIONS(155), + [anon_sym_printf] = ACTIONS(157), + [anon_sym_SLASH] = ACTIONS(438), + [anon_sym_PLUS] = ACTIONS(161), + [anon_sym_DASH] = ACTIONS(161), + [anon_sym_BANG] = ACTIONS(440), + [anon_sym_PLUS_PLUS] = ACTIONS(442), + [anon_sym_DASH_DASH] = ACTIONS(442), + [anon_sym_DOLLAR] = ACTIONS(444), + [anon_sym_AT] = ACTIONS(446), + [aux_sym_number_token1] = ACTIONS(169), + [aux_sym_number_token2] = ACTIONS(306), + [anon_sym_DQUOTE] = ACTIONS(308), + [anon_sym_POUND] = ACTIONS(135), + }, + [39] = { + [sym__statement] = STATE(1202), + [sym__statement_separated] = STATE(4), + [sym__control_statement] = STATE(1202), + [sym_if_statement] = STATE(1202), + [sym_while_statement] = STATE(1202), + [sym_do_while_statement] = STATE(1202), + [sym_for_statement] = STATE(1202), + [sym_for_in_statement] = STATE(1202), + [sym_delete_statement] = STATE(1202), + [sym_exit_statement] = STATE(1202), + [sym_return_statement] = STATE(1202), + [sym_switch_statement] = STATE(1202), + [sym__io_statement] = STATE(1202), + [sym__getline_exp] = STATE(1471), + [sym_getline_input] = STATE(1471), + [sym_getline_file] = STATE(1471), + [sym_print_statement] = STATE(1697), + [sym_printf_statement] = STATE(1697), + [sym_redirected_io_statement] = STATE(1202), + [sym_piped_io_statement] = STATE(1202), + [sym_block] = STATE(1203), + [sym__exp] = STATE(1471), + [sym_ternary_exp] = STATE(1420), + [sym_binary_exp] = STATE(1420), + [sym__binary_in] = STATE(1385), + [sym_unary_exp] = STATE(1420), + [sym_update_exp] = STATE(1471), + [sym_assignment_exp] = STATE(1471), + [sym_piped_io_exp] = STATE(1471), + [sym_string_concat] = STATE(1420), + [sym_field_ref] = STATE(705), + [sym_array_ref] = STATE(614), + [sym_regex] = STATE(1471), + [sym_regex_constant] = STATE(1471), + [sym_grouping] = STATE(1420), + [sym__primitive] = STATE(1420), + [sym_namespace] = STATE(1956), + [sym_ns_qualified_name] = STATE(597), + [sym_number] = STATE(1420), + [sym_string] = STATE(1420), + [sym_func_call] = STATE(1420), + [sym_indirect_func_call] = STATE(1471), + [sym_comment] = STATE(1252), + [aux_sym_if_statement_repeat1] = STATE(1252), + [sym_identifier] = ACTIONS(137), + [anon_sym_SEMI] = ACTIONS(464), + [anon_sym_if] = ACTIONS(139), + [anon_sym_LPAREN] = ACTIONS(434), + [anon_sym_while] = ACTIONS(143), + [anon_sym_do] = ACTIONS(93), + [anon_sym_for] = ACTIONS(145), + [sym_break_statement] = ACTIONS(466), + [sym_continue_statement] = ACTIONS(466), + [anon_sym_delete] = ACTIONS(99), + [anon_sym_exit] = ACTIONS(149), + [anon_sym_return] = ACTIONS(151), + [anon_sym_switch] = ACTIONS(105), + [anon_sym_LBRACE] = ACTIONS(268), + [anon_sym_getline] = ACTIONS(153), + [sym_next_statement] = ACTIONS(466), + [sym_nextfile_statement] = ACTIONS(466), + [anon_sym_print] = ACTIONS(155), + [anon_sym_printf] = ACTIONS(157), + [anon_sym_SLASH] = ACTIONS(438), + [anon_sym_PLUS] = ACTIONS(161), + [anon_sym_DASH] = ACTIONS(161), + [anon_sym_BANG] = ACTIONS(440), + [anon_sym_PLUS_PLUS] = ACTIONS(442), + [anon_sym_DASH_DASH] = ACTIONS(442), + [anon_sym_DOLLAR] = ACTIONS(444), + [anon_sym_AT] = ACTIONS(446), + [aux_sym_number_token1] = ACTIONS(169), + [aux_sym_number_token2] = ACTIONS(306), + [anon_sym_DQUOTE] = ACTIONS(308), + [anon_sym_POUND] = ACTIONS(135), }, [40] = { - [sym__statement] = STATE(1140), - [sym__statement_separated] = STATE(1140), - [sym__control_statement] = STATE(1140), - [sym_if_statement] = STATE(1140), - [sym_while_statement] = STATE(1140), - [sym_do_while_statement] = STATE(1140), - [sym_for_statement] = STATE(1140), - [sym_for_in_statement] = STATE(1140), - [sym_delete_statement] = STATE(1140), - [sym_exit_statement] = STATE(1140), - [sym_return_statement] = STATE(1140), - [sym_switch_statement] = STATE(1140), - [sym__io_statement] = STATE(1140), - [sym__getline_exp] = STATE(482), - [sym_getline_input] = STATE(482), - [sym_getline_file] = STATE(482), - [sym_print_statement] = STATE(740), - [sym_printf_statement] = STATE(740), - [sym_redirected_io_statement] = STATE(1140), - [sym_piped_io_statement] = STATE(1140), - [sym_block] = STATE(1141), - [sym__exp] = STATE(482), - [sym_ternary_exp] = STATE(375), - [sym_binary_exp] = STATE(375), - [sym__binary_in] = STATE(369), - [sym_unary_exp] = STATE(375), - [sym_update_exp] = STATE(482), - [sym_assignment_exp] = STATE(482), - [sym_piped_io_exp] = STATE(482), - [sym_string_concat] = STATE(375), - [sym_field_ref] = STATE(256), - [sym_array_ref] = STATE(240), - [sym_regex] = STATE(482), - [sym_regex_constant] = STATE(482), - [sym_grouping] = STATE(375), - [sym__primitive] = STATE(375), - [sym_namespace] = STATE(2063), - [sym_ns_qualified_name] = STATE(196), - [sym_number] = STATE(375), - [sym_string] = STATE(375), - [sym_func_call] = STATE(375), - [sym_indirect_func_call] = STATE(482), - [sym_comment] = STATE(1238), - [aux_sym_if_statement_repeat1] = STATE(1238), - [sym_identifier] = ACTIONS(298), - [anon_sym_SEMI] = ACTIONS(452), - [anon_sym_if] = ACTIONS(302), - [anon_sym_LPAREN] = ACTIONS(304), - [anon_sym_while] = ACTIONS(306), - [anon_sym_do] = ACTIONS(49), - [anon_sym_for] = ACTIONS(308), - [sym_break_statement] = ACTIONS(462), - [sym_continue_statement] = ACTIONS(462), - [anon_sym_delete] = ACTIONS(55), - [anon_sym_exit] = ACTIONS(312), - [anon_sym_return] = ACTIONS(314), - [anon_sym_switch] = ACTIONS(61), - [anon_sym_LBRACE] = ACTIONS(316), - [anon_sym_getline] = ACTIONS(318), - [sym_next_statement] = ACTIONS(462), - [sym_nextfile_statement] = ACTIONS(462), - [anon_sym_print] = ACTIONS(320), - [anon_sym_printf] = ACTIONS(322), - [anon_sym_SLASH] = ACTIONS(324), - [anon_sym_PLUS] = ACTIONS(326), - [anon_sym_DASH] = ACTIONS(326), - [anon_sym_BANG] = ACTIONS(328), - [anon_sym_PLUS_PLUS] = ACTIONS(330), - [anon_sym_DASH_DASH] = ACTIONS(330), - [anon_sym_DOLLAR] = ACTIONS(332), - [anon_sym_AT] = ACTIONS(334), - [aux_sym_number_token1] = ACTIONS(336), - [aux_sym_number_token2] = ACTIONS(338), - [anon_sym_DQUOTE] = ACTIONS(340), - [anon_sym_POUND] = ACTIONS(171), + [sym__statement] = STATE(1206), + [sym__statement_separated] = STATE(4), + [sym__control_statement] = STATE(1206), + [sym_if_statement] = STATE(1206), + [sym_while_statement] = STATE(1206), + [sym_do_while_statement] = STATE(1206), + [sym_for_statement] = STATE(1206), + [sym_for_in_statement] = STATE(1206), + [sym_delete_statement] = STATE(1206), + [sym_exit_statement] = STATE(1206), + [sym_return_statement] = STATE(1206), + [sym_switch_statement] = STATE(1206), + [sym__io_statement] = STATE(1206), + [sym__getline_exp] = STATE(1471), + [sym_getline_input] = STATE(1471), + [sym_getline_file] = STATE(1471), + [sym_print_statement] = STATE(1697), + [sym_printf_statement] = STATE(1697), + [sym_redirected_io_statement] = STATE(1206), + [sym_piped_io_statement] = STATE(1206), + [sym_block] = STATE(1208), + [sym__exp] = STATE(1471), + [sym_ternary_exp] = STATE(1420), + [sym_binary_exp] = STATE(1420), + [sym__binary_in] = STATE(1385), + [sym_unary_exp] = STATE(1420), + [sym_update_exp] = STATE(1471), + [sym_assignment_exp] = STATE(1471), + [sym_piped_io_exp] = STATE(1471), + [sym_string_concat] = STATE(1420), + [sym_field_ref] = STATE(705), + [sym_array_ref] = STATE(614), + [sym_regex] = STATE(1471), + [sym_regex_constant] = STATE(1471), + [sym_grouping] = STATE(1420), + [sym__primitive] = STATE(1420), + [sym_namespace] = STATE(1956), + [sym_ns_qualified_name] = STATE(597), + [sym_number] = STATE(1420), + [sym_string] = STATE(1420), + [sym_func_call] = STATE(1420), + [sym_indirect_func_call] = STATE(1471), + [sym_comment] = STATE(37), + [aux_sym_if_statement_repeat1] = STATE(37), + [sym_identifier] = ACTIONS(137), + [anon_sym_SEMI] = ACTIONS(468), + [anon_sym_if] = ACTIONS(139), + [anon_sym_LPAREN] = ACTIONS(434), + [anon_sym_while] = ACTIONS(143), + [anon_sym_do] = ACTIONS(93), + [anon_sym_for] = ACTIONS(145), + [sym_break_statement] = ACTIONS(470), + [sym_continue_statement] = ACTIONS(470), + [anon_sym_delete] = ACTIONS(99), + [anon_sym_exit] = ACTIONS(149), + [anon_sym_return] = ACTIONS(151), + [anon_sym_switch] = ACTIONS(105), + [anon_sym_LBRACE] = ACTIONS(268), + [anon_sym_getline] = ACTIONS(153), + [sym_next_statement] = ACTIONS(470), + [sym_nextfile_statement] = ACTIONS(470), + [anon_sym_print] = ACTIONS(155), + [anon_sym_printf] = ACTIONS(157), + [anon_sym_SLASH] = ACTIONS(438), + [anon_sym_PLUS] = ACTIONS(161), + [anon_sym_DASH] = ACTIONS(161), + [anon_sym_BANG] = ACTIONS(440), + [anon_sym_PLUS_PLUS] = ACTIONS(442), + [anon_sym_DASH_DASH] = ACTIONS(442), + [anon_sym_DOLLAR] = ACTIONS(444), + [anon_sym_AT] = ACTIONS(446), + [aux_sym_number_token1] = ACTIONS(169), + [aux_sym_number_token2] = ACTIONS(306), + [anon_sym_DQUOTE] = ACTIONS(308), + [anon_sym_POUND] = ACTIONS(135), }, [41] = { - [sym__statement] = STATE(1735), - [sym__statement_separated] = STATE(3), - [sym__control_statement] = STATE(1735), - [sym_if_statement] = STATE(1735), - [sym_while_statement] = STATE(1735), - [sym_do_while_statement] = STATE(1735), - [sym_for_statement] = STATE(1735), - [sym_for_in_statement] = STATE(1735), - [sym_delete_statement] = STATE(1735), - [sym_exit_statement] = STATE(1735), - [sym_return_statement] = STATE(1735), - [sym_switch_statement] = STATE(1735), - [sym__io_statement] = STATE(1735), - [sym__getline_exp] = STATE(1495), - [sym_getline_input] = STATE(1495), - [sym_getline_file] = STATE(1495), - [sym_print_statement] = STATE(1696), - [sym_printf_statement] = STATE(1696), - [sym_redirected_io_statement] = STATE(1735), - [sym_piped_io_statement] = STATE(1735), - [sym__exp] = STATE(1495), - [sym_ternary_exp] = STATE(1421), - [sym_binary_exp] = STATE(1421), - [sym__binary_in] = STATE(1373), - [sym_unary_exp] = STATE(1421), - [sym_update_exp] = STATE(1495), - [sym_assignment_exp] = STATE(1495), - [sym_piped_io_exp] = STATE(1495), - [sym_string_concat] = STATE(1421), - [sym_field_ref] = STATE(703), - [sym_array_ref] = STATE(610), - [sym_regex] = STATE(1495), - [sym_regex_constant] = STATE(1495), - [sym_grouping] = STATE(1421), - [sym__primitive] = STATE(1421), - [sym_namespace] = STATE(1955), - [sym_ns_qualified_name] = STATE(607), - [sym_number] = STATE(1421), - [sym_string] = STATE(1421), - [sym_func_call] = STATE(1421), - [sym_indirect_func_call] = STATE(1495), - [sym_comment] = STATE(1238), - [aux_sym_if_statement_repeat1] = STATE(1238), - [sym_identifier] = ACTIONS(85), - [anon_sym_if] = ACTIONS(87), - [anon_sym_LPAREN] = ACTIONS(272), - [anon_sym_while] = ACTIONS(91), + [sym__statement] = STATE(1209), + [sym__statement_separated] = STATE(4), + [sym__control_statement] = STATE(1209), + [sym_if_statement] = STATE(1209), + [sym_while_statement] = STATE(1209), + [sym_do_while_statement] = STATE(1209), + [sym_for_statement] = STATE(1209), + [sym_for_in_statement] = STATE(1209), + [sym_delete_statement] = STATE(1209), + [sym_exit_statement] = STATE(1209), + [sym_return_statement] = STATE(1209), + [sym_switch_statement] = STATE(1209), + [sym__io_statement] = STATE(1209), + [sym__getline_exp] = STATE(1471), + [sym_getline_input] = STATE(1471), + [sym_getline_file] = STATE(1471), + [sym_print_statement] = STATE(1697), + [sym_printf_statement] = STATE(1697), + [sym_redirected_io_statement] = STATE(1209), + [sym_piped_io_statement] = STATE(1209), + [sym_block] = STATE(1210), + [sym__exp] = STATE(1471), + [sym_ternary_exp] = STATE(1420), + [sym_binary_exp] = STATE(1420), + [sym__binary_in] = STATE(1385), + [sym_unary_exp] = STATE(1420), + [sym_update_exp] = STATE(1471), + [sym_assignment_exp] = STATE(1471), + [sym_piped_io_exp] = STATE(1471), + [sym_string_concat] = STATE(1420), + [sym_field_ref] = STATE(705), + [sym_array_ref] = STATE(614), + [sym_regex] = STATE(1471), + [sym_regex_constant] = STATE(1471), + [sym_grouping] = STATE(1420), + [sym__primitive] = STATE(1420), + [sym_namespace] = STATE(1956), + [sym_ns_qualified_name] = STATE(597), + [sym_number] = STATE(1420), + [sym_string] = STATE(1420), + [sym_func_call] = STATE(1420), + [sym_indirect_func_call] = STATE(1471), + [sym_comment] = STATE(38), + [aux_sym_if_statement_repeat1] = STATE(38), + [sym_identifier] = ACTIONS(137), + [anon_sym_SEMI] = ACTIONS(272), + [anon_sym_if] = ACTIONS(139), + [anon_sym_LPAREN] = ACTIONS(434), + [anon_sym_while] = ACTIONS(143), [anon_sym_do] = ACTIONS(93), - [anon_sym_for] = ACTIONS(95), - [sym_break_statement] = ACTIONS(490), - [sym_continue_statement] = ACTIONS(490), + [anon_sym_for] = ACTIONS(145), + [sym_break_statement] = ACTIONS(282), + [sym_continue_statement] = ACTIONS(282), [anon_sym_delete] = ACTIONS(99), - [anon_sym_exit] = ACTIONS(101), - [anon_sym_return] = ACTIONS(103), + [anon_sym_exit] = ACTIONS(149), + [anon_sym_return] = ACTIONS(151), [anon_sym_switch] = ACTIONS(105), - [anon_sym_RBRACE] = ACTIONS(492), - [anon_sym_case] = ACTIONS(494), - [anon_sym_default] = ACTIONS(494), - [anon_sym_getline] = ACTIONS(107), - [sym_next_statement] = ACTIONS(490), - [sym_nextfile_statement] = ACTIONS(490), - [anon_sym_print] = ACTIONS(109), - [anon_sym_printf] = ACTIONS(111), - [anon_sym_SLASH] = ACTIONS(276), - [anon_sym_PLUS] = ACTIONS(115), - [anon_sym_DASH] = ACTIONS(115), - [anon_sym_BANG] = ACTIONS(278), - [anon_sym_PLUS_PLUS] = ACTIONS(280), - [anon_sym_DASH_DASH] = ACTIONS(280), - [anon_sym_DOLLAR] = ACTIONS(282), - [anon_sym_AT] = ACTIONS(284), - [aux_sym_number_token1] = ACTIONS(123), - [aux_sym_number_token2] = ACTIONS(286), - [anon_sym_DQUOTE] = ACTIONS(288), - [anon_sym_POUND] = ACTIONS(171), + [anon_sym_LBRACE] = ACTIONS(268), + [anon_sym_getline] = ACTIONS(153), + [sym_next_statement] = ACTIONS(282), + [sym_nextfile_statement] = ACTIONS(282), + [anon_sym_print] = ACTIONS(155), + [anon_sym_printf] = ACTIONS(157), + [anon_sym_SLASH] = ACTIONS(438), + [anon_sym_PLUS] = ACTIONS(161), + [anon_sym_DASH] = ACTIONS(161), + [anon_sym_BANG] = ACTIONS(440), + [anon_sym_PLUS_PLUS] = ACTIONS(442), + [anon_sym_DASH_DASH] = ACTIONS(442), + [anon_sym_DOLLAR] = ACTIONS(444), + [anon_sym_AT] = ACTIONS(446), + [aux_sym_number_token1] = ACTIONS(169), + [aux_sym_number_token2] = ACTIONS(306), + [anon_sym_DQUOTE] = ACTIONS(308), + [anon_sym_POUND] = ACTIONS(135), }, [42] = { - [sym__statement] = STATE(1252), - [sym__statement_separated] = STATE(1252), - [sym__control_statement] = STATE(1252), - [sym_if_statement] = STATE(1252), - [sym_while_statement] = STATE(1252), - [sym_do_while_statement] = STATE(1252), - [sym_for_statement] = STATE(1252), - [sym_for_in_statement] = STATE(1252), - [sym_delete_statement] = STATE(1252), - [sym_exit_statement] = STATE(1252), - [sym_return_statement] = STATE(1252), - [sym_switch_statement] = STATE(1252), - [sym__io_statement] = STATE(1252), + [sym__statement] = STATE(1215), + [sym__statement_separated] = STATE(1215), + [sym__control_statement] = STATE(1215), + [sym_if_statement] = STATE(1215), + [sym_while_statement] = STATE(1215), + [sym_do_while_statement] = STATE(1215), + [sym_for_statement] = STATE(1215), + [sym_for_in_statement] = STATE(1215), + [sym_delete_statement] = STATE(1215), + [sym_exit_statement] = STATE(1215), + [sym_return_statement] = STATE(1215), + [sym_switch_statement] = STATE(1215), + [sym__io_statement] = STATE(1215), [sym__getline_exp] = STATE(503), [sym_getline_input] = STATE(503), [sym_getline_file] = STATE(503), - [sym_print_statement] = STATE(890), - [sym_printf_statement] = STATE(890), - [sym_redirected_io_statement] = STATE(1252), - [sym_piped_io_statement] = STATE(1252), - [sym_block] = STATE(1254), + [sym_print_statement] = STATE(869), + [sym_printf_statement] = STATE(869), + [sym_redirected_io_statement] = STATE(1215), + [sym_piped_io_statement] = STATE(1215), + [sym_block] = STATE(1214), [sym__exp] = STATE(503), - [sym_ternary_exp] = STATE(447), - [sym_binary_exp] = STATE(447), - [sym__binary_in] = STATE(446), - [sym_unary_exp] = STATE(447), + [sym_ternary_exp] = STATE(427), + [sym_binary_exp] = STATE(427), + [sym__binary_in] = STATE(426), + [sym_unary_exp] = STATE(427), [sym_update_exp] = STATE(503), [sym_assignment_exp] = STATE(503), [sym_piped_io_exp] = STATE(503), - [sym_string_concat] = STATE(447), - [sym_field_ref] = STATE(272), - [sym_array_ref] = STATE(253), + [sym_string_concat] = STATE(427), + [sym_field_ref] = STATE(274), + [sym_array_ref] = STATE(268), [sym_regex] = STATE(503), [sym_regex_constant] = STATE(503), - [sym_grouping] = STATE(447), - [sym__primitive] = STATE(447), - [sym_namespace] = STATE(1955), - [sym_ns_qualified_name] = STATE(221), - [sym_number] = STATE(447), - [sym_string] = STATE(447), - [sym_func_call] = STATE(447), + [sym_grouping] = STATE(427), + [sym__primitive] = STATE(427), + [sym_namespace] = STATE(1956), + [sym_ns_qualified_name] = STATE(244), + [sym_number] = STATE(427), + [sym_string] = STATE(427), + [sym_func_call] = STATE(427), [sym_indirect_func_call] = STATE(503), - [sym_comment] = STATE(1238), - [aux_sym_if_statement_repeat1] = STATE(1238), - [sym_identifier] = ACTIONS(127), - [anon_sym_SEMI] = ACTIONS(496), - [anon_sym_if] = ACTIONS(129), - [anon_sym_LPAREN] = ACTIONS(131), - [anon_sym_while] = ACTIONS(133), - [anon_sym_do] = ACTIONS(93), - [anon_sym_for] = ACTIONS(135), - [sym_break_statement] = ACTIONS(498), - [sym_continue_statement] = ACTIONS(498), - [anon_sym_delete] = ACTIONS(99), - [anon_sym_exit] = ACTIONS(139), - [anon_sym_return] = ACTIONS(141), - [anon_sym_switch] = ACTIONS(105), - [anon_sym_LBRACE] = ACTIONS(268), - [anon_sym_getline] = ACTIONS(147), - [sym_next_statement] = ACTIONS(498), - [sym_nextfile_statement] = ACTIONS(498), - [anon_sym_print] = ACTIONS(149), - [anon_sym_printf] = ACTIONS(151), - [anon_sym_SLASH] = ACTIONS(153), - [anon_sym_PLUS] = ACTIONS(155), - [anon_sym_DASH] = ACTIONS(155), - [anon_sym_BANG] = ACTIONS(157), - [anon_sym_PLUS_PLUS] = ACTIONS(159), - [anon_sym_DASH_DASH] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(161), - [anon_sym_AT] = ACTIONS(163), - [aux_sym_number_token1] = ACTIONS(165), - [aux_sym_number_token2] = ACTIONS(167), - [anon_sym_DQUOTE] = ACTIONS(169), - [anon_sym_POUND] = ACTIONS(171), - }, - [43] = { - [sym__statement] = STATE(1736), - [sym__statement_separated] = STATE(3), - [sym__control_statement] = STATE(1736), - [sym_if_statement] = STATE(1736), - [sym_while_statement] = STATE(1736), - [sym_do_while_statement] = STATE(1736), - [sym_for_statement] = STATE(1736), - [sym_for_in_statement] = STATE(1736), - [sym_delete_statement] = STATE(1736), - [sym_exit_statement] = STATE(1736), - [sym_return_statement] = STATE(1736), - [sym_switch_statement] = STATE(1736), - [sym__io_statement] = STATE(1736), - [sym__getline_exp] = STATE(1495), - [sym_getline_input] = STATE(1495), - [sym_getline_file] = STATE(1495), - [sym_print_statement] = STATE(1696), - [sym_printf_statement] = STATE(1696), - [sym_redirected_io_statement] = STATE(1736), - [sym_piped_io_statement] = STATE(1736), - [sym__exp] = STATE(1495), - [sym_ternary_exp] = STATE(1421), - [sym_binary_exp] = STATE(1421), - [sym__binary_in] = STATE(1373), - [sym_unary_exp] = STATE(1421), - [sym_update_exp] = STATE(1495), - [sym_assignment_exp] = STATE(1495), - [sym_piped_io_exp] = STATE(1495), - [sym_string_concat] = STATE(1421), - [sym_field_ref] = STATE(703), - [sym_array_ref] = STATE(610), - [sym_regex] = STATE(1495), - [sym_regex_constant] = STATE(1495), - [sym_grouping] = STATE(1421), - [sym__primitive] = STATE(1421), - [sym_namespace] = STATE(1955), - [sym_ns_qualified_name] = STATE(607), - [sym_number] = STATE(1421), - [sym_string] = STATE(1421), - [sym_func_call] = STATE(1421), - [sym_indirect_func_call] = STATE(1495), - [sym_comment] = STATE(1238), - [aux_sym_if_statement_repeat1] = STATE(1238), + [sym_comment] = STATE(1252), + [aux_sym_if_statement_repeat1] = STATE(1252), [sym_identifier] = ACTIONS(85), + [anon_sym_SEMI] = ACTIONS(472), [anon_sym_if] = ACTIONS(87), - [anon_sym_LPAREN] = ACTIONS(272), + [anon_sym_LPAREN] = ACTIONS(89), [anon_sym_while] = ACTIONS(91), [anon_sym_do] = ACTIONS(93), [anon_sym_for] = ACTIONS(95), - [sym_break_statement] = ACTIONS(500), - [sym_continue_statement] = ACTIONS(500), + [sym_break_statement] = ACTIONS(474), + [sym_continue_statement] = ACTIONS(474), [anon_sym_delete] = ACTIONS(99), [anon_sym_exit] = ACTIONS(101), [anon_sym_return] = ACTIONS(103), [anon_sym_switch] = ACTIONS(105), - [anon_sym_RBRACE] = ACTIONS(502), - [anon_sym_case] = ACTIONS(504), - [anon_sym_default] = ACTIONS(504), - [anon_sym_getline] = ACTIONS(107), - [sym_next_statement] = ACTIONS(500), - [sym_nextfile_statement] = ACTIONS(500), - [anon_sym_print] = ACTIONS(109), - [anon_sym_printf] = ACTIONS(111), - [anon_sym_SLASH] = ACTIONS(276), - [anon_sym_PLUS] = ACTIONS(115), - [anon_sym_DASH] = ACTIONS(115), - [anon_sym_BANG] = ACTIONS(278), - [anon_sym_PLUS_PLUS] = ACTIONS(280), - [anon_sym_DASH_DASH] = ACTIONS(280), - [anon_sym_DOLLAR] = ACTIONS(282), - [anon_sym_AT] = ACTIONS(284), - [aux_sym_number_token1] = ACTIONS(123), - [aux_sym_number_token2] = ACTIONS(286), - [anon_sym_DQUOTE] = ACTIONS(288), - [anon_sym_POUND] = ACTIONS(171), + [anon_sym_LBRACE] = ACTIONS(268), + [anon_sym_getline] = ACTIONS(111), + [sym_next_statement] = ACTIONS(474), + [sym_nextfile_statement] = ACTIONS(474), + [anon_sym_print] = ACTIONS(113), + [anon_sym_printf] = ACTIONS(115), + [anon_sym_SLASH] = ACTIONS(117), + [anon_sym_PLUS] = ACTIONS(119), + [anon_sym_DASH] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(121), + [anon_sym_PLUS_PLUS] = ACTIONS(123), + [anon_sym_DASH_DASH] = ACTIONS(123), + [anon_sym_DOLLAR] = ACTIONS(125), + [anon_sym_AT] = ACTIONS(127), + [aux_sym_number_token1] = ACTIONS(129), + [aux_sym_number_token2] = ACTIONS(131), + [anon_sym_DQUOTE] = ACTIONS(133), + [anon_sym_POUND] = ACTIONS(135), + }, + [43] = { + [sym__statement] = STATE(1211), + [sym__statement_separated] = STATE(4), + [sym__control_statement] = STATE(1211), + [sym_if_statement] = STATE(1211), + [sym_while_statement] = STATE(1211), + [sym_do_while_statement] = STATE(1211), + [sym_for_statement] = STATE(1211), + [sym_for_in_statement] = STATE(1211), + [sym_delete_statement] = STATE(1211), + [sym_exit_statement] = STATE(1211), + [sym_return_statement] = STATE(1211), + [sym_switch_statement] = STATE(1211), + [sym__io_statement] = STATE(1211), + [sym__getline_exp] = STATE(1471), + [sym_getline_input] = STATE(1471), + [sym_getline_file] = STATE(1471), + [sym_print_statement] = STATE(1697), + [sym_printf_statement] = STATE(1697), + [sym_redirected_io_statement] = STATE(1211), + [sym_piped_io_statement] = STATE(1211), + [sym_block] = STATE(1213), + [sym__exp] = STATE(1471), + [sym_ternary_exp] = STATE(1420), + [sym_binary_exp] = STATE(1420), + [sym__binary_in] = STATE(1385), + [sym_unary_exp] = STATE(1420), + [sym_update_exp] = STATE(1471), + [sym_assignment_exp] = STATE(1471), + [sym_piped_io_exp] = STATE(1471), + [sym_string_concat] = STATE(1420), + [sym_field_ref] = STATE(705), + [sym_array_ref] = STATE(614), + [sym_regex] = STATE(1471), + [sym_regex_constant] = STATE(1471), + [sym_grouping] = STATE(1420), + [sym__primitive] = STATE(1420), + [sym_namespace] = STATE(1956), + [sym_ns_qualified_name] = STATE(597), + [sym_number] = STATE(1420), + [sym_string] = STATE(1420), + [sym_func_call] = STATE(1420), + [sym_indirect_func_call] = STATE(1471), + [sym_comment] = STATE(1252), + [aux_sym_if_statement_repeat1] = STATE(1252), + [sym_identifier] = ACTIONS(137), + [anon_sym_SEMI] = ACTIONS(476), + [anon_sym_if] = ACTIONS(139), + [anon_sym_LPAREN] = ACTIONS(434), + [anon_sym_while] = ACTIONS(143), + [anon_sym_do] = ACTIONS(93), + [anon_sym_for] = ACTIONS(145), + [sym_break_statement] = ACTIONS(478), + [sym_continue_statement] = ACTIONS(478), + [anon_sym_delete] = ACTIONS(99), + [anon_sym_exit] = ACTIONS(149), + [anon_sym_return] = ACTIONS(151), + [anon_sym_switch] = ACTIONS(105), + [anon_sym_LBRACE] = ACTIONS(268), + [anon_sym_getline] = ACTIONS(153), + [sym_next_statement] = ACTIONS(478), + [sym_nextfile_statement] = ACTIONS(478), + [anon_sym_print] = ACTIONS(155), + [anon_sym_printf] = ACTIONS(157), + [anon_sym_SLASH] = ACTIONS(438), + [anon_sym_PLUS] = ACTIONS(161), + [anon_sym_DASH] = ACTIONS(161), + [anon_sym_BANG] = ACTIONS(440), + [anon_sym_PLUS_PLUS] = ACTIONS(442), + [anon_sym_DASH_DASH] = ACTIONS(442), + [anon_sym_DOLLAR] = ACTIONS(444), + [anon_sym_AT] = ACTIONS(446), + [aux_sym_number_token1] = ACTIONS(169), + [aux_sym_number_token2] = ACTIONS(306), + [anon_sym_DQUOTE] = ACTIONS(308), + [anon_sym_POUND] = ACTIONS(135), }, [44] = { - [sym__statement] = STATE(1723), - [sym__statement_separated] = STATE(3), - [sym__control_statement] = STATE(1723), - [sym_if_statement] = STATE(1723), - [sym_while_statement] = STATE(1723), - [sym_do_while_statement] = STATE(1723), - [sym_for_statement] = STATE(1723), - [sym_for_in_statement] = STATE(1723), - [sym_delete_statement] = STATE(1723), - [sym_exit_statement] = STATE(1723), - [sym_return_statement] = STATE(1723), - [sym_switch_statement] = STATE(1723), - [sym__io_statement] = STATE(1723), - [sym__getline_exp] = STATE(1495), - [sym_getline_input] = STATE(1495), - [sym_getline_file] = STATE(1495), - [sym_print_statement] = STATE(1696), - [sym_printf_statement] = STATE(1696), - [sym_redirected_io_statement] = STATE(1723), - [sym_piped_io_statement] = STATE(1723), - [sym__exp] = STATE(1495), - [sym_ternary_exp] = STATE(1421), - [sym_binary_exp] = STATE(1421), - [sym__binary_in] = STATE(1373), - [sym_unary_exp] = STATE(1421), - [sym_update_exp] = STATE(1495), - [sym_assignment_exp] = STATE(1495), - [sym_piped_io_exp] = STATE(1495), - [sym_string_concat] = STATE(1421), - [sym_field_ref] = STATE(703), - [sym_array_ref] = STATE(610), - [sym_regex] = STATE(1495), - [sym_regex_constant] = STATE(1495), - [sym_grouping] = STATE(1421), - [sym__primitive] = STATE(1421), - [sym_namespace] = STATE(1955), - [sym_ns_qualified_name] = STATE(607), - [sym_number] = STATE(1421), - [sym_string] = STATE(1421), - [sym_func_call] = STATE(1421), - [sym_indirect_func_call] = STATE(1495), - [sym_comment] = STATE(41), - [aux_sym_if_statement_repeat1] = STATE(41), - [sym_identifier] = ACTIONS(85), - [anon_sym_if] = ACTIONS(87), - [anon_sym_LPAREN] = ACTIONS(272), - [anon_sym_while] = ACTIONS(91), + [sym__statement] = STATE(1216), + [sym__statement_separated] = STATE(4), + [sym__control_statement] = STATE(1216), + [sym_if_statement] = STATE(1216), + [sym_while_statement] = STATE(1216), + [sym_do_while_statement] = STATE(1216), + [sym_for_statement] = STATE(1216), + [sym_for_in_statement] = STATE(1216), + [sym_delete_statement] = STATE(1216), + [sym_exit_statement] = STATE(1216), + [sym_return_statement] = STATE(1216), + [sym_switch_statement] = STATE(1216), + [sym__io_statement] = STATE(1216), + [sym__getline_exp] = STATE(1471), + [sym_getline_input] = STATE(1471), + [sym_getline_file] = STATE(1471), + [sym_print_statement] = STATE(1697), + [sym_printf_statement] = STATE(1697), + [sym_redirected_io_statement] = STATE(1216), + [sym_piped_io_statement] = STATE(1216), + [sym_block] = STATE(1220), + [sym__exp] = STATE(1471), + [sym_ternary_exp] = STATE(1420), + [sym_binary_exp] = STATE(1420), + [sym__binary_in] = STATE(1385), + [sym_unary_exp] = STATE(1420), + [sym_update_exp] = STATE(1471), + [sym_assignment_exp] = STATE(1471), + [sym_piped_io_exp] = STATE(1471), + [sym_string_concat] = STATE(1420), + [sym_field_ref] = STATE(705), + [sym_array_ref] = STATE(614), + [sym_regex] = STATE(1471), + [sym_regex_constant] = STATE(1471), + [sym_grouping] = STATE(1420), + [sym__primitive] = STATE(1420), + [sym_namespace] = STATE(1956), + [sym_ns_qualified_name] = STATE(597), + [sym_number] = STATE(1420), + [sym_string] = STATE(1420), + [sym_func_call] = STATE(1420), + [sym_indirect_func_call] = STATE(1471), + [sym_comment] = STATE(1252), + [aux_sym_if_statement_repeat1] = STATE(1252), + [sym_identifier] = ACTIONS(137), + [anon_sym_SEMI] = ACTIONS(480), + [anon_sym_if] = ACTIONS(139), + [anon_sym_LPAREN] = ACTIONS(434), + [anon_sym_while] = ACTIONS(143), [anon_sym_do] = ACTIONS(93), - [anon_sym_for] = ACTIONS(95), - [sym_break_statement] = ACTIONS(506), - [sym_continue_statement] = ACTIONS(506), + [anon_sym_for] = ACTIONS(145), + [sym_break_statement] = ACTIONS(482), + [sym_continue_statement] = ACTIONS(482), [anon_sym_delete] = ACTIONS(99), - [anon_sym_exit] = ACTIONS(101), - [anon_sym_return] = ACTIONS(103), + [anon_sym_exit] = ACTIONS(149), + [anon_sym_return] = ACTIONS(151), [anon_sym_switch] = ACTIONS(105), - [anon_sym_RBRACE] = ACTIONS(508), - [anon_sym_case] = ACTIONS(510), - [anon_sym_default] = ACTIONS(510), - [anon_sym_getline] = ACTIONS(107), - [sym_next_statement] = ACTIONS(506), - [sym_nextfile_statement] = ACTIONS(506), - [anon_sym_print] = ACTIONS(109), - [anon_sym_printf] = ACTIONS(111), - [anon_sym_SLASH] = ACTIONS(276), - [anon_sym_PLUS] = ACTIONS(115), - [anon_sym_DASH] = ACTIONS(115), - [anon_sym_BANG] = ACTIONS(278), - [anon_sym_PLUS_PLUS] = ACTIONS(280), - [anon_sym_DASH_DASH] = ACTIONS(280), - [anon_sym_DOLLAR] = ACTIONS(282), - [anon_sym_AT] = ACTIONS(284), - [aux_sym_number_token1] = ACTIONS(123), - [aux_sym_number_token2] = ACTIONS(286), - [anon_sym_DQUOTE] = ACTIONS(288), - [anon_sym_POUND] = ACTIONS(171), + [anon_sym_LBRACE] = ACTIONS(268), + [anon_sym_getline] = ACTIONS(153), + [sym_next_statement] = ACTIONS(482), + [sym_nextfile_statement] = ACTIONS(482), + [anon_sym_print] = ACTIONS(155), + [anon_sym_printf] = ACTIONS(157), + [anon_sym_SLASH] = ACTIONS(438), + [anon_sym_PLUS] = ACTIONS(161), + [anon_sym_DASH] = ACTIONS(161), + [anon_sym_BANG] = ACTIONS(440), + [anon_sym_PLUS_PLUS] = ACTIONS(442), + [anon_sym_DASH_DASH] = ACTIONS(442), + [anon_sym_DOLLAR] = ACTIONS(444), + [anon_sym_AT] = ACTIONS(446), + [aux_sym_number_token1] = ACTIONS(169), + [aux_sym_number_token2] = ACTIONS(306), + [anon_sym_DQUOTE] = ACTIONS(308), + [anon_sym_POUND] = ACTIONS(135), }, [45] = { - [sym__statement] = STATE(1258), - [sym__statement_separated] = STATE(1258), - [sym__control_statement] = STATE(1258), - [sym_if_statement] = STATE(1258), - [sym_while_statement] = STATE(1258), - [sym_do_while_statement] = STATE(1258), - [sym_for_statement] = STATE(1258), - [sym_for_in_statement] = STATE(1258), - [sym_delete_statement] = STATE(1258), - [sym_exit_statement] = STATE(1258), - [sym_return_statement] = STATE(1258), - [sym_switch_statement] = STATE(1258), - [sym__io_statement] = STATE(1258), + [sym__statement] = STATE(1222), + [sym__statement_separated] = STATE(1222), + [sym__control_statement] = STATE(1222), + [sym_if_statement] = STATE(1222), + [sym_while_statement] = STATE(1222), + [sym_do_while_statement] = STATE(1222), + [sym_for_statement] = STATE(1222), + [sym_for_in_statement] = STATE(1222), + [sym_delete_statement] = STATE(1222), + [sym_exit_statement] = STATE(1222), + [sym_return_statement] = STATE(1222), + [sym_switch_statement] = STATE(1222), + [sym__io_statement] = STATE(1222), [sym__getline_exp] = STATE(503), [sym_getline_input] = STATE(503), [sym_getline_file] = STATE(503), - [sym_print_statement] = STATE(890), - [sym_printf_statement] = STATE(890), - [sym_redirected_io_statement] = STATE(1258), - [sym_piped_io_statement] = STATE(1258), - [sym_block] = STATE(1265), + [sym_print_statement] = STATE(869), + [sym_printf_statement] = STATE(869), + [sym_redirected_io_statement] = STATE(1222), + [sym_piped_io_statement] = STATE(1222), + [sym_block] = STATE(1218), [sym__exp] = STATE(503), - [sym_ternary_exp] = STATE(447), - [sym_binary_exp] = STATE(447), - [sym__binary_in] = STATE(446), - [sym_unary_exp] = STATE(447), + [sym_ternary_exp] = STATE(427), + [sym_binary_exp] = STATE(427), + [sym__binary_in] = STATE(426), + [sym_unary_exp] = STATE(427), [sym_update_exp] = STATE(503), [sym_assignment_exp] = STATE(503), [sym_piped_io_exp] = STATE(503), - [sym_string_concat] = STATE(447), - [sym_field_ref] = STATE(272), - [sym_array_ref] = STATE(253), + [sym_string_concat] = STATE(427), + [sym_field_ref] = STATE(274), + [sym_array_ref] = STATE(268), [sym_regex] = STATE(503), [sym_regex_constant] = STATE(503), - [sym_grouping] = STATE(447), - [sym__primitive] = STATE(447), - [sym_namespace] = STATE(1955), - [sym_ns_qualified_name] = STATE(221), - [sym_number] = STATE(447), - [sym_string] = STATE(447), - [sym_func_call] = STATE(447), + [sym_grouping] = STATE(427), + [sym__primitive] = STATE(427), + [sym_namespace] = STATE(1956), + [sym_ns_qualified_name] = STATE(244), + [sym_number] = STATE(427), + [sym_string] = STATE(427), + [sym_func_call] = STATE(427), [sym_indirect_func_call] = STATE(503), - [sym_comment] = STATE(42), - [aux_sym_if_statement_repeat1] = STATE(42), - [sym_identifier] = ACTIONS(127), - [anon_sym_SEMI] = ACTIONS(512), - [anon_sym_if] = ACTIONS(129), - [anon_sym_LPAREN] = ACTIONS(131), - [anon_sym_while] = ACTIONS(133), - [anon_sym_do] = ACTIONS(93), - [anon_sym_for] = ACTIONS(135), - [sym_break_statement] = ACTIONS(514), - [sym_continue_statement] = ACTIONS(514), - [anon_sym_delete] = ACTIONS(99), - [anon_sym_exit] = ACTIONS(139), - [anon_sym_return] = ACTIONS(141), - [anon_sym_switch] = ACTIONS(105), - [anon_sym_LBRACE] = ACTIONS(268), - [anon_sym_getline] = ACTIONS(147), - [sym_next_statement] = ACTIONS(514), - [sym_nextfile_statement] = ACTIONS(514), - [anon_sym_print] = ACTIONS(149), - [anon_sym_printf] = ACTIONS(151), - [anon_sym_SLASH] = ACTIONS(153), - [anon_sym_PLUS] = ACTIONS(155), - [anon_sym_DASH] = ACTIONS(155), - [anon_sym_BANG] = ACTIONS(157), - [anon_sym_PLUS_PLUS] = ACTIONS(159), - [anon_sym_DASH_DASH] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(161), - [anon_sym_AT] = ACTIONS(163), - [aux_sym_number_token1] = ACTIONS(165), - [aux_sym_number_token2] = ACTIONS(167), - [anon_sym_DQUOTE] = ACTIONS(169), - [anon_sym_POUND] = ACTIONS(171), - }, - [46] = { - [sym__statement] = STATE(1220), - [sym__statement_separated] = STATE(3), - [sym__control_statement] = STATE(1220), - [sym_if_statement] = STATE(1220), - [sym_while_statement] = STATE(1220), - [sym_do_while_statement] = STATE(1220), - [sym_for_statement] = STATE(1220), - [sym_for_in_statement] = STATE(1220), - [sym_delete_statement] = STATE(1220), - [sym_exit_statement] = STATE(1220), - [sym_return_statement] = STATE(1220), - [sym_switch_statement] = STATE(1220), - [sym__io_statement] = STATE(1220), - [sym__getline_exp] = STATE(1495), - [sym_getline_input] = STATE(1495), - [sym_getline_file] = STATE(1495), - [sym_print_statement] = STATE(1696), - [sym_printf_statement] = STATE(1696), - [sym_redirected_io_statement] = STATE(1220), - [sym_piped_io_statement] = STATE(1220), - [sym_block] = STATE(1219), - [sym__exp] = STATE(1495), - [sym_ternary_exp] = STATE(1421), - [sym_binary_exp] = STATE(1421), - [sym__binary_in] = STATE(1373), - [sym_unary_exp] = STATE(1421), - [sym_update_exp] = STATE(1495), - [sym_assignment_exp] = STATE(1495), - [sym_piped_io_exp] = STATE(1495), - [sym_string_concat] = STATE(1421), - [sym_field_ref] = STATE(703), - [sym_array_ref] = STATE(610), - [sym_regex] = STATE(1495), - [sym_regex_constant] = STATE(1495), - [sym_grouping] = STATE(1421), - [sym__primitive] = STATE(1421), - [sym_namespace] = STATE(1955), - [sym_ns_qualified_name] = STATE(607), - [sym_number] = STATE(1421), - [sym_string] = STATE(1421), - [sym_func_call] = STATE(1421), - [sym_indirect_func_call] = STATE(1495), - [sym_comment] = STATE(19), - [aux_sym_if_statement_repeat1] = STATE(19), + [sym_comment] = STATE(51), + [aux_sym_if_statement_repeat1] = STATE(51), [sym_identifier] = ACTIONS(85), - [anon_sym_SEMI] = ACTIONS(516), + [anon_sym_SEMI] = ACTIONS(484), [anon_sym_if] = ACTIONS(87), - [anon_sym_LPAREN] = ACTIONS(272), + [anon_sym_LPAREN] = ACTIONS(89), [anon_sym_while] = ACTIONS(91), [anon_sym_do] = ACTIONS(93), [anon_sym_for] = ACTIONS(95), - [sym_break_statement] = ACTIONS(518), - [sym_continue_statement] = ACTIONS(518), + [sym_break_statement] = ACTIONS(486), + [sym_continue_statement] = ACTIONS(486), [anon_sym_delete] = ACTIONS(99), [anon_sym_exit] = ACTIONS(101), [anon_sym_return] = ACTIONS(103), [anon_sym_switch] = ACTIONS(105), [anon_sym_LBRACE] = ACTIONS(268), - [anon_sym_getline] = ACTIONS(107), - [sym_next_statement] = ACTIONS(518), - [sym_nextfile_statement] = ACTIONS(518), - [anon_sym_print] = ACTIONS(109), - [anon_sym_printf] = ACTIONS(111), - [anon_sym_SLASH] = ACTIONS(276), - [anon_sym_PLUS] = ACTIONS(115), - [anon_sym_DASH] = ACTIONS(115), - [anon_sym_BANG] = ACTIONS(278), - [anon_sym_PLUS_PLUS] = ACTIONS(280), - [anon_sym_DASH_DASH] = ACTIONS(280), - [anon_sym_DOLLAR] = ACTIONS(282), - [anon_sym_AT] = ACTIONS(284), - [aux_sym_number_token1] = ACTIONS(123), - [aux_sym_number_token2] = ACTIONS(286), - [anon_sym_DQUOTE] = ACTIONS(288), - [anon_sym_POUND] = ACTIONS(171), + [anon_sym_getline] = ACTIONS(111), + [sym_next_statement] = ACTIONS(486), + [sym_nextfile_statement] = ACTIONS(486), + [anon_sym_print] = ACTIONS(113), + [anon_sym_printf] = ACTIONS(115), + [anon_sym_SLASH] = ACTIONS(117), + [anon_sym_PLUS] = ACTIONS(119), + [anon_sym_DASH] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(121), + [anon_sym_PLUS_PLUS] = ACTIONS(123), + [anon_sym_DASH_DASH] = ACTIONS(123), + [anon_sym_DOLLAR] = ACTIONS(125), + [anon_sym_AT] = ACTIONS(127), + [aux_sym_number_token1] = ACTIONS(129), + [aux_sym_number_token2] = ACTIONS(131), + [anon_sym_DQUOTE] = ACTIONS(133), + [anon_sym_POUND] = ACTIONS(135), + }, + [46] = { + [sym__statement] = STATE(1727), + [sym__statement_separated] = STATE(4), + [sym__control_statement] = STATE(1727), + [sym_if_statement] = STATE(1727), + [sym_while_statement] = STATE(1727), + [sym_do_while_statement] = STATE(1727), + [sym_for_statement] = STATE(1727), + [sym_for_in_statement] = STATE(1727), + [sym_delete_statement] = STATE(1727), + [sym_exit_statement] = STATE(1727), + [sym_return_statement] = STATE(1727), + [sym_switch_statement] = STATE(1727), + [sym__io_statement] = STATE(1727), + [sym__getline_exp] = STATE(1471), + [sym_getline_input] = STATE(1471), + [sym_getline_file] = STATE(1471), + [sym_print_statement] = STATE(1697), + [sym_printf_statement] = STATE(1697), + [sym_redirected_io_statement] = STATE(1727), + [sym_piped_io_statement] = STATE(1727), + [sym__exp] = STATE(1471), + [sym_ternary_exp] = STATE(1420), + [sym_binary_exp] = STATE(1420), + [sym__binary_in] = STATE(1385), + [sym_unary_exp] = STATE(1420), + [sym_update_exp] = STATE(1471), + [sym_assignment_exp] = STATE(1471), + [sym_piped_io_exp] = STATE(1471), + [sym_string_concat] = STATE(1420), + [sym_field_ref] = STATE(705), + [sym_array_ref] = STATE(614), + [sym_regex] = STATE(1471), + [sym_regex_constant] = STATE(1471), + [sym_grouping] = STATE(1420), + [sym__primitive] = STATE(1420), + [sym_namespace] = STATE(1956), + [sym_ns_qualified_name] = STATE(597), + [sym_number] = STATE(1420), + [sym_string] = STATE(1420), + [sym_func_call] = STATE(1420), + [sym_indirect_func_call] = STATE(1471), + [sym_comment] = STATE(1252), + [aux_sym_if_statement_repeat1] = STATE(1252), + [sym_identifier] = ACTIONS(137), + [anon_sym_if] = ACTIONS(139), + [anon_sym_LPAREN] = ACTIONS(434), + [anon_sym_while] = ACTIONS(143), + [anon_sym_do] = ACTIONS(93), + [anon_sym_for] = ACTIONS(145), + [sym_break_statement] = ACTIONS(488), + [sym_continue_statement] = ACTIONS(488), + [anon_sym_delete] = ACTIONS(99), + [anon_sym_exit] = ACTIONS(149), + [anon_sym_return] = ACTIONS(151), + [anon_sym_switch] = ACTIONS(105), + [anon_sym_RBRACE] = ACTIONS(490), + [anon_sym_case] = ACTIONS(492), + [anon_sym_default] = ACTIONS(492), + [anon_sym_getline] = ACTIONS(153), + [sym_next_statement] = ACTIONS(488), + [sym_nextfile_statement] = ACTIONS(488), + [anon_sym_print] = ACTIONS(155), + [anon_sym_printf] = ACTIONS(157), + [anon_sym_SLASH] = ACTIONS(438), + [anon_sym_PLUS] = ACTIONS(161), + [anon_sym_DASH] = ACTIONS(161), + [anon_sym_BANG] = ACTIONS(440), + [anon_sym_PLUS_PLUS] = ACTIONS(442), + [anon_sym_DASH_DASH] = ACTIONS(442), + [anon_sym_DOLLAR] = ACTIONS(444), + [anon_sym_AT] = ACTIONS(446), + [aux_sym_number_token1] = ACTIONS(169), + [aux_sym_number_token2] = ACTIONS(306), + [anon_sym_DQUOTE] = ACTIONS(308), + [anon_sym_POUND] = ACTIONS(135), }, [47] = { - [sym__statement] = STATE(1218), - [sym__statement_separated] = STATE(3), - [sym__control_statement] = STATE(1218), - [sym_if_statement] = STATE(1218), - [sym_while_statement] = STATE(1218), - [sym_do_while_statement] = STATE(1218), - [sym_for_statement] = STATE(1218), - [sym_for_in_statement] = STATE(1218), - [sym_delete_statement] = STATE(1218), - [sym_exit_statement] = STATE(1218), - [sym_return_statement] = STATE(1218), - [sym_switch_statement] = STATE(1218), - [sym__io_statement] = STATE(1218), - [sym__getline_exp] = STATE(1495), - [sym_getline_input] = STATE(1495), - [sym_getline_file] = STATE(1495), - [sym_print_statement] = STATE(1696), - [sym_printf_statement] = STATE(1696), - [sym_redirected_io_statement] = STATE(1218), - [sym_piped_io_statement] = STATE(1218), - [sym_block] = STATE(1213), - [sym__exp] = STATE(1495), - [sym_ternary_exp] = STATE(1421), - [sym_binary_exp] = STATE(1421), - [sym__binary_in] = STATE(1373), - [sym_unary_exp] = STATE(1421), - [sym_update_exp] = STATE(1495), - [sym_assignment_exp] = STATE(1495), - [sym_piped_io_exp] = STATE(1495), - [sym_string_concat] = STATE(1421), - [sym_field_ref] = STATE(703), - [sym_array_ref] = STATE(610), - [sym_regex] = STATE(1495), - [sym_regex_constant] = STATE(1495), - [sym_grouping] = STATE(1421), - [sym__primitive] = STATE(1421), - [sym_namespace] = STATE(1955), - [sym_ns_qualified_name] = STATE(607), - [sym_number] = STATE(1421), - [sym_string] = STATE(1421), - [sym_func_call] = STATE(1421), - [sym_indirect_func_call] = STATE(1495), - [sym_comment] = STATE(14), - [aux_sym_if_statement_repeat1] = STATE(14), - [sym_identifier] = ACTIONS(85), - [anon_sym_SEMI] = ACTIONS(520), - [anon_sym_if] = ACTIONS(87), - [anon_sym_LPAREN] = ACTIONS(272), - [anon_sym_while] = ACTIONS(91), + [sym__statement] = STATE(1221), + [sym__statement_separated] = STATE(4), + [sym__control_statement] = STATE(1221), + [sym_if_statement] = STATE(1221), + [sym_while_statement] = STATE(1221), + [sym_do_while_statement] = STATE(1221), + [sym_for_statement] = STATE(1221), + [sym_for_in_statement] = STATE(1221), + [sym_delete_statement] = STATE(1221), + [sym_exit_statement] = STATE(1221), + [sym_return_statement] = STATE(1221), + [sym_switch_statement] = STATE(1221), + [sym__io_statement] = STATE(1221), + [sym__getline_exp] = STATE(1471), + [sym_getline_input] = STATE(1471), + [sym_getline_file] = STATE(1471), + [sym_print_statement] = STATE(1697), + [sym_printf_statement] = STATE(1697), + [sym_redirected_io_statement] = STATE(1221), + [sym_piped_io_statement] = STATE(1221), + [sym_block] = STATE(1225), + [sym__exp] = STATE(1471), + [sym_ternary_exp] = STATE(1420), + [sym_binary_exp] = STATE(1420), + [sym__binary_in] = STATE(1385), + [sym_unary_exp] = STATE(1420), + [sym_update_exp] = STATE(1471), + [sym_assignment_exp] = STATE(1471), + [sym_piped_io_exp] = STATE(1471), + [sym_string_concat] = STATE(1420), + [sym_field_ref] = STATE(705), + [sym_array_ref] = STATE(614), + [sym_regex] = STATE(1471), + [sym_regex_constant] = STATE(1471), + [sym_grouping] = STATE(1420), + [sym__primitive] = STATE(1420), + [sym_namespace] = STATE(1956), + [sym_ns_qualified_name] = STATE(597), + [sym_number] = STATE(1420), + [sym_string] = STATE(1420), + [sym_func_call] = STATE(1420), + [sym_indirect_func_call] = STATE(1471), + [sym_comment] = STATE(39), + [aux_sym_if_statement_repeat1] = STATE(39), + [sym_identifier] = ACTIONS(137), + [anon_sym_SEMI] = ACTIONS(494), + [anon_sym_if] = ACTIONS(139), + [anon_sym_LPAREN] = ACTIONS(434), + [anon_sym_while] = ACTIONS(143), [anon_sym_do] = ACTIONS(93), - [anon_sym_for] = ACTIONS(95), - [sym_break_statement] = ACTIONS(522), - [sym_continue_statement] = ACTIONS(522), + [anon_sym_for] = ACTIONS(145), + [sym_break_statement] = ACTIONS(496), + [sym_continue_statement] = ACTIONS(496), [anon_sym_delete] = ACTIONS(99), - [anon_sym_exit] = ACTIONS(101), - [anon_sym_return] = ACTIONS(103), + [anon_sym_exit] = ACTIONS(149), + [anon_sym_return] = ACTIONS(151), [anon_sym_switch] = ACTIONS(105), [anon_sym_LBRACE] = ACTIONS(268), - [anon_sym_getline] = ACTIONS(107), - [sym_next_statement] = ACTIONS(522), - [sym_nextfile_statement] = ACTIONS(522), - [anon_sym_print] = ACTIONS(109), - [anon_sym_printf] = ACTIONS(111), - [anon_sym_SLASH] = ACTIONS(276), - [anon_sym_PLUS] = ACTIONS(115), - [anon_sym_DASH] = ACTIONS(115), - [anon_sym_BANG] = ACTIONS(278), - [anon_sym_PLUS_PLUS] = ACTIONS(280), - [anon_sym_DASH_DASH] = ACTIONS(280), - [anon_sym_DOLLAR] = ACTIONS(282), - [anon_sym_AT] = ACTIONS(284), - [aux_sym_number_token1] = ACTIONS(123), - [aux_sym_number_token2] = ACTIONS(286), - [anon_sym_DQUOTE] = ACTIONS(288), - [anon_sym_POUND] = ACTIONS(171), + [anon_sym_getline] = ACTIONS(153), + [sym_next_statement] = ACTIONS(496), + [sym_nextfile_statement] = ACTIONS(496), + [anon_sym_print] = ACTIONS(155), + [anon_sym_printf] = ACTIONS(157), + [anon_sym_SLASH] = ACTIONS(438), + [anon_sym_PLUS] = ACTIONS(161), + [anon_sym_DASH] = ACTIONS(161), + [anon_sym_BANG] = ACTIONS(440), + [anon_sym_PLUS_PLUS] = ACTIONS(442), + [anon_sym_DASH_DASH] = ACTIONS(442), + [anon_sym_DOLLAR] = ACTIONS(444), + [anon_sym_AT] = ACTIONS(446), + [aux_sym_number_token1] = ACTIONS(169), + [aux_sym_number_token2] = ACTIONS(306), + [anon_sym_DQUOTE] = ACTIONS(308), + [anon_sym_POUND] = ACTIONS(135), }, [48] = { - [sym__statement] = STATE(1264), - [sym__statement_separated] = STATE(1264), - [sym__control_statement] = STATE(1264), - [sym_if_statement] = STATE(1264), - [sym_while_statement] = STATE(1264), - [sym_do_while_statement] = STATE(1264), - [sym_for_statement] = STATE(1264), - [sym_for_in_statement] = STATE(1264), - [sym_delete_statement] = STATE(1264), - [sym_exit_statement] = STATE(1264), - [sym_return_statement] = STATE(1264), - [sym_switch_statement] = STATE(1264), - [sym__io_statement] = STATE(1264), + [sym__statement] = STATE(1232), + [sym__statement_separated] = STATE(4), + [sym__control_statement] = STATE(1232), + [sym_if_statement] = STATE(1232), + [sym_while_statement] = STATE(1232), + [sym_do_while_statement] = STATE(1232), + [sym_for_statement] = STATE(1232), + [sym_for_in_statement] = STATE(1232), + [sym_delete_statement] = STATE(1232), + [sym_exit_statement] = STATE(1232), + [sym_return_statement] = STATE(1232), + [sym_switch_statement] = STATE(1232), + [sym__io_statement] = STATE(1232), + [sym__getline_exp] = STATE(1471), + [sym_getline_input] = STATE(1471), + [sym_getline_file] = STATE(1471), + [sym_print_statement] = STATE(1697), + [sym_printf_statement] = STATE(1697), + [sym_redirected_io_statement] = STATE(1232), + [sym_piped_io_statement] = STATE(1232), + [sym_block] = STATE(1229), + [sym__exp] = STATE(1471), + [sym_ternary_exp] = STATE(1420), + [sym_binary_exp] = STATE(1420), + [sym__binary_in] = STATE(1385), + [sym_unary_exp] = STATE(1420), + [sym_update_exp] = STATE(1471), + [sym_assignment_exp] = STATE(1471), + [sym_piped_io_exp] = STATE(1471), + [sym_string_concat] = STATE(1420), + [sym_field_ref] = STATE(705), + [sym_array_ref] = STATE(614), + [sym_regex] = STATE(1471), + [sym_regex_constant] = STATE(1471), + [sym_grouping] = STATE(1420), + [sym__primitive] = STATE(1420), + [sym_namespace] = STATE(1956), + [sym_ns_qualified_name] = STATE(597), + [sym_number] = STATE(1420), + [sym_string] = STATE(1420), + [sym_func_call] = STATE(1420), + [sym_indirect_func_call] = STATE(1471), + [sym_comment] = STATE(1252), + [aux_sym_if_statement_repeat1] = STATE(1252), + [sym_identifier] = ACTIONS(137), + [anon_sym_SEMI] = ACTIONS(498), + [anon_sym_if] = ACTIONS(139), + [anon_sym_LPAREN] = ACTIONS(434), + [anon_sym_while] = ACTIONS(143), + [anon_sym_do] = ACTIONS(93), + [anon_sym_for] = ACTIONS(145), + [sym_break_statement] = ACTIONS(500), + [sym_continue_statement] = ACTIONS(500), + [anon_sym_delete] = ACTIONS(99), + [anon_sym_exit] = ACTIONS(149), + [anon_sym_return] = ACTIONS(151), + [anon_sym_switch] = ACTIONS(105), + [anon_sym_LBRACE] = ACTIONS(268), + [anon_sym_getline] = ACTIONS(153), + [sym_next_statement] = ACTIONS(500), + [sym_nextfile_statement] = ACTIONS(500), + [anon_sym_print] = ACTIONS(155), + [anon_sym_printf] = ACTIONS(157), + [anon_sym_SLASH] = ACTIONS(438), + [anon_sym_PLUS] = ACTIONS(161), + [anon_sym_DASH] = ACTIONS(161), + [anon_sym_BANG] = ACTIONS(440), + [anon_sym_PLUS_PLUS] = ACTIONS(442), + [anon_sym_DASH_DASH] = ACTIONS(442), + [anon_sym_DOLLAR] = ACTIONS(444), + [anon_sym_AT] = ACTIONS(446), + [aux_sym_number_token1] = ACTIONS(169), + [aux_sym_number_token2] = ACTIONS(306), + [anon_sym_DQUOTE] = ACTIONS(308), + [anon_sym_POUND] = ACTIONS(135), + }, + [49] = { + [sym__statement] = STATE(1253), + [sym__statement_separated] = STATE(1253), + [sym__control_statement] = STATE(1253), + [sym_if_statement] = STATE(1253), + [sym_while_statement] = STATE(1253), + [sym_do_while_statement] = STATE(1253), + [sym_for_statement] = STATE(1253), + [sym_for_in_statement] = STATE(1253), + [sym_delete_statement] = STATE(1253), + [sym_exit_statement] = STATE(1253), + [sym_return_statement] = STATE(1253), + [sym_switch_statement] = STATE(1253), + [sym__io_statement] = STATE(1253), [sym__getline_exp] = STATE(503), [sym_getline_input] = STATE(503), [sym_getline_file] = STATE(503), - [sym_print_statement] = STATE(890), - [sym_printf_statement] = STATE(890), - [sym_redirected_io_statement] = STATE(1264), - [sym_piped_io_statement] = STATE(1264), - [sym_block] = STATE(1260), + [sym_print_statement] = STATE(869), + [sym_printf_statement] = STATE(869), + [sym_redirected_io_statement] = STATE(1253), + [sym_piped_io_statement] = STATE(1253), + [sym_block] = STATE(1247), [sym__exp] = STATE(503), - [sym_ternary_exp] = STATE(447), - [sym_binary_exp] = STATE(447), - [sym__binary_in] = STATE(446), - [sym_unary_exp] = STATE(447), + [sym_ternary_exp] = STATE(427), + [sym_binary_exp] = STATE(427), + [sym__binary_in] = STATE(426), + [sym_unary_exp] = STATE(427), [sym_update_exp] = STATE(503), [sym_assignment_exp] = STATE(503), [sym_piped_io_exp] = STATE(503), - [sym_string_concat] = STATE(447), - [sym_field_ref] = STATE(272), - [sym_array_ref] = STATE(253), + [sym_string_concat] = STATE(427), + [sym_field_ref] = STATE(274), + [sym_array_ref] = STATE(268), [sym_regex] = STATE(503), [sym_regex_constant] = STATE(503), - [sym_grouping] = STATE(447), - [sym__primitive] = STATE(447), - [sym_namespace] = STATE(1955), - [sym_ns_qualified_name] = STATE(221), - [sym_number] = STATE(447), - [sym_string] = STATE(447), - [sym_func_call] = STATE(447), + [sym_grouping] = STATE(427), + [sym__primitive] = STATE(427), + [sym_namespace] = STATE(1956), + [sym_ns_qualified_name] = STATE(244), + [sym_number] = STATE(427), + [sym_string] = STATE(427), + [sym_func_call] = STATE(427), [sym_indirect_func_call] = STATE(503), - [sym_comment] = STATE(1238), - [aux_sym_if_statement_repeat1] = STATE(1238), - [sym_identifier] = ACTIONS(127), - [anon_sym_SEMI] = ACTIONS(438), - [anon_sym_if] = ACTIONS(129), - [anon_sym_LPAREN] = ACTIONS(131), - [anon_sym_while] = ACTIONS(133), - [anon_sym_do] = ACTIONS(93), - [anon_sym_for] = ACTIONS(135), - [sym_break_statement] = ACTIONS(440), - [sym_continue_statement] = ACTIONS(440), - [anon_sym_delete] = ACTIONS(99), - [anon_sym_exit] = ACTIONS(139), - [anon_sym_return] = ACTIONS(141), - [anon_sym_switch] = ACTIONS(105), - [anon_sym_LBRACE] = ACTIONS(268), - [anon_sym_getline] = ACTIONS(147), - [sym_next_statement] = ACTIONS(440), - [sym_nextfile_statement] = ACTIONS(440), - [anon_sym_print] = ACTIONS(149), - [anon_sym_printf] = ACTIONS(151), - [anon_sym_SLASH] = ACTIONS(153), - [anon_sym_PLUS] = ACTIONS(155), - [anon_sym_DASH] = ACTIONS(155), - [anon_sym_BANG] = ACTIONS(157), - [anon_sym_PLUS_PLUS] = ACTIONS(159), - [anon_sym_DASH_DASH] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(161), - [anon_sym_AT] = ACTIONS(163), - [aux_sym_number_token1] = ACTIONS(165), - [aux_sym_number_token2] = ACTIONS(167), - [anon_sym_DQUOTE] = ACTIONS(169), - [anon_sym_POUND] = ACTIONS(171), - }, - [49] = { - [sym__statement] = STATE(1212), - [sym__statement_separated] = STATE(3), - [sym__control_statement] = STATE(1212), - [sym_if_statement] = STATE(1212), - [sym_while_statement] = STATE(1212), - [sym_do_while_statement] = STATE(1212), - [sym_for_statement] = STATE(1212), - [sym_for_in_statement] = STATE(1212), - [sym_delete_statement] = STATE(1212), - [sym_exit_statement] = STATE(1212), - [sym_return_statement] = STATE(1212), - [sym_switch_statement] = STATE(1212), - [sym__io_statement] = STATE(1212), - [sym__getline_exp] = STATE(1495), - [sym_getline_input] = STATE(1495), - [sym_getline_file] = STATE(1495), - [sym_print_statement] = STATE(1696), - [sym_printf_statement] = STATE(1696), - [sym_redirected_io_statement] = STATE(1212), - [sym_piped_io_statement] = STATE(1212), - [sym_block] = STATE(1247), - [sym__exp] = STATE(1495), - [sym_ternary_exp] = STATE(1421), - [sym_binary_exp] = STATE(1421), - [sym__binary_in] = STATE(1373), - [sym_unary_exp] = STATE(1421), - [sym_update_exp] = STATE(1495), - [sym_assignment_exp] = STATE(1495), - [sym_piped_io_exp] = STATE(1495), - [sym_string_concat] = STATE(1421), - [sym_field_ref] = STATE(703), - [sym_array_ref] = STATE(610), - [sym_regex] = STATE(1495), - [sym_regex_constant] = STATE(1495), - [sym_grouping] = STATE(1421), - [sym__primitive] = STATE(1421), - [sym_namespace] = STATE(1955), - [sym_ns_qualified_name] = STATE(607), - [sym_number] = STATE(1421), - [sym_string] = STATE(1421), - [sym_func_call] = STATE(1421), - [sym_indirect_func_call] = STATE(1495), - [sym_comment] = STATE(30), - [aux_sym_if_statement_repeat1] = STATE(30), + [sym_comment] = STATE(1252), + [aux_sym_if_statement_repeat1] = STATE(1252), [sym_identifier] = ACTIONS(85), - [anon_sym_SEMI] = ACTIONS(524), + [anon_sym_SEMI] = ACTIONS(432), [anon_sym_if] = ACTIONS(87), - [anon_sym_LPAREN] = ACTIONS(272), + [anon_sym_LPAREN] = ACTIONS(89), [anon_sym_while] = ACTIONS(91), [anon_sym_do] = ACTIONS(93), [anon_sym_for] = ACTIONS(95), - [sym_break_statement] = ACTIONS(526), - [sym_continue_statement] = ACTIONS(526), + [sym_break_statement] = ACTIONS(436), + [sym_continue_statement] = ACTIONS(436), [anon_sym_delete] = ACTIONS(99), [anon_sym_exit] = ACTIONS(101), [anon_sym_return] = ACTIONS(103), [anon_sym_switch] = ACTIONS(105), [anon_sym_LBRACE] = ACTIONS(268), - [anon_sym_getline] = ACTIONS(107), - [sym_next_statement] = ACTIONS(526), - [sym_nextfile_statement] = ACTIONS(526), - [anon_sym_print] = ACTIONS(109), - [anon_sym_printf] = ACTIONS(111), - [anon_sym_SLASH] = ACTIONS(276), - [anon_sym_PLUS] = ACTIONS(115), - [anon_sym_DASH] = ACTIONS(115), - [anon_sym_BANG] = ACTIONS(278), - [anon_sym_PLUS_PLUS] = ACTIONS(280), - [anon_sym_DASH_DASH] = ACTIONS(280), - [anon_sym_DOLLAR] = ACTIONS(282), - [anon_sym_AT] = ACTIONS(284), - [aux_sym_number_token1] = ACTIONS(123), - [aux_sym_number_token2] = ACTIONS(286), - [anon_sym_DQUOTE] = ACTIONS(288), - [anon_sym_POUND] = ACTIONS(171), + [anon_sym_getline] = ACTIONS(111), + [sym_next_statement] = ACTIONS(436), + [sym_nextfile_statement] = ACTIONS(436), + [anon_sym_print] = ACTIONS(113), + [anon_sym_printf] = ACTIONS(115), + [anon_sym_SLASH] = ACTIONS(117), + [anon_sym_PLUS] = ACTIONS(119), + [anon_sym_DASH] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(121), + [anon_sym_PLUS_PLUS] = ACTIONS(123), + [anon_sym_DASH_DASH] = ACTIONS(123), + [anon_sym_DOLLAR] = ACTIONS(125), + [anon_sym_AT] = ACTIONS(127), + [aux_sym_number_token1] = ACTIONS(129), + [aux_sym_number_token2] = ACTIONS(131), + [anon_sym_DQUOTE] = ACTIONS(133), + [anon_sym_POUND] = ACTIONS(135), }, [50] = { - [sym__statement] = STATE(1259), - [sym__statement_separated] = STATE(1259), - [sym__control_statement] = STATE(1259), - [sym_if_statement] = STATE(1259), - [sym_while_statement] = STATE(1259), - [sym_do_while_statement] = STATE(1259), - [sym_for_statement] = STATE(1259), - [sym_for_in_statement] = STATE(1259), - [sym_delete_statement] = STATE(1259), - [sym_exit_statement] = STATE(1259), - [sym_return_statement] = STATE(1259), - [sym_switch_statement] = STATE(1259), - [sym__io_statement] = STATE(1259), - [sym__getline_exp] = STATE(503), - [sym_getline_input] = STATE(503), - [sym_getline_file] = STATE(503), - [sym_print_statement] = STATE(890), - [sym_printf_statement] = STATE(890), - [sym_redirected_io_statement] = STATE(1259), - [sym_piped_io_statement] = STATE(1259), - [sym_block] = STATE(1250), - [sym__exp] = STATE(503), - [sym_ternary_exp] = STATE(447), - [sym_binary_exp] = STATE(447), - [sym__binary_in] = STATE(446), - [sym_unary_exp] = STATE(447), - [sym_update_exp] = STATE(503), - [sym_assignment_exp] = STATE(503), - [sym_piped_io_exp] = STATE(503), - [sym_string_concat] = STATE(447), - [sym_field_ref] = STATE(272), - [sym_array_ref] = STATE(253), - [sym_regex] = STATE(503), - [sym_regex_constant] = STATE(503), - [sym_grouping] = STATE(447), - [sym__primitive] = STATE(447), - [sym_namespace] = STATE(1955), - [sym_ns_qualified_name] = STATE(221), - [sym_number] = STATE(447), - [sym_string] = STATE(447), - [sym_func_call] = STATE(447), - [sym_indirect_func_call] = STATE(503), - [sym_comment] = STATE(1238), - [aux_sym_if_statement_repeat1] = STATE(1238), - [sym_identifier] = ACTIONS(127), - [anon_sym_SEMI] = ACTIONS(528), - [anon_sym_if] = ACTIONS(129), - [anon_sym_LPAREN] = ACTIONS(131), - [anon_sym_while] = ACTIONS(133), + [sym__statement] = STATE(1256), + [sym__statement_separated] = STATE(4), + [sym__control_statement] = STATE(1256), + [sym_if_statement] = STATE(1256), + [sym_while_statement] = STATE(1256), + [sym_do_while_statement] = STATE(1256), + [sym_for_statement] = STATE(1256), + [sym_for_in_statement] = STATE(1256), + [sym_delete_statement] = STATE(1256), + [sym_exit_statement] = STATE(1256), + [sym_return_statement] = STATE(1256), + [sym_switch_statement] = STATE(1256), + [sym__io_statement] = STATE(1256), + [sym__getline_exp] = STATE(1471), + [sym_getline_input] = STATE(1471), + [sym_getline_file] = STATE(1471), + [sym_print_statement] = STATE(1697), + [sym_printf_statement] = STATE(1697), + [sym_redirected_io_statement] = STATE(1256), + [sym_piped_io_statement] = STATE(1256), + [sym_block] = STATE(1263), + [sym__exp] = STATE(1471), + [sym_ternary_exp] = STATE(1420), + [sym_binary_exp] = STATE(1420), + [sym__binary_in] = STATE(1385), + [sym_unary_exp] = STATE(1420), + [sym_update_exp] = STATE(1471), + [sym_assignment_exp] = STATE(1471), + [sym_piped_io_exp] = STATE(1471), + [sym_string_concat] = STATE(1420), + [sym_field_ref] = STATE(705), + [sym_array_ref] = STATE(614), + [sym_regex] = STATE(1471), + [sym_regex_constant] = STATE(1471), + [sym_grouping] = STATE(1420), + [sym__primitive] = STATE(1420), + [sym_namespace] = STATE(1956), + [sym_ns_qualified_name] = STATE(597), + [sym_number] = STATE(1420), + [sym_string] = STATE(1420), + [sym_func_call] = STATE(1420), + [sym_indirect_func_call] = STATE(1471), + [sym_comment] = STATE(1252), + [aux_sym_if_statement_repeat1] = STATE(1252), + [sym_identifier] = ACTIONS(137), + [anon_sym_SEMI] = ACTIONS(502), + [anon_sym_if] = ACTIONS(139), + [anon_sym_LPAREN] = ACTIONS(434), + [anon_sym_while] = ACTIONS(143), [anon_sym_do] = ACTIONS(93), - [anon_sym_for] = ACTIONS(135), - [sym_break_statement] = ACTIONS(530), - [sym_continue_statement] = ACTIONS(530), + [anon_sym_for] = ACTIONS(145), + [sym_break_statement] = ACTIONS(504), + [sym_continue_statement] = ACTIONS(504), [anon_sym_delete] = ACTIONS(99), - [anon_sym_exit] = ACTIONS(139), - [anon_sym_return] = ACTIONS(141), + [anon_sym_exit] = ACTIONS(149), + [anon_sym_return] = ACTIONS(151), [anon_sym_switch] = ACTIONS(105), [anon_sym_LBRACE] = ACTIONS(268), - [anon_sym_getline] = ACTIONS(147), - [sym_next_statement] = ACTIONS(530), - [sym_nextfile_statement] = ACTIONS(530), - [anon_sym_print] = ACTIONS(149), - [anon_sym_printf] = ACTIONS(151), - [anon_sym_SLASH] = ACTIONS(153), - [anon_sym_PLUS] = ACTIONS(155), - [anon_sym_DASH] = ACTIONS(155), - [anon_sym_BANG] = ACTIONS(157), - [anon_sym_PLUS_PLUS] = ACTIONS(159), - [anon_sym_DASH_DASH] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(161), - [anon_sym_AT] = ACTIONS(163), - [aux_sym_number_token1] = ACTIONS(165), - [aux_sym_number_token2] = ACTIONS(167), - [anon_sym_DQUOTE] = ACTIONS(169), - [anon_sym_POUND] = ACTIONS(171), + [anon_sym_getline] = ACTIONS(153), + [sym_next_statement] = ACTIONS(504), + [sym_nextfile_statement] = ACTIONS(504), + [anon_sym_print] = ACTIONS(155), + [anon_sym_printf] = ACTIONS(157), + [anon_sym_SLASH] = ACTIONS(438), + [anon_sym_PLUS] = ACTIONS(161), + [anon_sym_DASH] = ACTIONS(161), + [anon_sym_BANG] = ACTIONS(440), + [anon_sym_PLUS_PLUS] = ACTIONS(442), + [anon_sym_DASH_DASH] = ACTIONS(442), + [anon_sym_DOLLAR] = ACTIONS(444), + [anon_sym_AT] = ACTIONS(446), + [aux_sym_number_token1] = ACTIONS(169), + [aux_sym_number_token2] = ACTIONS(306), + [anon_sym_DQUOTE] = ACTIONS(308), + [anon_sym_POUND] = ACTIONS(135), }, [51] = { - [sym__statement] = STATE(1214), - [sym__statement_separated] = STATE(146), - [sym__control_statement] = STATE(1214), - [sym_if_statement] = STATE(1214), - [sym_while_statement] = STATE(1214), - [sym_do_while_statement] = STATE(1214), - [sym_for_statement] = STATE(1214), - [sym_for_in_statement] = STATE(1214), - [sym_delete_statement] = STATE(1214), - [sym_exit_statement] = STATE(1214), - [sym_return_statement] = STATE(1214), - [sym_switch_statement] = STATE(1214), - [sym__io_statement] = STATE(1214), - [sym__getline_exp] = STATE(1568), - [sym_getline_input] = STATE(1568), - [sym_getline_file] = STATE(1568), - [sym_print_statement] = STATE(1699), - [sym_printf_statement] = STATE(1699), - [sym_redirected_io_statement] = STATE(1214), - [sym_piped_io_statement] = STATE(1214), - [sym_block] = STATE(1215), - [sym__exp] = STATE(1568), - [sym_ternary_exp] = STATE(1470), - [sym_binary_exp] = STATE(1470), - [sym__binary_in] = STATE(1373), - [sym_unary_exp] = STATE(1470), - [sym_update_exp] = STATE(1568), - [sym_assignment_exp] = STATE(1568), - [sym_piped_io_exp] = STATE(1568), - [sym_string_concat] = STATE(1470), - [sym_field_ref] = STATE(1121), - [sym_array_ref] = STATE(1022), - [sym_regex] = STATE(1568), - [sym_regex_constant] = STATE(1568), - [sym_grouping] = STATE(1470), - [sym__primitive] = STATE(1470), - [sym_namespace] = STATE(1955), - [sym_ns_qualified_name] = STATE(744), - [sym_number] = STATE(1470), - [sym_string] = STATE(1470), - [sym_func_call] = STATE(1470), - [sym_indirect_func_call] = STATE(1568), - [sym_comment] = STATE(52), - [aux_sym_if_statement_repeat1] = STATE(52), - [sym_identifier] = ACTIONS(362), - [anon_sym_SEMI] = ACTIONS(532), - [anon_sym_if] = ACTIONS(364), - [anon_sym_LPAREN] = ACTIONS(366), - [anon_sym_while] = ACTIONS(368), - [anon_sym_do] = ACTIONS(93), - [anon_sym_for] = ACTIONS(370), - [sym_break_statement] = ACTIONS(534), - [sym_continue_statement] = ACTIONS(534), - [anon_sym_delete] = ACTIONS(99), - [anon_sym_exit] = ACTIONS(372), - [anon_sym_return] = ACTIONS(374), - [anon_sym_switch] = ACTIONS(105), - [anon_sym_LBRACE] = ACTIONS(268), - [anon_sym_getline] = ACTIONS(376), - [sym_next_statement] = ACTIONS(534), - [sym_nextfile_statement] = ACTIONS(534), - [anon_sym_print] = ACTIONS(378), - [anon_sym_printf] = ACTIONS(380), - [anon_sym_SLASH] = ACTIONS(382), - [anon_sym_PLUS] = ACTIONS(384), - [anon_sym_DASH] = ACTIONS(384), - [anon_sym_BANG] = ACTIONS(386), - [anon_sym_PLUS_PLUS] = ACTIONS(388), - [anon_sym_DASH_DASH] = ACTIONS(388), - [anon_sym_DOLLAR] = ACTIONS(390), - [anon_sym_AT] = ACTIONS(392), - [aux_sym_number_token1] = ACTIONS(123), - [aux_sym_number_token2] = ACTIONS(286), - [anon_sym_DQUOTE] = ACTIONS(288), - [anon_sym_POUND] = ACTIONS(171), - }, - [52] = { - [sym__statement] = STATE(1208), - [sym__statement_separated] = STATE(146), - [sym__control_statement] = STATE(1208), - [sym_if_statement] = STATE(1208), - [sym_while_statement] = STATE(1208), - [sym_do_while_statement] = STATE(1208), - [sym_for_statement] = STATE(1208), - [sym_for_in_statement] = STATE(1208), - [sym_delete_statement] = STATE(1208), - [sym_exit_statement] = STATE(1208), - [sym_return_statement] = STATE(1208), - [sym_switch_statement] = STATE(1208), - [sym__io_statement] = STATE(1208), - [sym__getline_exp] = STATE(1568), - [sym_getline_input] = STATE(1568), - [sym_getline_file] = STATE(1568), - [sym_print_statement] = STATE(1699), - [sym_printf_statement] = STATE(1699), - [sym_redirected_io_statement] = STATE(1208), - [sym_piped_io_statement] = STATE(1208), - [sym_block] = STATE(1209), - [sym__exp] = STATE(1568), - [sym_ternary_exp] = STATE(1470), - [sym_binary_exp] = STATE(1470), - [sym__binary_in] = STATE(1373), - [sym_unary_exp] = STATE(1470), - [sym_update_exp] = STATE(1568), - [sym_assignment_exp] = STATE(1568), - [sym_piped_io_exp] = STATE(1568), - [sym_string_concat] = STATE(1470), - [sym_field_ref] = STATE(1121), - [sym_array_ref] = STATE(1022), - [sym_regex] = STATE(1568), - [sym_regex_constant] = STATE(1568), - [sym_grouping] = STATE(1470), - [sym__primitive] = STATE(1470), - [sym_namespace] = STATE(1955), - [sym_ns_qualified_name] = STATE(744), - [sym_number] = STATE(1470), - [sym_string] = STATE(1470), - [sym_func_call] = STATE(1470), - [sym_indirect_func_call] = STATE(1568), - [sym_comment] = STATE(1238), - [aux_sym_if_statement_repeat1] = STATE(1238), - [sym_identifier] = ACTIONS(362), - [anon_sym_SEMI] = ACTIONS(536), - [anon_sym_if] = ACTIONS(364), - [anon_sym_LPAREN] = ACTIONS(366), - [anon_sym_while] = ACTIONS(368), - [anon_sym_do] = ACTIONS(93), - [anon_sym_for] = ACTIONS(370), - [sym_break_statement] = ACTIONS(538), - [sym_continue_statement] = ACTIONS(538), - [anon_sym_delete] = ACTIONS(99), - [anon_sym_exit] = ACTIONS(372), - [anon_sym_return] = ACTIONS(374), - [anon_sym_switch] = ACTIONS(105), - [anon_sym_LBRACE] = ACTIONS(268), - [anon_sym_getline] = ACTIONS(376), - [sym_next_statement] = ACTIONS(538), - [sym_nextfile_statement] = ACTIONS(538), - [anon_sym_print] = ACTIONS(378), - [anon_sym_printf] = ACTIONS(380), - [anon_sym_SLASH] = ACTIONS(382), - [anon_sym_PLUS] = ACTIONS(384), - [anon_sym_DASH] = ACTIONS(384), - [anon_sym_BANG] = ACTIONS(386), - [anon_sym_PLUS_PLUS] = ACTIONS(388), - [anon_sym_DASH_DASH] = ACTIONS(388), - [anon_sym_DOLLAR] = ACTIONS(390), - [anon_sym_AT] = ACTIONS(392), - [aux_sym_number_token1] = ACTIONS(123), - [aux_sym_number_token2] = ACTIONS(286), - [anon_sym_DQUOTE] = ACTIONS(288), - [anon_sym_POUND] = ACTIONS(171), - }, - [53] = { - [sym__statement] = STATE(1248), - [sym__statement_separated] = STATE(1248), - [sym__control_statement] = STATE(1248), - [sym_if_statement] = STATE(1248), - [sym_while_statement] = STATE(1248), - [sym_do_while_statement] = STATE(1248), - [sym_for_statement] = STATE(1248), - [sym_for_in_statement] = STATE(1248), - [sym_delete_statement] = STATE(1248), - [sym_exit_statement] = STATE(1248), - [sym_return_statement] = STATE(1248), - [sym_switch_statement] = STATE(1248), - [sym__io_statement] = STATE(1248), + [sym__statement] = STATE(1255), + [sym__statement_separated] = STATE(1255), + [sym__control_statement] = STATE(1255), + [sym_if_statement] = STATE(1255), + [sym_while_statement] = STATE(1255), + [sym_do_while_statement] = STATE(1255), + [sym_for_statement] = STATE(1255), + [sym_for_in_statement] = STATE(1255), + [sym_delete_statement] = STATE(1255), + [sym_exit_statement] = STATE(1255), + [sym_return_statement] = STATE(1255), + [sym_switch_statement] = STATE(1255), + [sym__io_statement] = STATE(1255), [sym__getline_exp] = STATE(503), [sym_getline_input] = STATE(503), [sym_getline_file] = STATE(503), - [sym_print_statement] = STATE(890), - [sym_printf_statement] = STATE(890), - [sym_redirected_io_statement] = STATE(1248), - [sym_piped_io_statement] = STATE(1248), - [sym_block] = STATE(1245), + [sym_print_statement] = STATE(869), + [sym_printf_statement] = STATE(869), + [sym_redirected_io_statement] = STATE(1255), + [sym_piped_io_statement] = STATE(1255), + [sym_block] = STATE(1259), [sym__exp] = STATE(503), - [sym_ternary_exp] = STATE(447), - [sym_binary_exp] = STATE(447), - [sym__binary_in] = STATE(446), - [sym_unary_exp] = STATE(447), + [sym_ternary_exp] = STATE(427), + [sym_binary_exp] = STATE(427), + [sym__binary_in] = STATE(426), + [sym_unary_exp] = STATE(427), [sym_update_exp] = STATE(503), [sym_assignment_exp] = STATE(503), [sym_piped_io_exp] = STATE(503), - [sym_string_concat] = STATE(447), - [sym_field_ref] = STATE(272), - [sym_array_ref] = STATE(253), + [sym_string_concat] = STATE(427), + [sym_field_ref] = STATE(274), + [sym_array_ref] = STATE(268), [sym_regex] = STATE(503), [sym_regex_constant] = STATE(503), - [sym_grouping] = STATE(447), - [sym__primitive] = STATE(447), - [sym_namespace] = STATE(1955), - [sym_ns_qualified_name] = STATE(221), - [sym_number] = STATE(447), - [sym_string] = STATE(447), - [sym_func_call] = STATE(447), + [sym_grouping] = STATE(427), + [sym__primitive] = STATE(427), + [sym_namespace] = STATE(1956), + [sym_ns_qualified_name] = STATE(244), + [sym_number] = STATE(427), + [sym_string] = STATE(427), + [sym_func_call] = STATE(427), [sym_indirect_func_call] = STATE(503), - [sym_comment] = STATE(1238), - [aux_sym_if_statement_repeat1] = STATE(1238), - [sym_identifier] = ACTIONS(127), - [anon_sym_SEMI] = ACTIONS(540), - [anon_sym_if] = ACTIONS(129), - [anon_sym_LPAREN] = ACTIONS(131), - [anon_sym_while] = ACTIONS(133), + [sym_comment] = STATE(1252), + [aux_sym_if_statement_repeat1] = STATE(1252), + [sym_identifier] = ACTIONS(85), + [anon_sym_SEMI] = ACTIONS(506), + [anon_sym_if] = ACTIONS(87), + [anon_sym_LPAREN] = ACTIONS(89), + [anon_sym_while] = ACTIONS(91), [anon_sym_do] = ACTIONS(93), - [anon_sym_for] = ACTIONS(135), - [sym_break_statement] = ACTIONS(542), - [sym_continue_statement] = ACTIONS(542), + [anon_sym_for] = ACTIONS(95), + [sym_break_statement] = ACTIONS(508), + [sym_continue_statement] = ACTIONS(508), [anon_sym_delete] = ACTIONS(99), - [anon_sym_exit] = ACTIONS(139), - [anon_sym_return] = ACTIONS(141), + [anon_sym_exit] = ACTIONS(101), + [anon_sym_return] = ACTIONS(103), [anon_sym_switch] = ACTIONS(105), [anon_sym_LBRACE] = ACTIONS(268), - [anon_sym_getline] = ACTIONS(147), - [sym_next_statement] = ACTIONS(542), - [sym_nextfile_statement] = ACTIONS(542), - [anon_sym_print] = ACTIONS(149), - [anon_sym_printf] = ACTIONS(151), - [anon_sym_SLASH] = ACTIONS(153), - [anon_sym_PLUS] = ACTIONS(155), - [anon_sym_DASH] = ACTIONS(155), - [anon_sym_BANG] = ACTIONS(157), - [anon_sym_PLUS_PLUS] = ACTIONS(159), - [anon_sym_DASH_DASH] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(161), - [anon_sym_AT] = ACTIONS(163), - [aux_sym_number_token1] = ACTIONS(165), - [aux_sym_number_token2] = ACTIONS(167), - [anon_sym_DQUOTE] = ACTIONS(169), - [anon_sym_POUND] = ACTIONS(171), + [anon_sym_getline] = ACTIONS(111), + [sym_next_statement] = ACTIONS(508), + [sym_nextfile_statement] = ACTIONS(508), + [anon_sym_print] = ACTIONS(113), + [anon_sym_printf] = ACTIONS(115), + [anon_sym_SLASH] = ACTIONS(117), + [anon_sym_PLUS] = ACTIONS(119), + [anon_sym_DASH] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(121), + [anon_sym_PLUS_PLUS] = ACTIONS(123), + [anon_sym_DASH_DASH] = ACTIONS(123), + [anon_sym_DOLLAR] = ACTIONS(125), + [anon_sym_AT] = ACTIONS(127), + [aux_sym_number_token1] = ACTIONS(129), + [aux_sym_number_token2] = ACTIONS(131), + [anon_sym_DQUOTE] = ACTIONS(133), + [anon_sym_POUND] = ACTIONS(135), }, - [54] = { + [52] = { [sym__statement] = STATE(1205), - [sym__statement_separated] = STATE(146), + [sym__statement_separated] = STATE(4), [sym__control_statement] = STATE(1205), [sym_if_statement] = STATE(1205), [sym_while_statement] = STATE(1205), @@ -11845,3075 +11993,2998 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_return_statement] = STATE(1205), [sym_switch_statement] = STATE(1205), [sym__io_statement] = STATE(1205), - [sym__getline_exp] = STATE(1568), - [sym_getline_input] = STATE(1568), - [sym_getline_file] = STATE(1568), - [sym_print_statement] = STATE(1699), - [sym_printf_statement] = STATE(1699), + [sym__getline_exp] = STATE(1471), + [sym_getline_input] = STATE(1471), + [sym_getline_file] = STATE(1471), + [sym_print_statement] = STATE(1697), + [sym_printf_statement] = STATE(1697), [sym_redirected_io_statement] = STATE(1205), [sym_piped_io_statement] = STATE(1205), - [sym_block] = STATE(1206), - [sym__exp] = STATE(1568), - [sym_ternary_exp] = STATE(1470), - [sym_binary_exp] = STATE(1470), - [sym__binary_in] = STATE(1373), - [sym_unary_exp] = STATE(1470), - [sym_update_exp] = STATE(1568), - [sym_assignment_exp] = STATE(1568), - [sym_piped_io_exp] = STATE(1568), - [sym_string_concat] = STATE(1470), - [sym_field_ref] = STATE(1121), - [sym_array_ref] = STATE(1022), - [sym_regex] = STATE(1568), - [sym_regex_constant] = STATE(1568), - [sym_grouping] = STATE(1470), - [sym__primitive] = STATE(1470), - [sym_namespace] = STATE(1955), - [sym_ns_qualified_name] = STATE(744), - [sym_number] = STATE(1470), - [sym_string] = STATE(1470), - [sym_func_call] = STATE(1470), - [sym_indirect_func_call] = STATE(1568), - [sym_comment] = STATE(55), - [aux_sym_if_statement_repeat1] = STATE(55), - [sym_identifier] = ACTIONS(362), - [anon_sym_SEMI] = ACTIONS(290), - [anon_sym_if] = ACTIONS(364), - [anon_sym_LPAREN] = ACTIONS(366), - [anon_sym_while] = ACTIONS(368), + [sym_block] = STATE(1204), + [sym__exp] = STATE(1471), + [sym_ternary_exp] = STATE(1420), + [sym_binary_exp] = STATE(1420), + [sym__binary_in] = STATE(1385), + [sym_unary_exp] = STATE(1420), + [sym_update_exp] = STATE(1471), + [sym_assignment_exp] = STATE(1471), + [sym_piped_io_exp] = STATE(1471), + [sym_string_concat] = STATE(1420), + [sym_field_ref] = STATE(705), + [sym_array_ref] = STATE(614), + [sym_regex] = STATE(1471), + [sym_regex_constant] = STATE(1471), + [sym_grouping] = STATE(1420), + [sym__primitive] = STATE(1420), + [sym_namespace] = STATE(1956), + [sym_ns_qualified_name] = STATE(597), + [sym_number] = STATE(1420), + [sym_string] = STATE(1420), + [sym_func_call] = STATE(1420), + [sym_indirect_func_call] = STATE(1471), + [sym_comment] = STATE(43), + [aux_sym_if_statement_repeat1] = STATE(43), + [sym_identifier] = ACTIONS(137), + [anon_sym_SEMI] = ACTIONS(510), + [anon_sym_if] = ACTIONS(139), + [anon_sym_LPAREN] = ACTIONS(434), + [anon_sym_while] = ACTIONS(143), + [anon_sym_do] = ACTIONS(93), + [anon_sym_for] = ACTIONS(145), + [sym_break_statement] = ACTIONS(512), + [sym_continue_statement] = ACTIONS(512), + [anon_sym_delete] = ACTIONS(99), + [anon_sym_exit] = ACTIONS(149), + [anon_sym_return] = ACTIONS(151), + [anon_sym_switch] = ACTIONS(105), + [anon_sym_LBRACE] = ACTIONS(268), + [anon_sym_getline] = ACTIONS(153), + [sym_next_statement] = ACTIONS(512), + [sym_nextfile_statement] = ACTIONS(512), + [anon_sym_print] = ACTIONS(155), + [anon_sym_printf] = ACTIONS(157), + [anon_sym_SLASH] = ACTIONS(438), + [anon_sym_PLUS] = ACTIONS(161), + [anon_sym_DASH] = ACTIONS(161), + [anon_sym_BANG] = ACTIONS(440), + [anon_sym_PLUS_PLUS] = ACTIONS(442), + [anon_sym_DASH_DASH] = ACTIONS(442), + [anon_sym_DOLLAR] = ACTIONS(444), + [anon_sym_AT] = ACTIONS(446), + [aux_sym_number_token1] = ACTIONS(169), + [aux_sym_number_token2] = ACTIONS(306), + [anon_sym_DQUOTE] = ACTIONS(308), + [anon_sym_POUND] = ACTIONS(135), + }, + [53] = { + [sym__statement] = STATE(1195), + [sym__statement_separated] = STATE(4), + [sym__control_statement] = STATE(1195), + [sym_if_statement] = STATE(1195), + [sym_while_statement] = STATE(1195), + [sym_do_while_statement] = STATE(1195), + [sym_for_statement] = STATE(1195), + [sym_for_in_statement] = STATE(1195), + [sym_delete_statement] = STATE(1195), + [sym_exit_statement] = STATE(1195), + [sym_return_statement] = STATE(1195), + [sym_switch_statement] = STATE(1195), + [sym__io_statement] = STATE(1195), + [sym__getline_exp] = STATE(1471), + [sym_getline_input] = STATE(1471), + [sym_getline_file] = STATE(1471), + [sym_print_statement] = STATE(1697), + [sym_printf_statement] = STATE(1697), + [sym_redirected_io_statement] = STATE(1195), + [sym_piped_io_statement] = STATE(1195), + [sym_block] = STATE(1257), + [sym__exp] = STATE(1471), + [sym_ternary_exp] = STATE(1420), + [sym_binary_exp] = STATE(1420), + [sym__binary_in] = STATE(1385), + [sym_unary_exp] = STATE(1420), + [sym_update_exp] = STATE(1471), + [sym_assignment_exp] = STATE(1471), + [sym_piped_io_exp] = STATE(1471), + [sym_string_concat] = STATE(1420), + [sym_field_ref] = STATE(705), + [sym_array_ref] = STATE(614), + [sym_regex] = STATE(1471), + [sym_regex_constant] = STATE(1471), + [sym_grouping] = STATE(1420), + [sym__primitive] = STATE(1420), + [sym_namespace] = STATE(1956), + [sym_ns_qualified_name] = STATE(597), + [sym_number] = STATE(1420), + [sym_string] = STATE(1420), + [sym_func_call] = STATE(1420), + [sym_indirect_func_call] = STATE(1471), + [sym_comment] = STATE(44), + [aux_sym_if_statement_repeat1] = STATE(44), + [sym_identifier] = ACTIONS(137), + [anon_sym_SEMI] = ACTIONS(264), + [anon_sym_if] = ACTIONS(139), + [anon_sym_LPAREN] = ACTIONS(434), + [anon_sym_while] = ACTIONS(143), + [anon_sym_do] = ACTIONS(93), + [anon_sym_for] = ACTIONS(145), + [sym_break_statement] = ACTIONS(266), + [sym_continue_statement] = ACTIONS(266), + [anon_sym_delete] = ACTIONS(99), + [anon_sym_exit] = ACTIONS(149), + [anon_sym_return] = ACTIONS(151), + [anon_sym_switch] = ACTIONS(105), + [anon_sym_LBRACE] = ACTIONS(268), + [anon_sym_getline] = ACTIONS(153), + [sym_next_statement] = ACTIONS(266), + [sym_nextfile_statement] = ACTIONS(266), + [anon_sym_print] = ACTIONS(155), + [anon_sym_printf] = ACTIONS(157), + [anon_sym_SLASH] = ACTIONS(438), + [anon_sym_PLUS] = ACTIONS(161), + [anon_sym_DASH] = ACTIONS(161), + [anon_sym_BANG] = ACTIONS(440), + [anon_sym_PLUS_PLUS] = ACTIONS(442), + [anon_sym_DASH_DASH] = ACTIONS(442), + [anon_sym_DOLLAR] = ACTIONS(444), + [anon_sym_AT] = ACTIONS(446), + [aux_sym_number_token1] = ACTIONS(169), + [aux_sym_number_token2] = ACTIONS(306), + [anon_sym_DQUOTE] = ACTIONS(308), + [anon_sym_POUND] = ACTIONS(135), + }, + [54] = { + [sym__statement] = STATE(1223), + [sym__statement_separated] = STATE(4), + [sym__control_statement] = STATE(1223), + [sym_if_statement] = STATE(1223), + [sym_while_statement] = STATE(1223), + [sym_do_while_statement] = STATE(1223), + [sym_for_statement] = STATE(1223), + [sym_for_in_statement] = STATE(1223), + [sym_delete_statement] = STATE(1223), + [sym_exit_statement] = STATE(1223), + [sym_return_statement] = STATE(1223), + [sym_switch_statement] = STATE(1223), + [sym__io_statement] = STATE(1223), + [sym__getline_exp] = STATE(1471), + [sym_getline_input] = STATE(1471), + [sym_getline_file] = STATE(1471), + [sym_print_statement] = STATE(1697), + [sym_printf_statement] = STATE(1697), + [sym_redirected_io_statement] = STATE(1223), + [sym_piped_io_statement] = STATE(1223), + [sym_block] = STATE(1224), + [sym__exp] = STATE(1471), + [sym_ternary_exp] = STATE(1420), + [sym_binary_exp] = STATE(1420), + [sym__binary_in] = STATE(1385), + [sym_unary_exp] = STATE(1420), + [sym_update_exp] = STATE(1471), + [sym_assignment_exp] = STATE(1471), + [sym_piped_io_exp] = STATE(1471), + [sym_string_concat] = STATE(1420), + [sym_field_ref] = STATE(705), + [sym_array_ref] = STATE(614), + [sym_regex] = STATE(1471), + [sym_regex_constant] = STATE(1471), + [sym_grouping] = STATE(1420), + [sym__primitive] = STATE(1420), + [sym_namespace] = STATE(1956), + [sym_ns_qualified_name] = STATE(597), + [sym_number] = STATE(1420), + [sym_string] = STATE(1420), + [sym_func_call] = STATE(1420), + [sym_indirect_func_call] = STATE(1471), + [sym_comment] = STATE(48), + [aux_sym_if_statement_repeat1] = STATE(48), + [sym_identifier] = ACTIONS(137), + [anon_sym_SEMI] = ACTIONS(514), + [anon_sym_if] = ACTIONS(139), + [anon_sym_LPAREN] = ACTIONS(434), + [anon_sym_while] = ACTIONS(143), [anon_sym_do] = ACTIONS(93), - [anon_sym_for] = ACTIONS(370), - [sym_break_statement] = ACTIONS(292), - [sym_continue_statement] = ACTIONS(292), + [anon_sym_for] = ACTIONS(145), + [sym_break_statement] = ACTIONS(516), + [sym_continue_statement] = ACTIONS(516), [anon_sym_delete] = ACTIONS(99), - [anon_sym_exit] = ACTIONS(372), - [anon_sym_return] = ACTIONS(374), + [anon_sym_exit] = ACTIONS(149), + [anon_sym_return] = ACTIONS(151), [anon_sym_switch] = ACTIONS(105), [anon_sym_LBRACE] = ACTIONS(268), - [anon_sym_getline] = ACTIONS(376), - [sym_next_statement] = ACTIONS(292), - [sym_nextfile_statement] = ACTIONS(292), - [anon_sym_print] = ACTIONS(378), - [anon_sym_printf] = ACTIONS(380), - [anon_sym_SLASH] = ACTIONS(382), - [anon_sym_PLUS] = ACTIONS(384), - [anon_sym_DASH] = ACTIONS(384), - [anon_sym_BANG] = ACTIONS(386), - [anon_sym_PLUS_PLUS] = ACTIONS(388), - [anon_sym_DASH_DASH] = ACTIONS(388), - [anon_sym_DOLLAR] = ACTIONS(390), - [anon_sym_AT] = ACTIONS(392), - [aux_sym_number_token1] = ACTIONS(123), - [aux_sym_number_token2] = ACTIONS(286), - [anon_sym_DQUOTE] = ACTIONS(288), - [anon_sym_POUND] = ACTIONS(171), + [anon_sym_getline] = ACTIONS(153), + [sym_next_statement] = ACTIONS(516), + [sym_nextfile_statement] = ACTIONS(516), + [anon_sym_print] = ACTIONS(155), + [anon_sym_printf] = ACTIONS(157), + [anon_sym_SLASH] = ACTIONS(438), + [anon_sym_PLUS] = ACTIONS(161), + [anon_sym_DASH] = ACTIONS(161), + [anon_sym_BANG] = ACTIONS(440), + [anon_sym_PLUS_PLUS] = ACTIONS(442), + [anon_sym_DASH_DASH] = ACTIONS(442), + [anon_sym_DOLLAR] = ACTIONS(444), + [anon_sym_AT] = ACTIONS(446), + [aux_sym_number_token1] = ACTIONS(169), + [aux_sym_number_token2] = ACTIONS(306), + [anon_sym_DQUOTE] = ACTIONS(308), + [anon_sym_POUND] = ACTIONS(135), }, [55] = { - [sym__statement] = STATE(1199), - [sym__statement_separated] = STATE(146), - [sym__control_statement] = STATE(1199), - [sym_if_statement] = STATE(1199), - [sym_while_statement] = STATE(1199), - [sym_do_while_statement] = STATE(1199), - [sym_for_statement] = STATE(1199), - [sym_for_in_statement] = STATE(1199), - [sym_delete_statement] = STATE(1199), - [sym_exit_statement] = STATE(1199), - [sym_return_statement] = STATE(1199), - [sym_switch_statement] = STATE(1199), - [sym__io_statement] = STATE(1199), - [sym__getline_exp] = STATE(1568), - [sym_getline_input] = STATE(1568), - [sym_getline_file] = STATE(1568), - [sym_print_statement] = STATE(1699), - [sym_printf_statement] = STATE(1699), - [sym_redirected_io_statement] = STATE(1199), - [sym_piped_io_statement] = STATE(1199), - [sym_block] = STATE(1200), - [sym__exp] = STATE(1568), - [sym_ternary_exp] = STATE(1470), - [sym_binary_exp] = STATE(1470), - [sym__binary_in] = STATE(1373), - [sym_unary_exp] = STATE(1470), - [sym_update_exp] = STATE(1568), - [sym_assignment_exp] = STATE(1568), - [sym_piped_io_exp] = STATE(1568), - [sym_string_concat] = STATE(1470), - [sym_field_ref] = STATE(1121), - [sym_array_ref] = STATE(1022), - [sym_regex] = STATE(1568), - [sym_regex_constant] = STATE(1568), - [sym_grouping] = STATE(1470), - [sym__primitive] = STATE(1470), - [sym_namespace] = STATE(1955), - [sym_ns_qualified_name] = STATE(744), - [sym_number] = STATE(1470), - [sym_string] = STATE(1470), - [sym_func_call] = STATE(1470), - [sym_indirect_func_call] = STATE(1568), - [sym_comment] = STATE(1238), - [aux_sym_if_statement_repeat1] = STATE(1238), - [sym_identifier] = ACTIONS(362), - [anon_sym_SEMI] = ACTIONS(544), - [anon_sym_if] = ACTIONS(364), - [anon_sym_LPAREN] = ACTIONS(366), - [anon_sym_while] = ACTIONS(368), + [sym__statement] = STATE(1233), + [sym__statement_separated] = STATE(4), + [sym__control_statement] = STATE(1233), + [sym_if_statement] = STATE(1233), + [sym_while_statement] = STATE(1233), + [sym_do_while_statement] = STATE(1233), + [sym_for_statement] = STATE(1233), + [sym_for_in_statement] = STATE(1233), + [sym_delete_statement] = STATE(1233), + [sym_exit_statement] = STATE(1233), + [sym_return_statement] = STATE(1233), + [sym_switch_statement] = STATE(1233), + [sym__io_statement] = STATE(1233), + [sym__getline_exp] = STATE(1471), + [sym_getline_input] = STATE(1471), + [sym_getline_file] = STATE(1471), + [sym_print_statement] = STATE(1697), + [sym_printf_statement] = STATE(1697), + [sym_redirected_io_statement] = STATE(1233), + [sym_piped_io_statement] = STATE(1233), + [sym_block] = STATE(1250), + [sym__exp] = STATE(1471), + [sym_ternary_exp] = STATE(1420), + [sym_binary_exp] = STATE(1420), + [sym__binary_in] = STATE(1385), + [sym_unary_exp] = STATE(1420), + [sym_update_exp] = STATE(1471), + [sym_assignment_exp] = STATE(1471), + [sym_piped_io_exp] = STATE(1471), + [sym_string_concat] = STATE(1420), + [sym_field_ref] = STATE(705), + [sym_array_ref] = STATE(614), + [sym_regex] = STATE(1471), + [sym_regex_constant] = STATE(1471), + [sym_grouping] = STATE(1420), + [sym__primitive] = STATE(1420), + [sym_namespace] = STATE(1956), + [sym_ns_qualified_name] = STATE(597), + [sym_number] = STATE(1420), + [sym_string] = STATE(1420), + [sym_func_call] = STATE(1420), + [sym_indirect_func_call] = STATE(1471), + [sym_comment] = STATE(50), + [aux_sym_if_statement_repeat1] = STATE(50), + [sym_identifier] = ACTIONS(137), + [anon_sym_SEMI] = ACTIONS(518), + [anon_sym_if] = ACTIONS(139), + [anon_sym_LPAREN] = ACTIONS(434), + [anon_sym_while] = ACTIONS(143), [anon_sym_do] = ACTIONS(93), - [anon_sym_for] = ACTIONS(370), - [sym_break_statement] = ACTIONS(546), - [sym_continue_statement] = ACTIONS(546), + [anon_sym_for] = ACTIONS(145), + [sym_break_statement] = ACTIONS(520), + [sym_continue_statement] = ACTIONS(520), [anon_sym_delete] = ACTIONS(99), - [anon_sym_exit] = ACTIONS(372), - [anon_sym_return] = ACTIONS(374), + [anon_sym_exit] = ACTIONS(149), + [anon_sym_return] = ACTIONS(151), [anon_sym_switch] = ACTIONS(105), [anon_sym_LBRACE] = ACTIONS(268), - [anon_sym_getline] = ACTIONS(376), - [sym_next_statement] = ACTIONS(546), - [sym_nextfile_statement] = ACTIONS(546), - [anon_sym_print] = ACTIONS(378), - [anon_sym_printf] = ACTIONS(380), - [anon_sym_SLASH] = ACTIONS(382), - [anon_sym_PLUS] = ACTIONS(384), - [anon_sym_DASH] = ACTIONS(384), - [anon_sym_BANG] = ACTIONS(386), - [anon_sym_PLUS_PLUS] = ACTIONS(388), - [anon_sym_DASH_DASH] = ACTIONS(388), - [anon_sym_DOLLAR] = ACTIONS(390), - [anon_sym_AT] = ACTIONS(392), - [aux_sym_number_token1] = ACTIONS(123), - [aux_sym_number_token2] = ACTIONS(286), - [anon_sym_DQUOTE] = ACTIONS(288), - [anon_sym_POUND] = ACTIONS(171), + [anon_sym_getline] = ACTIONS(153), + [sym_next_statement] = ACTIONS(520), + [sym_nextfile_statement] = ACTIONS(520), + [anon_sym_print] = ACTIONS(155), + [anon_sym_printf] = ACTIONS(157), + [anon_sym_SLASH] = ACTIONS(438), + [anon_sym_PLUS] = ACTIONS(161), + [anon_sym_DASH] = ACTIONS(161), + [anon_sym_BANG] = ACTIONS(440), + [anon_sym_PLUS_PLUS] = ACTIONS(442), + [anon_sym_DASH_DASH] = ACTIONS(442), + [anon_sym_DOLLAR] = ACTIONS(444), + [anon_sym_AT] = ACTIONS(446), + [aux_sym_number_token1] = ACTIONS(169), + [aux_sym_number_token2] = ACTIONS(306), + [anon_sym_DQUOTE] = ACTIONS(308), + [anon_sym_POUND] = ACTIONS(135), }, [56] = { - [sym__statement] = STATE(1197), - [sym__statement_separated] = STATE(146), - [sym__control_statement] = STATE(1197), - [sym_if_statement] = STATE(1197), - [sym_while_statement] = STATE(1197), - [sym_do_while_statement] = STATE(1197), - [sym_for_statement] = STATE(1197), - [sym_for_in_statement] = STATE(1197), - [sym_delete_statement] = STATE(1197), - [sym_exit_statement] = STATE(1197), - [sym_return_statement] = STATE(1197), - [sym_switch_statement] = STATE(1197), - [sym__io_statement] = STATE(1197), - [sym__getline_exp] = STATE(1568), - [sym_getline_input] = STATE(1568), - [sym_getline_file] = STATE(1568), - [sym_print_statement] = STATE(1699), - [sym_printf_statement] = STATE(1699), - [sym_redirected_io_statement] = STATE(1197), - [sym_piped_io_statement] = STATE(1197), - [sym_block] = STATE(1198), - [sym__exp] = STATE(1568), - [sym_ternary_exp] = STATE(1470), - [sym_binary_exp] = STATE(1470), - [sym__binary_in] = STATE(1373), - [sym_unary_exp] = STATE(1470), - [sym_update_exp] = STATE(1568), - [sym_assignment_exp] = STATE(1568), - [sym_piped_io_exp] = STATE(1568), - [sym_string_concat] = STATE(1470), - [sym_field_ref] = STATE(1121), - [sym_array_ref] = STATE(1022), - [sym_regex] = STATE(1568), - [sym_regex_constant] = STATE(1568), - [sym_grouping] = STATE(1470), - [sym__primitive] = STATE(1470), - [sym_namespace] = STATE(1955), - [sym_ns_qualified_name] = STATE(744), - [sym_number] = STATE(1470), - [sym_string] = STATE(1470), - [sym_func_call] = STATE(1470), - [sym_indirect_func_call] = STATE(1568), - [sym_comment] = STATE(75), - [aux_sym_if_statement_repeat1] = STATE(75), - [sym_identifier] = ACTIONS(362), - [anon_sym_SEMI] = ACTIONS(548), - [anon_sym_if] = ACTIONS(364), - [anon_sym_LPAREN] = ACTIONS(366), - [anon_sym_while] = ACTIONS(368), + [sym__statement] = STATE(1255), + [sym__statement_separated] = STATE(4), + [sym__control_statement] = STATE(1255), + [sym_if_statement] = STATE(1255), + [sym_while_statement] = STATE(1255), + [sym_do_while_statement] = STATE(1255), + [sym_for_statement] = STATE(1255), + [sym_for_in_statement] = STATE(1255), + [sym_delete_statement] = STATE(1255), + [sym_exit_statement] = STATE(1255), + [sym_return_statement] = STATE(1255), + [sym_switch_statement] = STATE(1255), + [sym__io_statement] = STATE(1255), + [sym__getline_exp] = STATE(1471), + [sym_getline_input] = STATE(1471), + [sym_getline_file] = STATE(1471), + [sym_print_statement] = STATE(1697), + [sym_printf_statement] = STATE(1697), + [sym_redirected_io_statement] = STATE(1255), + [sym_piped_io_statement] = STATE(1255), + [sym_block] = STATE(1259), + [sym__exp] = STATE(1471), + [sym_ternary_exp] = STATE(1420), + [sym_binary_exp] = STATE(1420), + [sym__binary_in] = STATE(1385), + [sym_unary_exp] = STATE(1420), + [sym_update_exp] = STATE(1471), + [sym_assignment_exp] = STATE(1471), + [sym_piped_io_exp] = STATE(1471), + [sym_string_concat] = STATE(1420), + [sym_field_ref] = STATE(705), + [sym_array_ref] = STATE(614), + [sym_regex] = STATE(1471), + [sym_regex_constant] = STATE(1471), + [sym_grouping] = STATE(1420), + [sym__primitive] = STATE(1420), + [sym_namespace] = STATE(1956), + [sym_ns_qualified_name] = STATE(597), + [sym_number] = STATE(1420), + [sym_string] = STATE(1420), + [sym_func_call] = STATE(1420), + [sym_indirect_func_call] = STATE(1471), + [sym_comment] = STATE(1252), + [aux_sym_if_statement_repeat1] = STATE(1252), + [sym_identifier] = ACTIONS(137), + [anon_sym_SEMI] = ACTIONS(506), + [anon_sym_if] = ACTIONS(139), + [anon_sym_LPAREN] = ACTIONS(434), + [anon_sym_while] = ACTIONS(143), [anon_sym_do] = ACTIONS(93), - [anon_sym_for] = ACTIONS(370), - [sym_break_statement] = ACTIONS(550), - [sym_continue_statement] = ACTIONS(550), + [anon_sym_for] = ACTIONS(145), + [sym_break_statement] = ACTIONS(508), + [sym_continue_statement] = ACTIONS(508), [anon_sym_delete] = ACTIONS(99), - [anon_sym_exit] = ACTIONS(372), - [anon_sym_return] = ACTIONS(374), + [anon_sym_exit] = ACTIONS(149), + [anon_sym_return] = ACTIONS(151), [anon_sym_switch] = ACTIONS(105), [anon_sym_LBRACE] = ACTIONS(268), - [anon_sym_getline] = ACTIONS(376), - [sym_next_statement] = ACTIONS(550), - [sym_nextfile_statement] = ACTIONS(550), - [anon_sym_print] = ACTIONS(378), - [anon_sym_printf] = ACTIONS(380), - [anon_sym_SLASH] = ACTIONS(382), - [anon_sym_PLUS] = ACTIONS(384), - [anon_sym_DASH] = ACTIONS(384), - [anon_sym_BANG] = ACTIONS(386), - [anon_sym_PLUS_PLUS] = ACTIONS(388), - [anon_sym_DASH_DASH] = ACTIONS(388), - [anon_sym_DOLLAR] = ACTIONS(390), - [anon_sym_AT] = ACTIONS(392), - [aux_sym_number_token1] = ACTIONS(123), - [aux_sym_number_token2] = ACTIONS(286), - [anon_sym_DQUOTE] = ACTIONS(288), - [anon_sym_POUND] = ACTIONS(171), + [anon_sym_getline] = ACTIONS(153), + [sym_next_statement] = ACTIONS(508), + [sym_nextfile_statement] = ACTIONS(508), + [anon_sym_print] = ACTIONS(155), + [anon_sym_printf] = ACTIONS(157), + [anon_sym_SLASH] = ACTIONS(438), + [anon_sym_PLUS] = ACTIONS(161), + [anon_sym_DASH] = ACTIONS(161), + [anon_sym_BANG] = ACTIONS(440), + [anon_sym_PLUS_PLUS] = ACTIONS(442), + [anon_sym_DASH_DASH] = ACTIONS(442), + [anon_sym_DOLLAR] = ACTIONS(444), + [anon_sym_AT] = ACTIONS(446), + [aux_sym_number_token1] = ACTIONS(169), + [aux_sym_number_token2] = ACTIONS(306), + [anon_sym_DQUOTE] = ACTIONS(308), + [anon_sym_POUND] = ACTIONS(135), }, [57] = { - [sym__statement] = STATE(1212), - [sym__statement_separated] = STATE(146), - [sym__control_statement] = STATE(1212), - [sym_if_statement] = STATE(1212), - [sym_while_statement] = STATE(1212), - [sym_do_while_statement] = STATE(1212), - [sym_for_statement] = STATE(1212), - [sym_for_in_statement] = STATE(1212), - [sym_delete_statement] = STATE(1212), - [sym_exit_statement] = STATE(1212), - [sym_return_statement] = STATE(1212), - [sym_switch_statement] = STATE(1212), - [sym__io_statement] = STATE(1212), - [sym__getline_exp] = STATE(1568), - [sym_getline_input] = STATE(1568), - [sym_getline_file] = STATE(1568), - [sym_print_statement] = STATE(1699), - [sym_printf_statement] = STATE(1699), - [sym_redirected_io_statement] = STATE(1212), - [sym_piped_io_statement] = STATE(1212), - [sym_block] = STATE(1247), - [sym__exp] = STATE(1568), - [sym_ternary_exp] = STATE(1470), - [sym_binary_exp] = STATE(1470), - [sym__binary_in] = STATE(1373), - [sym_unary_exp] = STATE(1470), - [sym_update_exp] = STATE(1568), - [sym_assignment_exp] = STATE(1568), - [sym_piped_io_exp] = STATE(1568), - [sym_string_concat] = STATE(1470), - [sym_field_ref] = STATE(1121), - [sym_array_ref] = STATE(1022), - [sym_regex] = STATE(1568), - [sym_regex_constant] = STATE(1568), - [sym_grouping] = STATE(1470), - [sym__primitive] = STATE(1470), - [sym_namespace] = STATE(1955), - [sym_ns_qualified_name] = STATE(744), - [sym_number] = STATE(1470), - [sym_string] = STATE(1470), - [sym_func_call] = STATE(1470), - [sym_indirect_func_call] = STATE(1568), - [sym_comment] = STATE(23), - [aux_sym_if_statement_repeat1] = STATE(23), - [sym_identifier] = ACTIONS(362), - [anon_sym_SEMI] = ACTIONS(524), - [anon_sym_if] = ACTIONS(364), - [anon_sym_LPAREN] = ACTIONS(366), - [anon_sym_while] = ACTIONS(368), + [sym__statement] = STATE(1222), + [sym__statement_separated] = STATE(4), + [sym__control_statement] = STATE(1222), + [sym_if_statement] = STATE(1222), + [sym_while_statement] = STATE(1222), + [sym_do_while_statement] = STATE(1222), + [sym_for_statement] = STATE(1222), + [sym_for_in_statement] = STATE(1222), + [sym_delete_statement] = STATE(1222), + [sym_exit_statement] = STATE(1222), + [sym_return_statement] = STATE(1222), + [sym_switch_statement] = STATE(1222), + [sym__io_statement] = STATE(1222), + [sym__getline_exp] = STATE(1471), + [sym_getline_input] = STATE(1471), + [sym_getline_file] = STATE(1471), + [sym_print_statement] = STATE(1697), + [sym_printf_statement] = STATE(1697), + [sym_redirected_io_statement] = STATE(1222), + [sym_piped_io_statement] = STATE(1222), + [sym_block] = STATE(1218), + [sym__exp] = STATE(1471), + [sym_ternary_exp] = STATE(1420), + [sym_binary_exp] = STATE(1420), + [sym__binary_in] = STATE(1385), + [sym_unary_exp] = STATE(1420), + [sym_update_exp] = STATE(1471), + [sym_assignment_exp] = STATE(1471), + [sym_piped_io_exp] = STATE(1471), + [sym_string_concat] = STATE(1420), + [sym_field_ref] = STATE(705), + [sym_array_ref] = STATE(614), + [sym_regex] = STATE(1471), + [sym_regex_constant] = STATE(1471), + [sym_grouping] = STATE(1420), + [sym__primitive] = STATE(1420), + [sym_namespace] = STATE(1956), + [sym_ns_qualified_name] = STATE(597), + [sym_number] = STATE(1420), + [sym_string] = STATE(1420), + [sym_func_call] = STATE(1420), + [sym_indirect_func_call] = STATE(1471), + [sym_comment] = STATE(56), + [aux_sym_if_statement_repeat1] = STATE(56), + [sym_identifier] = ACTIONS(137), + [anon_sym_SEMI] = ACTIONS(484), + [anon_sym_if] = ACTIONS(139), + [anon_sym_LPAREN] = ACTIONS(434), + [anon_sym_while] = ACTIONS(143), [anon_sym_do] = ACTIONS(93), - [anon_sym_for] = ACTIONS(370), - [sym_break_statement] = ACTIONS(526), - [sym_continue_statement] = ACTIONS(526), + [anon_sym_for] = ACTIONS(145), + [sym_break_statement] = ACTIONS(486), + [sym_continue_statement] = ACTIONS(486), [anon_sym_delete] = ACTIONS(99), - [anon_sym_exit] = ACTIONS(372), - [anon_sym_return] = ACTIONS(374), + [anon_sym_exit] = ACTIONS(149), + [anon_sym_return] = ACTIONS(151), [anon_sym_switch] = ACTIONS(105), [anon_sym_LBRACE] = ACTIONS(268), - [anon_sym_getline] = ACTIONS(376), - [sym_next_statement] = ACTIONS(526), - [sym_nextfile_statement] = ACTIONS(526), - [anon_sym_print] = ACTIONS(378), - [anon_sym_printf] = ACTIONS(380), - [anon_sym_SLASH] = ACTIONS(382), - [anon_sym_PLUS] = ACTIONS(384), - [anon_sym_DASH] = ACTIONS(384), - [anon_sym_BANG] = ACTIONS(386), - [anon_sym_PLUS_PLUS] = ACTIONS(388), - [anon_sym_DASH_DASH] = ACTIONS(388), - [anon_sym_DOLLAR] = ACTIONS(390), - [anon_sym_AT] = ACTIONS(392), - [aux_sym_number_token1] = ACTIONS(123), - [aux_sym_number_token2] = ACTIONS(286), - [anon_sym_DQUOTE] = ACTIONS(288), - [anon_sym_POUND] = ACTIONS(171), + [anon_sym_getline] = ACTIONS(153), + [sym_next_statement] = ACTIONS(486), + [sym_nextfile_statement] = ACTIONS(486), + [anon_sym_print] = ACTIONS(155), + [anon_sym_printf] = ACTIONS(157), + [anon_sym_SLASH] = ACTIONS(438), + [anon_sym_PLUS] = ACTIONS(161), + [anon_sym_DASH] = ACTIONS(161), + [anon_sym_BANG] = ACTIONS(440), + [anon_sym_PLUS_PLUS] = ACTIONS(442), + [anon_sym_DASH_DASH] = ACTIONS(442), + [anon_sym_DOLLAR] = ACTIONS(444), + [anon_sym_AT] = ACTIONS(446), + [aux_sym_number_token1] = ACTIONS(169), + [aux_sym_number_token2] = ACTIONS(306), + [anon_sym_DQUOTE] = ACTIONS(308), + [anon_sym_POUND] = ACTIONS(135), }, [58] = { - [sym__statement] = STATE(1140), - [sym__statement_separated] = STATE(2), - [sym__control_statement] = STATE(1140), - [sym_if_statement] = STATE(1140), - [sym_while_statement] = STATE(1140), - [sym_do_while_statement] = STATE(1140), - [sym_for_statement] = STATE(1140), - [sym_for_in_statement] = STATE(1140), - [sym_delete_statement] = STATE(1140), - [sym_exit_statement] = STATE(1140), - [sym_return_statement] = STATE(1140), - [sym_switch_statement] = STATE(1140), - [sym__io_statement] = STATE(1140), - [sym__getline_exp] = STATE(1462), - [sym_getline_input] = STATE(1462), - [sym_getline_file] = STATE(1462), - [sym_print_statement] = STATE(1695), - [sym_printf_statement] = STATE(1695), - [sym_redirected_io_statement] = STATE(1140), - [sym_piped_io_statement] = STATE(1140), - [sym_block] = STATE(1141), - [sym__exp] = STATE(1462), - [sym_ternary_exp] = STATE(1354), - [sym_binary_exp] = STATE(1354), - [sym__binary_in] = STATE(1309), - [sym_unary_exp] = STATE(1354), - [sym_update_exp] = STATE(1462), - [sym_assignment_exp] = STATE(1462), - [sym_piped_io_exp] = STATE(1462), - [sym_string_concat] = STATE(1354), - [sym_field_ref] = STATE(619), - [sym_array_ref] = STATE(603), - [sym_regex] = STATE(1462), - [sym_regex_constant] = STATE(1462), - [sym_grouping] = STATE(1354), - [sym__primitive] = STATE(1354), - [sym_namespace] = STATE(2063), - [sym_ns_qualified_name] = STATE(592), - [sym_number] = STATE(1354), - [sym_string] = STATE(1354), - [sym_func_call] = STATE(1354), - [sym_indirect_func_call] = STATE(1462), - [sym_comment] = STATE(1238), - [aux_sym_if_statement_repeat1] = STATE(1238), - [sym_identifier] = ACTIONS(39), - [anon_sym_SEMI] = ACTIONS(452), - [anon_sym_if] = ACTIONS(43), - [anon_sym_LPAREN] = ACTIONS(552), - [anon_sym_while] = ACTIONS(47), - [anon_sym_do] = ACTIONS(49), - [anon_sym_for] = ACTIONS(51), - [sym_break_statement] = ACTIONS(462), - [sym_continue_statement] = ACTIONS(462), - [anon_sym_delete] = ACTIONS(55), - [anon_sym_exit] = ACTIONS(57), - [anon_sym_return] = ACTIONS(59), - [anon_sym_switch] = ACTIONS(61), - [anon_sym_LBRACE] = ACTIONS(316), - [anon_sym_getline] = ACTIONS(63), - [sym_next_statement] = ACTIONS(462), - [sym_nextfile_statement] = ACTIONS(462), - [anon_sym_print] = ACTIONS(65), - [anon_sym_printf] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(554), - [anon_sym_PLUS] = ACTIONS(71), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_BANG] = ACTIONS(556), - [anon_sym_PLUS_PLUS] = ACTIONS(558), - [anon_sym_DASH_DASH] = ACTIONS(558), - [anon_sym_DOLLAR] = ACTIONS(560), - [anon_sym_AT] = ACTIONS(562), - [aux_sym_number_token1] = ACTIONS(79), - [aux_sym_number_token2] = ACTIONS(486), - [anon_sym_DQUOTE] = ACTIONS(488), - [anon_sym_POUND] = ACTIONS(171), - }, - [59] = { - [sym__statement] = STATE(1717), - [sym__statement_separated] = STATE(3), - [sym__control_statement] = STATE(1717), - [sym_if_statement] = STATE(1717), - [sym_while_statement] = STATE(1717), - [sym_do_while_statement] = STATE(1717), - [sym_for_statement] = STATE(1717), - [sym_for_in_statement] = STATE(1717), - [sym_delete_statement] = STATE(1717), - [sym_exit_statement] = STATE(1717), - [sym_return_statement] = STATE(1717), - [sym_switch_statement] = STATE(1717), - [sym__io_statement] = STATE(1717), - [sym__getline_exp] = STATE(1495), - [sym_getline_input] = STATE(1495), - [sym_getline_file] = STATE(1495), - [sym_print_statement] = STATE(1696), - [sym_printf_statement] = STATE(1696), - [sym_redirected_io_statement] = STATE(1717), - [sym_piped_io_statement] = STATE(1717), - [sym__exp] = STATE(1495), - [sym_ternary_exp] = STATE(1421), - [sym_binary_exp] = STATE(1421), - [sym__binary_in] = STATE(1373), - [sym_unary_exp] = STATE(1421), - [sym_update_exp] = STATE(1495), - [sym_assignment_exp] = STATE(1495), - [sym_piped_io_exp] = STATE(1495), - [sym_string_concat] = STATE(1421), - [sym_field_ref] = STATE(703), - [sym_array_ref] = STATE(610), - [sym_regex] = STATE(1495), - [sym_regex_constant] = STATE(1495), - [sym_grouping] = STATE(1421), - [sym__primitive] = STATE(1421), - [sym_namespace] = STATE(1955), - [sym_ns_qualified_name] = STATE(607), - [sym_number] = STATE(1421), - [sym_string] = STATE(1421), - [sym_func_call] = STATE(1421), - [sym_indirect_func_call] = STATE(1495), - [sym_comment] = STATE(43), - [aux_sym_if_statement_repeat1] = STATE(43), - [sym_identifier] = ACTIONS(85), - [anon_sym_if] = ACTIONS(87), - [anon_sym_LPAREN] = ACTIONS(272), - [anon_sym_while] = ACTIONS(91), - [anon_sym_do] = ACTIONS(93), - [anon_sym_for] = ACTIONS(95), - [sym_break_statement] = ACTIONS(564), - [sym_continue_statement] = ACTIONS(564), - [anon_sym_delete] = ACTIONS(99), - [anon_sym_exit] = ACTIONS(101), - [anon_sym_return] = ACTIONS(103), - [anon_sym_switch] = ACTIONS(105), - [anon_sym_RBRACE] = ACTIONS(566), - [anon_sym_case] = ACTIONS(568), - [anon_sym_default] = ACTIONS(568), - [anon_sym_getline] = ACTIONS(107), - [sym_next_statement] = ACTIONS(564), - [sym_nextfile_statement] = ACTIONS(564), - [anon_sym_print] = ACTIONS(109), - [anon_sym_printf] = ACTIONS(111), - [anon_sym_SLASH] = ACTIONS(276), - [anon_sym_PLUS] = ACTIONS(115), - [anon_sym_DASH] = ACTIONS(115), - [anon_sym_BANG] = ACTIONS(278), - [anon_sym_PLUS_PLUS] = ACTIONS(280), - [anon_sym_DASH_DASH] = ACTIONS(280), - [anon_sym_DOLLAR] = ACTIONS(282), - [anon_sym_AT] = ACTIONS(284), - [aux_sym_number_token1] = ACTIONS(123), - [aux_sym_number_token2] = ACTIONS(286), - [anon_sym_DQUOTE] = ACTIONS(288), - [anon_sym_POUND] = ACTIONS(171), - }, - [60] = { - [sym__statement] = STATE(1244), - [sym__statement_separated] = STATE(1244), - [sym__control_statement] = STATE(1244), - [sym_if_statement] = STATE(1244), - [sym_while_statement] = STATE(1244), - [sym_do_while_statement] = STATE(1244), - [sym_for_statement] = STATE(1244), - [sym_for_in_statement] = STATE(1244), - [sym_delete_statement] = STATE(1244), - [sym_exit_statement] = STATE(1244), - [sym_return_statement] = STATE(1244), - [sym_switch_statement] = STATE(1244), - [sym__io_statement] = STATE(1244), - [sym__getline_exp] = STATE(503), - [sym_getline_input] = STATE(503), - [sym_getline_file] = STATE(503), - [sym_print_statement] = STATE(890), - [sym_printf_statement] = STATE(890), - [sym_redirected_io_statement] = STATE(1244), - [sym_piped_io_statement] = STATE(1244), - [sym_block] = STATE(1243), - [sym__exp] = STATE(503), - [sym_ternary_exp] = STATE(447), - [sym_binary_exp] = STATE(447), - [sym__binary_in] = STATE(446), - [sym_unary_exp] = STATE(447), - [sym_update_exp] = STATE(503), - [sym_assignment_exp] = STATE(503), - [sym_piped_io_exp] = STATE(503), - [sym_string_concat] = STATE(447), - [sym_field_ref] = STATE(272), - [sym_array_ref] = STATE(253), - [sym_regex] = STATE(503), - [sym_regex_constant] = STATE(503), - [sym_grouping] = STATE(447), - [sym__primitive] = STATE(447), - [sym_namespace] = STATE(1955), - [sym_ns_qualified_name] = STATE(221), - [sym_number] = STATE(447), - [sym_string] = STATE(447), - [sym_func_call] = STATE(447), - [sym_indirect_func_call] = STATE(503), - [sym_comment] = STATE(48), - [aux_sym_if_statement_repeat1] = STATE(48), - [sym_identifier] = ACTIONS(127), - [anon_sym_SEMI] = ACTIONS(570), - [anon_sym_if] = ACTIONS(129), - [anon_sym_LPAREN] = ACTIONS(131), - [anon_sym_while] = ACTIONS(133), + [sym__statement] = STATE(1215), + [sym__statement_separated] = STATE(4), + [sym__control_statement] = STATE(1215), + [sym_if_statement] = STATE(1215), + [sym_while_statement] = STATE(1215), + [sym_do_while_statement] = STATE(1215), + [sym_for_statement] = STATE(1215), + [sym_for_in_statement] = STATE(1215), + [sym_delete_statement] = STATE(1215), + [sym_exit_statement] = STATE(1215), + [sym_return_statement] = STATE(1215), + [sym_switch_statement] = STATE(1215), + [sym__io_statement] = STATE(1215), + [sym__getline_exp] = STATE(1471), + [sym_getline_input] = STATE(1471), + [sym_getline_file] = STATE(1471), + [sym_print_statement] = STATE(1697), + [sym_printf_statement] = STATE(1697), + [sym_redirected_io_statement] = STATE(1215), + [sym_piped_io_statement] = STATE(1215), + [sym_block] = STATE(1214), + [sym__exp] = STATE(1471), + [sym_ternary_exp] = STATE(1420), + [sym_binary_exp] = STATE(1420), + [sym__binary_in] = STATE(1385), + [sym_unary_exp] = STATE(1420), + [sym_update_exp] = STATE(1471), + [sym_assignment_exp] = STATE(1471), + [sym_piped_io_exp] = STATE(1471), + [sym_string_concat] = STATE(1420), + [sym_field_ref] = STATE(705), + [sym_array_ref] = STATE(614), + [sym_regex] = STATE(1471), + [sym_regex_constant] = STATE(1471), + [sym_grouping] = STATE(1420), + [sym__primitive] = STATE(1420), + [sym_namespace] = STATE(1956), + [sym_ns_qualified_name] = STATE(597), + [sym_number] = STATE(1420), + [sym_string] = STATE(1420), + [sym_func_call] = STATE(1420), + [sym_indirect_func_call] = STATE(1471), + [sym_comment] = STATE(1252), + [aux_sym_if_statement_repeat1] = STATE(1252), + [sym_identifier] = ACTIONS(137), + [anon_sym_SEMI] = ACTIONS(472), + [anon_sym_if] = ACTIONS(139), + [anon_sym_LPAREN] = ACTIONS(434), + [anon_sym_while] = ACTIONS(143), [anon_sym_do] = ACTIONS(93), - [anon_sym_for] = ACTIONS(135), - [sym_break_statement] = ACTIONS(572), - [sym_continue_statement] = ACTIONS(572), + [anon_sym_for] = ACTIONS(145), + [sym_break_statement] = ACTIONS(474), + [sym_continue_statement] = ACTIONS(474), [anon_sym_delete] = ACTIONS(99), - [anon_sym_exit] = ACTIONS(139), - [anon_sym_return] = ACTIONS(141), + [anon_sym_exit] = ACTIONS(149), + [anon_sym_return] = ACTIONS(151), [anon_sym_switch] = ACTIONS(105), [anon_sym_LBRACE] = ACTIONS(268), - [anon_sym_getline] = ACTIONS(147), - [sym_next_statement] = ACTIONS(572), - [sym_nextfile_statement] = ACTIONS(572), - [anon_sym_print] = ACTIONS(149), - [anon_sym_printf] = ACTIONS(151), - [anon_sym_SLASH] = ACTIONS(153), - [anon_sym_PLUS] = ACTIONS(155), - [anon_sym_DASH] = ACTIONS(155), - [anon_sym_BANG] = ACTIONS(157), - [anon_sym_PLUS_PLUS] = ACTIONS(159), - [anon_sym_DASH_DASH] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(161), - [anon_sym_AT] = ACTIONS(163), - [aux_sym_number_token1] = ACTIONS(165), - [aux_sym_number_token2] = ACTIONS(167), - [anon_sym_DQUOTE] = ACTIONS(169), - [anon_sym_POUND] = ACTIONS(171), + [anon_sym_getline] = ACTIONS(153), + [sym_next_statement] = ACTIONS(474), + [sym_nextfile_statement] = ACTIONS(474), + [anon_sym_print] = ACTIONS(155), + [anon_sym_printf] = ACTIONS(157), + [anon_sym_SLASH] = ACTIONS(438), + [anon_sym_PLUS] = ACTIONS(161), + [anon_sym_DASH] = ACTIONS(161), + [anon_sym_BANG] = ACTIONS(440), + [anon_sym_PLUS_PLUS] = ACTIONS(442), + [anon_sym_DASH_DASH] = ACTIONS(442), + [anon_sym_DOLLAR] = ACTIONS(444), + [anon_sym_AT] = ACTIONS(446), + [aux_sym_number_token1] = ACTIONS(169), + [aux_sym_number_token2] = ACTIONS(306), + [anon_sym_DQUOTE] = ACTIONS(308), + [anon_sym_POUND] = ACTIONS(135), }, - [61] = { - [sym__statement] = STATE(1242), - [sym__statement_separated] = STATE(1242), - [sym__control_statement] = STATE(1242), - [sym_if_statement] = STATE(1242), - [sym_while_statement] = STATE(1242), - [sym_do_while_statement] = STATE(1242), - [sym_for_statement] = STATE(1242), - [sym_for_in_statement] = STATE(1242), - [sym_delete_statement] = STATE(1242), - [sym_exit_statement] = STATE(1242), - [sym_return_statement] = STATE(1242), - [sym_switch_statement] = STATE(1242), - [sym__io_statement] = STATE(1242), - [sym__getline_exp] = STATE(503), - [sym_getline_input] = STATE(503), - [sym_getline_file] = STATE(503), - [sym_print_statement] = STATE(890), - [sym_printf_statement] = STATE(890), - [sym_redirected_io_statement] = STATE(1242), - [sym_piped_io_statement] = STATE(1242), - [sym_block] = STATE(1195), - [sym__exp] = STATE(503), - [sym_ternary_exp] = STATE(447), - [sym_binary_exp] = STATE(447), - [sym__binary_in] = STATE(446), - [sym_unary_exp] = STATE(447), - [sym_update_exp] = STATE(503), - [sym_assignment_exp] = STATE(503), - [sym_piped_io_exp] = STATE(503), - [sym_string_concat] = STATE(447), - [sym_field_ref] = STATE(272), - [sym_array_ref] = STATE(253), - [sym_regex] = STATE(503), - [sym_regex_constant] = STATE(503), - [sym_grouping] = STATE(447), - [sym__primitive] = STATE(447), - [sym_namespace] = STATE(1955), - [sym_ns_qualified_name] = STATE(221), - [sym_number] = STATE(447), - [sym_string] = STATE(447), - [sym_func_call] = STATE(447), - [sym_indirect_func_call] = STATE(503), - [sym_comment] = STATE(50), - [aux_sym_if_statement_repeat1] = STATE(50), - [sym_identifier] = ACTIONS(127), - [anon_sym_SEMI] = ACTIONS(294), - [anon_sym_if] = ACTIONS(129), - [anon_sym_LPAREN] = ACTIONS(131), - [anon_sym_while] = ACTIONS(133), + [59] = { + [sym__statement] = STATE(1231), + [sym__statement_separated] = STATE(4), + [sym__control_statement] = STATE(1231), + [sym_if_statement] = STATE(1231), + [sym_while_statement] = STATE(1231), + [sym_do_while_statement] = STATE(1231), + [sym_for_statement] = STATE(1231), + [sym_for_in_statement] = STATE(1231), + [sym_delete_statement] = STATE(1231), + [sym_exit_statement] = STATE(1231), + [sym_return_statement] = STATE(1231), + [sym_switch_statement] = STATE(1231), + [sym__io_statement] = STATE(1231), + [sym__getline_exp] = STATE(1471), + [sym_getline_input] = STATE(1471), + [sym_getline_file] = STATE(1471), + [sym_print_statement] = STATE(1697), + [sym_printf_statement] = STATE(1697), + [sym_redirected_io_statement] = STATE(1231), + [sym_piped_io_statement] = STATE(1231), + [sym_block] = STATE(1198), + [sym__exp] = STATE(1471), + [sym_ternary_exp] = STATE(1420), + [sym_binary_exp] = STATE(1420), + [sym__binary_in] = STATE(1385), + [sym_unary_exp] = STATE(1420), + [sym_update_exp] = STATE(1471), + [sym_assignment_exp] = STATE(1471), + [sym_piped_io_exp] = STATE(1471), + [sym_string_concat] = STATE(1420), + [sym_field_ref] = STATE(705), + [sym_array_ref] = STATE(614), + [sym_regex] = STATE(1471), + [sym_regex_constant] = STATE(1471), + [sym_grouping] = STATE(1420), + [sym__primitive] = STATE(1420), + [sym_namespace] = STATE(1956), + [sym_ns_qualified_name] = STATE(597), + [sym_number] = STATE(1420), + [sym_string] = STATE(1420), + [sym_func_call] = STATE(1420), + [sym_indirect_func_call] = STATE(1471), + [sym_comment] = STATE(58), + [aux_sym_if_statement_repeat1] = STATE(58), + [sym_identifier] = ACTIONS(137), + [anon_sym_SEMI] = ACTIONS(448), + [anon_sym_if] = ACTIONS(139), + [anon_sym_LPAREN] = ACTIONS(434), + [anon_sym_while] = ACTIONS(143), [anon_sym_do] = ACTIONS(93), - [anon_sym_for] = ACTIONS(135), - [sym_break_statement] = ACTIONS(296), - [sym_continue_statement] = ACTIONS(296), + [anon_sym_for] = ACTIONS(145), + [sym_break_statement] = ACTIONS(450), + [sym_continue_statement] = ACTIONS(450), [anon_sym_delete] = ACTIONS(99), - [anon_sym_exit] = ACTIONS(139), - [anon_sym_return] = ACTIONS(141), + [anon_sym_exit] = ACTIONS(149), + [anon_sym_return] = ACTIONS(151), [anon_sym_switch] = ACTIONS(105), [anon_sym_LBRACE] = ACTIONS(268), - [anon_sym_getline] = ACTIONS(147), - [sym_next_statement] = ACTIONS(296), - [sym_nextfile_statement] = ACTIONS(296), - [anon_sym_print] = ACTIONS(149), - [anon_sym_printf] = ACTIONS(151), - [anon_sym_SLASH] = ACTIONS(153), - [anon_sym_PLUS] = ACTIONS(155), - [anon_sym_DASH] = ACTIONS(155), - [anon_sym_BANG] = ACTIONS(157), - [anon_sym_PLUS_PLUS] = ACTIONS(159), - [anon_sym_DASH_DASH] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(161), - [anon_sym_AT] = ACTIONS(163), - [aux_sym_number_token1] = ACTIONS(165), - [aux_sym_number_token2] = ACTIONS(167), - [anon_sym_DQUOTE] = ACTIONS(169), - [anon_sym_POUND] = ACTIONS(171), + [anon_sym_getline] = ACTIONS(153), + [sym_next_statement] = ACTIONS(450), + [sym_nextfile_statement] = ACTIONS(450), + [anon_sym_print] = ACTIONS(155), + [anon_sym_printf] = ACTIONS(157), + [anon_sym_SLASH] = ACTIONS(438), + [anon_sym_PLUS] = ACTIONS(161), + [anon_sym_DASH] = ACTIONS(161), + [anon_sym_BANG] = ACTIONS(440), + [anon_sym_PLUS_PLUS] = ACTIONS(442), + [anon_sym_DASH_DASH] = ACTIONS(442), + [anon_sym_DOLLAR] = ACTIONS(444), + [anon_sym_AT] = ACTIONS(446), + [aux_sym_number_token1] = ACTIONS(169), + [aux_sym_number_token2] = ACTIONS(306), + [anon_sym_DQUOTE] = ACTIONS(308), + [anon_sym_POUND] = ACTIONS(135), }, - [62] = { - [sym__statement] = STATE(1240), - [sym__statement_separated] = STATE(1240), - [sym__control_statement] = STATE(1240), - [sym_if_statement] = STATE(1240), - [sym_while_statement] = STATE(1240), - [sym_do_while_statement] = STATE(1240), - [sym_for_statement] = STATE(1240), - [sym_for_in_statement] = STATE(1240), - [sym_delete_statement] = STATE(1240), - [sym_exit_statement] = STATE(1240), - [sym_return_statement] = STATE(1240), - [sym_switch_statement] = STATE(1240), - [sym__io_statement] = STATE(1240), + [60] = { + [sym__statement] = STATE(1233), + [sym__statement_separated] = STATE(1233), + [sym__control_statement] = STATE(1233), + [sym_if_statement] = STATE(1233), + [sym_while_statement] = STATE(1233), + [sym_do_while_statement] = STATE(1233), + [sym_for_statement] = STATE(1233), + [sym_for_in_statement] = STATE(1233), + [sym_delete_statement] = STATE(1233), + [sym_exit_statement] = STATE(1233), + [sym_return_statement] = STATE(1233), + [sym_switch_statement] = STATE(1233), + [sym__io_statement] = STATE(1233), [sym__getline_exp] = STATE(503), [sym_getline_input] = STATE(503), [sym_getline_file] = STATE(503), - [sym_print_statement] = STATE(890), - [sym_printf_statement] = STATE(890), - [sym_redirected_io_statement] = STATE(1240), - [sym_piped_io_statement] = STATE(1240), - [sym_block] = STATE(1239), + [sym_print_statement] = STATE(869), + [sym_printf_statement] = STATE(869), + [sym_redirected_io_statement] = STATE(1233), + [sym_piped_io_statement] = STATE(1233), + [sym_block] = STATE(1250), [sym__exp] = STATE(503), - [sym_ternary_exp] = STATE(447), - [sym_binary_exp] = STATE(447), - [sym__binary_in] = STATE(446), - [sym_unary_exp] = STATE(447), + [sym_ternary_exp] = STATE(427), + [sym_binary_exp] = STATE(427), + [sym__binary_in] = STATE(426), + [sym_unary_exp] = STATE(427), [sym_update_exp] = STATE(503), [sym_assignment_exp] = STATE(503), [sym_piped_io_exp] = STATE(503), - [sym_string_concat] = STATE(447), - [sym_field_ref] = STATE(272), - [sym_array_ref] = STATE(253), + [sym_string_concat] = STATE(427), + [sym_field_ref] = STATE(274), + [sym_array_ref] = STATE(268), [sym_regex] = STATE(503), [sym_regex_constant] = STATE(503), - [sym_grouping] = STATE(447), - [sym__primitive] = STATE(447), - [sym_namespace] = STATE(1955), - [sym_ns_qualified_name] = STATE(221), - [sym_number] = STATE(447), - [sym_string] = STATE(447), - [sym_func_call] = STATE(447), + [sym_grouping] = STATE(427), + [sym__primitive] = STATE(427), + [sym_namespace] = STATE(1956), + [sym_ns_qualified_name] = STATE(244), + [sym_number] = STATE(427), + [sym_string] = STATE(427), + [sym_func_call] = STATE(427), [sym_indirect_func_call] = STATE(503), - [sym_comment] = STATE(1238), - [aux_sym_if_statement_repeat1] = STATE(1238), - [sym_identifier] = ACTIONS(127), - [anon_sym_SEMI] = ACTIONS(346), - [anon_sym_if] = ACTIONS(129), - [anon_sym_LPAREN] = ACTIONS(131), - [anon_sym_while] = ACTIONS(133), - [anon_sym_do] = ACTIONS(93), - [anon_sym_for] = ACTIONS(135), - [sym_break_statement] = ACTIONS(348), - [sym_continue_statement] = ACTIONS(348), - [anon_sym_delete] = ACTIONS(99), - [anon_sym_exit] = ACTIONS(139), - [anon_sym_return] = ACTIONS(141), - [anon_sym_switch] = ACTIONS(105), - [anon_sym_LBRACE] = ACTIONS(268), - [anon_sym_getline] = ACTIONS(147), - [sym_next_statement] = ACTIONS(348), - [sym_nextfile_statement] = ACTIONS(348), - [anon_sym_print] = ACTIONS(149), - [anon_sym_printf] = ACTIONS(151), - [anon_sym_SLASH] = ACTIONS(153), - [anon_sym_PLUS] = ACTIONS(155), - [anon_sym_DASH] = ACTIONS(155), - [anon_sym_BANG] = ACTIONS(157), - [anon_sym_PLUS_PLUS] = ACTIONS(159), - [anon_sym_DASH_DASH] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(161), - [anon_sym_AT] = ACTIONS(163), - [aux_sym_number_token1] = ACTIONS(165), - [aux_sym_number_token2] = ACTIONS(167), - [anon_sym_DQUOTE] = ACTIONS(169), - [anon_sym_POUND] = ACTIONS(171), - }, - [63] = { - [sym__statement] = STATE(1218), - [sym__statement_separated] = STATE(146), - [sym__control_statement] = STATE(1218), - [sym_if_statement] = STATE(1218), - [sym_while_statement] = STATE(1218), - [sym_do_while_statement] = STATE(1218), - [sym_for_statement] = STATE(1218), - [sym_for_in_statement] = STATE(1218), - [sym_delete_statement] = STATE(1218), - [sym_exit_statement] = STATE(1218), - [sym_return_statement] = STATE(1218), - [sym_switch_statement] = STATE(1218), - [sym__io_statement] = STATE(1218), - [sym__getline_exp] = STATE(1568), - [sym_getline_input] = STATE(1568), - [sym_getline_file] = STATE(1568), - [sym_print_statement] = STATE(1699), - [sym_printf_statement] = STATE(1699), - [sym_redirected_io_statement] = STATE(1218), - [sym_piped_io_statement] = STATE(1218), - [sym_block] = STATE(1213), - [sym__exp] = STATE(1568), - [sym_ternary_exp] = STATE(1470), - [sym_binary_exp] = STATE(1470), - [sym__binary_in] = STATE(1373), - [sym_unary_exp] = STATE(1470), - [sym_update_exp] = STATE(1568), - [sym_assignment_exp] = STATE(1568), - [sym_piped_io_exp] = STATE(1568), - [sym_string_concat] = STATE(1470), - [sym_field_ref] = STATE(1121), - [sym_array_ref] = STATE(1022), - [sym_regex] = STATE(1568), - [sym_regex_constant] = STATE(1568), - [sym_grouping] = STATE(1470), - [sym__primitive] = STATE(1470), - [sym_namespace] = STATE(1955), - [sym_ns_qualified_name] = STATE(744), - [sym_number] = STATE(1470), - [sym_string] = STATE(1470), - [sym_func_call] = STATE(1470), - [sym_indirect_func_call] = STATE(1568), - [sym_comment] = STATE(87), - [aux_sym_if_statement_repeat1] = STATE(87), - [sym_identifier] = ACTIONS(362), - [anon_sym_SEMI] = ACTIONS(520), - [anon_sym_if] = ACTIONS(364), - [anon_sym_LPAREN] = ACTIONS(366), - [anon_sym_while] = ACTIONS(368), - [anon_sym_do] = ACTIONS(93), - [anon_sym_for] = ACTIONS(370), - [sym_break_statement] = ACTIONS(522), - [sym_continue_statement] = ACTIONS(522), - [anon_sym_delete] = ACTIONS(99), - [anon_sym_exit] = ACTIONS(372), - [anon_sym_return] = ACTIONS(374), - [anon_sym_switch] = ACTIONS(105), - [anon_sym_LBRACE] = ACTIONS(268), - [anon_sym_getline] = ACTIONS(376), - [sym_next_statement] = ACTIONS(522), - [sym_nextfile_statement] = ACTIONS(522), - [anon_sym_print] = ACTIONS(378), - [anon_sym_printf] = ACTIONS(380), - [anon_sym_SLASH] = ACTIONS(382), - [anon_sym_PLUS] = ACTIONS(384), - [anon_sym_DASH] = ACTIONS(384), - [anon_sym_BANG] = ACTIONS(386), - [anon_sym_PLUS_PLUS] = ACTIONS(388), - [anon_sym_DASH_DASH] = ACTIONS(388), - [anon_sym_DOLLAR] = ACTIONS(390), - [anon_sym_AT] = ACTIONS(392), - [aux_sym_number_token1] = ACTIONS(123), - [aux_sym_number_token2] = ACTIONS(286), - [anon_sym_DQUOTE] = ACTIONS(288), - [anon_sym_POUND] = ACTIONS(171), - }, - [64] = { - [sym__statement] = STATE(1197), - [sym__statement_separated] = STATE(3), - [sym__control_statement] = STATE(1197), - [sym_if_statement] = STATE(1197), - [sym_while_statement] = STATE(1197), - [sym_do_while_statement] = STATE(1197), - [sym_for_statement] = STATE(1197), - [sym_for_in_statement] = STATE(1197), - [sym_delete_statement] = STATE(1197), - [sym_exit_statement] = STATE(1197), - [sym_return_statement] = STATE(1197), - [sym_switch_statement] = STATE(1197), - [sym__io_statement] = STATE(1197), - [sym__getline_exp] = STATE(1495), - [sym_getline_input] = STATE(1495), - [sym_getline_file] = STATE(1495), - [sym_print_statement] = STATE(1696), - [sym_printf_statement] = STATE(1696), - [sym_redirected_io_statement] = STATE(1197), - [sym_piped_io_statement] = STATE(1197), - [sym_block] = STATE(1198), - [sym__exp] = STATE(1495), - [sym_ternary_exp] = STATE(1421), - [sym_binary_exp] = STATE(1421), - [sym__binary_in] = STATE(1373), - [sym_unary_exp] = STATE(1421), - [sym_update_exp] = STATE(1495), - [sym_assignment_exp] = STATE(1495), - [sym_piped_io_exp] = STATE(1495), - [sym_string_concat] = STATE(1421), - [sym_field_ref] = STATE(703), - [sym_array_ref] = STATE(610), - [sym_regex] = STATE(1495), - [sym_regex_constant] = STATE(1495), - [sym_grouping] = STATE(1421), - [sym__primitive] = STATE(1421), - [sym_namespace] = STATE(1955), - [sym_ns_qualified_name] = STATE(607), - [sym_number] = STATE(1421), - [sym_string] = STATE(1421), - [sym_func_call] = STATE(1421), - [sym_indirect_func_call] = STATE(1495), - [sym_comment] = STATE(33), - [aux_sym_if_statement_repeat1] = STATE(33), + [sym_comment] = STATE(101), + [aux_sym_if_statement_repeat1] = STATE(101), [sym_identifier] = ACTIONS(85), - [anon_sym_SEMI] = ACTIONS(548), + [anon_sym_SEMI] = ACTIONS(518), [anon_sym_if] = ACTIONS(87), - [anon_sym_LPAREN] = ACTIONS(272), + [anon_sym_LPAREN] = ACTIONS(89), [anon_sym_while] = ACTIONS(91), [anon_sym_do] = ACTIONS(93), [anon_sym_for] = ACTIONS(95), - [sym_break_statement] = ACTIONS(550), - [sym_continue_statement] = ACTIONS(550), + [sym_break_statement] = ACTIONS(520), + [sym_continue_statement] = ACTIONS(520), [anon_sym_delete] = ACTIONS(99), [anon_sym_exit] = ACTIONS(101), [anon_sym_return] = ACTIONS(103), [anon_sym_switch] = ACTIONS(105), [anon_sym_LBRACE] = ACTIONS(268), - [anon_sym_getline] = ACTIONS(107), - [sym_next_statement] = ACTIONS(550), - [sym_nextfile_statement] = ACTIONS(550), - [anon_sym_print] = ACTIONS(109), - [anon_sym_printf] = ACTIONS(111), - [anon_sym_SLASH] = ACTIONS(276), - [anon_sym_PLUS] = ACTIONS(115), - [anon_sym_DASH] = ACTIONS(115), - [anon_sym_BANG] = ACTIONS(278), - [anon_sym_PLUS_PLUS] = ACTIONS(280), - [anon_sym_DASH_DASH] = ACTIONS(280), - [anon_sym_DOLLAR] = ACTIONS(282), - [anon_sym_AT] = ACTIONS(284), - [aux_sym_number_token1] = ACTIONS(123), - [aux_sym_number_token2] = ACTIONS(286), - [anon_sym_DQUOTE] = ACTIONS(288), - [anon_sym_POUND] = ACTIONS(171), + [anon_sym_getline] = ACTIONS(111), + [sym_next_statement] = ACTIONS(520), + [sym_nextfile_statement] = ACTIONS(520), + [anon_sym_print] = ACTIONS(113), + [anon_sym_printf] = ACTIONS(115), + [anon_sym_SLASH] = ACTIONS(117), + [anon_sym_PLUS] = ACTIONS(119), + [anon_sym_DASH] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(121), + [anon_sym_PLUS_PLUS] = ACTIONS(123), + [anon_sym_DASH_DASH] = ACTIONS(123), + [anon_sym_DOLLAR] = ACTIONS(125), + [anon_sym_AT] = ACTIONS(127), + [aux_sym_number_token1] = ACTIONS(129), + [aux_sym_number_token2] = ACTIONS(131), + [anon_sym_DQUOTE] = ACTIONS(133), + [anon_sym_POUND] = ACTIONS(135), + }, + [61] = { + [sym__statement] = STATE(1128), + [sym__statement_separated] = STATE(141), + [sym__control_statement] = STATE(1128), + [sym_if_statement] = STATE(1128), + [sym_while_statement] = STATE(1128), + [sym_do_while_statement] = STATE(1128), + [sym_for_statement] = STATE(1128), + [sym_for_in_statement] = STATE(1128), + [sym_delete_statement] = STATE(1128), + [sym_exit_statement] = STATE(1128), + [sym_return_statement] = STATE(1128), + [sym_switch_statement] = STATE(1128), + [sym__io_statement] = STATE(1128), + [sym__getline_exp] = STATE(1562), + [sym_getline_input] = STATE(1562), + [sym_getline_file] = STATE(1562), + [sym_print_statement] = STATE(1698), + [sym_printf_statement] = STATE(1698), + [sym_redirected_io_statement] = STATE(1128), + [sym_piped_io_statement] = STATE(1128), + [sym_block] = STATE(1129), + [sym__exp] = STATE(1562), + [sym_ternary_exp] = STATE(1461), + [sym_binary_exp] = STATE(1461), + [sym__binary_in] = STATE(1305), + [sym_unary_exp] = STATE(1461), + [sym_update_exp] = STATE(1562), + [sym_assignment_exp] = STATE(1562), + [sym_piped_io_exp] = STATE(1562), + [sym_string_concat] = STATE(1461), + [sym_field_ref] = STATE(950), + [sym_array_ref] = STATE(740), + [sym_regex] = STATE(1562), + [sym_regex_constant] = STATE(1562), + [sym_grouping] = STATE(1461), + [sym__primitive] = STATE(1461), + [sym_namespace] = STATE(2068), + [sym_ns_qualified_name] = STATE(672), + [sym_number] = STATE(1461), + [sym_string] = STATE(1461), + [sym_func_call] = STATE(1461), + [sym_indirect_func_call] = STATE(1562), + [sym_comment] = STATE(1252), + [aux_sym_if_statement_repeat1] = STATE(1252), + [sym_identifier] = ACTIONS(336), + [anon_sym_SEMI] = ACTIONS(522), + [anon_sym_if] = ACTIONS(340), + [anon_sym_LPAREN] = ACTIONS(342), + [anon_sym_while] = ACTIONS(344), + [anon_sym_do] = ACTIONS(49), + [anon_sym_for] = ACTIONS(346), + [sym_break_statement] = ACTIONS(524), + [sym_continue_statement] = ACTIONS(524), + [anon_sym_delete] = ACTIONS(55), + [anon_sym_exit] = ACTIONS(350), + [anon_sym_return] = ACTIONS(352), + [anon_sym_switch] = ACTIONS(61), + [anon_sym_LBRACE] = ACTIONS(316), + [anon_sym_getline] = ACTIONS(354), + [sym_next_statement] = ACTIONS(524), + [sym_nextfile_statement] = ACTIONS(524), + [anon_sym_print] = ACTIONS(356), + [anon_sym_printf] = ACTIONS(358), + [anon_sym_SLASH] = ACTIONS(360), + [anon_sym_PLUS] = ACTIONS(362), + [anon_sym_DASH] = ACTIONS(362), + [anon_sym_BANG] = ACTIONS(364), + [anon_sym_PLUS_PLUS] = ACTIONS(366), + [anon_sym_DASH_DASH] = ACTIONS(366), + [anon_sym_DOLLAR] = ACTIONS(368), + [anon_sym_AT] = ACTIONS(370), + [aux_sym_number_token1] = ACTIONS(79), + [aux_sym_number_token2] = ACTIONS(328), + [anon_sym_DQUOTE] = ACTIONS(330), + [anon_sym_POUND] = ACTIONS(135), + }, + [62] = { + [sym__statement] = STATE(1130), + [sym__statement_separated] = STATE(141), + [sym__control_statement] = STATE(1130), + [sym_if_statement] = STATE(1130), + [sym_while_statement] = STATE(1130), + [sym_do_while_statement] = STATE(1130), + [sym_for_statement] = STATE(1130), + [sym_for_in_statement] = STATE(1130), + [sym_delete_statement] = STATE(1130), + [sym_exit_statement] = STATE(1130), + [sym_return_statement] = STATE(1130), + [sym_switch_statement] = STATE(1130), + [sym__io_statement] = STATE(1130), + [sym__getline_exp] = STATE(1562), + [sym_getline_input] = STATE(1562), + [sym_getline_file] = STATE(1562), + [sym_print_statement] = STATE(1698), + [sym_printf_statement] = STATE(1698), + [sym_redirected_io_statement] = STATE(1130), + [sym_piped_io_statement] = STATE(1130), + [sym_block] = STATE(1131), + [sym__exp] = STATE(1562), + [sym_ternary_exp] = STATE(1461), + [sym_binary_exp] = STATE(1461), + [sym__binary_in] = STATE(1305), + [sym_unary_exp] = STATE(1461), + [sym_update_exp] = STATE(1562), + [sym_assignment_exp] = STATE(1562), + [sym_piped_io_exp] = STATE(1562), + [sym_string_concat] = STATE(1461), + [sym_field_ref] = STATE(950), + [sym_array_ref] = STATE(740), + [sym_regex] = STATE(1562), + [sym_regex_constant] = STATE(1562), + [sym_grouping] = STATE(1461), + [sym__primitive] = STATE(1461), + [sym_namespace] = STATE(2068), + [sym_ns_qualified_name] = STATE(672), + [sym_number] = STATE(1461), + [sym_string] = STATE(1461), + [sym_func_call] = STATE(1461), + [sym_indirect_func_call] = STATE(1562), + [sym_comment] = STATE(61), + [aux_sym_if_statement_repeat1] = STATE(61), + [sym_identifier] = ACTIONS(336), + [anon_sym_SEMI] = ACTIONS(526), + [anon_sym_if] = ACTIONS(340), + [anon_sym_LPAREN] = ACTIONS(342), + [anon_sym_while] = ACTIONS(344), + [anon_sym_do] = ACTIONS(49), + [anon_sym_for] = ACTIONS(346), + [sym_break_statement] = ACTIONS(528), + [sym_continue_statement] = ACTIONS(528), + [anon_sym_delete] = ACTIONS(55), + [anon_sym_exit] = ACTIONS(350), + [anon_sym_return] = ACTIONS(352), + [anon_sym_switch] = ACTIONS(61), + [anon_sym_LBRACE] = ACTIONS(316), + [anon_sym_getline] = ACTIONS(354), + [sym_next_statement] = ACTIONS(528), + [sym_nextfile_statement] = ACTIONS(528), + [anon_sym_print] = ACTIONS(356), + [anon_sym_printf] = ACTIONS(358), + [anon_sym_SLASH] = ACTIONS(360), + [anon_sym_PLUS] = ACTIONS(362), + [anon_sym_DASH] = ACTIONS(362), + [anon_sym_BANG] = ACTIONS(364), + [anon_sym_PLUS_PLUS] = ACTIONS(366), + [anon_sym_DASH_DASH] = ACTIONS(366), + [anon_sym_DOLLAR] = ACTIONS(368), + [anon_sym_AT] = ACTIONS(370), + [aux_sym_number_token1] = ACTIONS(79), + [aux_sym_number_token2] = ACTIONS(328), + [anon_sym_DQUOTE] = ACTIONS(330), + [anon_sym_POUND] = ACTIONS(135), + }, + [63] = { + [sym__statement] = STATE(1132), + [sym__statement_separated] = STATE(141), + [sym__control_statement] = STATE(1132), + [sym_if_statement] = STATE(1132), + [sym_while_statement] = STATE(1132), + [sym_do_while_statement] = STATE(1132), + [sym_for_statement] = STATE(1132), + [sym_for_in_statement] = STATE(1132), + [sym_delete_statement] = STATE(1132), + [sym_exit_statement] = STATE(1132), + [sym_return_statement] = STATE(1132), + [sym_switch_statement] = STATE(1132), + [sym__io_statement] = STATE(1132), + [sym__getline_exp] = STATE(1562), + [sym_getline_input] = STATE(1562), + [sym_getline_file] = STATE(1562), + [sym_print_statement] = STATE(1698), + [sym_printf_statement] = STATE(1698), + [sym_redirected_io_statement] = STATE(1132), + [sym_piped_io_statement] = STATE(1132), + [sym_block] = STATE(1133), + [sym__exp] = STATE(1562), + [sym_ternary_exp] = STATE(1461), + [sym_binary_exp] = STATE(1461), + [sym__binary_in] = STATE(1305), + [sym_unary_exp] = STATE(1461), + [sym_update_exp] = STATE(1562), + [sym_assignment_exp] = STATE(1562), + [sym_piped_io_exp] = STATE(1562), + [sym_string_concat] = STATE(1461), + [sym_field_ref] = STATE(950), + [sym_array_ref] = STATE(740), + [sym_regex] = STATE(1562), + [sym_regex_constant] = STATE(1562), + [sym_grouping] = STATE(1461), + [sym__primitive] = STATE(1461), + [sym_namespace] = STATE(2068), + [sym_ns_qualified_name] = STATE(672), + [sym_number] = STATE(1461), + [sym_string] = STATE(1461), + [sym_func_call] = STATE(1461), + [sym_indirect_func_call] = STATE(1562), + [sym_comment] = STATE(1252), + [aux_sym_if_statement_repeat1] = STATE(1252), + [sym_identifier] = ACTIONS(336), + [anon_sym_SEMI] = ACTIONS(400), + [anon_sym_if] = ACTIONS(340), + [anon_sym_LPAREN] = ACTIONS(342), + [anon_sym_while] = ACTIONS(344), + [anon_sym_do] = ACTIONS(49), + [anon_sym_for] = ACTIONS(346), + [sym_break_statement] = ACTIONS(402), + [sym_continue_statement] = ACTIONS(402), + [anon_sym_delete] = ACTIONS(55), + [anon_sym_exit] = ACTIONS(350), + [anon_sym_return] = ACTIONS(352), + [anon_sym_switch] = ACTIONS(61), + [anon_sym_LBRACE] = ACTIONS(316), + [anon_sym_getline] = ACTIONS(354), + [sym_next_statement] = ACTIONS(402), + [sym_nextfile_statement] = ACTIONS(402), + [anon_sym_print] = ACTIONS(356), + [anon_sym_printf] = ACTIONS(358), + [anon_sym_SLASH] = ACTIONS(360), + [anon_sym_PLUS] = ACTIONS(362), + [anon_sym_DASH] = ACTIONS(362), + [anon_sym_BANG] = ACTIONS(364), + [anon_sym_PLUS_PLUS] = ACTIONS(366), + [anon_sym_DASH_DASH] = ACTIONS(366), + [anon_sym_DOLLAR] = ACTIONS(368), + [anon_sym_AT] = ACTIONS(370), + [aux_sym_number_token1] = ACTIONS(79), + [aux_sym_number_token2] = ACTIONS(328), + [anon_sym_DQUOTE] = ACTIONS(330), + [anon_sym_POUND] = ACTIONS(135), + }, + [64] = { + [sym__statement] = STATE(1134), + [sym__statement_separated] = STATE(141), + [sym__control_statement] = STATE(1134), + [sym_if_statement] = STATE(1134), + [sym_while_statement] = STATE(1134), + [sym_do_while_statement] = STATE(1134), + [sym_for_statement] = STATE(1134), + [sym_for_in_statement] = STATE(1134), + [sym_delete_statement] = STATE(1134), + [sym_exit_statement] = STATE(1134), + [sym_return_statement] = STATE(1134), + [sym_switch_statement] = STATE(1134), + [sym__io_statement] = STATE(1134), + [sym__getline_exp] = STATE(1562), + [sym_getline_input] = STATE(1562), + [sym_getline_file] = STATE(1562), + [sym_print_statement] = STATE(1698), + [sym_printf_statement] = STATE(1698), + [sym_redirected_io_statement] = STATE(1134), + [sym_piped_io_statement] = STATE(1134), + [sym_block] = STATE(1135), + [sym__exp] = STATE(1562), + [sym_ternary_exp] = STATE(1461), + [sym_binary_exp] = STATE(1461), + [sym__binary_in] = STATE(1305), + [sym_unary_exp] = STATE(1461), + [sym_update_exp] = STATE(1562), + [sym_assignment_exp] = STATE(1562), + [sym_piped_io_exp] = STATE(1562), + [sym_string_concat] = STATE(1461), + [sym_field_ref] = STATE(950), + [sym_array_ref] = STATE(740), + [sym_regex] = STATE(1562), + [sym_regex_constant] = STATE(1562), + [sym_grouping] = STATE(1461), + [sym__primitive] = STATE(1461), + [sym_namespace] = STATE(2068), + [sym_ns_qualified_name] = STATE(672), + [sym_number] = STATE(1461), + [sym_string] = STATE(1461), + [sym_func_call] = STATE(1461), + [sym_indirect_func_call] = STATE(1562), + [sym_comment] = STATE(1252), + [aux_sym_if_statement_repeat1] = STATE(1252), + [sym_identifier] = ACTIONS(336), + [anon_sym_SEMI] = ACTIONS(310), + [anon_sym_if] = ACTIONS(340), + [anon_sym_LPAREN] = ACTIONS(342), + [anon_sym_while] = ACTIONS(344), + [anon_sym_do] = ACTIONS(49), + [anon_sym_for] = ACTIONS(346), + [sym_break_statement] = ACTIONS(314), + [sym_continue_statement] = ACTIONS(314), + [anon_sym_delete] = ACTIONS(55), + [anon_sym_exit] = ACTIONS(350), + [anon_sym_return] = ACTIONS(352), + [anon_sym_switch] = ACTIONS(61), + [anon_sym_LBRACE] = ACTIONS(316), + [anon_sym_getline] = ACTIONS(354), + [sym_next_statement] = ACTIONS(314), + [sym_nextfile_statement] = ACTIONS(314), + [anon_sym_print] = ACTIONS(356), + [anon_sym_printf] = ACTIONS(358), + [anon_sym_SLASH] = ACTIONS(360), + [anon_sym_PLUS] = ACTIONS(362), + [anon_sym_DASH] = ACTIONS(362), + [anon_sym_BANG] = ACTIONS(364), + [anon_sym_PLUS_PLUS] = ACTIONS(366), + [anon_sym_DASH_DASH] = ACTIONS(366), + [anon_sym_DOLLAR] = ACTIONS(368), + [anon_sym_AT] = ACTIONS(370), + [aux_sym_number_token1] = ACTIONS(79), + [aux_sym_number_token2] = ACTIONS(328), + [anon_sym_DQUOTE] = ACTIONS(330), + [anon_sym_POUND] = ACTIONS(135), }, [65] = { - [sym__statement] = STATE(1220), - [sym__statement_separated] = STATE(146), - [sym__control_statement] = STATE(1220), - [sym_if_statement] = STATE(1220), - [sym_while_statement] = STATE(1220), - [sym_do_while_statement] = STATE(1220), - [sym_for_statement] = STATE(1220), - [sym_for_in_statement] = STATE(1220), - [sym_delete_statement] = STATE(1220), - [sym_exit_statement] = STATE(1220), - [sym_return_statement] = STATE(1220), - [sym_switch_statement] = STATE(1220), - [sym__io_statement] = STATE(1220), - [sym__getline_exp] = STATE(1568), - [sym_getline_input] = STATE(1568), - [sym_getline_file] = STATE(1568), - [sym_print_statement] = STATE(1699), - [sym_printf_statement] = STATE(1699), - [sym_redirected_io_statement] = STATE(1220), - [sym_piped_io_statement] = STATE(1220), - [sym_block] = STATE(1219), - [sym__exp] = STATE(1568), - [sym_ternary_exp] = STATE(1470), - [sym_binary_exp] = STATE(1470), - [sym__binary_in] = STATE(1373), - [sym_unary_exp] = STATE(1470), - [sym_update_exp] = STATE(1568), - [sym_assignment_exp] = STATE(1568), - [sym_piped_io_exp] = STATE(1568), - [sym_string_concat] = STATE(1470), - [sym_field_ref] = STATE(1121), - [sym_array_ref] = STATE(1022), - [sym_regex] = STATE(1568), - [sym_regex_constant] = STATE(1568), - [sym_grouping] = STATE(1470), - [sym__primitive] = STATE(1470), - [sym_namespace] = STATE(1955), - [sym_ns_qualified_name] = STATE(744), - [sym_number] = STATE(1470), - [sym_string] = STATE(1470), - [sym_func_call] = STATE(1470), - [sym_indirect_func_call] = STATE(1568), - [sym_comment] = STATE(88), - [aux_sym_if_statement_repeat1] = STATE(88), - [sym_identifier] = ACTIONS(362), - [anon_sym_SEMI] = ACTIONS(516), - [anon_sym_if] = ACTIONS(364), - [anon_sym_LPAREN] = ACTIONS(366), - [anon_sym_while] = ACTIONS(368), - [anon_sym_do] = ACTIONS(93), - [anon_sym_for] = ACTIONS(370), - [sym_break_statement] = ACTIONS(518), - [sym_continue_statement] = ACTIONS(518), - [anon_sym_delete] = ACTIONS(99), - [anon_sym_exit] = ACTIONS(372), - [anon_sym_return] = ACTIONS(374), - [anon_sym_switch] = ACTIONS(105), - [anon_sym_LBRACE] = ACTIONS(268), - [anon_sym_getline] = ACTIONS(376), - [sym_next_statement] = ACTIONS(518), - [sym_nextfile_statement] = ACTIONS(518), - [anon_sym_print] = ACTIONS(378), - [anon_sym_printf] = ACTIONS(380), - [anon_sym_SLASH] = ACTIONS(382), - [anon_sym_PLUS] = ACTIONS(384), - [anon_sym_DASH] = ACTIONS(384), - [anon_sym_BANG] = ACTIONS(386), - [anon_sym_PLUS_PLUS] = ACTIONS(388), - [anon_sym_DASH_DASH] = ACTIONS(388), - [anon_sym_DOLLAR] = ACTIONS(390), - [anon_sym_AT] = ACTIONS(392), - [aux_sym_number_token1] = ACTIONS(123), - [aux_sym_number_token2] = ACTIONS(286), - [anon_sym_DQUOTE] = ACTIONS(288), - [anon_sym_POUND] = ACTIONS(171), + [sym__statement] = STATE(1136), + [sym__statement_separated] = STATE(141), + [sym__control_statement] = STATE(1136), + [sym_if_statement] = STATE(1136), + [sym_while_statement] = STATE(1136), + [sym_do_while_statement] = STATE(1136), + [sym_for_statement] = STATE(1136), + [sym_for_in_statement] = STATE(1136), + [sym_delete_statement] = STATE(1136), + [sym_exit_statement] = STATE(1136), + [sym_return_statement] = STATE(1136), + [sym_switch_statement] = STATE(1136), + [sym__io_statement] = STATE(1136), + [sym__getline_exp] = STATE(1562), + [sym_getline_input] = STATE(1562), + [sym_getline_file] = STATE(1562), + [sym_print_statement] = STATE(1698), + [sym_printf_statement] = STATE(1698), + [sym_redirected_io_statement] = STATE(1136), + [sym_piped_io_statement] = STATE(1136), + [sym_block] = STATE(1138), + [sym__exp] = STATE(1562), + [sym_ternary_exp] = STATE(1461), + [sym_binary_exp] = STATE(1461), + [sym__binary_in] = STATE(1305), + [sym_unary_exp] = STATE(1461), + [sym_update_exp] = STATE(1562), + [sym_assignment_exp] = STATE(1562), + [sym_piped_io_exp] = STATE(1562), + [sym_string_concat] = STATE(1461), + [sym_field_ref] = STATE(950), + [sym_array_ref] = STATE(740), + [sym_regex] = STATE(1562), + [sym_regex_constant] = STATE(1562), + [sym_grouping] = STATE(1461), + [sym__primitive] = STATE(1461), + [sym_namespace] = STATE(2068), + [sym_ns_qualified_name] = STATE(672), + [sym_number] = STATE(1461), + [sym_string] = STATE(1461), + [sym_func_call] = STATE(1461), + [sym_indirect_func_call] = STATE(1562), + [sym_comment] = STATE(1252), + [aux_sym_if_statement_repeat1] = STATE(1252), + [sym_identifier] = ACTIONS(336), + [anon_sym_SEMI] = ACTIONS(332), + [anon_sym_if] = ACTIONS(340), + [anon_sym_LPAREN] = ACTIONS(342), + [anon_sym_while] = ACTIONS(344), + [anon_sym_do] = ACTIONS(49), + [anon_sym_for] = ACTIONS(346), + [sym_break_statement] = ACTIONS(334), + [sym_continue_statement] = ACTIONS(334), + [anon_sym_delete] = ACTIONS(55), + [anon_sym_exit] = ACTIONS(350), + [anon_sym_return] = ACTIONS(352), + [anon_sym_switch] = ACTIONS(61), + [anon_sym_LBRACE] = ACTIONS(316), + [anon_sym_getline] = ACTIONS(354), + [sym_next_statement] = ACTIONS(334), + [sym_nextfile_statement] = ACTIONS(334), + [anon_sym_print] = ACTIONS(356), + [anon_sym_printf] = ACTIONS(358), + [anon_sym_SLASH] = ACTIONS(360), + [anon_sym_PLUS] = ACTIONS(362), + [anon_sym_DASH] = ACTIONS(362), + [anon_sym_BANG] = ACTIONS(364), + [anon_sym_PLUS_PLUS] = ACTIONS(366), + [anon_sym_DASH_DASH] = ACTIONS(366), + [anon_sym_DOLLAR] = ACTIONS(368), + [anon_sym_AT] = ACTIONS(370), + [aux_sym_number_token1] = ACTIONS(79), + [aux_sym_number_token2] = ACTIONS(328), + [anon_sym_DQUOTE] = ACTIONS(330), + [anon_sym_POUND] = ACTIONS(135), }, [66] = { - [sym__statement] = STATE(1237), - [sym__statement_separated] = STATE(1237), - [sym__control_statement] = STATE(1237), - [sym_if_statement] = STATE(1237), - [sym_while_statement] = STATE(1237), - [sym_do_while_statement] = STATE(1237), - [sym_for_statement] = STATE(1237), - [sym_for_in_statement] = STATE(1237), - [sym_delete_statement] = STATE(1237), - [sym_exit_statement] = STATE(1237), - [sym_return_statement] = STATE(1237), - [sym_switch_statement] = STATE(1237), - [sym__io_statement] = STATE(1237), - [sym__getline_exp] = STATE(503), - [sym_getline_input] = STATE(503), - [sym_getline_file] = STATE(503), - [sym_print_statement] = STATE(890), - [sym_printf_statement] = STATE(890), - [sym_redirected_io_statement] = STATE(1237), - [sym_piped_io_statement] = STATE(1237), - [sym_block] = STATE(1236), - [sym__exp] = STATE(503), - [sym_ternary_exp] = STATE(447), - [sym_binary_exp] = STATE(447), - [sym__binary_in] = STATE(446), - [sym_unary_exp] = STATE(447), - [sym_update_exp] = STATE(503), - [sym_assignment_exp] = STATE(503), - [sym_piped_io_exp] = STATE(503), - [sym_string_concat] = STATE(447), - [sym_field_ref] = STATE(272), - [sym_array_ref] = STATE(253), - [sym_regex] = STATE(503), - [sym_regex_constant] = STATE(503), - [sym_grouping] = STATE(447), - [sym__primitive] = STATE(447), - [sym_namespace] = STATE(1955), - [sym_ns_qualified_name] = STATE(221), - [sym_number] = STATE(447), - [sym_string] = STATE(447), - [sym_func_call] = STATE(447), - [sym_indirect_func_call] = STATE(503), - [sym_comment] = STATE(1238), - [aux_sym_if_statement_repeat1] = STATE(1238), - [sym_identifier] = ACTIONS(127), - [anon_sym_SEMI] = ACTIONS(270), - [anon_sym_if] = ACTIONS(129), - [anon_sym_LPAREN] = ACTIONS(131), - [anon_sym_while] = ACTIONS(133), - [anon_sym_do] = ACTIONS(93), - [anon_sym_for] = ACTIONS(135), - [sym_break_statement] = ACTIONS(274), - [sym_continue_statement] = ACTIONS(274), - [anon_sym_delete] = ACTIONS(99), - [anon_sym_exit] = ACTIONS(139), - [anon_sym_return] = ACTIONS(141), - [anon_sym_switch] = ACTIONS(105), - [anon_sym_LBRACE] = ACTIONS(268), - [anon_sym_getline] = ACTIONS(147), - [sym_next_statement] = ACTIONS(274), - [sym_nextfile_statement] = ACTIONS(274), - [anon_sym_print] = ACTIONS(149), - [anon_sym_printf] = ACTIONS(151), - [anon_sym_SLASH] = ACTIONS(153), - [anon_sym_PLUS] = ACTIONS(155), - [anon_sym_DASH] = ACTIONS(155), - [anon_sym_BANG] = ACTIONS(157), - [anon_sym_PLUS_PLUS] = ACTIONS(159), - [anon_sym_DASH_DASH] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(161), - [anon_sym_AT] = ACTIONS(163), - [aux_sym_number_token1] = ACTIONS(165), - [aux_sym_number_token2] = ACTIONS(167), - [anon_sym_DQUOTE] = ACTIONS(169), - [anon_sym_POUND] = ACTIONS(171), + [sym__statement] = STATE(1140), + [sym__statement_separated] = STATE(141), + [sym__control_statement] = STATE(1140), + [sym_if_statement] = STATE(1140), + [sym_while_statement] = STATE(1140), + [sym_do_while_statement] = STATE(1140), + [sym_for_statement] = STATE(1140), + [sym_for_in_statement] = STATE(1140), + [sym_delete_statement] = STATE(1140), + [sym_exit_statement] = STATE(1140), + [sym_return_statement] = STATE(1140), + [sym_switch_statement] = STATE(1140), + [sym__io_statement] = STATE(1140), + [sym__getline_exp] = STATE(1562), + [sym_getline_input] = STATE(1562), + [sym_getline_file] = STATE(1562), + [sym_print_statement] = STATE(1698), + [sym_printf_statement] = STATE(1698), + [sym_redirected_io_statement] = STATE(1140), + [sym_piped_io_statement] = STATE(1140), + [sym_block] = STATE(1143), + [sym__exp] = STATE(1562), + [sym_ternary_exp] = STATE(1461), + [sym_binary_exp] = STATE(1461), + [sym__binary_in] = STATE(1305), + [sym_unary_exp] = STATE(1461), + [sym_update_exp] = STATE(1562), + [sym_assignment_exp] = STATE(1562), + [sym_piped_io_exp] = STATE(1562), + [sym_string_concat] = STATE(1461), + [sym_field_ref] = STATE(950), + [sym_array_ref] = STATE(740), + [sym_regex] = STATE(1562), + [sym_regex_constant] = STATE(1562), + [sym_grouping] = STATE(1461), + [sym__primitive] = STATE(1461), + [sym_namespace] = STATE(2068), + [sym_ns_qualified_name] = STATE(672), + [sym_number] = STATE(1461), + [sym_string] = STATE(1461), + [sym_func_call] = STATE(1461), + [sym_indirect_func_call] = STATE(1562), + [sym_comment] = STATE(63), + [aux_sym_if_statement_repeat1] = STATE(63), + [sym_identifier] = ACTIONS(336), + [anon_sym_SEMI] = ACTIONS(372), + [anon_sym_if] = ACTIONS(340), + [anon_sym_LPAREN] = ACTIONS(342), + [anon_sym_while] = ACTIONS(344), + [anon_sym_do] = ACTIONS(49), + [anon_sym_for] = ACTIONS(346), + [sym_break_statement] = ACTIONS(374), + [sym_continue_statement] = ACTIONS(374), + [anon_sym_delete] = ACTIONS(55), + [anon_sym_exit] = ACTIONS(350), + [anon_sym_return] = ACTIONS(352), + [anon_sym_switch] = ACTIONS(61), + [anon_sym_LBRACE] = ACTIONS(316), + [anon_sym_getline] = ACTIONS(354), + [sym_next_statement] = ACTIONS(374), + [sym_nextfile_statement] = ACTIONS(374), + [anon_sym_print] = ACTIONS(356), + [anon_sym_printf] = ACTIONS(358), + [anon_sym_SLASH] = ACTIONS(360), + [anon_sym_PLUS] = ACTIONS(362), + [anon_sym_DASH] = ACTIONS(362), + [anon_sym_BANG] = ACTIONS(364), + [anon_sym_PLUS_PLUS] = ACTIONS(366), + [anon_sym_DASH_DASH] = ACTIONS(366), + [anon_sym_DOLLAR] = ACTIONS(368), + [anon_sym_AT] = ACTIONS(370), + [aux_sym_number_token1] = ACTIONS(79), + [aux_sym_number_token2] = ACTIONS(328), + [anon_sym_DQUOTE] = ACTIONS(330), + [anon_sym_POUND] = ACTIONS(135), }, [67] = { - [sym__statement] = STATE(1199), - [sym__statement_separated] = STATE(3), - [sym__control_statement] = STATE(1199), - [sym_if_statement] = STATE(1199), - [sym_while_statement] = STATE(1199), - [sym_do_while_statement] = STATE(1199), - [sym_for_statement] = STATE(1199), - [sym_for_in_statement] = STATE(1199), - [sym_delete_statement] = STATE(1199), - [sym_exit_statement] = STATE(1199), - [sym_return_statement] = STATE(1199), - [sym_switch_statement] = STATE(1199), - [sym__io_statement] = STATE(1199), - [sym__getline_exp] = STATE(1495), - [sym_getline_input] = STATE(1495), - [sym_getline_file] = STATE(1495), - [sym_print_statement] = STATE(1696), - [sym_printf_statement] = STATE(1696), - [sym_redirected_io_statement] = STATE(1199), - [sym_piped_io_statement] = STATE(1199), - [sym_block] = STATE(1200), - [sym__exp] = STATE(1495), - [sym_ternary_exp] = STATE(1421), - [sym_binary_exp] = STATE(1421), - [sym__binary_in] = STATE(1373), - [sym_unary_exp] = STATE(1421), - [sym_update_exp] = STATE(1495), - [sym_assignment_exp] = STATE(1495), - [sym_piped_io_exp] = STATE(1495), - [sym_string_concat] = STATE(1421), - [sym_field_ref] = STATE(703), - [sym_array_ref] = STATE(610), - [sym_regex] = STATE(1495), - [sym_regex_constant] = STATE(1495), - [sym_grouping] = STATE(1421), - [sym__primitive] = STATE(1421), - [sym_namespace] = STATE(1955), - [sym_ns_qualified_name] = STATE(607), - [sym_number] = STATE(1421), - [sym_string] = STATE(1421), - [sym_func_call] = STATE(1421), - [sym_indirect_func_call] = STATE(1495), - [sym_comment] = STATE(1238), - [aux_sym_if_statement_repeat1] = STATE(1238), - [sym_identifier] = ACTIONS(85), - [anon_sym_SEMI] = ACTIONS(544), - [anon_sym_if] = ACTIONS(87), - [anon_sym_LPAREN] = ACTIONS(272), - [anon_sym_while] = ACTIONS(91), - [anon_sym_do] = ACTIONS(93), - [anon_sym_for] = ACTIONS(95), - [sym_break_statement] = ACTIONS(546), - [sym_continue_statement] = ACTIONS(546), - [anon_sym_delete] = ACTIONS(99), - [anon_sym_exit] = ACTIONS(101), - [anon_sym_return] = ACTIONS(103), - [anon_sym_switch] = ACTIONS(105), - [anon_sym_LBRACE] = ACTIONS(268), - [anon_sym_getline] = ACTIONS(107), - [sym_next_statement] = ACTIONS(546), - [sym_nextfile_statement] = ACTIONS(546), - [anon_sym_print] = ACTIONS(109), - [anon_sym_printf] = ACTIONS(111), - [anon_sym_SLASH] = ACTIONS(276), - [anon_sym_PLUS] = ACTIONS(115), - [anon_sym_DASH] = ACTIONS(115), - [anon_sym_BANG] = ACTIONS(278), - [anon_sym_PLUS_PLUS] = ACTIONS(280), - [anon_sym_DASH_DASH] = ACTIONS(280), - [anon_sym_DOLLAR] = ACTIONS(282), - [anon_sym_AT] = ACTIONS(284), - [aux_sym_number_token1] = ACTIONS(123), - [aux_sym_number_token2] = ACTIONS(286), - [anon_sym_DQUOTE] = ACTIONS(288), - [anon_sym_POUND] = ACTIONS(171), + [sym__statement] = STATE(1144), + [sym__statement_separated] = STATE(141), + [sym__control_statement] = STATE(1144), + [sym_if_statement] = STATE(1144), + [sym_while_statement] = STATE(1144), + [sym_do_while_statement] = STATE(1144), + [sym_for_statement] = STATE(1144), + [sym_for_in_statement] = STATE(1144), + [sym_delete_statement] = STATE(1144), + [sym_exit_statement] = STATE(1144), + [sym_return_statement] = STATE(1144), + [sym_switch_statement] = STATE(1144), + [sym__io_statement] = STATE(1144), + [sym__getline_exp] = STATE(1562), + [sym_getline_input] = STATE(1562), + [sym_getline_file] = STATE(1562), + [sym_print_statement] = STATE(1698), + [sym_printf_statement] = STATE(1698), + [sym_redirected_io_statement] = STATE(1144), + [sym_piped_io_statement] = STATE(1144), + [sym_block] = STATE(1145), + [sym__exp] = STATE(1562), + [sym_ternary_exp] = STATE(1461), + [sym_binary_exp] = STATE(1461), + [sym__binary_in] = STATE(1305), + [sym_unary_exp] = STATE(1461), + [sym_update_exp] = STATE(1562), + [sym_assignment_exp] = STATE(1562), + [sym_piped_io_exp] = STATE(1562), + [sym_string_concat] = STATE(1461), + [sym_field_ref] = STATE(950), + [sym_array_ref] = STATE(740), + [sym_regex] = STATE(1562), + [sym_regex_constant] = STATE(1562), + [sym_grouping] = STATE(1461), + [sym__primitive] = STATE(1461), + [sym_namespace] = STATE(2068), + [sym_ns_qualified_name] = STATE(672), + [sym_number] = STATE(1461), + [sym_string] = STATE(1461), + [sym_func_call] = STATE(1461), + [sym_indirect_func_call] = STATE(1562), + [sym_comment] = STATE(64), + [aux_sym_if_statement_repeat1] = STATE(64), + [sym_identifier] = ACTIONS(336), + [anon_sym_SEMI] = ACTIONS(376), + [anon_sym_if] = ACTIONS(340), + [anon_sym_LPAREN] = ACTIONS(342), + [anon_sym_while] = ACTIONS(344), + [anon_sym_do] = ACTIONS(49), + [anon_sym_for] = ACTIONS(346), + [sym_break_statement] = ACTIONS(378), + [sym_continue_statement] = ACTIONS(378), + [anon_sym_delete] = ACTIONS(55), + [anon_sym_exit] = ACTIONS(350), + [anon_sym_return] = ACTIONS(352), + [anon_sym_switch] = ACTIONS(61), + [anon_sym_LBRACE] = ACTIONS(316), + [anon_sym_getline] = ACTIONS(354), + [sym_next_statement] = ACTIONS(378), + [sym_nextfile_statement] = ACTIONS(378), + [anon_sym_print] = ACTIONS(356), + [anon_sym_printf] = ACTIONS(358), + [anon_sym_SLASH] = ACTIONS(360), + [anon_sym_PLUS] = ACTIONS(362), + [anon_sym_DASH] = ACTIONS(362), + [anon_sym_BANG] = ACTIONS(364), + [anon_sym_PLUS_PLUS] = ACTIONS(366), + [anon_sym_DASH_DASH] = ACTIONS(366), + [anon_sym_DOLLAR] = ACTIONS(368), + [anon_sym_AT] = ACTIONS(370), + [aux_sym_number_token1] = ACTIONS(79), + [aux_sym_number_token2] = ACTIONS(328), + [anon_sym_DQUOTE] = ACTIONS(330), + [anon_sym_POUND] = ACTIONS(135), }, [68] = { - [sym__statement] = STATE(1142), - [sym__statement_separated] = STATE(2), - [sym__control_statement] = STATE(1142), - [sym_if_statement] = STATE(1142), - [sym_while_statement] = STATE(1142), - [sym_do_while_statement] = STATE(1142), - [sym_for_statement] = STATE(1142), - [sym_for_in_statement] = STATE(1142), - [sym_delete_statement] = STATE(1142), - [sym_exit_statement] = STATE(1142), - [sym_return_statement] = STATE(1142), - [sym_switch_statement] = STATE(1142), - [sym__io_statement] = STATE(1142), - [sym__getline_exp] = STATE(1462), - [sym_getline_input] = STATE(1462), - [sym_getline_file] = STATE(1462), - [sym_print_statement] = STATE(1695), - [sym_printf_statement] = STATE(1695), - [sym_redirected_io_statement] = STATE(1142), - [sym_piped_io_statement] = STATE(1142), - [sym_block] = STATE(1143), - [sym__exp] = STATE(1462), - [sym_ternary_exp] = STATE(1354), - [sym_binary_exp] = STATE(1354), - [sym__binary_in] = STATE(1309), - [sym_unary_exp] = STATE(1354), - [sym_update_exp] = STATE(1462), - [sym_assignment_exp] = STATE(1462), - [sym_piped_io_exp] = STATE(1462), - [sym_string_concat] = STATE(1354), - [sym_field_ref] = STATE(619), - [sym_array_ref] = STATE(603), - [sym_regex] = STATE(1462), - [sym_regex_constant] = STATE(1462), - [sym_grouping] = STATE(1354), - [sym__primitive] = STATE(1354), - [sym_namespace] = STATE(2063), - [sym_ns_qualified_name] = STATE(592), - [sym_number] = STATE(1354), - [sym_string] = STATE(1354), - [sym_func_call] = STATE(1354), - [sym_indirect_func_call] = STATE(1462), - [sym_comment] = STATE(58), - [aux_sym_if_statement_repeat1] = STATE(58), - [sym_identifier] = ACTIONS(39), - [anon_sym_SEMI] = ACTIONS(446), - [anon_sym_if] = ACTIONS(43), - [anon_sym_LPAREN] = ACTIONS(552), - [anon_sym_while] = ACTIONS(47), + [sym__statement] = STATE(1146), + [sym__statement_separated] = STATE(141), + [sym__control_statement] = STATE(1146), + [sym_if_statement] = STATE(1146), + [sym_while_statement] = STATE(1146), + [sym_do_while_statement] = STATE(1146), + [sym_for_statement] = STATE(1146), + [sym_for_in_statement] = STATE(1146), + [sym_delete_statement] = STATE(1146), + [sym_exit_statement] = STATE(1146), + [sym_return_statement] = STATE(1146), + [sym_switch_statement] = STATE(1146), + [sym__io_statement] = STATE(1146), + [sym__getline_exp] = STATE(1562), + [sym_getline_input] = STATE(1562), + [sym_getline_file] = STATE(1562), + [sym_print_statement] = STATE(1698), + [sym_printf_statement] = STATE(1698), + [sym_redirected_io_statement] = STATE(1146), + [sym_piped_io_statement] = STATE(1146), + [sym_block] = STATE(1147), + [sym__exp] = STATE(1562), + [sym_ternary_exp] = STATE(1461), + [sym_binary_exp] = STATE(1461), + [sym__binary_in] = STATE(1305), + [sym_unary_exp] = STATE(1461), + [sym_update_exp] = STATE(1562), + [sym_assignment_exp] = STATE(1562), + [sym_piped_io_exp] = STATE(1562), + [sym_string_concat] = STATE(1461), + [sym_field_ref] = STATE(950), + [sym_array_ref] = STATE(740), + [sym_regex] = STATE(1562), + [sym_regex_constant] = STATE(1562), + [sym_grouping] = STATE(1461), + [sym__primitive] = STATE(1461), + [sym_namespace] = STATE(2068), + [sym_ns_qualified_name] = STATE(672), + [sym_number] = STATE(1461), + [sym_string] = STATE(1461), + [sym_func_call] = STATE(1461), + [sym_indirect_func_call] = STATE(1562), + [sym_comment] = STATE(1252), + [aux_sym_if_statement_repeat1] = STATE(1252), + [sym_identifier] = ACTIONS(336), + [anon_sym_SEMI] = ACTIONS(380), + [anon_sym_if] = ACTIONS(340), + [anon_sym_LPAREN] = ACTIONS(342), + [anon_sym_while] = ACTIONS(344), [anon_sym_do] = ACTIONS(49), - [anon_sym_for] = ACTIONS(51), - [sym_break_statement] = ACTIONS(448), - [sym_continue_statement] = ACTIONS(448), + [anon_sym_for] = ACTIONS(346), + [sym_break_statement] = ACTIONS(382), + [sym_continue_statement] = ACTIONS(382), [anon_sym_delete] = ACTIONS(55), - [anon_sym_exit] = ACTIONS(57), - [anon_sym_return] = ACTIONS(59), + [anon_sym_exit] = ACTIONS(350), + [anon_sym_return] = ACTIONS(352), [anon_sym_switch] = ACTIONS(61), [anon_sym_LBRACE] = ACTIONS(316), - [anon_sym_getline] = ACTIONS(63), - [sym_next_statement] = ACTIONS(448), - [sym_nextfile_statement] = ACTIONS(448), - [anon_sym_print] = ACTIONS(65), - [anon_sym_printf] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(554), - [anon_sym_PLUS] = ACTIONS(71), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_BANG] = ACTIONS(556), - [anon_sym_PLUS_PLUS] = ACTIONS(558), - [anon_sym_DASH_DASH] = ACTIONS(558), - [anon_sym_DOLLAR] = ACTIONS(560), - [anon_sym_AT] = ACTIONS(562), + [anon_sym_getline] = ACTIONS(354), + [sym_next_statement] = ACTIONS(382), + [sym_nextfile_statement] = ACTIONS(382), + [anon_sym_print] = ACTIONS(356), + [anon_sym_printf] = ACTIONS(358), + [anon_sym_SLASH] = ACTIONS(360), + [anon_sym_PLUS] = ACTIONS(362), + [anon_sym_DASH] = ACTIONS(362), + [anon_sym_BANG] = ACTIONS(364), + [anon_sym_PLUS_PLUS] = ACTIONS(366), + [anon_sym_DASH_DASH] = ACTIONS(366), + [anon_sym_DOLLAR] = ACTIONS(368), + [anon_sym_AT] = ACTIONS(370), [aux_sym_number_token1] = ACTIONS(79), - [aux_sym_number_token2] = ACTIONS(486), - [anon_sym_DQUOTE] = ACTIONS(488), - [anon_sym_POUND] = ACTIONS(171), + [aux_sym_number_token2] = ACTIONS(328), + [anon_sym_DQUOTE] = ACTIONS(330), + [anon_sym_POUND] = ACTIONS(135), }, [69] = { - [sym__statement] = STATE(1196), - [sym__statement_separated] = STATE(1196), - [sym__control_statement] = STATE(1196), - [sym_if_statement] = STATE(1196), - [sym_while_statement] = STATE(1196), - [sym_do_while_statement] = STATE(1196), - [sym_for_statement] = STATE(1196), - [sym_for_in_statement] = STATE(1196), - [sym_delete_statement] = STATE(1196), - [sym_exit_statement] = STATE(1196), - [sym_return_statement] = STATE(1196), - [sym_switch_statement] = STATE(1196), - [sym__io_statement] = STATE(1196), - [sym__getline_exp] = STATE(503), - [sym_getline_input] = STATE(503), - [sym_getline_file] = STATE(503), - [sym_print_statement] = STATE(890), - [sym_printf_statement] = STATE(890), - [sym_redirected_io_statement] = STATE(1196), - [sym_piped_io_statement] = STATE(1196), - [sym_block] = STATE(1228), - [sym__exp] = STATE(503), - [sym_ternary_exp] = STATE(447), - [sym_binary_exp] = STATE(447), - [sym__binary_in] = STATE(446), - [sym_unary_exp] = STATE(447), - [sym_update_exp] = STATE(503), - [sym_assignment_exp] = STATE(503), - [sym_piped_io_exp] = STATE(503), - [sym_string_concat] = STATE(447), - [sym_field_ref] = STATE(272), - [sym_array_ref] = STATE(253), - [sym_regex] = STATE(503), - [sym_regex_constant] = STATE(503), - [sym_grouping] = STATE(447), - [sym__primitive] = STATE(447), - [sym_namespace] = STATE(1955), - [sym_ns_qualified_name] = STATE(221), - [sym_number] = STATE(447), - [sym_string] = STATE(447), - [sym_func_call] = STATE(447), - [sym_indirect_func_call] = STATE(503), - [sym_comment] = STATE(53), - [aux_sym_if_statement_repeat1] = STATE(53), - [sym_identifier] = ACTIONS(127), - [anon_sym_SEMI] = ACTIONS(394), - [anon_sym_if] = ACTIONS(129), - [anon_sym_LPAREN] = ACTIONS(131), - [anon_sym_while] = ACTIONS(133), - [anon_sym_do] = ACTIONS(93), - [anon_sym_for] = ACTIONS(135), - [sym_break_statement] = ACTIONS(396), - [sym_continue_statement] = ACTIONS(396), - [anon_sym_delete] = ACTIONS(99), - [anon_sym_exit] = ACTIONS(139), - [anon_sym_return] = ACTIONS(141), - [anon_sym_switch] = ACTIONS(105), - [anon_sym_LBRACE] = ACTIONS(268), - [anon_sym_getline] = ACTIONS(147), - [sym_next_statement] = ACTIONS(396), - [sym_nextfile_statement] = ACTIONS(396), - [anon_sym_print] = ACTIONS(149), - [anon_sym_printf] = ACTIONS(151), - [anon_sym_SLASH] = ACTIONS(153), - [anon_sym_PLUS] = ACTIONS(155), - [anon_sym_DASH] = ACTIONS(155), - [anon_sym_BANG] = ACTIONS(157), - [anon_sym_PLUS_PLUS] = ACTIONS(159), - [anon_sym_DASH_DASH] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(161), - [anon_sym_AT] = ACTIONS(163), - [aux_sym_number_token1] = ACTIONS(165), - [aux_sym_number_token2] = ACTIONS(167), - [anon_sym_DQUOTE] = ACTIONS(169), - [anon_sym_POUND] = ACTIONS(171), + [sym__statement] = STATE(1148), + [sym__statement_separated] = STATE(141), + [sym__control_statement] = STATE(1148), + [sym_if_statement] = STATE(1148), + [sym_while_statement] = STATE(1148), + [sym_do_while_statement] = STATE(1148), + [sym_for_statement] = STATE(1148), + [sym_for_in_statement] = STATE(1148), + [sym_delete_statement] = STATE(1148), + [sym_exit_statement] = STATE(1148), + [sym_return_statement] = STATE(1148), + [sym_switch_statement] = STATE(1148), + [sym__io_statement] = STATE(1148), + [sym__getline_exp] = STATE(1562), + [sym_getline_input] = STATE(1562), + [sym_getline_file] = STATE(1562), + [sym_print_statement] = STATE(1698), + [sym_printf_statement] = STATE(1698), + [sym_redirected_io_statement] = STATE(1148), + [sym_piped_io_statement] = STATE(1148), + [sym_block] = STATE(1149), + [sym__exp] = STATE(1562), + [sym_ternary_exp] = STATE(1461), + [sym_binary_exp] = STATE(1461), + [sym__binary_in] = STATE(1305), + [sym_unary_exp] = STATE(1461), + [sym_update_exp] = STATE(1562), + [sym_assignment_exp] = STATE(1562), + [sym_piped_io_exp] = STATE(1562), + [sym_string_concat] = STATE(1461), + [sym_field_ref] = STATE(950), + [sym_array_ref] = STATE(740), + [sym_regex] = STATE(1562), + [sym_regex_constant] = STATE(1562), + [sym_grouping] = STATE(1461), + [sym__primitive] = STATE(1461), + [sym_namespace] = STATE(2068), + [sym_ns_qualified_name] = STATE(672), + [sym_number] = STATE(1461), + [sym_string] = STATE(1461), + [sym_func_call] = STATE(1461), + [sym_indirect_func_call] = STATE(1562), + [sym_comment] = STATE(1252), + [aux_sym_if_statement_repeat1] = STATE(1252), + [sym_identifier] = ACTIONS(336), + [anon_sym_SEMI] = ACTIONS(384), + [anon_sym_if] = ACTIONS(340), + [anon_sym_LPAREN] = ACTIONS(342), + [anon_sym_while] = ACTIONS(344), + [anon_sym_do] = ACTIONS(49), + [anon_sym_for] = ACTIONS(346), + [sym_break_statement] = ACTIONS(386), + [sym_continue_statement] = ACTIONS(386), + [anon_sym_delete] = ACTIONS(55), + [anon_sym_exit] = ACTIONS(350), + [anon_sym_return] = ACTIONS(352), + [anon_sym_switch] = ACTIONS(61), + [anon_sym_LBRACE] = ACTIONS(316), + [anon_sym_getline] = ACTIONS(354), + [sym_next_statement] = ACTIONS(386), + [sym_nextfile_statement] = ACTIONS(386), + [anon_sym_print] = ACTIONS(356), + [anon_sym_printf] = ACTIONS(358), + [anon_sym_SLASH] = ACTIONS(360), + [anon_sym_PLUS] = ACTIONS(362), + [anon_sym_DASH] = ACTIONS(362), + [anon_sym_BANG] = ACTIONS(364), + [anon_sym_PLUS_PLUS] = ACTIONS(366), + [anon_sym_DASH_DASH] = ACTIONS(366), + [anon_sym_DOLLAR] = ACTIONS(368), + [anon_sym_AT] = ACTIONS(370), + [aux_sym_number_token1] = ACTIONS(79), + [aux_sym_number_token2] = ACTIONS(328), + [anon_sym_DQUOTE] = ACTIONS(330), + [anon_sym_POUND] = ACTIONS(135), }, [70] = { - [sym__statement] = STATE(1142), + [sym__statement] = STATE(1124), [sym__statement_separated] = STATE(141), - [sym__control_statement] = STATE(1142), - [sym_if_statement] = STATE(1142), - [sym_while_statement] = STATE(1142), - [sym_do_while_statement] = STATE(1142), - [sym_for_statement] = STATE(1142), - [sym_for_in_statement] = STATE(1142), - [sym_delete_statement] = STATE(1142), - [sym_exit_statement] = STATE(1142), - [sym_return_statement] = STATE(1142), - [sym_switch_statement] = STATE(1142), - [sym__io_statement] = STATE(1142), - [sym__getline_exp] = STATE(1547), - [sym_getline_input] = STATE(1547), - [sym_getline_file] = STATE(1547), - [sym_print_statement] = STATE(1697), - [sym_printf_statement] = STATE(1697), - [sym_redirected_io_statement] = STATE(1142), - [sym_piped_io_statement] = STATE(1142), - [sym_block] = STATE(1143), - [sym__exp] = STATE(1547), - [sym_ternary_exp] = STATE(1441), - [sym_binary_exp] = STATE(1441), - [sym__binary_in] = STATE(1309), - [sym_unary_exp] = STATE(1441), - [sym_update_exp] = STATE(1547), - [sym_assignment_exp] = STATE(1547), - [sym_piped_io_exp] = STATE(1547), - [sym_string_concat] = STATE(1441), - [sym_field_ref] = STATE(995), - [sym_array_ref] = STATE(774), - [sym_regex] = STATE(1547), - [sym_regex_constant] = STATE(1547), - [sym_grouping] = STATE(1441), - [sym__primitive] = STATE(1441), - [sym_namespace] = STATE(2063), - [sym_ns_qualified_name] = STATE(647), - [sym_number] = STATE(1441), - [sym_string] = STATE(1441), - [sym_func_call] = STATE(1441), - [sym_indirect_func_call] = STATE(1547), - [sym_comment] = STATE(39), - [aux_sym_if_statement_repeat1] = STATE(39), - [sym_identifier] = ACTIONS(450), - [anon_sym_SEMI] = ACTIONS(446), - [anon_sym_if] = ACTIONS(454), - [anon_sym_LPAREN] = ACTIONS(456), - [anon_sym_while] = ACTIONS(458), + [sym__control_statement] = STATE(1124), + [sym_if_statement] = STATE(1124), + [sym_while_statement] = STATE(1124), + [sym_do_while_statement] = STATE(1124), + [sym_for_statement] = STATE(1124), + [sym_for_in_statement] = STATE(1124), + [sym_delete_statement] = STATE(1124), + [sym_exit_statement] = STATE(1124), + [sym_return_statement] = STATE(1124), + [sym_switch_statement] = STATE(1124), + [sym__io_statement] = STATE(1124), + [sym__getline_exp] = STATE(1562), + [sym_getline_input] = STATE(1562), + [sym_getline_file] = STATE(1562), + [sym_print_statement] = STATE(1698), + [sym_printf_statement] = STATE(1698), + [sym_redirected_io_statement] = STATE(1124), + [sym_piped_io_statement] = STATE(1124), + [sym_block] = STATE(1162), + [sym__exp] = STATE(1562), + [sym_ternary_exp] = STATE(1461), + [sym_binary_exp] = STATE(1461), + [sym__binary_in] = STATE(1305), + [sym_unary_exp] = STATE(1461), + [sym_update_exp] = STATE(1562), + [sym_assignment_exp] = STATE(1562), + [sym_piped_io_exp] = STATE(1562), + [sym_string_concat] = STATE(1461), + [sym_field_ref] = STATE(950), + [sym_array_ref] = STATE(740), + [sym_regex] = STATE(1562), + [sym_regex_constant] = STATE(1562), + [sym_grouping] = STATE(1461), + [sym__primitive] = STATE(1461), + [sym_namespace] = STATE(2068), + [sym_ns_qualified_name] = STATE(672), + [sym_number] = STATE(1461), + [sym_string] = STATE(1461), + [sym_func_call] = STATE(1461), + [sym_indirect_func_call] = STATE(1562), + [sym_comment] = STATE(65), + [aux_sym_if_statement_repeat1] = STATE(65), + [sym_identifier] = ACTIONS(336), + [anon_sym_SEMI] = ACTIONS(388), + [anon_sym_if] = ACTIONS(340), + [anon_sym_LPAREN] = ACTIONS(342), + [anon_sym_while] = ACTIONS(344), [anon_sym_do] = ACTIONS(49), - [anon_sym_for] = ACTIONS(460), - [sym_break_statement] = ACTIONS(448), - [sym_continue_statement] = ACTIONS(448), + [anon_sym_for] = ACTIONS(346), + [sym_break_statement] = ACTIONS(390), + [sym_continue_statement] = ACTIONS(390), [anon_sym_delete] = ACTIONS(55), - [anon_sym_exit] = ACTIONS(464), - [anon_sym_return] = ACTIONS(466), + [anon_sym_exit] = ACTIONS(350), + [anon_sym_return] = ACTIONS(352), [anon_sym_switch] = ACTIONS(61), [anon_sym_LBRACE] = ACTIONS(316), - [anon_sym_getline] = ACTIONS(468), - [sym_next_statement] = ACTIONS(448), - [sym_nextfile_statement] = ACTIONS(448), - [anon_sym_print] = ACTIONS(470), - [anon_sym_printf] = ACTIONS(472), - [anon_sym_SLASH] = ACTIONS(474), - [anon_sym_PLUS] = ACTIONS(476), - [anon_sym_DASH] = ACTIONS(476), - [anon_sym_BANG] = ACTIONS(478), - [anon_sym_PLUS_PLUS] = ACTIONS(480), - [anon_sym_DASH_DASH] = ACTIONS(480), - [anon_sym_DOLLAR] = ACTIONS(482), - [anon_sym_AT] = ACTIONS(484), + [anon_sym_getline] = ACTIONS(354), + [sym_next_statement] = ACTIONS(390), + [sym_nextfile_statement] = ACTIONS(390), + [anon_sym_print] = ACTIONS(356), + [anon_sym_printf] = ACTIONS(358), + [anon_sym_SLASH] = ACTIONS(360), + [anon_sym_PLUS] = ACTIONS(362), + [anon_sym_DASH] = ACTIONS(362), + [anon_sym_BANG] = ACTIONS(364), + [anon_sym_PLUS_PLUS] = ACTIONS(366), + [anon_sym_DASH_DASH] = ACTIONS(366), + [anon_sym_DOLLAR] = ACTIONS(368), + [anon_sym_AT] = ACTIONS(370), [aux_sym_number_token1] = ACTIONS(79), - [aux_sym_number_token2] = ACTIONS(486), - [anon_sym_DQUOTE] = ACTIONS(488), - [anon_sym_POUND] = ACTIONS(171), + [aux_sym_number_token2] = ACTIONS(328), + [anon_sym_DQUOTE] = ACTIONS(330), + [anon_sym_POUND] = ACTIONS(135), }, [71] = { - [sym__statement] = STATE(1145), - [sym__statement_separated] = STATE(2), - [sym__control_statement] = STATE(1145), - [sym_if_statement] = STATE(1145), - [sym_while_statement] = STATE(1145), - [sym_do_while_statement] = STATE(1145), - [sym_for_statement] = STATE(1145), - [sym_for_in_statement] = STATE(1145), - [sym_delete_statement] = STATE(1145), - [sym_exit_statement] = STATE(1145), - [sym_return_statement] = STATE(1145), - [sym_switch_statement] = STATE(1145), - [sym__io_statement] = STATE(1145), - [sym__getline_exp] = STATE(1462), - [sym_getline_input] = STATE(1462), - [sym_getline_file] = STATE(1462), - [sym_print_statement] = STATE(1695), - [sym_printf_statement] = STATE(1695), - [sym_redirected_io_statement] = STATE(1145), - [sym_piped_io_statement] = STATE(1145), - [sym_block] = STATE(1146), - [sym__exp] = STATE(1462), - [sym_ternary_exp] = STATE(1354), - [sym_binary_exp] = STATE(1354), - [sym__binary_in] = STATE(1309), - [sym_unary_exp] = STATE(1354), - [sym_update_exp] = STATE(1462), - [sym_assignment_exp] = STATE(1462), - [sym_piped_io_exp] = STATE(1462), - [sym_string_concat] = STATE(1354), - [sym_field_ref] = STATE(619), - [sym_array_ref] = STATE(603), - [sym_regex] = STATE(1462), - [sym_regex_constant] = STATE(1462), - [sym_grouping] = STATE(1354), - [sym__primitive] = STATE(1354), - [sym_namespace] = STATE(2063), - [sym_ns_qualified_name] = STATE(592), - [sym_number] = STATE(1354), - [sym_string] = STATE(1354), - [sym_func_call] = STATE(1354), - [sym_indirect_func_call] = STATE(1462), - [sym_comment] = STATE(1238), - [aux_sym_if_statement_repeat1] = STATE(1238), - [sym_identifier] = ACTIONS(39), - [anon_sym_SEMI] = ACTIONS(442), - [anon_sym_if] = ACTIONS(43), - [anon_sym_LPAREN] = ACTIONS(552), - [anon_sym_while] = ACTIONS(47), + [sym__statement] = STATE(1163), + [sym__statement_separated] = STATE(141), + [sym__control_statement] = STATE(1163), + [sym_if_statement] = STATE(1163), + [sym_while_statement] = STATE(1163), + [sym_do_while_statement] = STATE(1163), + [sym_for_statement] = STATE(1163), + [sym_for_in_statement] = STATE(1163), + [sym_delete_statement] = STATE(1163), + [sym_exit_statement] = STATE(1163), + [sym_return_statement] = STATE(1163), + [sym_switch_statement] = STATE(1163), + [sym__io_statement] = STATE(1163), + [sym__getline_exp] = STATE(1562), + [sym_getline_input] = STATE(1562), + [sym_getline_file] = STATE(1562), + [sym_print_statement] = STATE(1698), + [sym_printf_statement] = STATE(1698), + [sym_redirected_io_statement] = STATE(1163), + [sym_piped_io_statement] = STATE(1163), + [sym_block] = STATE(1164), + [sym__exp] = STATE(1562), + [sym_ternary_exp] = STATE(1461), + [sym_binary_exp] = STATE(1461), + [sym__binary_in] = STATE(1305), + [sym_unary_exp] = STATE(1461), + [sym_update_exp] = STATE(1562), + [sym_assignment_exp] = STATE(1562), + [sym_piped_io_exp] = STATE(1562), + [sym_string_concat] = STATE(1461), + [sym_field_ref] = STATE(950), + [sym_array_ref] = STATE(740), + [sym_regex] = STATE(1562), + [sym_regex_constant] = STATE(1562), + [sym_grouping] = STATE(1461), + [sym__primitive] = STATE(1461), + [sym_namespace] = STATE(2068), + [sym_ns_qualified_name] = STATE(672), + [sym_number] = STATE(1461), + [sym_string] = STATE(1461), + [sym_func_call] = STATE(1461), + [sym_indirect_func_call] = STATE(1562), + [sym_comment] = STATE(1252), + [aux_sym_if_statement_repeat1] = STATE(1252), + [sym_identifier] = ACTIONS(336), + [anon_sym_SEMI] = ACTIONS(392), + [anon_sym_if] = ACTIONS(340), + [anon_sym_LPAREN] = ACTIONS(342), + [anon_sym_while] = ACTIONS(344), [anon_sym_do] = ACTIONS(49), - [anon_sym_for] = ACTIONS(51), - [sym_break_statement] = ACTIONS(444), - [sym_continue_statement] = ACTIONS(444), + [anon_sym_for] = ACTIONS(346), + [sym_break_statement] = ACTIONS(394), + [sym_continue_statement] = ACTIONS(394), [anon_sym_delete] = ACTIONS(55), - [anon_sym_exit] = ACTIONS(57), - [anon_sym_return] = ACTIONS(59), + [anon_sym_exit] = ACTIONS(350), + [anon_sym_return] = ACTIONS(352), [anon_sym_switch] = ACTIONS(61), [anon_sym_LBRACE] = ACTIONS(316), - [anon_sym_getline] = ACTIONS(63), - [sym_next_statement] = ACTIONS(444), - [sym_nextfile_statement] = ACTIONS(444), - [anon_sym_print] = ACTIONS(65), - [anon_sym_printf] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(554), - [anon_sym_PLUS] = ACTIONS(71), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_BANG] = ACTIONS(556), - [anon_sym_PLUS_PLUS] = ACTIONS(558), - [anon_sym_DASH_DASH] = ACTIONS(558), - [anon_sym_DOLLAR] = ACTIONS(560), - [anon_sym_AT] = ACTIONS(562), + [anon_sym_getline] = ACTIONS(354), + [sym_next_statement] = ACTIONS(394), + [sym_nextfile_statement] = ACTIONS(394), + [anon_sym_print] = ACTIONS(356), + [anon_sym_printf] = ACTIONS(358), + [anon_sym_SLASH] = ACTIONS(360), + [anon_sym_PLUS] = ACTIONS(362), + [anon_sym_DASH] = ACTIONS(362), + [anon_sym_BANG] = ACTIONS(364), + [anon_sym_PLUS_PLUS] = ACTIONS(366), + [anon_sym_DASH_DASH] = ACTIONS(366), + [anon_sym_DOLLAR] = ACTIONS(368), + [anon_sym_AT] = ACTIONS(370), [aux_sym_number_token1] = ACTIONS(79), - [aux_sym_number_token2] = ACTIONS(486), - [anon_sym_DQUOTE] = ACTIONS(488), - [anon_sym_POUND] = ACTIONS(171), + [aux_sym_number_token2] = ACTIONS(328), + [anon_sym_DQUOTE] = ACTIONS(330), + [anon_sym_POUND] = ACTIONS(135), }, [72] = { - [sym__statement] = STATE(1258), - [sym__statement_separated] = STATE(3), - [sym__control_statement] = STATE(1258), - [sym_if_statement] = STATE(1258), - [sym_while_statement] = STATE(1258), - [sym_do_while_statement] = STATE(1258), - [sym_for_statement] = STATE(1258), - [sym_for_in_statement] = STATE(1258), - [sym_delete_statement] = STATE(1258), - [sym_exit_statement] = STATE(1258), - [sym_return_statement] = STATE(1258), - [sym_switch_statement] = STATE(1258), - [sym__io_statement] = STATE(1258), - [sym__getline_exp] = STATE(1495), - [sym_getline_input] = STATE(1495), - [sym_getline_file] = STATE(1495), - [sym_print_statement] = STATE(1696), - [sym_printf_statement] = STATE(1696), - [sym_redirected_io_statement] = STATE(1258), - [sym_piped_io_statement] = STATE(1258), - [sym_block] = STATE(1265), - [sym__exp] = STATE(1495), - [sym_ternary_exp] = STATE(1421), - [sym_binary_exp] = STATE(1421), - [sym__binary_in] = STATE(1373), - [sym_unary_exp] = STATE(1421), - [sym_update_exp] = STATE(1495), - [sym_assignment_exp] = STATE(1495), - [sym_piped_io_exp] = STATE(1495), - [sym_string_concat] = STATE(1421), - [sym_field_ref] = STATE(703), - [sym_array_ref] = STATE(610), - [sym_regex] = STATE(1495), - [sym_regex_constant] = STATE(1495), - [sym_grouping] = STATE(1421), - [sym__primitive] = STATE(1421), - [sym_namespace] = STATE(1955), - [sym_ns_qualified_name] = STATE(607), - [sym_number] = STATE(1421), - [sym_string] = STATE(1421), - [sym_func_call] = STATE(1421), - [sym_indirect_func_call] = STATE(1495), - [sym_comment] = STATE(76), - [aux_sym_if_statement_repeat1] = STATE(76), - [sym_identifier] = ACTIONS(85), - [anon_sym_SEMI] = ACTIONS(512), - [anon_sym_if] = ACTIONS(87), - [anon_sym_LPAREN] = ACTIONS(272), - [anon_sym_while] = ACTIONS(91), - [anon_sym_do] = ACTIONS(93), - [anon_sym_for] = ACTIONS(95), - [sym_break_statement] = ACTIONS(514), - [sym_continue_statement] = ACTIONS(514), - [anon_sym_delete] = ACTIONS(99), - [anon_sym_exit] = ACTIONS(101), - [anon_sym_return] = ACTIONS(103), - [anon_sym_switch] = ACTIONS(105), - [anon_sym_LBRACE] = ACTIONS(268), - [anon_sym_getline] = ACTIONS(107), - [sym_next_statement] = ACTIONS(514), - [sym_nextfile_statement] = ACTIONS(514), - [anon_sym_print] = ACTIONS(109), - [anon_sym_printf] = ACTIONS(111), - [anon_sym_SLASH] = ACTIONS(276), - [anon_sym_PLUS] = ACTIONS(115), - [anon_sym_DASH] = ACTIONS(115), - [anon_sym_BANG] = ACTIONS(278), - [anon_sym_PLUS_PLUS] = ACTIONS(280), - [anon_sym_DASH_DASH] = ACTIONS(280), - [anon_sym_DOLLAR] = ACTIONS(282), - [anon_sym_AT] = ACTIONS(284), - [aux_sym_number_token1] = ACTIONS(123), - [aux_sym_number_token2] = ACTIONS(286), - [anon_sym_DQUOTE] = ACTIONS(288), - [anon_sym_POUND] = ACTIONS(171), + [sym__statement] = STATE(1165), + [sym__statement_separated] = STATE(141), + [sym__control_statement] = STATE(1165), + [sym_if_statement] = STATE(1165), + [sym_while_statement] = STATE(1165), + [sym_do_while_statement] = STATE(1165), + [sym_for_statement] = STATE(1165), + [sym_for_in_statement] = STATE(1165), + [sym_delete_statement] = STATE(1165), + [sym_exit_statement] = STATE(1165), + [sym_return_statement] = STATE(1165), + [sym_switch_statement] = STATE(1165), + [sym__io_statement] = STATE(1165), + [sym__getline_exp] = STATE(1562), + [sym_getline_input] = STATE(1562), + [sym_getline_file] = STATE(1562), + [sym_print_statement] = STATE(1698), + [sym_printf_statement] = STATE(1698), + [sym_redirected_io_statement] = STATE(1165), + [sym_piped_io_statement] = STATE(1165), + [sym_block] = STATE(1166), + [sym__exp] = STATE(1562), + [sym_ternary_exp] = STATE(1461), + [sym_binary_exp] = STATE(1461), + [sym__binary_in] = STATE(1305), + [sym_unary_exp] = STATE(1461), + [sym_update_exp] = STATE(1562), + [sym_assignment_exp] = STATE(1562), + [sym_piped_io_exp] = STATE(1562), + [sym_string_concat] = STATE(1461), + [sym_field_ref] = STATE(950), + [sym_array_ref] = STATE(740), + [sym_regex] = STATE(1562), + [sym_regex_constant] = STATE(1562), + [sym_grouping] = STATE(1461), + [sym__primitive] = STATE(1461), + [sym_namespace] = STATE(2068), + [sym_ns_qualified_name] = STATE(672), + [sym_number] = STATE(1461), + [sym_string] = STATE(1461), + [sym_func_call] = STATE(1461), + [sym_indirect_func_call] = STATE(1562), + [sym_comment] = STATE(1252), + [aux_sym_if_statement_repeat1] = STATE(1252), + [sym_identifier] = ACTIONS(336), + [anon_sym_SEMI] = ACTIONS(396), + [anon_sym_if] = ACTIONS(340), + [anon_sym_LPAREN] = ACTIONS(342), + [anon_sym_while] = ACTIONS(344), + [anon_sym_do] = ACTIONS(49), + [anon_sym_for] = ACTIONS(346), + [sym_break_statement] = ACTIONS(398), + [sym_continue_statement] = ACTIONS(398), + [anon_sym_delete] = ACTIONS(55), + [anon_sym_exit] = ACTIONS(350), + [anon_sym_return] = ACTIONS(352), + [anon_sym_switch] = ACTIONS(61), + [anon_sym_LBRACE] = ACTIONS(316), + [anon_sym_getline] = ACTIONS(354), + [sym_next_statement] = ACTIONS(398), + [sym_nextfile_statement] = ACTIONS(398), + [anon_sym_print] = ACTIONS(356), + [anon_sym_printf] = ACTIONS(358), + [anon_sym_SLASH] = ACTIONS(360), + [anon_sym_PLUS] = ACTIONS(362), + [anon_sym_DASH] = ACTIONS(362), + [anon_sym_BANG] = ACTIONS(364), + [anon_sym_PLUS_PLUS] = ACTIONS(366), + [anon_sym_DASH_DASH] = ACTIONS(366), + [anon_sym_DOLLAR] = ACTIONS(368), + [anon_sym_AT] = ACTIONS(370), + [aux_sym_number_token1] = ACTIONS(79), + [aux_sym_number_token2] = ACTIONS(328), + [anon_sym_DQUOTE] = ACTIONS(330), + [anon_sym_POUND] = ACTIONS(135), }, [73] = { - [sym__statement] = STATE(1225), - [sym__statement_separated] = STATE(1225), - [sym__control_statement] = STATE(1225), - [sym_if_statement] = STATE(1225), - [sym_while_statement] = STATE(1225), - [sym_do_while_statement] = STATE(1225), - [sym_for_statement] = STATE(1225), - [sym_for_in_statement] = STATE(1225), - [sym_delete_statement] = STATE(1225), - [sym_exit_statement] = STATE(1225), - [sym_return_statement] = STATE(1225), - [sym_switch_statement] = STATE(1225), - [sym__io_statement] = STATE(1225), + [sym__statement] = STATE(1223), + [sym__statement_separated] = STATE(1223), + [sym__control_statement] = STATE(1223), + [sym_if_statement] = STATE(1223), + [sym_while_statement] = STATE(1223), + [sym_do_while_statement] = STATE(1223), + [sym_for_statement] = STATE(1223), + [sym_for_in_statement] = STATE(1223), + [sym_delete_statement] = STATE(1223), + [sym_exit_statement] = STATE(1223), + [sym_return_statement] = STATE(1223), + [sym_switch_statement] = STATE(1223), + [sym__io_statement] = STATE(1223), [sym__getline_exp] = STATE(503), [sym_getline_input] = STATE(503), [sym_getline_file] = STATE(503), - [sym_print_statement] = STATE(890), - [sym_printf_statement] = STATE(890), - [sym_redirected_io_statement] = STATE(1225), - [sym_piped_io_statement] = STATE(1225), + [sym_print_statement] = STATE(869), + [sym_printf_statement] = STATE(869), + [sym_redirected_io_statement] = STATE(1223), + [sym_piped_io_statement] = STATE(1223), [sym_block] = STATE(1224), [sym__exp] = STATE(503), - [sym_ternary_exp] = STATE(447), - [sym_binary_exp] = STATE(447), - [sym__binary_in] = STATE(446), - [sym_unary_exp] = STATE(447), + [sym_ternary_exp] = STATE(427), + [sym_binary_exp] = STATE(427), + [sym__binary_in] = STATE(426), + [sym_unary_exp] = STATE(427), [sym_update_exp] = STATE(503), [sym_assignment_exp] = STATE(503), [sym_piped_io_exp] = STATE(503), - [sym_string_concat] = STATE(447), - [sym_field_ref] = STATE(272), - [sym_array_ref] = STATE(253), + [sym_string_concat] = STATE(427), + [sym_field_ref] = STATE(274), + [sym_array_ref] = STATE(268), [sym_regex] = STATE(503), [sym_regex_constant] = STATE(503), - [sym_grouping] = STATE(447), - [sym__primitive] = STATE(447), - [sym_namespace] = STATE(1955), - [sym_ns_qualified_name] = STATE(221), - [sym_number] = STATE(447), - [sym_string] = STATE(447), - [sym_func_call] = STATE(447), + [sym_grouping] = STATE(427), + [sym__primitive] = STATE(427), + [sym_namespace] = STATE(1956), + [sym_ns_qualified_name] = STATE(244), + [sym_number] = STATE(427), + [sym_string] = STATE(427), + [sym_func_call] = STATE(427), [sym_indirect_func_call] = STATE(503), - [sym_comment] = STATE(1238), - [aux_sym_if_statement_repeat1] = STATE(1238), - [sym_identifier] = ACTIONS(127), - [anon_sym_SEMI] = ACTIONS(426), - [anon_sym_if] = ACTIONS(129), - [anon_sym_LPAREN] = ACTIONS(131), - [anon_sym_while] = ACTIONS(133), + [sym_comment] = STATE(105), + [aux_sym_if_statement_repeat1] = STATE(105), + [sym_identifier] = ACTIONS(85), + [anon_sym_SEMI] = ACTIONS(514), + [anon_sym_if] = ACTIONS(87), + [anon_sym_LPAREN] = ACTIONS(89), + [anon_sym_while] = ACTIONS(91), [anon_sym_do] = ACTIONS(93), - [anon_sym_for] = ACTIONS(135), - [sym_break_statement] = ACTIONS(428), - [sym_continue_statement] = ACTIONS(428), + [anon_sym_for] = ACTIONS(95), + [sym_break_statement] = ACTIONS(516), + [sym_continue_statement] = ACTIONS(516), [anon_sym_delete] = ACTIONS(99), - [anon_sym_exit] = ACTIONS(139), - [anon_sym_return] = ACTIONS(141), + [anon_sym_exit] = ACTIONS(101), + [anon_sym_return] = ACTIONS(103), [anon_sym_switch] = ACTIONS(105), [anon_sym_LBRACE] = ACTIONS(268), - [anon_sym_getline] = ACTIONS(147), - [sym_next_statement] = ACTIONS(428), - [sym_nextfile_statement] = ACTIONS(428), - [anon_sym_print] = ACTIONS(149), - [anon_sym_printf] = ACTIONS(151), - [anon_sym_SLASH] = ACTIONS(153), - [anon_sym_PLUS] = ACTIONS(155), - [anon_sym_DASH] = ACTIONS(155), - [anon_sym_BANG] = ACTIONS(157), - [anon_sym_PLUS_PLUS] = ACTIONS(159), - [anon_sym_DASH_DASH] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(161), - [anon_sym_AT] = ACTIONS(163), - [aux_sym_number_token1] = ACTIONS(165), - [aux_sym_number_token2] = ACTIONS(167), - [anon_sym_DQUOTE] = ACTIONS(169), - [anon_sym_POUND] = ACTIONS(171), + [anon_sym_getline] = ACTIONS(111), + [sym_next_statement] = ACTIONS(516), + [sym_nextfile_statement] = ACTIONS(516), + [anon_sym_print] = ACTIONS(113), + [anon_sym_printf] = ACTIONS(115), + [anon_sym_SLASH] = ACTIONS(117), + [anon_sym_PLUS] = ACTIONS(119), + [anon_sym_DASH] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(121), + [anon_sym_PLUS_PLUS] = ACTIONS(123), + [anon_sym_DASH_DASH] = ACTIONS(123), + [anon_sym_DOLLAR] = ACTIONS(125), + [anon_sym_AT] = ACTIONS(127), + [aux_sym_number_token1] = ACTIONS(129), + [aux_sym_number_token2] = ACTIONS(131), + [anon_sym_DQUOTE] = ACTIONS(133), + [anon_sym_POUND] = ACTIONS(135), }, [74] = { - [sym__statement] = STATE(1147), - [sym__statement_separated] = STATE(2), - [sym__control_statement] = STATE(1147), - [sym_if_statement] = STATE(1147), - [sym_while_statement] = STATE(1147), - [sym_do_while_statement] = STATE(1147), - [sym_for_statement] = STATE(1147), - [sym_for_in_statement] = STATE(1147), - [sym_delete_statement] = STATE(1147), - [sym_exit_statement] = STATE(1147), - [sym_return_statement] = STATE(1147), - [sym_switch_statement] = STATE(1147), - [sym__io_statement] = STATE(1147), - [sym__getline_exp] = STATE(1462), - [sym_getline_input] = STATE(1462), - [sym_getline_file] = STATE(1462), - [sym_print_statement] = STATE(1695), - [sym_printf_statement] = STATE(1695), - [sym_redirected_io_statement] = STATE(1147), - [sym_piped_io_statement] = STATE(1147), - [sym_block] = STATE(1148), - [sym__exp] = STATE(1462), - [sym_ternary_exp] = STATE(1354), - [sym_binary_exp] = STATE(1354), - [sym__binary_in] = STATE(1309), - [sym_unary_exp] = STATE(1354), - [sym_update_exp] = STATE(1462), - [sym_assignment_exp] = STATE(1462), - [sym_piped_io_exp] = STATE(1462), - [sym_string_concat] = STATE(1354), - [sym_field_ref] = STATE(619), - [sym_array_ref] = STATE(603), - [sym_regex] = STATE(1462), - [sym_regex_constant] = STATE(1462), - [sym_grouping] = STATE(1354), - [sym__primitive] = STATE(1354), - [sym_namespace] = STATE(2063), - [sym_ns_qualified_name] = STATE(592), - [sym_number] = STATE(1354), - [sym_string] = STATE(1354), - [sym_func_call] = STATE(1354), - [sym_indirect_func_call] = STATE(1462), - [sym_comment] = STATE(1238), - [aux_sym_if_statement_repeat1] = STATE(1238), - [sym_identifier] = ACTIONS(39), - [anon_sym_SEMI] = ACTIONS(434), - [anon_sym_if] = ACTIONS(43), - [anon_sym_LPAREN] = ACTIONS(552), - [anon_sym_while] = ACTIONS(47), + [sym__statement] = STATE(1190), + [sym__statement_separated] = STATE(141), + [sym__control_statement] = STATE(1190), + [sym_if_statement] = STATE(1190), + [sym_while_statement] = STATE(1190), + [sym_do_while_statement] = STATE(1190), + [sym_for_statement] = STATE(1190), + [sym_for_in_statement] = STATE(1190), + [sym_delete_statement] = STATE(1190), + [sym_exit_statement] = STATE(1190), + [sym_return_statement] = STATE(1190), + [sym_switch_statement] = STATE(1190), + [sym__io_statement] = STATE(1190), + [sym__getline_exp] = STATE(1562), + [sym_getline_input] = STATE(1562), + [sym_getline_file] = STATE(1562), + [sym_print_statement] = STATE(1698), + [sym_printf_statement] = STATE(1698), + [sym_redirected_io_statement] = STATE(1190), + [sym_piped_io_statement] = STATE(1190), + [sym_block] = STATE(1193), + [sym__exp] = STATE(1562), + [sym_ternary_exp] = STATE(1461), + [sym_binary_exp] = STATE(1461), + [sym__binary_in] = STATE(1305), + [sym_unary_exp] = STATE(1461), + [sym_update_exp] = STATE(1562), + [sym_assignment_exp] = STATE(1562), + [sym_piped_io_exp] = STATE(1562), + [sym_string_concat] = STATE(1461), + [sym_field_ref] = STATE(950), + [sym_array_ref] = STATE(740), + [sym_regex] = STATE(1562), + [sym_regex_constant] = STATE(1562), + [sym_grouping] = STATE(1461), + [sym__primitive] = STATE(1461), + [sym_namespace] = STATE(2068), + [sym_ns_qualified_name] = STATE(672), + [sym_number] = STATE(1461), + [sym_string] = STATE(1461), + [sym_func_call] = STATE(1461), + [sym_indirect_func_call] = STATE(1562), + [sym_comment] = STATE(68), + [aux_sym_if_statement_repeat1] = STATE(68), + [sym_identifier] = ACTIONS(336), + [anon_sym_SEMI] = ACTIONS(404), + [anon_sym_if] = ACTIONS(340), + [anon_sym_LPAREN] = ACTIONS(342), + [anon_sym_while] = ACTIONS(344), [anon_sym_do] = ACTIONS(49), - [anon_sym_for] = ACTIONS(51), - [sym_break_statement] = ACTIONS(436), - [sym_continue_statement] = ACTIONS(436), + [anon_sym_for] = ACTIONS(346), + [sym_break_statement] = ACTIONS(406), + [sym_continue_statement] = ACTIONS(406), [anon_sym_delete] = ACTIONS(55), - [anon_sym_exit] = ACTIONS(57), - [anon_sym_return] = ACTIONS(59), + [anon_sym_exit] = ACTIONS(350), + [anon_sym_return] = ACTIONS(352), [anon_sym_switch] = ACTIONS(61), [anon_sym_LBRACE] = ACTIONS(316), - [anon_sym_getline] = ACTIONS(63), - [sym_next_statement] = ACTIONS(436), - [sym_nextfile_statement] = ACTIONS(436), - [anon_sym_print] = ACTIONS(65), - [anon_sym_printf] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(554), - [anon_sym_PLUS] = ACTIONS(71), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_BANG] = ACTIONS(556), - [anon_sym_PLUS_PLUS] = ACTIONS(558), - [anon_sym_DASH_DASH] = ACTIONS(558), - [anon_sym_DOLLAR] = ACTIONS(560), - [anon_sym_AT] = ACTIONS(562), + [anon_sym_getline] = ACTIONS(354), + [sym_next_statement] = ACTIONS(406), + [sym_nextfile_statement] = ACTIONS(406), + [anon_sym_print] = ACTIONS(356), + [anon_sym_printf] = ACTIONS(358), + [anon_sym_SLASH] = ACTIONS(360), + [anon_sym_PLUS] = ACTIONS(362), + [anon_sym_DASH] = ACTIONS(362), + [anon_sym_BANG] = ACTIONS(364), + [anon_sym_PLUS_PLUS] = ACTIONS(366), + [anon_sym_DASH_DASH] = ACTIONS(366), + [anon_sym_DOLLAR] = ACTIONS(368), + [anon_sym_AT] = ACTIONS(370), [aux_sym_number_token1] = ACTIONS(79), - [aux_sym_number_token2] = ACTIONS(486), - [anon_sym_DQUOTE] = ACTIONS(488), - [anon_sym_POUND] = ACTIONS(171), + [aux_sym_number_token2] = ACTIONS(328), + [anon_sym_DQUOTE] = ACTIONS(330), + [anon_sym_POUND] = ACTIONS(135), }, [75] = { - [sym__statement] = STATE(1225), - [sym__statement_separated] = STATE(146), - [sym__control_statement] = STATE(1225), - [sym_if_statement] = STATE(1225), - [sym_while_statement] = STATE(1225), - [sym_do_while_statement] = STATE(1225), - [sym_for_statement] = STATE(1225), - [sym_for_in_statement] = STATE(1225), - [sym_delete_statement] = STATE(1225), - [sym_exit_statement] = STATE(1225), - [sym_return_statement] = STATE(1225), - [sym_switch_statement] = STATE(1225), - [sym__io_statement] = STATE(1225), - [sym__getline_exp] = STATE(1568), - [sym_getline_input] = STATE(1568), - [sym_getline_file] = STATE(1568), - [sym_print_statement] = STATE(1699), - [sym_printf_statement] = STATE(1699), - [sym_redirected_io_statement] = STATE(1225), - [sym_piped_io_statement] = STATE(1225), - [sym_block] = STATE(1224), - [sym__exp] = STATE(1568), - [sym_ternary_exp] = STATE(1470), - [sym_binary_exp] = STATE(1470), - [sym__binary_in] = STATE(1373), - [sym_unary_exp] = STATE(1470), - [sym_update_exp] = STATE(1568), - [sym_assignment_exp] = STATE(1568), - [sym_piped_io_exp] = STATE(1568), - [sym_string_concat] = STATE(1470), - [sym_field_ref] = STATE(1121), - [sym_array_ref] = STATE(1022), - [sym_regex] = STATE(1568), - [sym_regex_constant] = STATE(1568), - [sym_grouping] = STATE(1470), - [sym__primitive] = STATE(1470), - [sym_namespace] = STATE(1955), - [sym_ns_qualified_name] = STATE(744), - [sym_number] = STATE(1470), - [sym_string] = STATE(1470), - [sym_func_call] = STATE(1470), - [sym_indirect_func_call] = STATE(1568), - [sym_comment] = STATE(1238), - [aux_sym_if_statement_repeat1] = STATE(1238), - [sym_identifier] = ACTIONS(362), - [anon_sym_SEMI] = ACTIONS(426), - [anon_sym_if] = ACTIONS(364), - [anon_sym_LPAREN] = ACTIONS(366), - [anon_sym_while] = ACTIONS(368), - [anon_sym_do] = ACTIONS(93), - [anon_sym_for] = ACTIONS(370), - [sym_break_statement] = ACTIONS(428), - [sym_continue_statement] = ACTIONS(428), - [anon_sym_delete] = ACTIONS(99), - [anon_sym_exit] = ACTIONS(372), - [anon_sym_return] = ACTIONS(374), - [anon_sym_switch] = ACTIONS(105), - [anon_sym_LBRACE] = ACTIONS(268), - [anon_sym_getline] = ACTIONS(376), - [sym_next_statement] = ACTIONS(428), - [sym_nextfile_statement] = ACTIONS(428), - [anon_sym_print] = ACTIONS(378), - [anon_sym_printf] = ACTIONS(380), - [anon_sym_SLASH] = ACTIONS(382), - [anon_sym_PLUS] = ACTIONS(384), - [anon_sym_DASH] = ACTIONS(384), - [anon_sym_BANG] = ACTIONS(386), - [anon_sym_PLUS_PLUS] = ACTIONS(388), - [anon_sym_DASH_DASH] = ACTIONS(388), - [anon_sym_DOLLAR] = ACTIONS(390), - [anon_sym_AT] = ACTIONS(392), - [aux_sym_number_token1] = ACTIONS(123), - [aux_sym_number_token2] = ACTIONS(286), - [anon_sym_DQUOTE] = ACTIONS(288), - [anon_sym_POUND] = ACTIONS(171), + [sym__statement] = STATE(1186), + [sym__statement_separated] = STATE(141), + [sym__control_statement] = STATE(1186), + [sym_if_statement] = STATE(1186), + [sym_while_statement] = STATE(1186), + [sym_do_while_statement] = STATE(1186), + [sym_for_statement] = STATE(1186), + [sym_for_in_statement] = STATE(1186), + [sym_delete_statement] = STATE(1186), + [sym_exit_statement] = STATE(1186), + [sym_return_statement] = STATE(1186), + [sym_switch_statement] = STATE(1186), + [sym__io_statement] = STATE(1186), + [sym__getline_exp] = STATE(1562), + [sym_getline_input] = STATE(1562), + [sym_getline_file] = STATE(1562), + [sym_print_statement] = STATE(1698), + [sym_printf_statement] = STATE(1698), + [sym_redirected_io_statement] = STATE(1186), + [sym_piped_io_statement] = STATE(1186), + [sym_block] = STATE(1181), + [sym__exp] = STATE(1562), + [sym_ternary_exp] = STATE(1461), + [sym_binary_exp] = STATE(1461), + [sym__binary_in] = STATE(1305), + [sym_unary_exp] = STATE(1461), + [sym_update_exp] = STATE(1562), + [sym_assignment_exp] = STATE(1562), + [sym_piped_io_exp] = STATE(1562), + [sym_string_concat] = STATE(1461), + [sym_field_ref] = STATE(950), + [sym_array_ref] = STATE(740), + [sym_regex] = STATE(1562), + [sym_regex_constant] = STATE(1562), + [sym_grouping] = STATE(1461), + [sym__primitive] = STATE(1461), + [sym_namespace] = STATE(2068), + [sym_ns_qualified_name] = STATE(672), + [sym_number] = STATE(1461), + [sym_string] = STATE(1461), + [sym_func_call] = STATE(1461), + [sym_indirect_func_call] = STATE(1562), + [sym_comment] = STATE(69), + [aux_sym_if_statement_repeat1] = STATE(69), + [sym_identifier] = ACTIONS(336), + [anon_sym_SEMI] = ACTIONS(408), + [anon_sym_if] = ACTIONS(340), + [anon_sym_LPAREN] = ACTIONS(342), + [anon_sym_while] = ACTIONS(344), + [anon_sym_do] = ACTIONS(49), + [anon_sym_for] = ACTIONS(346), + [sym_break_statement] = ACTIONS(410), + [sym_continue_statement] = ACTIONS(410), + [anon_sym_delete] = ACTIONS(55), + [anon_sym_exit] = ACTIONS(350), + [anon_sym_return] = ACTIONS(352), + [anon_sym_switch] = ACTIONS(61), + [anon_sym_LBRACE] = ACTIONS(316), + [anon_sym_getline] = ACTIONS(354), + [sym_next_statement] = ACTIONS(410), + [sym_nextfile_statement] = ACTIONS(410), + [anon_sym_print] = ACTIONS(356), + [anon_sym_printf] = ACTIONS(358), + [anon_sym_SLASH] = ACTIONS(360), + [anon_sym_PLUS] = ACTIONS(362), + [anon_sym_DASH] = ACTIONS(362), + [anon_sym_BANG] = ACTIONS(364), + [anon_sym_PLUS_PLUS] = ACTIONS(366), + [anon_sym_DASH_DASH] = ACTIONS(366), + [anon_sym_DOLLAR] = ACTIONS(368), + [anon_sym_AT] = ACTIONS(370), + [aux_sym_number_token1] = ACTIONS(79), + [aux_sym_number_token2] = ACTIONS(328), + [anon_sym_DQUOTE] = ACTIONS(330), + [anon_sym_POUND] = ACTIONS(135), }, [76] = { - [sym__statement] = STATE(1252), - [sym__statement_separated] = STATE(3), - [sym__control_statement] = STATE(1252), - [sym_if_statement] = STATE(1252), - [sym_while_statement] = STATE(1252), - [sym_do_while_statement] = STATE(1252), - [sym_for_statement] = STATE(1252), - [sym_for_in_statement] = STATE(1252), - [sym_delete_statement] = STATE(1252), - [sym_exit_statement] = STATE(1252), - [sym_return_statement] = STATE(1252), - [sym_switch_statement] = STATE(1252), - [sym__io_statement] = STATE(1252), - [sym__getline_exp] = STATE(1495), - [sym_getline_input] = STATE(1495), - [sym_getline_file] = STATE(1495), - [sym_print_statement] = STATE(1696), - [sym_printf_statement] = STATE(1696), - [sym_redirected_io_statement] = STATE(1252), - [sym_piped_io_statement] = STATE(1252), - [sym_block] = STATE(1254), - [sym__exp] = STATE(1495), - [sym_ternary_exp] = STATE(1421), - [sym_binary_exp] = STATE(1421), - [sym__binary_in] = STATE(1373), - [sym_unary_exp] = STATE(1421), - [sym_update_exp] = STATE(1495), - [sym_assignment_exp] = STATE(1495), - [sym_piped_io_exp] = STATE(1495), - [sym_string_concat] = STATE(1421), - [sym_field_ref] = STATE(703), - [sym_array_ref] = STATE(610), - [sym_regex] = STATE(1495), - [sym_regex_constant] = STATE(1495), - [sym_grouping] = STATE(1421), - [sym__primitive] = STATE(1421), - [sym_namespace] = STATE(1955), - [sym_ns_qualified_name] = STATE(607), - [sym_number] = STATE(1421), - [sym_string] = STATE(1421), - [sym_func_call] = STATE(1421), - [sym_indirect_func_call] = STATE(1495), - [sym_comment] = STATE(1238), - [aux_sym_if_statement_repeat1] = STATE(1238), - [sym_identifier] = ACTIONS(85), - [anon_sym_SEMI] = ACTIONS(496), - [anon_sym_if] = ACTIONS(87), - [anon_sym_LPAREN] = ACTIONS(272), - [anon_sym_while] = ACTIONS(91), - [anon_sym_do] = ACTIONS(93), - [anon_sym_for] = ACTIONS(95), - [sym_break_statement] = ACTIONS(498), - [sym_continue_statement] = ACTIONS(498), - [anon_sym_delete] = ACTIONS(99), - [anon_sym_exit] = ACTIONS(101), - [anon_sym_return] = ACTIONS(103), - [anon_sym_switch] = ACTIONS(105), - [anon_sym_LBRACE] = ACTIONS(268), - [anon_sym_getline] = ACTIONS(107), - [sym_next_statement] = ACTIONS(498), - [sym_nextfile_statement] = ACTIONS(498), - [anon_sym_print] = ACTIONS(109), - [anon_sym_printf] = ACTIONS(111), - [anon_sym_SLASH] = ACTIONS(276), - [anon_sym_PLUS] = ACTIONS(115), - [anon_sym_DASH] = ACTIONS(115), - [anon_sym_BANG] = ACTIONS(278), - [anon_sym_PLUS_PLUS] = ACTIONS(280), - [anon_sym_DASH_DASH] = ACTIONS(280), - [anon_sym_DOLLAR] = ACTIONS(282), - [anon_sym_AT] = ACTIONS(284), - [aux_sym_number_token1] = ACTIONS(123), - [aux_sym_number_token2] = ACTIONS(286), - [anon_sym_DQUOTE] = ACTIONS(288), - [anon_sym_POUND] = ACTIONS(171), - }, - [77] = { - [sym__statement] = STATE(1244), - [sym__statement_separated] = STATE(3), - [sym__control_statement] = STATE(1244), - [sym_if_statement] = STATE(1244), - [sym_while_statement] = STATE(1244), - [sym_do_while_statement] = STATE(1244), - [sym_for_statement] = STATE(1244), - [sym_for_in_statement] = STATE(1244), - [sym_delete_statement] = STATE(1244), - [sym_exit_statement] = STATE(1244), - [sym_return_statement] = STATE(1244), - [sym_switch_statement] = STATE(1244), - [sym__io_statement] = STATE(1244), - [sym__getline_exp] = STATE(1495), - [sym_getline_input] = STATE(1495), - [sym_getline_file] = STATE(1495), - [sym_print_statement] = STATE(1696), - [sym_printf_statement] = STATE(1696), - [sym_redirected_io_statement] = STATE(1244), - [sym_piped_io_statement] = STATE(1244), - [sym_block] = STATE(1243), - [sym__exp] = STATE(1495), - [sym_ternary_exp] = STATE(1421), - [sym_binary_exp] = STATE(1421), - [sym__binary_in] = STATE(1373), - [sym_unary_exp] = STATE(1421), - [sym_update_exp] = STATE(1495), - [sym_assignment_exp] = STATE(1495), - [sym_piped_io_exp] = STATE(1495), - [sym_string_concat] = STATE(1421), - [sym_field_ref] = STATE(703), - [sym_array_ref] = STATE(610), - [sym_regex] = STATE(1495), - [sym_regex_constant] = STATE(1495), - [sym_grouping] = STATE(1421), - [sym__primitive] = STATE(1421), - [sym_namespace] = STATE(1955), - [sym_ns_qualified_name] = STATE(607), - [sym_number] = STATE(1421), - [sym_string] = STATE(1421), - [sym_func_call] = STATE(1421), - [sym_indirect_func_call] = STATE(1495), - [sym_comment] = STATE(36), - [aux_sym_if_statement_repeat1] = STATE(36), - [sym_identifier] = ACTIONS(85), - [anon_sym_SEMI] = ACTIONS(570), - [anon_sym_if] = ACTIONS(87), - [anon_sym_LPAREN] = ACTIONS(272), - [anon_sym_while] = ACTIONS(91), - [anon_sym_do] = ACTIONS(93), - [anon_sym_for] = ACTIONS(95), - [sym_break_statement] = ACTIONS(572), - [sym_continue_statement] = ACTIONS(572), - [anon_sym_delete] = ACTIONS(99), - [anon_sym_exit] = ACTIONS(101), - [anon_sym_return] = ACTIONS(103), - [anon_sym_switch] = ACTIONS(105), - [anon_sym_LBRACE] = ACTIONS(268), - [anon_sym_getline] = ACTIONS(107), - [sym_next_statement] = ACTIONS(572), - [sym_nextfile_statement] = ACTIONS(572), - [anon_sym_print] = ACTIONS(109), - [anon_sym_printf] = ACTIONS(111), - [anon_sym_SLASH] = ACTIONS(276), - [anon_sym_PLUS] = ACTIONS(115), - [anon_sym_DASH] = ACTIONS(115), - [anon_sym_BANG] = ACTIONS(278), - [anon_sym_PLUS_PLUS] = ACTIONS(280), - [anon_sym_DASH_DASH] = ACTIONS(280), - [anon_sym_DOLLAR] = ACTIONS(282), - [anon_sym_AT] = ACTIONS(284), - [aux_sym_number_token1] = ACTIONS(123), - [aux_sym_number_token2] = ACTIONS(286), - [anon_sym_DQUOTE] = ACTIONS(288), - [anon_sym_POUND] = ACTIONS(171), - }, - [78] = { - [sym__statement] = STATE(1145), + [sym__statement] = STATE(1192), [sym__statement_separated] = STATE(141), - [sym__control_statement] = STATE(1145), - [sym_if_statement] = STATE(1145), - [sym_while_statement] = STATE(1145), - [sym_do_while_statement] = STATE(1145), - [sym_for_statement] = STATE(1145), - [sym_for_in_statement] = STATE(1145), - [sym_delete_statement] = STATE(1145), - [sym_exit_statement] = STATE(1145), - [sym_return_statement] = STATE(1145), - [sym_switch_statement] = STATE(1145), - [sym__io_statement] = STATE(1145), - [sym__getline_exp] = STATE(1547), - [sym_getline_input] = STATE(1547), - [sym_getline_file] = STATE(1547), - [sym_print_statement] = STATE(1697), - [sym_printf_statement] = STATE(1697), - [sym_redirected_io_statement] = STATE(1145), - [sym_piped_io_statement] = STATE(1145), - [sym_block] = STATE(1146), - [sym__exp] = STATE(1547), - [sym_ternary_exp] = STATE(1441), - [sym_binary_exp] = STATE(1441), - [sym__binary_in] = STATE(1309), - [sym_unary_exp] = STATE(1441), - [sym_update_exp] = STATE(1547), - [sym_assignment_exp] = STATE(1547), - [sym_piped_io_exp] = STATE(1547), - [sym_string_concat] = STATE(1441), - [sym_field_ref] = STATE(995), - [sym_array_ref] = STATE(774), - [sym_regex] = STATE(1547), - [sym_regex_constant] = STATE(1547), - [sym_grouping] = STATE(1441), - [sym__primitive] = STATE(1441), - [sym_namespace] = STATE(2063), - [sym_ns_qualified_name] = STATE(647), - [sym_number] = STATE(1441), - [sym_string] = STATE(1441), - [sym_func_call] = STATE(1441), - [sym_indirect_func_call] = STATE(1547), - [sym_comment] = STATE(1238), - [aux_sym_if_statement_repeat1] = STATE(1238), - [sym_identifier] = ACTIONS(450), - [anon_sym_SEMI] = ACTIONS(442), - [anon_sym_if] = ACTIONS(454), - [anon_sym_LPAREN] = ACTIONS(456), - [anon_sym_while] = ACTIONS(458), + [sym__control_statement] = STATE(1192), + [sym_if_statement] = STATE(1192), + [sym_while_statement] = STATE(1192), + [sym_do_while_statement] = STATE(1192), + [sym_for_statement] = STATE(1192), + [sym_for_in_statement] = STATE(1192), + [sym_delete_statement] = STATE(1192), + [sym_exit_statement] = STATE(1192), + [sym_return_statement] = STATE(1192), + [sym_switch_statement] = STATE(1192), + [sym__io_statement] = STATE(1192), + [sym__getline_exp] = STATE(1562), + [sym_getline_input] = STATE(1562), + [sym_getline_file] = STATE(1562), + [sym_print_statement] = STATE(1698), + [sym_printf_statement] = STATE(1698), + [sym_redirected_io_statement] = STATE(1192), + [sym_piped_io_statement] = STATE(1192), + [sym_block] = STATE(1191), + [sym__exp] = STATE(1562), + [sym_ternary_exp] = STATE(1461), + [sym_binary_exp] = STATE(1461), + [sym__binary_in] = STATE(1305), + [sym_unary_exp] = STATE(1461), + [sym_update_exp] = STATE(1562), + [sym_assignment_exp] = STATE(1562), + [sym_piped_io_exp] = STATE(1562), + [sym_string_concat] = STATE(1461), + [sym_field_ref] = STATE(950), + [sym_array_ref] = STATE(740), + [sym_regex] = STATE(1562), + [sym_regex_constant] = STATE(1562), + [sym_grouping] = STATE(1461), + [sym__primitive] = STATE(1461), + [sym_namespace] = STATE(2068), + [sym_ns_qualified_name] = STATE(672), + [sym_number] = STATE(1461), + [sym_string] = STATE(1461), + [sym_func_call] = STATE(1461), + [sym_indirect_func_call] = STATE(1562), + [sym_comment] = STATE(71), + [aux_sym_if_statement_repeat1] = STATE(71), + [sym_identifier] = ACTIONS(336), + [anon_sym_SEMI] = ACTIONS(412), + [anon_sym_if] = ACTIONS(340), + [anon_sym_LPAREN] = ACTIONS(342), + [anon_sym_while] = ACTIONS(344), [anon_sym_do] = ACTIONS(49), - [anon_sym_for] = ACTIONS(460), - [sym_break_statement] = ACTIONS(444), - [sym_continue_statement] = ACTIONS(444), + [anon_sym_for] = ACTIONS(346), + [sym_break_statement] = ACTIONS(414), + [sym_continue_statement] = ACTIONS(414), [anon_sym_delete] = ACTIONS(55), - [anon_sym_exit] = ACTIONS(464), - [anon_sym_return] = ACTIONS(466), + [anon_sym_exit] = ACTIONS(350), + [anon_sym_return] = ACTIONS(352), [anon_sym_switch] = ACTIONS(61), [anon_sym_LBRACE] = ACTIONS(316), - [anon_sym_getline] = ACTIONS(468), - [sym_next_statement] = ACTIONS(444), - [sym_nextfile_statement] = ACTIONS(444), - [anon_sym_print] = ACTIONS(470), - [anon_sym_printf] = ACTIONS(472), - [anon_sym_SLASH] = ACTIONS(474), - [anon_sym_PLUS] = ACTIONS(476), - [anon_sym_DASH] = ACTIONS(476), - [anon_sym_BANG] = ACTIONS(478), - [anon_sym_PLUS_PLUS] = ACTIONS(480), - [anon_sym_DASH_DASH] = ACTIONS(480), - [anon_sym_DOLLAR] = ACTIONS(482), - [anon_sym_AT] = ACTIONS(484), + [anon_sym_getline] = ACTIONS(354), + [sym_next_statement] = ACTIONS(414), + [sym_nextfile_statement] = ACTIONS(414), + [anon_sym_print] = ACTIONS(356), + [anon_sym_printf] = ACTIONS(358), + [anon_sym_SLASH] = ACTIONS(360), + [anon_sym_PLUS] = ACTIONS(362), + [anon_sym_DASH] = ACTIONS(362), + [anon_sym_BANG] = ACTIONS(364), + [anon_sym_PLUS_PLUS] = ACTIONS(366), + [anon_sym_DASH_DASH] = ACTIONS(366), + [anon_sym_DOLLAR] = ACTIONS(368), + [anon_sym_AT] = ACTIONS(370), [aux_sym_number_token1] = ACTIONS(79), - [aux_sym_number_token2] = ACTIONS(486), - [anon_sym_DQUOTE] = ACTIONS(488), - [anon_sym_POUND] = ACTIONS(171), - }, - [79] = { - [sym__statement] = STATE(1208), - [sym__statement_separated] = STATE(3), - [sym__control_statement] = STATE(1208), - [sym_if_statement] = STATE(1208), - [sym_while_statement] = STATE(1208), - [sym_do_while_statement] = STATE(1208), - [sym_for_statement] = STATE(1208), - [sym_for_in_statement] = STATE(1208), - [sym_delete_statement] = STATE(1208), - [sym_exit_statement] = STATE(1208), - [sym_return_statement] = STATE(1208), - [sym_switch_statement] = STATE(1208), - [sym__io_statement] = STATE(1208), - [sym__getline_exp] = STATE(1495), - [sym_getline_input] = STATE(1495), - [sym_getline_file] = STATE(1495), - [sym_print_statement] = STATE(1696), - [sym_printf_statement] = STATE(1696), - [sym_redirected_io_statement] = STATE(1208), - [sym_piped_io_statement] = STATE(1208), - [sym_block] = STATE(1209), - [sym__exp] = STATE(1495), - [sym_ternary_exp] = STATE(1421), - [sym_binary_exp] = STATE(1421), - [sym__binary_in] = STATE(1373), - [sym_unary_exp] = STATE(1421), - [sym_update_exp] = STATE(1495), - [sym_assignment_exp] = STATE(1495), - [sym_piped_io_exp] = STATE(1495), - [sym_string_concat] = STATE(1421), - [sym_field_ref] = STATE(703), - [sym_array_ref] = STATE(610), - [sym_regex] = STATE(1495), - [sym_regex_constant] = STATE(1495), - [sym_grouping] = STATE(1421), - [sym__primitive] = STATE(1421), - [sym_namespace] = STATE(1955), - [sym_ns_qualified_name] = STATE(607), - [sym_number] = STATE(1421), - [sym_string] = STATE(1421), - [sym_func_call] = STATE(1421), - [sym_indirect_func_call] = STATE(1495), - [sym_comment] = STATE(1238), - [aux_sym_if_statement_repeat1] = STATE(1238), - [sym_identifier] = ACTIONS(85), - [anon_sym_SEMI] = ACTIONS(536), - [anon_sym_if] = ACTIONS(87), - [anon_sym_LPAREN] = ACTIONS(272), - [anon_sym_while] = ACTIONS(91), - [anon_sym_do] = ACTIONS(93), - [anon_sym_for] = ACTIONS(95), - [sym_break_statement] = ACTIONS(538), - [sym_continue_statement] = ACTIONS(538), - [anon_sym_delete] = ACTIONS(99), - [anon_sym_exit] = ACTIONS(101), - [anon_sym_return] = ACTIONS(103), - [anon_sym_switch] = ACTIONS(105), - [anon_sym_LBRACE] = ACTIONS(268), - [anon_sym_getline] = ACTIONS(107), - [sym_next_statement] = ACTIONS(538), - [sym_nextfile_statement] = ACTIONS(538), - [anon_sym_print] = ACTIONS(109), - [anon_sym_printf] = ACTIONS(111), - [anon_sym_SLASH] = ACTIONS(276), - [anon_sym_PLUS] = ACTIONS(115), - [anon_sym_DASH] = ACTIONS(115), - [anon_sym_BANG] = ACTIONS(278), - [anon_sym_PLUS_PLUS] = ACTIONS(280), - [anon_sym_DASH_DASH] = ACTIONS(280), - [anon_sym_DOLLAR] = ACTIONS(282), - [anon_sym_AT] = ACTIONS(284), - [aux_sym_number_token1] = ACTIONS(123), - [aux_sym_number_token2] = ACTIONS(286), - [anon_sym_DQUOTE] = ACTIONS(288), - [anon_sym_POUND] = ACTIONS(171), - }, - [80] = { - [sym__statement] = STATE(1214), - [sym__statement_separated] = STATE(3), - [sym__control_statement] = STATE(1214), - [sym_if_statement] = STATE(1214), - [sym_while_statement] = STATE(1214), - [sym_do_while_statement] = STATE(1214), - [sym_for_statement] = STATE(1214), - [sym_for_in_statement] = STATE(1214), - [sym_delete_statement] = STATE(1214), - [sym_exit_statement] = STATE(1214), - [sym_return_statement] = STATE(1214), - [sym_switch_statement] = STATE(1214), - [sym__io_statement] = STATE(1214), - [sym__getline_exp] = STATE(1495), - [sym_getline_input] = STATE(1495), - [sym_getline_file] = STATE(1495), - [sym_print_statement] = STATE(1696), - [sym_printf_statement] = STATE(1696), - [sym_redirected_io_statement] = STATE(1214), - [sym_piped_io_statement] = STATE(1214), - [sym_block] = STATE(1215), - [sym__exp] = STATE(1495), - [sym_ternary_exp] = STATE(1421), - [sym_binary_exp] = STATE(1421), - [sym__binary_in] = STATE(1373), - [sym_unary_exp] = STATE(1421), - [sym_update_exp] = STATE(1495), - [sym_assignment_exp] = STATE(1495), - [sym_piped_io_exp] = STATE(1495), - [sym_string_concat] = STATE(1421), - [sym_field_ref] = STATE(703), - [sym_array_ref] = STATE(610), - [sym_regex] = STATE(1495), - [sym_regex_constant] = STATE(1495), - [sym_grouping] = STATE(1421), - [sym__primitive] = STATE(1421), - [sym_namespace] = STATE(1955), - [sym_ns_qualified_name] = STATE(607), - [sym_number] = STATE(1421), - [sym_string] = STATE(1421), - [sym_func_call] = STATE(1421), - [sym_indirect_func_call] = STATE(1495), - [sym_comment] = STATE(79), - [aux_sym_if_statement_repeat1] = STATE(79), - [sym_identifier] = ACTIONS(85), - [anon_sym_SEMI] = ACTIONS(532), - [anon_sym_if] = ACTIONS(87), - [anon_sym_LPAREN] = ACTIONS(272), - [anon_sym_while] = ACTIONS(91), - [anon_sym_do] = ACTIONS(93), - [anon_sym_for] = ACTIONS(95), - [sym_break_statement] = ACTIONS(534), - [sym_continue_statement] = ACTIONS(534), - [anon_sym_delete] = ACTIONS(99), - [anon_sym_exit] = ACTIONS(101), - [anon_sym_return] = ACTIONS(103), - [anon_sym_switch] = ACTIONS(105), - [anon_sym_LBRACE] = ACTIONS(268), - [anon_sym_getline] = ACTIONS(107), - [sym_next_statement] = ACTIONS(534), - [sym_nextfile_statement] = ACTIONS(534), - [anon_sym_print] = ACTIONS(109), - [anon_sym_printf] = ACTIONS(111), - [anon_sym_SLASH] = ACTIONS(276), - [anon_sym_PLUS] = ACTIONS(115), - [anon_sym_DASH] = ACTIONS(115), - [anon_sym_BANG] = ACTIONS(278), - [anon_sym_PLUS_PLUS] = ACTIONS(280), - [anon_sym_DASH_DASH] = ACTIONS(280), - [anon_sym_DOLLAR] = ACTIONS(282), - [anon_sym_AT] = ACTIONS(284), - [aux_sym_number_token1] = ACTIONS(123), - [aux_sym_number_token2] = ACTIONS(286), - [anon_sym_DQUOTE] = ACTIONS(288), - [anon_sym_POUND] = ACTIONS(171), - }, - [81] = { - [sym__statement] = STATE(1196), - [sym__statement_separated] = STATE(146), - [sym__control_statement] = STATE(1196), - [sym_if_statement] = STATE(1196), - [sym_while_statement] = STATE(1196), - [sym_do_while_statement] = STATE(1196), - [sym_for_statement] = STATE(1196), - [sym_for_in_statement] = STATE(1196), - [sym_delete_statement] = STATE(1196), - [sym_exit_statement] = STATE(1196), - [sym_return_statement] = STATE(1196), - [sym_switch_statement] = STATE(1196), - [sym__io_statement] = STATE(1196), - [sym__getline_exp] = STATE(1568), - [sym_getline_input] = STATE(1568), - [sym_getline_file] = STATE(1568), - [sym_print_statement] = STATE(1699), - [sym_printf_statement] = STATE(1699), - [sym_redirected_io_statement] = STATE(1196), - [sym_piped_io_statement] = STATE(1196), - [sym_block] = STATE(1228), - [sym__exp] = STATE(1568), - [sym_ternary_exp] = STATE(1470), - [sym_binary_exp] = STATE(1470), - [sym__binary_in] = STATE(1373), - [sym_unary_exp] = STATE(1470), - [sym_update_exp] = STATE(1568), - [sym_assignment_exp] = STATE(1568), - [sym_piped_io_exp] = STATE(1568), - [sym_string_concat] = STATE(1470), - [sym_field_ref] = STATE(1121), - [sym_array_ref] = STATE(1022), - [sym_regex] = STATE(1568), - [sym_regex_constant] = STATE(1568), - [sym_grouping] = STATE(1470), - [sym__primitive] = STATE(1470), - [sym_namespace] = STATE(1955), - [sym_ns_qualified_name] = STATE(744), - [sym_number] = STATE(1470), - [sym_string] = STATE(1470), - [sym_func_call] = STATE(1470), - [sym_indirect_func_call] = STATE(1568), - [sym_comment] = STATE(98), - [aux_sym_if_statement_repeat1] = STATE(98), - [sym_identifier] = ACTIONS(362), - [anon_sym_SEMI] = ACTIONS(394), - [anon_sym_if] = ACTIONS(364), - [anon_sym_LPAREN] = ACTIONS(366), - [anon_sym_while] = ACTIONS(368), - [anon_sym_do] = ACTIONS(93), - [anon_sym_for] = ACTIONS(370), - [sym_break_statement] = ACTIONS(396), - [sym_continue_statement] = ACTIONS(396), - [anon_sym_delete] = ACTIONS(99), - [anon_sym_exit] = ACTIONS(372), - [anon_sym_return] = ACTIONS(374), - [anon_sym_switch] = ACTIONS(105), - [anon_sym_LBRACE] = ACTIONS(268), - [anon_sym_getline] = ACTIONS(376), - [sym_next_statement] = ACTIONS(396), - [sym_nextfile_statement] = ACTIONS(396), - [anon_sym_print] = ACTIONS(378), - [anon_sym_printf] = ACTIONS(380), - [anon_sym_SLASH] = ACTIONS(382), - [anon_sym_PLUS] = ACTIONS(384), - [anon_sym_DASH] = ACTIONS(384), - [anon_sym_BANG] = ACTIONS(386), - [anon_sym_PLUS_PLUS] = ACTIONS(388), - [anon_sym_DASH_DASH] = ACTIONS(388), - [anon_sym_DOLLAR] = ACTIONS(390), - [anon_sym_AT] = ACTIONS(392), - [aux_sym_number_token1] = ACTIONS(123), - [aux_sym_number_token2] = ACTIONS(286), - [anon_sym_DQUOTE] = ACTIONS(288), - [anon_sym_POUND] = ACTIONS(171), + [aux_sym_number_token2] = ACTIONS(328), + [anon_sym_DQUOTE] = ACTIONS(330), + [anon_sym_POUND] = ACTIONS(135), }, - [82] = { - [sym__statement] = STATE(1159), - [sym__statement_separated] = STATE(2), - [sym__control_statement] = STATE(1159), - [sym_if_statement] = STATE(1159), - [sym_while_statement] = STATE(1159), - [sym_do_while_statement] = STATE(1159), - [sym_for_statement] = STATE(1159), - [sym_for_in_statement] = STATE(1159), - [sym_delete_statement] = STATE(1159), - [sym_exit_statement] = STATE(1159), - [sym_return_statement] = STATE(1159), - [sym_switch_statement] = STATE(1159), - [sym__io_statement] = STATE(1159), - [sym__getline_exp] = STATE(1462), - [sym_getline_input] = STATE(1462), - [sym_getline_file] = STATE(1462), - [sym_print_statement] = STATE(1695), - [sym_printf_statement] = STATE(1695), - [sym_redirected_io_statement] = STATE(1159), - [sym_piped_io_statement] = STATE(1159), - [sym_block] = STATE(1157), - [sym__exp] = STATE(1462), - [sym_ternary_exp] = STATE(1354), - [sym_binary_exp] = STATE(1354), - [sym__binary_in] = STATE(1309), - [sym_unary_exp] = STATE(1354), - [sym_update_exp] = STATE(1462), - [sym_assignment_exp] = STATE(1462), - [sym_piped_io_exp] = STATE(1462), - [sym_string_concat] = STATE(1354), - [sym_field_ref] = STATE(619), - [sym_array_ref] = STATE(603), - [sym_regex] = STATE(1462), - [sym_regex_constant] = STATE(1462), - [sym_grouping] = STATE(1354), - [sym__primitive] = STATE(1354), - [sym_namespace] = STATE(2063), - [sym_ns_qualified_name] = STATE(592), - [sym_number] = STATE(1354), - [sym_string] = STATE(1354), - [sym_func_call] = STATE(1354), - [sym_indirect_func_call] = STATE(1462), - [sym_comment] = STATE(83), - [aux_sym_if_statement_repeat1] = STATE(83), - [sym_identifier] = ACTIONS(39), - [anon_sym_SEMI] = ACTIONS(300), - [anon_sym_if] = ACTIONS(43), - [anon_sym_LPAREN] = ACTIONS(552), - [anon_sym_while] = ACTIONS(47), + [77] = { + [sym__statement] = STATE(1183), + [sym__statement_separated] = STATE(141), + [sym__control_statement] = STATE(1183), + [sym_if_statement] = STATE(1183), + [sym_while_statement] = STATE(1183), + [sym_do_while_statement] = STATE(1183), + [sym_for_statement] = STATE(1183), + [sym_for_in_statement] = STATE(1183), + [sym_delete_statement] = STATE(1183), + [sym_exit_statement] = STATE(1183), + [sym_return_statement] = STATE(1183), + [sym_switch_statement] = STATE(1183), + [sym__io_statement] = STATE(1183), + [sym__getline_exp] = STATE(1562), + [sym_getline_input] = STATE(1562), + [sym_getline_file] = STATE(1562), + [sym_print_statement] = STATE(1698), + [sym_printf_statement] = STATE(1698), + [sym_redirected_io_statement] = STATE(1183), + [sym_piped_io_statement] = STATE(1183), + [sym_block] = STATE(1180), + [sym__exp] = STATE(1562), + [sym_ternary_exp] = STATE(1461), + [sym_binary_exp] = STATE(1461), + [sym__binary_in] = STATE(1305), + [sym_unary_exp] = STATE(1461), + [sym_update_exp] = STATE(1562), + [sym_assignment_exp] = STATE(1562), + [sym_piped_io_exp] = STATE(1562), + [sym_string_concat] = STATE(1461), + [sym_field_ref] = STATE(950), + [sym_array_ref] = STATE(740), + [sym_regex] = STATE(1562), + [sym_regex_constant] = STATE(1562), + [sym_grouping] = STATE(1461), + [sym__primitive] = STATE(1461), + [sym_namespace] = STATE(2068), + [sym_ns_qualified_name] = STATE(672), + [sym_number] = STATE(1461), + [sym_string] = STATE(1461), + [sym_func_call] = STATE(1461), + [sym_indirect_func_call] = STATE(1562), + [sym_comment] = STATE(72), + [aux_sym_if_statement_repeat1] = STATE(72), + [sym_identifier] = ACTIONS(336), + [anon_sym_SEMI] = ACTIONS(416), + [anon_sym_if] = ACTIONS(340), + [anon_sym_LPAREN] = ACTIONS(342), + [anon_sym_while] = ACTIONS(344), [anon_sym_do] = ACTIONS(49), - [anon_sym_for] = ACTIONS(51), - [sym_break_statement] = ACTIONS(310), - [sym_continue_statement] = ACTIONS(310), + [anon_sym_for] = ACTIONS(346), + [sym_break_statement] = ACTIONS(418), + [sym_continue_statement] = ACTIONS(418), [anon_sym_delete] = ACTIONS(55), - [anon_sym_exit] = ACTIONS(57), - [anon_sym_return] = ACTIONS(59), + [anon_sym_exit] = ACTIONS(350), + [anon_sym_return] = ACTIONS(352), [anon_sym_switch] = ACTIONS(61), [anon_sym_LBRACE] = ACTIONS(316), - [anon_sym_getline] = ACTIONS(63), - [sym_next_statement] = ACTIONS(310), - [sym_nextfile_statement] = ACTIONS(310), - [anon_sym_print] = ACTIONS(65), - [anon_sym_printf] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(554), - [anon_sym_PLUS] = ACTIONS(71), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_BANG] = ACTIONS(556), - [anon_sym_PLUS_PLUS] = ACTIONS(558), - [anon_sym_DASH_DASH] = ACTIONS(558), - [anon_sym_DOLLAR] = ACTIONS(560), - [anon_sym_AT] = ACTIONS(562), + [anon_sym_getline] = ACTIONS(354), + [sym_next_statement] = ACTIONS(418), + [sym_nextfile_statement] = ACTIONS(418), + [anon_sym_print] = ACTIONS(356), + [anon_sym_printf] = ACTIONS(358), + [anon_sym_SLASH] = ACTIONS(360), + [anon_sym_PLUS] = ACTIONS(362), + [anon_sym_DASH] = ACTIONS(362), + [anon_sym_BANG] = ACTIONS(364), + [anon_sym_PLUS_PLUS] = ACTIONS(366), + [anon_sym_DASH_DASH] = ACTIONS(366), + [anon_sym_DOLLAR] = ACTIONS(368), + [anon_sym_AT] = ACTIONS(370), [aux_sym_number_token1] = ACTIONS(79), - [aux_sym_number_token2] = ACTIONS(486), - [anon_sym_DQUOTE] = ACTIONS(488), - [anon_sym_POUND] = ACTIONS(171), + [aux_sym_number_token2] = ACTIONS(328), + [anon_sym_DQUOTE] = ACTIONS(330), + [anon_sym_POUND] = ACTIONS(135), }, - [83] = { - [sym__statement] = STATE(1169), - [sym__statement_separated] = STATE(2), - [sym__control_statement] = STATE(1169), - [sym_if_statement] = STATE(1169), - [sym_while_statement] = STATE(1169), - [sym_do_while_statement] = STATE(1169), - [sym_for_statement] = STATE(1169), - [sym_for_in_statement] = STATE(1169), - [sym_delete_statement] = STATE(1169), - [sym_exit_statement] = STATE(1169), - [sym_return_statement] = STATE(1169), - [sym_switch_statement] = STATE(1169), - [sym__io_statement] = STATE(1169), - [sym__getline_exp] = STATE(1462), - [sym_getline_input] = STATE(1462), - [sym_getline_file] = STATE(1462), - [sym_print_statement] = STATE(1695), - [sym_printf_statement] = STATE(1695), - [sym_redirected_io_statement] = STATE(1169), - [sym_piped_io_statement] = STATE(1169), - [sym_block] = STATE(1161), - [sym__exp] = STATE(1462), - [sym_ternary_exp] = STATE(1354), - [sym_binary_exp] = STATE(1354), - [sym__binary_in] = STATE(1309), - [sym_unary_exp] = STATE(1354), - [sym_update_exp] = STATE(1462), - [sym_assignment_exp] = STATE(1462), - [sym_piped_io_exp] = STATE(1462), - [sym_string_concat] = STATE(1354), - [sym_field_ref] = STATE(619), - [sym_array_ref] = STATE(603), - [sym_regex] = STATE(1462), - [sym_regex_constant] = STATE(1462), - [sym_grouping] = STATE(1354), - [sym__primitive] = STATE(1354), - [sym_namespace] = STATE(2063), - [sym_ns_qualified_name] = STATE(592), - [sym_number] = STATE(1354), - [sym_string] = STATE(1354), - [sym_func_call] = STATE(1354), - [sym_indirect_func_call] = STATE(1462), - [sym_comment] = STATE(1238), - [aux_sym_if_statement_repeat1] = STATE(1238), - [sym_identifier] = ACTIONS(39), - [anon_sym_SEMI] = ACTIONS(574), - [anon_sym_if] = ACTIONS(43), - [anon_sym_LPAREN] = ACTIONS(552), - [anon_sym_while] = ACTIONS(47), + [78] = { + [sym__statement] = STATE(1177), + [sym__statement_separated] = STATE(141), + [sym__control_statement] = STATE(1177), + [sym_if_statement] = STATE(1177), + [sym_while_statement] = STATE(1177), + [sym_do_while_statement] = STATE(1177), + [sym_for_statement] = STATE(1177), + [sym_for_in_statement] = STATE(1177), + [sym_delete_statement] = STATE(1177), + [sym_exit_statement] = STATE(1177), + [sym_return_statement] = STATE(1177), + [sym_switch_statement] = STATE(1177), + [sym__io_statement] = STATE(1177), + [sym__getline_exp] = STATE(1562), + [sym_getline_input] = STATE(1562), + [sym_getline_file] = STATE(1562), + [sym_print_statement] = STATE(1698), + [sym_printf_statement] = STATE(1698), + [sym_redirected_io_statement] = STATE(1177), + [sym_piped_io_statement] = STATE(1177), + [sym_block] = STATE(1176), + [sym__exp] = STATE(1562), + [sym_ternary_exp] = STATE(1461), + [sym_binary_exp] = STATE(1461), + [sym__binary_in] = STATE(1305), + [sym_unary_exp] = STATE(1461), + [sym_update_exp] = STATE(1562), + [sym_assignment_exp] = STATE(1562), + [sym_piped_io_exp] = STATE(1562), + [sym_string_concat] = STATE(1461), + [sym_field_ref] = STATE(950), + [sym_array_ref] = STATE(740), + [sym_regex] = STATE(1562), + [sym_regex_constant] = STATE(1562), + [sym_grouping] = STATE(1461), + [sym__primitive] = STATE(1461), + [sym_namespace] = STATE(2068), + [sym_ns_qualified_name] = STATE(672), + [sym_number] = STATE(1461), + [sym_string] = STATE(1461), + [sym_func_call] = STATE(1461), + [sym_indirect_func_call] = STATE(1562), + [sym_comment] = STATE(1252), + [aux_sym_if_statement_repeat1] = STATE(1252), + [sym_identifier] = ACTIONS(336), + [anon_sym_SEMI] = ACTIONS(420), + [anon_sym_if] = ACTIONS(340), + [anon_sym_LPAREN] = ACTIONS(342), + [anon_sym_while] = ACTIONS(344), [anon_sym_do] = ACTIONS(49), - [anon_sym_for] = ACTIONS(51), - [sym_break_statement] = ACTIONS(576), - [sym_continue_statement] = ACTIONS(576), + [anon_sym_for] = ACTIONS(346), + [sym_break_statement] = ACTIONS(422), + [sym_continue_statement] = ACTIONS(422), [anon_sym_delete] = ACTIONS(55), - [anon_sym_exit] = ACTIONS(57), - [anon_sym_return] = ACTIONS(59), + [anon_sym_exit] = ACTIONS(350), + [anon_sym_return] = ACTIONS(352), [anon_sym_switch] = ACTIONS(61), [anon_sym_LBRACE] = ACTIONS(316), - [anon_sym_getline] = ACTIONS(63), - [sym_next_statement] = ACTIONS(576), - [sym_nextfile_statement] = ACTIONS(576), - [anon_sym_print] = ACTIONS(65), - [anon_sym_printf] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(554), - [anon_sym_PLUS] = ACTIONS(71), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_BANG] = ACTIONS(556), - [anon_sym_PLUS_PLUS] = ACTIONS(558), - [anon_sym_DASH_DASH] = ACTIONS(558), - [anon_sym_DOLLAR] = ACTIONS(560), - [anon_sym_AT] = ACTIONS(562), + [anon_sym_getline] = ACTIONS(354), + [sym_next_statement] = ACTIONS(422), + [sym_nextfile_statement] = ACTIONS(422), + [anon_sym_print] = ACTIONS(356), + [anon_sym_printf] = ACTIONS(358), + [anon_sym_SLASH] = ACTIONS(360), + [anon_sym_PLUS] = ACTIONS(362), + [anon_sym_DASH] = ACTIONS(362), + [anon_sym_BANG] = ACTIONS(364), + [anon_sym_PLUS_PLUS] = ACTIONS(366), + [anon_sym_DASH_DASH] = ACTIONS(366), + [anon_sym_DOLLAR] = ACTIONS(368), + [anon_sym_AT] = ACTIONS(370), [aux_sym_number_token1] = ACTIONS(79), - [aux_sym_number_token2] = ACTIONS(486), - [anon_sym_DQUOTE] = ACTIONS(488), - [anon_sym_POUND] = ACTIONS(171), + [aux_sym_number_token2] = ACTIONS(328), + [anon_sym_DQUOTE] = ACTIONS(330), + [anon_sym_POUND] = ACTIONS(135), }, - [84] = { - [sym__statement] = STATE(1178), - [sym__statement_separated] = STATE(2), - [sym__control_statement] = STATE(1178), - [sym_if_statement] = STATE(1178), - [sym_while_statement] = STATE(1178), - [sym_do_while_statement] = STATE(1178), - [sym_for_statement] = STATE(1178), - [sym_for_in_statement] = STATE(1178), - [sym_delete_statement] = STATE(1178), - [sym_exit_statement] = STATE(1178), - [sym_return_statement] = STATE(1178), - [sym_switch_statement] = STATE(1178), - [sym__io_statement] = STATE(1178), - [sym__getline_exp] = STATE(1462), - [sym_getline_input] = STATE(1462), - [sym_getline_file] = STATE(1462), - [sym_print_statement] = STATE(1695), - [sym_printf_statement] = STATE(1695), - [sym_redirected_io_statement] = STATE(1178), - [sym_piped_io_statement] = STATE(1178), - [sym_block] = STATE(1177), - [sym__exp] = STATE(1462), - [sym_ternary_exp] = STATE(1354), - [sym_binary_exp] = STATE(1354), - [sym__binary_in] = STATE(1309), - [sym_unary_exp] = STATE(1354), - [sym_update_exp] = STATE(1462), - [sym_assignment_exp] = STATE(1462), - [sym_piped_io_exp] = STATE(1462), - [sym_string_concat] = STATE(1354), - [sym_field_ref] = STATE(619), - [sym_array_ref] = STATE(603), - [sym_regex] = STATE(1462), - [sym_regex_constant] = STATE(1462), - [sym_grouping] = STATE(1354), - [sym__primitive] = STATE(1354), - [sym_namespace] = STATE(2063), - [sym_ns_qualified_name] = STATE(592), - [sym_number] = STATE(1354), - [sym_string] = STATE(1354), - [sym_func_call] = STATE(1354), - [sym_indirect_func_call] = STATE(1462), - [sym_comment] = STATE(85), - [aux_sym_if_statement_repeat1] = STATE(85), - [sym_identifier] = ACTIONS(39), - [anon_sym_SEMI] = ACTIONS(578), - [anon_sym_if] = ACTIONS(43), - [anon_sym_LPAREN] = ACTIONS(552), - [anon_sym_while] = ACTIONS(47), + [79] = { + [sym__statement] = STATE(1179), + [sym__statement_separated] = STATE(1179), + [sym__control_statement] = STATE(1179), + [sym_if_statement] = STATE(1179), + [sym_while_statement] = STATE(1179), + [sym_do_while_statement] = STATE(1179), + [sym_for_statement] = STATE(1179), + [sym_for_in_statement] = STATE(1179), + [sym_delete_statement] = STATE(1179), + [sym_exit_statement] = STATE(1179), + [sym_return_statement] = STATE(1179), + [sym_switch_statement] = STATE(1179), + [sym__io_statement] = STATE(1179), + [sym__getline_exp] = STATE(483), + [sym_getline_input] = STATE(483), + [sym_getline_file] = STATE(483), + [sym_print_statement] = STATE(770), + [sym_printf_statement] = STATE(770), + [sym_redirected_io_statement] = STATE(1179), + [sym_piped_io_statement] = STATE(1179), + [sym_block] = STATE(1178), + [sym__exp] = STATE(483), + [sym_ternary_exp] = STATE(359), + [sym_binary_exp] = STATE(359), + [sym__binary_in] = STATE(373), + [sym_unary_exp] = STATE(359), + [sym_update_exp] = STATE(483), + [sym_assignment_exp] = STATE(483), + [sym_piped_io_exp] = STATE(483), + [sym_string_concat] = STATE(359), + [sym_field_ref] = STATE(258), + [sym_array_ref] = STATE(219), + [sym_regex] = STATE(483), + [sym_regex_constant] = STATE(483), + [sym_grouping] = STATE(359), + [sym__primitive] = STATE(359), + [sym_namespace] = STATE(2068), + [sym_ns_qualified_name] = STATE(200), + [sym_number] = STATE(359), + [sym_string] = STATE(359), + [sym_func_call] = STATE(359), + [sym_indirect_func_call] = STATE(483), + [sym_comment] = STATE(91), + [aux_sym_if_statement_repeat1] = STATE(91), + [sym_identifier] = ACTIONS(530), + [anon_sym_SEMI] = ACTIONS(428), + [anon_sym_if] = ACTIONS(532), + [anon_sym_LPAREN] = ACTIONS(534), + [anon_sym_while] = ACTIONS(536), [anon_sym_do] = ACTIONS(49), - [anon_sym_for] = ACTIONS(51), - [sym_break_statement] = ACTIONS(580), - [sym_continue_statement] = ACTIONS(580), + [anon_sym_for] = ACTIONS(538), + [sym_break_statement] = ACTIONS(430), + [sym_continue_statement] = ACTIONS(430), [anon_sym_delete] = ACTIONS(55), - [anon_sym_exit] = ACTIONS(57), - [anon_sym_return] = ACTIONS(59), + [anon_sym_exit] = ACTIONS(540), + [anon_sym_return] = ACTIONS(542), [anon_sym_switch] = ACTIONS(61), [anon_sym_LBRACE] = ACTIONS(316), - [anon_sym_getline] = ACTIONS(63), - [sym_next_statement] = ACTIONS(580), - [sym_nextfile_statement] = ACTIONS(580), - [anon_sym_print] = ACTIONS(65), - [anon_sym_printf] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(554), - [anon_sym_PLUS] = ACTIONS(71), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_BANG] = ACTIONS(556), - [anon_sym_PLUS_PLUS] = ACTIONS(558), - [anon_sym_DASH_DASH] = ACTIONS(558), - [anon_sym_DOLLAR] = ACTIONS(560), - [anon_sym_AT] = ACTIONS(562), - [aux_sym_number_token1] = ACTIONS(79), - [aux_sym_number_token2] = ACTIONS(486), - [anon_sym_DQUOTE] = ACTIONS(488), - [anon_sym_POUND] = ACTIONS(171), + [anon_sym_getline] = ACTIONS(544), + [sym_next_statement] = ACTIONS(430), + [sym_nextfile_statement] = ACTIONS(430), + [anon_sym_print] = ACTIONS(546), + [anon_sym_printf] = ACTIONS(548), + [anon_sym_SLASH] = ACTIONS(550), + [anon_sym_PLUS] = ACTIONS(552), + [anon_sym_DASH] = ACTIONS(552), + [anon_sym_BANG] = ACTIONS(554), + [anon_sym_PLUS_PLUS] = ACTIONS(556), + [anon_sym_DASH_DASH] = ACTIONS(556), + [anon_sym_DOLLAR] = ACTIONS(558), + [anon_sym_AT] = ACTIONS(560), + [aux_sym_number_token1] = ACTIONS(562), + [aux_sym_number_token2] = ACTIONS(564), + [anon_sym_DQUOTE] = ACTIONS(566), + [anon_sym_POUND] = ACTIONS(135), }, - [85] = { - [sym__statement] = STATE(1193), - [sym__statement_separated] = STATE(2), - [sym__control_statement] = STATE(1193), - [sym_if_statement] = STATE(1193), - [sym_while_statement] = STATE(1193), - [sym_do_while_statement] = STATE(1193), - [sym_for_statement] = STATE(1193), - [sym_for_in_statement] = STATE(1193), - [sym_delete_statement] = STATE(1193), - [sym_exit_statement] = STATE(1193), - [sym_return_statement] = STATE(1193), - [sym_switch_statement] = STATE(1193), - [sym__io_statement] = STATE(1193), - [sym__getline_exp] = STATE(1462), - [sym_getline_input] = STATE(1462), - [sym_getline_file] = STATE(1462), - [sym_print_statement] = STATE(1695), - [sym_printf_statement] = STATE(1695), - [sym_redirected_io_statement] = STATE(1193), - [sym_piped_io_statement] = STATE(1193), - [sym_block] = STATE(1190), - [sym__exp] = STATE(1462), - [sym_ternary_exp] = STATE(1354), - [sym_binary_exp] = STATE(1354), - [sym__binary_in] = STATE(1309), - [sym_unary_exp] = STATE(1354), - [sym_update_exp] = STATE(1462), - [sym_assignment_exp] = STATE(1462), - [sym_piped_io_exp] = STATE(1462), - [sym_string_concat] = STATE(1354), - [sym_field_ref] = STATE(619), - [sym_array_ref] = STATE(603), - [sym_regex] = STATE(1462), - [sym_regex_constant] = STATE(1462), - [sym_grouping] = STATE(1354), - [sym__primitive] = STATE(1354), - [sym_namespace] = STATE(2063), - [sym_ns_qualified_name] = STATE(592), - [sym_number] = STATE(1354), - [sym_string] = STATE(1354), - [sym_func_call] = STATE(1354), - [sym_indirect_func_call] = STATE(1462), - [sym_comment] = STATE(1238), - [aux_sym_if_statement_repeat1] = STATE(1238), - [sym_identifier] = ACTIONS(39), - [anon_sym_SEMI] = ACTIONS(582), - [anon_sym_if] = ACTIONS(43), - [anon_sym_LPAREN] = ACTIONS(552), - [anon_sym_while] = ACTIONS(47), + [80] = { + [sym__statement] = STATE(1185), + [sym__statement_separated] = STATE(141), + [sym__control_statement] = STATE(1185), + [sym_if_statement] = STATE(1185), + [sym_while_statement] = STATE(1185), + [sym_do_while_statement] = STATE(1185), + [sym_for_statement] = STATE(1185), + [sym_for_in_statement] = STATE(1185), + [sym_delete_statement] = STATE(1185), + [sym_exit_statement] = STATE(1185), + [sym_return_statement] = STATE(1185), + [sym_switch_statement] = STATE(1185), + [sym__io_statement] = STATE(1185), + [sym__getline_exp] = STATE(1562), + [sym_getline_input] = STATE(1562), + [sym_getline_file] = STATE(1562), + [sym_print_statement] = STATE(1698), + [sym_printf_statement] = STATE(1698), + [sym_redirected_io_statement] = STATE(1185), + [sym_piped_io_statement] = STATE(1185), + [sym_block] = STATE(1184), + [sym__exp] = STATE(1562), + [sym_ternary_exp] = STATE(1461), + [sym_binary_exp] = STATE(1461), + [sym__binary_in] = STATE(1305), + [sym_unary_exp] = STATE(1461), + [sym_update_exp] = STATE(1562), + [sym_assignment_exp] = STATE(1562), + [sym_piped_io_exp] = STATE(1562), + [sym_string_concat] = STATE(1461), + [sym_field_ref] = STATE(950), + [sym_array_ref] = STATE(740), + [sym_regex] = STATE(1562), + [sym_regex_constant] = STATE(1562), + [sym_grouping] = STATE(1461), + [sym__primitive] = STATE(1461), + [sym_namespace] = STATE(2068), + [sym_ns_qualified_name] = STATE(672), + [sym_number] = STATE(1461), + [sym_string] = STATE(1461), + [sym_func_call] = STATE(1461), + [sym_indirect_func_call] = STATE(1562), + [sym_comment] = STATE(1252), + [aux_sym_if_statement_repeat1] = STATE(1252), + [sym_identifier] = ACTIONS(336), + [anon_sym_SEMI] = ACTIONS(424), + [anon_sym_if] = ACTIONS(340), + [anon_sym_LPAREN] = ACTIONS(342), + [anon_sym_while] = ACTIONS(344), [anon_sym_do] = ACTIONS(49), - [anon_sym_for] = ACTIONS(51), - [sym_break_statement] = ACTIONS(584), - [sym_continue_statement] = ACTIONS(584), + [anon_sym_for] = ACTIONS(346), + [sym_break_statement] = ACTIONS(426), + [sym_continue_statement] = ACTIONS(426), [anon_sym_delete] = ACTIONS(55), - [anon_sym_exit] = ACTIONS(57), - [anon_sym_return] = ACTIONS(59), + [anon_sym_exit] = ACTIONS(350), + [anon_sym_return] = ACTIONS(352), [anon_sym_switch] = ACTIONS(61), [anon_sym_LBRACE] = ACTIONS(316), - [anon_sym_getline] = ACTIONS(63), - [sym_next_statement] = ACTIONS(584), - [sym_nextfile_statement] = ACTIONS(584), - [anon_sym_print] = ACTIONS(65), - [anon_sym_printf] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(554), - [anon_sym_PLUS] = ACTIONS(71), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_BANG] = ACTIONS(556), - [anon_sym_PLUS_PLUS] = ACTIONS(558), - [anon_sym_DASH_DASH] = ACTIONS(558), - [anon_sym_DOLLAR] = ACTIONS(560), - [anon_sym_AT] = ACTIONS(562), + [anon_sym_getline] = ACTIONS(354), + [sym_next_statement] = ACTIONS(426), + [sym_nextfile_statement] = ACTIONS(426), + [anon_sym_print] = ACTIONS(356), + [anon_sym_printf] = ACTIONS(358), + [anon_sym_SLASH] = ACTIONS(360), + [anon_sym_PLUS] = ACTIONS(362), + [anon_sym_DASH] = ACTIONS(362), + [anon_sym_BANG] = ACTIONS(364), + [anon_sym_PLUS_PLUS] = ACTIONS(366), + [anon_sym_DASH_DASH] = ACTIONS(366), + [anon_sym_DOLLAR] = ACTIONS(368), + [anon_sym_AT] = ACTIONS(370), [aux_sym_number_token1] = ACTIONS(79), - [aux_sym_number_token2] = ACTIONS(486), - [anon_sym_DQUOTE] = ACTIONS(488), - [anon_sym_POUND] = ACTIONS(171), + [aux_sym_number_token2] = ACTIONS(328), + [anon_sym_DQUOTE] = ACTIONS(330), + [anon_sym_POUND] = ACTIONS(135), }, - [86] = { - [sym__statement] = STATE(1189), - [sym__statement_separated] = STATE(2), - [sym__control_statement] = STATE(1189), - [sym_if_statement] = STATE(1189), - [sym_while_statement] = STATE(1189), - [sym_do_while_statement] = STATE(1189), - [sym_for_statement] = STATE(1189), - [sym_for_in_statement] = STATE(1189), - [sym_delete_statement] = STATE(1189), - [sym_exit_statement] = STATE(1189), - [sym_return_statement] = STATE(1189), - [sym_switch_statement] = STATE(1189), - [sym__io_statement] = STATE(1189), - [sym__getline_exp] = STATE(1462), - [sym_getline_input] = STATE(1462), - [sym_getline_file] = STATE(1462), - [sym_print_statement] = STATE(1695), - [sym_printf_statement] = STATE(1695), - [sym_redirected_io_statement] = STATE(1189), - [sym_piped_io_statement] = STATE(1189), - [sym_block] = STATE(1191), - [sym__exp] = STATE(1462), - [sym_ternary_exp] = STATE(1354), - [sym_binary_exp] = STATE(1354), - [sym__binary_in] = STATE(1309), - [sym_unary_exp] = STATE(1354), - [sym_update_exp] = STATE(1462), - [sym_assignment_exp] = STATE(1462), - [sym_piped_io_exp] = STATE(1462), - [sym_string_concat] = STATE(1354), - [sym_field_ref] = STATE(619), - [sym_array_ref] = STATE(603), - [sym_regex] = STATE(1462), - [sym_regex_constant] = STATE(1462), - [sym_grouping] = STATE(1354), - [sym__primitive] = STATE(1354), - [sym_namespace] = STATE(2063), - [sym_ns_qualified_name] = STATE(592), - [sym_number] = STATE(1354), - [sym_string] = STATE(1354), - [sym_func_call] = STATE(1354), - [sym_indirect_func_call] = STATE(1462), - [sym_comment] = STATE(109), - [aux_sym_if_statement_repeat1] = STATE(109), - [sym_identifier] = ACTIONS(39), - [anon_sym_SEMI] = ACTIONS(342), - [anon_sym_if] = ACTIONS(43), - [anon_sym_LPAREN] = ACTIONS(552), - [anon_sym_while] = ACTIONS(47), + [81] = { + [sym__statement] = STATE(1179), + [sym__statement_separated] = STATE(141), + [sym__control_statement] = STATE(1179), + [sym_if_statement] = STATE(1179), + [sym_while_statement] = STATE(1179), + [sym_do_while_statement] = STATE(1179), + [sym_for_statement] = STATE(1179), + [sym_for_in_statement] = STATE(1179), + [sym_delete_statement] = STATE(1179), + [sym_exit_statement] = STATE(1179), + [sym_return_statement] = STATE(1179), + [sym_switch_statement] = STATE(1179), + [sym__io_statement] = STATE(1179), + [sym__getline_exp] = STATE(1562), + [sym_getline_input] = STATE(1562), + [sym_getline_file] = STATE(1562), + [sym_print_statement] = STATE(1698), + [sym_printf_statement] = STATE(1698), + [sym_redirected_io_statement] = STATE(1179), + [sym_piped_io_statement] = STATE(1179), + [sym_block] = STATE(1178), + [sym__exp] = STATE(1562), + [sym_ternary_exp] = STATE(1461), + [sym_binary_exp] = STATE(1461), + [sym__binary_in] = STATE(1305), + [sym_unary_exp] = STATE(1461), + [sym_update_exp] = STATE(1562), + [sym_assignment_exp] = STATE(1562), + [sym_piped_io_exp] = STATE(1562), + [sym_string_concat] = STATE(1461), + [sym_field_ref] = STATE(950), + [sym_array_ref] = STATE(740), + [sym_regex] = STATE(1562), + [sym_regex_constant] = STATE(1562), + [sym_grouping] = STATE(1461), + [sym__primitive] = STATE(1461), + [sym_namespace] = STATE(2068), + [sym_ns_qualified_name] = STATE(672), + [sym_number] = STATE(1461), + [sym_string] = STATE(1461), + [sym_func_call] = STATE(1461), + [sym_indirect_func_call] = STATE(1562), + [sym_comment] = STATE(80), + [aux_sym_if_statement_repeat1] = STATE(80), + [sym_identifier] = ACTIONS(336), + [anon_sym_SEMI] = ACTIONS(428), + [anon_sym_if] = ACTIONS(340), + [anon_sym_LPAREN] = ACTIONS(342), + [anon_sym_while] = ACTIONS(344), [anon_sym_do] = ACTIONS(49), - [anon_sym_for] = ACTIONS(51), - [sym_break_statement] = ACTIONS(344), - [sym_continue_statement] = ACTIONS(344), + [anon_sym_for] = ACTIONS(346), + [sym_break_statement] = ACTIONS(430), + [sym_continue_statement] = ACTIONS(430), [anon_sym_delete] = ACTIONS(55), - [anon_sym_exit] = ACTIONS(57), - [anon_sym_return] = ACTIONS(59), + [anon_sym_exit] = ACTIONS(350), + [anon_sym_return] = ACTIONS(352), [anon_sym_switch] = ACTIONS(61), [anon_sym_LBRACE] = ACTIONS(316), - [anon_sym_getline] = ACTIONS(63), - [sym_next_statement] = ACTIONS(344), - [sym_nextfile_statement] = ACTIONS(344), - [anon_sym_print] = ACTIONS(65), - [anon_sym_printf] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(554), - [anon_sym_PLUS] = ACTIONS(71), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_BANG] = ACTIONS(556), - [anon_sym_PLUS_PLUS] = ACTIONS(558), - [anon_sym_DASH_DASH] = ACTIONS(558), - [anon_sym_DOLLAR] = ACTIONS(560), - [anon_sym_AT] = ACTIONS(562), + [anon_sym_getline] = ACTIONS(354), + [sym_next_statement] = ACTIONS(430), + [sym_nextfile_statement] = ACTIONS(430), + [anon_sym_print] = ACTIONS(356), + [anon_sym_printf] = ACTIONS(358), + [anon_sym_SLASH] = ACTIONS(360), + [anon_sym_PLUS] = ACTIONS(362), + [anon_sym_DASH] = ACTIONS(362), + [anon_sym_BANG] = ACTIONS(364), + [anon_sym_PLUS_PLUS] = ACTIONS(366), + [anon_sym_DASH_DASH] = ACTIONS(366), + [anon_sym_DOLLAR] = ACTIONS(368), + [anon_sym_AT] = ACTIONS(370), [aux_sym_number_token1] = ACTIONS(79), - [aux_sym_number_token2] = ACTIONS(486), - [anon_sym_DQUOTE] = ACTIONS(488), - [anon_sym_POUND] = ACTIONS(171), + [aux_sym_number_token2] = ACTIONS(328), + [anon_sym_DQUOTE] = ACTIONS(330), + [anon_sym_POUND] = ACTIONS(135), }, - [87] = { - [sym__statement] = STATE(1237), - [sym__statement_separated] = STATE(146), - [sym__control_statement] = STATE(1237), - [sym_if_statement] = STATE(1237), - [sym_while_statement] = STATE(1237), - [sym_do_while_statement] = STATE(1237), - [sym_for_statement] = STATE(1237), - [sym_for_in_statement] = STATE(1237), - [sym_delete_statement] = STATE(1237), - [sym_exit_statement] = STATE(1237), - [sym_return_statement] = STATE(1237), - [sym_switch_statement] = STATE(1237), - [sym__io_statement] = STATE(1237), - [sym__getline_exp] = STATE(1568), - [sym_getline_input] = STATE(1568), - [sym_getline_file] = STATE(1568), - [sym_print_statement] = STATE(1699), - [sym_printf_statement] = STATE(1699), - [sym_redirected_io_statement] = STATE(1237), - [sym_piped_io_statement] = STATE(1237), - [sym_block] = STATE(1236), - [sym__exp] = STATE(1568), - [sym_ternary_exp] = STATE(1470), - [sym_binary_exp] = STATE(1470), - [sym__binary_in] = STATE(1373), - [sym_unary_exp] = STATE(1470), - [sym_update_exp] = STATE(1568), - [sym_assignment_exp] = STATE(1568), - [sym_piped_io_exp] = STATE(1568), - [sym_string_concat] = STATE(1470), - [sym_field_ref] = STATE(1121), - [sym_array_ref] = STATE(1022), - [sym_regex] = STATE(1568), - [sym_regex_constant] = STATE(1568), - [sym_grouping] = STATE(1470), - [sym__primitive] = STATE(1470), - [sym_namespace] = STATE(1955), - [sym_ns_qualified_name] = STATE(744), - [sym_number] = STATE(1470), - [sym_string] = STATE(1470), - [sym_func_call] = STATE(1470), - [sym_indirect_func_call] = STATE(1568), - [sym_comment] = STATE(1238), - [aux_sym_if_statement_repeat1] = STATE(1238), - [sym_identifier] = ACTIONS(362), - [anon_sym_SEMI] = ACTIONS(270), - [anon_sym_if] = ACTIONS(364), - [anon_sym_LPAREN] = ACTIONS(366), - [anon_sym_while] = ACTIONS(368), - [anon_sym_do] = ACTIONS(93), - [anon_sym_for] = ACTIONS(370), - [sym_break_statement] = ACTIONS(274), - [sym_continue_statement] = ACTIONS(274), + [82] = { + [sym__statement] = STATE(1253), + [sym__statement_separated] = STATE(143), + [sym__control_statement] = STATE(1253), + [sym_if_statement] = STATE(1253), + [sym_while_statement] = STATE(1253), + [sym_do_while_statement] = STATE(1253), + [sym_for_statement] = STATE(1253), + [sym_for_in_statement] = STATE(1253), + [sym_delete_statement] = STATE(1253), + [sym_exit_statement] = STATE(1253), + [sym_return_statement] = STATE(1253), + [sym_switch_statement] = STATE(1253), + [sym__io_statement] = STATE(1253), + [sym__getline_exp] = STATE(1570), + [sym_getline_input] = STATE(1570), + [sym_getline_file] = STATE(1570), + [sym_print_statement] = STATE(1707), + [sym_printf_statement] = STATE(1707), + [sym_redirected_io_statement] = STATE(1253), + [sym_piped_io_statement] = STATE(1253), + [sym_block] = STATE(1247), + [sym__exp] = STATE(1570), + [sym_ternary_exp] = STATE(1476), + [sym_binary_exp] = STATE(1476), + [sym__binary_in] = STATE(1385), + [sym_unary_exp] = STATE(1476), + [sym_update_exp] = STATE(1570), + [sym_assignment_exp] = STATE(1570), + [sym_piped_io_exp] = STATE(1570), + [sym_string_concat] = STATE(1476), + [sym_field_ref] = STATE(1194), + [sym_array_ref] = STATE(991), + [sym_regex] = STATE(1570), + [sym_regex_constant] = STATE(1570), + [sym_grouping] = STATE(1476), + [sym__primitive] = STATE(1476), + [sym_namespace] = STATE(1956), + [sym_ns_qualified_name] = STATE(720), + [sym_number] = STATE(1476), + [sym_string] = STATE(1476), + [sym_func_call] = STATE(1476), + [sym_indirect_func_call] = STATE(1570), + [sym_comment] = STATE(1252), + [aux_sym_if_statement_repeat1] = STATE(1252), + [sym_identifier] = ACTIONS(270), + [anon_sym_SEMI] = ACTIONS(432), + [anon_sym_if] = ACTIONS(274), + [anon_sym_LPAREN] = ACTIONS(276), + [anon_sym_while] = ACTIONS(278), + [anon_sym_do] = ACTIONS(93), + [anon_sym_for] = ACTIONS(280), + [sym_break_statement] = ACTIONS(436), + [sym_continue_statement] = ACTIONS(436), + [anon_sym_delete] = ACTIONS(99), + [anon_sym_exit] = ACTIONS(284), + [anon_sym_return] = ACTIONS(286), + [anon_sym_switch] = ACTIONS(105), + [anon_sym_LBRACE] = ACTIONS(268), + [anon_sym_getline] = ACTIONS(288), + [sym_next_statement] = ACTIONS(436), + [sym_nextfile_statement] = ACTIONS(436), + [anon_sym_print] = ACTIONS(290), + [anon_sym_printf] = ACTIONS(292), + [anon_sym_SLASH] = ACTIONS(294), + [anon_sym_PLUS] = ACTIONS(296), + [anon_sym_DASH] = ACTIONS(296), + [anon_sym_BANG] = ACTIONS(298), + [anon_sym_PLUS_PLUS] = ACTIONS(300), + [anon_sym_DASH_DASH] = ACTIONS(300), + [anon_sym_DOLLAR] = ACTIONS(302), + [anon_sym_AT] = ACTIONS(304), + [aux_sym_number_token1] = ACTIONS(169), + [aux_sym_number_token2] = ACTIONS(306), + [anon_sym_DQUOTE] = ACTIONS(308), + [anon_sym_POUND] = ACTIONS(135), + }, + [83] = { + [sym__statement] = STATE(1239), + [sym__statement_separated] = STATE(143), + [sym__control_statement] = STATE(1239), + [sym_if_statement] = STATE(1239), + [sym_while_statement] = STATE(1239), + [sym_do_while_statement] = STATE(1239), + [sym_for_statement] = STATE(1239), + [sym_for_in_statement] = STATE(1239), + [sym_delete_statement] = STATE(1239), + [sym_exit_statement] = STATE(1239), + [sym_return_statement] = STATE(1239), + [sym_switch_statement] = STATE(1239), + [sym__io_statement] = STATE(1239), + [sym__getline_exp] = STATE(1570), + [sym_getline_input] = STATE(1570), + [sym_getline_file] = STATE(1570), + [sym_print_statement] = STATE(1707), + [sym_printf_statement] = STATE(1707), + [sym_redirected_io_statement] = STATE(1239), + [sym_piped_io_statement] = STATE(1239), + [sym_block] = STATE(1199), + [sym__exp] = STATE(1570), + [sym_ternary_exp] = STATE(1476), + [sym_binary_exp] = STATE(1476), + [sym__binary_in] = STATE(1385), + [sym_unary_exp] = STATE(1476), + [sym_update_exp] = STATE(1570), + [sym_assignment_exp] = STATE(1570), + [sym_piped_io_exp] = STATE(1570), + [sym_string_concat] = STATE(1476), + [sym_field_ref] = STATE(1194), + [sym_array_ref] = STATE(991), + [sym_regex] = STATE(1570), + [sym_regex_constant] = STATE(1570), + [sym_grouping] = STATE(1476), + [sym__primitive] = STATE(1476), + [sym_namespace] = STATE(1956), + [sym_ns_qualified_name] = STATE(720), + [sym_number] = STATE(1476), + [sym_string] = STATE(1476), + [sym_func_call] = STATE(1476), + [sym_indirect_func_call] = STATE(1570), + [sym_comment] = STATE(82), + [aux_sym_if_statement_repeat1] = STATE(82), + [sym_identifier] = ACTIONS(270), + [anon_sym_SEMI] = ACTIONS(452), + [anon_sym_if] = ACTIONS(274), + [anon_sym_LPAREN] = ACTIONS(276), + [anon_sym_while] = ACTIONS(278), + [anon_sym_do] = ACTIONS(93), + [anon_sym_for] = ACTIONS(280), + [sym_break_statement] = ACTIONS(454), + [sym_continue_statement] = ACTIONS(454), + [anon_sym_delete] = ACTIONS(99), + [anon_sym_exit] = ACTIONS(284), + [anon_sym_return] = ACTIONS(286), + [anon_sym_switch] = ACTIONS(105), + [anon_sym_LBRACE] = ACTIONS(268), + [anon_sym_getline] = ACTIONS(288), + [sym_next_statement] = ACTIONS(454), + [sym_nextfile_statement] = ACTIONS(454), + [anon_sym_print] = ACTIONS(290), + [anon_sym_printf] = ACTIONS(292), + [anon_sym_SLASH] = ACTIONS(294), + [anon_sym_PLUS] = ACTIONS(296), + [anon_sym_DASH] = ACTIONS(296), + [anon_sym_BANG] = ACTIONS(298), + [anon_sym_PLUS_PLUS] = ACTIONS(300), + [anon_sym_DASH_DASH] = ACTIONS(300), + [anon_sym_DOLLAR] = ACTIONS(302), + [anon_sym_AT] = ACTIONS(304), + [aux_sym_number_token1] = ACTIONS(169), + [aux_sym_number_token2] = ACTIONS(306), + [anon_sym_DQUOTE] = ACTIONS(308), + [anon_sym_POUND] = ACTIONS(135), + }, + [84] = { + [sym__statement] = STATE(1219), + [sym__statement_separated] = STATE(143), + [sym__control_statement] = STATE(1219), + [sym_if_statement] = STATE(1219), + [sym_while_statement] = STATE(1219), + [sym_do_while_statement] = STATE(1219), + [sym_for_statement] = STATE(1219), + [sym_for_in_statement] = STATE(1219), + [sym_delete_statement] = STATE(1219), + [sym_exit_statement] = STATE(1219), + [sym_return_statement] = STATE(1219), + [sym_switch_statement] = STATE(1219), + [sym__io_statement] = STATE(1219), + [sym__getline_exp] = STATE(1570), + [sym_getline_input] = STATE(1570), + [sym_getline_file] = STATE(1570), + [sym_print_statement] = STATE(1707), + [sym_printf_statement] = STATE(1707), + [sym_redirected_io_statement] = STATE(1219), + [sym_piped_io_statement] = STATE(1219), + [sym_block] = STATE(1246), + [sym__exp] = STATE(1570), + [sym_ternary_exp] = STATE(1476), + [sym_binary_exp] = STATE(1476), + [sym__binary_in] = STATE(1385), + [sym_unary_exp] = STATE(1476), + [sym_update_exp] = STATE(1570), + [sym_assignment_exp] = STATE(1570), + [sym_piped_io_exp] = STATE(1570), + [sym_string_concat] = STATE(1476), + [sym_field_ref] = STATE(1194), + [sym_array_ref] = STATE(991), + [sym_regex] = STATE(1570), + [sym_regex_constant] = STATE(1570), + [sym_grouping] = STATE(1476), + [sym__primitive] = STATE(1476), + [sym_namespace] = STATE(1956), + [sym_ns_qualified_name] = STATE(720), + [sym_number] = STATE(1476), + [sym_string] = STATE(1476), + [sym_func_call] = STATE(1476), + [sym_indirect_func_call] = STATE(1570), + [sym_comment] = STATE(1252), + [aux_sym_if_statement_repeat1] = STATE(1252), + [sym_identifier] = ACTIONS(270), + [anon_sym_SEMI] = ACTIONS(456), + [anon_sym_if] = ACTIONS(274), + [anon_sym_LPAREN] = ACTIONS(276), + [anon_sym_while] = ACTIONS(278), + [anon_sym_do] = ACTIONS(93), + [anon_sym_for] = ACTIONS(280), + [sym_break_statement] = ACTIONS(458), + [sym_continue_statement] = ACTIONS(458), + [anon_sym_delete] = ACTIONS(99), + [anon_sym_exit] = ACTIONS(284), + [anon_sym_return] = ACTIONS(286), + [anon_sym_switch] = ACTIONS(105), + [anon_sym_LBRACE] = ACTIONS(268), + [anon_sym_getline] = ACTIONS(288), + [sym_next_statement] = ACTIONS(458), + [sym_nextfile_statement] = ACTIONS(458), + [anon_sym_print] = ACTIONS(290), + [anon_sym_printf] = ACTIONS(292), + [anon_sym_SLASH] = ACTIONS(294), + [anon_sym_PLUS] = ACTIONS(296), + [anon_sym_DASH] = ACTIONS(296), + [anon_sym_BANG] = ACTIONS(298), + [anon_sym_PLUS_PLUS] = ACTIONS(300), + [anon_sym_DASH_DASH] = ACTIONS(300), + [anon_sym_DOLLAR] = ACTIONS(302), + [anon_sym_AT] = ACTIONS(304), + [aux_sym_number_token1] = ACTIONS(169), + [aux_sym_number_token2] = ACTIONS(306), + [anon_sym_DQUOTE] = ACTIONS(308), + [anon_sym_POUND] = ACTIONS(135), + }, + [85] = { + [sym__statement] = STATE(1230), + [sym__statement_separated] = STATE(143), + [sym__control_statement] = STATE(1230), + [sym_if_statement] = STATE(1230), + [sym_while_statement] = STATE(1230), + [sym_do_while_statement] = STATE(1230), + [sym_for_statement] = STATE(1230), + [sym_for_in_statement] = STATE(1230), + [sym_delete_statement] = STATE(1230), + [sym_exit_statement] = STATE(1230), + [sym_return_statement] = STATE(1230), + [sym_switch_statement] = STATE(1230), + [sym__io_statement] = STATE(1230), + [sym__getline_exp] = STATE(1570), + [sym_getline_input] = STATE(1570), + [sym_getline_file] = STATE(1570), + [sym_print_statement] = STATE(1707), + [sym_printf_statement] = STATE(1707), + [sym_redirected_io_statement] = STATE(1230), + [sym_piped_io_statement] = STATE(1230), + [sym_block] = STATE(1200), + [sym__exp] = STATE(1570), + [sym_ternary_exp] = STATE(1476), + [sym_binary_exp] = STATE(1476), + [sym__binary_in] = STATE(1385), + [sym_unary_exp] = STATE(1476), + [sym_update_exp] = STATE(1570), + [sym_assignment_exp] = STATE(1570), + [sym_piped_io_exp] = STATE(1570), + [sym_string_concat] = STATE(1476), + [sym_field_ref] = STATE(1194), + [sym_array_ref] = STATE(991), + [sym_regex] = STATE(1570), + [sym_regex_constant] = STATE(1570), + [sym_grouping] = STATE(1476), + [sym__primitive] = STATE(1476), + [sym_namespace] = STATE(1956), + [sym_ns_qualified_name] = STATE(720), + [sym_number] = STATE(1476), + [sym_string] = STATE(1476), + [sym_func_call] = STATE(1476), + [sym_indirect_func_call] = STATE(1570), + [sym_comment] = STATE(1252), + [aux_sym_if_statement_repeat1] = STATE(1252), + [sym_identifier] = ACTIONS(270), + [anon_sym_SEMI] = ACTIONS(460), + [anon_sym_if] = ACTIONS(274), + [anon_sym_LPAREN] = ACTIONS(276), + [anon_sym_while] = ACTIONS(278), + [anon_sym_do] = ACTIONS(93), + [anon_sym_for] = ACTIONS(280), + [sym_break_statement] = ACTIONS(462), + [sym_continue_statement] = ACTIONS(462), + [anon_sym_delete] = ACTIONS(99), + [anon_sym_exit] = ACTIONS(284), + [anon_sym_return] = ACTIONS(286), + [anon_sym_switch] = ACTIONS(105), + [anon_sym_LBRACE] = ACTIONS(268), + [anon_sym_getline] = ACTIONS(288), + [sym_next_statement] = ACTIONS(462), + [sym_nextfile_statement] = ACTIONS(462), + [anon_sym_print] = ACTIONS(290), + [anon_sym_printf] = ACTIONS(292), + [anon_sym_SLASH] = ACTIONS(294), + [anon_sym_PLUS] = ACTIONS(296), + [anon_sym_DASH] = ACTIONS(296), + [anon_sym_BANG] = ACTIONS(298), + [anon_sym_PLUS_PLUS] = ACTIONS(300), + [anon_sym_DASH_DASH] = ACTIONS(300), + [anon_sym_DOLLAR] = ACTIONS(302), + [anon_sym_AT] = ACTIONS(304), + [aux_sym_number_token1] = ACTIONS(169), + [aux_sym_number_token2] = ACTIONS(306), + [anon_sym_DQUOTE] = ACTIONS(308), + [anon_sym_POUND] = ACTIONS(135), + }, + [86] = { + [sym__statement] = STATE(1202), + [sym__statement_separated] = STATE(143), + [sym__control_statement] = STATE(1202), + [sym_if_statement] = STATE(1202), + [sym_while_statement] = STATE(1202), + [sym_do_while_statement] = STATE(1202), + [sym_for_statement] = STATE(1202), + [sym_for_in_statement] = STATE(1202), + [sym_delete_statement] = STATE(1202), + [sym_exit_statement] = STATE(1202), + [sym_return_statement] = STATE(1202), + [sym_switch_statement] = STATE(1202), + [sym__io_statement] = STATE(1202), + [sym__getline_exp] = STATE(1570), + [sym_getline_input] = STATE(1570), + [sym_getline_file] = STATE(1570), + [sym_print_statement] = STATE(1707), + [sym_printf_statement] = STATE(1707), + [sym_redirected_io_statement] = STATE(1202), + [sym_piped_io_statement] = STATE(1202), + [sym_block] = STATE(1203), + [sym__exp] = STATE(1570), + [sym_ternary_exp] = STATE(1476), + [sym_binary_exp] = STATE(1476), + [sym__binary_in] = STATE(1385), + [sym_unary_exp] = STATE(1476), + [sym_update_exp] = STATE(1570), + [sym_assignment_exp] = STATE(1570), + [sym_piped_io_exp] = STATE(1570), + [sym_string_concat] = STATE(1476), + [sym_field_ref] = STATE(1194), + [sym_array_ref] = STATE(991), + [sym_regex] = STATE(1570), + [sym_regex_constant] = STATE(1570), + [sym_grouping] = STATE(1476), + [sym__primitive] = STATE(1476), + [sym_namespace] = STATE(1956), + [sym_ns_qualified_name] = STATE(720), + [sym_number] = STATE(1476), + [sym_string] = STATE(1476), + [sym_func_call] = STATE(1476), + [sym_indirect_func_call] = STATE(1570), + [sym_comment] = STATE(1252), + [aux_sym_if_statement_repeat1] = STATE(1252), + [sym_identifier] = ACTIONS(270), + [anon_sym_SEMI] = ACTIONS(464), + [anon_sym_if] = ACTIONS(274), + [anon_sym_LPAREN] = ACTIONS(276), + [anon_sym_while] = ACTIONS(278), + [anon_sym_do] = ACTIONS(93), + [anon_sym_for] = ACTIONS(280), + [sym_break_statement] = ACTIONS(466), + [sym_continue_statement] = ACTIONS(466), + [anon_sym_delete] = ACTIONS(99), + [anon_sym_exit] = ACTIONS(284), + [anon_sym_return] = ACTIONS(286), + [anon_sym_switch] = ACTIONS(105), + [anon_sym_LBRACE] = ACTIONS(268), + [anon_sym_getline] = ACTIONS(288), + [sym_next_statement] = ACTIONS(466), + [sym_nextfile_statement] = ACTIONS(466), + [anon_sym_print] = ACTIONS(290), + [anon_sym_printf] = ACTIONS(292), + [anon_sym_SLASH] = ACTIONS(294), + [anon_sym_PLUS] = ACTIONS(296), + [anon_sym_DASH] = ACTIONS(296), + [anon_sym_BANG] = ACTIONS(298), + [anon_sym_PLUS_PLUS] = ACTIONS(300), + [anon_sym_DASH_DASH] = ACTIONS(300), + [anon_sym_DOLLAR] = ACTIONS(302), + [anon_sym_AT] = ACTIONS(304), + [aux_sym_number_token1] = ACTIONS(169), + [aux_sym_number_token2] = ACTIONS(306), + [anon_sym_DQUOTE] = ACTIONS(308), + [anon_sym_POUND] = ACTIONS(135), + }, + [87] = { + [sym__statement] = STATE(1206), + [sym__statement_separated] = STATE(143), + [sym__control_statement] = STATE(1206), + [sym_if_statement] = STATE(1206), + [sym_while_statement] = STATE(1206), + [sym_do_while_statement] = STATE(1206), + [sym_for_statement] = STATE(1206), + [sym_for_in_statement] = STATE(1206), + [sym_delete_statement] = STATE(1206), + [sym_exit_statement] = STATE(1206), + [sym_return_statement] = STATE(1206), + [sym_switch_statement] = STATE(1206), + [sym__io_statement] = STATE(1206), + [sym__getline_exp] = STATE(1570), + [sym_getline_input] = STATE(1570), + [sym_getline_file] = STATE(1570), + [sym_print_statement] = STATE(1707), + [sym_printf_statement] = STATE(1707), + [sym_redirected_io_statement] = STATE(1206), + [sym_piped_io_statement] = STATE(1206), + [sym_block] = STATE(1208), + [sym__exp] = STATE(1570), + [sym_ternary_exp] = STATE(1476), + [sym_binary_exp] = STATE(1476), + [sym__binary_in] = STATE(1385), + [sym_unary_exp] = STATE(1476), + [sym_update_exp] = STATE(1570), + [sym_assignment_exp] = STATE(1570), + [sym_piped_io_exp] = STATE(1570), + [sym_string_concat] = STATE(1476), + [sym_field_ref] = STATE(1194), + [sym_array_ref] = STATE(991), + [sym_regex] = STATE(1570), + [sym_regex_constant] = STATE(1570), + [sym_grouping] = STATE(1476), + [sym__primitive] = STATE(1476), + [sym_namespace] = STATE(1956), + [sym_ns_qualified_name] = STATE(720), + [sym_number] = STATE(1476), + [sym_string] = STATE(1476), + [sym_func_call] = STATE(1476), + [sym_indirect_func_call] = STATE(1570), + [sym_comment] = STATE(84), + [aux_sym_if_statement_repeat1] = STATE(84), + [sym_identifier] = ACTIONS(270), + [anon_sym_SEMI] = ACTIONS(468), + [anon_sym_if] = ACTIONS(274), + [anon_sym_LPAREN] = ACTIONS(276), + [anon_sym_while] = ACTIONS(278), + [anon_sym_do] = ACTIONS(93), + [anon_sym_for] = ACTIONS(280), + [sym_break_statement] = ACTIONS(470), + [sym_continue_statement] = ACTIONS(470), [anon_sym_delete] = ACTIONS(99), - [anon_sym_exit] = ACTIONS(372), - [anon_sym_return] = ACTIONS(374), + [anon_sym_exit] = ACTIONS(284), + [anon_sym_return] = ACTIONS(286), [anon_sym_switch] = ACTIONS(105), [anon_sym_LBRACE] = ACTIONS(268), - [anon_sym_getline] = ACTIONS(376), - [sym_next_statement] = ACTIONS(274), - [sym_nextfile_statement] = ACTIONS(274), - [anon_sym_print] = ACTIONS(378), - [anon_sym_printf] = ACTIONS(380), - [anon_sym_SLASH] = ACTIONS(382), - [anon_sym_PLUS] = ACTIONS(384), - [anon_sym_DASH] = ACTIONS(384), - [anon_sym_BANG] = ACTIONS(386), - [anon_sym_PLUS_PLUS] = ACTIONS(388), - [anon_sym_DASH_DASH] = ACTIONS(388), - [anon_sym_DOLLAR] = ACTIONS(390), - [anon_sym_AT] = ACTIONS(392), - [aux_sym_number_token1] = ACTIONS(123), - [aux_sym_number_token2] = ACTIONS(286), - [anon_sym_DQUOTE] = ACTIONS(288), - [anon_sym_POUND] = ACTIONS(171), + [anon_sym_getline] = ACTIONS(288), + [sym_next_statement] = ACTIONS(470), + [sym_nextfile_statement] = ACTIONS(470), + [anon_sym_print] = ACTIONS(290), + [anon_sym_printf] = ACTIONS(292), + [anon_sym_SLASH] = ACTIONS(294), + [anon_sym_PLUS] = ACTIONS(296), + [anon_sym_DASH] = ACTIONS(296), + [anon_sym_BANG] = ACTIONS(298), + [anon_sym_PLUS_PLUS] = ACTIONS(300), + [anon_sym_DASH_DASH] = ACTIONS(300), + [anon_sym_DOLLAR] = ACTIONS(302), + [anon_sym_AT] = ACTIONS(304), + [aux_sym_number_token1] = ACTIONS(169), + [aux_sym_number_token2] = ACTIONS(306), + [anon_sym_DQUOTE] = ACTIONS(308), + [anon_sym_POUND] = ACTIONS(135), }, [88] = { - [sym__statement] = STATE(1240), - [sym__statement_separated] = STATE(146), - [sym__control_statement] = STATE(1240), - [sym_if_statement] = STATE(1240), - [sym_while_statement] = STATE(1240), - [sym_do_while_statement] = STATE(1240), - [sym_for_statement] = STATE(1240), - [sym_for_in_statement] = STATE(1240), - [sym_delete_statement] = STATE(1240), - [sym_exit_statement] = STATE(1240), - [sym_return_statement] = STATE(1240), - [sym_switch_statement] = STATE(1240), - [sym__io_statement] = STATE(1240), - [sym__getline_exp] = STATE(1568), - [sym_getline_input] = STATE(1568), - [sym_getline_file] = STATE(1568), - [sym_print_statement] = STATE(1699), - [sym_printf_statement] = STATE(1699), - [sym_redirected_io_statement] = STATE(1240), - [sym_piped_io_statement] = STATE(1240), - [sym_block] = STATE(1239), - [sym__exp] = STATE(1568), - [sym_ternary_exp] = STATE(1470), - [sym_binary_exp] = STATE(1470), - [sym__binary_in] = STATE(1373), - [sym_unary_exp] = STATE(1470), - [sym_update_exp] = STATE(1568), - [sym_assignment_exp] = STATE(1568), - [sym_piped_io_exp] = STATE(1568), - [sym_string_concat] = STATE(1470), - [sym_field_ref] = STATE(1121), - [sym_array_ref] = STATE(1022), - [sym_regex] = STATE(1568), - [sym_regex_constant] = STATE(1568), - [sym_grouping] = STATE(1470), - [sym__primitive] = STATE(1470), - [sym_namespace] = STATE(1955), - [sym_ns_qualified_name] = STATE(744), - [sym_number] = STATE(1470), - [sym_string] = STATE(1470), - [sym_func_call] = STATE(1470), - [sym_indirect_func_call] = STATE(1568), - [sym_comment] = STATE(1238), - [aux_sym_if_statement_repeat1] = STATE(1238), - [sym_identifier] = ACTIONS(362), - [anon_sym_SEMI] = ACTIONS(346), - [anon_sym_if] = ACTIONS(364), - [anon_sym_LPAREN] = ACTIONS(366), - [anon_sym_while] = ACTIONS(368), + [sym__statement] = STATE(1205), + [sym__statement_separated] = STATE(1205), + [sym__control_statement] = STATE(1205), + [sym_if_statement] = STATE(1205), + [sym_while_statement] = STATE(1205), + [sym_do_while_statement] = STATE(1205), + [sym_for_statement] = STATE(1205), + [sym_for_in_statement] = STATE(1205), + [sym_delete_statement] = STATE(1205), + [sym_exit_statement] = STATE(1205), + [sym_return_statement] = STATE(1205), + [sym_switch_statement] = STATE(1205), + [sym__io_statement] = STATE(1205), + [sym__getline_exp] = STATE(503), + [sym_getline_input] = STATE(503), + [sym_getline_file] = STATE(503), + [sym_print_statement] = STATE(869), + [sym_printf_statement] = STATE(869), + [sym_redirected_io_statement] = STATE(1205), + [sym_piped_io_statement] = STATE(1205), + [sym_block] = STATE(1204), + [sym__exp] = STATE(503), + [sym_ternary_exp] = STATE(427), + [sym_binary_exp] = STATE(427), + [sym__binary_in] = STATE(426), + [sym_unary_exp] = STATE(427), + [sym_update_exp] = STATE(503), + [sym_assignment_exp] = STATE(503), + [sym_piped_io_exp] = STATE(503), + [sym_string_concat] = STATE(427), + [sym_field_ref] = STATE(274), + [sym_array_ref] = STATE(268), + [sym_regex] = STATE(503), + [sym_regex_constant] = STATE(503), + [sym_grouping] = STATE(427), + [sym__primitive] = STATE(427), + [sym_namespace] = STATE(1956), + [sym_ns_qualified_name] = STATE(244), + [sym_number] = STATE(427), + [sym_string] = STATE(427), + [sym_func_call] = STATE(427), + [sym_indirect_func_call] = STATE(503), + [sym_comment] = STATE(123), + [aux_sym_if_statement_repeat1] = STATE(123), + [sym_identifier] = ACTIONS(85), + [anon_sym_SEMI] = ACTIONS(510), + [anon_sym_if] = ACTIONS(87), + [anon_sym_LPAREN] = ACTIONS(89), + [anon_sym_while] = ACTIONS(91), [anon_sym_do] = ACTIONS(93), - [anon_sym_for] = ACTIONS(370), - [sym_break_statement] = ACTIONS(348), - [sym_continue_statement] = ACTIONS(348), + [anon_sym_for] = ACTIONS(95), + [sym_break_statement] = ACTIONS(512), + [sym_continue_statement] = ACTIONS(512), [anon_sym_delete] = ACTIONS(99), - [anon_sym_exit] = ACTIONS(372), - [anon_sym_return] = ACTIONS(374), + [anon_sym_exit] = ACTIONS(101), + [anon_sym_return] = ACTIONS(103), [anon_sym_switch] = ACTIONS(105), [anon_sym_LBRACE] = ACTIONS(268), - [anon_sym_getline] = ACTIONS(376), - [sym_next_statement] = ACTIONS(348), - [sym_nextfile_statement] = ACTIONS(348), - [anon_sym_print] = ACTIONS(378), - [anon_sym_printf] = ACTIONS(380), - [anon_sym_SLASH] = ACTIONS(382), - [anon_sym_PLUS] = ACTIONS(384), - [anon_sym_DASH] = ACTIONS(384), - [anon_sym_BANG] = ACTIONS(386), - [anon_sym_PLUS_PLUS] = ACTIONS(388), - [anon_sym_DASH_DASH] = ACTIONS(388), - [anon_sym_DOLLAR] = ACTIONS(390), - [anon_sym_AT] = ACTIONS(392), - [aux_sym_number_token1] = ACTIONS(123), - [aux_sym_number_token2] = ACTIONS(286), - [anon_sym_DQUOTE] = ACTIONS(288), - [anon_sym_POUND] = ACTIONS(171), + [anon_sym_getline] = ACTIONS(111), + [sym_next_statement] = ACTIONS(512), + [sym_nextfile_statement] = ACTIONS(512), + [anon_sym_print] = ACTIONS(113), + [anon_sym_printf] = ACTIONS(115), + [anon_sym_SLASH] = ACTIONS(117), + [anon_sym_PLUS] = ACTIONS(119), + [anon_sym_DASH] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(121), + [anon_sym_PLUS_PLUS] = ACTIONS(123), + [anon_sym_DASH_DASH] = ACTIONS(123), + [anon_sym_DOLLAR] = ACTIONS(125), + [anon_sym_AT] = ACTIONS(127), + [aux_sym_number_token1] = ACTIONS(129), + [aux_sym_number_token2] = ACTIONS(131), + [anon_sym_DQUOTE] = ACTIONS(133), + [anon_sym_POUND] = ACTIONS(135), }, [89] = { - [sym__statement] = STATE(1242), - [sym__statement_separated] = STATE(146), - [sym__control_statement] = STATE(1242), - [sym_if_statement] = STATE(1242), - [sym_while_statement] = STATE(1242), - [sym_do_while_statement] = STATE(1242), - [sym_for_statement] = STATE(1242), - [sym_for_in_statement] = STATE(1242), - [sym_delete_statement] = STATE(1242), - [sym_exit_statement] = STATE(1242), - [sym_return_statement] = STATE(1242), - [sym_switch_statement] = STATE(1242), - [sym__io_statement] = STATE(1242), - [sym__getline_exp] = STATE(1568), - [sym_getline_input] = STATE(1568), - [sym_getline_file] = STATE(1568), - [sym_print_statement] = STATE(1699), - [sym_printf_statement] = STATE(1699), - [sym_redirected_io_statement] = STATE(1242), - [sym_piped_io_statement] = STATE(1242), - [sym_block] = STATE(1195), - [sym__exp] = STATE(1568), - [sym_ternary_exp] = STATE(1470), - [sym_binary_exp] = STATE(1470), - [sym__binary_in] = STATE(1373), - [sym_unary_exp] = STATE(1470), - [sym_update_exp] = STATE(1568), - [sym_assignment_exp] = STATE(1568), - [sym_piped_io_exp] = STATE(1568), - [sym_string_concat] = STATE(1470), - [sym_field_ref] = STATE(1121), - [sym_array_ref] = STATE(1022), - [sym_regex] = STATE(1568), - [sym_regex_constant] = STATE(1568), - [sym_grouping] = STATE(1470), - [sym__primitive] = STATE(1470), - [sym_namespace] = STATE(1955), - [sym_ns_qualified_name] = STATE(744), - [sym_number] = STATE(1470), - [sym_string] = STATE(1470), - [sym_func_call] = STATE(1470), - [sym_indirect_func_call] = STATE(1568), - [sym_comment] = STATE(105), - [aux_sym_if_statement_repeat1] = STATE(105), - [sym_identifier] = ACTIONS(362), - [anon_sym_SEMI] = ACTIONS(294), - [anon_sym_if] = ACTIONS(364), - [anon_sym_LPAREN] = ACTIONS(366), - [anon_sym_while] = ACTIONS(368), + [sym__statement] = STATE(1211), + [sym__statement_separated] = STATE(143), + [sym__control_statement] = STATE(1211), + [sym_if_statement] = STATE(1211), + [sym_while_statement] = STATE(1211), + [sym_do_while_statement] = STATE(1211), + [sym_for_statement] = STATE(1211), + [sym_for_in_statement] = STATE(1211), + [sym_delete_statement] = STATE(1211), + [sym_exit_statement] = STATE(1211), + [sym_return_statement] = STATE(1211), + [sym_switch_statement] = STATE(1211), + [sym__io_statement] = STATE(1211), + [sym__getline_exp] = STATE(1570), + [sym_getline_input] = STATE(1570), + [sym_getline_file] = STATE(1570), + [sym_print_statement] = STATE(1707), + [sym_printf_statement] = STATE(1707), + [sym_redirected_io_statement] = STATE(1211), + [sym_piped_io_statement] = STATE(1211), + [sym_block] = STATE(1213), + [sym__exp] = STATE(1570), + [sym_ternary_exp] = STATE(1476), + [sym_binary_exp] = STATE(1476), + [sym__binary_in] = STATE(1385), + [sym_unary_exp] = STATE(1476), + [sym_update_exp] = STATE(1570), + [sym_assignment_exp] = STATE(1570), + [sym_piped_io_exp] = STATE(1570), + [sym_string_concat] = STATE(1476), + [sym_field_ref] = STATE(1194), + [sym_array_ref] = STATE(991), + [sym_regex] = STATE(1570), + [sym_regex_constant] = STATE(1570), + [sym_grouping] = STATE(1476), + [sym__primitive] = STATE(1476), + [sym_namespace] = STATE(1956), + [sym_ns_qualified_name] = STATE(720), + [sym_number] = STATE(1476), + [sym_string] = STATE(1476), + [sym_func_call] = STATE(1476), + [sym_indirect_func_call] = STATE(1570), + [sym_comment] = STATE(1252), + [aux_sym_if_statement_repeat1] = STATE(1252), + [sym_identifier] = ACTIONS(270), + [anon_sym_SEMI] = ACTIONS(476), + [anon_sym_if] = ACTIONS(274), + [anon_sym_LPAREN] = ACTIONS(276), + [anon_sym_while] = ACTIONS(278), [anon_sym_do] = ACTIONS(93), - [anon_sym_for] = ACTIONS(370), - [sym_break_statement] = ACTIONS(296), - [sym_continue_statement] = ACTIONS(296), + [anon_sym_for] = ACTIONS(280), + [sym_break_statement] = ACTIONS(478), + [sym_continue_statement] = ACTIONS(478), [anon_sym_delete] = ACTIONS(99), - [anon_sym_exit] = ACTIONS(372), - [anon_sym_return] = ACTIONS(374), + [anon_sym_exit] = ACTIONS(284), + [anon_sym_return] = ACTIONS(286), [anon_sym_switch] = ACTIONS(105), [anon_sym_LBRACE] = ACTIONS(268), - [anon_sym_getline] = ACTIONS(376), - [sym_next_statement] = ACTIONS(296), - [sym_nextfile_statement] = ACTIONS(296), - [anon_sym_print] = ACTIONS(378), - [anon_sym_printf] = ACTIONS(380), - [anon_sym_SLASH] = ACTIONS(382), - [anon_sym_PLUS] = ACTIONS(384), - [anon_sym_DASH] = ACTIONS(384), - [anon_sym_BANG] = ACTIONS(386), - [anon_sym_PLUS_PLUS] = ACTIONS(388), - [anon_sym_DASH_DASH] = ACTIONS(388), - [anon_sym_DOLLAR] = ACTIONS(390), - [anon_sym_AT] = ACTIONS(392), - [aux_sym_number_token1] = ACTIONS(123), - [aux_sym_number_token2] = ACTIONS(286), - [anon_sym_DQUOTE] = ACTIONS(288), - [anon_sym_POUND] = ACTIONS(171), + [anon_sym_getline] = ACTIONS(288), + [sym_next_statement] = ACTIONS(478), + [sym_nextfile_statement] = ACTIONS(478), + [anon_sym_print] = ACTIONS(290), + [anon_sym_printf] = ACTIONS(292), + [anon_sym_SLASH] = ACTIONS(294), + [anon_sym_PLUS] = ACTIONS(296), + [anon_sym_DASH] = ACTIONS(296), + [anon_sym_BANG] = ACTIONS(298), + [anon_sym_PLUS_PLUS] = ACTIONS(300), + [anon_sym_DASH_DASH] = ACTIONS(300), + [anon_sym_DOLLAR] = ACTIONS(302), + [anon_sym_AT] = ACTIONS(304), + [aux_sym_number_token1] = ACTIONS(169), + [aux_sym_number_token2] = ACTIONS(306), + [anon_sym_DQUOTE] = ACTIONS(308), + [anon_sym_POUND] = ACTIONS(135), }, [90] = { - [sym__statement] = STATE(1244), - [sym__statement_separated] = STATE(146), - [sym__control_statement] = STATE(1244), - [sym_if_statement] = STATE(1244), - [sym_while_statement] = STATE(1244), - [sym_do_while_statement] = STATE(1244), - [sym_for_statement] = STATE(1244), - [sym_for_in_statement] = STATE(1244), - [sym_delete_statement] = STATE(1244), - [sym_exit_statement] = STATE(1244), - [sym_return_statement] = STATE(1244), - [sym_switch_statement] = STATE(1244), - [sym__io_statement] = STATE(1244), - [sym__getline_exp] = STATE(1568), - [sym_getline_input] = STATE(1568), - [sym_getline_file] = STATE(1568), - [sym_print_statement] = STATE(1699), - [sym_printf_statement] = STATE(1699), - [sym_redirected_io_statement] = STATE(1244), - [sym_piped_io_statement] = STATE(1244), - [sym_block] = STATE(1243), - [sym__exp] = STATE(1568), - [sym_ternary_exp] = STATE(1470), - [sym_binary_exp] = STATE(1470), - [sym__binary_in] = STATE(1373), - [sym_unary_exp] = STATE(1470), - [sym_update_exp] = STATE(1568), - [sym_assignment_exp] = STATE(1568), - [sym_piped_io_exp] = STATE(1568), - [sym_string_concat] = STATE(1470), - [sym_field_ref] = STATE(1121), - [sym_array_ref] = STATE(1022), - [sym_regex] = STATE(1568), - [sym_regex_constant] = STATE(1568), - [sym_grouping] = STATE(1470), - [sym__primitive] = STATE(1470), - [sym_namespace] = STATE(1955), - [sym_ns_qualified_name] = STATE(744), - [sym_number] = STATE(1470), - [sym_string] = STATE(1470), - [sym_func_call] = STATE(1470), - [sym_indirect_func_call] = STATE(1568), - [sym_comment] = STATE(106), - [aux_sym_if_statement_repeat1] = STATE(106), - [sym_identifier] = ACTIONS(362), - [anon_sym_SEMI] = ACTIONS(570), - [anon_sym_if] = ACTIONS(364), - [anon_sym_LPAREN] = ACTIONS(366), - [anon_sym_while] = ACTIONS(368), + [sym__statement] = STATE(1216), + [sym__statement_separated] = STATE(143), + [sym__control_statement] = STATE(1216), + [sym_if_statement] = STATE(1216), + [sym_while_statement] = STATE(1216), + [sym_do_while_statement] = STATE(1216), + [sym_for_statement] = STATE(1216), + [sym_for_in_statement] = STATE(1216), + [sym_delete_statement] = STATE(1216), + [sym_exit_statement] = STATE(1216), + [sym_return_statement] = STATE(1216), + [sym_switch_statement] = STATE(1216), + [sym__io_statement] = STATE(1216), + [sym__getline_exp] = STATE(1570), + [sym_getline_input] = STATE(1570), + [sym_getline_file] = STATE(1570), + [sym_print_statement] = STATE(1707), + [sym_printf_statement] = STATE(1707), + [sym_redirected_io_statement] = STATE(1216), + [sym_piped_io_statement] = STATE(1216), + [sym_block] = STATE(1220), + [sym__exp] = STATE(1570), + [sym_ternary_exp] = STATE(1476), + [sym_binary_exp] = STATE(1476), + [sym__binary_in] = STATE(1385), + [sym_unary_exp] = STATE(1476), + [sym_update_exp] = STATE(1570), + [sym_assignment_exp] = STATE(1570), + [sym_piped_io_exp] = STATE(1570), + [sym_string_concat] = STATE(1476), + [sym_field_ref] = STATE(1194), + [sym_array_ref] = STATE(991), + [sym_regex] = STATE(1570), + [sym_regex_constant] = STATE(1570), + [sym_grouping] = STATE(1476), + [sym__primitive] = STATE(1476), + [sym_namespace] = STATE(1956), + [sym_ns_qualified_name] = STATE(720), + [sym_number] = STATE(1476), + [sym_string] = STATE(1476), + [sym_func_call] = STATE(1476), + [sym_indirect_func_call] = STATE(1570), + [sym_comment] = STATE(1252), + [aux_sym_if_statement_repeat1] = STATE(1252), + [sym_identifier] = ACTIONS(270), + [anon_sym_SEMI] = ACTIONS(480), + [anon_sym_if] = ACTIONS(274), + [anon_sym_LPAREN] = ACTIONS(276), + [anon_sym_while] = ACTIONS(278), [anon_sym_do] = ACTIONS(93), - [anon_sym_for] = ACTIONS(370), - [sym_break_statement] = ACTIONS(572), - [sym_continue_statement] = ACTIONS(572), + [anon_sym_for] = ACTIONS(280), + [sym_break_statement] = ACTIONS(482), + [sym_continue_statement] = ACTIONS(482), [anon_sym_delete] = ACTIONS(99), - [anon_sym_exit] = ACTIONS(372), - [anon_sym_return] = ACTIONS(374), + [anon_sym_exit] = ACTIONS(284), + [anon_sym_return] = ACTIONS(286), [anon_sym_switch] = ACTIONS(105), [anon_sym_LBRACE] = ACTIONS(268), - [anon_sym_getline] = ACTIONS(376), - [sym_next_statement] = ACTIONS(572), - [sym_nextfile_statement] = ACTIONS(572), - [anon_sym_print] = ACTIONS(378), - [anon_sym_printf] = ACTIONS(380), - [anon_sym_SLASH] = ACTIONS(382), - [anon_sym_PLUS] = ACTIONS(384), - [anon_sym_DASH] = ACTIONS(384), - [anon_sym_BANG] = ACTIONS(386), - [anon_sym_PLUS_PLUS] = ACTIONS(388), - [anon_sym_DASH_DASH] = ACTIONS(388), - [anon_sym_DOLLAR] = ACTIONS(390), - [anon_sym_AT] = ACTIONS(392), - [aux_sym_number_token1] = ACTIONS(123), - [aux_sym_number_token2] = ACTIONS(286), - [anon_sym_DQUOTE] = ACTIONS(288), - [anon_sym_POUND] = ACTIONS(171), + [anon_sym_getline] = ACTIONS(288), + [sym_next_statement] = ACTIONS(482), + [sym_nextfile_statement] = ACTIONS(482), + [anon_sym_print] = ACTIONS(290), + [anon_sym_printf] = ACTIONS(292), + [anon_sym_SLASH] = ACTIONS(294), + [anon_sym_PLUS] = ACTIONS(296), + [anon_sym_DASH] = ACTIONS(296), + [anon_sym_BANG] = ACTIONS(298), + [anon_sym_PLUS_PLUS] = ACTIONS(300), + [anon_sym_DASH_DASH] = ACTIONS(300), + [anon_sym_DOLLAR] = ACTIONS(302), + [anon_sym_AT] = ACTIONS(304), + [aux_sym_number_token1] = ACTIONS(169), + [aux_sym_number_token2] = ACTIONS(306), + [anon_sym_DQUOTE] = ACTIONS(308), + [anon_sym_POUND] = ACTIONS(135), }, [91] = { - [sym__statement] = STATE(1178), - [sym__statement_separated] = STATE(1178), - [sym__control_statement] = STATE(1178), - [sym_if_statement] = STATE(1178), - [sym_while_statement] = STATE(1178), - [sym_do_while_statement] = STATE(1178), - [sym_for_statement] = STATE(1178), - [sym_for_in_statement] = STATE(1178), - [sym_delete_statement] = STATE(1178), - [sym_exit_statement] = STATE(1178), - [sym_return_statement] = STATE(1178), - [sym_switch_statement] = STATE(1178), - [sym__io_statement] = STATE(1178), - [sym__getline_exp] = STATE(482), - [sym_getline_input] = STATE(482), - [sym_getline_file] = STATE(482), - [sym_print_statement] = STATE(740), - [sym_printf_statement] = STATE(740), - [sym_redirected_io_statement] = STATE(1178), - [sym_piped_io_statement] = STATE(1178), - [sym_block] = STATE(1177), - [sym__exp] = STATE(482), - [sym_ternary_exp] = STATE(375), - [sym_binary_exp] = STATE(375), - [sym__binary_in] = STATE(369), - [sym_unary_exp] = STATE(375), - [sym_update_exp] = STATE(482), - [sym_assignment_exp] = STATE(482), - [sym_piped_io_exp] = STATE(482), - [sym_string_concat] = STATE(375), - [sym_field_ref] = STATE(256), - [sym_array_ref] = STATE(240), - [sym_regex] = STATE(482), - [sym_regex_constant] = STATE(482), - [sym_grouping] = STATE(375), - [sym__primitive] = STATE(375), - [sym_namespace] = STATE(2063), - [sym_ns_qualified_name] = STATE(196), - [sym_number] = STATE(375), - [sym_string] = STATE(375), - [sym_func_call] = STATE(375), - [sym_indirect_func_call] = STATE(482), - [sym_comment] = STATE(101), - [aux_sym_if_statement_repeat1] = STATE(101), - [sym_identifier] = ACTIONS(298), - [anon_sym_SEMI] = ACTIONS(578), - [anon_sym_if] = ACTIONS(302), - [anon_sym_LPAREN] = ACTIONS(304), - [anon_sym_while] = ACTIONS(306), - [anon_sym_do] = ACTIONS(49), - [anon_sym_for] = ACTIONS(308), - [sym_break_statement] = ACTIONS(580), - [sym_continue_statement] = ACTIONS(580), - [anon_sym_delete] = ACTIONS(55), - [anon_sym_exit] = ACTIONS(312), - [anon_sym_return] = ACTIONS(314), - [anon_sym_switch] = ACTIONS(61), - [anon_sym_LBRACE] = ACTIONS(316), - [anon_sym_getline] = ACTIONS(318), - [sym_next_statement] = ACTIONS(580), - [sym_nextfile_statement] = ACTIONS(580), - [anon_sym_print] = ACTIONS(320), - [anon_sym_printf] = ACTIONS(322), - [anon_sym_SLASH] = ACTIONS(324), - [anon_sym_PLUS] = ACTIONS(326), - [anon_sym_DASH] = ACTIONS(326), - [anon_sym_BANG] = ACTIONS(328), - [anon_sym_PLUS_PLUS] = ACTIONS(330), - [anon_sym_DASH_DASH] = ACTIONS(330), - [anon_sym_DOLLAR] = ACTIONS(332), - [anon_sym_AT] = ACTIONS(334), - [aux_sym_number_token1] = ACTIONS(336), - [aux_sym_number_token2] = ACTIONS(338), - [anon_sym_DQUOTE] = ACTIONS(340), - [anon_sym_POUND] = ACTIONS(171), - }, - [92] = { - [sym__statement] = STATE(1149), - [sym__statement_separated] = STATE(2), - [sym__control_statement] = STATE(1149), - [sym_if_statement] = STATE(1149), - [sym_while_statement] = STATE(1149), - [sym_do_while_statement] = STATE(1149), - [sym_for_statement] = STATE(1149), - [sym_for_in_statement] = STATE(1149), - [sym_delete_statement] = STATE(1149), - [sym_exit_statement] = STATE(1149), - [sym_return_statement] = STATE(1149), - [sym_switch_statement] = STATE(1149), - [sym__io_statement] = STATE(1149), - [sym__getline_exp] = STATE(1462), - [sym_getline_input] = STATE(1462), - [sym_getline_file] = STATE(1462), - [sym_print_statement] = STATE(1695), - [sym_printf_statement] = STATE(1695), - [sym_redirected_io_statement] = STATE(1149), - [sym_piped_io_statement] = STATE(1149), - [sym_block] = STATE(1150), - [sym__exp] = STATE(1462), - [sym_ternary_exp] = STATE(1354), - [sym_binary_exp] = STATE(1354), - [sym__binary_in] = STATE(1309), - [sym_unary_exp] = STATE(1354), - [sym_update_exp] = STATE(1462), - [sym_assignment_exp] = STATE(1462), - [sym_piped_io_exp] = STATE(1462), - [sym_string_concat] = STATE(1354), - [sym_field_ref] = STATE(619), - [sym_array_ref] = STATE(603), - [sym_regex] = STATE(1462), - [sym_regex_constant] = STATE(1462), - [sym_grouping] = STATE(1354), - [sym__primitive] = STATE(1354), - [sym_namespace] = STATE(2063), - [sym_ns_qualified_name] = STATE(592), - [sym_number] = STATE(1354), - [sym_string] = STATE(1354), - [sym_func_call] = STATE(1354), - [sym_indirect_func_call] = STATE(1462), - [sym_comment] = STATE(1238), - [aux_sym_if_statement_repeat1] = STATE(1238), - [sym_identifier] = ACTIONS(39), - [anon_sym_SEMI] = ACTIONS(430), - [anon_sym_if] = ACTIONS(43), - [anon_sym_LPAREN] = ACTIONS(552), - [anon_sym_while] = ACTIONS(47), - [anon_sym_do] = ACTIONS(49), - [anon_sym_for] = ACTIONS(51), - [sym_break_statement] = ACTIONS(432), - [sym_continue_statement] = ACTIONS(432), - [anon_sym_delete] = ACTIONS(55), - [anon_sym_exit] = ACTIONS(57), - [anon_sym_return] = ACTIONS(59), - [anon_sym_switch] = ACTIONS(61), - [anon_sym_LBRACE] = ACTIONS(316), - [anon_sym_getline] = ACTIONS(63), - [sym_next_statement] = ACTIONS(432), - [sym_nextfile_statement] = ACTIONS(432), - [anon_sym_print] = ACTIONS(65), - [anon_sym_printf] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(554), - [anon_sym_PLUS] = ACTIONS(71), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_BANG] = ACTIONS(556), - [anon_sym_PLUS_PLUS] = ACTIONS(558), - [anon_sym_DASH_DASH] = ACTIONS(558), - [anon_sym_DOLLAR] = ACTIONS(560), - [anon_sym_AT] = ACTIONS(562), - [aux_sym_number_token1] = ACTIONS(79), - [aux_sym_number_token2] = ACTIONS(486), - [anon_sym_DQUOTE] = ACTIONS(488), - [anon_sym_POUND] = ACTIONS(171), - }, - [93] = { - [sym__statement] = STATE(1187), - [sym__statement_separated] = STATE(2), - [sym__control_statement] = STATE(1187), - [sym_if_statement] = STATE(1187), - [sym_while_statement] = STATE(1187), - [sym_do_while_statement] = STATE(1187), - [sym_for_statement] = STATE(1187), - [sym_for_in_statement] = STATE(1187), - [sym_delete_statement] = STATE(1187), - [sym_exit_statement] = STATE(1187), - [sym_return_statement] = STATE(1187), - [sym_switch_statement] = STATE(1187), - [sym__io_statement] = STATE(1187), - [sym__getline_exp] = STATE(1462), - [sym_getline_input] = STATE(1462), - [sym_getline_file] = STATE(1462), - [sym_print_statement] = STATE(1695), - [sym_printf_statement] = STATE(1695), - [sym_redirected_io_statement] = STATE(1187), - [sym_piped_io_statement] = STATE(1187), - [sym_block] = STATE(1188), - [sym__exp] = STATE(1462), - [sym_ternary_exp] = STATE(1354), - [sym_binary_exp] = STATE(1354), - [sym__binary_in] = STATE(1309), - [sym_unary_exp] = STATE(1354), - [sym_update_exp] = STATE(1462), - [sym_assignment_exp] = STATE(1462), - [sym_piped_io_exp] = STATE(1462), - [sym_string_concat] = STATE(1354), - [sym_field_ref] = STATE(619), - [sym_array_ref] = STATE(603), - [sym_regex] = STATE(1462), - [sym_regex_constant] = STATE(1462), - [sym_grouping] = STATE(1354), - [sym__primitive] = STATE(1354), - [sym_namespace] = STATE(2063), - [sym_ns_qualified_name] = STATE(592), - [sym_number] = STATE(1354), - [sym_string] = STATE(1354), - [sym_func_call] = STATE(1354), - [sym_indirect_func_call] = STATE(1462), - [sym_comment] = STATE(112), - [aux_sym_if_statement_repeat1] = STATE(112), - [sym_identifier] = ACTIONS(39), - [anon_sym_SEMI] = ACTIONS(350), - [anon_sym_if] = ACTIONS(43), - [anon_sym_LPAREN] = ACTIONS(552), - [anon_sym_while] = ACTIONS(47), - [anon_sym_do] = ACTIONS(49), - [anon_sym_for] = ACTIONS(51), - [sym_break_statement] = ACTIONS(352), - [sym_continue_statement] = ACTIONS(352), - [anon_sym_delete] = ACTIONS(55), - [anon_sym_exit] = ACTIONS(57), - [anon_sym_return] = ACTIONS(59), - [anon_sym_switch] = ACTIONS(61), - [anon_sym_LBRACE] = ACTIONS(316), - [anon_sym_getline] = ACTIONS(63), - [sym_next_statement] = ACTIONS(352), - [sym_nextfile_statement] = ACTIONS(352), - [anon_sym_print] = ACTIONS(65), - [anon_sym_printf] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(554), - [anon_sym_PLUS] = ACTIONS(71), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_BANG] = ACTIONS(556), - [anon_sym_PLUS_PLUS] = ACTIONS(558), - [anon_sym_DASH_DASH] = ACTIONS(558), - [anon_sym_DOLLAR] = ACTIONS(560), - [anon_sym_AT] = ACTIONS(562), - [aux_sym_number_token1] = ACTIONS(79), - [aux_sym_number_token2] = ACTIONS(486), - [anon_sym_DQUOTE] = ACTIONS(488), - [anon_sym_POUND] = ACTIONS(171), - }, - [94] = { [sym__statement] = STATE(1185), - [sym__statement_separated] = STATE(2), + [sym__statement_separated] = STATE(1185), [sym__control_statement] = STATE(1185), [sym_if_statement] = STATE(1185), [sym_while_statement] = STATE(1185), @@ -14925,3673 +14996,3904 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_return_statement] = STATE(1185), [sym_switch_statement] = STATE(1185), [sym__io_statement] = STATE(1185), - [sym__getline_exp] = STATE(1462), - [sym_getline_input] = STATE(1462), - [sym_getline_file] = STATE(1462), - [sym_print_statement] = STATE(1695), - [sym_printf_statement] = STATE(1695), + [sym__getline_exp] = STATE(483), + [sym_getline_input] = STATE(483), + [sym_getline_file] = STATE(483), + [sym_print_statement] = STATE(770), + [sym_printf_statement] = STATE(770), [sym_redirected_io_statement] = STATE(1185), [sym_piped_io_statement] = STATE(1185), - [sym_block] = STATE(1186), - [sym__exp] = STATE(1462), - [sym_ternary_exp] = STATE(1354), - [sym_binary_exp] = STATE(1354), - [sym__binary_in] = STATE(1309), - [sym_unary_exp] = STATE(1354), - [sym_update_exp] = STATE(1462), - [sym_assignment_exp] = STATE(1462), - [sym_piped_io_exp] = STATE(1462), - [sym_string_concat] = STATE(1354), - [sym_field_ref] = STATE(619), - [sym_array_ref] = STATE(603), - [sym_regex] = STATE(1462), - [sym_regex_constant] = STATE(1462), - [sym_grouping] = STATE(1354), - [sym__primitive] = STATE(1354), - [sym_namespace] = STATE(2063), - [sym_ns_qualified_name] = STATE(592), - [sym_number] = STATE(1354), - [sym_string] = STATE(1354), - [sym_func_call] = STATE(1354), - [sym_indirect_func_call] = STATE(1462), - [sym_comment] = STATE(116), - [aux_sym_if_statement_repeat1] = STATE(116), - [sym_identifier] = ACTIONS(39), - [anon_sym_SEMI] = ACTIONS(354), - [anon_sym_if] = ACTIONS(43), - [anon_sym_LPAREN] = ACTIONS(552), - [anon_sym_while] = ACTIONS(47), + [sym_block] = STATE(1184), + [sym__exp] = STATE(483), + [sym_ternary_exp] = STATE(359), + [sym_binary_exp] = STATE(359), + [sym__binary_in] = STATE(373), + [sym_unary_exp] = STATE(359), + [sym_update_exp] = STATE(483), + [sym_assignment_exp] = STATE(483), + [sym_piped_io_exp] = STATE(483), + [sym_string_concat] = STATE(359), + [sym_field_ref] = STATE(258), + [sym_array_ref] = STATE(219), + [sym_regex] = STATE(483), + [sym_regex_constant] = STATE(483), + [sym_grouping] = STATE(359), + [sym__primitive] = STATE(359), + [sym_namespace] = STATE(2068), + [sym_ns_qualified_name] = STATE(200), + [sym_number] = STATE(359), + [sym_string] = STATE(359), + [sym_func_call] = STATE(359), + [sym_indirect_func_call] = STATE(483), + [sym_comment] = STATE(1252), + [aux_sym_if_statement_repeat1] = STATE(1252), + [sym_identifier] = ACTIONS(530), + [anon_sym_SEMI] = ACTIONS(424), + [anon_sym_if] = ACTIONS(532), + [anon_sym_LPAREN] = ACTIONS(534), + [anon_sym_while] = ACTIONS(536), [anon_sym_do] = ACTIONS(49), - [anon_sym_for] = ACTIONS(51), - [sym_break_statement] = ACTIONS(356), - [sym_continue_statement] = ACTIONS(356), + [anon_sym_for] = ACTIONS(538), + [sym_break_statement] = ACTIONS(426), + [sym_continue_statement] = ACTIONS(426), [anon_sym_delete] = ACTIONS(55), - [anon_sym_exit] = ACTIONS(57), - [anon_sym_return] = ACTIONS(59), + [anon_sym_exit] = ACTIONS(540), + [anon_sym_return] = ACTIONS(542), [anon_sym_switch] = ACTIONS(61), [anon_sym_LBRACE] = ACTIONS(316), - [anon_sym_getline] = ACTIONS(63), - [sym_next_statement] = ACTIONS(356), - [sym_nextfile_statement] = ACTIONS(356), - [anon_sym_print] = ACTIONS(65), - [anon_sym_printf] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(554), - [anon_sym_PLUS] = ACTIONS(71), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_BANG] = ACTIONS(556), - [anon_sym_PLUS_PLUS] = ACTIONS(558), - [anon_sym_DASH_DASH] = ACTIONS(558), - [anon_sym_DOLLAR] = ACTIONS(560), - [anon_sym_AT] = ACTIONS(562), - [aux_sym_number_token1] = ACTIONS(79), - [aux_sym_number_token2] = ACTIONS(486), - [anon_sym_DQUOTE] = ACTIONS(488), - [anon_sym_POUND] = ACTIONS(171), + [anon_sym_getline] = ACTIONS(544), + [sym_next_statement] = ACTIONS(426), + [sym_nextfile_statement] = ACTIONS(426), + [anon_sym_print] = ACTIONS(546), + [anon_sym_printf] = ACTIONS(548), + [anon_sym_SLASH] = ACTIONS(550), + [anon_sym_PLUS] = ACTIONS(552), + [anon_sym_DASH] = ACTIONS(552), + [anon_sym_BANG] = ACTIONS(554), + [anon_sym_PLUS_PLUS] = ACTIONS(556), + [anon_sym_DASH_DASH] = ACTIONS(556), + [anon_sym_DOLLAR] = ACTIONS(558), + [anon_sym_AT] = ACTIONS(560), + [aux_sym_number_token1] = ACTIONS(562), + [aux_sym_number_token2] = ACTIONS(564), + [anon_sym_DQUOTE] = ACTIONS(566), + [anon_sym_POUND] = ACTIONS(135), }, - [95] = { - [sym__statement] = STATE(1220), - [sym__statement_separated] = STATE(1220), - [sym__control_statement] = STATE(1220), - [sym_if_statement] = STATE(1220), - [sym_while_statement] = STATE(1220), - [sym_do_while_statement] = STATE(1220), - [sym_for_statement] = STATE(1220), - [sym_for_in_statement] = STATE(1220), - [sym_delete_statement] = STATE(1220), - [sym_exit_statement] = STATE(1220), - [sym_return_statement] = STATE(1220), - [sym_switch_statement] = STATE(1220), - [sym__io_statement] = STATE(1220), - [sym__getline_exp] = STATE(503), - [sym_getline_input] = STATE(503), - [sym_getline_file] = STATE(503), - [sym_print_statement] = STATE(890), - [sym_printf_statement] = STATE(890), - [sym_redirected_io_statement] = STATE(1220), - [sym_piped_io_statement] = STATE(1220), - [sym_block] = STATE(1219), - [sym__exp] = STATE(503), - [sym_ternary_exp] = STATE(447), - [sym_binary_exp] = STATE(447), - [sym__binary_in] = STATE(446), - [sym_unary_exp] = STATE(447), - [sym_update_exp] = STATE(503), - [sym_assignment_exp] = STATE(503), - [sym_piped_io_exp] = STATE(503), - [sym_string_concat] = STATE(447), - [sym_field_ref] = STATE(272), - [sym_array_ref] = STATE(253), - [sym_regex] = STATE(503), - [sym_regex_constant] = STATE(503), - [sym_grouping] = STATE(447), - [sym__primitive] = STATE(447), - [sym_namespace] = STATE(1955), - [sym_ns_qualified_name] = STATE(221), - [sym_number] = STATE(447), - [sym_string] = STATE(447), - [sym_func_call] = STATE(447), - [sym_indirect_func_call] = STATE(503), - [sym_comment] = STATE(62), - [aux_sym_if_statement_repeat1] = STATE(62), - [sym_identifier] = ACTIONS(127), - [anon_sym_SEMI] = ACTIONS(516), - [anon_sym_if] = ACTIONS(129), - [anon_sym_LPAREN] = ACTIONS(131), - [anon_sym_while] = ACTIONS(133), + [92] = { + [sym__statement] = STATE(1221), + [sym__statement_separated] = STATE(143), + [sym__control_statement] = STATE(1221), + [sym_if_statement] = STATE(1221), + [sym_while_statement] = STATE(1221), + [sym_do_while_statement] = STATE(1221), + [sym_for_statement] = STATE(1221), + [sym_for_in_statement] = STATE(1221), + [sym_delete_statement] = STATE(1221), + [sym_exit_statement] = STATE(1221), + [sym_return_statement] = STATE(1221), + [sym_switch_statement] = STATE(1221), + [sym__io_statement] = STATE(1221), + [sym__getline_exp] = STATE(1570), + [sym_getline_input] = STATE(1570), + [sym_getline_file] = STATE(1570), + [sym_print_statement] = STATE(1707), + [sym_printf_statement] = STATE(1707), + [sym_redirected_io_statement] = STATE(1221), + [sym_piped_io_statement] = STATE(1221), + [sym_block] = STATE(1225), + [sym__exp] = STATE(1570), + [sym_ternary_exp] = STATE(1476), + [sym_binary_exp] = STATE(1476), + [sym__binary_in] = STATE(1385), + [sym_unary_exp] = STATE(1476), + [sym_update_exp] = STATE(1570), + [sym_assignment_exp] = STATE(1570), + [sym_piped_io_exp] = STATE(1570), + [sym_string_concat] = STATE(1476), + [sym_field_ref] = STATE(1194), + [sym_array_ref] = STATE(991), + [sym_regex] = STATE(1570), + [sym_regex_constant] = STATE(1570), + [sym_grouping] = STATE(1476), + [sym__primitive] = STATE(1476), + [sym_namespace] = STATE(1956), + [sym_ns_qualified_name] = STATE(720), + [sym_number] = STATE(1476), + [sym_string] = STATE(1476), + [sym_func_call] = STATE(1476), + [sym_indirect_func_call] = STATE(1570), + [sym_comment] = STATE(86), + [aux_sym_if_statement_repeat1] = STATE(86), + [sym_identifier] = ACTIONS(270), + [anon_sym_SEMI] = ACTIONS(494), + [anon_sym_if] = ACTIONS(274), + [anon_sym_LPAREN] = ACTIONS(276), + [anon_sym_while] = ACTIONS(278), [anon_sym_do] = ACTIONS(93), - [anon_sym_for] = ACTIONS(135), - [sym_break_statement] = ACTIONS(518), - [sym_continue_statement] = ACTIONS(518), + [anon_sym_for] = ACTIONS(280), + [sym_break_statement] = ACTIONS(496), + [sym_continue_statement] = ACTIONS(496), [anon_sym_delete] = ACTIONS(99), - [anon_sym_exit] = ACTIONS(139), - [anon_sym_return] = ACTIONS(141), + [anon_sym_exit] = ACTIONS(284), + [anon_sym_return] = ACTIONS(286), [anon_sym_switch] = ACTIONS(105), [anon_sym_LBRACE] = ACTIONS(268), - [anon_sym_getline] = ACTIONS(147), - [sym_next_statement] = ACTIONS(518), - [sym_nextfile_statement] = ACTIONS(518), - [anon_sym_print] = ACTIONS(149), - [anon_sym_printf] = ACTIONS(151), - [anon_sym_SLASH] = ACTIONS(153), - [anon_sym_PLUS] = ACTIONS(155), - [anon_sym_DASH] = ACTIONS(155), - [anon_sym_BANG] = ACTIONS(157), - [anon_sym_PLUS_PLUS] = ACTIONS(159), - [anon_sym_DASH_DASH] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(161), - [anon_sym_AT] = ACTIONS(163), - [aux_sym_number_token1] = ACTIONS(165), - [aux_sym_number_token2] = ACTIONS(167), - [anon_sym_DQUOTE] = ACTIONS(169), - [anon_sym_POUND] = ACTIONS(171), + [anon_sym_getline] = ACTIONS(288), + [sym_next_statement] = ACTIONS(496), + [sym_nextfile_statement] = ACTIONS(496), + [anon_sym_print] = ACTIONS(290), + [anon_sym_printf] = ACTIONS(292), + [anon_sym_SLASH] = ACTIONS(294), + [anon_sym_PLUS] = ACTIONS(296), + [anon_sym_DASH] = ACTIONS(296), + [anon_sym_BANG] = ACTIONS(298), + [anon_sym_PLUS_PLUS] = ACTIONS(300), + [anon_sym_DASH_DASH] = ACTIONS(300), + [anon_sym_DOLLAR] = ACTIONS(302), + [anon_sym_AT] = ACTIONS(304), + [aux_sym_number_token1] = ACTIONS(169), + [aux_sym_number_token2] = ACTIONS(306), + [anon_sym_DQUOTE] = ACTIONS(308), + [anon_sym_POUND] = ACTIONS(135), }, - [96] = { - [sym__statement] = STATE(1218), - [sym__statement_separated] = STATE(1218), - [sym__control_statement] = STATE(1218), - [sym_if_statement] = STATE(1218), - [sym_while_statement] = STATE(1218), - [sym_do_while_statement] = STATE(1218), - [sym_for_statement] = STATE(1218), - [sym_for_in_statement] = STATE(1218), - [sym_delete_statement] = STATE(1218), - [sym_exit_statement] = STATE(1218), - [sym_return_statement] = STATE(1218), - [sym_switch_statement] = STATE(1218), - [sym__io_statement] = STATE(1218), - [sym__getline_exp] = STATE(503), - [sym_getline_input] = STATE(503), - [sym_getline_file] = STATE(503), - [sym_print_statement] = STATE(890), - [sym_printf_statement] = STATE(890), - [sym_redirected_io_statement] = STATE(1218), - [sym_piped_io_statement] = STATE(1218), - [sym_block] = STATE(1213), - [sym__exp] = STATE(503), - [sym_ternary_exp] = STATE(447), - [sym_binary_exp] = STATE(447), - [sym__binary_in] = STATE(446), - [sym_unary_exp] = STATE(447), - [sym_update_exp] = STATE(503), - [sym_assignment_exp] = STATE(503), - [sym_piped_io_exp] = STATE(503), - [sym_string_concat] = STATE(447), - [sym_field_ref] = STATE(272), - [sym_array_ref] = STATE(253), - [sym_regex] = STATE(503), - [sym_regex_constant] = STATE(503), - [sym_grouping] = STATE(447), - [sym__primitive] = STATE(447), - [sym_namespace] = STATE(1955), - [sym_ns_qualified_name] = STATE(221), - [sym_number] = STATE(447), - [sym_string] = STATE(447), - [sym_func_call] = STATE(447), - [sym_indirect_func_call] = STATE(503), - [sym_comment] = STATE(66), - [aux_sym_if_statement_repeat1] = STATE(66), - [sym_identifier] = ACTIONS(127), - [anon_sym_SEMI] = ACTIONS(520), - [anon_sym_if] = ACTIONS(129), - [anon_sym_LPAREN] = ACTIONS(131), - [anon_sym_while] = ACTIONS(133), + [93] = { + [sym__statement] = STATE(1232), + [sym__statement_separated] = STATE(143), + [sym__control_statement] = STATE(1232), + [sym_if_statement] = STATE(1232), + [sym_while_statement] = STATE(1232), + [sym_do_while_statement] = STATE(1232), + [sym_for_statement] = STATE(1232), + [sym_for_in_statement] = STATE(1232), + [sym_delete_statement] = STATE(1232), + [sym_exit_statement] = STATE(1232), + [sym_return_statement] = STATE(1232), + [sym_switch_statement] = STATE(1232), + [sym__io_statement] = STATE(1232), + [sym__getline_exp] = STATE(1570), + [sym_getline_input] = STATE(1570), + [sym_getline_file] = STATE(1570), + [sym_print_statement] = STATE(1707), + [sym_printf_statement] = STATE(1707), + [sym_redirected_io_statement] = STATE(1232), + [sym_piped_io_statement] = STATE(1232), + [sym_block] = STATE(1229), + [sym__exp] = STATE(1570), + [sym_ternary_exp] = STATE(1476), + [sym_binary_exp] = STATE(1476), + [sym__binary_in] = STATE(1385), + [sym_unary_exp] = STATE(1476), + [sym_update_exp] = STATE(1570), + [sym_assignment_exp] = STATE(1570), + [sym_piped_io_exp] = STATE(1570), + [sym_string_concat] = STATE(1476), + [sym_field_ref] = STATE(1194), + [sym_array_ref] = STATE(991), + [sym_regex] = STATE(1570), + [sym_regex_constant] = STATE(1570), + [sym_grouping] = STATE(1476), + [sym__primitive] = STATE(1476), + [sym_namespace] = STATE(1956), + [sym_ns_qualified_name] = STATE(720), + [sym_number] = STATE(1476), + [sym_string] = STATE(1476), + [sym_func_call] = STATE(1476), + [sym_indirect_func_call] = STATE(1570), + [sym_comment] = STATE(1252), + [aux_sym_if_statement_repeat1] = STATE(1252), + [sym_identifier] = ACTIONS(270), + [anon_sym_SEMI] = ACTIONS(498), + [anon_sym_if] = ACTIONS(274), + [anon_sym_LPAREN] = ACTIONS(276), + [anon_sym_while] = ACTIONS(278), [anon_sym_do] = ACTIONS(93), - [anon_sym_for] = ACTIONS(135), - [sym_break_statement] = ACTIONS(522), - [sym_continue_statement] = ACTIONS(522), + [anon_sym_for] = ACTIONS(280), + [sym_break_statement] = ACTIONS(500), + [sym_continue_statement] = ACTIONS(500), [anon_sym_delete] = ACTIONS(99), - [anon_sym_exit] = ACTIONS(139), - [anon_sym_return] = ACTIONS(141), + [anon_sym_exit] = ACTIONS(284), + [anon_sym_return] = ACTIONS(286), [anon_sym_switch] = ACTIONS(105), [anon_sym_LBRACE] = ACTIONS(268), - [anon_sym_getline] = ACTIONS(147), - [sym_next_statement] = ACTIONS(522), - [sym_nextfile_statement] = ACTIONS(522), - [anon_sym_print] = ACTIONS(149), - [anon_sym_printf] = ACTIONS(151), - [anon_sym_SLASH] = ACTIONS(153), - [anon_sym_PLUS] = ACTIONS(155), - [anon_sym_DASH] = ACTIONS(155), - [anon_sym_BANG] = ACTIONS(157), - [anon_sym_PLUS_PLUS] = ACTIONS(159), - [anon_sym_DASH_DASH] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(161), - [anon_sym_AT] = ACTIONS(163), - [aux_sym_number_token1] = ACTIONS(165), - [aux_sym_number_token2] = ACTIONS(167), - [anon_sym_DQUOTE] = ACTIONS(169), - [anon_sym_POUND] = ACTIONS(171), - }, - [97] = { - [sym__statement] = STATE(1147), - [sym__statement_separated] = STATE(141), - [sym__control_statement] = STATE(1147), - [sym_if_statement] = STATE(1147), - [sym_while_statement] = STATE(1147), - [sym_do_while_statement] = STATE(1147), - [sym_for_statement] = STATE(1147), - [sym_for_in_statement] = STATE(1147), - [sym_delete_statement] = STATE(1147), - [sym_exit_statement] = STATE(1147), - [sym_return_statement] = STATE(1147), - [sym_switch_statement] = STATE(1147), - [sym__io_statement] = STATE(1147), - [sym__getline_exp] = STATE(1547), - [sym_getline_input] = STATE(1547), - [sym_getline_file] = STATE(1547), - [sym_print_statement] = STATE(1697), - [sym_printf_statement] = STATE(1697), - [sym_redirected_io_statement] = STATE(1147), - [sym_piped_io_statement] = STATE(1147), - [sym_block] = STATE(1148), - [sym__exp] = STATE(1547), - [sym_ternary_exp] = STATE(1441), - [sym_binary_exp] = STATE(1441), - [sym__binary_in] = STATE(1309), - [sym_unary_exp] = STATE(1441), - [sym_update_exp] = STATE(1547), - [sym_assignment_exp] = STATE(1547), - [sym_piped_io_exp] = STATE(1547), - [sym_string_concat] = STATE(1441), - [sym_field_ref] = STATE(995), - [sym_array_ref] = STATE(774), - [sym_regex] = STATE(1547), - [sym_regex_constant] = STATE(1547), - [sym_grouping] = STATE(1441), - [sym__primitive] = STATE(1441), - [sym_namespace] = STATE(2063), - [sym_ns_qualified_name] = STATE(647), - [sym_number] = STATE(1441), - [sym_string] = STATE(1441), - [sym_func_call] = STATE(1441), - [sym_indirect_func_call] = STATE(1547), - [sym_comment] = STATE(1238), - [aux_sym_if_statement_repeat1] = STATE(1238), - [sym_identifier] = ACTIONS(450), - [anon_sym_SEMI] = ACTIONS(434), - [anon_sym_if] = ACTIONS(454), - [anon_sym_LPAREN] = ACTIONS(456), - [anon_sym_while] = ACTIONS(458), - [anon_sym_do] = ACTIONS(49), - [anon_sym_for] = ACTIONS(460), - [sym_break_statement] = ACTIONS(436), - [sym_continue_statement] = ACTIONS(436), - [anon_sym_delete] = ACTIONS(55), - [anon_sym_exit] = ACTIONS(464), - [anon_sym_return] = ACTIONS(466), - [anon_sym_switch] = ACTIONS(61), - [anon_sym_LBRACE] = ACTIONS(316), - [anon_sym_getline] = ACTIONS(468), - [sym_next_statement] = ACTIONS(436), - [sym_nextfile_statement] = ACTIONS(436), - [anon_sym_print] = ACTIONS(470), - [anon_sym_printf] = ACTIONS(472), - [anon_sym_SLASH] = ACTIONS(474), - [anon_sym_PLUS] = ACTIONS(476), - [anon_sym_DASH] = ACTIONS(476), - [anon_sym_BANG] = ACTIONS(478), - [anon_sym_PLUS_PLUS] = ACTIONS(480), - [anon_sym_DASH_DASH] = ACTIONS(480), - [anon_sym_DOLLAR] = ACTIONS(482), - [anon_sym_AT] = ACTIONS(484), - [aux_sym_number_token1] = ACTIONS(79), - [aux_sym_number_token2] = ACTIONS(486), - [anon_sym_DQUOTE] = ACTIONS(488), - [anon_sym_POUND] = ACTIONS(171), + [anon_sym_getline] = ACTIONS(288), + [sym_next_statement] = ACTIONS(500), + [sym_nextfile_statement] = ACTIONS(500), + [anon_sym_print] = ACTIONS(290), + [anon_sym_printf] = ACTIONS(292), + [anon_sym_SLASH] = ACTIONS(294), + [anon_sym_PLUS] = ACTIONS(296), + [anon_sym_DASH] = ACTIONS(296), + [anon_sym_BANG] = ACTIONS(298), + [anon_sym_PLUS_PLUS] = ACTIONS(300), + [anon_sym_DASH_DASH] = ACTIONS(300), + [anon_sym_DOLLAR] = ACTIONS(302), + [anon_sym_AT] = ACTIONS(304), + [aux_sym_number_token1] = ACTIONS(169), + [aux_sym_number_token2] = ACTIONS(306), + [anon_sym_DQUOTE] = ACTIONS(308), + [anon_sym_POUND] = ACTIONS(135), }, - [98] = { - [sym__statement] = STATE(1248), - [sym__statement_separated] = STATE(146), - [sym__control_statement] = STATE(1248), - [sym_if_statement] = STATE(1248), - [sym_while_statement] = STATE(1248), - [sym_do_while_statement] = STATE(1248), - [sym_for_statement] = STATE(1248), - [sym_for_in_statement] = STATE(1248), - [sym_delete_statement] = STATE(1248), - [sym_exit_statement] = STATE(1248), - [sym_return_statement] = STATE(1248), - [sym_switch_statement] = STATE(1248), - [sym__io_statement] = STATE(1248), - [sym__getline_exp] = STATE(1568), - [sym_getline_input] = STATE(1568), - [sym_getline_file] = STATE(1568), - [sym_print_statement] = STATE(1699), - [sym_printf_statement] = STATE(1699), - [sym_redirected_io_statement] = STATE(1248), - [sym_piped_io_statement] = STATE(1248), - [sym_block] = STATE(1245), - [sym__exp] = STATE(1568), - [sym_ternary_exp] = STATE(1470), - [sym_binary_exp] = STATE(1470), - [sym__binary_in] = STATE(1373), - [sym_unary_exp] = STATE(1470), - [sym_update_exp] = STATE(1568), - [sym_assignment_exp] = STATE(1568), - [sym_piped_io_exp] = STATE(1568), - [sym_string_concat] = STATE(1470), - [sym_field_ref] = STATE(1121), - [sym_array_ref] = STATE(1022), - [sym_regex] = STATE(1568), - [sym_regex_constant] = STATE(1568), - [sym_grouping] = STATE(1470), - [sym__primitive] = STATE(1470), - [sym_namespace] = STATE(1955), - [sym_ns_qualified_name] = STATE(744), - [sym_number] = STATE(1470), - [sym_string] = STATE(1470), - [sym_func_call] = STATE(1470), - [sym_indirect_func_call] = STATE(1568), - [sym_comment] = STATE(1238), - [aux_sym_if_statement_repeat1] = STATE(1238), - [sym_identifier] = ACTIONS(362), - [anon_sym_SEMI] = ACTIONS(540), - [anon_sym_if] = ACTIONS(364), - [anon_sym_LPAREN] = ACTIONS(366), - [anon_sym_while] = ACTIONS(368), + [94] = { + [sym__statement] = STATE(1256), + [sym__statement_separated] = STATE(143), + [sym__control_statement] = STATE(1256), + [sym_if_statement] = STATE(1256), + [sym_while_statement] = STATE(1256), + [sym_do_while_statement] = STATE(1256), + [sym_for_statement] = STATE(1256), + [sym_for_in_statement] = STATE(1256), + [sym_delete_statement] = STATE(1256), + [sym_exit_statement] = STATE(1256), + [sym_return_statement] = STATE(1256), + [sym_switch_statement] = STATE(1256), + [sym__io_statement] = STATE(1256), + [sym__getline_exp] = STATE(1570), + [sym_getline_input] = STATE(1570), + [sym_getline_file] = STATE(1570), + [sym_print_statement] = STATE(1707), + [sym_printf_statement] = STATE(1707), + [sym_redirected_io_statement] = STATE(1256), + [sym_piped_io_statement] = STATE(1256), + [sym_block] = STATE(1263), + [sym__exp] = STATE(1570), + [sym_ternary_exp] = STATE(1476), + [sym_binary_exp] = STATE(1476), + [sym__binary_in] = STATE(1385), + [sym_unary_exp] = STATE(1476), + [sym_update_exp] = STATE(1570), + [sym_assignment_exp] = STATE(1570), + [sym_piped_io_exp] = STATE(1570), + [sym_string_concat] = STATE(1476), + [sym_field_ref] = STATE(1194), + [sym_array_ref] = STATE(991), + [sym_regex] = STATE(1570), + [sym_regex_constant] = STATE(1570), + [sym_grouping] = STATE(1476), + [sym__primitive] = STATE(1476), + [sym_namespace] = STATE(1956), + [sym_ns_qualified_name] = STATE(720), + [sym_number] = STATE(1476), + [sym_string] = STATE(1476), + [sym_func_call] = STATE(1476), + [sym_indirect_func_call] = STATE(1570), + [sym_comment] = STATE(1252), + [aux_sym_if_statement_repeat1] = STATE(1252), + [sym_identifier] = ACTIONS(270), + [anon_sym_SEMI] = ACTIONS(502), + [anon_sym_if] = ACTIONS(274), + [anon_sym_LPAREN] = ACTIONS(276), + [anon_sym_while] = ACTIONS(278), [anon_sym_do] = ACTIONS(93), - [anon_sym_for] = ACTIONS(370), - [sym_break_statement] = ACTIONS(542), - [sym_continue_statement] = ACTIONS(542), + [anon_sym_for] = ACTIONS(280), + [sym_break_statement] = ACTIONS(504), + [sym_continue_statement] = ACTIONS(504), [anon_sym_delete] = ACTIONS(99), - [anon_sym_exit] = ACTIONS(372), - [anon_sym_return] = ACTIONS(374), + [anon_sym_exit] = ACTIONS(284), + [anon_sym_return] = ACTIONS(286), [anon_sym_switch] = ACTIONS(105), [anon_sym_LBRACE] = ACTIONS(268), - [anon_sym_getline] = ACTIONS(376), - [sym_next_statement] = ACTIONS(542), - [sym_nextfile_statement] = ACTIONS(542), - [anon_sym_print] = ACTIONS(378), - [anon_sym_printf] = ACTIONS(380), - [anon_sym_SLASH] = ACTIONS(382), - [anon_sym_PLUS] = ACTIONS(384), - [anon_sym_DASH] = ACTIONS(384), - [anon_sym_BANG] = ACTIONS(386), - [anon_sym_PLUS_PLUS] = ACTIONS(388), - [anon_sym_DASH_DASH] = ACTIONS(388), - [anon_sym_DOLLAR] = ACTIONS(390), - [anon_sym_AT] = ACTIONS(392), - [aux_sym_number_token1] = ACTIONS(123), - [aux_sym_number_token2] = ACTIONS(286), - [anon_sym_DQUOTE] = ACTIONS(288), - [anon_sym_POUND] = ACTIONS(171), + [anon_sym_getline] = ACTIONS(288), + [sym_next_statement] = ACTIONS(504), + [sym_nextfile_statement] = ACTIONS(504), + [anon_sym_print] = ACTIONS(290), + [anon_sym_printf] = ACTIONS(292), + [anon_sym_SLASH] = ACTIONS(294), + [anon_sym_PLUS] = ACTIONS(296), + [anon_sym_DASH] = ACTIONS(296), + [anon_sym_BANG] = ACTIONS(298), + [anon_sym_PLUS_PLUS] = ACTIONS(300), + [anon_sym_DASH_DASH] = ACTIONS(300), + [anon_sym_DOLLAR] = ACTIONS(302), + [anon_sym_AT] = ACTIONS(304), + [aux_sym_number_token1] = ACTIONS(169), + [aux_sym_number_token2] = ACTIONS(306), + [anon_sym_DQUOTE] = ACTIONS(308), + [anon_sym_POUND] = ACTIONS(135), }, - [99] = { - [sym__statement] = STATE(1181), + [95] = { + [sym__statement] = STATE(1130), [sym__statement_separated] = STATE(2), - [sym__control_statement] = STATE(1181), - [sym_if_statement] = STATE(1181), - [sym_while_statement] = STATE(1181), - [sym_do_while_statement] = STATE(1181), - [sym_for_statement] = STATE(1181), - [sym_for_in_statement] = STATE(1181), - [sym_delete_statement] = STATE(1181), - [sym_exit_statement] = STATE(1181), - [sym_return_statement] = STATE(1181), - [sym_switch_statement] = STATE(1181), - [sym__io_statement] = STATE(1181), - [sym__getline_exp] = STATE(1462), - [sym_getline_input] = STATE(1462), - [sym_getline_file] = STATE(1462), - [sym_print_statement] = STATE(1695), - [sym_printf_statement] = STATE(1695), - [sym_redirected_io_statement] = STATE(1181), - [sym_piped_io_statement] = STATE(1181), - [sym_block] = STATE(1182), - [sym__exp] = STATE(1462), - [sym_ternary_exp] = STATE(1354), - [sym_binary_exp] = STATE(1354), - [sym__binary_in] = STATE(1309), - [sym_unary_exp] = STATE(1354), - [sym_update_exp] = STATE(1462), - [sym_assignment_exp] = STATE(1462), - [sym_piped_io_exp] = STATE(1462), - [sym_string_concat] = STATE(1354), - [sym_field_ref] = STATE(619), - [sym_array_ref] = STATE(603), - [sym_regex] = STATE(1462), - [sym_regex_constant] = STATE(1462), - [sym_grouping] = STATE(1354), - [sym__primitive] = STATE(1354), - [sym_namespace] = STATE(2063), - [sym_ns_qualified_name] = STATE(592), - [sym_number] = STATE(1354), - [sym_string] = STATE(1354), - [sym_func_call] = STATE(1354), - [sym_indirect_func_call] = STATE(1462), - [sym_comment] = STATE(118), - [aux_sym_if_statement_repeat1] = STATE(118), + [sym__control_statement] = STATE(1130), + [sym_if_statement] = STATE(1130), + [sym_while_statement] = STATE(1130), + [sym_do_while_statement] = STATE(1130), + [sym_for_statement] = STATE(1130), + [sym_for_in_statement] = STATE(1130), + [sym_delete_statement] = STATE(1130), + [sym_exit_statement] = STATE(1130), + [sym_return_statement] = STATE(1130), + [sym_switch_statement] = STATE(1130), + [sym__io_statement] = STATE(1130), + [sym__getline_exp] = STATE(1446), + [sym_getline_input] = STATE(1446), + [sym_getline_file] = STATE(1446), + [sym_print_statement] = STATE(1696), + [sym_printf_statement] = STATE(1696), + [sym_redirected_io_statement] = STATE(1130), + [sym_piped_io_statement] = STATE(1130), + [sym_block] = STATE(1131), + [sym__exp] = STATE(1446), + [sym_ternary_exp] = STATE(1371), + [sym_binary_exp] = STATE(1371), + [sym__binary_in] = STATE(1305), + [sym_unary_exp] = STATE(1371), + [sym_update_exp] = STATE(1446), + [sym_assignment_exp] = STATE(1446), + [sym_piped_io_exp] = STATE(1446), + [sym_string_concat] = STATE(1371), + [sym_field_ref] = STATE(632), + [sym_array_ref] = STATE(601), + [sym_regex] = STATE(1446), + [sym_regex_constant] = STATE(1446), + [sym_grouping] = STATE(1371), + [sym__primitive] = STATE(1371), + [sym_namespace] = STATE(2068), + [sym_ns_qualified_name] = STATE(590), + [sym_number] = STATE(1371), + [sym_string] = STATE(1371), + [sym_func_call] = STATE(1371), + [sym_indirect_func_call] = STATE(1446), + [sym_comment] = STATE(136), + [aux_sym_if_statement_repeat1] = STATE(136), [sym_identifier] = ACTIONS(39), - [anon_sym_SEMI] = ACTIONS(358), + [anon_sym_SEMI] = ACTIONS(526), [anon_sym_if] = ACTIONS(43), - [anon_sym_LPAREN] = ACTIONS(552), + [anon_sym_LPAREN] = ACTIONS(312), [anon_sym_while] = ACTIONS(47), [anon_sym_do] = ACTIONS(49), [anon_sym_for] = ACTIONS(51), - [sym_break_statement] = ACTIONS(360), - [sym_continue_statement] = ACTIONS(360), + [sym_break_statement] = ACTIONS(528), + [sym_continue_statement] = ACTIONS(528), [anon_sym_delete] = ACTIONS(55), [anon_sym_exit] = ACTIONS(57), [anon_sym_return] = ACTIONS(59), [anon_sym_switch] = ACTIONS(61), [anon_sym_LBRACE] = ACTIONS(316), [anon_sym_getline] = ACTIONS(63), - [sym_next_statement] = ACTIONS(360), - [sym_nextfile_statement] = ACTIONS(360), + [sym_next_statement] = ACTIONS(528), + [sym_nextfile_statement] = ACTIONS(528), [anon_sym_print] = ACTIONS(65), [anon_sym_printf] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(554), + [anon_sym_SLASH] = ACTIONS(318), [anon_sym_PLUS] = ACTIONS(71), [anon_sym_DASH] = ACTIONS(71), - [anon_sym_BANG] = ACTIONS(556), - [anon_sym_PLUS_PLUS] = ACTIONS(558), - [anon_sym_DASH_DASH] = ACTIONS(558), - [anon_sym_DOLLAR] = ACTIONS(560), - [anon_sym_AT] = ACTIONS(562), + [anon_sym_BANG] = ACTIONS(320), + [anon_sym_PLUS_PLUS] = ACTIONS(322), + [anon_sym_DASH_DASH] = ACTIONS(322), + [anon_sym_DOLLAR] = ACTIONS(324), + [anon_sym_AT] = ACTIONS(326), [aux_sym_number_token1] = ACTIONS(79), - [aux_sym_number_token2] = ACTIONS(486), - [anon_sym_DQUOTE] = ACTIONS(488), - [anon_sym_POUND] = ACTIONS(171), + [aux_sym_number_token2] = ACTIONS(328), + [anon_sym_DQUOTE] = ACTIONS(330), + [anon_sym_POUND] = ACTIONS(135), + }, + [96] = { + [sym__statement] = STATE(1205), + [sym__statement_separated] = STATE(143), + [sym__control_statement] = STATE(1205), + [sym_if_statement] = STATE(1205), + [sym_while_statement] = STATE(1205), + [sym_do_while_statement] = STATE(1205), + [sym_for_statement] = STATE(1205), + [sym_for_in_statement] = STATE(1205), + [sym_delete_statement] = STATE(1205), + [sym_exit_statement] = STATE(1205), + [sym_return_statement] = STATE(1205), + [sym_switch_statement] = STATE(1205), + [sym__io_statement] = STATE(1205), + [sym__getline_exp] = STATE(1570), + [sym_getline_input] = STATE(1570), + [sym_getline_file] = STATE(1570), + [sym_print_statement] = STATE(1707), + [sym_printf_statement] = STATE(1707), + [sym_redirected_io_statement] = STATE(1205), + [sym_piped_io_statement] = STATE(1205), + [sym_block] = STATE(1204), + [sym__exp] = STATE(1570), + [sym_ternary_exp] = STATE(1476), + [sym_binary_exp] = STATE(1476), + [sym__binary_in] = STATE(1385), + [sym_unary_exp] = STATE(1476), + [sym_update_exp] = STATE(1570), + [sym_assignment_exp] = STATE(1570), + [sym_piped_io_exp] = STATE(1570), + [sym_string_concat] = STATE(1476), + [sym_field_ref] = STATE(1194), + [sym_array_ref] = STATE(991), + [sym_regex] = STATE(1570), + [sym_regex_constant] = STATE(1570), + [sym_grouping] = STATE(1476), + [sym__primitive] = STATE(1476), + [sym_namespace] = STATE(1956), + [sym_ns_qualified_name] = STATE(720), + [sym_number] = STATE(1476), + [sym_string] = STATE(1476), + [sym_func_call] = STATE(1476), + [sym_indirect_func_call] = STATE(1570), + [sym_comment] = STATE(89), + [aux_sym_if_statement_repeat1] = STATE(89), + [sym_identifier] = ACTIONS(270), + [anon_sym_SEMI] = ACTIONS(510), + [anon_sym_if] = ACTIONS(274), + [anon_sym_LPAREN] = ACTIONS(276), + [anon_sym_while] = ACTIONS(278), + [anon_sym_do] = ACTIONS(93), + [anon_sym_for] = ACTIONS(280), + [sym_break_statement] = ACTIONS(512), + [sym_continue_statement] = ACTIONS(512), + [anon_sym_delete] = ACTIONS(99), + [anon_sym_exit] = ACTIONS(284), + [anon_sym_return] = ACTIONS(286), + [anon_sym_switch] = ACTIONS(105), + [anon_sym_LBRACE] = ACTIONS(268), + [anon_sym_getline] = ACTIONS(288), + [sym_next_statement] = ACTIONS(512), + [sym_nextfile_statement] = ACTIONS(512), + [anon_sym_print] = ACTIONS(290), + [anon_sym_printf] = ACTIONS(292), + [anon_sym_SLASH] = ACTIONS(294), + [anon_sym_PLUS] = ACTIONS(296), + [anon_sym_DASH] = ACTIONS(296), + [anon_sym_BANG] = ACTIONS(298), + [anon_sym_PLUS_PLUS] = ACTIONS(300), + [anon_sym_DASH_DASH] = ACTIONS(300), + [anon_sym_DOLLAR] = ACTIONS(302), + [anon_sym_AT] = ACTIONS(304), + [aux_sym_number_token1] = ACTIONS(169), + [aux_sym_number_token2] = ACTIONS(306), + [anon_sym_DQUOTE] = ACTIONS(308), + [anon_sym_POUND] = ACTIONS(135), + }, + [97] = { + [sym__statement] = STATE(1195), + [sym__statement_separated] = STATE(143), + [sym__control_statement] = STATE(1195), + [sym_if_statement] = STATE(1195), + [sym_while_statement] = STATE(1195), + [sym_do_while_statement] = STATE(1195), + [sym_for_statement] = STATE(1195), + [sym_for_in_statement] = STATE(1195), + [sym_delete_statement] = STATE(1195), + [sym_exit_statement] = STATE(1195), + [sym_return_statement] = STATE(1195), + [sym_switch_statement] = STATE(1195), + [sym__io_statement] = STATE(1195), + [sym__getline_exp] = STATE(1570), + [sym_getline_input] = STATE(1570), + [sym_getline_file] = STATE(1570), + [sym_print_statement] = STATE(1707), + [sym_printf_statement] = STATE(1707), + [sym_redirected_io_statement] = STATE(1195), + [sym_piped_io_statement] = STATE(1195), + [sym_block] = STATE(1257), + [sym__exp] = STATE(1570), + [sym_ternary_exp] = STATE(1476), + [sym_binary_exp] = STATE(1476), + [sym__binary_in] = STATE(1385), + [sym_unary_exp] = STATE(1476), + [sym_update_exp] = STATE(1570), + [sym_assignment_exp] = STATE(1570), + [sym_piped_io_exp] = STATE(1570), + [sym_string_concat] = STATE(1476), + [sym_field_ref] = STATE(1194), + [sym_array_ref] = STATE(991), + [sym_regex] = STATE(1570), + [sym_regex_constant] = STATE(1570), + [sym_grouping] = STATE(1476), + [sym__primitive] = STATE(1476), + [sym_namespace] = STATE(1956), + [sym_ns_qualified_name] = STATE(720), + [sym_number] = STATE(1476), + [sym_string] = STATE(1476), + [sym_func_call] = STATE(1476), + [sym_indirect_func_call] = STATE(1570), + [sym_comment] = STATE(90), + [aux_sym_if_statement_repeat1] = STATE(90), + [sym_identifier] = ACTIONS(270), + [anon_sym_SEMI] = ACTIONS(264), + [anon_sym_if] = ACTIONS(274), + [anon_sym_LPAREN] = ACTIONS(276), + [anon_sym_while] = ACTIONS(278), + [anon_sym_do] = ACTIONS(93), + [anon_sym_for] = ACTIONS(280), + [sym_break_statement] = ACTIONS(266), + [sym_continue_statement] = ACTIONS(266), + [anon_sym_delete] = ACTIONS(99), + [anon_sym_exit] = ACTIONS(284), + [anon_sym_return] = ACTIONS(286), + [anon_sym_switch] = ACTIONS(105), + [anon_sym_LBRACE] = ACTIONS(268), + [anon_sym_getline] = ACTIONS(288), + [sym_next_statement] = ACTIONS(266), + [sym_nextfile_statement] = ACTIONS(266), + [anon_sym_print] = ACTIONS(290), + [anon_sym_printf] = ACTIONS(292), + [anon_sym_SLASH] = ACTIONS(294), + [anon_sym_PLUS] = ACTIONS(296), + [anon_sym_DASH] = ACTIONS(296), + [anon_sym_BANG] = ACTIONS(298), + [anon_sym_PLUS_PLUS] = ACTIONS(300), + [anon_sym_DASH_DASH] = ACTIONS(300), + [anon_sym_DOLLAR] = ACTIONS(302), + [anon_sym_AT] = ACTIONS(304), + [aux_sym_number_token1] = ACTIONS(169), + [aux_sym_number_token2] = ACTIONS(306), + [anon_sym_DQUOTE] = ACTIONS(308), + [anon_sym_POUND] = ACTIONS(135), + }, + [98] = { + [sym__statement] = STATE(1223), + [sym__statement_separated] = STATE(143), + [sym__control_statement] = STATE(1223), + [sym_if_statement] = STATE(1223), + [sym_while_statement] = STATE(1223), + [sym_do_while_statement] = STATE(1223), + [sym_for_statement] = STATE(1223), + [sym_for_in_statement] = STATE(1223), + [sym_delete_statement] = STATE(1223), + [sym_exit_statement] = STATE(1223), + [sym_return_statement] = STATE(1223), + [sym_switch_statement] = STATE(1223), + [sym__io_statement] = STATE(1223), + [sym__getline_exp] = STATE(1570), + [sym_getline_input] = STATE(1570), + [sym_getline_file] = STATE(1570), + [sym_print_statement] = STATE(1707), + [sym_printf_statement] = STATE(1707), + [sym_redirected_io_statement] = STATE(1223), + [sym_piped_io_statement] = STATE(1223), + [sym_block] = STATE(1224), + [sym__exp] = STATE(1570), + [sym_ternary_exp] = STATE(1476), + [sym_binary_exp] = STATE(1476), + [sym__binary_in] = STATE(1385), + [sym_unary_exp] = STATE(1476), + [sym_update_exp] = STATE(1570), + [sym_assignment_exp] = STATE(1570), + [sym_piped_io_exp] = STATE(1570), + [sym_string_concat] = STATE(1476), + [sym_field_ref] = STATE(1194), + [sym_array_ref] = STATE(991), + [sym_regex] = STATE(1570), + [sym_regex_constant] = STATE(1570), + [sym_grouping] = STATE(1476), + [sym__primitive] = STATE(1476), + [sym_namespace] = STATE(1956), + [sym_ns_qualified_name] = STATE(720), + [sym_number] = STATE(1476), + [sym_string] = STATE(1476), + [sym_func_call] = STATE(1476), + [sym_indirect_func_call] = STATE(1570), + [sym_comment] = STATE(93), + [aux_sym_if_statement_repeat1] = STATE(93), + [sym_identifier] = ACTIONS(270), + [anon_sym_SEMI] = ACTIONS(514), + [anon_sym_if] = ACTIONS(274), + [anon_sym_LPAREN] = ACTIONS(276), + [anon_sym_while] = ACTIONS(278), + [anon_sym_do] = ACTIONS(93), + [anon_sym_for] = ACTIONS(280), + [sym_break_statement] = ACTIONS(516), + [sym_continue_statement] = ACTIONS(516), + [anon_sym_delete] = ACTIONS(99), + [anon_sym_exit] = ACTIONS(284), + [anon_sym_return] = ACTIONS(286), + [anon_sym_switch] = ACTIONS(105), + [anon_sym_LBRACE] = ACTIONS(268), + [anon_sym_getline] = ACTIONS(288), + [sym_next_statement] = ACTIONS(516), + [sym_nextfile_statement] = ACTIONS(516), + [anon_sym_print] = ACTIONS(290), + [anon_sym_printf] = ACTIONS(292), + [anon_sym_SLASH] = ACTIONS(294), + [anon_sym_PLUS] = ACTIONS(296), + [anon_sym_DASH] = ACTIONS(296), + [anon_sym_BANG] = ACTIONS(298), + [anon_sym_PLUS_PLUS] = ACTIONS(300), + [anon_sym_DASH_DASH] = ACTIONS(300), + [anon_sym_DOLLAR] = ACTIONS(302), + [anon_sym_AT] = ACTIONS(304), + [aux_sym_number_token1] = ACTIONS(169), + [aux_sym_number_token2] = ACTIONS(306), + [anon_sym_DQUOTE] = ACTIONS(308), + [anon_sym_POUND] = ACTIONS(135), + }, + [99] = { + [sym__statement] = STATE(1233), + [sym__statement_separated] = STATE(143), + [sym__control_statement] = STATE(1233), + [sym_if_statement] = STATE(1233), + [sym_while_statement] = STATE(1233), + [sym_do_while_statement] = STATE(1233), + [sym_for_statement] = STATE(1233), + [sym_for_in_statement] = STATE(1233), + [sym_delete_statement] = STATE(1233), + [sym_exit_statement] = STATE(1233), + [sym_return_statement] = STATE(1233), + [sym_switch_statement] = STATE(1233), + [sym__io_statement] = STATE(1233), + [sym__getline_exp] = STATE(1570), + [sym_getline_input] = STATE(1570), + [sym_getline_file] = STATE(1570), + [sym_print_statement] = STATE(1707), + [sym_printf_statement] = STATE(1707), + [sym_redirected_io_statement] = STATE(1233), + [sym_piped_io_statement] = STATE(1233), + [sym_block] = STATE(1250), + [sym__exp] = STATE(1570), + [sym_ternary_exp] = STATE(1476), + [sym_binary_exp] = STATE(1476), + [sym__binary_in] = STATE(1385), + [sym_unary_exp] = STATE(1476), + [sym_update_exp] = STATE(1570), + [sym_assignment_exp] = STATE(1570), + [sym_piped_io_exp] = STATE(1570), + [sym_string_concat] = STATE(1476), + [sym_field_ref] = STATE(1194), + [sym_array_ref] = STATE(991), + [sym_regex] = STATE(1570), + [sym_regex_constant] = STATE(1570), + [sym_grouping] = STATE(1476), + [sym__primitive] = STATE(1476), + [sym_namespace] = STATE(1956), + [sym_ns_qualified_name] = STATE(720), + [sym_number] = STATE(1476), + [sym_string] = STATE(1476), + [sym_func_call] = STATE(1476), + [sym_indirect_func_call] = STATE(1570), + [sym_comment] = STATE(94), + [aux_sym_if_statement_repeat1] = STATE(94), + [sym_identifier] = ACTIONS(270), + [anon_sym_SEMI] = ACTIONS(518), + [anon_sym_if] = ACTIONS(274), + [anon_sym_LPAREN] = ACTIONS(276), + [anon_sym_while] = ACTIONS(278), + [anon_sym_do] = ACTIONS(93), + [anon_sym_for] = ACTIONS(280), + [sym_break_statement] = ACTIONS(520), + [sym_continue_statement] = ACTIONS(520), + [anon_sym_delete] = ACTIONS(99), + [anon_sym_exit] = ACTIONS(284), + [anon_sym_return] = ACTIONS(286), + [anon_sym_switch] = ACTIONS(105), + [anon_sym_LBRACE] = ACTIONS(268), + [anon_sym_getline] = ACTIONS(288), + [sym_next_statement] = ACTIONS(520), + [sym_nextfile_statement] = ACTIONS(520), + [anon_sym_print] = ACTIONS(290), + [anon_sym_printf] = ACTIONS(292), + [anon_sym_SLASH] = ACTIONS(294), + [anon_sym_PLUS] = ACTIONS(296), + [anon_sym_DASH] = ACTIONS(296), + [anon_sym_BANG] = ACTIONS(298), + [anon_sym_PLUS_PLUS] = ACTIONS(300), + [anon_sym_DASH_DASH] = ACTIONS(300), + [anon_sym_DOLLAR] = ACTIONS(302), + [anon_sym_AT] = ACTIONS(304), + [aux_sym_number_token1] = ACTIONS(169), + [aux_sym_number_token2] = ACTIONS(306), + [anon_sym_DQUOTE] = ACTIONS(308), + [anon_sym_POUND] = ACTIONS(135), }, [100] = { - [sym__statement] = STATE(1212), - [sym__statement_separated] = STATE(1212), - [sym__control_statement] = STATE(1212), - [sym_if_statement] = STATE(1212), - [sym_while_statement] = STATE(1212), - [sym_do_while_statement] = STATE(1212), - [sym_for_statement] = STATE(1212), - [sym_for_in_statement] = STATE(1212), - [sym_delete_statement] = STATE(1212), - [sym_exit_statement] = STATE(1212), - [sym_return_statement] = STATE(1212), - [sym_switch_statement] = STATE(1212), - [sym__io_statement] = STATE(1212), - [sym__getline_exp] = STATE(503), - [sym_getline_input] = STATE(503), - [sym_getline_file] = STATE(503), - [sym_print_statement] = STATE(890), - [sym_printf_statement] = STATE(890), - [sym_redirected_io_statement] = STATE(1212), - [sym_piped_io_statement] = STATE(1212), - [sym_block] = STATE(1247), - [sym__exp] = STATE(503), - [sym_ternary_exp] = STATE(447), - [sym_binary_exp] = STATE(447), - [sym__binary_in] = STATE(446), - [sym_unary_exp] = STATE(447), - [sym_update_exp] = STATE(503), - [sym_assignment_exp] = STATE(503), - [sym_piped_io_exp] = STATE(503), - [sym_string_concat] = STATE(447), - [sym_field_ref] = STATE(272), - [sym_array_ref] = STATE(253), - [sym_regex] = STATE(503), - [sym_regex_constant] = STATE(503), - [sym_grouping] = STATE(447), - [sym__primitive] = STATE(447), - [sym_namespace] = STATE(1955), - [sym_ns_qualified_name] = STATE(221), - [sym_number] = STATE(447), - [sym_string] = STATE(447), - [sym_func_call] = STATE(447), - [sym_indirect_func_call] = STATE(503), - [sym_comment] = STATE(13), - [aux_sym_if_statement_repeat1] = STATE(13), - [sym_identifier] = ACTIONS(127), - [anon_sym_SEMI] = ACTIONS(524), - [anon_sym_if] = ACTIONS(129), - [anon_sym_LPAREN] = ACTIONS(131), - [anon_sym_while] = ACTIONS(133), + [sym__statement] = STATE(1255), + [sym__statement_separated] = STATE(143), + [sym__control_statement] = STATE(1255), + [sym_if_statement] = STATE(1255), + [sym_while_statement] = STATE(1255), + [sym_do_while_statement] = STATE(1255), + [sym_for_statement] = STATE(1255), + [sym_for_in_statement] = STATE(1255), + [sym_delete_statement] = STATE(1255), + [sym_exit_statement] = STATE(1255), + [sym_return_statement] = STATE(1255), + [sym_switch_statement] = STATE(1255), + [sym__io_statement] = STATE(1255), + [sym__getline_exp] = STATE(1570), + [sym_getline_input] = STATE(1570), + [sym_getline_file] = STATE(1570), + [sym_print_statement] = STATE(1707), + [sym_printf_statement] = STATE(1707), + [sym_redirected_io_statement] = STATE(1255), + [sym_piped_io_statement] = STATE(1255), + [sym_block] = STATE(1259), + [sym__exp] = STATE(1570), + [sym_ternary_exp] = STATE(1476), + [sym_binary_exp] = STATE(1476), + [sym__binary_in] = STATE(1385), + [sym_unary_exp] = STATE(1476), + [sym_update_exp] = STATE(1570), + [sym_assignment_exp] = STATE(1570), + [sym_piped_io_exp] = STATE(1570), + [sym_string_concat] = STATE(1476), + [sym_field_ref] = STATE(1194), + [sym_array_ref] = STATE(991), + [sym_regex] = STATE(1570), + [sym_regex_constant] = STATE(1570), + [sym_grouping] = STATE(1476), + [sym__primitive] = STATE(1476), + [sym_namespace] = STATE(1956), + [sym_ns_qualified_name] = STATE(720), + [sym_number] = STATE(1476), + [sym_string] = STATE(1476), + [sym_func_call] = STATE(1476), + [sym_indirect_func_call] = STATE(1570), + [sym_comment] = STATE(1252), + [aux_sym_if_statement_repeat1] = STATE(1252), + [sym_identifier] = ACTIONS(270), + [anon_sym_SEMI] = ACTIONS(506), + [anon_sym_if] = ACTIONS(274), + [anon_sym_LPAREN] = ACTIONS(276), + [anon_sym_while] = ACTIONS(278), [anon_sym_do] = ACTIONS(93), - [anon_sym_for] = ACTIONS(135), - [sym_break_statement] = ACTIONS(526), - [sym_continue_statement] = ACTIONS(526), + [anon_sym_for] = ACTIONS(280), + [sym_break_statement] = ACTIONS(508), + [sym_continue_statement] = ACTIONS(508), [anon_sym_delete] = ACTIONS(99), - [anon_sym_exit] = ACTIONS(139), - [anon_sym_return] = ACTIONS(141), + [anon_sym_exit] = ACTIONS(284), + [anon_sym_return] = ACTIONS(286), [anon_sym_switch] = ACTIONS(105), [anon_sym_LBRACE] = ACTIONS(268), - [anon_sym_getline] = ACTIONS(147), - [sym_next_statement] = ACTIONS(526), - [sym_nextfile_statement] = ACTIONS(526), - [anon_sym_print] = ACTIONS(149), - [anon_sym_printf] = ACTIONS(151), - [anon_sym_SLASH] = ACTIONS(153), - [anon_sym_PLUS] = ACTIONS(155), - [anon_sym_DASH] = ACTIONS(155), - [anon_sym_BANG] = ACTIONS(157), - [anon_sym_PLUS_PLUS] = ACTIONS(159), - [anon_sym_DASH_DASH] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(161), - [anon_sym_AT] = ACTIONS(163), - [aux_sym_number_token1] = ACTIONS(165), - [aux_sym_number_token2] = ACTIONS(167), - [anon_sym_DQUOTE] = ACTIONS(169), - [anon_sym_POUND] = ACTIONS(171), + [anon_sym_getline] = ACTIONS(288), + [sym_next_statement] = ACTIONS(508), + [sym_nextfile_statement] = ACTIONS(508), + [anon_sym_print] = ACTIONS(290), + [anon_sym_printf] = ACTIONS(292), + [anon_sym_SLASH] = ACTIONS(294), + [anon_sym_PLUS] = ACTIONS(296), + [anon_sym_DASH] = ACTIONS(296), + [anon_sym_BANG] = ACTIONS(298), + [anon_sym_PLUS_PLUS] = ACTIONS(300), + [anon_sym_DASH_DASH] = ACTIONS(300), + [anon_sym_DOLLAR] = ACTIONS(302), + [anon_sym_AT] = ACTIONS(304), + [aux_sym_number_token1] = ACTIONS(169), + [aux_sym_number_token2] = ACTIONS(306), + [anon_sym_DQUOTE] = ACTIONS(308), + [anon_sym_POUND] = ACTIONS(135), }, [101] = { - [sym__statement] = STATE(1193), - [sym__statement_separated] = STATE(1193), - [sym__control_statement] = STATE(1193), - [sym_if_statement] = STATE(1193), - [sym_while_statement] = STATE(1193), - [sym_do_while_statement] = STATE(1193), - [sym_for_statement] = STATE(1193), - [sym_for_in_statement] = STATE(1193), - [sym_delete_statement] = STATE(1193), - [sym_exit_statement] = STATE(1193), - [sym_return_statement] = STATE(1193), - [sym_switch_statement] = STATE(1193), - [sym__io_statement] = STATE(1193), - [sym__getline_exp] = STATE(482), - [sym_getline_input] = STATE(482), - [sym_getline_file] = STATE(482), - [sym_print_statement] = STATE(740), - [sym_printf_statement] = STATE(740), - [sym_redirected_io_statement] = STATE(1193), - [sym_piped_io_statement] = STATE(1193), - [sym_block] = STATE(1190), - [sym__exp] = STATE(482), - [sym_ternary_exp] = STATE(375), - [sym_binary_exp] = STATE(375), - [sym__binary_in] = STATE(369), - [sym_unary_exp] = STATE(375), - [sym_update_exp] = STATE(482), - [sym_assignment_exp] = STATE(482), - [sym_piped_io_exp] = STATE(482), - [sym_string_concat] = STATE(375), - [sym_field_ref] = STATE(256), - [sym_array_ref] = STATE(240), - [sym_regex] = STATE(482), - [sym_regex_constant] = STATE(482), - [sym_grouping] = STATE(375), - [sym__primitive] = STATE(375), - [sym_namespace] = STATE(2063), - [sym_ns_qualified_name] = STATE(196), - [sym_number] = STATE(375), - [sym_string] = STATE(375), - [sym_func_call] = STATE(375), - [sym_indirect_func_call] = STATE(482), - [sym_comment] = STATE(1238), - [aux_sym_if_statement_repeat1] = STATE(1238), - [sym_identifier] = ACTIONS(298), - [anon_sym_SEMI] = ACTIONS(582), - [anon_sym_if] = ACTIONS(302), - [anon_sym_LPAREN] = ACTIONS(304), - [anon_sym_while] = ACTIONS(306), - [anon_sym_do] = ACTIONS(49), - [anon_sym_for] = ACTIONS(308), - [sym_break_statement] = ACTIONS(584), - [sym_continue_statement] = ACTIONS(584), - [anon_sym_delete] = ACTIONS(55), - [anon_sym_exit] = ACTIONS(312), - [anon_sym_return] = ACTIONS(314), - [anon_sym_switch] = ACTIONS(61), - [anon_sym_LBRACE] = ACTIONS(316), - [anon_sym_getline] = ACTIONS(318), - [sym_next_statement] = ACTIONS(584), - [sym_nextfile_statement] = ACTIONS(584), - [anon_sym_print] = ACTIONS(320), - [anon_sym_printf] = ACTIONS(322), - [anon_sym_SLASH] = ACTIONS(324), - [anon_sym_PLUS] = ACTIONS(326), - [anon_sym_DASH] = ACTIONS(326), - [anon_sym_BANG] = ACTIONS(328), - [anon_sym_PLUS_PLUS] = ACTIONS(330), - [anon_sym_DASH_DASH] = ACTIONS(330), - [anon_sym_DOLLAR] = ACTIONS(332), - [anon_sym_AT] = ACTIONS(334), - [aux_sym_number_token1] = ACTIONS(336), - [aux_sym_number_token2] = ACTIONS(338), - [anon_sym_DQUOTE] = ACTIONS(340), - [anon_sym_POUND] = ACTIONS(171), - }, - [102] = { - [sym__statement] = STATE(1197), - [sym__statement_separated] = STATE(1197), - [sym__control_statement] = STATE(1197), - [sym_if_statement] = STATE(1197), - [sym_while_statement] = STATE(1197), - [sym_do_while_statement] = STATE(1197), - [sym_for_statement] = STATE(1197), - [sym_for_in_statement] = STATE(1197), - [sym_delete_statement] = STATE(1197), - [sym_exit_statement] = STATE(1197), - [sym_return_statement] = STATE(1197), - [sym_switch_statement] = STATE(1197), - [sym__io_statement] = STATE(1197), + [sym__statement] = STATE(1256), + [sym__statement_separated] = STATE(1256), + [sym__control_statement] = STATE(1256), + [sym_if_statement] = STATE(1256), + [sym_while_statement] = STATE(1256), + [sym_do_while_statement] = STATE(1256), + [sym_for_statement] = STATE(1256), + [sym_for_in_statement] = STATE(1256), + [sym_delete_statement] = STATE(1256), + [sym_exit_statement] = STATE(1256), + [sym_return_statement] = STATE(1256), + [sym_switch_statement] = STATE(1256), + [sym__io_statement] = STATE(1256), [sym__getline_exp] = STATE(503), [sym_getline_input] = STATE(503), [sym_getline_file] = STATE(503), - [sym_print_statement] = STATE(890), - [sym_printf_statement] = STATE(890), - [sym_redirected_io_statement] = STATE(1197), - [sym_piped_io_statement] = STATE(1197), - [sym_block] = STATE(1198), + [sym_print_statement] = STATE(869), + [sym_printf_statement] = STATE(869), + [sym_redirected_io_statement] = STATE(1256), + [sym_piped_io_statement] = STATE(1256), + [sym_block] = STATE(1263), [sym__exp] = STATE(503), - [sym_ternary_exp] = STATE(447), - [sym_binary_exp] = STATE(447), - [sym__binary_in] = STATE(446), - [sym_unary_exp] = STATE(447), + [sym_ternary_exp] = STATE(427), + [sym_binary_exp] = STATE(427), + [sym__binary_in] = STATE(426), + [sym_unary_exp] = STATE(427), [sym_update_exp] = STATE(503), [sym_assignment_exp] = STATE(503), [sym_piped_io_exp] = STATE(503), - [sym_string_concat] = STATE(447), - [sym_field_ref] = STATE(272), - [sym_array_ref] = STATE(253), + [sym_string_concat] = STATE(427), + [sym_field_ref] = STATE(274), + [sym_array_ref] = STATE(268), [sym_regex] = STATE(503), [sym_regex_constant] = STATE(503), - [sym_grouping] = STATE(447), - [sym__primitive] = STATE(447), - [sym_namespace] = STATE(1955), - [sym_ns_qualified_name] = STATE(221), - [sym_number] = STATE(447), - [sym_string] = STATE(447), - [sym_func_call] = STATE(447), + [sym_grouping] = STATE(427), + [sym__primitive] = STATE(427), + [sym_namespace] = STATE(1956), + [sym_ns_qualified_name] = STATE(244), + [sym_number] = STATE(427), + [sym_string] = STATE(427), + [sym_func_call] = STATE(427), [sym_indirect_func_call] = STATE(503), - [sym_comment] = STATE(73), - [aux_sym_if_statement_repeat1] = STATE(73), - [sym_identifier] = ACTIONS(127), - [anon_sym_SEMI] = ACTIONS(548), - [anon_sym_if] = ACTIONS(129), - [anon_sym_LPAREN] = ACTIONS(131), - [anon_sym_while] = ACTIONS(133), + [sym_comment] = STATE(1252), + [aux_sym_if_statement_repeat1] = STATE(1252), + [sym_identifier] = ACTIONS(85), + [anon_sym_SEMI] = ACTIONS(502), + [anon_sym_if] = ACTIONS(87), + [anon_sym_LPAREN] = ACTIONS(89), + [anon_sym_while] = ACTIONS(91), + [anon_sym_do] = ACTIONS(93), + [anon_sym_for] = ACTIONS(95), + [sym_break_statement] = ACTIONS(504), + [sym_continue_statement] = ACTIONS(504), + [anon_sym_delete] = ACTIONS(99), + [anon_sym_exit] = ACTIONS(101), + [anon_sym_return] = ACTIONS(103), + [anon_sym_switch] = ACTIONS(105), + [anon_sym_LBRACE] = ACTIONS(268), + [anon_sym_getline] = ACTIONS(111), + [sym_next_statement] = ACTIONS(504), + [sym_nextfile_statement] = ACTIONS(504), + [anon_sym_print] = ACTIONS(113), + [anon_sym_printf] = ACTIONS(115), + [anon_sym_SLASH] = ACTIONS(117), + [anon_sym_PLUS] = ACTIONS(119), + [anon_sym_DASH] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(121), + [anon_sym_PLUS_PLUS] = ACTIONS(123), + [anon_sym_DASH_DASH] = ACTIONS(123), + [anon_sym_DOLLAR] = ACTIONS(125), + [anon_sym_AT] = ACTIONS(127), + [aux_sym_number_token1] = ACTIONS(129), + [aux_sym_number_token2] = ACTIONS(131), + [anon_sym_DQUOTE] = ACTIONS(133), + [anon_sym_POUND] = ACTIONS(135), + }, + [102] = { + [sym__statement] = STATE(1222), + [sym__statement_separated] = STATE(143), + [sym__control_statement] = STATE(1222), + [sym_if_statement] = STATE(1222), + [sym_while_statement] = STATE(1222), + [sym_do_while_statement] = STATE(1222), + [sym_for_statement] = STATE(1222), + [sym_for_in_statement] = STATE(1222), + [sym_delete_statement] = STATE(1222), + [sym_exit_statement] = STATE(1222), + [sym_return_statement] = STATE(1222), + [sym_switch_statement] = STATE(1222), + [sym__io_statement] = STATE(1222), + [sym__getline_exp] = STATE(1570), + [sym_getline_input] = STATE(1570), + [sym_getline_file] = STATE(1570), + [sym_print_statement] = STATE(1707), + [sym_printf_statement] = STATE(1707), + [sym_redirected_io_statement] = STATE(1222), + [sym_piped_io_statement] = STATE(1222), + [sym_block] = STATE(1218), + [sym__exp] = STATE(1570), + [sym_ternary_exp] = STATE(1476), + [sym_binary_exp] = STATE(1476), + [sym__binary_in] = STATE(1385), + [sym_unary_exp] = STATE(1476), + [sym_update_exp] = STATE(1570), + [sym_assignment_exp] = STATE(1570), + [sym_piped_io_exp] = STATE(1570), + [sym_string_concat] = STATE(1476), + [sym_field_ref] = STATE(1194), + [sym_array_ref] = STATE(991), + [sym_regex] = STATE(1570), + [sym_regex_constant] = STATE(1570), + [sym_grouping] = STATE(1476), + [sym__primitive] = STATE(1476), + [sym_namespace] = STATE(1956), + [sym_ns_qualified_name] = STATE(720), + [sym_number] = STATE(1476), + [sym_string] = STATE(1476), + [sym_func_call] = STATE(1476), + [sym_indirect_func_call] = STATE(1570), + [sym_comment] = STATE(100), + [aux_sym_if_statement_repeat1] = STATE(100), + [sym_identifier] = ACTIONS(270), + [anon_sym_SEMI] = ACTIONS(484), + [anon_sym_if] = ACTIONS(274), + [anon_sym_LPAREN] = ACTIONS(276), + [anon_sym_while] = ACTIONS(278), [anon_sym_do] = ACTIONS(93), - [anon_sym_for] = ACTIONS(135), - [sym_break_statement] = ACTIONS(550), - [sym_continue_statement] = ACTIONS(550), + [anon_sym_for] = ACTIONS(280), + [sym_break_statement] = ACTIONS(486), + [sym_continue_statement] = ACTIONS(486), [anon_sym_delete] = ACTIONS(99), - [anon_sym_exit] = ACTIONS(139), - [anon_sym_return] = ACTIONS(141), + [anon_sym_exit] = ACTIONS(284), + [anon_sym_return] = ACTIONS(286), [anon_sym_switch] = ACTIONS(105), [anon_sym_LBRACE] = ACTIONS(268), - [anon_sym_getline] = ACTIONS(147), - [sym_next_statement] = ACTIONS(550), - [sym_nextfile_statement] = ACTIONS(550), - [anon_sym_print] = ACTIONS(149), - [anon_sym_printf] = ACTIONS(151), - [anon_sym_SLASH] = ACTIONS(153), - [anon_sym_PLUS] = ACTIONS(155), - [anon_sym_DASH] = ACTIONS(155), - [anon_sym_BANG] = ACTIONS(157), - [anon_sym_PLUS_PLUS] = ACTIONS(159), - [anon_sym_DASH_DASH] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(161), - [anon_sym_AT] = ACTIONS(163), - [aux_sym_number_token1] = ACTIONS(165), - [aux_sym_number_token2] = ACTIONS(167), - [anon_sym_DQUOTE] = ACTIONS(169), - [anon_sym_POUND] = ACTIONS(171), + [anon_sym_getline] = ACTIONS(288), + [sym_next_statement] = ACTIONS(486), + [sym_nextfile_statement] = ACTIONS(486), + [anon_sym_print] = ACTIONS(290), + [anon_sym_printf] = ACTIONS(292), + [anon_sym_SLASH] = ACTIONS(294), + [anon_sym_PLUS] = ACTIONS(296), + [anon_sym_DASH] = ACTIONS(296), + [anon_sym_BANG] = ACTIONS(298), + [anon_sym_PLUS_PLUS] = ACTIONS(300), + [anon_sym_DASH_DASH] = ACTIONS(300), + [anon_sym_DOLLAR] = ACTIONS(302), + [anon_sym_AT] = ACTIONS(304), + [aux_sym_number_token1] = ACTIONS(169), + [aux_sym_number_token2] = ACTIONS(306), + [anon_sym_DQUOTE] = ACTIONS(308), + [anon_sym_POUND] = ACTIONS(135), }, [103] = { - [sym__statement] = STATE(1199), - [sym__statement_separated] = STATE(1199), - [sym__control_statement] = STATE(1199), - [sym_if_statement] = STATE(1199), - [sym_while_statement] = STATE(1199), - [sym_do_while_statement] = STATE(1199), - [sym_for_statement] = STATE(1199), - [sym_for_in_statement] = STATE(1199), - [sym_delete_statement] = STATE(1199), - [sym_exit_statement] = STATE(1199), - [sym_return_statement] = STATE(1199), - [sym_switch_statement] = STATE(1199), - [sym__io_statement] = STATE(1199), + [sym__statement] = STATE(1215), + [sym__statement_separated] = STATE(143), + [sym__control_statement] = STATE(1215), + [sym_if_statement] = STATE(1215), + [sym_while_statement] = STATE(1215), + [sym_do_while_statement] = STATE(1215), + [sym_for_statement] = STATE(1215), + [sym_for_in_statement] = STATE(1215), + [sym_delete_statement] = STATE(1215), + [sym_exit_statement] = STATE(1215), + [sym_return_statement] = STATE(1215), + [sym_switch_statement] = STATE(1215), + [sym__io_statement] = STATE(1215), + [sym__getline_exp] = STATE(1570), + [sym_getline_input] = STATE(1570), + [sym_getline_file] = STATE(1570), + [sym_print_statement] = STATE(1707), + [sym_printf_statement] = STATE(1707), + [sym_redirected_io_statement] = STATE(1215), + [sym_piped_io_statement] = STATE(1215), + [sym_block] = STATE(1214), + [sym__exp] = STATE(1570), + [sym_ternary_exp] = STATE(1476), + [sym_binary_exp] = STATE(1476), + [sym__binary_in] = STATE(1385), + [sym_unary_exp] = STATE(1476), + [sym_update_exp] = STATE(1570), + [sym_assignment_exp] = STATE(1570), + [sym_piped_io_exp] = STATE(1570), + [sym_string_concat] = STATE(1476), + [sym_field_ref] = STATE(1194), + [sym_array_ref] = STATE(991), + [sym_regex] = STATE(1570), + [sym_regex_constant] = STATE(1570), + [sym_grouping] = STATE(1476), + [sym__primitive] = STATE(1476), + [sym_namespace] = STATE(1956), + [sym_ns_qualified_name] = STATE(720), + [sym_number] = STATE(1476), + [sym_string] = STATE(1476), + [sym_func_call] = STATE(1476), + [sym_indirect_func_call] = STATE(1570), + [sym_comment] = STATE(1252), + [aux_sym_if_statement_repeat1] = STATE(1252), + [sym_identifier] = ACTIONS(270), + [anon_sym_SEMI] = ACTIONS(472), + [anon_sym_if] = ACTIONS(274), + [anon_sym_LPAREN] = ACTIONS(276), + [anon_sym_while] = ACTIONS(278), + [anon_sym_do] = ACTIONS(93), + [anon_sym_for] = ACTIONS(280), + [sym_break_statement] = ACTIONS(474), + [sym_continue_statement] = ACTIONS(474), + [anon_sym_delete] = ACTIONS(99), + [anon_sym_exit] = ACTIONS(284), + [anon_sym_return] = ACTIONS(286), + [anon_sym_switch] = ACTIONS(105), + [anon_sym_LBRACE] = ACTIONS(268), + [anon_sym_getline] = ACTIONS(288), + [sym_next_statement] = ACTIONS(474), + [sym_nextfile_statement] = ACTIONS(474), + [anon_sym_print] = ACTIONS(290), + [anon_sym_printf] = ACTIONS(292), + [anon_sym_SLASH] = ACTIONS(294), + [anon_sym_PLUS] = ACTIONS(296), + [anon_sym_DASH] = ACTIONS(296), + [anon_sym_BANG] = ACTIONS(298), + [anon_sym_PLUS_PLUS] = ACTIONS(300), + [anon_sym_DASH_DASH] = ACTIONS(300), + [anon_sym_DOLLAR] = ACTIONS(302), + [anon_sym_AT] = ACTIONS(304), + [aux_sym_number_token1] = ACTIONS(169), + [aux_sym_number_token2] = ACTIONS(306), + [anon_sym_DQUOTE] = ACTIONS(308), + [anon_sym_POUND] = ACTIONS(135), + }, + [104] = { + [sym__statement] = STATE(1231), + [sym__statement_separated] = STATE(143), + [sym__control_statement] = STATE(1231), + [sym_if_statement] = STATE(1231), + [sym_while_statement] = STATE(1231), + [sym_do_while_statement] = STATE(1231), + [sym_for_statement] = STATE(1231), + [sym_for_in_statement] = STATE(1231), + [sym_delete_statement] = STATE(1231), + [sym_exit_statement] = STATE(1231), + [sym_return_statement] = STATE(1231), + [sym_switch_statement] = STATE(1231), + [sym__io_statement] = STATE(1231), + [sym__getline_exp] = STATE(1570), + [sym_getline_input] = STATE(1570), + [sym_getline_file] = STATE(1570), + [sym_print_statement] = STATE(1707), + [sym_printf_statement] = STATE(1707), + [sym_redirected_io_statement] = STATE(1231), + [sym_piped_io_statement] = STATE(1231), + [sym_block] = STATE(1198), + [sym__exp] = STATE(1570), + [sym_ternary_exp] = STATE(1476), + [sym_binary_exp] = STATE(1476), + [sym__binary_in] = STATE(1385), + [sym_unary_exp] = STATE(1476), + [sym_update_exp] = STATE(1570), + [sym_assignment_exp] = STATE(1570), + [sym_piped_io_exp] = STATE(1570), + [sym_string_concat] = STATE(1476), + [sym_field_ref] = STATE(1194), + [sym_array_ref] = STATE(991), + [sym_regex] = STATE(1570), + [sym_regex_constant] = STATE(1570), + [sym_grouping] = STATE(1476), + [sym__primitive] = STATE(1476), + [sym_namespace] = STATE(1956), + [sym_ns_qualified_name] = STATE(720), + [sym_number] = STATE(1476), + [sym_string] = STATE(1476), + [sym_func_call] = STATE(1476), + [sym_indirect_func_call] = STATE(1570), + [sym_comment] = STATE(103), + [aux_sym_if_statement_repeat1] = STATE(103), + [sym_identifier] = ACTIONS(270), + [anon_sym_SEMI] = ACTIONS(448), + [anon_sym_if] = ACTIONS(274), + [anon_sym_LPAREN] = ACTIONS(276), + [anon_sym_while] = ACTIONS(278), + [anon_sym_do] = ACTIONS(93), + [anon_sym_for] = ACTIONS(280), + [sym_break_statement] = ACTIONS(450), + [sym_continue_statement] = ACTIONS(450), + [anon_sym_delete] = ACTIONS(99), + [anon_sym_exit] = ACTIONS(284), + [anon_sym_return] = ACTIONS(286), + [anon_sym_switch] = ACTIONS(105), + [anon_sym_LBRACE] = ACTIONS(268), + [anon_sym_getline] = ACTIONS(288), + [sym_next_statement] = ACTIONS(450), + [sym_nextfile_statement] = ACTIONS(450), + [anon_sym_print] = ACTIONS(290), + [anon_sym_printf] = ACTIONS(292), + [anon_sym_SLASH] = ACTIONS(294), + [anon_sym_PLUS] = ACTIONS(296), + [anon_sym_DASH] = ACTIONS(296), + [anon_sym_BANG] = ACTIONS(298), + [anon_sym_PLUS_PLUS] = ACTIONS(300), + [anon_sym_DASH_DASH] = ACTIONS(300), + [anon_sym_DOLLAR] = ACTIONS(302), + [anon_sym_AT] = ACTIONS(304), + [aux_sym_number_token1] = ACTIONS(169), + [aux_sym_number_token2] = ACTIONS(306), + [anon_sym_DQUOTE] = ACTIONS(308), + [anon_sym_POUND] = ACTIONS(135), + }, + [105] = { + [sym__statement] = STATE(1232), + [sym__statement_separated] = STATE(1232), + [sym__control_statement] = STATE(1232), + [sym_if_statement] = STATE(1232), + [sym_while_statement] = STATE(1232), + [sym_do_while_statement] = STATE(1232), + [sym_for_statement] = STATE(1232), + [sym_for_in_statement] = STATE(1232), + [sym_delete_statement] = STATE(1232), + [sym_exit_statement] = STATE(1232), + [sym_return_statement] = STATE(1232), + [sym_switch_statement] = STATE(1232), + [sym__io_statement] = STATE(1232), [sym__getline_exp] = STATE(503), [sym_getline_input] = STATE(503), [sym_getline_file] = STATE(503), - [sym_print_statement] = STATE(890), - [sym_printf_statement] = STATE(890), - [sym_redirected_io_statement] = STATE(1199), - [sym_piped_io_statement] = STATE(1199), - [sym_block] = STATE(1200), + [sym_print_statement] = STATE(869), + [sym_printf_statement] = STATE(869), + [sym_redirected_io_statement] = STATE(1232), + [sym_piped_io_statement] = STATE(1232), + [sym_block] = STATE(1229), [sym__exp] = STATE(503), - [sym_ternary_exp] = STATE(447), - [sym_binary_exp] = STATE(447), - [sym__binary_in] = STATE(446), - [sym_unary_exp] = STATE(447), + [sym_ternary_exp] = STATE(427), + [sym_binary_exp] = STATE(427), + [sym__binary_in] = STATE(426), + [sym_unary_exp] = STATE(427), [sym_update_exp] = STATE(503), [sym_assignment_exp] = STATE(503), [sym_piped_io_exp] = STATE(503), - [sym_string_concat] = STATE(447), - [sym_field_ref] = STATE(272), - [sym_array_ref] = STATE(253), + [sym_string_concat] = STATE(427), + [sym_field_ref] = STATE(274), + [sym_array_ref] = STATE(268), [sym_regex] = STATE(503), [sym_regex_constant] = STATE(503), - [sym_grouping] = STATE(447), - [sym__primitive] = STATE(447), - [sym_namespace] = STATE(1955), - [sym_ns_qualified_name] = STATE(221), - [sym_number] = STATE(447), - [sym_string] = STATE(447), - [sym_func_call] = STATE(447), + [sym_grouping] = STATE(427), + [sym__primitive] = STATE(427), + [sym_namespace] = STATE(1956), + [sym_ns_qualified_name] = STATE(244), + [sym_number] = STATE(427), + [sym_string] = STATE(427), + [sym_func_call] = STATE(427), [sym_indirect_func_call] = STATE(503), - [sym_comment] = STATE(1238), - [aux_sym_if_statement_repeat1] = STATE(1238), - [sym_identifier] = ACTIONS(127), - [anon_sym_SEMI] = ACTIONS(544), - [anon_sym_if] = ACTIONS(129), - [anon_sym_LPAREN] = ACTIONS(131), - [anon_sym_while] = ACTIONS(133), + [sym_comment] = STATE(1252), + [aux_sym_if_statement_repeat1] = STATE(1252), + [sym_identifier] = ACTIONS(85), + [anon_sym_SEMI] = ACTIONS(498), + [anon_sym_if] = ACTIONS(87), + [anon_sym_LPAREN] = ACTIONS(89), + [anon_sym_while] = ACTIONS(91), [anon_sym_do] = ACTIONS(93), - [anon_sym_for] = ACTIONS(135), - [sym_break_statement] = ACTIONS(546), - [sym_continue_statement] = ACTIONS(546), + [anon_sym_for] = ACTIONS(95), + [sym_break_statement] = ACTIONS(500), + [sym_continue_statement] = ACTIONS(500), [anon_sym_delete] = ACTIONS(99), - [anon_sym_exit] = ACTIONS(139), - [anon_sym_return] = ACTIONS(141), + [anon_sym_exit] = ACTIONS(101), + [anon_sym_return] = ACTIONS(103), [anon_sym_switch] = ACTIONS(105), [anon_sym_LBRACE] = ACTIONS(268), - [anon_sym_getline] = ACTIONS(147), - [sym_next_statement] = ACTIONS(546), - [sym_nextfile_statement] = ACTIONS(546), - [anon_sym_print] = ACTIONS(149), - [anon_sym_printf] = ACTIONS(151), - [anon_sym_SLASH] = ACTIONS(153), - [anon_sym_PLUS] = ACTIONS(155), - [anon_sym_DASH] = ACTIONS(155), - [anon_sym_BANG] = ACTIONS(157), - [anon_sym_PLUS_PLUS] = ACTIONS(159), - [anon_sym_DASH_DASH] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(161), - [anon_sym_AT] = ACTIONS(163), - [aux_sym_number_token1] = ACTIONS(165), - [aux_sym_number_token2] = ACTIONS(167), - [anon_sym_DQUOTE] = ACTIONS(169), - [anon_sym_POUND] = ACTIONS(171), + [anon_sym_getline] = ACTIONS(111), + [sym_next_statement] = ACTIONS(500), + [sym_nextfile_statement] = ACTIONS(500), + [anon_sym_print] = ACTIONS(113), + [anon_sym_printf] = ACTIONS(115), + [anon_sym_SLASH] = ACTIONS(117), + [anon_sym_PLUS] = ACTIONS(119), + [anon_sym_DASH] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(121), + [anon_sym_PLUS_PLUS] = ACTIONS(123), + [anon_sym_DASH_DASH] = ACTIONS(123), + [anon_sym_DOLLAR] = ACTIONS(125), + [anon_sym_AT] = ACTIONS(127), + [aux_sym_number_token1] = ACTIONS(129), + [aux_sym_number_token2] = ACTIONS(131), + [anon_sym_DQUOTE] = ACTIONS(133), + [anon_sym_POUND] = ACTIONS(135), }, - [104] = { - [sym__statement] = STATE(1149), - [sym__statement_separated] = STATE(141), - [sym__control_statement] = STATE(1149), - [sym_if_statement] = STATE(1149), - [sym_while_statement] = STATE(1149), - [sym_do_while_statement] = STATE(1149), - [sym_for_statement] = STATE(1149), - [sym_for_in_statement] = STATE(1149), - [sym_delete_statement] = STATE(1149), - [sym_exit_statement] = STATE(1149), - [sym_return_statement] = STATE(1149), - [sym_switch_statement] = STATE(1149), - [sym__io_statement] = STATE(1149), - [sym__getline_exp] = STATE(1547), - [sym_getline_input] = STATE(1547), - [sym_getline_file] = STATE(1547), + [106] = { + [sym__statement] = STATE(1722), + [sym__statement_separated] = STATE(4), + [sym__control_statement] = STATE(1722), + [sym_if_statement] = STATE(1722), + [sym_while_statement] = STATE(1722), + [sym_do_while_statement] = STATE(1722), + [sym_for_statement] = STATE(1722), + [sym_for_in_statement] = STATE(1722), + [sym_delete_statement] = STATE(1722), + [sym_exit_statement] = STATE(1722), + [sym_return_statement] = STATE(1722), + [sym_switch_statement] = STATE(1722), + [sym__io_statement] = STATE(1722), + [sym__getline_exp] = STATE(1471), + [sym_getline_input] = STATE(1471), + [sym_getline_file] = STATE(1471), [sym_print_statement] = STATE(1697), [sym_printf_statement] = STATE(1697), - [sym_redirected_io_statement] = STATE(1149), - [sym_piped_io_statement] = STATE(1149), - [sym_block] = STATE(1150), - [sym__exp] = STATE(1547), - [sym_ternary_exp] = STATE(1441), - [sym_binary_exp] = STATE(1441), - [sym__binary_in] = STATE(1309), - [sym_unary_exp] = STATE(1441), - [sym_update_exp] = STATE(1547), - [sym_assignment_exp] = STATE(1547), - [sym_piped_io_exp] = STATE(1547), - [sym_string_concat] = STATE(1441), - [sym_field_ref] = STATE(995), - [sym_array_ref] = STATE(774), - [sym_regex] = STATE(1547), - [sym_regex_constant] = STATE(1547), - [sym_grouping] = STATE(1441), - [sym__primitive] = STATE(1441), - [sym_namespace] = STATE(2063), - [sym_ns_qualified_name] = STATE(647), - [sym_number] = STATE(1441), - [sym_string] = STATE(1441), - [sym_func_call] = STATE(1441), - [sym_indirect_func_call] = STATE(1547), - [sym_comment] = STATE(1238), - [aux_sym_if_statement_repeat1] = STATE(1238), - [sym_identifier] = ACTIONS(450), - [anon_sym_SEMI] = ACTIONS(430), - [anon_sym_if] = ACTIONS(454), - [anon_sym_LPAREN] = ACTIONS(456), - [anon_sym_while] = ACTIONS(458), - [anon_sym_do] = ACTIONS(49), - [anon_sym_for] = ACTIONS(460), - [sym_break_statement] = ACTIONS(432), - [sym_continue_statement] = ACTIONS(432), - [anon_sym_delete] = ACTIONS(55), - [anon_sym_exit] = ACTIONS(464), - [anon_sym_return] = ACTIONS(466), - [anon_sym_switch] = ACTIONS(61), - [anon_sym_LBRACE] = ACTIONS(316), - [anon_sym_getline] = ACTIONS(468), - [sym_next_statement] = ACTIONS(432), - [sym_nextfile_statement] = ACTIONS(432), - [anon_sym_print] = ACTIONS(470), - [anon_sym_printf] = ACTIONS(472), - [anon_sym_SLASH] = ACTIONS(474), - [anon_sym_PLUS] = ACTIONS(476), - [anon_sym_DASH] = ACTIONS(476), - [anon_sym_BANG] = ACTIONS(478), - [anon_sym_PLUS_PLUS] = ACTIONS(480), - [anon_sym_DASH_DASH] = ACTIONS(480), - [anon_sym_DOLLAR] = ACTIONS(482), - [anon_sym_AT] = ACTIONS(484), - [aux_sym_number_token1] = ACTIONS(79), - [aux_sym_number_token2] = ACTIONS(486), - [anon_sym_DQUOTE] = ACTIONS(488), - [anon_sym_POUND] = ACTIONS(171), - }, - [105] = { - [sym__statement] = STATE(1259), - [sym__statement_separated] = STATE(146), - [sym__control_statement] = STATE(1259), - [sym_if_statement] = STATE(1259), - [sym_while_statement] = STATE(1259), - [sym_do_while_statement] = STATE(1259), - [sym_for_statement] = STATE(1259), - [sym_for_in_statement] = STATE(1259), - [sym_delete_statement] = STATE(1259), - [sym_exit_statement] = STATE(1259), - [sym_return_statement] = STATE(1259), - [sym_switch_statement] = STATE(1259), - [sym__io_statement] = STATE(1259), - [sym__getline_exp] = STATE(1568), - [sym_getline_input] = STATE(1568), - [sym_getline_file] = STATE(1568), - [sym_print_statement] = STATE(1699), - [sym_printf_statement] = STATE(1699), - [sym_redirected_io_statement] = STATE(1259), - [sym_piped_io_statement] = STATE(1259), - [sym_block] = STATE(1250), - [sym__exp] = STATE(1568), - [sym_ternary_exp] = STATE(1470), - [sym_binary_exp] = STATE(1470), - [sym__binary_in] = STATE(1373), - [sym_unary_exp] = STATE(1470), - [sym_update_exp] = STATE(1568), - [sym_assignment_exp] = STATE(1568), - [sym_piped_io_exp] = STATE(1568), - [sym_string_concat] = STATE(1470), - [sym_field_ref] = STATE(1121), - [sym_array_ref] = STATE(1022), - [sym_regex] = STATE(1568), - [sym_regex_constant] = STATE(1568), - [sym_grouping] = STATE(1470), - [sym__primitive] = STATE(1470), - [sym_namespace] = STATE(1955), - [sym_ns_qualified_name] = STATE(744), - [sym_number] = STATE(1470), - [sym_string] = STATE(1470), - [sym_func_call] = STATE(1470), - [sym_indirect_func_call] = STATE(1568), - [sym_comment] = STATE(1238), - [aux_sym_if_statement_repeat1] = STATE(1238), - [sym_identifier] = ACTIONS(362), - [anon_sym_SEMI] = ACTIONS(528), - [anon_sym_if] = ACTIONS(364), - [anon_sym_LPAREN] = ACTIONS(366), - [anon_sym_while] = ACTIONS(368), - [anon_sym_do] = ACTIONS(93), - [anon_sym_for] = ACTIONS(370), - [sym_break_statement] = ACTIONS(530), - [sym_continue_statement] = ACTIONS(530), - [anon_sym_delete] = ACTIONS(99), - [anon_sym_exit] = ACTIONS(372), - [anon_sym_return] = ACTIONS(374), - [anon_sym_switch] = ACTIONS(105), - [anon_sym_LBRACE] = ACTIONS(268), - [anon_sym_getline] = ACTIONS(376), - [sym_next_statement] = ACTIONS(530), - [sym_nextfile_statement] = ACTIONS(530), - [anon_sym_print] = ACTIONS(378), - [anon_sym_printf] = ACTIONS(380), - [anon_sym_SLASH] = ACTIONS(382), - [anon_sym_PLUS] = ACTIONS(384), - [anon_sym_DASH] = ACTIONS(384), - [anon_sym_BANG] = ACTIONS(386), - [anon_sym_PLUS_PLUS] = ACTIONS(388), - [anon_sym_DASH_DASH] = ACTIONS(388), - [anon_sym_DOLLAR] = ACTIONS(390), - [anon_sym_AT] = ACTIONS(392), - [aux_sym_number_token1] = ACTIONS(123), - [aux_sym_number_token2] = ACTIONS(286), - [anon_sym_DQUOTE] = ACTIONS(288), - [anon_sym_POUND] = ACTIONS(171), - }, - [106] = { - [sym__statement] = STATE(1264), - [sym__statement_separated] = STATE(146), - [sym__control_statement] = STATE(1264), - [sym_if_statement] = STATE(1264), - [sym_while_statement] = STATE(1264), - [sym_do_while_statement] = STATE(1264), - [sym_for_statement] = STATE(1264), - [sym_for_in_statement] = STATE(1264), - [sym_delete_statement] = STATE(1264), - [sym_exit_statement] = STATE(1264), - [sym_return_statement] = STATE(1264), - [sym_switch_statement] = STATE(1264), - [sym__io_statement] = STATE(1264), - [sym__getline_exp] = STATE(1568), - [sym_getline_input] = STATE(1568), - [sym_getline_file] = STATE(1568), - [sym_print_statement] = STATE(1699), - [sym_printf_statement] = STATE(1699), - [sym_redirected_io_statement] = STATE(1264), - [sym_piped_io_statement] = STATE(1264), - [sym_block] = STATE(1260), - [sym__exp] = STATE(1568), - [sym_ternary_exp] = STATE(1470), - [sym_binary_exp] = STATE(1470), - [sym__binary_in] = STATE(1373), - [sym_unary_exp] = STATE(1470), - [sym_update_exp] = STATE(1568), - [sym_assignment_exp] = STATE(1568), - [sym_piped_io_exp] = STATE(1568), - [sym_string_concat] = STATE(1470), - [sym_field_ref] = STATE(1121), - [sym_array_ref] = STATE(1022), - [sym_regex] = STATE(1568), - [sym_regex_constant] = STATE(1568), - [sym_grouping] = STATE(1470), - [sym__primitive] = STATE(1470), - [sym_namespace] = STATE(1955), - [sym_ns_qualified_name] = STATE(744), - [sym_number] = STATE(1470), - [sym_string] = STATE(1470), - [sym_func_call] = STATE(1470), - [sym_indirect_func_call] = STATE(1568), - [sym_comment] = STATE(1238), - [aux_sym_if_statement_repeat1] = STATE(1238), - [sym_identifier] = ACTIONS(362), - [anon_sym_SEMI] = ACTIONS(438), - [anon_sym_if] = ACTIONS(364), - [anon_sym_LPAREN] = ACTIONS(366), - [anon_sym_while] = ACTIONS(368), + [sym_redirected_io_statement] = STATE(1722), + [sym_piped_io_statement] = STATE(1722), + [sym__exp] = STATE(1471), + [sym_ternary_exp] = STATE(1420), + [sym_binary_exp] = STATE(1420), + [sym__binary_in] = STATE(1385), + [sym_unary_exp] = STATE(1420), + [sym_update_exp] = STATE(1471), + [sym_assignment_exp] = STATE(1471), + [sym_piped_io_exp] = STATE(1471), + [sym_string_concat] = STATE(1420), + [sym_field_ref] = STATE(705), + [sym_array_ref] = STATE(614), + [sym_regex] = STATE(1471), + [sym_regex_constant] = STATE(1471), + [sym_grouping] = STATE(1420), + [sym__primitive] = STATE(1420), + [sym_namespace] = STATE(1956), + [sym_ns_qualified_name] = STATE(597), + [sym_number] = STATE(1420), + [sym_string] = STATE(1420), + [sym_func_call] = STATE(1420), + [sym_indirect_func_call] = STATE(1471), + [sym_comment] = STATE(1252), + [aux_sym_if_statement_repeat1] = STATE(1252), + [sym_identifier] = ACTIONS(137), + [anon_sym_if] = ACTIONS(139), + [anon_sym_LPAREN] = ACTIONS(434), + [anon_sym_while] = ACTIONS(143), [anon_sym_do] = ACTIONS(93), - [anon_sym_for] = ACTIONS(370), - [sym_break_statement] = ACTIONS(440), - [sym_continue_statement] = ACTIONS(440), + [anon_sym_for] = ACTIONS(145), + [sym_break_statement] = ACTIONS(568), + [sym_continue_statement] = ACTIONS(568), [anon_sym_delete] = ACTIONS(99), - [anon_sym_exit] = ACTIONS(372), - [anon_sym_return] = ACTIONS(374), + [anon_sym_exit] = ACTIONS(149), + [anon_sym_return] = ACTIONS(151), [anon_sym_switch] = ACTIONS(105), - [anon_sym_LBRACE] = ACTIONS(268), - [anon_sym_getline] = ACTIONS(376), - [sym_next_statement] = ACTIONS(440), - [sym_nextfile_statement] = ACTIONS(440), - [anon_sym_print] = ACTIONS(378), - [anon_sym_printf] = ACTIONS(380), - [anon_sym_SLASH] = ACTIONS(382), - [anon_sym_PLUS] = ACTIONS(384), - [anon_sym_DASH] = ACTIONS(384), - [anon_sym_BANG] = ACTIONS(386), - [anon_sym_PLUS_PLUS] = ACTIONS(388), - [anon_sym_DASH_DASH] = ACTIONS(388), - [anon_sym_DOLLAR] = ACTIONS(390), - [anon_sym_AT] = ACTIONS(392), - [aux_sym_number_token1] = ACTIONS(123), - [aux_sym_number_token2] = ACTIONS(286), - [anon_sym_DQUOTE] = ACTIONS(288), - [anon_sym_POUND] = ACTIONS(171), + [anon_sym_RBRACE] = ACTIONS(570), + [anon_sym_case] = ACTIONS(572), + [anon_sym_default] = ACTIONS(572), + [anon_sym_getline] = ACTIONS(153), + [sym_next_statement] = ACTIONS(568), + [sym_nextfile_statement] = ACTIONS(568), + [anon_sym_print] = ACTIONS(155), + [anon_sym_printf] = ACTIONS(157), + [anon_sym_SLASH] = ACTIONS(438), + [anon_sym_PLUS] = ACTIONS(161), + [anon_sym_DASH] = ACTIONS(161), + [anon_sym_BANG] = ACTIONS(440), + [anon_sym_PLUS_PLUS] = ACTIONS(442), + [anon_sym_DASH_DASH] = ACTIONS(442), + [anon_sym_DOLLAR] = ACTIONS(444), + [anon_sym_AT] = ACTIONS(446), + [aux_sym_number_token1] = ACTIONS(169), + [aux_sym_number_token2] = ACTIONS(306), + [anon_sym_DQUOTE] = ACTIONS(308), + [anon_sym_POUND] = ACTIONS(135), }, [107] = { - [sym__statement] = STATE(1258), - [sym__statement_separated] = STATE(146), - [sym__control_statement] = STATE(1258), - [sym_if_statement] = STATE(1258), - [sym_while_statement] = STATE(1258), - [sym_do_while_statement] = STATE(1258), - [sym_for_statement] = STATE(1258), - [sym_for_in_statement] = STATE(1258), - [sym_delete_statement] = STATE(1258), - [sym_exit_statement] = STATE(1258), - [sym_return_statement] = STATE(1258), - [sym_switch_statement] = STATE(1258), - [sym__io_statement] = STATE(1258), - [sym__getline_exp] = STATE(1568), - [sym_getline_input] = STATE(1568), - [sym_getline_file] = STATE(1568), - [sym_print_statement] = STATE(1699), - [sym_printf_statement] = STATE(1699), - [sym_redirected_io_statement] = STATE(1258), - [sym_piped_io_statement] = STATE(1258), - [sym_block] = STATE(1265), - [sym__exp] = STATE(1568), - [sym_ternary_exp] = STATE(1470), - [sym_binary_exp] = STATE(1470), - [sym__binary_in] = STATE(1373), - [sym_unary_exp] = STATE(1470), - [sym_update_exp] = STATE(1568), - [sym_assignment_exp] = STATE(1568), - [sym_piped_io_exp] = STATE(1568), - [sym_string_concat] = STATE(1470), - [sym_field_ref] = STATE(1121), - [sym_array_ref] = STATE(1022), - [sym_regex] = STATE(1568), - [sym_regex_constant] = STATE(1568), - [sym_grouping] = STATE(1470), - [sym__primitive] = STATE(1470), - [sym_namespace] = STATE(1955), - [sym_ns_qualified_name] = STATE(744), - [sym_number] = STATE(1470), - [sym_string] = STATE(1470), - [sym_func_call] = STATE(1470), - [sym_indirect_func_call] = STATE(1568), - [sym_comment] = STATE(108), - [aux_sym_if_statement_repeat1] = STATE(108), - [sym_identifier] = ACTIONS(362), - [anon_sym_SEMI] = ACTIONS(512), - [anon_sym_if] = ACTIONS(364), - [anon_sym_LPAREN] = ACTIONS(366), - [anon_sym_while] = ACTIONS(368), + [sym__statement] = STATE(1189), + [sym__statement_separated] = STATE(1189), + [sym__control_statement] = STATE(1189), + [sym_if_statement] = STATE(1189), + [sym_while_statement] = STATE(1189), + [sym_do_while_statement] = STATE(1189), + [sym_for_statement] = STATE(1189), + [sym_for_in_statement] = STATE(1189), + [sym_delete_statement] = STATE(1189), + [sym_exit_statement] = STATE(1189), + [sym_return_statement] = STATE(1189), + [sym_switch_statement] = STATE(1189), + [sym__io_statement] = STATE(1189), + [sym__getline_exp] = STATE(483), + [sym_getline_input] = STATE(483), + [sym_getline_file] = STATE(483), + [sym_print_statement] = STATE(770), + [sym_printf_statement] = STATE(770), + [sym_redirected_io_statement] = STATE(1189), + [sym_piped_io_statement] = STATE(1189), + [sym_block] = STATE(1188), + [sym__exp] = STATE(483), + [sym_ternary_exp] = STATE(359), + [sym_binary_exp] = STATE(359), + [sym__binary_in] = STATE(373), + [sym_unary_exp] = STATE(359), + [sym_update_exp] = STATE(483), + [sym_assignment_exp] = STATE(483), + [sym_piped_io_exp] = STATE(483), + [sym_string_concat] = STATE(359), + [sym_field_ref] = STATE(258), + [sym_array_ref] = STATE(219), + [sym_regex] = STATE(483), + [sym_regex_constant] = STATE(483), + [sym_grouping] = STATE(359), + [sym__primitive] = STATE(359), + [sym_namespace] = STATE(2068), + [sym_ns_qualified_name] = STATE(200), + [sym_number] = STATE(359), + [sym_string] = STATE(359), + [sym_func_call] = STATE(359), + [sym_indirect_func_call] = STATE(483), + [sym_comment] = STATE(112), + [aux_sym_if_statement_repeat1] = STATE(112), + [sym_identifier] = ACTIONS(530), + [anon_sym_SEMI] = ACTIONS(338), + [anon_sym_if] = ACTIONS(532), + [anon_sym_LPAREN] = ACTIONS(534), + [anon_sym_while] = ACTIONS(536), + [anon_sym_do] = ACTIONS(49), + [anon_sym_for] = ACTIONS(538), + [sym_break_statement] = ACTIONS(348), + [sym_continue_statement] = ACTIONS(348), + [anon_sym_delete] = ACTIONS(55), + [anon_sym_exit] = ACTIONS(540), + [anon_sym_return] = ACTIONS(542), + [anon_sym_switch] = ACTIONS(61), + [anon_sym_LBRACE] = ACTIONS(316), + [anon_sym_getline] = ACTIONS(544), + [sym_next_statement] = ACTIONS(348), + [sym_nextfile_statement] = ACTIONS(348), + [anon_sym_print] = ACTIONS(546), + [anon_sym_printf] = ACTIONS(548), + [anon_sym_SLASH] = ACTIONS(550), + [anon_sym_PLUS] = ACTIONS(552), + [anon_sym_DASH] = ACTIONS(552), + [anon_sym_BANG] = ACTIONS(554), + [anon_sym_PLUS_PLUS] = ACTIONS(556), + [anon_sym_DASH_DASH] = ACTIONS(556), + [anon_sym_DOLLAR] = ACTIONS(558), + [anon_sym_AT] = ACTIONS(560), + [aux_sym_number_token1] = ACTIONS(562), + [aux_sym_number_token2] = ACTIONS(564), + [anon_sym_DQUOTE] = ACTIONS(566), + [anon_sym_POUND] = ACTIONS(135), + }, + [108] = { + [sym__statement] = STATE(1720), + [sym__statement_separated] = STATE(4), + [sym__control_statement] = STATE(1720), + [sym_if_statement] = STATE(1720), + [sym_while_statement] = STATE(1720), + [sym_do_while_statement] = STATE(1720), + [sym_for_statement] = STATE(1720), + [sym_for_in_statement] = STATE(1720), + [sym_delete_statement] = STATE(1720), + [sym_exit_statement] = STATE(1720), + [sym_return_statement] = STATE(1720), + [sym_switch_statement] = STATE(1720), + [sym__io_statement] = STATE(1720), + [sym__getline_exp] = STATE(1471), + [sym_getline_input] = STATE(1471), + [sym_getline_file] = STATE(1471), + [sym_print_statement] = STATE(1697), + [sym_printf_statement] = STATE(1697), + [sym_redirected_io_statement] = STATE(1720), + [sym_piped_io_statement] = STATE(1720), + [sym__exp] = STATE(1471), + [sym_ternary_exp] = STATE(1420), + [sym_binary_exp] = STATE(1420), + [sym__binary_in] = STATE(1385), + [sym_unary_exp] = STATE(1420), + [sym_update_exp] = STATE(1471), + [sym_assignment_exp] = STATE(1471), + [sym_piped_io_exp] = STATE(1471), + [sym_string_concat] = STATE(1420), + [sym_field_ref] = STATE(705), + [sym_array_ref] = STATE(614), + [sym_regex] = STATE(1471), + [sym_regex_constant] = STATE(1471), + [sym_grouping] = STATE(1420), + [sym__primitive] = STATE(1420), + [sym_namespace] = STATE(1956), + [sym_ns_qualified_name] = STATE(597), + [sym_number] = STATE(1420), + [sym_string] = STATE(1420), + [sym_func_call] = STATE(1420), + [sym_indirect_func_call] = STATE(1471), + [sym_comment] = STATE(46), + [aux_sym_if_statement_repeat1] = STATE(46), + [sym_identifier] = ACTIONS(137), + [anon_sym_if] = ACTIONS(139), + [anon_sym_LPAREN] = ACTIONS(434), + [anon_sym_while] = ACTIONS(143), [anon_sym_do] = ACTIONS(93), - [anon_sym_for] = ACTIONS(370), - [sym_break_statement] = ACTIONS(514), - [sym_continue_statement] = ACTIONS(514), + [anon_sym_for] = ACTIONS(145), + [sym_break_statement] = ACTIONS(574), + [sym_continue_statement] = ACTIONS(574), [anon_sym_delete] = ACTIONS(99), - [anon_sym_exit] = ACTIONS(372), - [anon_sym_return] = ACTIONS(374), + [anon_sym_exit] = ACTIONS(149), + [anon_sym_return] = ACTIONS(151), [anon_sym_switch] = ACTIONS(105), - [anon_sym_LBRACE] = ACTIONS(268), - [anon_sym_getline] = ACTIONS(376), - [sym_next_statement] = ACTIONS(514), - [sym_nextfile_statement] = ACTIONS(514), - [anon_sym_print] = ACTIONS(378), - [anon_sym_printf] = ACTIONS(380), - [anon_sym_SLASH] = ACTIONS(382), - [anon_sym_PLUS] = ACTIONS(384), - [anon_sym_DASH] = ACTIONS(384), - [anon_sym_BANG] = ACTIONS(386), - [anon_sym_PLUS_PLUS] = ACTIONS(388), - [anon_sym_DASH_DASH] = ACTIONS(388), - [anon_sym_DOLLAR] = ACTIONS(390), - [anon_sym_AT] = ACTIONS(392), - [aux_sym_number_token1] = ACTIONS(123), - [aux_sym_number_token2] = ACTIONS(286), - [anon_sym_DQUOTE] = ACTIONS(288), - [anon_sym_POUND] = ACTIONS(171), + [anon_sym_RBRACE] = ACTIONS(576), + [anon_sym_case] = ACTIONS(578), + [anon_sym_default] = ACTIONS(578), + [anon_sym_getline] = ACTIONS(153), + [sym_next_statement] = ACTIONS(574), + [sym_nextfile_statement] = ACTIONS(574), + [anon_sym_print] = ACTIONS(155), + [anon_sym_printf] = ACTIONS(157), + [anon_sym_SLASH] = ACTIONS(438), + [anon_sym_PLUS] = ACTIONS(161), + [anon_sym_DASH] = ACTIONS(161), + [anon_sym_BANG] = ACTIONS(440), + [anon_sym_PLUS_PLUS] = ACTIONS(442), + [anon_sym_DASH_DASH] = ACTIONS(442), + [anon_sym_DOLLAR] = ACTIONS(444), + [anon_sym_AT] = ACTIONS(446), + [aux_sym_number_token1] = ACTIONS(169), + [aux_sym_number_token2] = ACTIONS(306), + [anon_sym_DQUOTE] = ACTIONS(308), + [anon_sym_POUND] = ACTIONS(135), }, - [108] = { - [sym__statement] = STATE(1252), - [sym__statement_separated] = STATE(146), - [sym__control_statement] = STATE(1252), - [sym_if_statement] = STATE(1252), - [sym_while_statement] = STATE(1252), - [sym_do_while_statement] = STATE(1252), - [sym_for_statement] = STATE(1252), - [sym_for_in_statement] = STATE(1252), - [sym_delete_statement] = STATE(1252), - [sym_exit_statement] = STATE(1252), - [sym_return_statement] = STATE(1252), - [sym_switch_statement] = STATE(1252), - [sym__io_statement] = STATE(1252), - [sym__getline_exp] = STATE(1568), - [sym_getline_input] = STATE(1568), - [sym_getline_file] = STATE(1568), - [sym_print_statement] = STATE(1699), - [sym_printf_statement] = STATE(1699), - [sym_redirected_io_statement] = STATE(1252), - [sym_piped_io_statement] = STATE(1252), - [sym_block] = STATE(1254), - [sym__exp] = STATE(1568), - [sym_ternary_exp] = STATE(1470), - [sym_binary_exp] = STATE(1470), - [sym__binary_in] = STATE(1373), - [sym_unary_exp] = STATE(1470), - [sym_update_exp] = STATE(1568), - [sym_assignment_exp] = STATE(1568), - [sym_piped_io_exp] = STATE(1568), - [sym_string_concat] = STATE(1470), - [sym_field_ref] = STATE(1121), - [sym_array_ref] = STATE(1022), - [sym_regex] = STATE(1568), - [sym_regex_constant] = STATE(1568), - [sym_grouping] = STATE(1470), - [sym__primitive] = STATE(1470), - [sym_namespace] = STATE(1955), - [sym_ns_qualified_name] = STATE(744), - [sym_number] = STATE(1470), - [sym_string] = STATE(1470), - [sym_func_call] = STATE(1470), - [sym_indirect_func_call] = STATE(1568), - [sym_comment] = STATE(1238), - [aux_sym_if_statement_repeat1] = STATE(1238), - [sym_identifier] = ACTIONS(362), - [anon_sym_SEMI] = ACTIONS(496), - [anon_sym_if] = ACTIONS(364), - [anon_sym_LPAREN] = ACTIONS(366), - [anon_sym_while] = ACTIONS(368), + [109] = { + [sym__statement] = STATE(1239), + [sym__statement_separated] = STATE(1239), + [sym__control_statement] = STATE(1239), + [sym_if_statement] = STATE(1239), + [sym_while_statement] = STATE(1239), + [sym_do_while_statement] = STATE(1239), + [sym_for_statement] = STATE(1239), + [sym_for_in_statement] = STATE(1239), + [sym_delete_statement] = STATE(1239), + [sym_exit_statement] = STATE(1239), + [sym_return_statement] = STATE(1239), + [sym_switch_statement] = STATE(1239), + [sym__io_statement] = STATE(1239), + [sym__getline_exp] = STATE(503), + [sym_getline_input] = STATE(503), + [sym_getline_file] = STATE(503), + [sym_print_statement] = STATE(869), + [sym_printf_statement] = STATE(869), + [sym_redirected_io_statement] = STATE(1239), + [sym_piped_io_statement] = STATE(1239), + [sym_block] = STATE(1199), + [sym__exp] = STATE(503), + [sym_ternary_exp] = STATE(427), + [sym_binary_exp] = STATE(427), + [sym__binary_in] = STATE(426), + [sym_unary_exp] = STATE(427), + [sym_update_exp] = STATE(503), + [sym_assignment_exp] = STATE(503), + [sym_piped_io_exp] = STATE(503), + [sym_string_concat] = STATE(427), + [sym_field_ref] = STATE(274), + [sym_array_ref] = STATE(268), + [sym_regex] = STATE(503), + [sym_regex_constant] = STATE(503), + [sym_grouping] = STATE(427), + [sym__primitive] = STATE(427), + [sym_namespace] = STATE(1956), + [sym_ns_qualified_name] = STATE(244), + [sym_number] = STATE(427), + [sym_string] = STATE(427), + [sym_func_call] = STATE(427), + [sym_indirect_func_call] = STATE(503), + [sym_comment] = STATE(49), + [aux_sym_if_statement_repeat1] = STATE(49), + [sym_identifier] = ACTIONS(85), + [anon_sym_SEMI] = ACTIONS(452), + [anon_sym_if] = ACTIONS(87), + [anon_sym_LPAREN] = ACTIONS(89), + [anon_sym_while] = ACTIONS(91), [anon_sym_do] = ACTIONS(93), - [anon_sym_for] = ACTIONS(370), - [sym_break_statement] = ACTIONS(498), - [sym_continue_statement] = ACTIONS(498), + [anon_sym_for] = ACTIONS(95), + [sym_break_statement] = ACTIONS(454), + [sym_continue_statement] = ACTIONS(454), [anon_sym_delete] = ACTIONS(99), - [anon_sym_exit] = ACTIONS(372), - [anon_sym_return] = ACTIONS(374), + [anon_sym_exit] = ACTIONS(101), + [anon_sym_return] = ACTIONS(103), [anon_sym_switch] = ACTIONS(105), [anon_sym_LBRACE] = ACTIONS(268), - [anon_sym_getline] = ACTIONS(376), - [sym_next_statement] = ACTIONS(498), - [sym_nextfile_statement] = ACTIONS(498), - [anon_sym_print] = ACTIONS(378), - [anon_sym_printf] = ACTIONS(380), - [anon_sym_SLASH] = ACTIONS(382), - [anon_sym_PLUS] = ACTIONS(384), - [anon_sym_DASH] = ACTIONS(384), - [anon_sym_BANG] = ACTIONS(386), - [anon_sym_PLUS_PLUS] = ACTIONS(388), - [anon_sym_DASH_DASH] = ACTIONS(388), - [anon_sym_DOLLAR] = ACTIONS(390), - [anon_sym_AT] = ACTIONS(392), - [aux_sym_number_token1] = ACTIONS(123), - [aux_sym_number_token2] = ACTIONS(286), - [anon_sym_DQUOTE] = ACTIONS(288), - [anon_sym_POUND] = ACTIONS(171), - }, - [109] = { - [sym__statement] = STATE(1173), - [sym__statement_separated] = STATE(2), - [sym__control_statement] = STATE(1173), - [sym_if_statement] = STATE(1173), - [sym_while_statement] = STATE(1173), - [sym_do_while_statement] = STATE(1173), - [sym_for_statement] = STATE(1173), - [sym_for_in_statement] = STATE(1173), - [sym_delete_statement] = STATE(1173), - [sym_exit_statement] = STATE(1173), - [sym_return_statement] = STATE(1173), - [sym_switch_statement] = STATE(1173), - [sym__io_statement] = STATE(1173), - [sym__getline_exp] = STATE(1462), - [sym_getline_input] = STATE(1462), - [sym_getline_file] = STATE(1462), - [sym_print_statement] = STATE(1695), - [sym_printf_statement] = STATE(1695), - [sym_redirected_io_statement] = STATE(1173), - [sym_piped_io_statement] = STATE(1173), - [sym_block] = STATE(1174), - [sym__exp] = STATE(1462), - [sym_ternary_exp] = STATE(1354), - [sym_binary_exp] = STATE(1354), - [sym__binary_in] = STATE(1309), - [sym_unary_exp] = STATE(1354), - [sym_update_exp] = STATE(1462), - [sym_assignment_exp] = STATE(1462), - [sym_piped_io_exp] = STATE(1462), - [sym_string_concat] = STATE(1354), - [sym_field_ref] = STATE(619), - [sym_array_ref] = STATE(603), - [sym_regex] = STATE(1462), - [sym_regex_constant] = STATE(1462), - [sym_grouping] = STATE(1354), - [sym__primitive] = STATE(1354), - [sym_namespace] = STATE(2063), - [sym_ns_qualified_name] = STATE(592), - [sym_number] = STATE(1354), - [sym_string] = STATE(1354), - [sym_func_call] = STATE(1354), - [sym_indirect_func_call] = STATE(1462), - [sym_comment] = STATE(1238), - [aux_sym_if_statement_repeat1] = STATE(1238), - [sym_identifier] = ACTIONS(39), - [anon_sym_SEMI] = ACTIONS(398), - [anon_sym_if] = ACTIONS(43), - [anon_sym_LPAREN] = ACTIONS(552), - [anon_sym_while] = ACTIONS(47), - [anon_sym_do] = ACTIONS(49), - [anon_sym_for] = ACTIONS(51), - [sym_break_statement] = ACTIONS(400), - [sym_continue_statement] = ACTIONS(400), - [anon_sym_delete] = ACTIONS(55), - [anon_sym_exit] = ACTIONS(57), - [anon_sym_return] = ACTIONS(59), - [anon_sym_switch] = ACTIONS(61), - [anon_sym_LBRACE] = ACTIONS(316), - [anon_sym_getline] = ACTIONS(63), - [sym_next_statement] = ACTIONS(400), - [sym_nextfile_statement] = ACTIONS(400), - [anon_sym_print] = ACTIONS(65), - [anon_sym_printf] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(554), - [anon_sym_PLUS] = ACTIONS(71), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_BANG] = ACTIONS(556), - [anon_sym_PLUS_PLUS] = ACTIONS(558), - [anon_sym_DASH_DASH] = ACTIONS(558), - [anon_sym_DOLLAR] = ACTIONS(560), - [anon_sym_AT] = ACTIONS(562), - [aux_sym_number_token1] = ACTIONS(79), - [aux_sym_number_token2] = ACTIONS(486), - [anon_sym_DQUOTE] = ACTIONS(488), - [anon_sym_POUND] = ACTIONS(171), + [anon_sym_getline] = ACTIONS(111), + [sym_next_statement] = ACTIONS(454), + [sym_nextfile_statement] = ACTIONS(454), + [anon_sym_print] = ACTIONS(113), + [anon_sym_printf] = ACTIONS(115), + [anon_sym_SLASH] = ACTIONS(117), + [anon_sym_PLUS] = ACTIONS(119), + [anon_sym_DASH] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(121), + [anon_sym_PLUS_PLUS] = ACTIONS(123), + [anon_sym_DASH_DASH] = ACTIONS(123), + [anon_sym_DOLLAR] = ACTIONS(125), + [anon_sym_AT] = ACTIONS(127), + [aux_sym_number_token1] = ACTIONS(129), + [aux_sym_number_token2] = ACTIONS(131), + [anon_sym_DQUOTE] = ACTIONS(133), + [anon_sym_POUND] = ACTIONS(135), }, [110] = { - [sym__statement] = STATE(1248), - [sym__statement_separated] = STATE(3), - [sym__control_statement] = STATE(1248), - [sym_if_statement] = STATE(1248), - [sym_while_statement] = STATE(1248), - [sym_do_while_statement] = STATE(1248), - [sym_for_statement] = STATE(1248), - [sym_for_in_statement] = STATE(1248), - [sym_delete_statement] = STATE(1248), - [sym_exit_statement] = STATE(1248), - [sym_return_statement] = STATE(1248), - [sym_switch_statement] = STATE(1248), - [sym__io_statement] = STATE(1248), - [sym__getline_exp] = STATE(1495), - [sym_getline_input] = STATE(1495), - [sym_getline_file] = STATE(1495), - [sym_print_statement] = STATE(1696), - [sym_printf_statement] = STATE(1696), - [sym_redirected_io_statement] = STATE(1248), - [sym_piped_io_statement] = STATE(1248), - [sym_block] = STATE(1245), - [sym__exp] = STATE(1495), - [sym_ternary_exp] = STATE(1421), - [sym_binary_exp] = STATE(1421), - [sym__binary_in] = STATE(1373), - [sym_unary_exp] = STATE(1421), - [sym_update_exp] = STATE(1495), - [sym_assignment_exp] = STATE(1495), - [sym_piped_io_exp] = STATE(1495), - [sym_string_concat] = STATE(1421), - [sym_field_ref] = STATE(703), - [sym_array_ref] = STATE(610), - [sym_regex] = STATE(1495), - [sym_regex_constant] = STATE(1495), - [sym_grouping] = STATE(1421), - [sym__primitive] = STATE(1421), - [sym_namespace] = STATE(1955), - [sym_ns_qualified_name] = STATE(607), - [sym_number] = STATE(1421), - [sym_string] = STATE(1421), - [sym_func_call] = STATE(1421), - [sym_indirect_func_call] = STATE(1495), - [sym_comment] = STATE(1238), - [aux_sym_if_statement_repeat1] = STATE(1238), + [sym__statement] = STATE(1221), + [sym__statement_separated] = STATE(1221), + [sym__control_statement] = STATE(1221), + [sym_if_statement] = STATE(1221), + [sym_while_statement] = STATE(1221), + [sym_do_while_statement] = STATE(1221), + [sym_for_statement] = STATE(1221), + [sym_for_in_statement] = STATE(1221), + [sym_delete_statement] = STATE(1221), + [sym_exit_statement] = STATE(1221), + [sym_return_statement] = STATE(1221), + [sym_switch_statement] = STATE(1221), + [sym__io_statement] = STATE(1221), + [sym__getline_exp] = STATE(503), + [sym_getline_input] = STATE(503), + [sym_getline_file] = STATE(503), + [sym_print_statement] = STATE(869), + [sym_printf_statement] = STATE(869), + [sym_redirected_io_statement] = STATE(1221), + [sym_piped_io_statement] = STATE(1221), + [sym_block] = STATE(1225), + [sym__exp] = STATE(503), + [sym_ternary_exp] = STATE(427), + [sym_binary_exp] = STATE(427), + [sym__binary_in] = STATE(426), + [sym_unary_exp] = STATE(427), + [sym_update_exp] = STATE(503), + [sym_assignment_exp] = STATE(503), + [sym_piped_io_exp] = STATE(503), + [sym_string_concat] = STATE(427), + [sym_field_ref] = STATE(274), + [sym_array_ref] = STATE(268), + [sym_regex] = STATE(503), + [sym_regex_constant] = STATE(503), + [sym_grouping] = STATE(427), + [sym__primitive] = STATE(427), + [sym_namespace] = STATE(1956), + [sym_ns_qualified_name] = STATE(244), + [sym_number] = STATE(427), + [sym_string] = STATE(427), + [sym_func_call] = STATE(427), + [sym_indirect_func_call] = STATE(503), + [sym_comment] = STATE(121), + [aux_sym_if_statement_repeat1] = STATE(121), [sym_identifier] = ACTIONS(85), - [anon_sym_SEMI] = ACTIONS(540), + [anon_sym_SEMI] = ACTIONS(494), [anon_sym_if] = ACTIONS(87), - [anon_sym_LPAREN] = ACTIONS(272), + [anon_sym_LPAREN] = ACTIONS(89), [anon_sym_while] = ACTIONS(91), [anon_sym_do] = ACTIONS(93), [anon_sym_for] = ACTIONS(95), - [sym_break_statement] = ACTIONS(542), - [sym_continue_statement] = ACTIONS(542), + [sym_break_statement] = ACTIONS(496), + [sym_continue_statement] = ACTIONS(496), [anon_sym_delete] = ACTIONS(99), [anon_sym_exit] = ACTIONS(101), [anon_sym_return] = ACTIONS(103), [anon_sym_switch] = ACTIONS(105), [anon_sym_LBRACE] = ACTIONS(268), - [anon_sym_getline] = ACTIONS(107), - [sym_next_statement] = ACTIONS(542), - [sym_nextfile_statement] = ACTIONS(542), - [anon_sym_print] = ACTIONS(109), - [anon_sym_printf] = ACTIONS(111), - [anon_sym_SLASH] = ACTIONS(276), - [anon_sym_PLUS] = ACTIONS(115), - [anon_sym_DASH] = ACTIONS(115), - [anon_sym_BANG] = ACTIONS(278), - [anon_sym_PLUS_PLUS] = ACTIONS(280), - [anon_sym_DASH_DASH] = ACTIONS(280), - [anon_sym_DOLLAR] = ACTIONS(282), - [anon_sym_AT] = ACTIONS(284), - [aux_sym_number_token1] = ACTIONS(123), - [aux_sym_number_token2] = ACTIONS(286), - [anon_sym_DQUOTE] = ACTIONS(288), - [anon_sym_POUND] = ACTIONS(171), + [anon_sym_getline] = ACTIONS(111), + [sym_next_statement] = ACTIONS(496), + [sym_nextfile_statement] = ACTIONS(496), + [anon_sym_print] = ACTIONS(113), + [anon_sym_printf] = ACTIONS(115), + [anon_sym_SLASH] = ACTIONS(117), + [anon_sym_PLUS] = ACTIONS(119), + [anon_sym_DASH] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(121), + [anon_sym_PLUS_PLUS] = ACTIONS(123), + [anon_sym_DASH_DASH] = ACTIONS(123), + [anon_sym_DOLLAR] = ACTIONS(125), + [anon_sym_AT] = ACTIONS(127), + [aux_sym_number_token1] = ACTIONS(129), + [aux_sym_number_token2] = ACTIONS(131), + [anon_sym_DQUOTE] = ACTIONS(133), + [anon_sym_POUND] = ACTIONS(135), }, [111] = { - [sym__statement] = STATE(1205), - [sym__statement_separated] = STATE(1205), - [sym__control_statement] = STATE(1205), - [sym_if_statement] = STATE(1205), - [sym_while_statement] = STATE(1205), - [sym_do_while_statement] = STATE(1205), - [sym_for_statement] = STATE(1205), - [sym_for_in_statement] = STATE(1205), - [sym_delete_statement] = STATE(1205), - [sym_exit_statement] = STATE(1205), - [sym_return_statement] = STATE(1205), - [sym_switch_statement] = STATE(1205), - [sym__io_statement] = STATE(1205), + [sym__statement] = STATE(1219), + [sym__statement_separated] = STATE(1219), + [sym__control_statement] = STATE(1219), + [sym_if_statement] = STATE(1219), + [sym_while_statement] = STATE(1219), + [sym_do_while_statement] = STATE(1219), + [sym_for_statement] = STATE(1219), + [sym_for_in_statement] = STATE(1219), + [sym_delete_statement] = STATE(1219), + [sym_exit_statement] = STATE(1219), + [sym_return_statement] = STATE(1219), + [sym_switch_statement] = STATE(1219), + [sym__io_statement] = STATE(1219), [sym__getline_exp] = STATE(503), [sym_getline_input] = STATE(503), [sym_getline_file] = STATE(503), - [sym_print_statement] = STATE(890), - [sym_printf_statement] = STATE(890), - [sym_redirected_io_statement] = STATE(1205), - [sym_piped_io_statement] = STATE(1205), - [sym_block] = STATE(1206), + [sym_print_statement] = STATE(869), + [sym_printf_statement] = STATE(869), + [sym_redirected_io_statement] = STATE(1219), + [sym_piped_io_statement] = STATE(1219), + [sym_block] = STATE(1246), [sym__exp] = STATE(503), - [sym_ternary_exp] = STATE(447), - [sym_binary_exp] = STATE(447), - [sym__binary_in] = STATE(446), - [sym_unary_exp] = STATE(447), + [sym_ternary_exp] = STATE(427), + [sym_binary_exp] = STATE(427), + [sym__binary_in] = STATE(426), + [sym_unary_exp] = STATE(427), [sym_update_exp] = STATE(503), [sym_assignment_exp] = STATE(503), [sym_piped_io_exp] = STATE(503), - [sym_string_concat] = STATE(447), - [sym_field_ref] = STATE(272), - [sym_array_ref] = STATE(253), + [sym_string_concat] = STATE(427), + [sym_field_ref] = STATE(274), + [sym_array_ref] = STATE(268), [sym_regex] = STATE(503), [sym_regex_constant] = STATE(503), - [sym_grouping] = STATE(447), - [sym__primitive] = STATE(447), - [sym_namespace] = STATE(1955), - [sym_ns_qualified_name] = STATE(221), - [sym_number] = STATE(447), - [sym_string] = STATE(447), - [sym_func_call] = STATE(447), + [sym_grouping] = STATE(427), + [sym__primitive] = STATE(427), + [sym_namespace] = STATE(1956), + [sym_ns_qualified_name] = STATE(244), + [sym_number] = STATE(427), + [sym_string] = STATE(427), + [sym_func_call] = STATE(427), [sym_indirect_func_call] = STATE(503), - [sym_comment] = STATE(103), - [aux_sym_if_statement_repeat1] = STATE(103), - [sym_identifier] = ACTIONS(127), - [anon_sym_SEMI] = ACTIONS(290), - [anon_sym_if] = ACTIONS(129), - [anon_sym_LPAREN] = ACTIONS(131), - [anon_sym_while] = ACTIONS(133), + [sym_comment] = STATE(1252), + [aux_sym_if_statement_repeat1] = STATE(1252), + [sym_identifier] = ACTIONS(85), + [anon_sym_SEMI] = ACTIONS(456), + [anon_sym_if] = ACTIONS(87), + [anon_sym_LPAREN] = ACTIONS(89), + [anon_sym_while] = ACTIONS(91), [anon_sym_do] = ACTIONS(93), - [anon_sym_for] = ACTIONS(135), - [sym_break_statement] = ACTIONS(292), - [sym_continue_statement] = ACTIONS(292), + [anon_sym_for] = ACTIONS(95), + [sym_break_statement] = ACTIONS(458), + [sym_continue_statement] = ACTIONS(458), [anon_sym_delete] = ACTIONS(99), - [anon_sym_exit] = ACTIONS(139), - [anon_sym_return] = ACTIONS(141), + [anon_sym_exit] = ACTIONS(101), + [anon_sym_return] = ACTIONS(103), [anon_sym_switch] = ACTIONS(105), [anon_sym_LBRACE] = ACTIONS(268), - [anon_sym_getline] = ACTIONS(147), - [sym_next_statement] = ACTIONS(292), - [sym_nextfile_statement] = ACTIONS(292), - [anon_sym_print] = ACTIONS(149), - [anon_sym_printf] = ACTIONS(151), - [anon_sym_SLASH] = ACTIONS(153), - [anon_sym_PLUS] = ACTIONS(155), - [anon_sym_DASH] = ACTIONS(155), - [anon_sym_BANG] = ACTIONS(157), - [anon_sym_PLUS_PLUS] = ACTIONS(159), - [anon_sym_DASH_DASH] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(161), - [anon_sym_AT] = ACTIONS(163), - [aux_sym_number_token1] = ACTIONS(165), - [aux_sym_number_token2] = ACTIONS(167), - [anon_sym_DQUOTE] = ACTIONS(169), - [anon_sym_POUND] = ACTIONS(171), + [anon_sym_getline] = ACTIONS(111), + [sym_next_statement] = ACTIONS(458), + [sym_nextfile_statement] = ACTIONS(458), + [anon_sym_print] = ACTIONS(113), + [anon_sym_printf] = ACTIONS(115), + [anon_sym_SLASH] = ACTIONS(117), + [anon_sym_PLUS] = ACTIONS(119), + [anon_sym_DASH] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(121), + [anon_sym_PLUS_PLUS] = ACTIONS(123), + [anon_sym_DASH_DASH] = ACTIONS(123), + [anon_sym_DOLLAR] = ACTIONS(125), + [anon_sym_AT] = ACTIONS(127), + [aux_sym_number_token1] = ACTIONS(129), + [aux_sym_number_token2] = ACTIONS(131), + [anon_sym_DQUOTE] = ACTIONS(133), + [anon_sym_POUND] = ACTIONS(135), }, [112] = { - [sym__statement] = STATE(1170), - [sym__statement_separated] = STATE(2), - [sym__control_statement] = STATE(1170), - [sym_if_statement] = STATE(1170), - [sym_while_statement] = STATE(1170), - [sym_do_while_statement] = STATE(1170), - [sym_for_statement] = STATE(1170), - [sym_for_in_statement] = STATE(1170), - [sym_delete_statement] = STATE(1170), - [sym_exit_statement] = STATE(1170), - [sym_return_statement] = STATE(1170), - [sym_switch_statement] = STATE(1170), - [sym__io_statement] = STATE(1170), - [sym__getline_exp] = STATE(1462), - [sym_getline_input] = STATE(1462), - [sym_getline_file] = STATE(1462), - [sym_print_statement] = STATE(1695), - [sym_printf_statement] = STATE(1695), - [sym_redirected_io_statement] = STATE(1170), - [sym_piped_io_statement] = STATE(1170), - [sym_block] = STATE(1172), - [sym__exp] = STATE(1462), - [sym_ternary_exp] = STATE(1354), - [sym_binary_exp] = STATE(1354), - [sym__binary_in] = STATE(1309), - [sym_unary_exp] = STATE(1354), - [sym_update_exp] = STATE(1462), - [sym_assignment_exp] = STATE(1462), - [sym_piped_io_exp] = STATE(1462), - [sym_string_concat] = STATE(1354), - [sym_field_ref] = STATE(619), - [sym_array_ref] = STATE(603), - [sym_regex] = STATE(1462), - [sym_regex_constant] = STATE(1462), - [sym_grouping] = STATE(1354), - [sym__primitive] = STATE(1354), - [sym_namespace] = STATE(2063), - [sym_ns_qualified_name] = STATE(592), - [sym_number] = STATE(1354), - [sym_string] = STATE(1354), - [sym_func_call] = STATE(1354), - [sym_indirect_func_call] = STATE(1462), - [sym_comment] = STATE(1238), - [aux_sym_if_statement_repeat1] = STATE(1238), - [sym_identifier] = ACTIONS(39), - [anon_sym_SEMI] = ACTIONS(402), - [anon_sym_if] = ACTIONS(43), - [anon_sym_LPAREN] = ACTIONS(552), - [anon_sym_while] = ACTIONS(47), + [sym__statement] = STATE(1177), + [sym__statement_separated] = STATE(1177), + [sym__control_statement] = STATE(1177), + [sym_if_statement] = STATE(1177), + [sym_while_statement] = STATE(1177), + [sym_do_while_statement] = STATE(1177), + [sym_for_statement] = STATE(1177), + [sym_for_in_statement] = STATE(1177), + [sym_delete_statement] = STATE(1177), + [sym_exit_statement] = STATE(1177), + [sym_return_statement] = STATE(1177), + [sym_switch_statement] = STATE(1177), + [sym__io_statement] = STATE(1177), + [sym__getline_exp] = STATE(483), + [sym_getline_input] = STATE(483), + [sym_getline_file] = STATE(483), + [sym_print_statement] = STATE(770), + [sym_printf_statement] = STATE(770), + [sym_redirected_io_statement] = STATE(1177), + [sym_piped_io_statement] = STATE(1177), + [sym_block] = STATE(1176), + [sym__exp] = STATE(483), + [sym_ternary_exp] = STATE(359), + [sym_binary_exp] = STATE(359), + [sym__binary_in] = STATE(373), + [sym_unary_exp] = STATE(359), + [sym_update_exp] = STATE(483), + [sym_assignment_exp] = STATE(483), + [sym_piped_io_exp] = STATE(483), + [sym_string_concat] = STATE(359), + [sym_field_ref] = STATE(258), + [sym_array_ref] = STATE(219), + [sym_regex] = STATE(483), + [sym_regex_constant] = STATE(483), + [sym_grouping] = STATE(359), + [sym__primitive] = STATE(359), + [sym_namespace] = STATE(2068), + [sym_ns_qualified_name] = STATE(200), + [sym_number] = STATE(359), + [sym_string] = STATE(359), + [sym_func_call] = STATE(359), + [sym_indirect_func_call] = STATE(483), + [sym_comment] = STATE(1252), + [aux_sym_if_statement_repeat1] = STATE(1252), + [sym_identifier] = ACTIONS(530), + [anon_sym_SEMI] = ACTIONS(420), + [anon_sym_if] = ACTIONS(532), + [anon_sym_LPAREN] = ACTIONS(534), + [anon_sym_while] = ACTIONS(536), [anon_sym_do] = ACTIONS(49), - [anon_sym_for] = ACTIONS(51), - [sym_break_statement] = ACTIONS(404), - [sym_continue_statement] = ACTIONS(404), + [anon_sym_for] = ACTIONS(538), + [sym_break_statement] = ACTIONS(422), + [sym_continue_statement] = ACTIONS(422), [anon_sym_delete] = ACTIONS(55), - [anon_sym_exit] = ACTIONS(57), - [anon_sym_return] = ACTIONS(59), + [anon_sym_exit] = ACTIONS(540), + [anon_sym_return] = ACTIONS(542), [anon_sym_switch] = ACTIONS(61), [anon_sym_LBRACE] = ACTIONS(316), - [anon_sym_getline] = ACTIONS(63), - [sym_next_statement] = ACTIONS(404), - [sym_nextfile_statement] = ACTIONS(404), - [anon_sym_print] = ACTIONS(65), - [anon_sym_printf] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(554), - [anon_sym_PLUS] = ACTIONS(71), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_BANG] = ACTIONS(556), - [anon_sym_PLUS_PLUS] = ACTIONS(558), - [anon_sym_DASH_DASH] = ACTIONS(558), - [anon_sym_DOLLAR] = ACTIONS(560), - [anon_sym_AT] = ACTIONS(562), - [aux_sym_number_token1] = ACTIONS(79), - [aux_sym_number_token2] = ACTIONS(486), - [anon_sym_DQUOTE] = ACTIONS(488), - [anon_sym_POUND] = ACTIONS(171), + [anon_sym_getline] = ACTIONS(544), + [sym_next_statement] = ACTIONS(422), + [sym_nextfile_statement] = ACTIONS(422), + [anon_sym_print] = ACTIONS(546), + [anon_sym_printf] = ACTIONS(548), + [anon_sym_SLASH] = ACTIONS(550), + [anon_sym_PLUS] = ACTIONS(552), + [anon_sym_DASH] = ACTIONS(552), + [anon_sym_BANG] = ACTIONS(554), + [anon_sym_PLUS_PLUS] = ACTIONS(556), + [anon_sym_DASH_DASH] = ACTIONS(556), + [anon_sym_DOLLAR] = ACTIONS(558), + [anon_sym_AT] = ACTIONS(560), + [aux_sym_number_token1] = ACTIONS(562), + [aux_sym_number_token2] = ACTIONS(564), + [anon_sym_DQUOTE] = ACTIONS(566), + [anon_sym_POUND] = ACTIONS(135), }, [113] = { - [sym__statement] = STATE(1166), - [sym__statement_separated] = STATE(2), - [sym__control_statement] = STATE(1166), - [sym_if_statement] = STATE(1166), - [sym_while_statement] = STATE(1166), - [sym_do_while_statement] = STATE(1166), - [sym_for_statement] = STATE(1166), - [sym_for_in_statement] = STATE(1166), - [sym_delete_statement] = STATE(1166), - [sym_exit_statement] = STATE(1166), - [sym_return_statement] = STATE(1166), - [sym_switch_statement] = STATE(1166), - [sym__io_statement] = STATE(1166), - [sym__getline_exp] = STATE(1462), - [sym_getline_input] = STATE(1462), - [sym_getline_file] = STATE(1462), - [sym_print_statement] = STATE(1695), - [sym_printf_statement] = STATE(1695), - [sym_redirected_io_statement] = STATE(1166), - [sym_piped_io_statement] = STATE(1166), - [sym_block] = STATE(1167), - [sym__exp] = STATE(1462), - [sym_ternary_exp] = STATE(1354), - [sym_binary_exp] = STATE(1354), - [sym__binary_in] = STATE(1309), - [sym_unary_exp] = STATE(1354), - [sym_update_exp] = STATE(1462), - [sym_assignment_exp] = STATE(1462), - [sym_piped_io_exp] = STATE(1462), - [sym_string_concat] = STATE(1354), - [sym_field_ref] = STATE(619), - [sym_array_ref] = STATE(603), - [sym_regex] = STATE(1462), - [sym_regex_constant] = STATE(1462), - [sym_grouping] = STATE(1354), - [sym__primitive] = STATE(1354), - [sym_namespace] = STATE(2063), - [sym_ns_qualified_name] = STATE(592), - [sym_number] = STATE(1354), - [sym_string] = STATE(1354), - [sym_func_call] = STATE(1354), - [sym_indirect_func_call] = STATE(1462), - [sym_comment] = STATE(92), - [aux_sym_if_statement_repeat1] = STATE(92), - [sym_identifier] = ACTIONS(39), - [anon_sym_SEMI] = ACTIONS(406), - [anon_sym_if] = ACTIONS(43), - [anon_sym_LPAREN] = ACTIONS(552), - [anon_sym_while] = ACTIONS(47), + [sym__statement] = STATE(1183), + [sym__statement_separated] = STATE(1183), + [sym__control_statement] = STATE(1183), + [sym_if_statement] = STATE(1183), + [sym_while_statement] = STATE(1183), + [sym_do_while_statement] = STATE(1183), + [sym_for_statement] = STATE(1183), + [sym_for_in_statement] = STATE(1183), + [sym_delete_statement] = STATE(1183), + [sym_exit_statement] = STATE(1183), + [sym_return_statement] = STATE(1183), + [sym_switch_statement] = STATE(1183), + [sym__io_statement] = STATE(1183), + [sym__getline_exp] = STATE(483), + [sym_getline_input] = STATE(483), + [sym_getline_file] = STATE(483), + [sym_print_statement] = STATE(770), + [sym_printf_statement] = STATE(770), + [sym_redirected_io_statement] = STATE(1183), + [sym_piped_io_statement] = STATE(1183), + [sym_block] = STATE(1180), + [sym__exp] = STATE(483), + [sym_ternary_exp] = STATE(359), + [sym_binary_exp] = STATE(359), + [sym__binary_in] = STATE(373), + [sym_unary_exp] = STATE(359), + [sym_update_exp] = STATE(483), + [sym_assignment_exp] = STATE(483), + [sym_piped_io_exp] = STATE(483), + [sym_string_concat] = STATE(359), + [sym_field_ref] = STATE(258), + [sym_array_ref] = STATE(219), + [sym_regex] = STATE(483), + [sym_regex_constant] = STATE(483), + [sym_grouping] = STATE(359), + [sym__primitive] = STATE(359), + [sym_namespace] = STATE(2068), + [sym_ns_qualified_name] = STATE(200), + [sym_number] = STATE(359), + [sym_string] = STATE(359), + [sym_func_call] = STATE(359), + [sym_indirect_func_call] = STATE(483), + [sym_comment] = STATE(119), + [aux_sym_if_statement_repeat1] = STATE(119), + [sym_identifier] = ACTIONS(530), + [anon_sym_SEMI] = ACTIONS(416), + [anon_sym_if] = ACTIONS(532), + [anon_sym_LPAREN] = ACTIONS(534), + [anon_sym_while] = ACTIONS(536), [anon_sym_do] = ACTIONS(49), - [anon_sym_for] = ACTIONS(51), - [sym_break_statement] = ACTIONS(408), - [sym_continue_statement] = ACTIONS(408), + [anon_sym_for] = ACTIONS(538), + [sym_break_statement] = ACTIONS(418), + [sym_continue_statement] = ACTIONS(418), [anon_sym_delete] = ACTIONS(55), - [anon_sym_exit] = ACTIONS(57), - [anon_sym_return] = ACTIONS(59), + [anon_sym_exit] = ACTIONS(540), + [anon_sym_return] = ACTIONS(542), [anon_sym_switch] = ACTIONS(61), [anon_sym_LBRACE] = ACTIONS(316), - [anon_sym_getline] = ACTIONS(63), - [sym_next_statement] = ACTIONS(408), - [sym_nextfile_statement] = ACTIONS(408), - [anon_sym_print] = ACTIONS(65), - [anon_sym_printf] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(554), - [anon_sym_PLUS] = ACTIONS(71), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_BANG] = ACTIONS(556), - [anon_sym_PLUS_PLUS] = ACTIONS(558), - [anon_sym_DASH_DASH] = ACTIONS(558), - [anon_sym_DOLLAR] = ACTIONS(560), - [anon_sym_AT] = ACTIONS(562), - [aux_sym_number_token1] = ACTIONS(79), - [aux_sym_number_token2] = ACTIONS(486), - [anon_sym_DQUOTE] = ACTIONS(488), - [anon_sym_POUND] = ACTIONS(171), + [anon_sym_getline] = ACTIONS(544), + [sym_next_statement] = ACTIONS(418), + [sym_nextfile_statement] = ACTIONS(418), + [anon_sym_print] = ACTIONS(546), + [anon_sym_printf] = ACTIONS(548), + [anon_sym_SLASH] = ACTIONS(550), + [anon_sym_PLUS] = ACTIONS(552), + [anon_sym_DASH] = ACTIONS(552), + [anon_sym_BANG] = ACTIONS(554), + [anon_sym_PLUS_PLUS] = ACTIONS(556), + [anon_sym_DASH_DASH] = ACTIONS(556), + [anon_sym_DOLLAR] = ACTIONS(558), + [anon_sym_AT] = ACTIONS(560), + [aux_sym_number_token1] = ACTIONS(562), + [aux_sym_number_token2] = ACTIONS(564), + [anon_sym_DQUOTE] = ACTIONS(566), + [anon_sym_POUND] = ACTIONS(135), }, [114] = { - [sym__statement] = STATE(1259), - [sym__statement_separated] = STATE(3), - [sym__control_statement] = STATE(1259), - [sym_if_statement] = STATE(1259), - [sym_while_statement] = STATE(1259), - [sym_do_while_statement] = STATE(1259), - [sym_for_statement] = STATE(1259), - [sym_for_in_statement] = STATE(1259), - [sym_delete_statement] = STATE(1259), - [sym_exit_statement] = STATE(1259), - [sym_return_statement] = STATE(1259), - [sym_switch_statement] = STATE(1259), - [sym__io_statement] = STATE(1259), - [sym__getline_exp] = STATE(1495), - [sym_getline_input] = STATE(1495), - [sym_getline_file] = STATE(1495), - [sym_print_statement] = STATE(1696), - [sym_printf_statement] = STATE(1696), - [sym_redirected_io_statement] = STATE(1259), - [sym_piped_io_statement] = STATE(1259), - [sym_block] = STATE(1250), - [sym__exp] = STATE(1495), - [sym_ternary_exp] = STATE(1421), - [sym_binary_exp] = STATE(1421), - [sym__binary_in] = STATE(1373), - [sym_unary_exp] = STATE(1421), - [sym_update_exp] = STATE(1495), - [sym_assignment_exp] = STATE(1495), - [sym_piped_io_exp] = STATE(1495), - [sym_string_concat] = STATE(1421), - [sym_field_ref] = STATE(703), - [sym_array_ref] = STATE(610), - [sym_regex] = STATE(1495), - [sym_regex_constant] = STATE(1495), - [sym_grouping] = STATE(1421), - [sym__primitive] = STATE(1421), - [sym_namespace] = STATE(1955), - [sym_ns_qualified_name] = STATE(607), - [sym_number] = STATE(1421), - [sym_string] = STATE(1421), - [sym_func_call] = STATE(1421), - [sym_indirect_func_call] = STATE(1495), - [sym_comment] = STATE(1238), - [aux_sym_if_statement_repeat1] = STATE(1238), + [sym__statement] = STATE(1230), + [sym__statement_separated] = STATE(1230), + [sym__control_statement] = STATE(1230), + [sym_if_statement] = STATE(1230), + [sym_while_statement] = STATE(1230), + [sym_do_while_statement] = STATE(1230), + [sym_for_statement] = STATE(1230), + [sym_for_in_statement] = STATE(1230), + [sym_delete_statement] = STATE(1230), + [sym_exit_statement] = STATE(1230), + [sym_return_statement] = STATE(1230), + [sym_switch_statement] = STATE(1230), + [sym__io_statement] = STATE(1230), + [sym__getline_exp] = STATE(503), + [sym_getline_input] = STATE(503), + [sym_getline_file] = STATE(503), + [sym_print_statement] = STATE(869), + [sym_printf_statement] = STATE(869), + [sym_redirected_io_statement] = STATE(1230), + [sym_piped_io_statement] = STATE(1230), + [sym_block] = STATE(1200), + [sym__exp] = STATE(503), + [sym_ternary_exp] = STATE(427), + [sym_binary_exp] = STATE(427), + [sym__binary_in] = STATE(426), + [sym_unary_exp] = STATE(427), + [sym_update_exp] = STATE(503), + [sym_assignment_exp] = STATE(503), + [sym_piped_io_exp] = STATE(503), + [sym_string_concat] = STATE(427), + [sym_field_ref] = STATE(274), + [sym_array_ref] = STATE(268), + [sym_regex] = STATE(503), + [sym_regex_constant] = STATE(503), + [sym_grouping] = STATE(427), + [sym__primitive] = STATE(427), + [sym_namespace] = STATE(1956), + [sym_ns_qualified_name] = STATE(244), + [sym_number] = STATE(427), + [sym_string] = STATE(427), + [sym_func_call] = STATE(427), + [sym_indirect_func_call] = STATE(503), + [sym_comment] = STATE(1252), + [aux_sym_if_statement_repeat1] = STATE(1252), [sym_identifier] = ACTIONS(85), - [anon_sym_SEMI] = ACTIONS(528), + [anon_sym_SEMI] = ACTIONS(460), [anon_sym_if] = ACTIONS(87), - [anon_sym_LPAREN] = ACTIONS(272), + [anon_sym_LPAREN] = ACTIONS(89), [anon_sym_while] = ACTIONS(91), [anon_sym_do] = ACTIONS(93), [anon_sym_for] = ACTIONS(95), - [sym_break_statement] = ACTIONS(530), - [sym_continue_statement] = ACTIONS(530), + [sym_break_statement] = ACTIONS(462), + [sym_continue_statement] = ACTIONS(462), [anon_sym_delete] = ACTIONS(99), [anon_sym_exit] = ACTIONS(101), [anon_sym_return] = ACTIONS(103), [anon_sym_switch] = ACTIONS(105), [anon_sym_LBRACE] = ACTIONS(268), - [anon_sym_getline] = ACTIONS(107), - [sym_next_statement] = ACTIONS(530), - [sym_nextfile_statement] = ACTIONS(530), - [anon_sym_print] = ACTIONS(109), - [anon_sym_printf] = ACTIONS(111), - [anon_sym_SLASH] = ACTIONS(276), - [anon_sym_PLUS] = ACTIONS(115), - [anon_sym_DASH] = ACTIONS(115), - [anon_sym_BANG] = ACTIONS(278), - [anon_sym_PLUS_PLUS] = ACTIONS(280), - [anon_sym_DASH_DASH] = ACTIONS(280), - [anon_sym_DOLLAR] = ACTIONS(282), - [anon_sym_AT] = ACTIONS(284), - [aux_sym_number_token1] = ACTIONS(123), - [aux_sym_number_token2] = ACTIONS(286), - [anon_sym_DQUOTE] = ACTIONS(288), - [anon_sym_POUND] = ACTIONS(171), + [anon_sym_getline] = ACTIONS(111), + [sym_next_statement] = ACTIONS(462), + [sym_nextfile_statement] = ACTIONS(462), + [anon_sym_print] = ACTIONS(113), + [anon_sym_printf] = ACTIONS(115), + [anon_sym_SLASH] = ACTIONS(117), + [anon_sym_PLUS] = ACTIONS(119), + [anon_sym_DASH] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(121), + [anon_sym_PLUS_PLUS] = ACTIONS(123), + [anon_sym_DASH_DASH] = ACTIONS(123), + [anon_sym_DOLLAR] = ACTIONS(125), + [anon_sym_AT] = ACTIONS(127), + [aux_sym_number_token1] = ACTIONS(129), + [aux_sym_number_token2] = ACTIONS(131), + [anon_sym_DQUOTE] = ACTIONS(133), + [anon_sym_POUND] = ACTIONS(135), }, [115] = { - [sym__statement] = STATE(1159), - [sym__statement_separated] = STATE(141), - [sym__control_statement] = STATE(1159), - [sym_if_statement] = STATE(1159), - [sym_while_statement] = STATE(1159), - [sym_do_while_statement] = STATE(1159), - [sym_for_statement] = STATE(1159), - [sym_for_in_statement] = STATE(1159), - [sym_delete_statement] = STATE(1159), - [sym_exit_statement] = STATE(1159), - [sym_return_statement] = STATE(1159), - [sym_switch_statement] = STATE(1159), - [sym__io_statement] = STATE(1159), - [sym__getline_exp] = STATE(1547), - [sym_getline_input] = STATE(1547), - [sym_getline_file] = STATE(1547), - [sym_print_statement] = STATE(1697), - [sym_printf_statement] = STATE(1697), - [sym_redirected_io_statement] = STATE(1159), - [sym_piped_io_statement] = STATE(1159), - [sym_block] = STATE(1157), - [sym__exp] = STATE(1547), - [sym_ternary_exp] = STATE(1441), - [sym_binary_exp] = STATE(1441), - [sym__binary_in] = STATE(1309), - [sym_unary_exp] = STATE(1441), - [sym_update_exp] = STATE(1547), - [sym_assignment_exp] = STATE(1547), - [sym_piped_io_exp] = STATE(1547), - [sym_string_concat] = STATE(1441), - [sym_field_ref] = STATE(995), - [sym_array_ref] = STATE(774), - [sym_regex] = STATE(1547), - [sym_regex_constant] = STATE(1547), - [sym_grouping] = STATE(1441), - [sym__primitive] = STATE(1441), - [sym_namespace] = STATE(2063), - [sym_ns_qualified_name] = STATE(647), - [sym_number] = STATE(1441), - [sym_string] = STATE(1441), - [sym_func_call] = STATE(1441), - [sym_indirect_func_call] = STATE(1547), - [sym_comment] = STATE(119), - [aux_sym_if_statement_repeat1] = STATE(119), - [sym_identifier] = ACTIONS(450), - [anon_sym_SEMI] = ACTIONS(300), - [anon_sym_if] = ACTIONS(454), - [anon_sym_LPAREN] = ACTIONS(456), - [anon_sym_while] = ACTIONS(458), + [sym__statement] = STATE(1192), + [sym__statement_separated] = STATE(1192), + [sym__control_statement] = STATE(1192), + [sym_if_statement] = STATE(1192), + [sym_while_statement] = STATE(1192), + [sym_do_while_statement] = STATE(1192), + [sym_for_statement] = STATE(1192), + [sym_for_in_statement] = STATE(1192), + [sym_delete_statement] = STATE(1192), + [sym_exit_statement] = STATE(1192), + [sym_return_statement] = STATE(1192), + [sym_switch_statement] = STATE(1192), + [sym__io_statement] = STATE(1192), + [sym__getline_exp] = STATE(483), + [sym_getline_input] = STATE(483), + [sym_getline_file] = STATE(483), + [sym_print_statement] = STATE(770), + [sym_printf_statement] = STATE(770), + [sym_redirected_io_statement] = STATE(1192), + [sym_piped_io_statement] = STATE(1192), + [sym_block] = STATE(1191), + [sym__exp] = STATE(483), + [sym_ternary_exp] = STATE(359), + [sym_binary_exp] = STATE(359), + [sym__binary_in] = STATE(373), + [sym_unary_exp] = STATE(359), + [sym_update_exp] = STATE(483), + [sym_assignment_exp] = STATE(483), + [sym_piped_io_exp] = STATE(483), + [sym_string_concat] = STATE(359), + [sym_field_ref] = STATE(258), + [sym_array_ref] = STATE(219), + [sym_regex] = STATE(483), + [sym_regex_constant] = STATE(483), + [sym_grouping] = STATE(359), + [sym__primitive] = STATE(359), + [sym_namespace] = STATE(2068), + [sym_ns_qualified_name] = STATE(200), + [sym_number] = STATE(359), + [sym_string] = STATE(359), + [sym_func_call] = STATE(359), + [sym_indirect_func_call] = STATE(483), + [sym_comment] = STATE(120), + [aux_sym_if_statement_repeat1] = STATE(120), + [sym_identifier] = ACTIONS(530), + [anon_sym_SEMI] = ACTIONS(412), + [anon_sym_if] = ACTIONS(532), + [anon_sym_LPAREN] = ACTIONS(534), + [anon_sym_while] = ACTIONS(536), [anon_sym_do] = ACTIONS(49), - [anon_sym_for] = ACTIONS(460), - [sym_break_statement] = ACTIONS(310), - [sym_continue_statement] = ACTIONS(310), + [anon_sym_for] = ACTIONS(538), + [sym_break_statement] = ACTIONS(414), + [sym_continue_statement] = ACTIONS(414), [anon_sym_delete] = ACTIONS(55), - [anon_sym_exit] = ACTIONS(464), - [anon_sym_return] = ACTIONS(466), + [anon_sym_exit] = ACTIONS(540), + [anon_sym_return] = ACTIONS(542), [anon_sym_switch] = ACTIONS(61), [anon_sym_LBRACE] = ACTIONS(316), - [anon_sym_getline] = ACTIONS(468), - [sym_next_statement] = ACTIONS(310), - [sym_nextfile_statement] = ACTIONS(310), - [anon_sym_print] = ACTIONS(470), - [anon_sym_printf] = ACTIONS(472), - [anon_sym_SLASH] = ACTIONS(474), - [anon_sym_PLUS] = ACTIONS(476), - [anon_sym_DASH] = ACTIONS(476), - [anon_sym_BANG] = ACTIONS(478), - [anon_sym_PLUS_PLUS] = ACTIONS(480), - [anon_sym_DASH_DASH] = ACTIONS(480), - [anon_sym_DOLLAR] = ACTIONS(482), - [anon_sym_AT] = ACTIONS(484), - [aux_sym_number_token1] = ACTIONS(79), - [aux_sym_number_token2] = ACTIONS(486), - [anon_sym_DQUOTE] = ACTIONS(488), - [anon_sym_POUND] = ACTIONS(171), + [anon_sym_getline] = ACTIONS(544), + [sym_next_statement] = ACTIONS(414), + [sym_nextfile_statement] = ACTIONS(414), + [anon_sym_print] = ACTIONS(546), + [anon_sym_printf] = ACTIONS(548), + [anon_sym_SLASH] = ACTIONS(550), + [anon_sym_PLUS] = ACTIONS(552), + [anon_sym_DASH] = ACTIONS(552), + [anon_sym_BANG] = ACTIONS(554), + [anon_sym_PLUS_PLUS] = ACTIONS(556), + [anon_sym_DASH_DASH] = ACTIONS(556), + [anon_sym_DOLLAR] = ACTIONS(558), + [anon_sym_AT] = ACTIONS(560), + [aux_sym_number_token1] = ACTIONS(562), + [aux_sym_number_token2] = ACTIONS(564), + [anon_sym_DQUOTE] = ACTIONS(566), + [anon_sym_POUND] = ACTIONS(135), }, [116] = { - [sym__statement] = STATE(1162), - [sym__statement_separated] = STATE(2), - [sym__control_statement] = STATE(1162), - [sym_if_statement] = STATE(1162), - [sym_while_statement] = STATE(1162), - [sym_do_while_statement] = STATE(1162), - [sym_for_statement] = STATE(1162), - [sym_for_in_statement] = STATE(1162), - [sym_delete_statement] = STATE(1162), - [sym_exit_statement] = STATE(1162), - [sym_return_statement] = STATE(1162), - [sym_switch_statement] = STATE(1162), - [sym__io_statement] = STATE(1162), - [sym__getline_exp] = STATE(1462), - [sym_getline_input] = STATE(1462), - [sym_getline_file] = STATE(1462), - [sym_print_statement] = STATE(1695), - [sym_printf_statement] = STATE(1695), - [sym_redirected_io_statement] = STATE(1162), - [sym_piped_io_statement] = STATE(1162), - [sym_block] = STATE(1164), - [sym__exp] = STATE(1462), - [sym_ternary_exp] = STATE(1354), - [sym_binary_exp] = STATE(1354), - [sym__binary_in] = STATE(1309), - [sym_unary_exp] = STATE(1354), - [sym_update_exp] = STATE(1462), - [sym_assignment_exp] = STATE(1462), - [sym_piped_io_exp] = STATE(1462), - [sym_string_concat] = STATE(1354), - [sym_field_ref] = STATE(619), - [sym_array_ref] = STATE(603), - [sym_regex] = STATE(1462), - [sym_regex_constant] = STATE(1462), - [sym_grouping] = STATE(1354), - [sym__primitive] = STATE(1354), - [sym_namespace] = STATE(2063), - [sym_ns_qualified_name] = STATE(592), - [sym_number] = STATE(1354), - [sym_string] = STATE(1354), - [sym_func_call] = STATE(1354), - [sym_indirect_func_call] = STATE(1462), - [sym_comment] = STATE(1238), - [aux_sym_if_statement_repeat1] = STATE(1238), - [sym_identifier] = ACTIONS(39), - [anon_sym_SEMI] = ACTIONS(410), - [anon_sym_if] = ACTIONS(43), - [anon_sym_LPAREN] = ACTIONS(552), - [anon_sym_while] = ACTIONS(47), + [sym__statement] = STATE(1186), + [sym__statement_separated] = STATE(1186), + [sym__control_statement] = STATE(1186), + [sym_if_statement] = STATE(1186), + [sym_while_statement] = STATE(1186), + [sym_do_while_statement] = STATE(1186), + [sym_for_statement] = STATE(1186), + [sym_for_in_statement] = STATE(1186), + [sym_delete_statement] = STATE(1186), + [sym_exit_statement] = STATE(1186), + [sym_return_statement] = STATE(1186), + [sym_switch_statement] = STATE(1186), + [sym__io_statement] = STATE(1186), + [sym__getline_exp] = STATE(483), + [sym_getline_input] = STATE(483), + [sym_getline_file] = STATE(483), + [sym_print_statement] = STATE(770), + [sym_printf_statement] = STATE(770), + [sym_redirected_io_statement] = STATE(1186), + [sym_piped_io_statement] = STATE(1186), + [sym_block] = STATE(1181), + [sym__exp] = STATE(483), + [sym_ternary_exp] = STATE(359), + [sym_binary_exp] = STATE(359), + [sym__binary_in] = STATE(373), + [sym_unary_exp] = STATE(359), + [sym_update_exp] = STATE(483), + [sym_assignment_exp] = STATE(483), + [sym_piped_io_exp] = STATE(483), + [sym_string_concat] = STATE(359), + [sym_field_ref] = STATE(258), + [sym_array_ref] = STATE(219), + [sym_regex] = STATE(483), + [sym_regex_constant] = STATE(483), + [sym_grouping] = STATE(359), + [sym__primitive] = STATE(359), + [sym_namespace] = STATE(2068), + [sym_ns_qualified_name] = STATE(200), + [sym_number] = STATE(359), + [sym_string] = STATE(359), + [sym_func_call] = STATE(359), + [sym_indirect_func_call] = STATE(483), + [sym_comment] = STATE(124), + [aux_sym_if_statement_repeat1] = STATE(124), + [sym_identifier] = ACTIONS(530), + [anon_sym_SEMI] = ACTIONS(408), + [anon_sym_if] = ACTIONS(532), + [anon_sym_LPAREN] = ACTIONS(534), + [anon_sym_while] = ACTIONS(536), [anon_sym_do] = ACTIONS(49), - [anon_sym_for] = ACTIONS(51), - [sym_break_statement] = ACTIONS(412), - [sym_continue_statement] = ACTIONS(412), + [anon_sym_for] = ACTIONS(538), + [sym_break_statement] = ACTIONS(410), + [sym_continue_statement] = ACTIONS(410), [anon_sym_delete] = ACTIONS(55), - [anon_sym_exit] = ACTIONS(57), - [anon_sym_return] = ACTIONS(59), + [anon_sym_exit] = ACTIONS(540), + [anon_sym_return] = ACTIONS(542), [anon_sym_switch] = ACTIONS(61), [anon_sym_LBRACE] = ACTIONS(316), - [anon_sym_getline] = ACTIONS(63), - [sym_next_statement] = ACTIONS(412), - [sym_nextfile_statement] = ACTIONS(412), - [anon_sym_print] = ACTIONS(65), - [anon_sym_printf] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(554), - [anon_sym_PLUS] = ACTIONS(71), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_BANG] = ACTIONS(556), - [anon_sym_PLUS_PLUS] = ACTIONS(558), - [anon_sym_DASH_DASH] = ACTIONS(558), - [anon_sym_DOLLAR] = ACTIONS(560), - [anon_sym_AT] = ACTIONS(562), - [aux_sym_number_token1] = ACTIONS(79), - [aux_sym_number_token2] = ACTIONS(486), - [anon_sym_DQUOTE] = ACTIONS(488), - [anon_sym_POUND] = ACTIONS(171), + [anon_sym_getline] = ACTIONS(544), + [sym_next_statement] = ACTIONS(410), + [sym_nextfile_statement] = ACTIONS(410), + [anon_sym_print] = ACTIONS(546), + [anon_sym_printf] = ACTIONS(548), + [anon_sym_SLASH] = ACTIONS(550), + [anon_sym_PLUS] = ACTIONS(552), + [anon_sym_DASH] = ACTIONS(552), + [anon_sym_BANG] = ACTIONS(554), + [anon_sym_PLUS_PLUS] = ACTIONS(556), + [anon_sym_DASH_DASH] = ACTIONS(556), + [anon_sym_DOLLAR] = ACTIONS(558), + [anon_sym_AT] = ACTIONS(560), + [aux_sym_number_token1] = ACTIONS(562), + [aux_sym_number_token2] = ACTIONS(564), + [anon_sym_DQUOTE] = ACTIONS(566), + [anon_sym_POUND] = ACTIONS(135), }, [117] = { - [sym__statement] = STATE(1208), - [sym__statement_separated] = STATE(1208), - [sym__control_statement] = STATE(1208), - [sym_if_statement] = STATE(1208), - [sym_while_statement] = STATE(1208), - [sym_do_while_statement] = STATE(1208), - [sym_for_statement] = STATE(1208), - [sym_for_in_statement] = STATE(1208), - [sym_delete_statement] = STATE(1208), - [sym_exit_statement] = STATE(1208), - [sym_return_statement] = STATE(1208), - [sym_switch_statement] = STATE(1208), - [sym__io_statement] = STATE(1208), + [sym__statement] = STATE(1190), + [sym__statement_separated] = STATE(1190), + [sym__control_statement] = STATE(1190), + [sym_if_statement] = STATE(1190), + [sym_while_statement] = STATE(1190), + [sym_do_while_statement] = STATE(1190), + [sym_for_statement] = STATE(1190), + [sym_for_in_statement] = STATE(1190), + [sym_delete_statement] = STATE(1190), + [sym_exit_statement] = STATE(1190), + [sym_return_statement] = STATE(1190), + [sym_switch_statement] = STATE(1190), + [sym__io_statement] = STATE(1190), + [sym__getline_exp] = STATE(483), + [sym_getline_input] = STATE(483), + [sym_getline_file] = STATE(483), + [sym_print_statement] = STATE(770), + [sym_printf_statement] = STATE(770), + [sym_redirected_io_statement] = STATE(1190), + [sym_piped_io_statement] = STATE(1190), + [sym_block] = STATE(1193), + [sym__exp] = STATE(483), + [sym_ternary_exp] = STATE(359), + [sym_binary_exp] = STATE(359), + [sym__binary_in] = STATE(373), + [sym_unary_exp] = STATE(359), + [sym_update_exp] = STATE(483), + [sym_assignment_exp] = STATE(483), + [sym_piped_io_exp] = STATE(483), + [sym_string_concat] = STATE(359), + [sym_field_ref] = STATE(258), + [sym_array_ref] = STATE(219), + [sym_regex] = STATE(483), + [sym_regex_constant] = STATE(483), + [sym_grouping] = STATE(359), + [sym__primitive] = STATE(359), + [sym_namespace] = STATE(2068), + [sym_ns_qualified_name] = STATE(200), + [sym_number] = STATE(359), + [sym_string] = STATE(359), + [sym_func_call] = STATE(359), + [sym_indirect_func_call] = STATE(483), + [sym_comment] = STATE(125), + [aux_sym_if_statement_repeat1] = STATE(125), + [sym_identifier] = ACTIONS(530), + [anon_sym_SEMI] = ACTIONS(404), + [anon_sym_if] = ACTIONS(532), + [anon_sym_LPAREN] = ACTIONS(534), + [anon_sym_while] = ACTIONS(536), + [anon_sym_do] = ACTIONS(49), + [anon_sym_for] = ACTIONS(538), + [sym_break_statement] = ACTIONS(406), + [sym_continue_statement] = ACTIONS(406), + [anon_sym_delete] = ACTIONS(55), + [anon_sym_exit] = ACTIONS(540), + [anon_sym_return] = ACTIONS(542), + [anon_sym_switch] = ACTIONS(61), + [anon_sym_LBRACE] = ACTIONS(316), + [anon_sym_getline] = ACTIONS(544), + [sym_next_statement] = ACTIONS(406), + [sym_nextfile_statement] = ACTIONS(406), + [anon_sym_print] = ACTIONS(546), + [anon_sym_printf] = ACTIONS(548), + [anon_sym_SLASH] = ACTIONS(550), + [anon_sym_PLUS] = ACTIONS(552), + [anon_sym_DASH] = ACTIONS(552), + [anon_sym_BANG] = ACTIONS(554), + [anon_sym_PLUS_PLUS] = ACTIONS(556), + [anon_sym_DASH_DASH] = ACTIONS(556), + [anon_sym_DOLLAR] = ACTIONS(558), + [anon_sym_AT] = ACTIONS(560), + [aux_sym_number_token1] = ACTIONS(562), + [aux_sym_number_token2] = ACTIONS(564), + [anon_sym_DQUOTE] = ACTIONS(566), + [anon_sym_POUND] = ACTIONS(135), + }, + [118] = { + [sym__statement] = STATE(1216), + [sym__statement_separated] = STATE(1216), + [sym__control_statement] = STATE(1216), + [sym_if_statement] = STATE(1216), + [sym_while_statement] = STATE(1216), + [sym_do_while_statement] = STATE(1216), + [sym_for_statement] = STATE(1216), + [sym_for_in_statement] = STATE(1216), + [sym_delete_statement] = STATE(1216), + [sym_exit_statement] = STATE(1216), + [sym_return_statement] = STATE(1216), + [sym_switch_statement] = STATE(1216), + [sym__io_statement] = STATE(1216), [sym__getline_exp] = STATE(503), [sym_getline_input] = STATE(503), [sym_getline_file] = STATE(503), - [sym_print_statement] = STATE(890), - [sym_printf_statement] = STATE(890), - [sym_redirected_io_statement] = STATE(1208), - [sym_piped_io_statement] = STATE(1208), - [sym_block] = STATE(1209), + [sym_print_statement] = STATE(869), + [sym_printf_statement] = STATE(869), + [sym_redirected_io_statement] = STATE(1216), + [sym_piped_io_statement] = STATE(1216), + [sym_block] = STATE(1220), [sym__exp] = STATE(503), - [sym_ternary_exp] = STATE(447), - [sym_binary_exp] = STATE(447), - [sym__binary_in] = STATE(446), - [sym_unary_exp] = STATE(447), + [sym_ternary_exp] = STATE(427), + [sym_binary_exp] = STATE(427), + [sym__binary_in] = STATE(426), + [sym_unary_exp] = STATE(427), [sym_update_exp] = STATE(503), [sym_assignment_exp] = STATE(503), [sym_piped_io_exp] = STATE(503), - [sym_string_concat] = STATE(447), - [sym_field_ref] = STATE(272), - [sym_array_ref] = STATE(253), + [sym_string_concat] = STATE(427), + [sym_field_ref] = STATE(274), + [sym_array_ref] = STATE(268), [sym_regex] = STATE(503), [sym_regex_constant] = STATE(503), - [sym_grouping] = STATE(447), - [sym__primitive] = STATE(447), - [sym_namespace] = STATE(1955), - [sym_ns_qualified_name] = STATE(221), - [sym_number] = STATE(447), - [sym_string] = STATE(447), - [sym_func_call] = STATE(447), + [sym_grouping] = STATE(427), + [sym__primitive] = STATE(427), + [sym_namespace] = STATE(1956), + [sym_ns_qualified_name] = STATE(244), + [sym_number] = STATE(427), + [sym_string] = STATE(427), + [sym_func_call] = STATE(427), [sym_indirect_func_call] = STATE(503), - [sym_comment] = STATE(1238), - [aux_sym_if_statement_repeat1] = STATE(1238), - [sym_identifier] = ACTIONS(127), - [anon_sym_SEMI] = ACTIONS(536), - [anon_sym_if] = ACTIONS(129), - [anon_sym_LPAREN] = ACTIONS(131), - [anon_sym_while] = ACTIONS(133), + [sym_comment] = STATE(1252), + [aux_sym_if_statement_repeat1] = STATE(1252), + [sym_identifier] = ACTIONS(85), + [anon_sym_SEMI] = ACTIONS(480), + [anon_sym_if] = ACTIONS(87), + [anon_sym_LPAREN] = ACTIONS(89), + [anon_sym_while] = ACTIONS(91), [anon_sym_do] = ACTIONS(93), - [anon_sym_for] = ACTIONS(135), - [sym_break_statement] = ACTIONS(538), - [sym_continue_statement] = ACTIONS(538), + [anon_sym_for] = ACTIONS(95), + [sym_break_statement] = ACTIONS(482), + [sym_continue_statement] = ACTIONS(482), [anon_sym_delete] = ACTIONS(99), - [anon_sym_exit] = ACTIONS(139), - [anon_sym_return] = ACTIONS(141), + [anon_sym_exit] = ACTIONS(101), + [anon_sym_return] = ACTIONS(103), [anon_sym_switch] = ACTIONS(105), [anon_sym_LBRACE] = ACTIONS(268), - [anon_sym_getline] = ACTIONS(147), - [sym_next_statement] = ACTIONS(538), - [sym_nextfile_statement] = ACTIONS(538), - [anon_sym_print] = ACTIONS(149), - [anon_sym_printf] = ACTIONS(151), - [anon_sym_SLASH] = ACTIONS(153), - [anon_sym_PLUS] = ACTIONS(155), - [anon_sym_DASH] = ACTIONS(155), - [anon_sym_BANG] = ACTIONS(157), - [anon_sym_PLUS_PLUS] = ACTIONS(159), - [anon_sym_DASH_DASH] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(161), - [anon_sym_AT] = ACTIONS(163), - [aux_sym_number_token1] = ACTIONS(165), - [aux_sym_number_token2] = ACTIONS(167), - [anon_sym_DQUOTE] = ACTIONS(169), - [anon_sym_POUND] = ACTIONS(171), - }, - [118] = { - [sym__statement] = STATE(1155), - [sym__statement_separated] = STATE(2), - [sym__control_statement] = STATE(1155), - [sym_if_statement] = STATE(1155), - [sym_while_statement] = STATE(1155), - [sym_do_while_statement] = STATE(1155), - [sym_for_statement] = STATE(1155), - [sym_for_in_statement] = STATE(1155), - [sym_delete_statement] = STATE(1155), - [sym_exit_statement] = STATE(1155), - [sym_return_statement] = STATE(1155), - [sym_switch_statement] = STATE(1155), - [sym__io_statement] = STATE(1155), - [sym__getline_exp] = STATE(1462), - [sym_getline_input] = STATE(1462), - [sym_getline_file] = STATE(1462), - [sym_print_statement] = STATE(1695), - [sym_printf_statement] = STATE(1695), - [sym_redirected_io_statement] = STATE(1155), - [sym_piped_io_statement] = STATE(1155), - [sym_block] = STATE(1158), - [sym__exp] = STATE(1462), - [sym_ternary_exp] = STATE(1354), - [sym_binary_exp] = STATE(1354), - [sym__binary_in] = STATE(1309), - [sym_unary_exp] = STATE(1354), - [sym_update_exp] = STATE(1462), - [sym_assignment_exp] = STATE(1462), - [sym_piped_io_exp] = STATE(1462), - [sym_string_concat] = STATE(1354), - [sym_field_ref] = STATE(619), - [sym_array_ref] = STATE(603), - [sym_regex] = STATE(1462), - [sym_regex_constant] = STATE(1462), - [sym_grouping] = STATE(1354), - [sym__primitive] = STATE(1354), - [sym_namespace] = STATE(2063), - [sym_ns_qualified_name] = STATE(592), - [sym_number] = STATE(1354), - [sym_string] = STATE(1354), - [sym_func_call] = STATE(1354), - [sym_indirect_func_call] = STATE(1462), - [sym_comment] = STATE(1238), - [aux_sym_if_statement_repeat1] = STATE(1238), - [sym_identifier] = ACTIONS(39), - [anon_sym_SEMI] = ACTIONS(414), - [anon_sym_if] = ACTIONS(43), - [anon_sym_LPAREN] = ACTIONS(552), - [anon_sym_while] = ACTIONS(47), - [anon_sym_do] = ACTIONS(49), - [anon_sym_for] = ACTIONS(51), - [sym_break_statement] = ACTIONS(416), - [sym_continue_statement] = ACTIONS(416), - [anon_sym_delete] = ACTIONS(55), - [anon_sym_exit] = ACTIONS(57), - [anon_sym_return] = ACTIONS(59), - [anon_sym_switch] = ACTIONS(61), - [anon_sym_LBRACE] = ACTIONS(316), - [anon_sym_getline] = ACTIONS(63), - [sym_next_statement] = ACTIONS(416), - [sym_nextfile_statement] = ACTIONS(416), - [anon_sym_print] = ACTIONS(65), - [anon_sym_printf] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(554), - [anon_sym_PLUS] = ACTIONS(71), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_BANG] = ACTIONS(556), - [anon_sym_PLUS_PLUS] = ACTIONS(558), - [anon_sym_DASH_DASH] = ACTIONS(558), - [anon_sym_DOLLAR] = ACTIONS(560), - [anon_sym_AT] = ACTIONS(562), - [aux_sym_number_token1] = ACTIONS(79), - [aux_sym_number_token2] = ACTIONS(486), - [anon_sym_DQUOTE] = ACTIONS(488), - [anon_sym_POUND] = ACTIONS(171), + [anon_sym_getline] = ACTIONS(111), + [sym_next_statement] = ACTIONS(482), + [sym_nextfile_statement] = ACTIONS(482), + [anon_sym_print] = ACTIONS(113), + [anon_sym_printf] = ACTIONS(115), + [anon_sym_SLASH] = ACTIONS(117), + [anon_sym_PLUS] = ACTIONS(119), + [anon_sym_DASH] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(121), + [anon_sym_PLUS_PLUS] = ACTIONS(123), + [anon_sym_DASH_DASH] = ACTIONS(123), + [anon_sym_DOLLAR] = ACTIONS(125), + [anon_sym_AT] = ACTIONS(127), + [aux_sym_number_token1] = ACTIONS(129), + [aux_sym_number_token2] = ACTIONS(131), + [anon_sym_DQUOTE] = ACTIONS(133), + [anon_sym_POUND] = ACTIONS(135), }, [119] = { - [sym__statement] = STATE(1169), - [sym__statement_separated] = STATE(141), - [sym__control_statement] = STATE(1169), - [sym_if_statement] = STATE(1169), - [sym_while_statement] = STATE(1169), - [sym_do_while_statement] = STATE(1169), - [sym_for_statement] = STATE(1169), - [sym_for_in_statement] = STATE(1169), - [sym_delete_statement] = STATE(1169), - [sym_exit_statement] = STATE(1169), - [sym_return_statement] = STATE(1169), - [sym_switch_statement] = STATE(1169), - [sym__io_statement] = STATE(1169), - [sym__getline_exp] = STATE(1547), - [sym_getline_input] = STATE(1547), - [sym_getline_file] = STATE(1547), - [sym_print_statement] = STATE(1697), - [sym_printf_statement] = STATE(1697), - [sym_redirected_io_statement] = STATE(1169), - [sym_piped_io_statement] = STATE(1169), - [sym_block] = STATE(1161), - [sym__exp] = STATE(1547), - [sym_ternary_exp] = STATE(1441), - [sym_binary_exp] = STATE(1441), - [sym__binary_in] = STATE(1309), - [sym_unary_exp] = STATE(1441), - [sym_update_exp] = STATE(1547), - [sym_assignment_exp] = STATE(1547), - [sym_piped_io_exp] = STATE(1547), - [sym_string_concat] = STATE(1441), - [sym_field_ref] = STATE(995), - [sym_array_ref] = STATE(774), - [sym_regex] = STATE(1547), - [sym_regex_constant] = STATE(1547), - [sym_grouping] = STATE(1441), - [sym__primitive] = STATE(1441), - [sym_namespace] = STATE(2063), - [sym_ns_qualified_name] = STATE(647), - [sym_number] = STATE(1441), - [sym_string] = STATE(1441), - [sym_func_call] = STATE(1441), - [sym_indirect_func_call] = STATE(1547), - [sym_comment] = STATE(1238), - [aux_sym_if_statement_repeat1] = STATE(1238), - [sym_identifier] = ACTIONS(450), - [anon_sym_SEMI] = ACTIONS(574), - [anon_sym_if] = ACTIONS(454), - [anon_sym_LPAREN] = ACTIONS(456), - [anon_sym_while] = ACTIONS(458), + [sym__statement] = STATE(1165), + [sym__statement_separated] = STATE(1165), + [sym__control_statement] = STATE(1165), + [sym_if_statement] = STATE(1165), + [sym_while_statement] = STATE(1165), + [sym_do_while_statement] = STATE(1165), + [sym_for_statement] = STATE(1165), + [sym_for_in_statement] = STATE(1165), + [sym_delete_statement] = STATE(1165), + [sym_exit_statement] = STATE(1165), + [sym_return_statement] = STATE(1165), + [sym_switch_statement] = STATE(1165), + [sym__io_statement] = STATE(1165), + [sym__getline_exp] = STATE(483), + [sym_getline_input] = STATE(483), + [sym_getline_file] = STATE(483), + [sym_print_statement] = STATE(770), + [sym_printf_statement] = STATE(770), + [sym_redirected_io_statement] = STATE(1165), + [sym_piped_io_statement] = STATE(1165), + [sym_block] = STATE(1166), + [sym__exp] = STATE(483), + [sym_ternary_exp] = STATE(359), + [sym_binary_exp] = STATE(359), + [sym__binary_in] = STATE(373), + [sym_unary_exp] = STATE(359), + [sym_update_exp] = STATE(483), + [sym_assignment_exp] = STATE(483), + [sym_piped_io_exp] = STATE(483), + [sym_string_concat] = STATE(359), + [sym_field_ref] = STATE(258), + [sym_array_ref] = STATE(219), + [sym_regex] = STATE(483), + [sym_regex_constant] = STATE(483), + [sym_grouping] = STATE(359), + [sym__primitive] = STATE(359), + [sym_namespace] = STATE(2068), + [sym_ns_qualified_name] = STATE(200), + [sym_number] = STATE(359), + [sym_string] = STATE(359), + [sym_func_call] = STATE(359), + [sym_indirect_func_call] = STATE(483), + [sym_comment] = STATE(1252), + [aux_sym_if_statement_repeat1] = STATE(1252), + [sym_identifier] = ACTIONS(530), + [anon_sym_SEMI] = ACTIONS(396), + [anon_sym_if] = ACTIONS(532), + [anon_sym_LPAREN] = ACTIONS(534), + [anon_sym_while] = ACTIONS(536), [anon_sym_do] = ACTIONS(49), - [anon_sym_for] = ACTIONS(460), - [sym_break_statement] = ACTIONS(576), - [sym_continue_statement] = ACTIONS(576), + [anon_sym_for] = ACTIONS(538), + [sym_break_statement] = ACTIONS(398), + [sym_continue_statement] = ACTIONS(398), [anon_sym_delete] = ACTIONS(55), - [anon_sym_exit] = ACTIONS(464), - [anon_sym_return] = ACTIONS(466), + [anon_sym_exit] = ACTIONS(540), + [anon_sym_return] = ACTIONS(542), [anon_sym_switch] = ACTIONS(61), [anon_sym_LBRACE] = ACTIONS(316), - [anon_sym_getline] = ACTIONS(468), - [sym_next_statement] = ACTIONS(576), - [sym_nextfile_statement] = ACTIONS(576), - [anon_sym_print] = ACTIONS(470), - [anon_sym_printf] = ACTIONS(472), - [anon_sym_SLASH] = ACTIONS(474), - [anon_sym_PLUS] = ACTIONS(476), - [anon_sym_DASH] = ACTIONS(476), - [anon_sym_BANG] = ACTIONS(478), - [anon_sym_PLUS_PLUS] = ACTIONS(480), - [anon_sym_DASH_DASH] = ACTIONS(480), - [anon_sym_DOLLAR] = ACTIONS(482), - [anon_sym_AT] = ACTIONS(484), - [aux_sym_number_token1] = ACTIONS(79), - [aux_sym_number_token2] = ACTIONS(486), - [anon_sym_DQUOTE] = ACTIONS(488), - [anon_sym_POUND] = ACTIONS(171), + [anon_sym_getline] = ACTIONS(544), + [sym_next_statement] = ACTIONS(398), + [sym_nextfile_statement] = ACTIONS(398), + [anon_sym_print] = ACTIONS(546), + [anon_sym_printf] = ACTIONS(548), + [anon_sym_SLASH] = ACTIONS(550), + [anon_sym_PLUS] = ACTIONS(552), + [anon_sym_DASH] = ACTIONS(552), + [anon_sym_BANG] = ACTIONS(554), + [anon_sym_PLUS_PLUS] = ACTIONS(556), + [anon_sym_DASH_DASH] = ACTIONS(556), + [anon_sym_DOLLAR] = ACTIONS(558), + [anon_sym_AT] = ACTIONS(560), + [aux_sym_number_token1] = ACTIONS(562), + [aux_sym_number_token2] = ACTIONS(564), + [anon_sym_DQUOTE] = ACTIONS(566), + [anon_sym_POUND] = ACTIONS(135), }, [120] = { - [sym__statement] = STATE(1153), - [sym__statement_separated] = STATE(2), - [sym__control_statement] = STATE(1153), - [sym_if_statement] = STATE(1153), - [sym_while_statement] = STATE(1153), - [sym_do_while_statement] = STATE(1153), - [sym_for_statement] = STATE(1153), - [sym_for_in_statement] = STATE(1153), - [sym_delete_statement] = STATE(1153), - [sym_exit_statement] = STATE(1153), - [sym_return_statement] = STATE(1153), - [sym_switch_statement] = STATE(1153), - [sym__io_statement] = STATE(1153), - [sym__getline_exp] = STATE(1462), - [sym_getline_input] = STATE(1462), - [sym_getline_file] = STATE(1462), - [sym_print_statement] = STATE(1695), - [sym_printf_statement] = STATE(1695), - [sym_redirected_io_statement] = STATE(1153), - [sym_piped_io_statement] = STATE(1153), - [sym_block] = STATE(1154), - [sym__exp] = STATE(1462), - [sym_ternary_exp] = STATE(1354), - [sym_binary_exp] = STATE(1354), - [sym__binary_in] = STATE(1309), - [sym_unary_exp] = STATE(1354), - [sym_update_exp] = STATE(1462), - [sym_assignment_exp] = STATE(1462), - [sym_piped_io_exp] = STATE(1462), - [sym_string_concat] = STATE(1354), - [sym_field_ref] = STATE(619), - [sym_array_ref] = STATE(603), - [sym_regex] = STATE(1462), - [sym_regex_constant] = STATE(1462), - [sym_grouping] = STATE(1354), - [sym__primitive] = STATE(1354), - [sym_namespace] = STATE(2063), - [sym_ns_qualified_name] = STATE(592), - [sym_number] = STATE(1354), - [sym_string] = STATE(1354), - [sym_func_call] = STATE(1354), - [sym_indirect_func_call] = STATE(1462), - [sym_comment] = STATE(74), - [aux_sym_if_statement_repeat1] = STATE(74), - [sym_identifier] = ACTIONS(39), - [anon_sym_SEMI] = ACTIONS(418), - [anon_sym_if] = ACTIONS(43), - [anon_sym_LPAREN] = ACTIONS(552), - [anon_sym_while] = ACTIONS(47), + [sym__statement] = STATE(1163), + [sym__statement_separated] = STATE(1163), + [sym__control_statement] = STATE(1163), + [sym_if_statement] = STATE(1163), + [sym_while_statement] = STATE(1163), + [sym_do_while_statement] = STATE(1163), + [sym_for_statement] = STATE(1163), + [sym_for_in_statement] = STATE(1163), + [sym_delete_statement] = STATE(1163), + [sym_exit_statement] = STATE(1163), + [sym_return_statement] = STATE(1163), + [sym_switch_statement] = STATE(1163), + [sym__io_statement] = STATE(1163), + [sym__getline_exp] = STATE(483), + [sym_getline_input] = STATE(483), + [sym_getline_file] = STATE(483), + [sym_print_statement] = STATE(770), + [sym_printf_statement] = STATE(770), + [sym_redirected_io_statement] = STATE(1163), + [sym_piped_io_statement] = STATE(1163), + [sym_block] = STATE(1164), + [sym__exp] = STATE(483), + [sym_ternary_exp] = STATE(359), + [sym_binary_exp] = STATE(359), + [sym__binary_in] = STATE(373), + [sym_unary_exp] = STATE(359), + [sym_update_exp] = STATE(483), + [sym_assignment_exp] = STATE(483), + [sym_piped_io_exp] = STATE(483), + [sym_string_concat] = STATE(359), + [sym_field_ref] = STATE(258), + [sym_array_ref] = STATE(219), + [sym_regex] = STATE(483), + [sym_regex_constant] = STATE(483), + [sym_grouping] = STATE(359), + [sym__primitive] = STATE(359), + [sym_namespace] = STATE(2068), + [sym_ns_qualified_name] = STATE(200), + [sym_number] = STATE(359), + [sym_string] = STATE(359), + [sym_func_call] = STATE(359), + [sym_indirect_func_call] = STATE(483), + [sym_comment] = STATE(1252), + [aux_sym_if_statement_repeat1] = STATE(1252), + [sym_identifier] = ACTIONS(530), + [anon_sym_SEMI] = ACTIONS(392), + [anon_sym_if] = ACTIONS(532), + [anon_sym_LPAREN] = ACTIONS(534), + [anon_sym_while] = ACTIONS(536), [anon_sym_do] = ACTIONS(49), - [anon_sym_for] = ACTIONS(51), - [sym_break_statement] = ACTIONS(420), - [sym_continue_statement] = ACTIONS(420), + [anon_sym_for] = ACTIONS(538), + [sym_break_statement] = ACTIONS(394), + [sym_continue_statement] = ACTIONS(394), [anon_sym_delete] = ACTIONS(55), - [anon_sym_exit] = ACTIONS(57), - [anon_sym_return] = ACTIONS(59), + [anon_sym_exit] = ACTIONS(540), + [anon_sym_return] = ACTIONS(542), [anon_sym_switch] = ACTIONS(61), [anon_sym_LBRACE] = ACTIONS(316), - [anon_sym_getline] = ACTIONS(63), - [sym_next_statement] = ACTIONS(420), - [sym_nextfile_statement] = ACTIONS(420), - [anon_sym_print] = ACTIONS(65), - [anon_sym_printf] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(554), - [anon_sym_PLUS] = ACTIONS(71), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_BANG] = ACTIONS(556), - [anon_sym_PLUS_PLUS] = ACTIONS(558), - [anon_sym_DASH_DASH] = ACTIONS(558), - [anon_sym_DOLLAR] = ACTIONS(560), - [anon_sym_AT] = ACTIONS(562), - [aux_sym_number_token1] = ACTIONS(79), - [aux_sym_number_token2] = ACTIONS(486), - [anon_sym_DQUOTE] = ACTIONS(488), - [anon_sym_POUND] = ACTIONS(171), + [anon_sym_getline] = ACTIONS(544), + [sym_next_statement] = ACTIONS(394), + [sym_nextfile_statement] = ACTIONS(394), + [anon_sym_print] = ACTIONS(546), + [anon_sym_printf] = ACTIONS(548), + [anon_sym_SLASH] = ACTIONS(550), + [anon_sym_PLUS] = ACTIONS(552), + [anon_sym_DASH] = ACTIONS(552), + [anon_sym_BANG] = ACTIONS(554), + [anon_sym_PLUS_PLUS] = ACTIONS(556), + [anon_sym_DASH_DASH] = ACTIONS(556), + [anon_sym_DOLLAR] = ACTIONS(558), + [anon_sym_AT] = ACTIONS(560), + [aux_sym_number_token1] = ACTIONS(562), + [aux_sym_number_token2] = ACTIONS(564), + [anon_sym_DQUOTE] = ACTIONS(566), + [anon_sym_POUND] = ACTIONS(135), }, [121] = { - [sym__statement] = STATE(1178), - [sym__statement_separated] = STATE(141), - [sym__control_statement] = STATE(1178), - [sym_if_statement] = STATE(1178), - [sym_while_statement] = STATE(1178), - [sym_do_while_statement] = STATE(1178), - [sym_for_statement] = STATE(1178), - [sym_for_in_statement] = STATE(1178), - [sym_delete_statement] = STATE(1178), - [sym_exit_statement] = STATE(1178), - [sym_return_statement] = STATE(1178), - [sym_switch_statement] = STATE(1178), - [sym__io_statement] = STATE(1178), - [sym__getline_exp] = STATE(1547), - [sym_getline_input] = STATE(1547), - [sym_getline_file] = STATE(1547), - [sym_print_statement] = STATE(1697), - [sym_printf_statement] = STATE(1697), - [sym_redirected_io_statement] = STATE(1178), - [sym_piped_io_statement] = STATE(1178), - [sym_block] = STATE(1177), - [sym__exp] = STATE(1547), - [sym_ternary_exp] = STATE(1441), - [sym_binary_exp] = STATE(1441), - [sym__binary_in] = STATE(1309), - [sym_unary_exp] = STATE(1441), - [sym_update_exp] = STATE(1547), - [sym_assignment_exp] = STATE(1547), - [sym_piped_io_exp] = STATE(1547), - [sym_string_concat] = STATE(1441), - [sym_field_ref] = STATE(995), - [sym_array_ref] = STATE(774), - [sym_regex] = STATE(1547), - [sym_regex_constant] = STATE(1547), - [sym_grouping] = STATE(1441), - [sym__primitive] = STATE(1441), - [sym_namespace] = STATE(2063), - [sym_ns_qualified_name] = STATE(647), - [sym_number] = STATE(1441), - [sym_string] = STATE(1441), - [sym_func_call] = STATE(1441), - [sym_indirect_func_call] = STATE(1547), - [sym_comment] = STATE(122), - [aux_sym_if_statement_repeat1] = STATE(122), - [sym_identifier] = ACTIONS(450), - [anon_sym_SEMI] = ACTIONS(578), - [anon_sym_if] = ACTIONS(454), - [anon_sym_LPAREN] = ACTIONS(456), - [anon_sym_while] = ACTIONS(458), - [anon_sym_do] = ACTIONS(49), - [anon_sym_for] = ACTIONS(460), - [sym_break_statement] = ACTIONS(580), - [sym_continue_statement] = ACTIONS(580), - [anon_sym_delete] = ACTIONS(55), - [anon_sym_exit] = ACTIONS(464), - [anon_sym_return] = ACTIONS(466), - [anon_sym_switch] = ACTIONS(61), - [anon_sym_LBRACE] = ACTIONS(316), - [anon_sym_getline] = ACTIONS(468), - [sym_next_statement] = ACTIONS(580), - [sym_nextfile_statement] = ACTIONS(580), - [anon_sym_print] = ACTIONS(470), - [anon_sym_printf] = ACTIONS(472), - [anon_sym_SLASH] = ACTIONS(474), - [anon_sym_PLUS] = ACTIONS(476), - [anon_sym_DASH] = ACTIONS(476), - [anon_sym_BANG] = ACTIONS(478), - [anon_sym_PLUS_PLUS] = ACTIONS(480), - [anon_sym_DASH_DASH] = ACTIONS(480), - [anon_sym_DOLLAR] = ACTIONS(482), - [anon_sym_AT] = ACTIONS(484), - [aux_sym_number_token1] = ACTIONS(79), - [aux_sym_number_token2] = ACTIONS(486), - [anon_sym_DQUOTE] = ACTIONS(488), - [anon_sym_POUND] = ACTIONS(171), + [sym__statement] = STATE(1202), + [sym__statement_separated] = STATE(1202), + [sym__control_statement] = STATE(1202), + [sym_if_statement] = STATE(1202), + [sym_while_statement] = STATE(1202), + [sym_do_while_statement] = STATE(1202), + [sym_for_statement] = STATE(1202), + [sym_for_in_statement] = STATE(1202), + [sym_delete_statement] = STATE(1202), + [sym_exit_statement] = STATE(1202), + [sym_return_statement] = STATE(1202), + [sym_switch_statement] = STATE(1202), + [sym__io_statement] = STATE(1202), + [sym__getline_exp] = STATE(503), + [sym_getline_input] = STATE(503), + [sym_getline_file] = STATE(503), + [sym_print_statement] = STATE(869), + [sym_printf_statement] = STATE(869), + [sym_redirected_io_statement] = STATE(1202), + [sym_piped_io_statement] = STATE(1202), + [sym_block] = STATE(1203), + [sym__exp] = STATE(503), + [sym_ternary_exp] = STATE(427), + [sym_binary_exp] = STATE(427), + [sym__binary_in] = STATE(426), + [sym_unary_exp] = STATE(427), + [sym_update_exp] = STATE(503), + [sym_assignment_exp] = STATE(503), + [sym_piped_io_exp] = STATE(503), + [sym_string_concat] = STATE(427), + [sym_field_ref] = STATE(274), + [sym_array_ref] = STATE(268), + [sym_regex] = STATE(503), + [sym_regex_constant] = STATE(503), + [sym_grouping] = STATE(427), + [sym__primitive] = STATE(427), + [sym_namespace] = STATE(1956), + [sym_ns_qualified_name] = STATE(244), + [sym_number] = STATE(427), + [sym_string] = STATE(427), + [sym_func_call] = STATE(427), + [sym_indirect_func_call] = STATE(503), + [sym_comment] = STATE(1252), + [aux_sym_if_statement_repeat1] = STATE(1252), + [sym_identifier] = ACTIONS(85), + [anon_sym_SEMI] = ACTIONS(464), + [anon_sym_if] = ACTIONS(87), + [anon_sym_LPAREN] = ACTIONS(89), + [anon_sym_while] = ACTIONS(91), + [anon_sym_do] = ACTIONS(93), + [anon_sym_for] = ACTIONS(95), + [sym_break_statement] = ACTIONS(466), + [sym_continue_statement] = ACTIONS(466), + [anon_sym_delete] = ACTIONS(99), + [anon_sym_exit] = ACTIONS(101), + [anon_sym_return] = ACTIONS(103), + [anon_sym_switch] = ACTIONS(105), + [anon_sym_LBRACE] = ACTIONS(268), + [anon_sym_getline] = ACTIONS(111), + [sym_next_statement] = ACTIONS(466), + [sym_nextfile_statement] = ACTIONS(466), + [anon_sym_print] = ACTIONS(113), + [anon_sym_printf] = ACTIONS(115), + [anon_sym_SLASH] = ACTIONS(117), + [anon_sym_PLUS] = ACTIONS(119), + [anon_sym_DASH] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(121), + [anon_sym_PLUS_PLUS] = ACTIONS(123), + [anon_sym_DASH_DASH] = ACTIONS(123), + [anon_sym_DOLLAR] = ACTIONS(125), + [anon_sym_AT] = ACTIONS(127), + [aux_sym_number_token1] = ACTIONS(129), + [aux_sym_number_token2] = ACTIONS(131), + [anon_sym_DQUOTE] = ACTIONS(133), + [anon_sym_POUND] = ACTIONS(135), }, [122] = { - [sym__statement] = STATE(1193), - [sym__statement_separated] = STATE(141), - [sym__control_statement] = STATE(1193), - [sym_if_statement] = STATE(1193), - [sym_while_statement] = STATE(1193), - [sym_do_while_statement] = STATE(1193), - [sym_for_statement] = STATE(1193), - [sym_for_in_statement] = STATE(1193), - [sym_delete_statement] = STATE(1193), - [sym_exit_statement] = STATE(1193), - [sym_return_statement] = STATE(1193), - [sym_switch_statement] = STATE(1193), - [sym__io_statement] = STATE(1193), - [sym__getline_exp] = STATE(1547), - [sym_getline_input] = STATE(1547), - [sym_getline_file] = STATE(1547), - [sym_print_statement] = STATE(1697), - [sym_printf_statement] = STATE(1697), - [sym_redirected_io_statement] = STATE(1193), - [sym_piped_io_statement] = STATE(1193), - [sym_block] = STATE(1190), - [sym__exp] = STATE(1547), - [sym_ternary_exp] = STATE(1441), - [sym_binary_exp] = STATE(1441), - [sym__binary_in] = STATE(1309), - [sym_unary_exp] = STATE(1441), - [sym_update_exp] = STATE(1547), - [sym_assignment_exp] = STATE(1547), - [sym_piped_io_exp] = STATE(1547), - [sym_string_concat] = STATE(1441), - [sym_field_ref] = STATE(995), - [sym_array_ref] = STATE(774), - [sym_regex] = STATE(1547), - [sym_regex_constant] = STATE(1547), - [sym_grouping] = STATE(1441), - [sym__primitive] = STATE(1441), - [sym_namespace] = STATE(2063), - [sym_ns_qualified_name] = STATE(647), - [sym_number] = STATE(1441), - [sym_string] = STATE(1441), - [sym_func_call] = STATE(1441), - [sym_indirect_func_call] = STATE(1547), - [sym_comment] = STATE(1238), - [aux_sym_if_statement_repeat1] = STATE(1238), - [sym_identifier] = ACTIONS(450), - [anon_sym_SEMI] = ACTIONS(582), - [anon_sym_if] = ACTIONS(454), - [anon_sym_LPAREN] = ACTIONS(456), - [anon_sym_while] = ACTIONS(458), - [anon_sym_do] = ACTIONS(49), - [anon_sym_for] = ACTIONS(460), - [sym_break_statement] = ACTIONS(584), - [sym_continue_statement] = ACTIONS(584), - [anon_sym_delete] = ACTIONS(55), - [anon_sym_exit] = ACTIONS(464), - [anon_sym_return] = ACTIONS(466), - [anon_sym_switch] = ACTIONS(61), - [anon_sym_LBRACE] = ACTIONS(316), - [anon_sym_getline] = ACTIONS(468), - [sym_next_statement] = ACTIONS(584), - [sym_nextfile_statement] = ACTIONS(584), - [anon_sym_print] = ACTIONS(470), - [anon_sym_printf] = ACTIONS(472), - [anon_sym_SLASH] = ACTIONS(474), - [anon_sym_PLUS] = ACTIONS(476), - [anon_sym_DASH] = ACTIONS(476), - [anon_sym_BANG] = ACTIONS(478), - [anon_sym_PLUS_PLUS] = ACTIONS(480), - [anon_sym_DASH_DASH] = ACTIONS(480), - [anon_sym_DOLLAR] = ACTIONS(482), - [anon_sym_AT] = ACTIONS(484), - [aux_sym_number_token1] = ACTIONS(79), - [aux_sym_number_token2] = ACTIONS(486), - [anon_sym_DQUOTE] = ACTIONS(488), - [anon_sym_POUND] = ACTIONS(171), - }, - [123] = { - [sym__statement] = STATE(1189), - [sym__statement_separated] = STATE(141), - [sym__control_statement] = STATE(1189), - [sym_if_statement] = STATE(1189), - [sym_while_statement] = STATE(1189), - [sym_do_while_statement] = STATE(1189), - [sym_for_statement] = STATE(1189), - [sym_for_in_statement] = STATE(1189), - [sym_delete_statement] = STATE(1189), - [sym_exit_statement] = STATE(1189), - [sym_return_statement] = STATE(1189), - [sym_switch_statement] = STATE(1189), - [sym__io_statement] = STATE(1189), - [sym__getline_exp] = STATE(1547), - [sym_getline_input] = STATE(1547), - [sym_getline_file] = STATE(1547), - [sym_print_statement] = STATE(1697), - [sym_printf_statement] = STATE(1697), - [sym_redirected_io_statement] = STATE(1189), - [sym_piped_io_statement] = STATE(1189), - [sym_block] = STATE(1191), - [sym__exp] = STATE(1547), - [sym_ternary_exp] = STATE(1441), - [sym_binary_exp] = STATE(1441), - [sym__binary_in] = STATE(1309), - [sym_unary_exp] = STATE(1441), - [sym_update_exp] = STATE(1547), - [sym_assignment_exp] = STATE(1547), - [sym_piped_io_exp] = STATE(1547), - [sym_string_concat] = STATE(1441), - [sym_field_ref] = STATE(995), - [sym_array_ref] = STATE(774), - [sym_regex] = STATE(1547), - [sym_regex_constant] = STATE(1547), - [sym_grouping] = STATE(1441), - [sym__primitive] = STATE(1441), - [sym_namespace] = STATE(2063), - [sym_ns_qualified_name] = STATE(647), - [sym_number] = STATE(1441), - [sym_string] = STATE(1441), - [sym_func_call] = STATE(1441), - [sym_indirect_func_call] = STATE(1547), + [sym__statement] = STATE(1124), + [sym__statement_separated] = STATE(1124), + [sym__control_statement] = STATE(1124), + [sym_if_statement] = STATE(1124), + [sym_while_statement] = STATE(1124), + [sym_do_while_statement] = STATE(1124), + [sym_for_statement] = STATE(1124), + [sym_for_in_statement] = STATE(1124), + [sym_delete_statement] = STATE(1124), + [sym_exit_statement] = STATE(1124), + [sym_return_statement] = STATE(1124), + [sym_switch_statement] = STATE(1124), + [sym__io_statement] = STATE(1124), + [sym__getline_exp] = STATE(483), + [sym_getline_input] = STATE(483), + [sym_getline_file] = STATE(483), + [sym_print_statement] = STATE(770), + [sym_printf_statement] = STATE(770), + [sym_redirected_io_statement] = STATE(1124), + [sym_piped_io_statement] = STATE(1124), + [sym_block] = STATE(1162), + [sym__exp] = STATE(483), + [sym_ternary_exp] = STATE(359), + [sym_binary_exp] = STATE(359), + [sym__binary_in] = STATE(373), + [sym_unary_exp] = STATE(359), + [sym_update_exp] = STATE(483), + [sym_assignment_exp] = STATE(483), + [sym_piped_io_exp] = STATE(483), + [sym_string_concat] = STATE(359), + [sym_field_ref] = STATE(258), + [sym_array_ref] = STATE(219), + [sym_regex] = STATE(483), + [sym_regex_constant] = STATE(483), + [sym_grouping] = STATE(359), + [sym__primitive] = STATE(359), + [sym_namespace] = STATE(2068), + [sym_ns_qualified_name] = STATE(200), + [sym_number] = STATE(359), + [sym_string] = STATE(359), + [sym_func_call] = STATE(359), + [sym_indirect_func_call] = STATE(483), [sym_comment] = STATE(128), [aux_sym_if_statement_repeat1] = STATE(128), - [sym_identifier] = ACTIONS(450), - [anon_sym_SEMI] = ACTIONS(342), - [anon_sym_if] = ACTIONS(454), - [anon_sym_LPAREN] = ACTIONS(456), - [anon_sym_while] = ACTIONS(458), + [sym_identifier] = ACTIONS(530), + [anon_sym_SEMI] = ACTIONS(388), + [anon_sym_if] = ACTIONS(532), + [anon_sym_LPAREN] = ACTIONS(534), + [anon_sym_while] = ACTIONS(536), [anon_sym_do] = ACTIONS(49), - [anon_sym_for] = ACTIONS(460), - [sym_break_statement] = ACTIONS(344), - [sym_continue_statement] = ACTIONS(344), + [anon_sym_for] = ACTIONS(538), + [sym_break_statement] = ACTIONS(390), + [sym_continue_statement] = ACTIONS(390), [anon_sym_delete] = ACTIONS(55), - [anon_sym_exit] = ACTIONS(464), - [anon_sym_return] = ACTIONS(466), + [anon_sym_exit] = ACTIONS(540), + [anon_sym_return] = ACTIONS(542), [anon_sym_switch] = ACTIONS(61), [anon_sym_LBRACE] = ACTIONS(316), - [anon_sym_getline] = ACTIONS(468), - [sym_next_statement] = ACTIONS(344), - [sym_nextfile_statement] = ACTIONS(344), - [anon_sym_print] = ACTIONS(470), - [anon_sym_printf] = ACTIONS(472), - [anon_sym_SLASH] = ACTIONS(474), - [anon_sym_PLUS] = ACTIONS(476), - [anon_sym_DASH] = ACTIONS(476), - [anon_sym_BANG] = ACTIONS(478), - [anon_sym_PLUS_PLUS] = ACTIONS(480), - [anon_sym_DASH_DASH] = ACTIONS(480), - [anon_sym_DOLLAR] = ACTIONS(482), - [anon_sym_AT] = ACTIONS(484), - [aux_sym_number_token1] = ACTIONS(79), - [aux_sym_number_token2] = ACTIONS(486), - [anon_sym_DQUOTE] = ACTIONS(488), - [anon_sym_POUND] = ACTIONS(171), + [anon_sym_getline] = ACTIONS(544), + [sym_next_statement] = ACTIONS(390), + [sym_nextfile_statement] = ACTIONS(390), + [anon_sym_print] = ACTIONS(546), + [anon_sym_printf] = ACTIONS(548), + [anon_sym_SLASH] = ACTIONS(550), + [anon_sym_PLUS] = ACTIONS(552), + [anon_sym_DASH] = ACTIONS(552), + [anon_sym_BANG] = ACTIONS(554), + [anon_sym_PLUS_PLUS] = ACTIONS(556), + [anon_sym_DASH_DASH] = ACTIONS(556), + [anon_sym_DOLLAR] = ACTIONS(558), + [anon_sym_AT] = ACTIONS(560), + [aux_sym_number_token1] = ACTIONS(562), + [aux_sym_number_token2] = ACTIONS(564), + [anon_sym_DQUOTE] = ACTIONS(566), + [anon_sym_POUND] = ACTIONS(135), + }, + [123] = { + [sym__statement] = STATE(1211), + [sym__statement_separated] = STATE(1211), + [sym__control_statement] = STATE(1211), + [sym_if_statement] = STATE(1211), + [sym_while_statement] = STATE(1211), + [sym_do_while_statement] = STATE(1211), + [sym_for_statement] = STATE(1211), + [sym_for_in_statement] = STATE(1211), + [sym_delete_statement] = STATE(1211), + [sym_exit_statement] = STATE(1211), + [sym_return_statement] = STATE(1211), + [sym_switch_statement] = STATE(1211), + [sym__io_statement] = STATE(1211), + [sym__getline_exp] = STATE(503), + [sym_getline_input] = STATE(503), + [sym_getline_file] = STATE(503), + [sym_print_statement] = STATE(869), + [sym_printf_statement] = STATE(869), + [sym_redirected_io_statement] = STATE(1211), + [sym_piped_io_statement] = STATE(1211), + [sym_block] = STATE(1213), + [sym__exp] = STATE(503), + [sym_ternary_exp] = STATE(427), + [sym_binary_exp] = STATE(427), + [sym__binary_in] = STATE(426), + [sym_unary_exp] = STATE(427), + [sym_update_exp] = STATE(503), + [sym_assignment_exp] = STATE(503), + [sym_piped_io_exp] = STATE(503), + [sym_string_concat] = STATE(427), + [sym_field_ref] = STATE(274), + [sym_array_ref] = STATE(268), + [sym_regex] = STATE(503), + [sym_regex_constant] = STATE(503), + [sym_grouping] = STATE(427), + [sym__primitive] = STATE(427), + [sym_namespace] = STATE(1956), + [sym_ns_qualified_name] = STATE(244), + [sym_number] = STATE(427), + [sym_string] = STATE(427), + [sym_func_call] = STATE(427), + [sym_indirect_func_call] = STATE(503), + [sym_comment] = STATE(1252), + [aux_sym_if_statement_repeat1] = STATE(1252), + [sym_identifier] = ACTIONS(85), + [anon_sym_SEMI] = ACTIONS(476), + [anon_sym_if] = ACTIONS(87), + [anon_sym_LPAREN] = ACTIONS(89), + [anon_sym_while] = ACTIONS(91), + [anon_sym_do] = ACTIONS(93), + [anon_sym_for] = ACTIONS(95), + [sym_break_statement] = ACTIONS(478), + [sym_continue_statement] = ACTIONS(478), + [anon_sym_delete] = ACTIONS(99), + [anon_sym_exit] = ACTIONS(101), + [anon_sym_return] = ACTIONS(103), + [anon_sym_switch] = ACTIONS(105), + [anon_sym_LBRACE] = ACTIONS(268), + [anon_sym_getline] = ACTIONS(111), + [sym_next_statement] = ACTIONS(478), + [sym_nextfile_statement] = ACTIONS(478), + [anon_sym_print] = ACTIONS(113), + [anon_sym_printf] = ACTIONS(115), + [anon_sym_SLASH] = ACTIONS(117), + [anon_sym_PLUS] = ACTIONS(119), + [anon_sym_DASH] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(121), + [anon_sym_PLUS_PLUS] = ACTIONS(123), + [anon_sym_DASH_DASH] = ACTIONS(123), + [anon_sym_DOLLAR] = ACTIONS(125), + [anon_sym_AT] = ACTIONS(127), + [aux_sym_number_token1] = ACTIONS(129), + [aux_sym_number_token2] = ACTIONS(131), + [anon_sym_DQUOTE] = ACTIONS(133), + [anon_sym_POUND] = ACTIONS(135), }, [124] = { - [sym__statement] = STATE(1187), - [sym__statement_separated] = STATE(141), - [sym__control_statement] = STATE(1187), - [sym_if_statement] = STATE(1187), - [sym_while_statement] = STATE(1187), - [sym_do_while_statement] = STATE(1187), - [sym_for_statement] = STATE(1187), - [sym_for_in_statement] = STATE(1187), - [sym_delete_statement] = STATE(1187), - [sym_exit_statement] = STATE(1187), - [sym_return_statement] = STATE(1187), - [sym_switch_statement] = STATE(1187), - [sym__io_statement] = STATE(1187), - [sym__getline_exp] = STATE(1547), - [sym_getline_input] = STATE(1547), - [sym_getline_file] = STATE(1547), - [sym_print_statement] = STATE(1697), - [sym_printf_statement] = STATE(1697), - [sym_redirected_io_statement] = STATE(1187), - [sym_piped_io_statement] = STATE(1187), - [sym_block] = STATE(1188), - [sym__exp] = STATE(1547), - [sym_ternary_exp] = STATE(1441), - [sym_binary_exp] = STATE(1441), - [sym__binary_in] = STATE(1309), - [sym_unary_exp] = STATE(1441), - [sym_update_exp] = STATE(1547), - [sym_assignment_exp] = STATE(1547), - [sym_piped_io_exp] = STATE(1547), - [sym_string_concat] = STATE(1441), - [sym_field_ref] = STATE(995), - [sym_array_ref] = STATE(774), - [sym_regex] = STATE(1547), - [sym_regex_constant] = STATE(1547), - [sym_grouping] = STATE(1441), - [sym__primitive] = STATE(1441), - [sym_namespace] = STATE(2063), - [sym_ns_qualified_name] = STATE(647), - [sym_number] = STATE(1441), - [sym_string] = STATE(1441), - [sym_func_call] = STATE(1441), - [sym_indirect_func_call] = STATE(1547), - [sym_comment] = STATE(129), - [aux_sym_if_statement_repeat1] = STATE(129), - [sym_identifier] = ACTIONS(450), - [anon_sym_SEMI] = ACTIONS(350), - [anon_sym_if] = ACTIONS(454), - [anon_sym_LPAREN] = ACTIONS(456), - [anon_sym_while] = ACTIONS(458), + [sym__statement] = STATE(1148), + [sym__statement_separated] = STATE(1148), + [sym__control_statement] = STATE(1148), + [sym_if_statement] = STATE(1148), + [sym_while_statement] = STATE(1148), + [sym_do_while_statement] = STATE(1148), + [sym_for_statement] = STATE(1148), + [sym_for_in_statement] = STATE(1148), + [sym_delete_statement] = STATE(1148), + [sym_exit_statement] = STATE(1148), + [sym_return_statement] = STATE(1148), + [sym_switch_statement] = STATE(1148), + [sym__io_statement] = STATE(1148), + [sym__getline_exp] = STATE(483), + [sym_getline_input] = STATE(483), + [sym_getline_file] = STATE(483), + [sym_print_statement] = STATE(770), + [sym_printf_statement] = STATE(770), + [sym_redirected_io_statement] = STATE(1148), + [sym_piped_io_statement] = STATE(1148), + [sym_block] = STATE(1149), + [sym__exp] = STATE(483), + [sym_ternary_exp] = STATE(359), + [sym_binary_exp] = STATE(359), + [sym__binary_in] = STATE(373), + [sym_unary_exp] = STATE(359), + [sym_update_exp] = STATE(483), + [sym_assignment_exp] = STATE(483), + [sym_piped_io_exp] = STATE(483), + [sym_string_concat] = STATE(359), + [sym_field_ref] = STATE(258), + [sym_array_ref] = STATE(219), + [sym_regex] = STATE(483), + [sym_regex_constant] = STATE(483), + [sym_grouping] = STATE(359), + [sym__primitive] = STATE(359), + [sym_namespace] = STATE(2068), + [sym_ns_qualified_name] = STATE(200), + [sym_number] = STATE(359), + [sym_string] = STATE(359), + [sym_func_call] = STATE(359), + [sym_indirect_func_call] = STATE(483), + [sym_comment] = STATE(1252), + [aux_sym_if_statement_repeat1] = STATE(1252), + [sym_identifier] = ACTIONS(530), + [anon_sym_SEMI] = ACTIONS(384), + [anon_sym_if] = ACTIONS(532), + [anon_sym_LPAREN] = ACTIONS(534), + [anon_sym_while] = ACTIONS(536), [anon_sym_do] = ACTIONS(49), - [anon_sym_for] = ACTIONS(460), - [sym_break_statement] = ACTIONS(352), - [sym_continue_statement] = ACTIONS(352), + [anon_sym_for] = ACTIONS(538), + [sym_break_statement] = ACTIONS(386), + [sym_continue_statement] = ACTIONS(386), [anon_sym_delete] = ACTIONS(55), - [anon_sym_exit] = ACTIONS(464), - [anon_sym_return] = ACTIONS(466), + [anon_sym_exit] = ACTIONS(540), + [anon_sym_return] = ACTIONS(542), [anon_sym_switch] = ACTIONS(61), [anon_sym_LBRACE] = ACTIONS(316), - [anon_sym_getline] = ACTIONS(468), - [sym_next_statement] = ACTIONS(352), - [sym_nextfile_statement] = ACTIONS(352), - [anon_sym_print] = ACTIONS(470), - [anon_sym_printf] = ACTIONS(472), - [anon_sym_SLASH] = ACTIONS(474), - [anon_sym_PLUS] = ACTIONS(476), - [anon_sym_DASH] = ACTIONS(476), - [anon_sym_BANG] = ACTIONS(478), - [anon_sym_PLUS_PLUS] = ACTIONS(480), - [anon_sym_DASH_DASH] = ACTIONS(480), - [anon_sym_DOLLAR] = ACTIONS(482), - [anon_sym_AT] = ACTIONS(484), - [aux_sym_number_token1] = ACTIONS(79), - [aux_sym_number_token2] = ACTIONS(486), - [anon_sym_DQUOTE] = ACTIONS(488), - [anon_sym_POUND] = ACTIONS(171), + [anon_sym_getline] = ACTIONS(544), + [sym_next_statement] = ACTIONS(386), + [sym_nextfile_statement] = ACTIONS(386), + [anon_sym_print] = ACTIONS(546), + [anon_sym_printf] = ACTIONS(548), + [anon_sym_SLASH] = ACTIONS(550), + [anon_sym_PLUS] = ACTIONS(552), + [anon_sym_DASH] = ACTIONS(552), + [anon_sym_BANG] = ACTIONS(554), + [anon_sym_PLUS_PLUS] = ACTIONS(556), + [anon_sym_DASH_DASH] = ACTIONS(556), + [anon_sym_DOLLAR] = ACTIONS(558), + [anon_sym_AT] = ACTIONS(560), + [aux_sym_number_token1] = ACTIONS(562), + [aux_sym_number_token2] = ACTIONS(564), + [anon_sym_DQUOTE] = ACTIONS(566), + [anon_sym_POUND] = ACTIONS(135), }, [125] = { - [sym__statement] = STATE(1185), - [sym__statement_separated] = STATE(141), - [sym__control_statement] = STATE(1185), - [sym_if_statement] = STATE(1185), - [sym_while_statement] = STATE(1185), - [sym_do_while_statement] = STATE(1185), - [sym_for_statement] = STATE(1185), - [sym_for_in_statement] = STATE(1185), - [sym_delete_statement] = STATE(1185), - [sym_exit_statement] = STATE(1185), - [sym_return_statement] = STATE(1185), - [sym_switch_statement] = STATE(1185), - [sym__io_statement] = STATE(1185), - [sym__getline_exp] = STATE(1547), - [sym_getline_input] = STATE(1547), - [sym_getline_file] = STATE(1547), - [sym_print_statement] = STATE(1697), - [sym_printf_statement] = STATE(1697), - [sym_redirected_io_statement] = STATE(1185), - [sym_piped_io_statement] = STATE(1185), - [sym_block] = STATE(1186), - [sym__exp] = STATE(1547), - [sym_ternary_exp] = STATE(1441), - [sym_binary_exp] = STATE(1441), - [sym__binary_in] = STATE(1309), - [sym_unary_exp] = STATE(1441), - [sym_update_exp] = STATE(1547), - [sym_assignment_exp] = STATE(1547), - [sym_piped_io_exp] = STATE(1547), - [sym_string_concat] = STATE(1441), - [sym_field_ref] = STATE(995), - [sym_array_ref] = STATE(774), - [sym_regex] = STATE(1547), - [sym_regex_constant] = STATE(1547), - [sym_grouping] = STATE(1441), - [sym__primitive] = STATE(1441), - [sym_namespace] = STATE(2063), - [sym_ns_qualified_name] = STATE(647), - [sym_number] = STATE(1441), - [sym_string] = STATE(1441), - [sym_func_call] = STATE(1441), - [sym_indirect_func_call] = STATE(1547), - [sym_comment] = STATE(133), - [aux_sym_if_statement_repeat1] = STATE(133), - [sym_identifier] = ACTIONS(450), - [anon_sym_SEMI] = ACTIONS(354), - [anon_sym_if] = ACTIONS(454), - [anon_sym_LPAREN] = ACTIONS(456), - [anon_sym_while] = ACTIONS(458), + [sym__statement] = STATE(1146), + [sym__statement_separated] = STATE(1146), + [sym__control_statement] = STATE(1146), + [sym_if_statement] = STATE(1146), + [sym_while_statement] = STATE(1146), + [sym_do_while_statement] = STATE(1146), + [sym_for_statement] = STATE(1146), + [sym_for_in_statement] = STATE(1146), + [sym_delete_statement] = STATE(1146), + [sym_exit_statement] = STATE(1146), + [sym_return_statement] = STATE(1146), + [sym_switch_statement] = STATE(1146), + [sym__io_statement] = STATE(1146), + [sym__getline_exp] = STATE(483), + [sym_getline_input] = STATE(483), + [sym_getline_file] = STATE(483), + [sym_print_statement] = STATE(770), + [sym_printf_statement] = STATE(770), + [sym_redirected_io_statement] = STATE(1146), + [sym_piped_io_statement] = STATE(1146), + [sym_block] = STATE(1147), + [sym__exp] = STATE(483), + [sym_ternary_exp] = STATE(359), + [sym_binary_exp] = STATE(359), + [sym__binary_in] = STATE(373), + [sym_unary_exp] = STATE(359), + [sym_update_exp] = STATE(483), + [sym_assignment_exp] = STATE(483), + [sym_piped_io_exp] = STATE(483), + [sym_string_concat] = STATE(359), + [sym_field_ref] = STATE(258), + [sym_array_ref] = STATE(219), + [sym_regex] = STATE(483), + [sym_regex_constant] = STATE(483), + [sym_grouping] = STATE(359), + [sym__primitive] = STATE(359), + [sym_namespace] = STATE(2068), + [sym_ns_qualified_name] = STATE(200), + [sym_number] = STATE(359), + [sym_string] = STATE(359), + [sym_func_call] = STATE(359), + [sym_indirect_func_call] = STATE(483), + [sym_comment] = STATE(1252), + [aux_sym_if_statement_repeat1] = STATE(1252), + [sym_identifier] = ACTIONS(530), + [anon_sym_SEMI] = ACTIONS(380), + [anon_sym_if] = ACTIONS(532), + [anon_sym_LPAREN] = ACTIONS(534), + [anon_sym_while] = ACTIONS(536), [anon_sym_do] = ACTIONS(49), - [anon_sym_for] = ACTIONS(460), - [sym_break_statement] = ACTIONS(356), - [sym_continue_statement] = ACTIONS(356), + [anon_sym_for] = ACTIONS(538), + [sym_break_statement] = ACTIONS(382), + [sym_continue_statement] = ACTIONS(382), [anon_sym_delete] = ACTIONS(55), - [anon_sym_exit] = ACTIONS(464), - [anon_sym_return] = ACTIONS(466), + [anon_sym_exit] = ACTIONS(540), + [anon_sym_return] = ACTIONS(542), [anon_sym_switch] = ACTIONS(61), [anon_sym_LBRACE] = ACTIONS(316), - [anon_sym_getline] = ACTIONS(468), - [sym_next_statement] = ACTIONS(356), - [sym_nextfile_statement] = ACTIONS(356), - [anon_sym_print] = ACTIONS(470), - [anon_sym_printf] = ACTIONS(472), - [anon_sym_SLASH] = ACTIONS(474), - [anon_sym_PLUS] = ACTIONS(476), - [anon_sym_DASH] = ACTIONS(476), - [anon_sym_BANG] = ACTIONS(478), - [anon_sym_PLUS_PLUS] = ACTIONS(480), - [anon_sym_DASH_DASH] = ACTIONS(480), - [anon_sym_DOLLAR] = ACTIONS(482), - [anon_sym_AT] = ACTIONS(484), - [aux_sym_number_token1] = ACTIONS(79), - [aux_sym_number_token2] = ACTIONS(486), - [anon_sym_DQUOTE] = ACTIONS(488), - [anon_sym_POUND] = ACTIONS(171), + [anon_sym_getline] = ACTIONS(544), + [sym_next_statement] = ACTIONS(382), + [sym_nextfile_statement] = ACTIONS(382), + [anon_sym_print] = ACTIONS(546), + [anon_sym_printf] = ACTIONS(548), + [anon_sym_SLASH] = ACTIONS(550), + [anon_sym_PLUS] = ACTIONS(552), + [anon_sym_DASH] = ACTIONS(552), + [anon_sym_BANG] = ACTIONS(554), + [anon_sym_PLUS_PLUS] = ACTIONS(556), + [anon_sym_DASH_DASH] = ACTIONS(556), + [anon_sym_DOLLAR] = ACTIONS(558), + [anon_sym_AT] = ACTIONS(560), + [aux_sym_number_token1] = ACTIONS(562), + [aux_sym_number_token2] = ACTIONS(564), + [anon_sym_DQUOTE] = ACTIONS(566), + [anon_sym_POUND] = ACTIONS(135), }, [126] = { - [sym__statement] = STATE(1181), - [sym__statement_separated] = STATE(141), - [sym__control_statement] = STATE(1181), - [sym_if_statement] = STATE(1181), - [sym_while_statement] = STATE(1181), - [sym_do_while_statement] = STATE(1181), - [sym_for_statement] = STATE(1181), - [sym_for_in_statement] = STATE(1181), - [sym_delete_statement] = STATE(1181), - [sym_exit_statement] = STATE(1181), - [sym_return_statement] = STATE(1181), - [sym_switch_statement] = STATE(1181), - [sym__io_statement] = STATE(1181), - [sym__getline_exp] = STATE(1547), - [sym_getline_input] = STATE(1547), - [sym_getline_file] = STATE(1547), - [sym_print_statement] = STATE(1697), - [sym_printf_statement] = STATE(1697), - [sym_redirected_io_statement] = STATE(1181), - [sym_piped_io_statement] = STATE(1181), - [sym_block] = STATE(1182), - [sym__exp] = STATE(1547), - [sym_ternary_exp] = STATE(1441), - [sym_binary_exp] = STATE(1441), - [sym__binary_in] = STATE(1309), - [sym_unary_exp] = STATE(1441), - [sym_update_exp] = STATE(1547), - [sym_assignment_exp] = STATE(1547), - [sym_piped_io_exp] = STATE(1547), - [sym_string_concat] = STATE(1441), - [sym_field_ref] = STATE(995), - [sym_array_ref] = STATE(774), - [sym_regex] = STATE(1547), - [sym_regex_constant] = STATE(1547), - [sym_grouping] = STATE(1441), - [sym__primitive] = STATE(1441), - [sym_namespace] = STATE(2063), - [sym_ns_qualified_name] = STATE(647), - [sym_number] = STATE(1441), - [sym_string] = STATE(1441), - [sym_func_call] = STATE(1441), - [sym_indirect_func_call] = STATE(1547), - [sym_comment] = STATE(134), - [aux_sym_if_statement_repeat1] = STATE(134), - [sym_identifier] = ACTIONS(450), - [anon_sym_SEMI] = ACTIONS(358), - [anon_sym_if] = ACTIONS(454), - [anon_sym_LPAREN] = ACTIONS(456), - [anon_sym_while] = ACTIONS(458), + [sym__statement] = STATE(1144), + [sym__statement_separated] = STATE(1144), + [sym__control_statement] = STATE(1144), + [sym_if_statement] = STATE(1144), + [sym_while_statement] = STATE(1144), + [sym_do_while_statement] = STATE(1144), + [sym_for_statement] = STATE(1144), + [sym_for_in_statement] = STATE(1144), + [sym_delete_statement] = STATE(1144), + [sym_exit_statement] = STATE(1144), + [sym_return_statement] = STATE(1144), + [sym_switch_statement] = STATE(1144), + [sym__io_statement] = STATE(1144), + [sym__getline_exp] = STATE(483), + [sym_getline_input] = STATE(483), + [sym_getline_file] = STATE(483), + [sym_print_statement] = STATE(770), + [sym_printf_statement] = STATE(770), + [sym_redirected_io_statement] = STATE(1144), + [sym_piped_io_statement] = STATE(1144), + [sym_block] = STATE(1145), + [sym__exp] = STATE(483), + [sym_ternary_exp] = STATE(359), + [sym_binary_exp] = STATE(359), + [sym__binary_in] = STATE(373), + [sym_unary_exp] = STATE(359), + [sym_update_exp] = STATE(483), + [sym_assignment_exp] = STATE(483), + [sym_piped_io_exp] = STATE(483), + [sym_string_concat] = STATE(359), + [sym_field_ref] = STATE(258), + [sym_array_ref] = STATE(219), + [sym_regex] = STATE(483), + [sym_regex_constant] = STATE(483), + [sym_grouping] = STATE(359), + [sym__primitive] = STATE(359), + [sym_namespace] = STATE(2068), + [sym_ns_qualified_name] = STATE(200), + [sym_number] = STATE(359), + [sym_string] = STATE(359), + [sym_func_call] = STATE(359), + [sym_indirect_func_call] = STATE(483), + [sym_comment] = STATE(130), + [aux_sym_if_statement_repeat1] = STATE(130), + [sym_identifier] = ACTIONS(530), + [anon_sym_SEMI] = ACTIONS(376), + [anon_sym_if] = ACTIONS(532), + [anon_sym_LPAREN] = ACTIONS(534), + [anon_sym_while] = ACTIONS(536), [anon_sym_do] = ACTIONS(49), - [anon_sym_for] = ACTIONS(460), - [sym_break_statement] = ACTIONS(360), - [sym_continue_statement] = ACTIONS(360), + [anon_sym_for] = ACTIONS(538), + [sym_break_statement] = ACTIONS(378), + [sym_continue_statement] = ACTIONS(378), [anon_sym_delete] = ACTIONS(55), - [anon_sym_exit] = ACTIONS(464), - [anon_sym_return] = ACTIONS(466), + [anon_sym_exit] = ACTIONS(540), + [anon_sym_return] = ACTIONS(542), [anon_sym_switch] = ACTIONS(61), [anon_sym_LBRACE] = ACTIONS(316), - [anon_sym_getline] = ACTIONS(468), - [sym_next_statement] = ACTIONS(360), - [sym_nextfile_statement] = ACTIONS(360), - [anon_sym_print] = ACTIONS(470), - [anon_sym_printf] = ACTIONS(472), - [anon_sym_SLASH] = ACTIONS(474), - [anon_sym_PLUS] = ACTIONS(476), - [anon_sym_DASH] = ACTIONS(476), - [anon_sym_BANG] = ACTIONS(478), - [anon_sym_PLUS_PLUS] = ACTIONS(480), - [anon_sym_DASH_DASH] = ACTIONS(480), - [anon_sym_DOLLAR] = ACTIONS(482), - [anon_sym_AT] = ACTIONS(484), - [aux_sym_number_token1] = ACTIONS(79), - [aux_sym_number_token2] = ACTIONS(486), - [anon_sym_DQUOTE] = ACTIONS(488), - [anon_sym_POUND] = ACTIONS(171), + [anon_sym_getline] = ACTIONS(544), + [sym_next_statement] = ACTIONS(378), + [sym_nextfile_statement] = ACTIONS(378), + [anon_sym_print] = ACTIONS(546), + [anon_sym_printf] = ACTIONS(548), + [anon_sym_SLASH] = ACTIONS(550), + [anon_sym_PLUS] = ACTIONS(552), + [anon_sym_DASH] = ACTIONS(552), + [anon_sym_BANG] = ACTIONS(554), + [anon_sym_PLUS_PLUS] = ACTIONS(556), + [anon_sym_DASH_DASH] = ACTIONS(556), + [anon_sym_DOLLAR] = ACTIONS(558), + [anon_sym_AT] = ACTIONS(560), + [aux_sym_number_token1] = ACTIONS(562), + [aux_sym_number_token2] = ACTIONS(564), + [anon_sym_DQUOTE] = ACTIONS(566), + [anon_sym_POUND] = ACTIONS(135), }, [127] = { - [sym__statement] = STATE(1151), - [sym__statement_separated] = STATE(2), - [sym__control_statement] = STATE(1151), - [sym_if_statement] = STATE(1151), - [sym_while_statement] = STATE(1151), - [sym_do_while_statement] = STATE(1151), - [sym_for_statement] = STATE(1151), - [sym_for_in_statement] = STATE(1151), - [sym_delete_statement] = STATE(1151), - [sym_exit_statement] = STATE(1151), - [sym_return_statement] = STATE(1151), - [sym_switch_statement] = STATE(1151), - [sym__io_statement] = STATE(1151), - [sym__getline_exp] = STATE(1462), - [sym_getline_input] = STATE(1462), - [sym_getline_file] = STATE(1462), - [sym_print_statement] = STATE(1695), - [sym_printf_statement] = STATE(1695), - [sym_redirected_io_statement] = STATE(1151), - [sym_piped_io_statement] = STATE(1151), - [sym_block] = STATE(1152), - [sym__exp] = STATE(1462), - [sym_ternary_exp] = STATE(1354), - [sym_binary_exp] = STATE(1354), - [sym__binary_in] = STATE(1309), - [sym_unary_exp] = STATE(1354), - [sym_update_exp] = STATE(1462), - [sym_assignment_exp] = STATE(1462), - [sym_piped_io_exp] = STATE(1462), - [sym_string_concat] = STATE(1354), - [sym_field_ref] = STATE(619), - [sym_array_ref] = STATE(603), - [sym_regex] = STATE(1462), - [sym_regex_constant] = STATE(1462), - [sym_grouping] = STATE(1354), - [sym__primitive] = STATE(1354), - [sym_namespace] = STATE(2063), - [sym_ns_qualified_name] = STATE(592), - [sym_number] = STATE(1354), - [sym_string] = STATE(1354), - [sym_func_call] = STATE(1354), - [sym_indirect_func_call] = STATE(1462), - [sym_comment] = STATE(71), - [aux_sym_if_statement_repeat1] = STATE(71), - [sym_identifier] = ACTIONS(39), - [anon_sym_SEMI] = ACTIONS(422), - [anon_sym_if] = ACTIONS(43), - [anon_sym_LPAREN] = ACTIONS(552), - [anon_sym_while] = ACTIONS(47), + [sym__statement] = STATE(1140), + [sym__statement_separated] = STATE(1140), + [sym__control_statement] = STATE(1140), + [sym_if_statement] = STATE(1140), + [sym_while_statement] = STATE(1140), + [sym_do_while_statement] = STATE(1140), + [sym_for_statement] = STATE(1140), + [sym_for_in_statement] = STATE(1140), + [sym_delete_statement] = STATE(1140), + [sym_exit_statement] = STATE(1140), + [sym_return_statement] = STATE(1140), + [sym_switch_statement] = STATE(1140), + [sym__io_statement] = STATE(1140), + [sym__getline_exp] = STATE(483), + [sym_getline_input] = STATE(483), + [sym_getline_file] = STATE(483), + [sym_print_statement] = STATE(770), + [sym_printf_statement] = STATE(770), + [sym_redirected_io_statement] = STATE(1140), + [sym_piped_io_statement] = STATE(1140), + [sym_block] = STATE(1143), + [sym__exp] = STATE(483), + [sym_ternary_exp] = STATE(359), + [sym_binary_exp] = STATE(359), + [sym__binary_in] = STATE(373), + [sym_unary_exp] = STATE(359), + [sym_update_exp] = STATE(483), + [sym_assignment_exp] = STATE(483), + [sym_piped_io_exp] = STATE(483), + [sym_string_concat] = STATE(359), + [sym_field_ref] = STATE(258), + [sym_array_ref] = STATE(219), + [sym_regex] = STATE(483), + [sym_regex_constant] = STATE(483), + [sym_grouping] = STATE(359), + [sym__primitive] = STATE(359), + [sym_namespace] = STATE(2068), + [sym_ns_qualified_name] = STATE(200), + [sym_number] = STATE(359), + [sym_string] = STATE(359), + [sym_func_call] = STATE(359), + [sym_indirect_func_call] = STATE(483), + [sym_comment] = STATE(131), + [aux_sym_if_statement_repeat1] = STATE(131), + [sym_identifier] = ACTIONS(530), + [anon_sym_SEMI] = ACTIONS(372), + [anon_sym_if] = ACTIONS(532), + [anon_sym_LPAREN] = ACTIONS(534), + [anon_sym_while] = ACTIONS(536), [anon_sym_do] = ACTIONS(49), - [anon_sym_for] = ACTIONS(51), - [sym_break_statement] = ACTIONS(424), - [sym_continue_statement] = ACTIONS(424), + [anon_sym_for] = ACTIONS(538), + [sym_break_statement] = ACTIONS(374), + [sym_continue_statement] = ACTIONS(374), [anon_sym_delete] = ACTIONS(55), - [anon_sym_exit] = ACTIONS(57), - [anon_sym_return] = ACTIONS(59), + [anon_sym_exit] = ACTIONS(540), + [anon_sym_return] = ACTIONS(542), [anon_sym_switch] = ACTIONS(61), [anon_sym_LBRACE] = ACTIONS(316), - [anon_sym_getline] = ACTIONS(63), - [sym_next_statement] = ACTIONS(424), - [sym_nextfile_statement] = ACTIONS(424), - [anon_sym_print] = ACTIONS(65), - [anon_sym_printf] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(554), - [anon_sym_PLUS] = ACTIONS(71), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_BANG] = ACTIONS(556), - [anon_sym_PLUS_PLUS] = ACTIONS(558), - [anon_sym_DASH_DASH] = ACTIONS(558), - [anon_sym_DOLLAR] = ACTIONS(560), - [anon_sym_AT] = ACTIONS(562), - [aux_sym_number_token1] = ACTIONS(79), - [aux_sym_number_token2] = ACTIONS(486), - [anon_sym_DQUOTE] = ACTIONS(488), - [anon_sym_POUND] = ACTIONS(171), + [anon_sym_getline] = ACTIONS(544), + [sym_next_statement] = ACTIONS(374), + [sym_nextfile_statement] = ACTIONS(374), + [anon_sym_print] = ACTIONS(546), + [anon_sym_printf] = ACTIONS(548), + [anon_sym_SLASH] = ACTIONS(550), + [anon_sym_PLUS] = ACTIONS(552), + [anon_sym_DASH] = ACTIONS(552), + [anon_sym_BANG] = ACTIONS(554), + [anon_sym_PLUS_PLUS] = ACTIONS(556), + [anon_sym_DASH_DASH] = ACTIONS(556), + [anon_sym_DOLLAR] = ACTIONS(558), + [anon_sym_AT] = ACTIONS(560), + [aux_sym_number_token1] = ACTIONS(562), + [aux_sym_number_token2] = ACTIONS(564), + [anon_sym_DQUOTE] = ACTIONS(566), + [anon_sym_POUND] = ACTIONS(135), }, [128] = { - [sym__statement] = STATE(1173), - [sym__statement_separated] = STATE(141), - [sym__control_statement] = STATE(1173), - [sym_if_statement] = STATE(1173), - [sym_while_statement] = STATE(1173), - [sym_do_while_statement] = STATE(1173), - [sym_for_statement] = STATE(1173), - [sym_for_in_statement] = STATE(1173), - [sym_delete_statement] = STATE(1173), - [sym_exit_statement] = STATE(1173), - [sym_return_statement] = STATE(1173), - [sym_switch_statement] = STATE(1173), - [sym__io_statement] = STATE(1173), - [sym__getline_exp] = STATE(1547), - [sym_getline_input] = STATE(1547), - [sym_getline_file] = STATE(1547), - [sym_print_statement] = STATE(1697), - [sym_printf_statement] = STATE(1697), - [sym_redirected_io_statement] = STATE(1173), - [sym_piped_io_statement] = STATE(1173), - [sym_block] = STATE(1174), - [sym__exp] = STATE(1547), - [sym_ternary_exp] = STATE(1441), - [sym_binary_exp] = STATE(1441), - [sym__binary_in] = STATE(1309), - [sym_unary_exp] = STATE(1441), - [sym_update_exp] = STATE(1547), - [sym_assignment_exp] = STATE(1547), - [sym_piped_io_exp] = STATE(1547), - [sym_string_concat] = STATE(1441), - [sym_field_ref] = STATE(995), - [sym_array_ref] = STATE(774), - [sym_regex] = STATE(1547), - [sym_regex_constant] = STATE(1547), - [sym_grouping] = STATE(1441), - [sym__primitive] = STATE(1441), - [sym_namespace] = STATE(2063), - [sym_ns_qualified_name] = STATE(647), - [sym_number] = STATE(1441), - [sym_string] = STATE(1441), - [sym_func_call] = STATE(1441), - [sym_indirect_func_call] = STATE(1547), - [sym_comment] = STATE(1238), - [aux_sym_if_statement_repeat1] = STATE(1238), - [sym_identifier] = ACTIONS(450), - [anon_sym_SEMI] = ACTIONS(398), - [anon_sym_if] = ACTIONS(454), - [anon_sym_LPAREN] = ACTIONS(456), - [anon_sym_while] = ACTIONS(458), + [sym__statement] = STATE(1136), + [sym__statement_separated] = STATE(1136), + [sym__control_statement] = STATE(1136), + [sym_if_statement] = STATE(1136), + [sym_while_statement] = STATE(1136), + [sym_do_while_statement] = STATE(1136), + [sym_for_statement] = STATE(1136), + [sym_for_in_statement] = STATE(1136), + [sym_delete_statement] = STATE(1136), + [sym_exit_statement] = STATE(1136), + [sym_return_statement] = STATE(1136), + [sym_switch_statement] = STATE(1136), + [sym__io_statement] = STATE(1136), + [sym__getline_exp] = STATE(483), + [sym_getline_input] = STATE(483), + [sym_getline_file] = STATE(483), + [sym_print_statement] = STATE(770), + [sym_printf_statement] = STATE(770), + [sym_redirected_io_statement] = STATE(1136), + [sym_piped_io_statement] = STATE(1136), + [sym_block] = STATE(1138), + [sym__exp] = STATE(483), + [sym_ternary_exp] = STATE(359), + [sym_binary_exp] = STATE(359), + [sym__binary_in] = STATE(373), + [sym_unary_exp] = STATE(359), + [sym_update_exp] = STATE(483), + [sym_assignment_exp] = STATE(483), + [sym_piped_io_exp] = STATE(483), + [sym_string_concat] = STATE(359), + [sym_field_ref] = STATE(258), + [sym_array_ref] = STATE(219), + [sym_regex] = STATE(483), + [sym_regex_constant] = STATE(483), + [sym_grouping] = STATE(359), + [sym__primitive] = STATE(359), + [sym_namespace] = STATE(2068), + [sym_ns_qualified_name] = STATE(200), + [sym_number] = STATE(359), + [sym_string] = STATE(359), + [sym_func_call] = STATE(359), + [sym_indirect_func_call] = STATE(483), + [sym_comment] = STATE(1252), + [aux_sym_if_statement_repeat1] = STATE(1252), + [sym_identifier] = ACTIONS(530), + [anon_sym_SEMI] = ACTIONS(332), + [anon_sym_if] = ACTIONS(532), + [anon_sym_LPAREN] = ACTIONS(534), + [anon_sym_while] = ACTIONS(536), [anon_sym_do] = ACTIONS(49), - [anon_sym_for] = ACTIONS(460), - [sym_break_statement] = ACTIONS(400), - [sym_continue_statement] = ACTIONS(400), + [anon_sym_for] = ACTIONS(538), + [sym_break_statement] = ACTIONS(334), + [sym_continue_statement] = ACTIONS(334), [anon_sym_delete] = ACTIONS(55), - [anon_sym_exit] = ACTIONS(464), - [anon_sym_return] = ACTIONS(466), + [anon_sym_exit] = ACTIONS(540), + [anon_sym_return] = ACTIONS(542), [anon_sym_switch] = ACTIONS(61), [anon_sym_LBRACE] = ACTIONS(316), - [anon_sym_getline] = ACTIONS(468), - [sym_next_statement] = ACTIONS(400), - [sym_nextfile_statement] = ACTIONS(400), - [anon_sym_print] = ACTIONS(470), - [anon_sym_printf] = ACTIONS(472), - [anon_sym_SLASH] = ACTIONS(474), - [anon_sym_PLUS] = ACTIONS(476), - [anon_sym_DASH] = ACTIONS(476), - [anon_sym_BANG] = ACTIONS(478), - [anon_sym_PLUS_PLUS] = ACTIONS(480), - [anon_sym_DASH_DASH] = ACTIONS(480), - [anon_sym_DOLLAR] = ACTIONS(482), - [anon_sym_AT] = ACTIONS(484), - [aux_sym_number_token1] = ACTIONS(79), - [aux_sym_number_token2] = ACTIONS(486), - [anon_sym_DQUOTE] = ACTIONS(488), - [anon_sym_POUND] = ACTIONS(171), + [anon_sym_getline] = ACTIONS(544), + [sym_next_statement] = ACTIONS(334), + [sym_nextfile_statement] = ACTIONS(334), + [anon_sym_print] = ACTIONS(546), + [anon_sym_printf] = ACTIONS(548), + [anon_sym_SLASH] = ACTIONS(550), + [anon_sym_PLUS] = ACTIONS(552), + [anon_sym_DASH] = ACTIONS(552), + [anon_sym_BANG] = ACTIONS(554), + [anon_sym_PLUS_PLUS] = ACTIONS(556), + [anon_sym_DASH_DASH] = ACTIONS(556), + [anon_sym_DOLLAR] = ACTIONS(558), + [anon_sym_AT] = ACTIONS(560), + [aux_sym_number_token1] = ACTIONS(562), + [aux_sym_number_token2] = ACTIONS(564), + [anon_sym_DQUOTE] = ACTIONS(566), + [anon_sym_POUND] = ACTIONS(135), }, [129] = { - [sym__statement] = STATE(1170), - [sym__statement_separated] = STATE(141), - [sym__control_statement] = STATE(1170), - [sym_if_statement] = STATE(1170), - [sym_while_statement] = STATE(1170), - [sym_do_while_statement] = STATE(1170), - [sym_for_statement] = STATE(1170), - [sym_for_in_statement] = STATE(1170), - [sym_delete_statement] = STATE(1170), - [sym_exit_statement] = STATE(1170), - [sym_return_statement] = STATE(1170), - [sym_switch_statement] = STATE(1170), - [sym__io_statement] = STATE(1170), - [sym__getline_exp] = STATE(1547), - [sym_getline_input] = STATE(1547), - [sym_getline_file] = STATE(1547), - [sym_print_statement] = STATE(1697), - [sym_printf_statement] = STATE(1697), - [sym_redirected_io_statement] = STATE(1170), - [sym_piped_io_statement] = STATE(1170), - [sym_block] = STATE(1172), - [sym__exp] = STATE(1547), - [sym_ternary_exp] = STATE(1441), - [sym_binary_exp] = STATE(1441), - [sym__binary_in] = STATE(1309), - [sym_unary_exp] = STATE(1441), - [sym_update_exp] = STATE(1547), - [sym_assignment_exp] = STATE(1547), - [sym_piped_io_exp] = STATE(1547), - [sym_string_concat] = STATE(1441), - [sym_field_ref] = STATE(995), - [sym_array_ref] = STATE(774), - [sym_regex] = STATE(1547), - [sym_regex_constant] = STATE(1547), - [sym_grouping] = STATE(1441), - [sym__primitive] = STATE(1441), - [sym_namespace] = STATE(2063), - [sym_ns_qualified_name] = STATE(647), - [sym_number] = STATE(1441), - [sym_string] = STATE(1441), - [sym_func_call] = STATE(1441), - [sym_indirect_func_call] = STATE(1547), - [sym_comment] = STATE(1238), - [aux_sym_if_statement_repeat1] = STATE(1238), - [sym_identifier] = ACTIONS(450), - [anon_sym_SEMI] = ACTIONS(402), - [anon_sym_if] = ACTIONS(454), - [anon_sym_LPAREN] = ACTIONS(456), - [anon_sym_while] = ACTIONS(458), - [anon_sym_do] = ACTIONS(49), - [anon_sym_for] = ACTIONS(460), - [sym_break_statement] = ACTIONS(404), - [sym_continue_statement] = ACTIONS(404), - [anon_sym_delete] = ACTIONS(55), - [anon_sym_exit] = ACTIONS(464), - [anon_sym_return] = ACTIONS(466), - [anon_sym_switch] = ACTIONS(61), - [anon_sym_LBRACE] = ACTIONS(316), - [anon_sym_getline] = ACTIONS(468), - [sym_next_statement] = ACTIONS(404), - [sym_nextfile_statement] = ACTIONS(404), - [anon_sym_print] = ACTIONS(470), - [anon_sym_printf] = ACTIONS(472), - [anon_sym_SLASH] = ACTIONS(474), - [anon_sym_PLUS] = ACTIONS(476), - [anon_sym_DASH] = ACTIONS(476), - [anon_sym_BANG] = ACTIONS(478), - [anon_sym_PLUS_PLUS] = ACTIONS(480), - [anon_sym_DASH_DASH] = ACTIONS(480), - [anon_sym_DOLLAR] = ACTIONS(482), - [anon_sym_AT] = ACTIONS(484), - [aux_sym_number_token1] = ACTIONS(79), - [aux_sym_number_token2] = ACTIONS(486), - [anon_sym_DQUOTE] = ACTIONS(488), - [anon_sym_POUND] = ACTIONS(171), - }, - [130] = { - [sym__statement] = STATE(1214), - [sym__statement_separated] = STATE(1214), - [sym__control_statement] = STATE(1214), - [sym_if_statement] = STATE(1214), - [sym_while_statement] = STATE(1214), - [sym_do_while_statement] = STATE(1214), - [sym_for_statement] = STATE(1214), - [sym_for_in_statement] = STATE(1214), - [sym_delete_statement] = STATE(1214), - [sym_exit_statement] = STATE(1214), - [sym_return_statement] = STATE(1214), - [sym_switch_statement] = STATE(1214), - [sym__io_statement] = STATE(1214), + [sym__statement] = STATE(1209), + [sym__statement_separated] = STATE(1209), + [sym__control_statement] = STATE(1209), + [sym_if_statement] = STATE(1209), + [sym_while_statement] = STATE(1209), + [sym_do_while_statement] = STATE(1209), + [sym_for_statement] = STATE(1209), + [sym_for_in_statement] = STATE(1209), + [sym_delete_statement] = STATE(1209), + [sym_exit_statement] = STATE(1209), + [sym_return_statement] = STATE(1209), + [sym_switch_statement] = STATE(1209), + [sym__io_statement] = STATE(1209), [sym__getline_exp] = STATE(503), [sym_getline_input] = STATE(503), [sym_getline_file] = STATE(503), - [sym_print_statement] = STATE(890), - [sym_printf_statement] = STATE(890), - [sym_redirected_io_statement] = STATE(1214), - [sym_piped_io_statement] = STATE(1214), - [sym_block] = STATE(1215), + [sym_print_statement] = STATE(869), + [sym_printf_statement] = STATE(869), + [sym_redirected_io_statement] = STATE(1209), + [sym_piped_io_statement] = STATE(1209), + [sym_block] = STATE(1210), [sym__exp] = STATE(503), - [sym_ternary_exp] = STATE(447), - [sym_binary_exp] = STATE(447), - [sym__binary_in] = STATE(446), - [sym_unary_exp] = STATE(447), + [sym_ternary_exp] = STATE(427), + [sym_binary_exp] = STATE(427), + [sym__binary_in] = STATE(426), + [sym_unary_exp] = STATE(427), [sym_update_exp] = STATE(503), [sym_assignment_exp] = STATE(503), [sym_piped_io_exp] = STATE(503), - [sym_string_concat] = STATE(447), - [sym_field_ref] = STATE(272), - [sym_array_ref] = STATE(253), + [sym_string_concat] = STATE(427), + [sym_field_ref] = STATE(274), + [sym_array_ref] = STATE(268), [sym_regex] = STATE(503), [sym_regex_constant] = STATE(503), - [sym_grouping] = STATE(447), - [sym__primitive] = STATE(447), - [sym_namespace] = STATE(1955), - [sym_ns_qualified_name] = STATE(221), - [sym_number] = STATE(447), - [sym_string] = STATE(447), - [sym_func_call] = STATE(447), + [sym_grouping] = STATE(427), + [sym__primitive] = STATE(427), + [sym_namespace] = STATE(1956), + [sym_ns_qualified_name] = STATE(244), + [sym_number] = STATE(427), + [sym_string] = STATE(427), + [sym_func_call] = STATE(427), [sym_indirect_func_call] = STATE(503), - [sym_comment] = STATE(117), - [aux_sym_if_statement_repeat1] = STATE(117), - [sym_identifier] = ACTIONS(127), - [anon_sym_SEMI] = ACTIONS(532), - [anon_sym_if] = ACTIONS(129), - [anon_sym_LPAREN] = ACTIONS(131), - [anon_sym_while] = ACTIONS(133), + [sym_comment] = STATE(114), + [aux_sym_if_statement_repeat1] = STATE(114), + [sym_identifier] = ACTIONS(85), + [anon_sym_SEMI] = ACTIONS(272), + [anon_sym_if] = ACTIONS(87), + [anon_sym_LPAREN] = ACTIONS(89), + [anon_sym_while] = ACTIONS(91), [anon_sym_do] = ACTIONS(93), - [anon_sym_for] = ACTIONS(135), - [sym_break_statement] = ACTIONS(534), - [sym_continue_statement] = ACTIONS(534), + [anon_sym_for] = ACTIONS(95), + [sym_break_statement] = ACTIONS(282), + [sym_continue_statement] = ACTIONS(282), [anon_sym_delete] = ACTIONS(99), - [anon_sym_exit] = ACTIONS(139), - [anon_sym_return] = ACTIONS(141), + [anon_sym_exit] = ACTIONS(101), + [anon_sym_return] = ACTIONS(103), [anon_sym_switch] = ACTIONS(105), [anon_sym_LBRACE] = ACTIONS(268), - [anon_sym_getline] = ACTIONS(147), - [sym_next_statement] = ACTIONS(534), - [sym_nextfile_statement] = ACTIONS(534), - [anon_sym_print] = ACTIONS(149), - [anon_sym_printf] = ACTIONS(151), - [anon_sym_SLASH] = ACTIONS(153), - [anon_sym_PLUS] = ACTIONS(155), - [anon_sym_DASH] = ACTIONS(155), - [anon_sym_BANG] = ACTIONS(157), - [anon_sym_PLUS_PLUS] = ACTIONS(159), - [anon_sym_DASH_DASH] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(161), - [anon_sym_AT] = ACTIONS(163), - [aux_sym_number_token1] = ACTIONS(165), - [aux_sym_number_token2] = ACTIONS(167), - [anon_sym_DQUOTE] = ACTIONS(169), - [anon_sym_POUND] = ACTIONS(171), + [anon_sym_getline] = ACTIONS(111), + [sym_next_statement] = ACTIONS(282), + [sym_nextfile_statement] = ACTIONS(282), + [anon_sym_print] = ACTIONS(113), + [anon_sym_printf] = ACTIONS(115), + [anon_sym_SLASH] = ACTIONS(117), + [anon_sym_PLUS] = ACTIONS(119), + [anon_sym_DASH] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(121), + [anon_sym_PLUS_PLUS] = ACTIONS(123), + [anon_sym_DASH_DASH] = ACTIONS(123), + [anon_sym_DOLLAR] = ACTIONS(125), + [anon_sym_AT] = ACTIONS(127), + [aux_sym_number_token1] = ACTIONS(129), + [aux_sym_number_token2] = ACTIONS(131), + [anon_sym_DQUOTE] = ACTIONS(133), + [anon_sym_POUND] = ACTIONS(135), + }, + [130] = { + [sym__statement] = STATE(1134), + [sym__statement_separated] = STATE(1134), + [sym__control_statement] = STATE(1134), + [sym_if_statement] = STATE(1134), + [sym_while_statement] = STATE(1134), + [sym_do_while_statement] = STATE(1134), + [sym_for_statement] = STATE(1134), + [sym_for_in_statement] = STATE(1134), + [sym_delete_statement] = STATE(1134), + [sym_exit_statement] = STATE(1134), + [sym_return_statement] = STATE(1134), + [sym_switch_statement] = STATE(1134), + [sym__io_statement] = STATE(1134), + [sym__getline_exp] = STATE(483), + [sym_getline_input] = STATE(483), + [sym_getline_file] = STATE(483), + [sym_print_statement] = STATE(770), + [sym_printf_statement] = STATE(770), + [sym_redirected_io_statement] = STATE(1134), + [sym_piped_io_statement] = STATE(1134), + [sym_block] = STATE(1135), + [sym__exp] = STATE(483), + [sym_ternary_exp] = STATE(359), + [sym_binary_exp] = STATE(359), + [sym__binary_in] = STATE(373), + [sym_unary_exp] = STATE(359), + [sym_update_exp] = STATE(483), + [sym_assignment_exp] = STATE(483), + [sym_piped_io_exp] = STATE(483), + [sym_string_concat] = STATE(359), + [sym_field_ref] = STATE(258), + [sym_array_ref] = STATE(219), + [sym_regex] = STATE(483), + [sym_regex_constant] = STATE(483), + [sym_grouping] = STATE(359), + [sym__primitive] = STATE(359), + [sym_namespace] = STATE(2068), + [sym_ns_qualified_name] = STATE(200), + [sym_number] = STATE(359), + [sym_string] = STATE(359), + [sym_func_call] = STATE(359), + [sym_indirect_func_call] = STATE(483), + [sym_comment] = STATE(1252), + [aux_sym_if_statement_repeat1] = STATE(1252), + [sym_identifier] = ACTIONS(530), + [anon_sym_SEMI] = ACTIONS(310), + [anon_sym_if] = ACTIONS(532), + [anon_sym_LPAREN] = ACTIONS(534), + [anon_sym_while] = ACTIONS(536), + [anon_sym_do] = ACTIONS(49), + [anon_sym_for] = ACTIONS(538), + [sym_break_statement] = ACTIONS(314), + [sym_continue_statement] = ACTIONS(314), + [anon_sym_delete] = ACTIONS(55), + [anon_sym_exit] = ACTIONS(540), + [anon_sym_return] = ACTIONS(542), + [anon_sym_switch] = ACTIONS(61), + [anon_sym_LBRACE] = ACTIONS(316), + [anon_sym_getline] = ACTIONS(544), + [sym_next_statement] = ACTIONS(314), + [sym_nextfile_statement] = ACTIONS(314), + [anon_sym_print] = ACTIONS(546), + [anon_sym_printf] = ACTIONS(548), + [anon_sym_SLASH] = ACTIONS(550), + [anon_sym_PLUS] = ACTIONS(552), + [anon_sym_DASH] = ACTIONS(552), + [anon_sym_BANG] = ACTIONS(554), + [anon_sym_PLUS_PLUS] = ACTIONS(556), + [anon_sym_DASH_DASH] = ACTIONS(556), + [anon_sym_DOLLAR] = ACTIONS(558), + [anon_sym_AT] = ACTIONS(560), + [aux_sym_number_token1] = ACTIONS(562), + [aux_sym_number_token2] = ACTIONS(564), + [anon_sym_DQUOTE] = ACTIONS(566), + [anon_sym_POUND] = ACTIONS(135), }, [131] = { - [sym__statement] = STATE(1169), - [sym__statement_separated] = STATE(1169), - [sym__control_statement] = STATE(1169), - [sym_if_statement] = STATE(1169), - [sym_while_statement] = STATE(1169), - [sym_do_while_statement] = STATE(1169), - [sym_for_statement] = STATE(1169), - [sym_for_in_statement] = STATE(1169), - [sym_delete_statement] = STATE(1169), - [sym_exit_statement] = STATE(1169), - [sym_return_statement] = STATE(1169), - [sym_switch_statement] = STATE(1169), - [sym__io_statement] = STATE(1169), - [sym__getline_exp] = STATE(482), - [sym_getline_input] = STATE(482), - [sym_getline_file] = STATE(482), - [sym_print_statement] = STATE(740), - [sym_printf_statement] = STATE(740), - [sym_redirected_io_statement] = STATE(1169), - [sym_piped_io_statement] = STATE(1169), - [sym_block] = STATE(1161), - [sym__exp] = STATE(482), - [sym_ternary_exp] = STATE(375), - [sym_binary_exp] = STATE(375), - [sym__binary_in] = STATE(369), - [sym_unary_exp] = STATE(375), - [sym_update_exp] = STATE(482), - [sym_assignment_exp] = STATE(482), - [sym_piped_io_exp] = STATE(482), - [sym_string_concat] = STATE(375), - [sym_field_ref] = STATE(256), - [sym_array_ref] = STATE(240), - [sym_regex] = STATE(482), - [sym_regex_constant] = STATE(482), - [sym_grouping] = STATE(375), - [sym__primitive] = STATE(375), - [sym_namespace] = STATE(2063), - [sym_ns_qualified_name] = STATE(196), - [sym_number] = STATE(375), - [sym_string] = STATE(375), - [sym_func_call] = STATE(375), - [sym_indirect_func_call] = STATE(482), - [sym_comment] = STATE(1238), - [aux_sym_if_statement_repeat1] = STATE(1238), - [sym_identifier] = ACTIONS(298), - [anon_sym_SEMI] = ACTIONS(574), - [anon_sym_if] = ACTIONS(302), - [anon_sym_LPAREN] = ACTIONS(304), - [anon_sym_while] = ACTIONS(306), + [sym__statement] = STATE(1132), + [sym__statement_separated] = STATE(1132), + [sym__control_statement] = STATE(1132), + [sym_if_statement] = STATE(1132), + [sym_while_statement] = STATE(1132), + [sym_do_while_statement] = STATE(1132), + [sym_for_statement] = STATE(1132), + [sym_for_in_statement] = STATE(1132), + [sym_delete_statement] = STATE(1132), + [sym_exit_statement] = STATE(1132), + [sym_return_statement] = STATE(1132), + [sym_switch_statement] = STATE(1132), + [sym__io_statement] = STATE(1132), + [sym__getline_exp] = STATE(483), + [sym_getline_input] = STATE(483), + [sym_getline_file] = STATE(483), + [sym_print_statement] = STATE(770), + [sym_printf_statement] = STATE(770), + [sym_redirected_io_statement] = STATE(1132), + [sym_piped_io_statement] = STATE(1132), + [sym_block] = STATE(1133), + [sym__exp] = STATE(483), + [sym_ternary_exp] = STATE(359), + [sym_binary_exp] = STATE(359), + [sym__binary_in] = STATE(373), + [sym_unary_exp] = STATE(359), + [sym_update_exp] = STATE(483), + [sym_assignment_exp] = STATE(483), + [sym_piped_io_exp] = STATE(483), + [sym_string_concat] = STATE(359), + [sym_field_ref] = STATE(258), + [sym_array_ref] = STATE(219), + [sym_regex] = STATE(483), + [sym_regex_constant] = STATE(483), + [sym_grouping] = STATE(359), + [sym__primitive] = STATE(359), + [sym_namespace] = STATE(2068), + [sym_ns_qualified_name] = STATE(200), + [sym_number] = STATE(359), + [sym_string] = STATE(359), + [sym_func_call] = STATE(359), + [sym_indirect_func_call] = STATE(483), + [sym_comment] = STATE(1252), + [aux_sym_if_statement_repeat1] = STATE(1252), + [sym_identifier] = ACTIONS(530), + [anon_sym_SEMI] = ACTIONS(400), + [anon_sym_if] = ACTIONS(532), + [anon_sym_LPAREN] = ACTIONS(534), + [anon_sym_while] = ACTIONS(536), [anon_sym_do] = ACTIONS(49), - [anon_sym_for] = ACTIONS(308), - [sym_break_statement] = ACTIONS(576), - [sym_continue_statement] = ACTIONS(576), + [anon_sym_for] = ACTIONS(538), + [sym_break_statement] = ACTIONS(402), + [sym_continue_statement] = ACTIONS(402), [anon_sym_delete] = ACTIONS(55), - [anon_sym_exit] = ACTIONS(312), - [anon_sym_return] = ACTIONS(314), + [anon_sym_exit] = ACTIONS(540), + [anon_sym_return] = ACTIONS(542), [anon_sym_switch] = ACTIONS(61), [anon_sym_LBRACE] = ACTIONS(316), - [anon_sym_getline] = ACTIONS(318), - [sym_next_statement] = ACTIONS(576), - [sym_nextfile_statement] = ACTIONS(576), - [anon_sym_print] = ACTIONS(320), - [anon_sym_printf] = ACTIONS(322), - [anon_sym_SLASH] = ACTIONS(324), - [anon_sym_PLUS] = ACTIONS(326), - [anon_sym_DASH] = ACTIONS(326), - [anon_sym_BANG] = ACTIONS(328), - [anon_sym_PLUS_PLUS] = ACTIONS(330), - [anon_sym_DASH_DASH] = ACTIONS(330), - [anon_sym_DOLLAR] = ACTIONS(332), - [anon_sym_AT] = ACTIONS(334), - [aux_sym_number_token1] = ACTIONS(336), - [aux_sym_number_token2] = ACTIONS(338), - [anon_sym_DQUOTE] = ACTIONS(340), - [anon_sym_POUND] = ACTIONS(171), + [anon_sym_getline] = ACTIONS(544), + [sym_next_statement] = ACTIONS(402), + [sym_nextfile_statement] = ACTIONS(402), + [anon_sym_print] = ACTIONS(546), + [anon_sym_printf] = ACTIONS(548), + [anon_sym_SLASH] = ACTIONS(550), + [anon_sym_PLUS] = ACTIONS(552), + [anon_sym_DASH] = ACTIONS(552), + [anon_sym_BANG] = ACTIONS(554), + [anon_sym_PLUS_PLUS] = ACTIONS(556), + [anon_sym_DASH_DASH] = ACTIONS(556), + [anon_sym_DOLLAR] = ACTIONS(558), + [anon_sym_AT] = ACTIONS(560), + [aux_sym_number_token1] = ACTIONS(562), + [aux_sym_number_token2] = ACTIONS(564), + [anon_sym_DQUOTE] = ACTIONS(566), + [anon_sym_POUND] = ACTIONS(135), }, [132] = { - [sym__statement] = STATE(1166), - [sym__statement_separated] = STATE(141), - [sym__control_statement] = STATE(1166), - [sym_if_statement] = STATE(1166), - [sym_while_statement] = STATE(1166), - [sym_do_while_statement] = STATE(1166), - [sym_for_statement] = STATE(1166), - [sym_for_in_statement] = STATE(1166), - [sym_delete_statement] = STATE(1166), - [sym_exit_statement] = STATE(1166), - [sym_return_statement] = STATE(1166), - [sym_switch_statement] = STATE(1166), - [sym__io_statement] = STATE(1166), - [sym__getline_exp] = STATE(1547), - [sym_getline_input] = STATE(1547), - [sym_getline_file] = STATE(1547), - [sym_print_statement] = STATE(1697), - [sym_printf_statement] = STATE(1697), - [sym_redirected_io_statement] = STATE(1166), - [sym_piped_io_statement] = STATE(1166), - [sym_block] = STATE(1167), - [sym__exp] = STATE(1547), - [sym_ternary_exp] = STATE(1441), - [sym_binary_exp] = STATE(1441), - [sym__binary_in] = STATE(1309), - [sym_unary_exp] = STATE(1441), - [sym_update_exp] = STATE(1547), - [sym_assignment_exp] = STATE(1547), - [sym_piped_io_exp] = STATE(1547), - [sym_string_concat] = STATE(1441), - [sym_field_ref] = STATE(995), - [sym_array_ref] = STATE(774), - [sym_regex] = STATE(1547), - [sym_regex_constant] = STATE(1547), - [sym_grouping] = STATE(1441), - [sym__primitive] = STATE(1441), - [sym_namespace] = STATE(2063), - [sym_ns_qualified_name] = STATE(647), - [sym_number] = STATE(1441), - [sym_string] = STATE(1441), - [sym_func_call] = STATE(1441), - [sym_indirect_func_call] = STATE(1547), - [sym_comment] = STATE(104), - [aux_sym_if_statement_repeat1] = STATE(104), - [sym_identifier] = ACTIONS(450), - [anon_sym_SEMI] = ACTIONS(406), - [anon_sym_if] = ACTIONS(454), - [anon_sym_LPAREN] = ACTIONS(456), - [anon_sym_while] = ACTIONS(458), + [sym__statement] = STATE(1130), + [sym__statement_separated] = STATE(1130), + [sym__control_statement] = STATE(1130), + [sym_if_statement] = STATE(1130), + [sym_while_statement] = STATE(1130), + [sym_do_while_statement] = STATE(1130), + [sym_for_statement] = STATE(1130), + [sym_for_in_statement] = STATE(1130), + [sym_delete_statement] = STATE(1130), + [sym_exit_statement] = STATE(1130), + [sym_return_statement] = STATE(1130), + [sym_switch_statement] = STATE(1130), + [sym__io_statement] = STATE(1130), + [sym__getline_exp] = STATE(483), + [sym_getline_input] = STATE(483), + [sym_getline_file] = STATE(483), + [sym_print_statement] = STATE(770), + [sym_printf_statement] = STATE(770), + [sym_redirected_io_statement] = STATE(1130), + [sym_piped_io_statement] = STATE(1130), + [sym_block] = STATE(1131), + [sym__exp] = STATE(483), + [sym_ternary_exp] = STATE(359), + [sym_binary_exp] = STATE(359), + [sym__binary_in] = STATE(373), + [sym_unary_exp] = STATE(359), + [sym_update_exp] = STATE(483), + [sym_assignment_exp] = STATE(483), + [sym_piped_io_exp] = STATE(483), + [sym_string_concat] = STATE(359), + [sym_field_ref] = STATE(258), + [sym_array_ref] = STATE(219), + [sym_regex] = STATE(483), + [sym_regex_constant] = STATE(483), + [sym_grouping] = STATE(359), + [sym__primitive] = STATE(359), + [sym_namespace] = STATE(2068), + [sym_ns_qualified_name] = STATE(200), + [sym_number] = STATE(359), + [sym_string] = STATE(359), + [sym_func_call] = STATE(359), + [sym_indirect_func_call] = STATE(483), + [sym_comment] = STATE(133), + [aux_sym_if_statement_repeat1] = STATE(133), + [sym_identifier] = ACTIONS(530), + [anon_sym_SEMI] = ACTIONS(526), + [anon_sym_if] = ACTIONS(532), + [anon_sym_LPAREN] = ACTIONS(534), + [anon_sym_while] = ACTIONS(536), [anon_sym_do] = ACTIONS(49), - [anon_sym_for] = ACTIONS(460), - [sym_break_statement] = ACTIONS(408), - [sym_continue_statement] = ACTIONS(408), + [anon_sym_for] = ACTIONS(538), + [sym_break_statement] = ACTIONS(528), + [sym_continue_statement] = ACTIONS(528), [anon_sym_delete] = ACTIONS(55), - [anon_sym_exit] = ACTIONS(464), - [anon_sym_return] = ACTIONS(466), + [anon_sym_exit] = ACTIONS(540), + [anon_sym_return] = ACTIONS(542), [anon_sym_switch] = ACTIONS(61), [anon_sym_LBRACE] = ACTIONS(316), - [anon_sym_getline] = ACTIONS(468), - [sym_next_statement] = ACTIONS(408), - [sym_nextfile_statement] = ACTIONS(408), - [anon_sym_print] = ACTIONS(470), - [anon_sym_printf] = ACTIONS(472), - [anon_sym_SLASH] = ACTIONS(474), - [anon_sym_PLUS] = ACTIONS(476), - [anon_sym_DASH] = ACTIONS(476), - [anon_sym_BANG] = ACTIONS(478), - [anon_sym_PLUS_PLUS] = ACTIONS(480), - [anon_sym_DASH_DASH] = ACTIONS(480), - [anon_sym_DOLLAR] = ACTIONS(482), - [anon_sym_AT] = ACTIONS(484), - [aux_sym_number_token1] = ACTIONS(79), - [aux_sym_number_token2] = ACTIONS(486), - [anon_sym_DQUOTE] = ACTIONS(488), - [anon_sym_POUND] = ACTIONS(171), + [anon_sym_getline] = ACTIONS(544), + [sym_next_statement] = ACTIONS(528), + [sym_nextfile_statement] = ACTIONS(528), + [anon_sym_print] = ACTIONS(546), + [anon_sym_printf] = ACTIONS(548), + [anon_sym_SLASH] = ACTIONS(550), + [anon_sym_PLUS] = ACTIONS(552), + [anon_sym_DASH] = ACTIONS(552), + [anon_sym_BANG] = ACTIONS(554), + [anon_sym_PLUS_PLUS] = ACTIONS(556), + [anon_sym_DASH_DASH] = ACTIONS(556), + [anon_sym_DOLLAR] = ACTIONS(558), + [anon_sym_AT] = ACTIONS(560), + [aux_sym_number_token1] = ACTIONS(562), + [aux_sym_number_token2] = ACTIONS(564), + [anon_sym_DQUOTE] = ACTIONS(566), + [anon_sym_POUND] = ACTIONS(135), }, [133] = { - [sym__statement] = STATE(1162), - [sym__statement_separated] = STATE(141), - [sym__control_statement] = STATE(1162), - [sym_if_statement] = STATE(1162), - [sym_while_statement] = STATE(1162), - [sym_do_while_statement] = STATE(1162), - [sym_for_statement] = STATE(1162), - [sym_for_in_statement] = STATE(1162), - [sym_delete_statement] = STATE(1162), - [sym_exit_statement] = STATE(1162), - [sym_return_statement] = STATE(1162), - [sym_switch_statement] = STATE(1162), - [sym__io_statement] = STATE(1162), - [sym__getline_exp] = STATE(1547), - [sym_getline_input] = STATE(1547), - [sym_getline_file] = STATE(1547), - [sym_print_statement] = STATE(1697), - [sym_printf_statement] = STATE(1697), - [sym_redirected_io_statement] = STATE(1162), - [sym_piped_io_statement] = STATE(1162), - [sym_block] = STATE(1164), - [sym__exp] = STATE(1547), - [sym_ternary_exp] = STATE(1441), - [sym_binary_exp] = STATE(1441), - [sym__binary_in] = STATE(1309), - [sym_unary_exp] = STATE(1441), - [sym_update_exp] = STATE(1547), - [sym_assignment_exp] = STATE(1547), - [sym_piped_io_exp] = STATE(1547), - [sym_string_concat] = STATE(1441), - [sym_field_ref] = STATE(995), - [sym_array_ref] = STATE(774), - [sym_regex] = STATE(1547), - [sym_regex_constant] = STATE(1547), - [sym_grouping] = STATE(1441), - [sym__primitive] = STATE(1441), - [sym_namespace] = STATE(2063), - [sym_ns_qualified_name] = STATE(647), - [sym_number] = STATE(1441), - [sym_string] = STATE(1441), - [sym_func_call] = STATE(1441), - [sym_indirect_func_call] = STATE(1547), - [sym_comment] = STATE(1238), - [aux_sym_if_statement_repeat1] = STATE(1238), - [sym_identifier] = ACTIONS(450), - [anon_sym_SEMI] = ACTIONS(410), - [anon_sym_if] = ACTIONS(454), - [anon_sym_LPAREN] = ACTIONS(456), - [anon_sym_while] = ACTIONS(458), + [sym__statement] = STATE(1128), + [sym__statement_separated] = STATE(1128), + [sym__control_statement] = STATE(1128), + [sym_if_statement] = STATE(1128), + [sym_while_statement] = STATE(1128), + [sym_do_while_statement] = STATE(1128), + [sym_for_statement] = STATE(1128), + [sym_for_in_statement] = STATE(1128), + [sym_delete_statement] = STATE(1128), + [sym_exit_statement] = STATE(1128), + [sym_return_statement] = STATE(1128), + [sym_switch_statement] = STATE(1128), + [sym__io_statement] = STATE(1128), + [sym__getline_exp] = STATE(483), + [sym_getline_input] = STATE(483), + [sym_getline_file] = STATE(483), + [sym_print_statement] = STATE(770), + [sym_printf_statement] = STATE(770), + [sym_redirected_io_statement] = STATE(1128), + [sym_piped_io_statement] = STATE(1128), + [sym_block] = STATE(1129), + [sym__exp] = STATE(483), + [sym_ternary_exp] = STATE(359), + [sym_binary_exp] = STATE(359), + [sym__binary_in] = STATE(373), + [sym_unary_exp] = STATE(359), + [sym_update_exp] = STATE(483), + [sym_assignment_exp] = STATE(483), + [sym_piped_io_exp] = STATE(483), + [sym_string_concat] = STATE(359), + [sym_field_ref] = STATE(258), + [sym_array_ref] = STATE(219), + [sym_regex] = STATE(483), + [sym_regex_constant] = STATE(483), + [sym_grouping] = STATE(359), + [sym__primitive] = STATE(359), + [sym_namespace] = STATE(2068), + [sym_ns_qualified_name] = STATE(200), + [sym_number] = STATE(359), + [sym_string] = STATE(359), + [sym_func_call] = STATE(359), + [sym_indirect_func_call] = STATE(483), + [sym_comment] = STATE(1252), + [aux_sym_if_statement_repeat1] = STATE(1252), + [sym_identifier] = ACTIONS(530), + [anon_sym_SEMI] = ACTIONS(522), + [anon_sym_if] = ACTIONS(532), + [anon_sym_LPAREN] = ACTIONS(534), + [anon_sym_while] = ACTIONS(536), [anon_sym_do] = ACTIONS(49), - [anon_sym_for] = ACTIONS(460), - [sym_break_statement] = ACTIONS(412), - [sym_continue_statement] = ACTIONS(412), + [anon_sym_for] = ACTIONS(538), + [sym_break_statement] = ACTIONS(524), + [sym_continue_statement] = ACTIONS(524), [anon_sym_delete] = ACTIONS(55), - [anon_sym_exit] = ACTIONS(464), - [anon_sym_return] = ACTIONS(466), + [anon_sym_exit] = ACTIONS(540), + [anon_sym_return] = ACTIONS(542), [anon_sym_switch] = ACTIONS(61), [anon_sym_LBRACE] = ACTIONS(316), - [anon_sym_getline] = ACTIONS(468), - [sym_next_statement] = ACTIONS(412), - [sym_nextfile_statement] = ACTIONS(412), - [anon_sym_print] = ACTIONS(470), - [anon_sym_printf] = ACTIONS(472), - [anon_sym_SLASH] = ACTIONS(474), - [anon_sym_PLUS] = ACTIONS(476), - [anon_sym_DASH] = ACTIONS(476), - [anon_sym_BANG] = ACTIONS(478), - [anon_sym_PLUS_PLUS] = ACTIONS(480), - [anon_sym_DASH_DASH] = ACTIONS(480), - [anon_sym_DOLLAR] = ACTIONS(482), - [anon_sym_AT] = ACTIONS(484), - [aux_sym_number_token1] = ACTIONS(79), - [aux_sym_number_token2] = ACTIONS(486), - [anon_sym_DQUOTE] = ACTIONS(488), - [anon_sym_POUND] = ACTIONS(171), + [anon_sym_getline] = ACTIONS(544), + [sym_next_statement] = ACTIONS(524), + [sym_nextfile_statement] = ACTIONS(524), + [anon_sym_print] = ACTIONS(546), + [anon_sym_printf] = ACTIONS(548), + [anon_sym_SLASH] = ACTIONS(550), + [anon_sym_PLUS] = ACTIONS(552), + [anon_sym_DASH] = ACTIONS(552), + [anon_sym_BANG] = ACTIONS(554), + [anon_sym_PLUS_PLUS] = ACTIONS(556), + [anon_sym_DASH_DASH] = ACTIONS(556), + [anon_sym_DOLLAR] = ACTIONS(558), + [anon_sym_AT] = ACTIONS(560), + [aux_sym_number_token1] = ACTIONS(562), + [aux_sym_number_token2] = ACTIONS(564), + [anon_sym_DQUOTE] = ACTIONS(566), + [anon_sym_POUND] = ACTIONS(135), }, [134] = { - [sym__statement] = STATE(1155), - [sym__statement_separated] = STATE(141), - [sym__control_statement] = STATE(1155), - [sym_if_statement] = STATE(1155), - [sym_while_statement] = STATE(1155), - [sym_do_while_statement] = STATE(1155), - [sym_for_statement] = STATE(1155), - [sym_for_in_statement] = STATE(1155), - [sym_delete_statement] = STATE(1155), - [sym_exit_statement] = STATE(1155), - [sym_return_statement] = STATE(1155), - [sym_switch_statement] = STATE(1155), - [sym__io_statement] = STATE(1155), - [sym__getline_exp] = STATE(1547), - [sym_getline_input] = STATE(1547), - [sym_getline_file] = STATE(1547), + [sym__statement] = STATE(1711), + [sym__statement_separated] = STATE(4), + [sym__control_statement] = STATE(1711), + [sym_if_statement] = STATE(1711), + [sym_while_statement] = STATE(1711), + [sym_do_while_statement] = STATE(1711), + [sym_for_statement] = STATE(1711), + [sym_for_in_statement] = STATE(1711), + [sym_delete_statement] = STATE(1711), + [sym_exit_statement] = STATE(1711), + [sym_return_statement] = STATE(1711), + [sym_switch_statement] = STATE(1711), + [sym__io_statement] = STATE(1711), + [sym__getline_exp] = STATE(1471), + [sym_getline_input] = STATE(1471), + [sym_getline_file] = STATE(1471), [sym_print_statement] = STATE(1697), [sym_printf_statement] = STATE(1697), - [sym_redirected_io_statement] = STATE(1155), - [sym_piped_io_statement] = STATE(1155), - [sym_block] = STATE(1158), - [sym__exp] = STATE(1547), - [sym_ternary_exp] = STATE(1441), - [sym_binary_exp] = STATE(1441), - [sym__binary_in] = STATE(1309), - [sym_unary_exp] = STATE(1441), - [sym_update_exp] = STATE(1547), - [sym_assignment_exp] = STATE(1547), - [sym_piped_io_exp] = STATE(1547), - [sym_string_concat] = STATE(1441), - [sym_field_ref] = STATE(995), - [sym_array_ref] = STATE(774), - [sym_regex] = STATE(1547), - [sym_regex_constant] = STATE(1547), - [sym_grouping] = STATE(1441), - [sym__primitive] = STATE(1441), - [sym_namespace] = STATE(2063), - [sym_ns_qualified_name] = STATE(647), - [sym_number] = STATE(1441), - [sym_string] = STATE(1441), - [sym_func_call] = STATE(1441), - [sym_indirect_func_call] = STATE(1547), - [sym_comment] = STATE(1238), - [aux_sym_if_statement_repeat1] = STATE(1238), - [sym_identifier] = ACTIONS(450), - [anon_sym_SEMI] = ACTIONS(414), - [anon_sym_if] = ACTIONS(454), - [anon_sym_LPAREN] = ACTIONS(456), - [anon_sym_while] = ACTIONS(458), - [anon_sym_do] = ACTIONS(49), - [anon_sym_for] = ACTIONS(460), - [sym_break_statement] = ACTIONS(416), - [sym_continue_statement] = ACTIONS(416), - [anon_sym_delete] = ACTIONS(55), - [anon_sym_exit] = ACTIONS(464), - [anon_sym_return] = ACTIONS(466), - [anon_sym_switch] = ACTIONS(61), - [anon_sym_LBRACE] = ACTIONS(316), - [anon_sym_getline] = ACTIONS(468), - [sym_next_statement] = ACTIONS(416), - [sym_nextfile_statement] = ACTIONS(416), - [anon_sym_print] = ACTIONS(470), - [anon_sym_printf] = ACTIONS(472), - [anon_sym_SLASH] = ACTIONS(474), - [anon_sym_PLUS] = ACTIONS(476), - [anon_sym_DASH] = ACTIONS(476), - [anon_sym_BANG] = ACTIONS(478), - [anon_sym_PLUS_PLUS] = ACTIONS(480), - [anon_sym_DASH_DASH] = ACTIONS(480), - [anon_sym_DOLLAR] = ACTIONS(482), - [anon_sym_AT] = ACTIONS(484), - [aux_sym_number_token1] = ACTIONS(79), - [aux_sym_number_token2] = ACTIONS(486), - [anon_sym_DQUOTE] = ACTIONS(488), - [anon_sym_POUND] = ACTIONS(171), + [sym_redirected_io_statement] = STATE(1711), + [sym_piped_io_statement] = STATE(1711), + [sym__exp] = STATE(1471), + [sym_ternary_exp] = STATE(1420), + [sym_binary_exp] = STATE(1420), + [sym__binary_in] = STATE(1385), + [sym_unary_exp] = STATE(1420), + [sym_update_exp] = STATE(1471), + [sym_assignment_exp] = STATE(1471), + [sym_piped_io_exp] = STATE(1471), + [sym_string_concat] = STATE(1420), + [sym_field_ref] = STATE(705), + [sym_array_ref] = STATE(614), + [sym_regex] = STATE(1471), + [sym_regex_constant] = STATE(1471), + [sym_grouping] = STATE(1420), + [sym__primitive] = STATE(1420), + [sym_namespace] = STATE(1956), + [sym_ns_qualified_name] = STATE(597), + [sym_number] = STATE(1420), + [sym_string] = STATE(1420), + [sym_func_call] = STATE(1420), + [sym_indirect_func_call] = STATE(1471), + [sym_comment] = STATE(106), + [aux_sym_if_statement_repeat1] = STATE(106), + [sym_identifier] = ACTIONS(137), + [anon_sym_if] = ACTIONS(139), + [anon_sym_LPAREN] = ACTIONS(434), + [anon_sym_while] = ACTIONS(143), + [anon_sym_do] = ACTIONS(93), + [anon_sym_for] = ACTIONS(145), + [sym_break_statement] = ACTIONS(580), + [sym_continue_statement] = ACTIONS(580), + [anon_sym_delete] = ACTIONS(99), + [anon_sym_exit] = ACTIONS(149), + [anon_sym_return] = ACTIONS(151), + [anon_sym_switch] = ACTIONS(105), + [anon_sym_RBRACE] = ACTIONS(582), + [anon_sym_case] = ACTIONS(584), + [anon_sym_default] = ACTIONS(584), + [anon_sym_getline] = ACTIONS(153), + [sym_next_statement] = ACTIONS(580), + [sym_nextfile_statement] = ACTIONS(580), + [anon_sym_print] = ACTIONS(155), + [anon_sym_printf] = ACTIONS(157), + [anon_sym_SLASH] = ACTIONS(438), + [anon_sym_PLUS] = ACTIONS(161), + [anon_sym_DASH] = ACTIONS(161), + [anon_sym_BANG] = ACTIONS(440), + [anon_sym_PLUS_PLUS] = ACTIONS(442), + [anon_sym_DASH_DASH] = ACTIONS(442), + [anon_sym_DOLLAR] = ACTIONS(444), + [anon_sym_AT] = ACTIONS(446), + [aux_sym_number_token1] = ACTIONS(169), + [aux_sym_number_token2] = ACTIONS(306), + [anon_sym_DQUOTE] = ACTIONS(308), + [anon_sym_POUND] = ACTIONS(135), }, [135] = { - [sym__statement] = STATE(1153), - [sym__statement_separated] = STATE(141), - [sym__control_statement] = STATE(1153), - [sym_if_statement] = STATE(1153), - [sym_while_statement] = STATE(1153), - [sym_do_while_statement] = STATE(1153), - [sym_for_statement] = STATE(1153), - [sym_for_in_statement] = STATE(1153), - [sym_delete_statement] = STATE(1153), - [sym_exit_statement] = STATE(1153), - [sym_return_statement] = STATE(1153), - [sym_switch_statement] = STATE(1153), - [sym__io_statement] = STATE(1153), - [sym__getline_exp] = STATE(1547), - [sym_getline_input] = STATE(1547), - [sym_getline_file] = STATE(1547), - [sym_print_statement] = STATE(1697), - [sym_printf_statement] = STATE(1697), - [sym_redirected_io_statement] = STATE(1153), - [sym_piped_io_statement] = STATE(1153), - [sym_block] = STATE(1154), - [sym__exp] = STATE(1547), - [sym_ternary_exp] = STATE(1441), - [sym_binary_exp] = STATE(1441), - [sym__binary_in] = STATE(1309), - [sym_unary_exp] = STATE(1441), - [sym_update_exp] = STATE(1547), - [sym_assignment_exp] = STATE(1547), - [sym_piped_io_exp] = STATE(1547), - [sym_string_concat] = STATE(1441), - [sym_field_ref] = STATE(995), - [sym_array_ref] = STATE(774), - [sym_regex] = STATE(1547), - [sym_regex_constant] = STATE(1547), - [sym_grouping] = STATE(1441), - [sym__primitive] = STATE(1441), - [sym_namespace] = STATE(2063), - [sym_ns_qualified_name] = STATE(647), - [sym_number] = STATE(1441), - [sym_string] = STATE(1441), - [sym_func_call] = STATE(1441), - [sym_indirect_func_call] = STATE(1547), - [sym_comment] = STATE(97), - [aux_sym_if_statement_repeat1] = STATE(97), - [sym_identifier] = ACTIONS(450), - [anon_sym_SEMI] = ACTIONS(418), - [anon_sym_if] = ACTIONS(454), - [anon_sym_LPAREN] = ACTIONS(456), - [anon_sym_while] = ACTIONS(458), - [anon_sym_do] = ACTIONS(49), - [anon_sym_for] = ACTIONS(460), - [sym_break_statement] = ACTIONS(420), - [sym_continue_statement] = ACTIONS(420), - [anon_sym_delete] = ACTIONS(55), - [anon_sym_exit] = ACTIONS(464), - [anon_sym_return] = ACTIONS(466), - [anon_sym_switch] = ACTIONS(61), - [anon_sym_LBRACE] = ACTIONS(316), - [anon_sym_getline] = ACTIONS(468), - [sym_next_statement] = ACTIONS(420), - [sym_nextfile_statement] = ACTIONS(420), - [anon_sym_print] = ACTIONS(470), - [anon_sym_printf] = ACTIONS(472), - [anon_sym_SLASH] = ACTIONS(474), - [anon_sym_PLUS] = ACTIONS(476), - [anon_sym_DASH] = ACTIONS(476), - [anon_sym_BANG] = ACTIONS(478), - [anon_sym_PLUS_PLUS] = ACTIONS(480), - [anon_sym_DASH_DASH] = ACTIONS(480), - [anon_sym_DOLLAR] = ACTIONS(482), - [anon_sym_AT] = ACTIONS(484), - [aux_sym_number_token1] = ACTIONS(79), - [aux_sym_number_token2] = ACTIONS(486), - [anon_sym_DQUOTE] = ACTIONS(488), - [anon_sym_POUND] = ACTIONS(171), + [sym__statement] = STATE(1206), + [sym__statement_separated] = STATE(1206), + [sym__control_statement] = STATE(1206), + [sym_if_statement] = STATE(1206), + [sym_while_statement] = STATE(1206), + [sym_do_while_statement] = STATE(1206), + [sym_for_statement] = STATE(1206), + [sym_for_in_statement] = STATE(1206), + [sym_delete_statement] = STATE(1206), + [sym_exit_statement] = STATE(1206), + [sym_return_statement] = STATE(1206), + [sym_switch_statement] = STATE(1206), + [sym__io_statement] = STATE(1206), + [sym__getline_exp] = STATE(503), + [sym_getline_input] = STATE(503), + [sym_getline_file] = STATE(503), + [sym_print_statement] = STATE(869), + [sym_printf_statement] = STATE(869), + [sym_redirected_io_statement] = STATE(1206), + [sym_piped_io_statement] = STATE(1206), + [sym_block] = STATE(1208), + [sym__exp] = STATE(503), + [sym_ternary_exp] = STATE(427), + [sym_binary_exp] = STATE(427), + [sym__binary_in] = STATE(426), + [sym_unary_exp] = STATE(427), + [sym_update_exp] = STATE(503), + [sym_assignment_exp] = STATE(503), + [sym_piped_io_exp] = STATE(503), + [sym_string_concat] = STATE(427), + [sym_field_ref] = STATE(274), + [sym_array_ref] = STATE(268), + [sym_regex] = STATE(503), + [sym_regex_constant] = STATE(503), + [sym_grouping] = STATE(427), + [sym__primitive] = STATE(427), + [sym_namespace] = STATE(1956), + [sym_ns_qualified_name] = STATE(244), + [sym_number] = STATE(427), + [sym_string] = STATE(427), + [sym_func_call] = STATE(427), + [sym_indirect_func_call] = STATE(503), + [sym_comment] = STATE(111), + [aux_sym_if_statement_repeat1] = STATE(111), + [sym_identifier] = ACTIONS(85), + [anon_sym_SEMI] = ACTIONS(468), + [anon_sym_if] = ACTIONS(87), + [anon_sym_LPAREN] = ACTIONS(89), + [anon_sym_while] = ACTIONS(91), + [anon_sym_do] = ACTIONS(93), + [anon_sym_for] = ACTIONS(95), + [sym_break_statement] = ACTIONS(470), + [sym_continue_statement] = ACTIONS(470), + [anon_sym_delete] = ACTIONS(99), + [anon_sym_exit] = ACTIONS(101), + [anon_sym_return] = ACTIONS(103), + [anon_sym_switch] = ACTIONS(105), + [anon_sym_LBRACE] = ACTIONS(268), + [anon_sym_getline] = ACTIONS(111), + [sym_next_statement] = ACTIONS(470), + [sym_nextfile_statement] = ACTIONS(470), + [anon_sym_print] = ACTIONS(113), + [anon_sym_printf] = ACTIONS(115), + [anon_sym_SLASH] = ACTIONS(117), + [anon_sym_PLUS] = ACTIONS(119), + [anon_sym_DASH] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(121), + [anon_sym_PLUS_PLUS] = ACTIONS(123), + [anon_sym_DASH_DASH] = ACTIONS(123), + [anon_sym_DOLLAR] = ACTIONS(125), + [anon_sym_AT] = ACTIONS(127), + [aux_sym_number_token1] = ACTIONS(129), + [aux_sym_number_token2] = ACTIONS(131), + [anon_sym_DQUOTE] = ACTIONS(133), + [anon_sym_POUND] = ACTIONS(135), }, [136] = { - [sym__statement] = STATE(1151), - [sym__statement_separated] = STATE(141), - [sym__control_statement] = STATE(1151), - [sym_if_statement] = STATE(1151), - [sym_while_statement] = STATE(1151), - [sym_do_while_statement] = STATE(1151), - [sym_for_statement] = STATE(1151), - [sym_for_in_statement] = STATE(1151), - [sym_delete_statement] = STATE(1151), - [sym_exit_statement] = STATE(1151), - [sym_return_statement] = STATE(1151), - [sym_switch_statement] = STATE(1151), - [sym__io_statement] = STATE(1151), - [sym__getline_exp] = STATE(1547), - [sym_getline_input] = STATE(1547), - [sym_getline_file] = STATE(1547), - [sym_print_statement] = STATE(1697), - [sym_printf_statement] = STATE(1697), - [sym_redirected_io_statement] = STATE(1151), - [sym_piped_io_statement] = STATE(1151), - [sym_block] = STATE(1152), - [sym__exp] = STATE(1547), - [sym_ternary_exp] = STATE(1441), - [sym_binary_exp] = STATE(1441), - [sym__binary_in] = STATE(1309), - [sym_unary_exp] = STATE(1441), - [sym_update_exp] = STATE(1547), - [sym_assignment_exp] = STATE(1547), - [sym_piped_io_exp] = STATE(1547), - [sym_string_concat] = STATE(1441), - [sym_field_ref] = STATE(995), - [sym_array_ref] = STATE(774), - [sym_regex] = STATE(1547), - [sym_regex_constant] = STATE(1547), - [sym_grouping] = STATE(1441), - [sym__primitive] = STATE(1441), - [sym_namespace] = STATE(2063), - [sym_ns_qualified_name] = STATE(647), - [sym_number] = STATE(1441), - [sym_string] = STATE(1441), - [sym_func_call] = STATE(1441), - [sym_indirect_func_call] = STATE(1547), - [sym_comment] = STATE(78), - [aux_sym_if_statement_repeat1] = STATE(78), - [sym_identifier] = ACTIONS(450), - [anon_sym_SEMI] = ACTIONS(422), - [anon_sym_if] = ACTIONS(454), - [anon_sym_LPAREN] = ACTIONS(456), - [anon_sym_while] = ACTIONS(458), + [sym__statement] = STATE(1128), + [sym__statement_separated] = STATE(2), + [sym__control_statement] = STATE(1128), + [sym_if_statement] = STATE(1128), + [sym_while_statement] = STATE(1128), + [sym_do_while_statement] = STATE(1128), + [sym_for_statement] = STATE(1128), + [sym_for_in_statement] = STATE(1128), + [sym_delete_statement] = STATE(1128), + [sym_exit_statement] = STATE(1128), + [sym_return_statement] = STATE(1128), + [sym_switch_statement] = STATE(1128), + [sym__io_statement] = STATE(1128), + [sym__getline_exp] = STATE(1446), + [sym_getline_input] = STATE(1446), + [sym_getline_file] = STATE(1446), + [sym_print_statement] = STATE(1696), + [sym_printf_statement] = STATE(1696), + [sym_redirected_io_statement] = STATE(1128), + [sym_piped_io_statement] = STATE(1128), + [sym_block] = STATE(1129), + [sym__exp] = STATE(1446), + [sym_ternary_exp] = STATE(1371), + [sym_binary_exp] = STATE(1371), + [sym__binary_in] = STATE(1305), + [sym_unary_exp] = STATE(1371), + [sym_update_exp] = STATE(1446), + [sym_assignment_exp] = STATE(1446), + [sym_piped_io_exp] = STATE(1446), + [sym_string_concat] = STATE(1371), + [sym_field_ref] = STATE(632), + [sym_array_ref] = STATE(601), + [sym_regex] = STATE(1446), + [sym_regex_constant] = STATE(1446), + [sym_grouping] = STATE(1371), + [sym__primitive] = STATE(1371), + [sym_namespace] = STATE(2068), + [sym_ns_qualified_name] = STATE(590), + [sym_number] = STATE(1371), + [sym_string] = STATE(1371), + [sym_func_call] = STATE(1371), + [sym_indirect_func_call] = STATE(1446), + [sym_comment] = STATE(1252), + [aux_sym_if_statement_repeat1] = STATE(1252), + [sym_identifier] = ACTIONS(39), + [anon_sym_SEMI] = ACTIONS(522), + [anon_sym_if] = ACTIONS(43), + [anon_sym_LPAREN] = ACTIONS(312), + [anon_sym_while] = ACTIONS(47), [anon_sym_do] = ACTIONS(49), - [anon_sym_for] = ACTIONS(460), - [sym_break_statement] = ACTIONS(424), - [sym_continue_statement] = ACTIONS(424), + [anon_sym_for] = ACTIONS(51), + [sym_break_statement] = ACTIONS(524), + [sym_continue_statement] = ACTIONS(524), [anon_sym_delete] = ACTIONS(55), - [anon_sym_exit] = ACTIONS(464), - [anon_sym_return] = ACTIONS(466), + [anon_sym_exit] = ACTIONS(57), + [anon_sym_return] = ACTIONS(59), [anon_sym_switch] = ACTIONS(61), [anon_sym_LBRACE] = ACTIONS(316), - [anon_sym_getline] = ACTIONS(468), - [sym_next_statement] = ACTIONS(424), - [sym_nextfile_statement] = ACTIONS(424), - [anon_sym_print] = ACTIONS(470), - [anon_sym_printf] = ACTIONS(472), - [anon_sym_SLASH] = ACTIONS(474), - [anon_sym_PLUS] = ACTIONS(476), - [anon_sym_DASH] = ACTIONS(476), - [anon_sym_BANG] = ACTIONS(478), - [anon_sym_PLUS_PLUS] = ACTIONS(480), - [anon_sym_DASH_DASH] = ACTIONS(480), - [anon_sym_DOLLAR] = ACTIONS(482), - [anon_sym_AT] = ACTIONS(484), + [anon_sym_getline] = ACTIONS(63), + [sym_next_statement] = ACTIONS(524), + [sym_nextfile_statement] = ACTIONS(524), + [anon_sym_print] = ACTIONS(65), + [anon_sym_printf] = ACTIONS(67), + [anon_sym_SLASH] = ACTIONS(318), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(71), + [anon_sym_BANG] = ACTIONS(320), + [anon_sym_PLUS_PLUS] = ACTIONS(322), + [anon_sym_DASH_DASH] = ACTIONS(322), + [anon_sym_DOLLAR] = ACTIONS(324), + [anon_sym_AT] = ACTIONS(326), [aux_sym_number_token1] = ACTIONS(79), - [aux_sym_number_token2] = ACTIONS(486), - [anon_sym_DQUOTE] = ACTIONS(488), - [anon_sym_POUND] = ACTIONS(171), + [aux_sym_number_token2] = ACTIONS(328), + [anon_sym_DQUOTE] = ACTIONS(330), + [anon_sym_POUND] = ACTIONS(135), }, [137] = { - [sym__statement] = STATE(1815), - [sym__statement_separated] = STATE(146), - [sym__control_statement] = STATE(1815), - [sym_if_statement] = STATE(1815), - [sym_while_statement] = STATE(1815), - [sym_do_while_statement] = STATE(1815), - [sym_for_statement] = STATE(1815), - [sym_for_in_statement] = STATE(1815), - [sym_delete_statement] = STATE(1815), - [sym_exit_statement] = STATE(1815), - [sym_return_statement] = STATE(1815), - [sym_switch_statement] = STATE(1815), - [sym__io_statement] = STATE(1815), - [sym__getline_exp] = STATE(1568), - [sym_getline_input] = STATE(1568), - [sym_getline_file] = STATE(1568), - [sym_print_statement] = STATE(1699), - [sym_printf_statement] = STATE(1699), - [sym_redirected_io_statement] = STATE(1815), - [sym_piped_io_statement] = STATE(1815), - [sym_block] = STATE(2078), - [sym__exp] = STATE(1568), - [sym_ternary_exp] = STATE(1470), - [sym_binary_exp] = STATE(1470), - [sym__binary_in] = STATE(1373), - [sym_unary_exp] = STATE(1470), - [sym_update_exp] = STATE(1568), - [sym_assignment_exp] = STATE(1568), - [sym_piped_io_exp] = STATE(1568), - [sym_string_concat] = STATE(1470), - [sym_field_ref] = STATE(1121), - [sym_array_ref] = STATE(1022), - [sym_regex] = STATE(1568), - [sym_regex_constant] = STATE(1568), - [sym_grouping] = STATE(1470), - [sym__primitive] = STATE(1470), - [sym_namespace] = STATE(1955), - [sym_ns_qualified_name] = STATE(744), - [sym_number] = STATE(1470), - [sym_string] = STATE(1470), - [sym_func_call] = STATE(1470), - [sym_indirect_func_call] = STATE(1568), - [sym_comment] = STATE(1238), - [aux_sym_if_statement_repeat1] = STATE(1238), - [sym_identifier] = ACTIONS(362), - [anon_sym_if] = ACTIONS(364), - [anon_sym_LPAREN] = ACTIONS(366), - [anon_sym_while] = ACTIONS(368), + [sym__statement] = STATE(1837), + [sym__statement_separated] = STATE(143), + [sym__control_statement] = STATE(1837), + [sym_if_statement] = STATE(1837), + [sym_while_statement] = STATE(1837), + [sym_do_while_statement] = STATE(1837), + [sym_for_statement] = STATE(1837), + [sym_for_in_statement] = STATE(1837), + [sym_delete_statement] = STATE(1837), + [sym_exit_statement] = STATE(1837), + [sym_return_statement] = STATE(1837), + [sym_switch_statement] = STATE(1837), + [sym__io_statement] = STATE(1837), + [sym__getline_exp] = STATE(1570), + [sym_getline_input] = STATE(1570), + [sym_getline_file] = STATE(1570), + [sym_print_statement] = STATE(1707), + [sym_printf_statement] = STATE(1707), + [sym_redirected_io_statement] = STATE(1837), + [sym_piped_io_statement] = STATE(1837), + [sym_block] = STATE(2023), + [sym__exp] = STATE(1570), + [sym_ternary_exp] = STATE(1476), + [sym_binary_exp] = STATE(1476), + [sym__binary_in] = STATE(1385), + [sym_unary_exp] = STATE(1476), + [sym_update_exp] = STATE(1570), + [sym_assignment_exp] = STATE(1570), + [sym_piped_io_exp] = STATE(1570), + [sym_string_concat] = STATE(1476), + [sym_field_ref] = STATE(1194), + [sym_array_ref] = STATE(991), + [sym_regex] = STATE(1570), + [sym_regex_constant] = STATE(1570), + [sym_grouping] = STATE(1476), + [sym__primitive] = STATE(1476), + [sym_namespace] = STATE(1956), + [sym_ns_qualified_name] = STATE(720), + [sym_number] = STATE(1476), + [sym_string] = STATE(1476), + [sym_func_call] = STATE(1476), + [sym_indirect_func_call] = STATE(1570), + [sym_comment] = STATE(138), + [aux_sym_if_statement_repeat1] = STATE(138), + [sym_identifier] = ACTIONS(270), + [anon_sym_if] = ACTIONS(274), + [anon_sym_LPAREN] = ACTIONS(276), + [anon_sym_while] = ACTIONS(278), [anon_sym_do] = ACTIONS(93), - [anon_sym_for] = ACTIONS(370), + [anon_sym_for] = ACTIONS(280), [sym_break_statement] = ACTIONS(586), [sym_continue_statement] = ACTIONS(586), [anon_sym_delete] = ACTIONS(99), - [anon_sym_exit] = ACTIONS(372), - [anon_sym_return] = ACTIONS(374), + [anon_sym_exit] = ACTIONS(284), + [anon_sym_return] = ACTIONS(286), [anon_sym_switch] = ACTIONS(105), [anon_sym_LBRACE] = ACTIONS(13), - [anon_sym_getline] = ACTIONS(376), + [anon_sym_getline] = ACTIONS(288), [sym_next_statement] = ACTIONS(586), [sym_nextfile_statement] = ACTIONS(586), - [anon_sym_print] = ACTIONS(378), - [anon_sym_printf] = ACTIONS(380), - [anon_sym_SLASH] = ACTIONS(382), - [anon_sym_PLUS] = ACTIONS(384), - [anon_sym_DASH] = ACTIONS(384), - [anon_sym_BANG] = ACTIONS(386), - [anon_sym_PLUS_PLUS] = ACTIONS(388), - [anon_sym_DASH_DASH] = ACTIONS(388), - [anon_sym_DOLLAR] = ACTIONS(390), - [anon_sym_AT] = ACTIONS(392), - [aux_sym_number_token1] = ACTIONS(123), - [aux_sym_number_token2] = ACTIONS(286), - [anon_sym_DQUOTE] = ACTIONS(288), - [anon_sym_POUND] = ACTIONS(171), + [anon_sym_print] = ACTIONS(290), + [anon_sym_printf] = ACTIONS(292), + [anon_sym_SLASH] = ACTIONS(294), + [anon_sym_PLUS] = ACTIONS(296), + [anon_sym_DASH] = ACTIONS(296), + [anon_sym_BANG] = ACTIONS(298), + [anon_sym_PLUS_PLUS] = ACTIONS(300), + [anon_sym_DASH_DASH] = ACTIONS(300), + [anon_sym_DOLLAR] = ACTIONS(302), + [anon_sym_AT] = ACTIONS(304), + [aux_sym_number_token1] = ACTIONS(169), + [aux_sym_number_token2] = ACTIONS(306), + [anon_sym_DQUOTE] = ACTIONS(308), + [anon_sym_POUND] = ACTIONS(135), }, [138] = { - [sym__statement] = STATE(1829), - [sym__statement_separated] = STATE(146), - [sym__control_statement] = STATE(1829), - [sym_if_statement] = STATE(1829), - [sym_while_statement] = STATE(1829), - [sym_do_while_statement] = STATE(1829), - [sym_for_statement] = STATE(1829), - [sym_for_in_statement] = STATE(1829), - [sym_delete_statement] = STATE(1829), - [sym_exit_statement] = STATE(1829), - [sym_return_statement] = STATE(1829), - [sym_switch_statement] = STATE(1829), - [sym__io_statement] = STATE(1829), - [sym__getline_exp] = STATE(1568), - [sym_getline_input] = STATE(1568), - [sym_getline_file] = STATE(1568), - [sym_print_statement] = STATE(1699), - [sym_printf_statement] = STATE(1699), - [sym_redirected_io_statement] = STATE(1829), - [sym_piped_io_statement] = STATE(1829), - [sym_block] = STATE(1985), - [sym__exp] = STATE(1568), - [sym_ternary_exp] = STATE(1470), - [sym_binary_exp] = STATE(1470), - [sym__binary_in] = STATE(1373), - [sym_unary_exp] = STATE(1470), - [sym_update_exp] = STATE(1568), - [sym_assignment_exp] = STATE(1568), - [sym_piped_io_exp] = STATE(1568), - [sym_string_concat] = STATE(1470), - [sym_field_ref] = STATE(1121), - [sym_array_ref] = STATE(1022), - [sym_regex] = STATE(1568), - [sym_regex_constant] = STATE(1568), - [sym_grouping] = STATE(1470), - [sym__primitive] = STATE(1470), - [sym_namespace] = STATE(1955), - [sym_ns_qualified_name] = STATE(744), - [sym_number] = STATE(1470), - [sym_string] = STATE(1470), - [sym_func_call] = STATE(1470), - [sym_indirect_func_call] = STATE(1568), - [sym_comment] = STATE(1238), - [aux_sym_if_statement_repeat1] = STATE(1238), - [sym_identifier] = ACTIONS(362), - [anon_sym_if] = ACTIONS(364), - [anon_sym_LPAREN] = ACTIONS(366), - [anon_sym_while] = ACTIONS(368), + [sym__statement] = STATE(1844), + [sym__statement_separated] = STATE(143), + [sym__control_statement] = STATE(1844), + [sym_if_statement] = STATE(1844), + [sym_while_statement] = STATE(1844), + [sym_do_while_statement] = STATE(1844), + [sym_for_statement] = STATE(1844), + [sym_for_in_statement] = STATE(1844), + [sym_delete_statement] = STATE(1844), + [sym_exit_statement] = STATE(1844), + [sym_return_statement] = STATE(1844), + [sym_switch_statement] = STATE(1844), + [sym__io_statement] = STATE(1844), + [sym__getline_exp] = STATE(1570), + [sym_getline_input] = STATE(1570), + [sym_getline_file] = STATE(1570), + [sym_print_statement] = STATE(1707), + [sym_printf_statement] = STATE(1707), + [sym_redirected_io_statement] = STATE(1844), + [sym_piped_io_statement] = STATE(1844), + [sym_block] = STATE(1995), + [sym__exp] = STATE(1570), + [sym_ternary_exp] = STATE(1476), + [sym_binary_exp] = STATE(1476), + [sym__binary_in] = STATE(1385), + [sym_unary_exp] = STATE(1476), + [sym_update_exp] = STATE(1570), + [sym_assignment_exp] = STATE(1570), + [sym_piped_io_exp] = STATE(1570), + [sym_string_concat] = STATE(1476), + [sym_field_ref] = STATE(1194), + [sym_array_ref] = STATE(991), + [sym_regex] = STATE(1570), + [sym_regex_constant] = STATE(1570), + [sym_grouping] = STATE(1476), + [sym__primitive] = STATE(1476), + [sym_namespace] = STATE(1956), + [sym_ns_qualified_name] = STATE(720), + [sym_number] = STATE(1476), + [sym_string] = STATE(1476), + [sym_func_call] = STATE(1476), + [sym_indirect_func_call] = STATE(1570), + [sym_comment] = STATE(1252), + [aux_sym_if_statement_repeat1] = STATE(1252), + [sym_identifier] = ACTIONS(270), + [anon_sym_if] = ACTIONS(274), + [anon_sym_LPAREN] = ACTIONS(276), + [anon_sym_while] = ACTIONS(278), [anon_sym_do] = ACTIONS(93), - [anon_sym_for] = ACTIONS(370), + [anon_sym_for] = ACTIONS(280), [sym_break_statement] = ACTIONS(588), [sym_continue_statement] = ACTIONS(588), [anon_sym_delete] = ACTIONS(99), - [anon_sym_exit] = ACTIONS(372), - [anon_sym_return] = ACTIONS(374), + [anon_sym_exit] = ACTIONS(284), + [anon_sym_return] = ACTIONS(286), [anon_sym_switch] = ACTIONS(105), [anon_sym_LBRACE] = ACTIONS(13), - [anon_sym_getline] = ACTIONS(376), + [anon_sym_getline] = ACTIONS(288), [sym_next_statement] = ACTIONS(588), [sym_nextfile_statement] = ACTIONS(588), - [anon_sym_print] = ACTIONS(378), - [anon_sym_printf] = ACTIONS(380), - [anon_sym_SLASH] = ACTIONS(382), - [anon_sym_PLUS] = ACTIONS(384), - [anon_sym_DASH] = ACTIONS(384), - [anon_sym_BANG] = ACTIONS(386), - [anon_sym_PLUS_PLUS] = ACTIONS(388), - [anon_sym_DASH_DASH] = ACTIONS(388), - [anon_sym_DOLLAR] = ACTIONS(390), - [anon_sym_AT] = ACTIONS(392), - [aux_sym_number_token1] = ACTIONS(123), - [aux_sym_number_token2] = ACTIONS(286), - [anon_sym_DQUOTE] = ACTIONS(288), - [anon_sym_POUND] = ACTIONS(171), + [anon_sym_print] = ACTIONS(290), + [anon_sym_printf] = ACTIONS(292), + [anon_sym_SLASH] = ACTIONS(294), + [anon_sym_PLUS] = ACTIONS(296), + [anon_sym_DASH] = ACTIONS(296), + [anon_sym_BANG] = ACTIONS(298), + [anon_sym_PLUS_PLUS] = ACTIONS(300), + [anon_sym_DASH_DASH] = ACTIONS(300), + [anon_sym_DOLLAR] = ACTIONS(302), + [anon_sym_AT] = ACTIONS(304), + [aux_sym_number_token1] = ACTIONS(169), + [aux_sym_number_token2] = ACTIONS(306), + [anon_sym_DQUOTE] = ACTIONS(308), + [anon_sym_POUND] = ACTIONS(135), }, [139] = { - [sym__statement] = STATE(1834), - [sym__statement_separated] = STATE(146), - [sym__control_statement] = STATE(1834), - [sym_if_statement] = STATE(1834), - [sym_while_statement] = STATE(1834), - [sym_do_while_statement] = STATE(1834), - [sym_for_statement] = STATE(1834), - [sym_for_in_statement] = STATE(1834), - [sym_delete_statement] = STATE(1834), - [sym_exit_statement] = STATE(1834), - [sym_return_statement] = STATE(1834), - [sym_switch_statement] = STATE(1834), - [sym__io_statement] = STATE(1834), - [sym__getline_exp] = STATE(1568), - [sym_getline_input] = STATE(1568), - [sym_getline_file] = STATE(1568), - [sym_print_statement] = STATE(1699), - [sym_printf_statement] = STATE(1699), - [sym_redirected_io_statement] = STATE(1834), - [sym_piped_io_statement] = STATE(1834), - [sym_block] = STATE(2074), - [sym__exp] = STATE(1568), - [sym_ternary_exp] = STATE(1470), - [sym_binary_exp] = STATE(1470), - [sym__binary_in] = STATE(1373), - [sym_unary_exp] = STATE(1470), - [sym_update_exp] = STATE(1568), - [sym_assignment_exp] = STATE(1568), - [sym_piped_io_exp] = STATE(1568), - [sym_string_concat] = STATE(1470), - [sym_field_ref] = STATE(1121), - [sym_array_ref] = STATE(1022), - [sym_regex] = STATE(1568), - [sym_regex_constant] = STATE(1568), - [sym_grouping] = STATE(1470), - [sym__primitive] = STATE(1470), - [sym_namespace] = STATE(1955), - [sym_ns_qualified_name] = STATE(744), - [sym_number] = STATE(1470), - [sym_string] = STATE(1470), - [sym_func_call] = STATE(1470), - [sym_indirect_func_call] = STATE(1568), - [sym_comment] = STATE(137), - [aux_sym_if_statement_repeat1] = STATE(137), - [sym_identifier] = ACTIONS(362), - [anon_sym_if] = ACTIONS(364), - [anon_sym_LPAREN] = ACTIONS(366), - [anon_sym_while] = ACTIONS(368), + [sym__statement] = STATE(1847), + [sym__statement_separated] = STATE(143), + [sym__control_statement] = STATE(1847), + [sym_if_statement] = STATE(1847), + [sym_while_statement] = STATE(1847), + [sym_do_while_statement] = STATE(1847), + [sym_for_statement] = STATE(1847), + [sym_for_in_statement] = STATE(1847), + [sym_delete_statement] = STATE(1847), + [sym_exit_statement] = STATE(1847), + [sym_return_statement] = STATE(1847), + [sym_switch_statement] = STATE(1847), + [sym__io_statement] = STATE(1847), + [sym__getline_exp] = STATE(1570), + [sym_getline_input] = STATE(1570), + [sym_getline_file] = STATE(1570), + [sym_print_statement] = STATE(1707), + [sym_printf_statement] = STATE(1707), + [sym_redirected_io_statement] = STATE(1847), + [sym_piped_io_statement] = STATE(1847), + [sym_block] = STATE(2079), + [sym__exp] = STATE(1570), + [sym_ternary_exp] = STATE(1476), + [sym_binary_exp] = STATE(1476), + [sym__binary_in] = STATE(1385), + [sym_unary_exp] = STATE(1476), + [sym_update_exp] = STATE(1570), + [sym_assignment_exp] = STATE(1570), + [sym_piped_io_exp] = STATE(1570), + [sym_string_concat] = STATE(1476), + [sym_field_ref] = STATE(1194), + [sym_array_ref] = STATE(991), + [sym_regex] = STATE(1570), + [sym_regex_constant] = STATE(1570), + [sym_grouping] = STATE(1476), + [sym__primitive] = STATE(1476), + [sym_namespace] = STATE(1956), + [sym_ns_qualified_name] = STATE(720), + [sym_number] = STATE(1476), + [sym_string] = STATE(1476), + [sym_func_call] = STATE(1476), + [sym_indirect_func_call] = STATE(1570), + [sym_comment] = STATE(140), + [aux_sym_if_statement_repeat1] = STATE(140), + [sym_identifier] = ACTIONS(270), + [anon_sym_if] = ACTIONS(274), + [anon_sym_LPAREN] = ACTIONS(276), + [anon_sym_while] = ACTIONS(278), [anon_sym_do] = ACTIONS(93), - [anon_sym_for] = ACTIONS(370), + [anon_sym_for] = ACTIONS(280), [sym_break_statement] = ACTIONS(590), [sym_continue_statement] = ACTIONS(590), [anon_sym_delete] = ACTIONS(99), - [anon_sym_exit] = ACTIONS(372), - [anon_sym_return] = ACTIONS(374), + [anon_sym_exit] = ACTIONS(284), + [anon_sym_return] = ACTIONS(286), [anon_sym_switch] = ACTIONS(105), [anon_sym_LBRACE] = ACTIONS(13), - [anon_sym_getline] = ACTIONS(376), + [anon_sym_getline] = ACTIONS(288), [sym_next_statement] = ACTIONS(590), [sym_nextfile_statement] = ACTIONS(590), - [anon_sym_print] = ACTIONS(378), - [anon_sym_printf] = ACTIONS(380), - [anon_sym_SLASH] = ACTIONS(382), - [anon_sym_PLUS] = ACTIONS(384), - [anon_sym_DASH] = ACTIONS(384), - [anon_sym_BANG] = ACTIONS(386), - [anon_sym_PLUS_PLUS] = ACTIONS(388), - [anon_sym_DASH_DASH] = ACTIONS(388), - [anon_sym_DOLLAR] = ACTIONS(390), - [anon_sym_AT] = ACTIONS(392), - [aux_sym_number_token1] = ACTIONS(123), - [aux_sym_number_token2] = ACTIONS(286), - [anon_sym_DQUOTE] = ACTIONS(288), - [anon_sym_POUND] = ACTIONS(171), + [anon_sym_print] = ACTIONS(290), + [anon_sym_printf] = ACTIONS(292), + [anon_sym_SLASH] = ACTIONS(294), + [anon_sym_PLUS] = ACTIONS(296), + [anon_sym_DASH] = ACTIONS(296), + [anon_sym_BANG] = ACTIONS(298), + [anon_sym_PLUS_PLUS] = ACTIONS(300), + [anon_sym_DASH_DASH] = ACTIONS(300), + [anon_sym_DOLLAR] = ACTIONS(302), + [anon_sym_AT] = ACTIONS(304), + [aux_sym_number_token1] = ACTIONS(169), + [aux_sym_number_token2] = ACTIONS(306), + [anon_sym_DQUOTE] = ACTIONS(308), + [anon_sym_POUND] = ACTIONS(135), }, [140] = { - [sym__statement] = STATE(1823), - [sym__statement_separated] = STATE(146), - [sym__control_statement] = STATE(1823), - [sym_if_statement] = STATE(1823), - [sym_while_statement] = STATE(1823), - [sym_do_while_statement] = STATE(1823), - [sym_for_statement] = STATE(1823), - [sym_for_in_statement] = STATE(1823), - [sym_delete_statement] = STATE(1823), - [sym_exit_statement] = STATE(1823), - [sym_return_statement] = STATE(1823), - [sym_switch_statement] = STATE(1823), - [sym__io_statement] = STATE(1823), - [sym__getline_exp] = STATE(1568), - [sym_getline_input] = STATE(1568), - [sym_getline_file] = STATE(1568), - [sym_print_statement] = STATE(1699), - [sym_printf_statement] = STATE(1699), - [sym_redirected_io_statement] = STATE(1823), - [sym_piped_io_statement] = STATE(1823), - [sym_block] = STATE(2018), - [sym__exp] = STATE(1568), - [sym_ternary_exp] = STATE(1470), - [sym_binary_exp] = STATE(1470), - [sym__binary_in] = STATE(1373), - [sym_unary_exp] = STATE(1470), - [sym_update_exp] = STATE(1568), - [sym_assignment_exp] = STATE(1568), - [sym_piped_io_exp] = STATE(1568), - [sym_string_concat] = STATE(1470), - [sym_field_ref] = STATE(1121), - [sym_array_ref] = STATE(1022), - [sym_regex] = STATE(1568), - [sym_regex_constant] = STATE(1568), - [sym_grouping] = STATE(1470), - [sym__primitive] = STATE(1470), - [sym_namespace] = STATE(1955), - [sym_ns_qualified_name] = STATE(744), - [sym_number] = STATE(1470), - [sym_string] = STATE(1470), - [sym_func_call] = STATE(1470), - [sym_indirect_func_call] = STATE(1568), - [sym_comment] = STATE(138), - [aux_sym_if_statement_repeat1] = STATE(138), - [sym_identifier] = ACTIONS(362), - [anon_sym_if] = ACTIONS(364), - [anon_sym_LPAREN] = ACTIONS(366), - [anon_sym_while] = ACTIONS(368), + [sym__statement] = STATE(1817), + [sym__statement_separated] = STATE(143), + [sym__control_statement] = STATE(1817), + [sym_if_statement] = STATE(1817), + [sym_while_statement] = STATE(1817), + [sym_do_while_statement] = STATE(1817), + [sym_for_statement] = STATE(1817), + [sym_for_in_statement] = STATE(1817), + [sym_delete_statement] = STATE(1817), + [sym_exit_statement] = STATE(1817), + [sym_return_statement] = STATE(1817), + [sym_switch_statement] = STATE(1817), + [sym__io_statement] = STATE(1817), + [sym__getline_exp] = STATE(1570), + [sym_getline_input] = STATE(1570), + [sym_getline_file] = STATE(1570), + [sym_print_statement] = STATE(1707), + [sym_printf_statement] = STATE(1707), + [sym_redirected_io_statement] = STATE(1817), + [sym_piped_io_statement] = STATE(1817), + [sym_block] = STATE(2083), + [sym__exp] = STATE(1570), + [sym_ternary_exp] = STATE(1476), + [sym_binary_exp] = STATE(1476), + [sym__binary_in] = STATE(1385), + [sym_unary_exp] = STATE(1476), + [sym_update_exp] = STATE(1570), + [sym_assignment_exp] = STATE(1570), + [sym_piped_io_exp] = STATE(1570), + [sym_string_concat] = STATE(1476), + [sym_field_ref] = STATE(1194), + [sym_array_ref] = STATE(991), + [sym_regex] = STATE(1570), + [sym_regex_constant] = STATE(1570), + [sym_grouping] = STATE(1476), + [sym__primitive] = STATE(1476), + [sym_namespace] = STATE(1956), + [sym_ns_qualified_name] = STATE(720), + [sym_number] = STATE(1476), + [sym_string] = STATE(1476), + [sym_func_call] = STATE(1476), + [sym_indirect_func_call] = STATE(1570), + [sym_comment] = STATE(1252), + [aux_sym_if_statement_repeat1] = STATE(1252), + [sym_identifier] = ACTIONS(270), + [anon_sym_if] = ACTIONS(274), + [anon_sym_LPAREN] = ACTIONS(276), + [anon_sym_while] = ACTIONS(278), [anon_sym_do] = ACTIONS(93), - [anon_sym_for] = ACTIONS(370), + [anon_sym_for] = ACTIONS(280), [sym_break_statement] = ACTIONS(592), [sym_continue_statement] = ACTIONS(592), [anon_sym_delete] = ACTIONS(99), - [anon_sym_exit] = ACTIONS(372), - [anon_sym_return] = ACTIONS(374), + [anon_sym_exit] = ACTIONS(284), + [anon_sym_return] = ACTIONS(286), [anon_sym_switch] = ACTIONS(105), [anon_sym_LBRACE] = ACTIONS(13), - [anon_sym_getline] = ACTIONS(376), + [anon_sym_getline] = ACTIONS(288), [sym_next_statement] = ACTIONS(592), [sym_nextfile_statement] = ACTIONS(592), - [anon_sym_print] = ACTIONS(378), - [anon_sym_printf] = ACTIONS(380), - [anon_sym_SLASH] = ACTIONS(382), - [anon_sym_PLUS] = ACTIONS(384), - [anon_sym_DASH] = ACTIONS(384), - [anon_sym_BANG] = ACTIONS(386), - [anon_sym_PLUS_PLUS] = ACTIONS(388), - [anon_sym_DASH_DASH] = ACTIONS(388), - [anon_sym_DOLLAR] = ACTIONS(390), - [anon_sym_AT] = ACTIONS(392), - [aux_sym_number_token1] = ACTIONS(123), - [aux_sym_number_token2] = ACTIONS(286), - [anon_sym_DQUOTE] = ACTIONS(288), - [anon_sym_POUND] = ACTIONS(171), + [anon_sym_print] = ACTIONS(290), + [anon_sym_printf] = ACTIONS(292), + [anon_sym_SLASH] = ACTIONS(294), + [anon_sym_PLUS] = ACTIONS(296), + [anon_sym_DASH] = ACTIONS(296), + [anon_sym_BANG] = ACTIONS(298), + [anon_sym_PLUS_PLUS] = ACTIONS(300), + [anon_sym_DASH_DASH] = ACTIONS(300), + [anon_sym_DOLLAR] = ACTIONS(302), + [anon_sym_AT] = ACTIONS(304), + [aux_sym_number_token1] = ACTIONS(169), + [aux_sym_number_token2] = ACTIONS(306), + [anon_sym_DQUOTE] = ACTIONS(308), + [anon_sym_POUND] = ACTIONS(135), }, [141] = { - [sym__statement] = STATE(1129), + [sym__statement] = STATE(1172), [sym__statement_separated] = STATE(141), - [sym__control_statement] = STATE(1129), - [sym_if_statement] = STATE(1129), - [sym_while_statement] = STATE(1129), - [sym_do_while_statement] = STATE(1129), - [sym_for_statement] = STATE(1129), - [sym_for_in_statement] = STATE(1129), - [sym_delete_statement] = STATE(1129), - [sym_exit_statement] = STATE(1129), - [sym_return_statement] = STATE(1129), - [sym_switch_statement] = STATE(1129), - [sym__io_statement] = STATE(1129), - [sym__getline_exp] = STATE(1547), - [sym_getline_input] = STATE(1547), - [sym_getline_file] = STATE(1547), - [sym_print_statement] = STATE(1697), - [sym_printf_statement] = STATE(1697), - [sym_redirected_io_statement] = STATE(1129), - [sym_piped_io_statement] = STATE(1129), - [sym__exp] = STATE(1547), - [sym_ternary_exp] = STATE(1441), - [sym_binary_exp] = STATE(1441), - [sym__binary_in] = STATE(1309), - [sym_unary_exp] = STATE(1441), - [sym_update_exp] = STATE(1547), - [sym_assignment_exp] = STATE(1547), - [sym_piped_io_exp] = STATE(1547), - [sym_string_concat] = STATE(1441), - [sym_field_ref] = STATE(995), - [sym_array_ref] = STATE(774), - [sym_regex] = STATE(1547), - [sym_regex_constant] = STATE(1547), - [sym_grouping] = STATE(1441), - [sym__primitive] = STATE(1441), - [sym_namespace] = STATE(2063), - [sym_ns_qualified_name] = STATE(647), - [sym_number] = STATE(1441), - [sym_string] = STATE(1441), - [sym_func_call] = STATE(1441), - [sym_indirect_func_call] = STATE(1547), - [sym_identifier] = ACTIONS(450), + [sym__control_statement] = STATE(1172), + [sym_if_statement] = STATE(1172), + [sym_while_statement] = STATE(1172), + [sym_do_while_statement] = STATE(1172), + [sym_for_statement] = STATE(1172), + [sym_for_in_statement] = STATE(1172), + [sym_delete_statement] = STATE(1172), + [sym_exit_statement] = STATE(1172), + [sym_return_statement] = STATE(1172), + [sym_switch_statement] = STATE(1172), + [sym__io_statement] = STATE(1172), + [sym__getline_exp] = STATE(1562), + [sym_getline_input] = STATE(1562), + [sym_getline_file] = STATE(1562), + [sym_print_statement] = STATE(1698), + [sym_printf_statement] = STATE(1698), + [sym_redirected_io_statement] = STATE(1172), + [sym_piped_io_statement] = STATE(1172), + [sym__exp] = STATE(1562), + [sym_ternary_exp] = STATE(1461), + [sym_binary_exp] = STATE(1461), + [sym__binary_in] = STATE(1305), + [sym_unary_exp] = STATE(1461), + [sym_update_exp] = STATE(1562), + [sym_assignment_exp] = STATE(1562), + [sym_piped_io_exp] = STATE(1562), + [sym_string_concat] = STATE(1461), + [sym_field_ref] = STATE(950), + [sym_array_ref] = STATE(740), + [sym_regex] = STATE(1562), + [sym_regex_constant] = STATE(1562), + [sym_grouping] = STATE(1461), + [sym__primitive] = STATE(1461), + [sym_namespace] = STATE(2068), + [sym_ns_qualified_name] = STATE(672), + [sym_number] = STATE(1461), + [sym_string] = STATE(1461), + [sym_func_call] = STATE(1461), + [sym_indirect_func_call] = STATE(1562), + [sym_identifier] = ACTIONS(336), [anon_sym_SEMI] = ACTIONS(41), [anon_sym_LF] = ACTIONS(41), [anon_sym_CR_LF] = ACTIONS(41), - [anon_sym_if] = ACTIONS(454), + [anon_sym_if] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(594), [anon_sym_while] = ACTIONS(41), [anon_sym_do] = ACTIONS(49), - [anon_sym_for] = ACTIONS(460), + [anon_sym_for] = ACTIONS(346), [sym_break_statement] = ACTIONS(53), [sym_continue_statement] = ACTIONS(53), [anon_sym_delete] = ACTIONS(55), - [anon_sym_exit] = ACTIONS(464), - [anon_sym_return] = ACTIONS(466), + [anon_sym_exit] = ACTIONS(350), + [anon_sym_return] = ACTIONS(352), [anon_sym_switch] = ACTIONS(61), - [anon_sym_getline] = ACTIONS(468), + [anon_sym_getline] = ACTIONS(354), [sym_next_statement] = ACTIONS(53), [sym_nextfile_statement] = ACTIONS(53), - [anon_sym_print] = ACTIONS(470), - [anon_sym_printf] = ACTIONS(472), + [anon_sym_print] = ACTIONS(356), + [anon_sym_printf] = ACTIONS(358), [anon_sym_SLASH] = ACTIONS(596), - [anon_sym_PLUS] = ACTIONS(476), - [anon_sym_DASH] = ACTIONS(476), - [anon_sym_BANG] = ACTIONS(476), + [anon_sym_PLUS] = ACTIONS(362), + [anon_sym_DASH] = ACTIONS(362), + [anon_sym_BANG] = ACTIONS(362), [anon_sym_PLUS_PLUS] = ACTIONS(598), [anon_sym_DASH_DASH] = ACTIONS(598), [anon_sym_DOLLAR] = ACTIONS(600), @@ -18602,228 +18904,154 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__if_else_separator] = ACTIONS(83), }, [142] = { - [sym__statement] = STATE(1789), - [sym__statement_separated] = STATE(141), - [sym__control_statement] = STATE(1789), - [sym_if_statement] = STATE(1789), - [sym_while_statement] = STATE(1789), - [sym_do_while_statement] = STATE(1789), - [sym_for_statement] = STATE(1789), - [sym_for_in_statement] = STATE(1789), - [sym_delete_statement] = STATE(1789), - [sym_exit_statement] = STATE(1789), - [sym_return_statement] = STATE(1789), - [sym_switch_statement] = STATE(1789), - [sym__io_statement] = STATE(1789), - [sym__getline_exp] = STATE(1547), - [sym_getline_input] = STATE(1547), - [sym_getline_file] = STATE(1547), - [sym_print_statement] = STATE(1697), - [sym_printf_statement] = STATE(1697), - [sym_redirected_io_statement] = STATE(1789), - [sym_piped_io_statement] = STATE(1789), - [sym_block] = STATE(1805), - [sym__exp] = STATE(1547), - [sym_ternary_exp] = STATE(1441), - [sym_binary_exp] = STATE(1441), - [sym__binary_in] = STATE(1309), - [sym_unary_exp] = STATE(1441), - [sym_update_exp] = STATE(1547), - [sym_assignment_exp] = STATE(1547), - [sym_piped_io_exp] = STATE(1547), - [sym_string_concat] = STATE(1441), - [sym_field_ref] = STATE(995), - [sym_array_ref] = STATE(774), - [sym_regex] = STATE(1547), - [sym_regex_constant] = STATE(1547), - [sym_grouping] = STATE(1441), - [sym__primitive] = STATE(1441), - [sym_namespace] = STATE(2063), - [sym_ns_qualified_name] = STATE(647), - [sym_number] = STATE(1441), - [sym_string] = STATE(1441), - [sym_func_call] = STATE(1441), - [sym_indirect_func_call] = STATE(1547), - [sym_identifier] = ACTIONS(450), + [sym__statement] = STATE(1271), + [sym__statement_separated] = STATE(1271), + [sym__control_statement] = STATE(1271), + [sym_if_statement] = STATE(1271), + [sym_while_statement] = STATE(1271), + [sym_do_while_statement] = STATE(1271), + [sym_for_statement] = STATE(1271), + [sym_for_in_statement] = STATE(1271), + [sym_delete_statement] = STATE(1271), + [sym_exit_statement] = STATE(1271), + [sym_return_statement] = STATE(1271), + [sym_switch_statement] = STATE(1271), + [sym__io_statement] = STATE(1271), + [sym__getline_exp] = STATE(483), + [sym_getline_input] = STATE(483), + [sym_getline_file] = STATE(483), + [sym_print_statement] = STATE(770), + [sym_printf_statement] = STATE(770), + [sym_redirected_io_statement] = STATE(1271), + [sym_piped_io_statement] = STATE(1271), + [sym_block] = STATE(1279), + [sym__exp] = STATE(483), + [sym_ternary_exp] = STATE(359), + [sym_binary_exp] = STATE(359), + [sym__binary_in] = STATE(373), + [sym_unary_exp] = STATE(359), + [sym_update_exp] = STATE(483), + [sym_assignment_exp] = STATE(483), + [sym_piped_io_exp] = STATE(483), + [sym_string_concat] = STATE(359), + [sym_field_ref] = STATE(258), + [sym_array_ref] = STATE(219), + [sym_regex] = STATE(483), + [sym_regex_constant] = STATE(483), + [sym_grouping] = STATE(359), + [sym__primitive] = STATE(359), + [sym_namespace] = STATE(2068), + [sym_ns_qualified_name] = STATE(200), + [sym_number] = STATE(359), + [sym_string] = STATE(359), + [sym_func_call] = STATE(359), + [sym_indirect_func_call] = STATE(483), + [sym_identifier] = ACTIONS(530), [anon_sym_SEMI] = ACTIONS(604), - [anon_sym_if] = ACTIONS(454), - [anon_sym_LPAREN] = ACTIONS(456), - [anon_sym_while] = ACTIONS(458), + [anon_sym_if] = ACTIONS(532), + [anon_sym_LPAREN] = ACTIONS(534), + [anon_sym_while] = ACTIONS(536), [anon_sym_do] = ACTIONS(49), - [anon_sym_for] = ACTIONS(460), + [anon_sym_for] = ACTIONS(538), [sym_break_statement] = ACTIONS(606), [sym_continue_statement] = ACTIONS(606), [anon_sym_delete] = ACTIONS(55), - [anon_sym_exit] = ACTIONS(464), - [anon_sym_return] = ACTIONS(466), + [anon_sym_exit] = ACTIONS(540), + [anon_sym_return] = ACTIONS(542), [anon_sym_switch] = ACTIONS(61), [anon_sym_LBRACE] = ACTIONS(316), - [anon_sym_getline] = ACTIONS(468), + [anon_sym_getline] = ACTIONS(544), [sym_next_statement] = ACTIONS(606), [sym_nextfile_statement] = ACTIONS(606), - [anon_sym_print] = ACTIONS(470), - [anon_sym_printf] = ACTIONS(472), - [anon_sym_SLASH] = ACTIONS(474), - [anon_sym_PLUS] = ACTIONS(476), - [anon_sym_DASH] = ACTIONS(476), - [anon_sym_BANG] = ACTIONS(478), - [anon_sym_PLUS_PLUS] = ACTIONS(480), - [anon_sym_DASH_DASH] = ACTIONS(480), - [anon_sym_DOLLAR] = ACTIONS(482), - [anon_sym_AT] = ACTIONS(484), - [aux_sym_number_token1] = ACTIONS(79), - [aux_sym_number_token2] = ACTIONS(486), - [anon_sym_DQUOTE] = ACTIONS(488), + [anon_sym_print] = ACTIONS(546), + [anon_sym_printf] = ACTIONS(548), + [anon_sym_SLASH] = ACTIONS(550), + [anon_sym_PLUS] = ACTIONS(552), + [anon_sym_DASH] = ACTIONS(552), + [anon_sym_BANG] = ACTIONS(554), + [anon_sym_PLUS_PLUS] = ACTIONS(556), + [anon_sym_DASH_DASH] = ACTIONS(556), + [anon_sym_DOLLAR] = ACTIONS(558), + [anon_sym_AT] = ACTIONS(560), + [aux_sym_number_token1] = ACTIONS(562), + [aux_sym_number_token2] = ACTIONS(564), + [anon_sym_DQUOTE] = ACTIONS(566), }, [143] = { - [sym__statement] = STATE(1280), - [sym__statement_separated] = STATE(1280), - [sym__control_statement] = STATE(1280), - [sym_if_statement] = STATE(1280), - [sym_while_statement] = STATE(1280), - [sym_do_while_statement] = STATE(1280), - [sym_for_statement] = STATE(1280), - [sym_for_in_statement] = STATE(1280), - [sym_delete_statement] = STATE(1280), - [sym_exit_statement] = STATE(1280), - [sym_return_statement] = STATE(1280), - [sym_switch_statement] = STATE(1280), - [sym__io_statement] = STATE(1280), - [sym__getline_exp] = STATE(482), - [sym_getline_input] = STATE(482), - [sym_getline_file] = STATE(482), - [sym_print_statement] = STATE(740), - [sym_printf_statement] = STATE(740), - [sym_redirected_io_statement] = STATE(1280), - [sym_piped_io_statement] = STATE(1280), - [sym_block] = STATE(1278), - [sym__exp] = STATE(482), - [sym_ternary_exp] = STATE(375), - [sym_binary_exp] = STATE(375), - [sym__binary_in] = STATE(369), - [sym_unary_exp] = STATE(375), - [sym_update_exp] = STATE(482), - [sym_assignment_exp] = STATE(482), - [sym_piped_io_exp] = STATE(482), - [sym_string_concat] = STATE(375), - [sym_field_ref] = STATE(256), - [sym_array_ref] = STATE(240), - [sym_regex] = STATE(482), - [sym_regex_constant] = STATE(482), - [sym_grouping] = STATE(375), - [sym__primitive] = STATE(375), - [sym_namespace] = STATE(2063), - [sym_ns_qualified_name] = STATE(196), - [sym_number] = STATE(375), - [sym_string] = STATE(375), - [sym_func_call] = STATE(375), - [sym_indirect_func_call] = STATE(482), - [sym_identifier] = ACTIONS(298), - [anon_sym_SEMI] = ACTIONS(608), - [anon_sym_if] = ACTIONS(302), - [anon_sym_LPAREN] = ACTIONS(304), - [anon_sym_while] = ACTIONS(306), - [anon_sym_do] = ACTIONS(49), - [anon_sym_for] = ACTIONS(308), - [sym_break_statement] = ACTIONS(610), - [sym_continue_statement] = ACTIONS(610), - [anon_sym_delete] = ACTIONS(55), - [anon_sym_exit] = ACTIONS(312), - [anon_sym_return] = ACTIONS(314), - [anon_sym_switch] = ACTIONS(61), - [anon_sym_LBRACE] = ACTIONS(316), - [anon_sym_getline] = ACTIONS(318), - [sym_next_statement] = ACTIONS(610), - [sym_nextfile_statement] = ACTIONS(610), - [anon_sym_print] = ACTIONS(320), - [anon_sym_printf] = ACTIONS(322), - [anon_sym_SLASH] = ACTIONS(324), - [anon_sym_PLUS] = ACTIONS(326), - [anon_sym_DASH] = ACTIONS(326), - [anon_sym_BANG] = ACTIONS(328), - [anon_sym_PLUS_PLUS] = ACTIONS(330), - [anon_sym_DASH_DASH] = ACTIONS(330), - [anon_sym_DOLLAR] = ACTIONS(332), - [anon_sym_AT] = ACTIONS(334), - [aux_sym_number_token1] = ACTIONS(336), - [aux_sym_number_token2] = ACTIONS(338), - [anon_sym_DQUOTE] = ACTIONS(340), + [sym__statement] = STATE(1234), + [sym__statement_separated] = STATE(143), + [sym__control_statement] = STATE(1234), + [sym_if_statement] = STATE(1234), + [sym_while_statement] = STATE(1234), + [sym_do_while_statement] = STATE(1234), + [sym_for_statement] = STATE(1234), + [sym_for_in_statement] = STATE(1234), + [sym_delete_statement] = STATE(1234), + [sym_exit_statement] = STATE(1234), + [sym_return_statement] = STATE(1234), + [sym_switch_statement] = STATE(1234), + [sym__io_statement] = STATE(1234), + [sym__getline_exp] = STATE(1570), + [sym_getline_input] = STATE(1570), + [sym_getline_file] = STATE(1570), + [sym_print_statement] = STATE(1707), + [sym_printf_statement] = STATE(1707), + [sym_redirected_io_statement] = STATE(1234), + [sym_piped_io_statement] = STATE(1234), + [sym__exp] = STATE(1570), + [sym_ternary_exp] = STATE(1476), + [sym_binary_exp] = STATE(1476), + [sym__binary_in] = STATE(1385), + [sym_unary_exp] = STATE(1476), + [sym_update_exp] = STATE(1570), + [sym_assignment_exp] = STATE(1570), + [sym_piped_io_exp] = STATE(1570), + [sym_string_concat] = STATE(1476), + [sym_field_ref] = STATE(1194), + [sym_array_ref] = STATE(991), + [sym_regex] = STATE(1570), + [sym_regex_constant] = STATE(1570), + [sym_grouping] = STATE(1476), + [sym__primitive] = STATE(1476), + [sym_namespace] = STATE(1956), + [sym_ns_qualified_name] = STATE(720), + [sym_number] = STATE(1476), + [sym_string] = STATE(1476), + [sym_func_call] = STATE(1476), + [sym_indirect_func_call] = STATE(1570), + [sym_identifier] = ACTIONS(270), + [anon_sym_SEMI] = ACTIONS(41), + [anon_sym_LF] = ACTIONS(41), + [anon_sym_CR_LF] = ACTIONS(41), + [anon_sym_if] = ACTIONS(274), + [anon_sym_LPAREN] = ACTIONS(608), + [anon_sym_while] = ACTIONS(41), + [anon_sym_do] = ACTIONS(93), + [anon_sym_for] = ACTIONS(280), + [sym_break_statement] = ACTIONS(147), + [sym_continue_statement] = ACTIONS(147), + [anon_sym_delete] = ACTIONS(99), + [anon_sym_exit] = ACTIONS(284), + [anon_sym_return] = ACTIONS(286), + [anon_sym_switch] = ACTIONS(105), + [anon_sym_getline] = ACTIONS(288), + [sym_next_statement] = ACTIONS(147), + [sym_nextfile_statement] = ACTIONS(147), + [anon_sym_print] = ACTIONS(290), + [anon_sym_printf] = ACTIONS(292), + [anon_sym_SLASH] = ACTIONS(610), + [anon_sym_PLUS] = ACTIONS(296), + [anon_sym_DASH] = ACTIONS(296), + [anon_sym_BANG] = ACTIONS(296), + [anon_sym_PLUS_PLUS] = ACTIONS(612), + [anon_sym_DASH_DASH] = ACTIONS(612), + [anon_sym_DOLLAR] = ACTIONS(614), + [anon_sym_AT] = ACTIONS(616), + [aux_sym_number_token1] = ACTIONS(169), + [aux_sym_number_token2] = ACTIONS(169), + [anon_sym_DQUOTE] = ACTIONS(171), }, [144] = { - [sym__statement] = STATE(1700), - [sym__statement_separated] = STATE(2), - [sym__control_statement] = STATE(1700), - [sym_if_statement] = STATE(1700), - [sym_while_statement] = STATE(1700), - [sym_do_while_statement] = STATE(1700), - [sym_for_statement] = STATE(1700), - [sym_for_in_statement] = STATE(1700), - [sym_delete_statement] = STATE(1700), - [sym_exit_statement] = STATE(1700), - [sym_return_statement] = STATE(1700), - [sym_switch_statement] = STATE(1700), - [sym__io_statement] = STATE(1700), - [sym__getline_exp] = STATE(1462), - [sym_getline_input] = STATE(1462), - [sym_getline_file] = STATE(1462), - [sym_print_statement] = STATE(1695), - [sym_printf_statement] = STATE(1695), - [sym_redirected_io_statement] = STATE(1700), - [sym_piped_io_statement] = STATE(1700), - [sym_block] = STATE(1705), - [sym__exp] = STATE(1462), - [sym_ternary_exp] = STATE(1354), - [sym_binary_exp] = STATE(1354), - [sym__binary_in] = STATE(1309), - [sym_unary_exp] = STATE(1354), - [sym_update_exp] = STATE(1462), - [sym_assignment_exp] = STATE(1462), - [sym_piped_io_exp] = STATE(1462), - [sym_string_concat] = STATE(1354), - [sym_field_ref] = STATE(619), - [sym_array_ref] = STATE(603), - [sym_regex] = STATE(1462), - [sym_regex_constant] = STATE(1462), - [sym_grouping] = STATE(1354), - [sym__primitive] = STATE(1354), - [sym_namespace] = STATE(2063), - [sym_ns_qualified_name] = STATE(592), - [sym_number] = STATE(1354), - [sym_string] = STATE(1354), - [sym_func_call] = STATE(1354), - [sym_indirect_func_call] = STATE(1462), - [sym_identifier] = ACTIONS(39), - [anon_sym_SEMI] = ACTIONS(612), - [anon_sym_if] = ACTIONS(43), - [anon_sym_LPAREN] = ACTIONS(552), - [anon_sym_while] = ACTIONS(47), - [anon_sym_do] = ACTIONS(49), - [anon_sym_for] = ACTIONS(51), - [sym_break_statement] = ACTIONS(614), - [sym_continue_statement] = ACTIONS(614), - [anon_sym_delete] = ACTIONS(55), - [anon_sym_exit] = ACTIONS(57), - [anon_sym_return] = ACTIONS(59), - [anon_sym_switch] = ACTIONS(61), - [anon_sym_LBRACE] = ACTIONS(316), - [anon_sym_getline] = ACTIONS(63), - [sym_next_statement] = ACTIONS(614), - [sym_nextfile_statement] = ACTIONS(614), - [anon_sym_print] = ACTIONS(65), - [anon_sym_printf] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(554), - [anon_sym_PLUS] = ACTIONS(71), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_BANG] = ACTIONS(556), - [anon_sym_PLUS_PLUS] = ACTIONS(558), - [anon_sym_DASH_DASH] = ACTIONS(558), - [anon_sym_DOLLAR] = ACTIONS(560), - [anon_sym_AT] = ACTIONS(562), - [aux_sym_number_token1] = ACTIONS(79), - [aux_sym_number_token2] = ACTIONS(486), - [anon_sym_DQUOTE] = ACTIONS(488), - }, - [145] = { [sym__statement] = STATE(1701), [sym__statement_separated] = STATE(2), [sym__control_statement] = STATE(1701), @@ -18837,725 +19065,799 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_return_statement] = STATE(1701), [sym_switch_statement] = STATE(1701), [sym__io_statement] = STATE(1701), - [sym__getline_exp] = STATE(1462), - [sym_getline_input] = STATE(1462), - [sym_getline_file] = STATE(1462), - [sym_print_statement] = STATE(1695), - [sym_printf_statement] = STATE(1695), + [sym__getline_exp] = STATE(1446), + [sym_getline_input] = STATE(1446), + [sym_getline_file] = STATE(1446), + [sym_print_statement] = STATE(1696), + [sym_printf_statement] = STATE(1696), [sym_redirected_io_statement] = STATE(1701), [sym_piped_io_statement] = STATE(1701), - [sym_block] = STATE(1704), - [sym__exp] = STATE(1462), - [sym_ternary_exp] = STATE(1354), - [sym_binary_exp] = STATE(1354), - [sym__binary_in] = STATE(1309), - [sym_unary_exp] = STATE(1354), - [sym_update_exp] = STATE(1462), - [sym_assignment_exp] = STATE(1462), - [sym_piped_io_exp] = STATE(1462), - [sym_string_concat] = STATE(1354), - [sym_field_ref] = STATE(619), - [sym_array_ref] = STATE(603), - [sym_regex] = STATE(1462), - [sym_regex_constant] = STATE(1462), - [sym_grouping] = STATE(1354), - [sym__primitive] = STATE(1354), - [sym_namespace] = STATE(2063), - [sym_ns_qualified_name] = STATE(592), - [sym_number] = STATE(1354), - [sym_string] = STATE(1354), - [sym_func_call] = STATE(1354), - [sym_indirect_func_call] = STATE(1462), + [sym_block] = STATE(1702), + [sym__exp] = STATE(1446), + [sym_ternary_exp] = STATE(1371), + [sym_binary_exp] = STATE(1371), + [sym__binary_in] = STATE(1305), + [sym_unary_exp] = STATE(1371), + [sym_update_exp] = STATE(1446), + [sym_assignment_exp] = STATE(1446), + [sym_piped_io_exp] = STATE(1446), + [sym_string_concat] = STATE(1371), + [sym_field_ref] = STATE(632), + [sym_array_ref] = STATE(601), + [sym_regex] = STATE(1446), + [sym_regex_constant] = STATE(1446), + [sym_grouping] = STATE(1371), + [sym__primitive] = STATE(1371), + [sym_namespace] = STATE(2068), + [sym_ns_qualified_name] = STATE(590), + [sym_number] = STATE(1371), + [sym_string] = STATE(1371), + [sym_func_call] = STATE(1371), + [sym_indirect_func_call] = STATE(1446), [sym_identifier] = ACTIONS(39), - [anon_sym_SEMI] = ACTIONS(616), + [anon_sym_SEMI] = ACTIONS(618), [anon_sym_if] = ACTIONS(43), - [anon_sym_LPAREN] = ACTIONS(552), + [anon_sym_LPAREN] = ACTIONS(312), [anon_sym_while] = ACTIONS(47), [anon_sym_do] = ACTIONS(49), [anon_sym_for] = ACTIONS(51), - [sym_break_statement] = ACTIONS(618), - [sym_continue_statement] = ACTIONS(618), + [sym_break_statement] = ACTIONS(620), + [sym_continue_statement] = ACTIONS(620), [anon_sym_delete] = ACTIONS(55), [anon_sym_exit] = ACTIONS(57), [anon_sym_return] = ACTIONS(59), [anon_sym_switch] = ACTIONS(61), [anon_sym_LBRACE] = ACTIONS(316), [anon_sym_getline] = ACTIONS(63), - [sym_next_statement] = ACTIONS(618), - [sym_nextfile_statement] = ACTIONS(618), + [sym_next_statement] = ACTIONS(620), + [sym_nextfile_statement] = ACTIONS(620), [anon_sym_print] = ACTIONS(65), [anon_sym_printf] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(554), + [anon_sym_SLASH] = ACTIONS(318), [anon_sym_PLUS] = ACTIONS(71), [anon_sym_DASH] = ACTIONS(71), - [anon_sym_BANG] = ACTIONS(556), - [anon_sym_PLUS_PLUS] = ACTIONS(558), - [anon_sym_DASH_DASH] = ACTIONS(558), - [anon_sym_DOLLAR] = ACTIONS(560), - [anon_sym_AT] = ACTIONS(562), + [anon_sym_BANG] = ACTIONS(320), + [anon_sym_PLUS_PLUS] = ACTIONS(322), + [anon_sym_DASH_DASH] = ACTIONS(322), + [anon_sym_DOLLAR] = ACTIONS(324), + [anon_sym_AT] = ACTIONS(326), + [aux_sym_number_token1] = ACTIONS(79), + [aux_sym_number_token2] = ACTIONS(328), + [anon_sym_DQUOTE] = ACTIONS(330), + }, + [145] = { + [sym__statement] = STATE(1799), + [sym__statement_separated] = STATE(141), + [sym__control_statement] = STATE(1799), + [sym_if_statement] = STATE(1799), + [sym_while_statement] = STATE(1799), + [sym_do_while_statement] = STATE(1799), + [sym_for_statement] = STATE(1799), + [sym_for_in_statement] = STATE(1799), + [sym_delete_statement] = STATE(1799), + [sym_exit_statement] = STATE(1799), + [sym_return_statement] = STATE(1799), + [sym_switch_statement] = STATE(1799), + [sym__io_statement] = STATE(1799), + [sym__getline_exp] = STATE(1562), + [sym_getline_input] = STATE(1562), + [sym_getline_file] = STATE(1562), + [sym_print_statement] = STATE(1698), + [sym_printf_statement] = STATE(1698), + [sym_redirected_io_statement] = STATE(1799), + [sym_piped_io_statement] = STATE(1799), + [sym_block] = STATE(1798), + [sym__exp] = STATE(1562), + [sym_ternary_exp] = STATE(1461), + [sym_binary_exp] = STATE(1461), + [sym__binary_in] = STATE(1305), + [sym_unary_exp] = STATE(1461), + [sym_update_exp] = STATE(1562), + [sym_assignment_exp] = STATE(1562), + [sym_piped_io_exp] = STATE(1562), + [sym_string_concat] = STATE(1461), + [sym_field_ref] = STATE(950), + [sym_array_ref] = STATE(740), + [sym_regex] = STATE(1562), + [sym_regex_constant] = STATE(1562), + [sym_grouping] = STATE(1461), + [sym__primitive] = STATE(1461), + [sym_namespace] = STATE(2068), + [sym_ns_qualified_name] = STATE(672), + [sym_number] = STATE(1461), + [sym_string] = STATE(1461), + [sym_func_call] = STATE(1461), + [sym_indirect_func_call] = STATE(1562), + [sym_identifier] = ACTIONS(336), + [anon_sym_SEMI] = ACTIONS(622), + [anon_sym_if] = ACTIONS(340), + [anon_sym_LPAREN] = ACTIONS(342), + [anon_sym_while] = ACTIONS(344), + [anon_sym_do] = ACTIONS(49), + [anon_sym_for] = ACTIONS(346), + [sym_break_statement] = ACTIONS(624), + [sym_continue_statement] = ACTIONS(624), + [anon_sym_delete] = ACTIONS(55), + [anon_sym_exit] = ACTIONS(350), + [anon_sym_return] = ACTIONS(352), + [anon_sym_switch] = ACTIONS(61), + [anon_sym_LBRACE] = ACTIONS(316), + [anon_sym_getline] = ACTIONS(354), + [sym_next_statement] = ACTIONS(624), + [sym_nextfile_statement] = ACTIONS(624), + [anon_sym_print] = ACTIONS(356), + [anon_sym_printf] = ACTIONS(358), + [anon_sym_SLASH] = ACTIONS(360), + [anon_sym_PLUS] = ACTIONS(362), + [anon_sym_DASH] = ACTIONS(362), + [anon_sym_BANG] = ACTIONS(364), + [anon_sym_PLUS_PLUS] = ACTIONS(366), + [anon_sym_DASH_DASH] = ACTIONS(366), + [anon_sym_DOLLAR] = ACTIONS(368), + [anon_sym_AT] = ACTIONS(370), [aux_sym_number_token1] = ACTIONS(79), - [aux_sym_number_token2] = ACTIONS(486), - [anon_sym_DQUOTE] = ACTIONS(488), + [aux_sym_number_token2] = ACTIONS(328), + [anon_sym_DQUOTE] = ACTIONS(330), }, [146] = { - [sym__statement] = STATE(1261), - [sym__statement_separated] = STATE(146), - [sym__control_statement] = STATE(1261), - [sym_if_statement] = STATE(1261), - [sym_while_statement] = STATE(1261), - [sym_do_while_statement] = STATE(1261), - [sym_for_statement] = STATE(1261), - [sym_for_in_statement] = STATE(1261), - [sym_delete_statement] = STATE(1261), - [sym_exit_statement] = STATE(1261), - [sym_return_statement] = STATE(1261), - [sym_switch_statement] = STATE(1261), - [sym__io_statement] = STATE(1261), - [sym__getline_exp] = STATE(1568), - [sym_getline_input] = STATE(1568), - [sym_getline_file] = STATE(1568), - [sym_print_statement] = STATE(1699), - [sym_printf_statement] = STATE(1699), - [sym_redirected_io_statement] = STATE(1261), - [sym_piped_io_statement] = STATE(1261), - [sym__exp] = STATE(1568), - [sym_ternary_exp] = STATE(1470), - [sym_binary_exp] = STATE(1470), - [sym__binary_in] = STATE(1373), - [sym_unary_exp] = STATE(1470), - [sym_update_exp] = STATE(1568), - [sym_assignment_exp] = STATE(1568), - [sym_piped_io_exp] = STATE(1568), - [sym_string_concat] = STATE(1470), - [sym_field_ref] = STATE(1121), - [sym_array_ref] = STATE(1022), - [sym_regex] = STATE(1568), - [sym_regex_constant] = STATE(1568), - [sym_grouping] = STATE(1470), - [sym__primitive] = STATE(1470), - [sym_namespace] = STATE(1955), - [sym_ns_qualified_name] = STATE(744), - [sym_number] = STATE(1470), - [sym_string] = STATE(1470), - [sym_func_call] = STATE(1470), - [sym_indirect_func_call] = STATE(1568), - [sym_identifier] = ACTIONS(362), - [anon_sym_SEMI] = ACTIONS(41), - [anon_sym_LF] = ACTIONS(41), - [anon_sym_CR_LF] = ACTIONS(41), - [anon_sym_if] = ACTIONS(364), - [anon_sym_LPAREN] = ACTIONS(620), - [anon_sym_while] = ACTIONS(41), - [anon_sym_do] = ACTIONS(93), - [anon_sym_for] = ACTIONS(370), - [sym_break_statement] = ACTIONS(97), - [sym_continue_statement] = ACTIONS(97), - [anon_sym_delete] = ACTIONS(99), - [anon_sym_exit] = ACTIONS(372), - [anon_sym_return] = ACTIONS(374), - [anon_sym_switch] = ACTIONS(105), - [anon_sym_getline] = ACTIONS(376), - [sym_next_statement] = ACTIONS(97), - [sym_nextfile_statement] = ACTIONS(97), - [anon_sym_print] = ACTIONS(378), - [anon_sym_printf] = ACTIONS(380), - [anon_sym_SLASH] = ACTIONS(622), - [anon_sym_PLUS] = ACTIONS(384), - [anon_sym_DASH] = ACTIONS(384), - [anon_sym_BANG] = ACTIONS(384), - [anon_sym_PLUS_PLUS] = ACTIONS(624), - [anon_sym_DASH_DASH] = ACTIONS(624), - [anon_sym_DOLLAR] = ACTIONS(626), - [anon_sym_AT] = ACTIONS(628), - [aux_sym_number_token1] = ACTIONS(123), - [aux_sym_number_token2] = ACTIONS(123), - [anon_sym_DQUOTE] = ACTIONS(125), + [sym__statement] = STATE(1273), + [sym__statement_separated] = STATE(1273), + [sym__control_statement] = STATE(1273), + [sym_if_statement] = STATE(1273), + [sym_while_statement] = STATE(1273), + [sym_do_while_statement] = STATE(1273), + [sym_for_statement] = STATE(1273), + [sym_for_in_statement] = STATE(1273), + [sym_delete_statement] = STATE(1273), + [sym_exit_statement] = STATE(1273), + [sym_return_statement] = STATE(1273), + [sym_switch_statement] = STATE(1273), + [sym__io_statement] = STATE(1273), + [sym__getline_exp] = STATE(483), + [sym_getline_input] = STATE(483), + [sym_getline_file] = STATE(483), + [sym_print_statement] = STATE(770), + [sym_printf_statement] = STATE(770), + [sym_redirected_io_statement] = STATE(1273), + [sym_piped_io_statement] = STATE(1273), + [sym_block] = STATE(1274), + [sym__exp] = STATE(483), + [sym_ternary_exp] = STATE(359), + [sym_binary_exp] = STATE(359), + [sym__binary_in] = STATE(373), + [sym_unary_exp] = STATE(359), + [sym_update_exp] = STATE(483), + [sym_assignment_exp] = STATE(483), + [sym_piped_io_exp] = STATE(483), + [sym_string_concat] = STATE(359), + [sym_field_ref] = STATE(258), + [sym_array_ref] = STATE(219), + [sym_regex] = STATE(483), + [sym_regex_constant] = STATE(483), + [sym_grouping] = STATE(359), + [sym__primitive] = STATE(359), + [sym_namespace] = STATE(2068), + [sym_ns_qualified_name] = STATE(200), + [sym_number] = STATE(359), + [sym_string] = STATE(359), + [sym_func_call] = STATE(359), + [sym_indirect_func_call] = STATE(483), + [sym_identifier] = ACTIONS(530), + [anon_sym_SEMI] = ACTIONS(626), + [anon_sym_if] = ACTIONS(532), + [anon_sym_LPAREN] = ACTIONS(534), + [anon_sym_while] = ACTIONS(536), + [anon_sym_do] = ACTIONS(49), + [anon_sym_for] = ACTIONS(538), + [sym_break_statement] = ACTIONS(628), + [sym_continue_statement] = ACTIONS(628), + [anon_sym_delete] = ACTIONS(55), + [anon_sym_exit] = ACTIONS(540), + [anon_sym_return] = ACTIONS(542), + [anon_sym_switch] = ACTIONS(61), + [anon_sym_LBRACE] = ACTIONS(316), + [anon_sym_getline] = ACTIONS(544), + [sym_next_statement] = ACTIONS(628), + [sym_nextfile_statement] = ACTIONS(628), + [anon_sym_print] = ACTIONS(546), + [anon_sym_printf] = ACTIONS(548), + [anon_sym_SLASH] = ACTIONS(550), + [anon_sym_PLUS] = ACTIONS(552), + [anon_sym_DASH] = ACTIONS(552), + [anon_sym_BANG] = ACTIONS(554), + [anon_sym_PLUS_PLUS] = ACTIONS(556), + [anon_sym_DASH_DASH] = ACTIONS(556), + [anon_sym_DOLLAR] = ACTIONS(558), + [anon_sym_AT] = ACTIONS(560), + [aux_sym_number_token1] = ACTIONS(562), + [aux_sym_number_token2] = ACTIONS(564), + [anon_sym_DQUOTE] = ACTIONS(566), }, [147] = { - [sym__statement] = STATE(1275), - [sym__statement_separated] = STATE(1275), - [sym__control_statement] = STATE(1275), - [sym_if_statement] = STATE(1275), - [sym_while_statement] = STATE(1275), - [sym_do_while_statement] = STATE(1275), - [sym_for_statement] = STATE(1275), - [sym_for_in_statement] = STATE(1275), - [sym_delete_statement] = STATE(1275), - [sym_exit_statement] = STATE(1275), - [sym_return_statement] = STATE(1275), - [sym_switch_statement] = STATE(1275), - [sym__io_statement] = STATE(1275), - [sym__getline_exp] = STATE(482), - [sym_getline_input] = STATE(482), - [sym_getline_file] = STATE(482), - [sym_print_statement] = STATE(740), - [sym_printf_statement] = STATE(740), - [sym_redirected_io_statement] = STATE(1275), - [sym_piped_io_statement] = STATE(1275), - [sym_block] = STATE(1274), - [sym__exp] = STATE(482), - [sym_ternary_exp] = STATE(375), - [sym_binary_exp] = STATE(375), - [sym__binary_in] = STATE(369), - [sym_unary_exp] = STATE(375), - [sym_update_exp] = STATE(482), - [sym_assignment_exp] = STATE(482), - [sym_piped_io_exp] = STATE(482), - [sym_string_concat] = STATE(375), - [sym_field_ref] = STATE(256), - [sym_array_ref] = STATE(240), - [sym_regex] = STATE(482), - [sym_regex_constant] = STATE(482), - [sym_grouping] = STATE(375), - [sym__primitive] = STATE(375), - [sym_namespace] = STATE(2063), - [sym_ns_qualified_name] = STATE(196), - [sym_number] = STATE(375), - [sym_string] = STATE(375), - [sym_func_call] = STATE(375), - [sym_indirect_func_call] = STATE(482), - [sym_identifier] = ACTIONS(298), + [sym__statement] = STATE(1703), + [sym__statement_separated] = STATE(2), + [sym__control_statement] = STATE(1703), + [sym_if_statement] = STATE(1703), + [sym_while_statement] = STATE(1703), + [sym_do_while_statement] = STATE(1703), + [sym_for_statement] = STATE(1703), + [sym_for_in_statement] = STATE(1703), + [sym_delete_statement] = STATE(1703), + [sym_exit_statement] = STATE(1703), + [sym_return_statement] = STATE(1703), + [sym_switch_statement] = STATE(1703), + [sym__io_statement] = STATE(1703), + [sym__getline_exp] = STATE(1446), + [sym_getline_input] = STATE(1446), + [sym_getline_file] = STATE(1446), + [sym_print_statement] = STATE(1696), + [sym_printf_statement] = STATE(1696), + [sym_redirected_io_statement] = STATE(1703), + [sym_piped_io_statement] = STATE(1703), + [sym_block] = STATE(1708), + [sym__exp] = STATE(1446), + [sym_ternary_exp] = STATE(1371), + [sym_binary_exp] = STATE(1371), + [sym__binary_in] = STATE(1305), + [sym_unary_exp] = STATE(1371), + [sym_update_exp] = STATE(1446), + [sym_assignment_exp] = STATE(1446), + [sym_piped_io_exp] = STATE(1446), + [sym_string_concat] = STATE(1371), + [sym_field_ref] = STATE(632), + [sym_array_ref] = STATE(601), + [sym_regex] = STATE(1446), + [sym_regex_constant] = STATE(1446), + [sym_grouping] = STATE(1371), + [sym__primitive] = STATE(1371), + [sym_namespace] = STATE(2068), + [sym_ns_qualified_name] = STATE(590), + [sym_number] = STATE(1371), + [sym_string] = STATE(1371), + [sym_func_call] = STATE(1371), + [sym_indirect_func_call] = STATE(1446), + [sym_identifier] = ACTIONS(39), [anon_sym_SEMI] = ACTIONS(630), - [anon_sym_if] = ACTIONS(302), - [anon_sym_LPAREN] = ACTIONS(304), - [anon_sym_while] = ACTIONS(306), + [anon_sym_if] = ACTIONS(43), + [anon_sym_LPAREN] = ACTIONS(312), + [anon_sym_while] = ACTIONS(47), [anon_sym_do] = ACTIONS(49), - [anon_sym_for] = ACTIONS(308), + [anon_sym_for] = ACTIONS(51), [sym_break_statement] = ACTIONS(632), [sym_continue_statement] = ACTIONS(632), [anon_sym_delete] = ACTIONS(55), - [anon_sym_exit] = ACTIONS(312), - [anon_sym_return] = ACTIONS(314), + [anon_sym_exit] = ACTIONS(57), + [anon_sym_return] = ACTIONS(59), [anon_sym_switch] = ACTIONS(61), [anon_sym_LBRACE] = ACTIONS(316), - [anon_sym_getline] = ACTIONS(318), + [anon_sym_getline] = ACTIONS(63), [sym_next_statement] = ACTIONS(632), [sym_nextfile_statement] = ACTIONS(632), - [anon_sym_print] = ACTIONS(320), - [anon_sym_printf] = ACTIONS(322), - [anon_sym_SLASH] = ACTIONS(324), - [anon_sym_PLUS] = ACTIONS(326), - [anon_sym_DASH] = ACTIONS(326), - [anon_sym_BANG] = ACTIONS(328), - [anon_sym_PLUS_PLUS] = ACTIONS(330), - [anon_sym_DASH_DASH] = ACTIONS(330), - [anon_sym_DOLLAR] = ACTIONS(332), - [anon_sym_AT] = ACTIONS(334), - [aux_sym_number_token1] = ACTIONS(336), - [aux_sym_number_token2] = ACTIONS(338), - [anon_sym_DQUOTE] = ACTIONS(340), + [anon_sym_print] = ACTIONS(65), + [anon_sym_printf] = ACTIONS(67), + [anon_sym_SLASH] = ACTIONS(318), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(71), + [anon_sym_BANG] = ACTIONS(320), + [anon_sym_PLUS_PLUS] = ACTIONS(322), + [anon_sym_DASH_DASH] = ACTIONS(322), + [anon_sym_DOLLAR] = ACTIONS(324), + [anon_sym_AT] = ACTIONS(326), + [aux_sym_number_token1] = ACTIONS(79), + [aux_sym_number_token2] = ACTIONS(328), + [anon_sym_DQUOTE] = ACTIONS(330), }, [148] = { - [sym__statement] = STATE(1788), + [sym__statement] = STATE(1794), [sym__statement_separated] = STATE(141), - [sym__control_statement] = STATE(1788), - [sym_if_statement] = STATE(1788), - [sym_while_statement] = STATE(1788), - [sym_do_while_statement] = STATE(1788), - [sym_for_statement] = STATE(1788), - [sym_for_in_statement] = STATE(1788), - [sym_delete_statement] = STATE(1788), - [sym_exit_statement] = STATE(1788), - [sym_return_statement] = STATE(1788), - [sym_switch_statement] = STATE(1788), - [sym__io_statement] = STATE(1788), - [sym__getline_exp] = STATE(1547), - [sym_getline_input] = STATE(1547), - [sym_getline_file] = STATE(1547), - [sym_print_statement] = STATE(1697), - [sym_printf_statement] = STATE(1697), - [sym_redirected_io_statement] = STATE(1788), - [sym_piped_io_statement] = STATE(1788), - [sym_block] = STATE(1803), - [sym__exp] = STATE(1547), - [sym_ternary_exp] = STATE(1441), - [sym_binary_exp] = STATE(1441), - [sym__binary_in] = STATE(1309), - [sym_unary_exp] = STATE(1441), - [sym_update_exp] = STATE(1547), - [sym_assignment_exp] = STATE(1547), - [sym_piped_io_exp] = STATE(1547), - [sym_string_concat] = STATE(1441), - [sym_field_ref] = STATE(995), - [sym_array_ref] = STATE(774), - [sym_regex] = STATE(1547), - [sym_regex_constant] = STATE(1547), - [sym_grouping] = STATE(1441), - [sym__primitive] = STATE(1441), - [sym_namespace] = STATE(2063), - [sym_ns_qualified_name] = STATE(647), - [sym_number] = STATE(1441), - [sym_string] = STATE(1441), - [sym_func_call] = STATE(1441), - [sym_indirect_func_call] = STATE(1547), - [sym_identifier] = ACTIONS(450), + [sym__control_statement] = STATE(1794), + [sym_if_statement] = STATE(1794), + [sym_while_statement] = STATE(1794), + [sym_do_while_statement] = STATE(1794), + [sym_for_statement] = STATE(1794), + [sym_for_in_statement] = STATE(1794), + [sym_delete_statement] = STATE(1794), + [sym_exit_statement] = STATE(1794), + [sym_return_statement] = STATE(1794), + [sym_switch_statement] = STATE(1794), + [sym__io_statement] = STATE(1794), + [sym__getline_exp] = STATE(1562), + [sym_getline_input] = STATE(1562), + [sym_getline_file] = STATE(1562), + [sym_print_statement] = STATE(1698), + [sym_printf_statement] = STATE(1698), + [sym_redirected_io_statement] = STATE(1794), + [sym_piped_io_statement] = STATE(1794), + [sym_block] = STATE(1793), + [sym__exp] = STATE(1562), + [sym_ternary_exp] = STATE(1461), + [sym_binary_exp] = STATE(1461), + [sym__binary_in] = STATE(1305), + [sym_unary_exp] = STATE(1461), + [sym_update_exp] = STATE(1562), + [sym_assignment_exp] = STATE(1562), + [sym_piped_io_exp] = STATE(1562), + [sym_string_concat] = STATE(1461), + [sym_field_ref] = STATE(950), + [sym_array_ref] = STATE(740), + [sym_regex] = STATE(1562), + [sym_regex_constant] = STATE(1562), + [sym_grouping] = STATE(1461), + [sym__primitive] = STATE(1461), + [sym_namespace] = STATE(2068), + [sym_ns_qualified_name] = STATE(672), + [sym_number] = STATE(1461), + [sym_string] = STATE(1461), + [sym_func_call] = STATE(1461), + [sym_indirect_func_call] = STATE(1562), + [sym_identifier] = ACTIONS(336), [anon_sym_SEMI] = ACTIONS(634), - [anon_sym_if] = ACTIONS(454), - [anon_sym_LPAREN] = ACTIONS(456), - [anon_sym_while] = ACTIONS(458), + [anon_sym_if] = ACTIONS(340), + [anon_sym_LPAREN] = ACTIONS(342), + [anon_sym_while] = ACTIONS(344), [anon_sym_do] = ACTIONS(49), - [anon_sym_for] = ACTIONS(460), + [anon_sym_for] = ACTIONS(346), [sym_break_statement] = ACTIONS(636), [sym_continue_statement] = ACTIONS(636), [anon_sym_delete] = ACTIONS(55), - [anon_sym_exit] = ACTIONS(464), - [anon_sym_return] = ACTIONS(466), + [anon_sym_exit] = ACTIONS(350), + [anon_sym_return] = ACTIONS(352), [anon_sym_switch] = ACTIONS(61), [anon_sym_LBRACE] = ACTIONS(316), - [anon_sym_getline] = ACTIONS(468), + [anon_sym_getline] = ACTIONS(354), [sym_next_statement] = ACTIONS(636), [sym_nextfile_statement] = ACTIONS(636), - [anon_sym_print] = ACTIONS(470), - [anon_sym_printf] = ACTIONS(472), - [anon_sym_SLASH] = ACTIONS(474), - [anon_sym_PLUS] = ACTIONS(476), - [anon_sym_DASH] = ACTIONS(476), - [anon_sym_BANG] = ACTIONS(478), - [anon_sym_PLUS_PLUS] = ACTIONS(480), - [anon_sym_DASH_DASH] = ACTIONS(480), - [anon_sym_DOLLAR] = ACTIONS(482), - [anon_sym_AT] = ACTIONS(484), + [anon_sym_print] = ACTIONS(356), + [anon_sym_printf] = ACTIONS(358), + [anon_sym_SLASH] = ACTIONS(360), + [anon_sym_PLUS] = ACTIONS(362), + [anon_sym_DASH] = ACTIONS(362), + [anon_sym_BANG] = ACTIONS(364), + [anon_sym_PLUS_PLUS] = ACTIONS(366), + [anon_sym_DASH_DASH] = ACTIONS(366), + [anon_sym_DOLLAR] = ACTIONS(368), + [anon_sym_AT] = ACTIONS(370), [aux_sym_number_token1] = ACTIONS(79), - [aux_sym_number_token2] = ACTIONS(486), - [anon_sym_DQUOTE] = ACTIONS(488), + [aux_sym_number_token2] = ACTIONS(328), + [anon_sym_DQUOTE] = ACTIONS(330), }, [149] = { - [sym__statement] = STATE(1179), - [sym__statement_separated] = STATE(1179), - [sym__control_statement] = STATE(1179), - [sym_if_statement] = STATE(1179), - [sym_while_statement] = STATE(1179), - [sym_do_while_statement] = STATE(1179), - [sym_for_statement] = STATE(1179), - [sym_for_in_statement] = STATE(1179), - [sym_delete_statement] = STATE(1179), - [sym_exit_statement] = STATE(1179), - [sym_return_statement] = STATE(1179), - [sym_switch_statement] = STATE(1179), - [sym__io_statement] = STATE(1179), - [sym__getline_exp] = STATE(482), - [sym_getline_input] = STATE(482), - [sym_getline_file] = STATE(482), - [sym_print_statement] = STATE(740), - [sym_printf_statement] = STATE(740), - [sym_redirected_io_statement] = STATE(1179), - [sym_piped_io_statement] = STATE(1179), - [sym_block] = STATE(1176), - [sym__exp] = STATE(482), - [sym_ternary_exp] = STATE(375), - [sym_binary_exp] = STATE(375), - [sym__binary_in] = STATE(369), - [sym_unary_exp] = STATE(375), - [sym_update_exp] = STATE(482), - [sym_assignment_exp] = STATE(482), - [sym_piped_io_exp] = STATE(482), - [sym_string_concat] = STATE(375), - [sym_field_ref] = STATE(256), - [sym_array_ref] = STATE(240), - [sym_regex] = STATE(482), - [sym_regex_constant] = STATE(482), - [sym_grouping] = STATE(375), - [sym__primitive] = STATE(375), - [sym_namespace] = STATE(2063), - [sym_ns_qualified_name] = STATE(196), - [sym_number] = STATE(375), - [sym_string] = STATE(375), - [sym_func_call] = STATE(375), - [sym_indirect_func_call] = STATE(482), - [sym_identifier] = ACTIONS(298), - [anon_sym_if] = ACTIONS(302), - [anon_sym_LPAREN] = ACTIONS(304), - [anon_sym_while] = ACTIONS(306), - [anon_sym_do] = ACTIONS(49), - [anon_sym_for] = ACTIONS(308), + [sym__statement] = STATE(1236), + [sym__statement_separated] = STATE(4), + [sym__control_statement] = STATE(1236), + [sym_if_statement] = STATE(1236), + [sym_while_statement] = STATE(1236), + [sym_do_while_statement] = STATE(1236), + [sym_for_statement] = STATE(1236), + [sym_for_in_statement] = STATE(1236), + [sym_delete_statement] = STATE(1236), + [sym_exit_statement] = STATE(1236), + [sym_return_statement] = STATE(1236), + [sym_switch_statement] = STATE(1236), + [sym__io_statement] = STATE(1236), + [sym__getline_exp] = STATE(1471), + [sym_getline_input] = STATE(1471), + [sym_getline_file] = STATE(1471), + [sym_print_statement] = STATE(1697), + [sym_printf_statement] = STATE(1697), + [sym_redirected_io_statement] = STATE(1236), + [sym_piped_io_statement] = STATE(1236), + [sym_block] = STATE(1244), + [sym__exp] = STATE(1471), + [sym_ternary_exp] = STATE(1420), + [sym_binary_exp] = STATE(1420), + [sym__binary_in] = STATE(1385), + [sym_unary_exp] = STATE(1420), + [sym_update_exp] = STATE(1471), + [sym_assignment_exp] = STATE(1471), + [sym_piped_io_exp] = STATE(1471), + [sym_string_concat] = STATE(1420), + [sym_field_ref] = STATE(705), + [sym_array_ref] = STATE(614), + [sym_regex] = STATE(1471), + [sym_regex_constant] = STATE(1471), + [sym_grouping] = STATE(1420), + [sym__primitive] = STATE(1420), + [sym_namespace] = STATE(1956), + [sym_ns_qualified_name] = STATE(597), + [sym_number] = STATE(1420), + [sym_string] = STATE(1420), + [sym_func_call] = STATE(1420), + [sym_indirect_func_call] = STATE(1471), + [sym_identifier] = ACTIONS(137), + [anon_sym_if] = ACTIONS(139), + [anon_sym_LPAREN] = ACTIONS(434), + [anon_sym_while] = ACTIONS(143), + [anon_sym_do] = ACTIONS(93), + [anon_sym_for] = ACTIONS(145), [sym_break_statement] = ACTIONS(638), [sym_continue_statement] = ACTIONS(638), - [anon_sym_delete] = ACTIONS(55), - [anon_sym_exit] = ACTIONS(312), - [anon_sym_return] = ACTIONS(314), - [anon_sym_switch] = ACTIONS(61), - [anon_sym_LBRACE] = ACTIONS(316), - [anon_sym_getline] = ACTIONS(318), + [anon_sym_delete] = ACTIONS(99), + [anon_sym_exit] = ACTIONS(149), + [anon_sym_return] = ACTIONS(151), + [anon_sym_switch] = ACTIONS(105), + [anon_sym_LBRACE] = ACTIONS(268), + [anon_sym_getline] = ACTIONS(153), [sym_next_statement] = ACTIONS(638), [sym_nextfile_statement] = ACTIONS(638), - [anon_sym_print] = ACTIONS(320), - [anon_sym_printf] = ACTIONS(322), - [anon_sym_SLASH] = ACTIONS(324), - [anon_sym_PLUS] = ACTIONS(326), - [anon_sym_DASH] = ACTIONS(326), - [anon_sym_BANG] = ACTIONS(328), - [anon_sym_PLUS_PLUS] = ACTIONS(330), - [anon_sym_DASH_DASH] = ACTIONS(330), - [anon_sym_DOLLAR] = ACTIONS(332), - [anon_sym_AT] = ACTIONS(334), - [aux_sym_number_token1] = ACTIONS(336), - [aux_sym_number_token2] = ACTIONS(338), - [anon_sym_DQUOTE] = ACTIONS(340), + [anon_sym_print] = ACTIONS(155), + [anon_sym_printf] = ACTIONS(157), + [anon_sym_SLASH] = ACTIONS(438), + [anon_sym_PLUS] = ACTIONS(161), + [anon_sym_DASH] = ACTIONS(161), + [anon_sym_BANG] = ACTIONS(440), + [anon_sym_PLUS_PLUS] = ACTIONS(442), + [anon_sym_DASH_DASH] = ACTIONS(442), + [anon_sym_DOLLAR] = ACTIONS(444), + [anon_sym_AT] = ACTIONS(446), + [aux_sym_number_token1] = ACTIONS(169), + [aux_sym_number_token2] = ACTIONS(306), + [anon_sym_DQUOTE] = ACTIONS(308), }, [150] = { - [sym__statement] = STATE(1179), - [sym__statement_separated] = STATE(141), - [sym__control_statement] = STATE(1179), - [sym_if_statement] = STATE(1179), - [sym_while_statement] = STATE(1179), - [sym_do_while_statement] = STATE(1179), - [sym_for_statement] = STATE(1179), - [sym_for_in_statement] = STATE(1179), - [sym_delete_statement] = STATE(1179), - [sym_exit_statement] = STATE(1179), - [sym_return_statement] = STATE(1179), - [sym_switch_statement] = STATE(1179), - [sym__io_statement] = STATE(1179), - [sym__getline_exp] = STATE(1547), - [sym_getline_input] = STATE(1547), - [sym_getline_file] = STATE(1547), - [sym_print_statement] = STATE(1697), - [sym_printf_statement] = STATE(1697), - [sym_redirected_io_statement] = STATE(1179), - [sym_piped_io_statement] = STATE(1179), - [sym_block] = STATE(1176), - [sym__exp] = STATE(1547), - [sym_ternary_exp] = STATE(1441), - [sym_binary_exp] = STATE(1441), - [sym__binary_in] = STATE(1309), - [sym_unary_exp] = STATE(1441), - [sym_update_exp] = STATE(1547), - [sym_assignment_exp] = STATE(1547), - [sym_piped_io_exp] = STATE(1547), - [sym_string_concat] = STATE(1441), - [sym_field_ref] = STATE(995), - [sym_array_ref] = STATE(774), - [sym_regex] = STATE(1547), - [sym_regex_constant] = STATE(1547), - [sym_grouping] = STATE(1441), - [sym__primitive] = STATE(1441), - [sym_namespace] = STATE(2063), - [sym_ns_qualified_name] = STATE(647), - [sym_number] = STATE(1441), - [sym_string] = STATE(1441), - [sym_func_call] = STATE(1441), - [sym_indirect_func_call] = STATE(1547), - [sym_identifier] = ACTIONS(450), - [anon_sym_if] = ACTIONS(454), - [anon_sym_LPAREN] = ACTIONS(456), - [anon_sym_while] = ACTIONS(458), - [anon_sym_do] = ACTIONS(49), - [anon_sym_for] = ACTIONS(460), + [sym__statement] = STATE(1236), + [sym__statement_separated] = STATE(143), + [sym__control_statement] = STATE(1236), + [sym_if_statement] = STATE(1236), + [sym_while_statement] = STATE(1236), + [sym_do_while_statement] = STATE(1236), + [sym_for_statement] = STATE(1236), + [sym_for_in_statement] = STATE(1236), + [sym_delete_statement] = STATE(1236), + [sym_exit_statement] = STATE(1236), + [sym_return_statement] = STATE(1236), + [sym_switch_statement] = STATE(1236), + [sym__io_statement] = STATE(1236), + [sym__getline_exp] = STATE(1570), + [sym_getline_input] = STATE(1570), + [sym_getline_file] = STATE(1570), + [sym_print_statement] = STATE(1707), + [sym_printf_statement] = STATE(1707), + [sym_redirected_io_statement] = STATE(1236), + [sym_piped_io_statement] = STATE(1236), + [sym_block] = STATE(1244), + [sym__exp] = STATE(1570), + [sym_ternary_exp] = STATE(1476), + [sym_binary_exp] = STATE(1476), + [sym__binary_in] = STATE(1385), + [sym_unary_exp] = STATE(1476), + [sym_update_exp] = STATE(1570), + [sym_assignment_exp] = STATE(1570), + [sym_piped_io_exp] = STATE(1570), + [sym_string_concat] = STATE(1476), + [sym_field_ref] = STATE(1194), + [sym_array_ref] = STATE(991), + [sym_regex] = STATE(1570), + [sym_regex_constant] = STATE(1570), + [sym_grouping] = STATE(1476), + [sym__primitive] = STATE(1476), + [sym_namespace] = STATE(1956), + [sym_ns_qualified_name] = STATE(720), + [sym_number] = STATE(1476), + [sym_string] = STATE(1476), + [sym_func_call] = STATE(1476), + [sym_indirect_func_call] = STATE(1570), + [sym_identifier] = ACTIONS(270), + [anon_sym_if] = ACTIONS(274), + [anon_sym_LPAREN] = ACTIONS(276), + [anon_sym_while] = ACTIONS(278), + [anon_sym_do] = ACTIONS(93), + [anon_sym_for] = ACTIONS(280), [sym_break_statement] = ACTIONS(638), [sym_continue_statement] = ACTIONS(638), - [anon_sym_delete] = ACTIONS(55), - [anon_sym_exit] = ACTIONS(464), - [anon_sym_return] = ACTIONS(466), - [anon_sym_switch] = ACTIONS(61), - [anon_sym_LBRACE] = ACTIONS(316), - [anon_sym_getline] = ACTIONS(468), + [anon_sym_delete] = ACTIONS(99), + [anon_sym_exit] = ACTIONS(284), + [anon_sym_return] = ACTIONS(286), + [anon_sym_switch] = ACTIONS(105), + [anon_sym_LBRACE] = ACTIONS(268), + [anon_sym_getline] = ACTIONS(288), [sym_next_statement] = ACTIONS(638), [sym_nextfile_statement] = ACTIONS(638), - [anon_sym_print] = ACTIONS(470), - [anon_sym_printf] = ACTIONS(472), - [anon_sym_SLASH] = ACTIONS(474), - [anon_sym_PLUS] = ACTIONS(476), - [anon_sym_DASH] = ACTIONS(476), - [anon_sym_BANG] = ACTIONS(478), - [anon_sym_PLUS_PLUS] = ACTIONS(480), - [anon_sym_DASH_DASH] = ACTIONS(480), - [anon_sym_DOLLAR] = ACTIONS(482), - [anon_sym_AT] = ACTIONS(484), - [aux_sym_number_token1] = ACTIONS(79), - [aux_sym_number_token2] = ACTIONS(486), - [anon_sym_DQUOTE] = ACTIONS(488), + [anon_sym_print] = ACTIONS(290), + [anon_sym_printf] = ACTIONS(292), + [anon_sym_SLASH] = ACTIONS(294), + [anon_sym_PLUS] = ACTIONS(296), + [anon_sym_DASH] = ACTIONS(296), + [anon_sym_BANG] = ACTIONS(298), + [anon_sym_PLUS_PLUS] = ACTIONS(300), + [anon_sym_DASH_DASH] = ACTIONS(300), + [anon_sym_DOLLAR] = ACTIONS(302), + [anon_sym_AT] = ACTIONS(304), + [aux_sym_number_token1] = ACTIONS(169), + [aux_sym_number_token2] = ACTIONS(306), + [anon_sym_DQUOTE] = ACTIONS(308), }, [151] = { - [sym__statement] = STATE(1179), + [sym__statement] = STATE(1236), + [sym__statement_separated] = STATE(1236), + [sym__control_statement] = STATE(1236), + [sym_if_statement] = STATE(1236), + [sym_while_statement] = STATE(1236), + [sym_do_while_statement] = STATE(1236), + [sym_for_statement] = STATE(1236), + [sym_for_in_statement] = STATE(1236), + [sym_delete_statement] = STATE(1236), + [sym_exit_statement] = STATE(1236), + [sym_return_statement] = STATE(1236), + [sym_switch_statement] = STATE(1236), + [sym__io_statement] = STATE(1236), + [sym__getline_exp] = STATE(503), + [sym_getline_input] = STATE(503), + [sym_getline_file] = STATE(503), + [sym_print_statement] = STATE(869), + [sym_printf_statement] = STATE(869), + [sym_redirected_io_statement] = STATE(1236), + [sym_piped_io_statement] = STATE(1236), + [sym_block] = STATE(1244), + [sym__exp] = STATE(503), + [sym_ternary_exp] = STATE(427), + [sym_binary_exp] = STATE(427), + [sym__binary_in] = STATE(426), + [sym_unary_exp] = STATE(427), + [sym_update_exp] = STATE(503), + [sym_assignment_exp] = STATE(503), + [sym_piped_io_exp] = STATE(503), + [sym_string_concat] = STATE(427), + [sym_field_ref] = STATE(274), + [sym_array_ref] = STATE(268), + [sym_regex] = STATE(503), + [sym_regex_constant] = STATE(503), + [sym_grouping] = STATE(427), + [sym__primitive] = STATE(427), + [sym_namespace] = STATE(1956), + [sym_ns_qualified_name] = STATE(244), + [sym_number] = STATE(427), + [sym_string] = STATE(427), + [sym_func_call] = STATE(427), + [sym_indirect_func_call] = STATE(503), + [sym_identifier] = ACTIONS(85), + [anon_sym_if] = ACTIONS(87), + [anon_sym_LPAREN] = ACTIONS(89), + [anon_sym_while] = ACTIONS(91), + [anon_sym_do] = ACTIONS(93), + [anon_sym_for] = ACTIONS(95), + [sym_break_statement] = ACTIONS(638), + [sym_continue_statement] = ACTIONS(638), + [anon_sym_delete] = ACTIONS(99), + [anon_sym_exit] = ACTIONS(101), + [anon_sym_return] = ACTIONS(103), + [anon_sym_switch] = ACTIONS(105), + [anon_sym_LBRACE] = ACTIONS(268), + [anon_sym_getline] = ACTIONS(111), + [sym_next_statement] = ACTIONS(638), + [sym_nextfile_statement] = ACTIONS(638), + [anon_sym_print] = ACTIONS(113), + [anon_sym_printf] = ACTIONS(115), + [anon_sym_SLASH] = ACTIONS(117), + [anon_sym_PLUS] = ACTIONS(119), + [anon_sym_DASH] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(121), + [anon_sym_PLUS_PLUS] = ACTIONS(123), + [anon_sym_DASH_DASH] = ACTIONS(123), + [anon_sym_DOLLAR] = ACTIONS(125), + [anon_sym_AT] = ACTIONS(127), + [aux_sym_number_token1] = ACTIONS(129), + [aux_sym_number_token2] = ACTIONS(131), + [anon_sym_DQUOTE] = ACTIONS(133), + }, + [152] = { + [sym__statement] = STATE(1168), [sym__statement_separated] = STATE(2), - [sym__control_statement] = STATE(1179), - [sym_if_statement] = STATE(1179), - [sym_while_statement] = STATE(1179), - [sym_do_while_statement] = STATE(1179), - [sym_for_statement] = STATE(1179), - [sym_for_in_statement] = STATE(1179), - [sym_delete_statement] = STATE(1179), - [sym_exit_statement] = STATE(1179), - [sym_return_statement] = STATE(1179), - [sym_switch_statement] = STATE(1179), - [sym__io_statement] = STATE(1179), - [sym__getline_exp] = STATE(1462), - [sym_getline_input] = STATE(1462), - [sym_getline_file] = STATE(1462), - [sym_print_statement] = STATE(1695), - [sym_printf_statement] = STATE(1695), - [sym_redirected_io_statement] = STATE(1179), - [sym_piped_io_statement] = STATE(1179), - [sym_block] = STATE(1176), - [sym__exp] = STATE(1462), - [sym_ternary_exp] = STATE(1354), - [sym_binary_exp] = STATE(1354), - [sym__binary_in] = STATE(1309), - [sym_unary_exp] = STATE(1354), - [sym_update_exp] = STATE(1462), - [sym_assignment_exp] = STATE(1462), - [sym_piped_io_exp] = STATE(1462), - [sym_string_concat] = STATE(1354), - [sym_field_ref] = STATE(619), - [sym_array_ref] = STATE(603), - [sym_regex] = STATE(1462), - [sym_regex_constant] = STATE(1462), - [sym_grouping] = STATE(1354), - [sym__primitive] = STATE(1354), - [sym_namespace] = STATE(2063), - [sym_ns_qualified_name] = STATE(592), - [sym_number] = STATE(1354), - [sym_string] = STATE(1354), - [sym_func_call] = STATE(1354), - [sym_indirect_func_call] = STATE(1462), + [sym__control_statement] = STATE(1168), + [sym_if_statement] = STATE(1168), + [sym_while_statement] = STATE(1168), + [sym_do_while_statement] = STATE(1168), + [sym_for_statement] = STATE(1168), + [sym_for_in_statement] = STATE(1168), + [sym_delete_statement] = STATE(1168), + [sym_exit_statement] = STATE(1168), + [sym_return_statement] = STATE(1168), + [sym_switch_statement] = STATE(1168), + [sym__io_statement] = STATE(1168), + [sym__getline_exp] = STATE(1446), + [sym_getline_input] = STATE(1446), + [sym_getline_file] = STATE(1446), + [sym_print_statement] = STATE(1696), + [sym_printf_statement] = STATE(1696), + [sym_redirected_io_statement] = STATE(1168), + [sym_piped_io_statement] = STATE(1168), + [sym_block] = STATE(1167), + [sym__exp] = STATE(1446), + [sym_ternary_exp] = STATE(1371), + [sym_binary_exp] = STATE(1371), + [sym__binary_in] = STATE(1305), + [sym_unary_exp] = STATE(1371), + [sym_update_exp] = STATE(1446), + [sym_assignment_exp] = STATE(1446), + [sym_piped_io_exp] = STATE(1446), + [sym_string_concat] = STATE(1371), + [sym_field_ref] = STATE(632), + [sym_array_ref] = STATE(601), + [sym_regex] = STATE(1446), + [sym_regex_constant] = STATE(1446), + [sym_grouping] = STATE(1371), + [sym__primitive] = STATE(1371), + [sym_namespace] = STATE(2068), + [sym_ns_qualified_name] = STATE(590), + [sym_number] = STATE(1371), + [sym_string] = STATE(1371), + [sym_func_call] = STATE(1371), + [sym_indirect_func_call] = STATE(1446), [sym_identifier] = ACTIONS(39), [anon_sym_if] = ACTIONS(43), - [anon_sym_LPAREN] = ACTIONS(552), + [anon_sym_LPAREN] = ACTIONS(312), [anon_sym_while] = ACTIONS(47), [anon_sym_do] = ACTIONS(49), [anon_sym_for] = ACTIONS(51), - [sym_break_statement] = ACTIONS(638), - [sym_continue_statement] = ACTIONS(638), + [sym_break_statement] = ACTIONS(640), + [sym_continue_statement] = ACTIONS(640), [anon_sym_delete] = ACTIONS(55), [anon_sym_exit] = ACTIONS(57), [anon_sym_return] = ACTIONS(59), [anon_sym_switch] = ACTIONS(61), [anon_sym_LBRACE] = ACTIONS(316), [anon_sym_getline] = ACTIONS(63), - [sym_next_statement] = ACTIONS(638), - [sym_nextfile_statement] = ACTIONS(638), + [sym_next_statement] = ACTIONS(640), + [sym_nextfile_statement] = ACTIONS(640), [anon_sym_print] = ACTIONS(65), [anon_sym_printf] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(554), + [anon_sym_SLASH] = ACTIONS(318), [anon_sym_PLUS] = ACTIONS(71), [anon_sym_DASH] = ACTIONS(71), - [anon_sym_BANG] = ACTIONS(556), - [anon_sym_PLUS_PLUS] = ACTIONS(558), - [anon_sym_DASH_DASH] = ACTIONS(558), - [anon_sym_DOLLAR] = ACTIONS(560), - [anon_sym_AT] = ACTIONS(562), + [anon_sym_BANG] = ACTIONS(320), + [anon_sym_PLUS_PLUS] = ACTIONS(322), + [anon_sym_DASH_DASH] = ACTIONS(322), + [anon_sym_DOLLAR] = ACTIONS(324), + [anon_sym_AT] = ACTIONS(326), [aux_sym_number_token1] = ACTIONS(79), - [aux_sym_number_token2] = ACTIONS(486), - [anon_sym_DQUOTE] = ACTIONS(488), - }, - [152] = { - [sym__statement] = STATE(1221), - [sym__statement_separated] = STATE(1221), - [sym__control_statement] = STATE(1221), - [sym_if_statement] = STATE(1221), - [sym_while_statement] = STATE(1221), - [sym_do_while_statement] = STATE(1221), - [sym_for_statement] = STATE(1221), - [sym_for_in_statement] = STATE(1221), - [sym_delete_statement] = STATE(1221), - [sym_exit_statement] = STATE(1221), - [sym_return_statement] = STATE(1221), - [sym_switch_statement] = STATE(1221), - [sym__io_statement] = STATE(1221), - [sym__getline_exp] = STATE(503), - [sym_getline_input] = STATE(503), - [sym_getline_file] = STATE(503), - [sym_print_statement] = STATE(890), - [sym_printf_statement] = STATE(890), - [sym_redirected_io_statement] = STATE(1221), - [sym_piped_io_statement] = STATE(1221), - [sym_block] = STATE(1222), - [sym__exp] = STATE(503), - [sym_ternary_exp] = STATE(447), - [sym_binary_exp] = STATE(447), - [sym__binary_in] = STATE(446), - [sym_unary_exp] = STATE(447), - [sym_update_exp] = STATE(503), - [sym_assignment_exp] = STATE(503), - [sym_piped_io_exp] = STATE(503), - [sym_string_concat] = STATE(447), - [sym_field_ref] = STATE(272), - [sym_array_ref] = STATE(253), - [sym_regex] = STATE(503), - [sym_regex_constant] = STATE(503), - [sym_grouping] = STATE(447), - [sym__primitive] = STATE(447), - [sym_namespace] = STATE(1955), - [sym_ns_qualified_name] = STATE(221), - [sym_number] = STATE(447), - [sym_string] = STATE(447), - [sym_func_call] = STATE(447), - [sym_indirect_func_call] = STATE(503), - [sym_identifier] = ACTIONS(127), - [anon_sym_if] = ACTIONS(129), - [anon_sym_LPAREN] = ACTIONS(131), - [anon_sym_while] = ACTIONS(133), - [anon_sym_do] = ACTIONS(93), - [anon_sym_for] = ACTIONS(135), - [sym_break_statement] = ACTIONS(640), - [sym_continue_statement] = ACTIONS(640), - [anon_sym_delete] = ACTIONS(99), - [anon_sym_exit] = ACTIONS(139), - [anon_sym_return] = ACTIONS(141), - [anon_sym_switch] = ACTIONS(105), - [anon_sym_LBRACE] = ACTIONS(268), - [anon_sym_getline] = ACTIONS(147), - [sym_next_statement] = ACTIONS(640), - [sym_nextfile_statement] = ACTIONS(640), - [anon_sym_print] = ACTIONS(149), - [anon_sym_printf] = ACTIONS(151), - [anon_sym_SLASH] = ACTIONS(153), - [anon_sym_PLUS] = ACTIONS(155), - [anon_sym_DASH] = ACTIONS(155), - [anon_sym_BANG] = ACTIONS(157), - [anon_sym_PLUS_PLUS] = ACTIONS(159), - [anon_sym_DASH_DASH] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(161), - [anon_sym_AT] = ACTIONS(163), - [aux_sym_number_token1] = ACTIONS(165), - [aux_sym_number_token2] = ACTIONS(167), - [anon_sym_DQUOTE] = ACTIONS(169), + [aux_sym_number_token2] = ACTIONS(328), + [anon_sym_DQUOTE] = ACTIONS(330), }, [153] = { - [sym__statement] = STATE(1221), - [sym__statement_separated] = STATE(3), - [sym__control_statement] = STATE(1221), - [sym_if_statement] = STATE(1221), - [sym_while_statement] = STATE(1221), - [sym_do_while_statement] = STATE(1221), - [sym_for_statement] = STATE(1221), - [sym_for_in_statement] = STATE(1221), - [sym_delete_statement] = STATE(1221), - [sym_exit_statement] = STATE(1221), - [sym_return_statement] = STATE(1221), - [sym_switch_statement] = STATE(1221), - [sym__io_statement] = STATE(1221), - [sym__getline_exp] = STATE(1495), - [sym_getline_input] = STATE(1495), - [sym_getline_file] = STATE(1495), - [sym_print_statement] = STATE(1696), - [sym_printf_statement] = STATE(1696), - [sym_redirected_io_statement] = STATE(1221), - [sym_piped_io_statement] = STATE(1221), - [sym_block] = STATE(1222), - [sym__exp] = STATE(1495), - [sym_ternary_exp] = STATE(1421), - [sym_binary_exp] = STATE(1421), - [sym__binary_in] = STATE(1373), - [sym_unary_exp] = STATE(1421), - [sym_update_exp] = STATE(1495), - [sym_assignment_exp] = STATE(1495), - [sym_piped_io_exp] = STATE(1495), - [sym_string_concat] = STATE(1421), - [sym_field_ref] = STATE(703), - [sym_array_ref] = STATE(610), - [sym_regex] = STATE(1495), - [sym_regex_constant] = STATE(1495), - [sym_grouping] = STATE(1421), - [sym__primitive] = STATE(1421), - [sym_namespace] = STATE(1955), - [sym_ns_qualified_name] = STATE(607), - [sym_number] = STATE(1421), - [sym_string] = STATE(1421), - [sym_func_call] = STATE(1421), - [sym_indirect_func_call] = STATE(1495), - [sym_identifier] = ACTIONS(85), - [anon_sym_if] = ACTIONS(87), - [anon_sym_LPAREN] = ACTIONS(272), - [anon_sym_while] = ACTIONS(91), - [anon_sym_do] = ACTIONS(93), - [anon_sym_for] = ACTIONS(95), + [sym__statement] = STATE(1168), + [sym__statement_separated] = STATE(141), + [sym__control_statement] = STATE(1168), + [sym_if_statement] = STATE(1168), + [sym_while_statement] = STATE(1168), + [sym_do_while_statement] = STATE(1168), + [sym_for_statement] = STATE(1168), + [sym_for_in_statement] = STATE(1168), + [sym_delete_statement] = STATE(1168), + [sym_exit_statement] = STATE(1168), + [sym_return_statement] = STATE(1168), + [sym_switch_statement] = STATE(1168), + [sym__io_statement] = STATE(1168), + [sym__getline_exp] = STATE(1562), + [sym_getline_input] = STATE(1562), + [sym_getline_file] = STATE(1562), + [sym_print_statement] = STATE(1698), + [sym_printf_statement] = STATE(1698), + [sym_redirected_io_statement] = STATE(1168), + [sym_piped_io_statement] = STATE(1168), + [sym_block] = STATE(1167), + [sym__exp] = STATE(1562), + [sym_ternary_exp] = STATE(1461), + [sym_binary_exp] = STATE(1461), + [sym__binary_in] = STATE(1305), + [sym_unary_exp] = STATE(1461), + [sym_update_exp] = STATE(1562), + [sym_assignment_exp] = STATE(1562), + [sym_piped_io_exp] = STATE(1562), + [sym_string_concat] = STATE(1461), + [sym_field_ref] = STATE(950), + [sym_array_ref] = STATE(740), + [sym_regex] = STATE(1562), + [sym_regex_constant] = STATE(1562), + [sym_grouping] = STATE(1461), + [sym__primitive] = STATE(1461), + [sym_namespace] = STATE(2068), + [sym_ns_qualified_name] = STATE(672), + [sym_number] = STATE(1461), + [sym_string] = STATE(1461), + [sym_func_call] = STATE(1461), + [sym_indirect_func_call] = STATE(1562), + [sym_identifier] = ACTIONS(336), + [anon_sym_if] = ACTIONS(340), + [anon_sym_LPAREN] = ACTIONS(342), + [anon_sym_while] = ACTIONS(344), + [anon_sym_do] = ACTIONS(49), + [anon_sym_for] = ACTIONS(346), [sym_break_statement] = ACTIONS(640), [sym_continue_statement] = ACTIONS(640), - [anon_sym_delete] = ACTIONS(99), - [anon_sym_exit] = ACTIONS(101), - [anon_sym_return] = ACTIONS(103), - [anon_sym_switch] = ACTIONS(105), - [anon_sym_LBRACE] = ACTIONS(268), - [anon_sym_getline] = ACTIONS(107), + [anon_sym_delete] = ACTIONS(55), + [anon_sym_exit] = ACTIONS(350), + [anon_sym_return] = ACTIONS(352), + [anon_sym_switch] = ACTIONS(61), + [anon_sym_LBRACE] = ACTIONS(316), + [anon_sym_getline] = ACTIONS(354), [sym_next_statement] = ACTIONS(640), [sym_nextfile_statement] = ACTIONS(640), - [anon_sym_print] = ACTIONS(109), - [anon_sym_printf] = ACTIONS(111), - [anon_sym_SLASH] = ACTIONS(276), - [anon_sym_PLUS] = ACTIONS(115), - [anon_sym_DASH] = ACTIONS(115), - [anon_sym_BANG] = ACTIONS(278), - [anon_sym_PLUS_PLUS] = ACTIONS(280), - [anon_sym_DASH_DASH] = ACTIONS(280), - [anon_sym_DOLLAR] = ACTIONS(282), - [anon_sym_AT] = ACTIONS(284), - [aux_sym_number_token1] = ACTIONS(123), - [aux_sym_number_token2] = ACTIONS(286), - [anon_sym_DQUOTE] = ACTIONS(288), + [anon_sym_print] = ACTIONS(356), + [anon_sym_printf] = ACTIONS(358), + [anon_sym_SLASH] = ACTIONS(360), + [anon_sym_PLUS] = ACTIONS(362), + [anon_sym_DASH] = ACTIONS(362), + [anon_sym_BANG] = ACTIONS(364), + [anon_sym_PLUS_PLUS] = ACTIONS(366), + [anon_sym_DASH_DASH] = ACTIONS(366), + [anon_sym_DOLLAR] = ACTIONS(368), + [anon_sym_AT] = ACTIONS(370), + [aux_sym_number_token1] = ACTIONS(79), + [aux_sym_number_token2] = ACTIONS(328), + [anon_sym_DQUOTE] = ACTIONS(330), }, [154] = { - [sym__statement] = STATE(1221), - [sym__statement_separated] = STATE(146), - [sym__control_statement] = STATE(1221), - [sym_if_statement] = STATE(1221), - [sym_while_statement] = STATE(1221), - [sym_do_while_statement] = STATE(1221), - [sym_for_statement] = STATE(1221), - [sym_for_in_statement] = STATE(1221), - [sym_delete_statement] = STATE(1221), - [sym_exit_statement] = STATE(1221), - [sym_return_statement] = STATE(1221), - [sym_switch_statement] = STATE(1221), - [sym__io_statement] = STATE(1221), - [sym__getline_exp] = STATE(1568), - [sym_getline_input] = STATE(1568), - [sym_getline_file] = STATE(1568), - [sym_print_statement] = STATE(1699), - [sym_printf_statement] = STATE(1699), - [sym_redirected_io_statement] = STATE(1221), - [sym_piped_io_statement] = STATE(1221), - [sym_block] = STATE(1222), - [sym__exp] = STATE(1568), - [sym_ternary_exp] = STATE(1470), - [sym_binary_exp] = STATE(1470), - [sym__binary_in] = STATE(1373), - [sym_unary_exp] = STATE(1470), - [sym_update_exp] = STATE(1568), - [sym_assignment_exp] = STATE(1568), - [sym_piped_io_exp] = STATE(1568), - [sym_string_concat] = STATE(1470), - [sym_field_ref] = STATE(1121), - [sym_array_ref] = STATE(1022), - [sym_regex] = STATE(1568), - [sym_regex_constant] = STATE(1568), - [sym_grouping] = STATE(1470), - [sym__primitive] = STATE(1470), - [sym_namespace] = STATE(1955), - [sym_ns_qualified_name] = STATE(744), - [sym_number] = STATE(1470), - [sym_string] = STATE(1470), - [sym_func_call] = STATE(1470), - [sym_indirect_func_call] = STATE(1568), - [sym_identifier] = ACTIONS(362), - [anon_sym_if] = ACTIONS(364), - [anon_sym_LPAREN] = ACTIONS(366), - [anon_sym_while] = ACTIONS(368), - [anon_sym_do] = ACTIONS(93), - [anon_sym_for] = ACTIONS(370), + [sym__statement] = STATE(1168), + [sym__statement_separated] = STATE(1168), + [sym__control_statement] = STATE(1168), + [sym_if_statement] = STATE(1168), + [sym_while_statement] = STATE(1168), + [sym_do_while_statement] = STATE(1168), + [sym_for_statement] = STATE(1168), + [sym_for_in_statement] = STATE(1168), + [sym_delete_statement] = STATE(1168), + [sym_exit_statement] = STATE(1168), + [sym_return_statement] = STATE(1168), + [sym_switch_statement] = STATE(1168), + [sym__io_statement] = STATE(1168), + [sym__getline_exp] = STATE(483), + [sym_getline_input] = STATE(483), + [sym_getline_file] = STATE(483), + [sym_print_statement] = STATE(770), + [sym_printf_statement] = STATE(770), + [sym_redirected_io_statement] = STATE(1168), + [sym_piped_io_statement] = STATE(1168), + [sym_block] = STATE(1167), + [sym__exp] = STATE(483), + [sym_ternary_exp] = STATE(359), + [sym_binary_exp] = STATE(359), + [sym__binary_in] = STATE(373), + [sym_unary_exp] = STATE(359), + [sym_update_exp] = STATE(483), + [sym_assignment_exp] = STATE(483), + [sym_piped_io_exp] = STATE(483), + [sym_string_concat] = STATE(359), + [sym_field_ref] = STATE(258), + [sym_array_ref] = STATE(219), + [sym_regex] = STATE(483), + [sym_regex_constant] = STATE(483), + [sym_grouping] = STATE(359), + [sym__primitive] = STATE(359), + [sym_namespace] = STATE(2068), + [sym_ns_qualified_name] = STATE(200), + [sym_number] = STATE(359), + [sym_string] = STATE(359), + [sym_func_call] = STATE(359), + [sym_indirect_func_call] = STATE(483), + [sym_identifier] = ACTIONS(530), + [anon_sym_if] = ACTIONS(532), + [anon_sym_LPAREN] = ACTIONS(534), + [anon_sym_while] = ACTIONS(536), + [anon_sym_do] = ACTIONS(49), + [anon_sym_for] = ACTIONS(538), [sym_break_statement] = ACTIONS(640), [sym_continue_statement] = ACTIONS(640), - [anon_sym_delete] = ACTIONS(99), - [anon_sym_exit] = ACTIONS(372), - [anon_sym_return] = ACTIONS(374), - [anon_sym_switch] = ACTIONS(105), - [anon_sym_LBRACE] = ACTIONS(268), - [anon_sym_getline] = ACTIONS(376), + [anon_sym_delete] = ACTIONS(55), + [anon_sym_exit] = ACTIONS(540), + [anon_sym_return] = ACTIONS(542), + [anon_sym_switch] = ACTIONS(61), + [anon_sym_LBRACE] = ACTIONS(316), + [anon_sym_getline] = ACTIONS(544), [sym_next_statement] = ACTIONS(640), [sym_nextfile_statement] = ACTIONS(640), - [anon_sym_print] = ACTIONS(378), - [anon_sym_printf] = ACTIONS(380), - [anon_sym_SLASH] = ACTIONS(382), - [anon_sym_PLUS] = ACTIONS(384), - [anon_sym_DASH] = ACTIONS(384), - [anon_sym_BANG] = ACTIONS(386), - [anon_sym_PLUS_PLUS] = ACTIONS(388), - [anon_sym_DASH_DASH] = ACTIONS(388), - [anon_sym_DOLLAR] = ACTIONS(390), - [anon_sym_AT] = ACTIONS(392), - [aux_sym_number_token1] = ACTIONS(123), - [aux_sym_number_token2] = ACTIONS(286), - [anon_sym_DQUOTE] = ACTIONS(288), + [anon_sym_print] = ACTIONS(546), + [anon_sym_printf] = ACTIONS(548), + [anon_sym_SLASH] = ACTIONS(550), + [anon_sym_PLUS] = ACTIONS(552), + [anon_sym_DASH] = ACTIONS(552), + [anon_sym_BANG] = ACTIONS(554), + [anon_sym_PLUS_PLUS] = ACTIONS(556), + [anon_sym_DASH_DASH] = ACTIONS(556), + [anon_sym_DOLLAR] = ACTIONS(558), + [anon_sym_AT] = ACTIONS(560), + [aux_sym_number_token1] = ACTIONS(562), + [aux_sym_number_token2] = ACTIONS(564), + [anon_sym_DQUOTE] = ACTIONS(566), }, [155] = { [sym_identifier] = ACTIONS(642), @@ -19568,7 +19870,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(642), [anon_sym_do] = ACTIONS(642), [anon_sym_for] = ACTIONS(642), - [anon_sym_in] = ACTIONS(644), + [anon_sym_in] = ACTIONS(642), [sym_break_statement] = ACTIONS(642), [sym_continue_statement] = ACTIONS(642), [anon_sym_delete] = ACTIONS(642), @@ -19580,35 +19882,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(642), [anon_sym_default] = ACTIONS(642), [anon_sym_getline] = ACTIONS(642), - [anon_sym_LT] = ACTIONS(644), + [anon_sym_LT] = ACTIONS(642), [sym_next_statement] = ACTIONS(642), [sym_nextfile_statement] = ACTIONS(642), [anon_sym_print] = ACTIONS(642), - [anon_sym_LPAREN2] = ACTIONS(646), + [anon_sym_LPAREN2] = ACTIONS(644), [anon_sym_printf] = ACTIONS(642), - [anon_sym_GT] = ACTIONS(644), + [anon_sym_GT] = ACTIONS(642), [anon_sym_GT_GT] = ACTIONS(642), - [anon_sym_PIPE] = ACTIONS(644), - [anon_sym_PIPE_AMP] = ACTIONS(644), - [anon_sym_QMARK] = ACTIONS(644), - [anon_sym_CARET] = ACTIONS(644), - [anon_sym_STAR_STAR] = ACTIONS(644), - [anon_sym_STAR] = ACTIONS(644), - [anon_sym_SLASH] = ACTIONS(644), - [anon_sym_PERCENT] = ACTIONS(644), - [anon_sym_PLUS] = ACTIONS(644), - [anon_sym_DASH] = ACTIONS(644), - [anon_sym_LT_EQ] = ACTIONS(644), - [anon_sym_GT_EQ] = ACTIONS(644), - [anon_sym_EQ_EQ] = ACTIONS(644), - [anon_sym_BANG_EQ] = ACTIONS(644), - [anon_sym_TILDE] = ACTIONS(644), - [anon_sym_BANG_TILDE] = ACTIONS(644), - [anon_sym_AMP_AMP] = ACTIONS(644), - [anon_sym_PIPE_PIPE] = ACTIONS(644), + [anon_sym_PIPE] = ACTIONS(642), + [anon_sym_PIPE_AMP] = ACTIONS(642), + [anon_sym_QMARK] = ACTIONS(642), + [anon_sym_CARET] = ACTIONS(642), + [anon_sym_STAR_STAR] = ACTIONS(642), + [anon_sym_STAR] = ACTIONS(642), + [anon_sym_SLASH] = ACTIONS(642), + [anon_sym_PERCENT] = ACTIONS(642), + [anon_sym_PLUS] = ACTIONS(642), + [anon_sym_DASH] = ACTIONS(642), + [anon_sym_LT_EQ] = ACTIONS(642), + [anon_sym_GT_EQ] = ACTIONS(642), + [anon_sym_EQ_EQ] = ACTIONS(642), + [anon_sym_BANG_EQ] = ACTIONS(642), + [anon_sym_TILDE] = ACTIONS(642), + [anon_sym_BANG_TILDE] = ACTIONS(642), + [anon_sym_AMP_AMP] = ACTIONS(642), + [anon_sym_PIPE_PIPE] = ACTIONS(642), [anon_sym_BANG] = ACTIONS(642), - [anon_sym_PLUS_PLUS] = ACTIONS(648), - [anon_sym_DASH_DASH] = ACTIONS(648), + [anon_sym_PLUS_PLUS] = ACTIONS(646), + [anon_sym_DASH_DASH] = ACTIONS(646), [anon_sym_EQ] = ACTIONS(642), [anon_sym_PLUS_EQ] = ACTIONS(642), [anon_sym_DASH_EQ] = ACTIONS(642), @@ -19617,184 +19919,184 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT_EQ] = ACTIONS(642), [anon_sym_CARET_EQ] = ACTIONS(642), [anon_sym_DOLLAR] = ACTIONS(642), - [anon_sym_LBRACK] = ACTIONS(650), + [anon_sym_LBRACK] = ACTIONS(648), [anon_sym_AT] = ACTIONS(642), - [anon_sym_COLON_COLON] = ACTIONS(652), + [anon_sym_COLON_COLON] = ACTIONS(650), [aux_sym_number_token1] = ACTIONS(642), [aux_sym_number_token2] = ACTIONS(642), [anon_sym_DQUOTE] = ACTIONS(642), [anon_sym_POUND] = ACTIONS(642), - [sym_concatenating_space] = ACTIONS(654), - [sym__if_else_separator] = ACTIONS(654), + [sym_concatenating_space] = ACTIONS(652), + [sym__if_else_separator] = ACTIONS(652), }, [156] = { - [sym_identifier] = ACTIONS(644), - [anon_sym_COMMA] = ACTIONS(644), - [anon_sym_SEMI] = ACTIONS(644), - [anon_sym_LF] = ACTIONS(644), - [anon_sym_CR_LF] = ACTIONS(644), - [anon_sym_if] = ACTIONS(644), - [anon_sym_LPAREN] = ACTIONS(644), - [anon_sym_while] = ACTIONS(644), - [anon_sym_do] = ACTIONS(644), - [anon_sym_for] = ACTIONS(644), - [anon_sym_in] = ACTIONS(644), - [sym_break_statement] = ACTIONS(644), - [sym_continue_statement] = ACTIONS(644), - [anon_sym_delete] = ACTIONS(644), - [anon_sym_exit] = ACTIONS(644), - [anon_sym_return] = ACTIONS(644), - [anon_sym_switch] = ACTIONS(644), - [anon_sym_LBRACE] = ACTIONS(644), - [anon_sym_RBRACE] = ACTIONS(644), - [anon_sym_case] = ACTIONS(644), - [anon_sym_default] = ACTIONS(644), - [anon_sym_getline] = ACTIONS(644), - [anon_sym_LT] = ACTIONS(644), - [sym_next_statement] = ACTIONS(644), - [sym_nextfile_statement] = ACTIONS(644), - [anon_sym_print] = ACTIONS(644), - [anon_sym_LPAREN2] = ACTIONS(646), - [anon_sym_printf] = ACTIONS(644), - [anon_sym_GT] = ACTIONS(644), - [anon_sym_GT_GT] = ACTIONS(644), - [anon_sym_PIPE] = ACTIONS(644), - [anon_sym_PIPE_AMP] = ACTIONS(644), - [anon_sym_QMARK] = ACTIONS(644), - [anon_sym_CARET] = ACTIONS(644), - [anon_sym_STAR_STAR] = ACTIONS(644), - [anon_sym_STAR] = ACTIONS(644), - [anon_sym_SLASH] = ACTIONS(644), - [anon_sym_PERCENT] = ACTIONS(644), - [anon_sym_PLUS] = ACTIONS(644), - [anon_sym_DASH] = ACTIONS(644), - [anon_sym_LT_EQ] = ACTIONS(644), - [anon_sym_GT_EQ] = ACTIONS(644), - [anon_sym_EQ_EQ] = ACTIONS(644), - [anon_sym_BANG_EQ] = ACTIONS(644), - [anon_sym_TILDE] = ACTIONS(644), - [anon_sym_BANG_TILDE] = ACTIONS(644), - [anon_sym_AMP_AMP] = ACTIONS(644), - [anon_sym_PIPE_PIPE] = ACTIONS(644), - [anon_sym_BANG] = ACTIONS(644), + [sym_identifier] = ACTIONS(654), + [anon_sym_COMMA] = ACTIONS(654), + [anon_sym_SEMI] = ACTIONS(654), + [anon_sym_LF] = ACTIONS(654), + [anon_sym_CR_LF] = ACTIONS(654), + [anon_sym_if] = ACTIONS(654), + [anon_sym_LPAREN] = ACTIONS(654), + [anon_sym_while] = ACTIONS(654), + [anon_sym_do] = ACTIONS(654), + [anon_sym_for] = ACTIONS(654), + [anon_sym_in] = ACTIONS(642), + [sym_break_statement] = ACTIONS(654), + [sym_continue_statement] = ACTIONS(654), + [anon_sym_delete] = ACTIONS(654), + [anon_sym_exit] = ACTIONS(654), + [anon_sym_return] = ACTIONS(654), + [anon_sym_switch] = ACTIONS(654), + [anon_sym_LBRACE] = ACTIONS(654), + [anon_sym_RBRACE] = ACTIONS(654), + [anon_sym_case] = ACTIONS(654), + [anon_sym_default] = ACTIONS(654), + [anon_sym_getline] = ACTIONS(654), + [anon_sym_LT] = ACTIONS(642), + [sym_next_statement] = ACTIONS(654), + [sym_nextfile_statement] = ACTIONS(654), + [anon_sym_print] = ACTIONS(654), + [anon_sym_LPAREN2] = ACTIONS(644), + [anon_sym_printf] = ACTIONS(654), + [anon_sym_GT] = ACTIONS(642), + [anon_sym_GT_GT] = ACTIONS(654), + [anon_sym_PIPE] = ACTIONS(642), + [anon_sym_PIPE_AMP] = ACTIONS(642), + [anon_sym_QMARK] = ACTIONS(642), + [anon_sym_CARET] = ACTIONS(642), + [anon_sym_STAR_STAR] = ACTIONS(642), + [anon_sym_STAR] = ACTIONS(642), + [anon_sym_SLASH] = ACTIONS(642), + [anon_sym_PERCENT] = ACTIONS(642), + [anon_sym_PLUS] = ACTIONS(642), + [anon_sym_DASH] = ACTIONS(642), + [anon_sym_LT_EQ] = ACTIONS(642), + [anon_sym_GT_EQ] = ACTIONS(642), + [anon_sym_EQ_EQ] = ACTIONS(642), + [anon_sym_BANG_EQ] = ACTIONS(642), + [anon_sym_TILDE] = ACTIONS(642), + [anon_sym_BANG_TILDE] = ACTIONS(642), + [anon_sym_AMP_AMP] = ACTIONS(642), + [anon_sym_PIPE_PIPE] = ACTIONS(642), + [anon_sym_BANG] = ACTIONS(654), [anon_sym_PLUS_PLUS] = ACTIONS(656), [anon_sym_DASH_DASH] = ACTIONS(656), - [anon_sym_EQ] = ACTIONS(644), - [anon_sym_PLUS_EQ] = ACTIONS(644), - [anon_sym_DASH_EQ] = ACTIONS(644), - [anon_sym_STAR_EQ] = ACTIONS(644), - [anon_sym_SLASH_EQ] = ACTIONS(644), - [anon_sym_PERCENT_EQ] = ACTIONS(644), - [anon_sym_CARET_EQ] = ACTIONS(644), - [anon_sym_DOLLAR] = ACTIONS(644), - [anon_sym_LBRACK] = ACTIONS(650), - [anon_sym_AT] = ACTIONS(644), - [anon_sym_COLON_COLON] = ACTIONS(652), - [aux_sym_number_token1] = ACTIONS(644), - [aux_sym_number_token2] = ACTIONS(644), - [anon_sym_DQUOTE] = ACTIONS(644), - [anon_sym_POUND] = ACTIONS(644), + [anon_sym_EQ] = ACTIONS(654), + [anon_sym_PLUS_EQ] = ACTIONS(654), + [anon_sym_DASH_EQ] = ACTIONS(654), + [anon_sym_STAR_EQ] = ACTIONS(654), + [anon_sym_SLASH_EQ] = ACTIONS(654), + [anon_sym_PERCENT_EQ] = ACTIONS(654), + [anon_sym_CARET_EQ] = ACTIONS(654), + [anon_sym_DOLLAR] = ACTIONS(654), + [anon_sym_LBRACK] = ACTIONS(648), + [anon_sym_AT] = ACTIONS(654), + [anon_sym_COLON_COLON] = ACTIONS(650), + [aux_sym_number_token1] = ACTIONS(654), + [aux_sym_number_token2] = ACTIONS(654), + [anon_sym_DQUOTE] = ACTIONS(654), + [anon_sym_POUND] = ACTIONS(654), [sym_concatenating_space] = ACTIONS(658), [sym__if_else_separator] = ACTIONS(658), }, [157] = { - [sym_identifier] = ACTIONS(642), - [anon_sym_COMMA] = ACTIONS(642), - [anon_sym_SEMI] = ACTIONS(642), - [anon_sym_LF] = ACTIONS(642), - [anon_sym_CR_LF] = ACTIONS(642), - [anon_sym_if] = ACTIONS(642), - [anon_sym_LPAREN] = ACTIONS(642), - [anon_sym_while] = ACTIONS(642), - [anon_sym_do] = ACTIONS(642), - [anon_sym_for] = ACTIONS(642), - [anon_sym_in] = ACTIONS(644), - [sym_break_statement] = ACTIONS(642), - [sym_continue_statement] = ACTIONS(642), - [anon_sym_delete] = ACTIONS(642), - [anon_sym_exit] = ACTIONS(642), - [anon_sym_return] = ACTIONS(642), - [anon_sym_switch] = ACTIONS(642), - [anon_sym_LBRACE] = ACTIONS(642), - [anon_sym_RBRACE] = ACTIONS(642), - [anon_sym_case] = ACTIONS(642), - [anon_sym_default] = ACTIONS(642), - [anon_sym_getline] = ACTIONS(642), - [anon_sym_LT] = ACTIONS(644), - [sym_next_statement] = ACTIONS(642), - [sym_nextfile_statement] = ACTIONS(642), - [anon_sym_print] = ACTIONS(642), - [anon_sym_LPAREN2] = ACTIONS(646), - [anon_sym_printf] = ACTIONS(642), - [anon_sym_GT] = ACTIONS(644), - [anon_sym_GT_GT] = ACTIONS(642), - [anon_sym_PIPE] = ACTIONS(644), - [anon_sym_PIPE_AMP] = ACTIONS(644), - [anon_sym_QMARK] = ACTIONS(644), - [anon_sym_CARET] = ACTIONS(644), - [anon_sym_STAR_STAR] = ACTIONS(644), - [anon_sym_STAR] = ACTIONS(644), - [anon_sym_SLASH] = ACTIONS(644), - [anon_sym_PERCENT] = ACTIONS(644), - [anon_sym_PLUS] = ACTIONS(644), - [anon_sym_DASH] = ACTIONS(644), - [anon_sym_LT_EQ] = ACTIONS(644), - [anon_sym_GT_EQ] = ACTIONS(644), - [anon_sym_EQ_EQ] = ACTIONS(644), - [anon_sym_BANG_EQ] = ACTIONS(644), - [anon_sym_TILDE] = ACTIONS(644), - [anon_sym_BANG_TILDE] = ACTIONS(644), - [anon_sym_AMP_AMP] = ACTIONS(644), - [anon_sym_PIPE_PIPE] = ACTIONS(644), - [anon_sym_BANG] = ACTIONS(642), - [anon_sym_PLUS_PLUS] = ACTIONS(648), - [anon_sym_DASH_DASH] = ACTIONS(648), - [anon_sym_EQ] = ACTIONS(642), - [anon_sym_PLUS_EQ] = ACTIONS(642), - [anon_sym_DASH_EQ] = ACTIONS(642), - [anon_sym_STAR_EQ] = ACTIONS(642), - [anon_sym_SLASH_EQ] = ACTIONS(642), - [anon_sym_PERCENT_EQ] = ACTIONS(642), - [anon_sym_CARET_EQ] = ACTIONS(642), - [anon_sym_DOLLAR] = ACTIONS(642), - [anon_sym_LBRACK] = ACTIONS(650), - [anon_sym_AT] = ACTIONS(642), - [aux_sym_number_token1] = ACTIONS(642), - [aux_sym_number_token2] = ACTIONS(642), - [anon_sym_DQUOTE] = ACTIONS(642), - [anon_sym_POUND] = ACTIONS(642), - [sym_concatenating_space] = ACTIONS(654), - [sym__if_else_separator] = ACTIONS(654), + [sym_identifier] = ACTIONS(654), + [anon_sym_COMMA] = ACTIONS(654), + [anon_sym_SEMI] = ACTIONS(654), + [anon_sym_LF] = ACTIONS(654), + [anon_sym_CR_LF] = ACTIONS(654), + [anon_sym_if] = ACTIONS(654), + [anon_sym_LPAREN] = ACTIONS(654), + [anon_sym_while] = ACTIONS(654), + [anon_sym_do] = ACTIONS(654), + [anon_sym_for] = ACTIONS(654), + [anon_sym_in] = ACTIONS(642), + [sym_break_statement] = ACTIONS(654), + [sym_continue_statement] = ACTIONS(654), + [anon_sym_delete] = ACTIONS(654), + [anon_sym_exit] = ACTIONS(654), + [anon_sym_return] = ACTIONS(654), + [anon_sym_switch] = ACTIONS(654), + [anon_sym_LBRACE] = ACTIONS(654), + [anon_sym_RBRACE] = ACTIONS(654), + [anon_sym_case] = ACTIONS(654), + [anon_sym_default] = ACTIONS(654), + [anon_sym_getline] = ACTIONS(654), + [anon_sym_LT] = ACTIONS(642), + [sym_next_statement] = ACTIONS(654), + [sym_nextfile_statement] = ACTIONS(654), + [anon_sym_print] = ACTIONS(654), + [anon_sym_LPAREN2] = ACTIONS(644), + [anon_sym_printf] = ACTIONS(654), + [anon_sym_GT] = ACTIONS(642), + [anon_sym_GT_GT] = ACTIONS(654), + [anon_sym_PIPE] = ACTIONS(642), + [anon_sym_PIPE_AMP] = ACTIONS(642), + [anon_sym_QMARK] = ACTIONS(642), + [anon_sym_CARET] = ACTIONS(642), + [anon_sym_STAR_STAR] = ACTIONS(642), + [anon_sym_STAR] = ACTIONS(642), + [anon_sym_SLASH] = ACTIONS(642), + [anon_sym_PERCENT] = ACTIONS(642), + [anon_sym_PLUS] = ACTIONS(642), + [anon_sym_DASH] = ACTIONS(642), + [anon_sym_LT_EQ] = ACTIONS(642), + [anon_sym_GT_EQ] = ACTIONS(642), + [anon_sym_EQ_EQ] = ACTIONS(642), + [anon_sym_BANG_EQ] = ACTIONS(642), + [anon_sym_TILDE] = ACTIONS(642), + [anon_sym_BANG_TILDE] = ACTIONS(642), + [anon_sym_AMP_AMP] = ACTIONS(642), + [anon_sym_PIPE_PIPE] = ACTIONS(642), + [anon_sym_BANG] = ACTIONS(654), + [anon_sym_PLUS_PLUS] = ACTIONS(656), + [anon_sym_DASH_DASH] = ACTIONS(656), + [anon_sym_EQ] = ACTIONS(654), + [anon_sym_PLUS_EQ] = ACTIONS(654), + [anon_sym_DASH_EQ] = ACTIONS(654), + [anon_sym_STAR_EQ] = ACTIONS(654), + [anon_sym_SLASH_EQ] = ACTIONS(654), + [anon_sym_PERCENT_EQ] = ACTIONS(654), + [anon_sym_CARET_EQ] = ACTIONS(654), + [anon_sym_DOLLAR] = ACTIONS(654), + [anon_sym_LBRACK] = ACTIONS(648), + [anon_sym_AT] = ACTIONS(654), + [aux_sym_number_token1] = ACTIONS(654), + [aux_sym_number_token2] = ACTIONS(654), + [anon_sym_DQUOTE] = ACTIONS(654), + [anon_sym_POUND] = ACTIONS(654), + [sym_concatenating_space] = ACTIONS(658), + [sym__if_else_separator] = ACTIONS(658), }, [158] = { - [sym__getline_exp] = STATE(403), - [sym_getline_input] = STATE(403), - [sym_getline_file] = STATE(403), - [sym__print_args] = STATE(636), - [sym__exp] = STATE(403), - [sym_ternary_exp] = STATE(375), - [sym_binary_exp] = STATE(375), - [sym__binary_in] = STATE(369), - [sym_unary_exp] = STATE(375), - [sym_update_exp] = STATE(403), - [sym_assignment_exp] = STATE(403), - [sym_piped_io_exp] = STATE(403), - [sym_string_concat] = STATE(375), - [sym_field_ref] = STATE(256), - [sym_array_ref] = STATE(240), - [sym_exp_list] = STATE(636), - [sym_regex] = STATE(403), - [sym_regex_constant] = STATE(403), - [sym_grouping] = STATE(375), - [sym__primitive] = STATE(375), - [sym_namespace] = STATE(2063), - [sym_ns_qualified_name] = STATE(196), - [sym_number] = STATE(375), - [sym_string] = STATE(375), - [sym_func_call] = STATE(375), - [sym_indirect_func_call] = STATE(403), - [aux_sym_exp_list_repeat1] = STATE(738), - [sym_identifier] = ACTIONS(298), + [sym__getline_exp] = STATE(447), + [sym_getline_input] = STATE(447), + [sym_getline_file] = STATE(447), + [sym__print_args] = STATE(633), + [sym__exp] = STATE(447), + [sym_ternary_exp] = STATE(359), + [sym_binary_exp] = STATE(359), + [sym__binary_in] = STATE(373), + [sym_unary_exp] = STATE(359), + [sym_update_exp] = STATE(447), + [sym_assignment_exp] = STATE(447), + [sym_piped_io_exp] = STATE(447), + [sym_string_concat] = STATE(359), + [sym_field_ref] = STATE(258), + [sym_array_ref] = STATE(219), + [sym_exp_list] = STATE(633), + [sym_regex] = STATE(447), + [sym_regex_constant] = STATE(447), + [sym_grouping] = STATE(359), + [sym__primitive] = STATE(359), + [sym_namespace] = STATE(2068), + [sym_ns_qualified_name] = STATE(200), + [sym_number] = STATE(359), + [sym_string] = STATE(359), + [sym_func_call] = STATE(359), + [sym_indirect_func_call] = STATE(447), + [aux_sym_exp_list_repeat1] = STATE(766), + [sym_identifier] = ACTIONS(530), [anon_sym_SEMI] = ACTIONS(660), [anon_sym_LF] = ACTIONS(660), [anon_sym_CR_LF] = ACTIONS(660), @@ -19811,7 +20113,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_switch] = ACTIONS(660), [anon_sym_LBRACE] = ACTIONS(660), [anon_sym_RBRACE] = ACTIONS(660), - [anon_sym_getline] = ACTIONS(318), + [anon_sym_getline] = ACTIONS(544), [sym_next_statement] = ACTIONS(660), [sym_nextfile_statement] = ACTIONS(660), [anon_sym_print] = ACTIONS(660), @@ -19822,15 +20124,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(660), [anon_sym_PIPE_AMP] = ACTIONS(660), [anon_sym_SLASH] = ACTIONS(666), - [anon_sym_PLUS] = ACTIONS(326), - [anon_sym_DASH] = ACTIONS(326), - [anon_sym_BANG] = ACTIONS(326), + [anon_sym_PLUS] = ACTIONS(552), + [anon_sym_DASH] = ACTIONS(552), + [anon_sym_BANG] = ACTIONS(552), [anon_sym_PLUS_PLUS] = ACTIONS(668), [anon_sym_DASH_DASH] = ACTIONS(668), [anon_sym_DOLLAR] = ACTIONS(670), [anon_sym_AT] = ACTIONS(672), - [aux_sym_number_token1] = ACTIONS(336), - [aux_sym_number_token2] = ACTIONS(336), + [aux_sym_number_token1] = ACTIONS(562), + [aux_sym_number_token2] = ACTIONS(562), [anon_sym_DQUOTE] = ACTIONS(674), [anon_sym_POUND] = ACTIONS(660), [sym__if_else_separator] = ACTIONS(676), @@ -19862,6 +20164,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_next_statement] = ACTIONS(678), [sym_nextfile_statement] = ACTIONS(678), [anon_sym_print] = ACTIONS(678), + [anon_sym_LPAREN2] = ACTIONS(680), [anon_sym_printf] = ACTIONS(678), [anon_sym_GT] = ACTIONS(678), [anon_sym_GT_GT] = ACTIONS(678), @@ -19894,9 +20197,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT_EQ] = ACTIONS(678), [anon_sym_CARET_EQ] = ACTIONS(678), [anon_sym_DOLLAR] = ACTIONS(678), - [anon_sym_LBRACK] = ACTIONS(650), + [anon_sym_LBRACK] = ACTIONS(678), [anon_sym_AT] = ACTIONS(678), - [anon_sym_COLON_COLON] = ACTIONS(652), [aux_sym_number_token1] = ACTIONS(678), [aux_sym_number_token2] = ACTIONS(678), [anon_sym_DQUOTE] = ACTIONS(678), @@ -19905,73 +20207,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__if_else_separator] = ACTIONS(680), }, [160] = { - [sym_identifier] = ACTIONS(682), - [anon_sym_COMMA] = ACTIONS(682), - [anon_sym_SEMI] = ACTIONS(682), - [anon_sym_LF] = ACTIONS(682), - [anon_sym_CR_LF] = ACTIONS(682), - [anon_sym_if] = ACTIONS(682), - [anon_sym_LPAREN] = ACTIONS(682), - [anon_sym_while] = ACTIONS(682), - [anon_sym_do] = ACTIONS(682), - [anon_sym_for] = ACTIONS(682), - [anon_sym_in] = ACTIONS(682), - [sym_break_statement] = ACTIONS(682), - [sym_continue_statement] = ACTIONS(682), - [anon_sym_delete] = ACTIONS(682), - [anon_sym_exit] = ACTIONS(682), - [anon_sym_return] = ACTIONS(682), - [anon_sym_switch] = ACTIONS(682), - [anon_sym_LBRACE] = ACTIONS(682), - [anon_sym_RBRACE] = ACTIONS(682), - [anon_sym_case] = ACTIONS(682), - [anon_sym_default] = ACTIONS(682), - [anon_sym_getline] = ACTIONS(682), - [anon_sym_LT] = ACTIONS(682), - [sym_next_statement] = ACTIONS(682), - [sym_nextfile_statement] = ACTIONS(682), - [anon_sym_print] = ACTIONS(682), - [anon_sym_printf] = ACTIONS(682), - [anon_sym_GT] = ACTIONS(682), - [anon_sym_GT_GT] = ACTIONS(682), - [anon_sym_PIPE] = ACTIONS(682), - [anon_sym_PIPE_AMP] = ACTIONS(682), - [anon_sym_QMARK] = ACTIONS(682), - [anon_sym_CARET] = ACTIONS(682), - [anon_sym_STAR_STAR] = ACTIONS(682), - [anon_sym_STAR] = ACTIONS(682), - [anon_sym_SLASH] = ACTIONS(682), - [anon_sym_PERCENT] = ACTIONS(682), - [anon_sym_PLUS] = ACTIONS(682), - [anon_sym_DASH] = ACTIONS(682), - [anon_sym_LT_EQ] = ACTIONS(682), - [anon_sym_GT_EQ] = ACTIONS(682), - [anon_sym_EQ_EQ] = ACTIONS(682), - [anon_sym_BANG_EQ] = ACTIONS(682), - [anon_sym_TILDE] = ACTIONS(682), - [anon_sym_BANG_TILDE] = ACTIONS(682), - [anon_sym_AMP_AMP] = ACTIONS(682), - [anon_sym_PIPE_PIPE] = ACTIONS(682), - [anon_sym_BANG] = ACTIONS(682), - [anon_sym_PLUS_PLUS] = ACTIONS(682), - [anon_sym_DASH_DASH] = ACTIONS(682), - [anon_sym_EQ] = ACTIONS(682), - [anon_sym_PLUS_EQ] = ACTIONS(682), - [anon_sym_DASH_EQ] = ACTIONS(682), - [anon_sym_STAR_EQ] = ACTIONS(682), - [anon_sym_SLASH_EQ] = ACTIONS(682), - [anon_sym_PERCENT_EQ] = ACTIONS(682), - [anon_sym_CARET_EQ] = ACTIONS(682), - [anon_sym_DOLLAR] = ACTIONS(682), - [anon_sym_LBRACK] = ACTIONS(650), - [anon_sym_AT] = ACTIONS(682), - [anon_sym_COLON_COLON] = ACTIONS(652), - [aux_sym_number_token1] = ACTIONS(682), - [aux_sym_number_token2] = ACTIONS(682), - [anon_sym_DQUOTE] = ACTIONS(682), - [anon_sym_POUND] = ACTIONS(682), - [sym_concatenating_space] = ACTIONS(684), - [sym__if_else_separator] = ACTIONS(684), + [sym_identifier] = ACTIONS(654), + [anon_sym_COMMA] = ACTIONS(654), + [anon_sym_SEMI] = ACTIONS(654), + [anon_sym_LF] = ACTIONS(654), + [anon_sym_CR_LF] = ACTIONS(654), + [anon_sym_if] = ACTIONS(654), + [anon_sym_LPAREN] = ACTIONS(654), + [anon_sym_while] = ACTIONS(654), + [anon_sym_do] = ACTIONS(654), + [anon_sym_for] = ACTIONS(654), + [anon_sym_in] = ACTIONS(642), + [sym_break_statement] = ACTIONS(654), + [sym_continue_statement] = ACTIONS(654), + [anon_sym_delete] = ACTIONS(654), + [anon_sym_exit] = ACTIONS(654), + [anon_sym_return] = ACTIONS(654), + [anon_sym_switch] = ACTIONS(654), + [anon_sym_LBRACE] = ACTIONS(654), + [anon_sym_RBRACE] = ACTIONS(654), + [anon_sym_case] = ACTIONS(654), + [anon_sym_default] = ACTIONS(654), + [anon_sym_getline] = ACTIONS(654), + [anon_sym_LT] = ACTIONS(642), + [sym_next_statement] = ACTIONS(654), + [sym_nextfile_statement] = ACTIONS(654), + [anon_sym_print] = ACTIONS(654), + [anon_sym_LPAREN2] = ACTIONS(682), + [anon_sym_printf] = ACTIONS(654), + [anon_sym_GT] = ACTIONS(642), + [anon_sym_GT_GT] = ACTIONS(654), + [anon_sym_PIPE] = ACTIONS(642), + [anon_sym_PIPE_AMP] = ACTIONS(642), + [anon_sym_QMARK] = ACTIONS(642), + [anon_sym_CARET] = ACTIONS(642), + [anon_sym_STAR_STAR] = ACTIONS(642), + [anon_sym_STAR] = ACTIONS(642), + [anon_sym_SLASH] = ACTIONS(642), + [anon_sym_PERCENT] = ACTIONS(642), + [anon_sym_PLUS] = ACTIONS(642), + [anon_sym_DASH] = ACTIONS(642), + [anon_sym_LT_EQ] = ACTIONS(642), + [anon_sym_GT_EQ] = ACTIONS(642), + [anon_sym_EQ_EQ] = ACTIONS(642), + [anon_sym_BANG_EQ] = ACTIONS(642), + [anon_sym_TILDE] = ACTIONS(642), + [anon_sym_BANG_TILDE] = ACTIONS(642), + [anon_sym_AMP_AMP] = ACTIONS(642), + [anon_sym_PIPE_PIPE] = ACTIONS(642), + [anon_sym_BANG] = ACTIONS(654), + [anon_sym_PLUS_PLUS] = ACTIONS(656), + [anon_sym_DASH_DASH] = ACTIONS(656), + [anon_sym_EQ] = ACTIONS(654), + [anon_sym_PLUS_EQ] = ACTIONS(654), + [anon_sym_DASH_EQ] = ACTIONS(654), + [anon_sym_STAR_EQ] = ACTIONS(654), + [anon_sym_SLASH_EQ] = ACTIONS(654), + [anon_sym_PERCENT_EQ] = ACTIONS(654), + [anon_sym_CARET_EQ] = ACTIONS(654), + [anon_sym_DOLLAR] = ACTIONS(654), + [anon_sym_LBRACK] = ACTIONS(684), + [anon_sym_AT] = ACTIONS(654), + [anon_sym_COLON_COLON] = ACTIONS(650), + [aux_sym_number_token1] = ACTIONS(654), + [aux_sym_number_token2] = ACTIONS(654), + [anon_sym_DQUOTE] = ACTIONS(654), + [anon_sym_POUND] = ACTIONS(654), + [sym_concatenating_space] = ACTIONS(658), }, [161] = { [sym_identifier] = ACTIONS(642), @@ -19984,7 +20286,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(642), [anon_sym_do] = ACTIONS(642), [anon_sym_for] = ACTIONS(642), - [anon_sym_in] = ACTIONS(644), + [anon_sym_in] = ACTIONS(642), [sym_break_statement] = ACTIONS(642), [sym_continue_statement] = ACTIONS(642), [anon_sym_delete] = ACTIONS(642), @@ -19996,35 +20298,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(642), [anon_sym_default] = ACTIONS(642), [anon_sym_getline] = ACTIONS(642), - [anon_sym_LT] = ACTIONS(644), + [anon_sym_LT] = ACTIONS(642), [sym_next_statement] = ACTIONS(642), [sym_nextfile_statement] = ACTIONS(642), [anon_sym_print] = ACTIONS(642), - [anon_sym_LPAREN2] = ACTIONS(686), + [anon_sym_LPAREN2] = ACTIONS(682), [anon_sym_printf] = ACTIONS(642), - [anon_sym_GT] = ACTIONS(644), + [anon_sym_GT] = ACTIONS(642), [anon_sym_GT_GT] = ACTIONS(642), - [anon_sym_PIPE] = ACTIONS(644), - [anon_sym_PIPE_AMP] = ACTIONS(644), - [anon_sym_QMARK] = ACTIONS(644), - [anon_sym_CARET] = ACTIONS(644), - [anon_sym_STAR_STAR] = ACTIONS(644), - [anon_sym_STAR] = ACTIONS(644), - [anon_sym_SLASH] = ACTIONS(644), - [anon_sym_PERCENT] = ACTIONS(644), - [anon_sym_PLUS] = ACTIONS(644), - [anon_sym_DASH] = ACTIONS(644), - [anon_sym_LT_EQ] = ACTIONS(644), - [anon_sym_GT_EQ] = ACTIONS(644), - [anon_sym_EQ_EQ] = ACTIONS(644), - [anon_sym_BANG_EQ] = ACTIONS(644), - [anon_sym_TILDE] = ACTIONS(644), - [anon_sym_BANG_TILDE] = ACTIONS(644), - [anon_sym_AMP_AMP] = ACTIONS(644), - [anon_sym_PIPE_PIPE] = ACTIONS(644), + [anon_sym_PIPE] = ACTIONS(642), + [anon_sym_PIPE_AMP] = ACTIONS(642), + [anon_sym_QMARK] = ACTIONS(642), + [anon_sym_CARET] = ACTIONS(642), + [anon_sym_STAR_STAR] = ACTIONS(642), + [anon_sym_STAR] = ACTIONS(642), + [anon_sym_SLASH] = ACTIONS(642), + [anon_sym_PERCENT] = ACTIONS(642), + [anon_sym_PLUS] = ACTIONS(642), + [anon_sym_DASH] = ACTIONS(642), + [anon_sym_LT_EQ] = ACTIONS(642), + [anon_sym_GT_EQ] = ACTIONS(642), + [anon_sym_EQ_EQ] = ACTIONS(642), + [anon_sym_BANG_EQ] = ACTIONS(642), + [anon_sym_TILDE] = ACTIONS(642), + [anon_sym_BANG_TILDE] = ACTIONS(642), + [anon_sym_AMP_AMP] = ACTIONS(642), + [anon_sym_PIPE_PIPE] = ACTIONS(642), [anon_sym_BANG] = ACTIONS(642), - [anon_sym_PLUS_PLUS] = ACTIONS(648), - [anon_sym_DASH_DASH] = ACTIONS(648), + [anon_sym_PLUS_PLUS] = ACTIONS(686), + [anon_sym_DASH_DASH] = ACTIONS(686), [anon_sym_EQ] = ACTIONS(642), [anon_sym_PLUS_EQ] = ACTIONS(642), [anon_sym_DASH_EQ] = ACTIONS(642), @@ -20033,256 +20335,528 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT_EQ] = ACTIONS(642), [anon_sym_CARET_EQ] = ACTIONS(642), [anon_sym_DOLLAR] = ACTIONS(642), - [anon_sym_LBRACK] = ACTIONS(688), + [anon_sym_LBRACK] = ACTIONS(684), [anon_sym_AT] = ACTIONS(642), - [anon_sym_COLON_COLON] = ACTIONS(652), + [anon_sym_COLON_COLON] = ACTIONS(650), [aux_sym_number_token1] = ACTIONS(642), [aux_sym_number_token2] = ACTIONS(642), [anon_sym_DQUOTE] = ACTIONS(642), [anon_sym_POUND] = ACTIONS(642), - [sym_concatenating_space] = ACTIONS(654), + [sym_concatenating_space] = ACTIONS(652), }, [162] = { - [sym_identifier] = ACTIONS(690), - [anon_sym_COMMA] = ACTIONS(690), - [anon_sym_SEMI] = ACTIONS(690), - [anon_sym_LF] = ACTIONS(690), - [anon_sym_CR_LF] = ACTIONS(690), - [anon_sym_if] = ACTIONS(690), - [anon_sym_LPAREN] = ACTIONS(690), - [anon_sym_while] = ACTIONS(690), - [anon_sym_do] = ACTIONS(690), - [anon_sym_for] = ACTIONS(690), - [anon_sym_in] = ACTIONS(690), - [sym_break_statement] = ACTIONS(690), - [sym_continue_statement] = ACTIONS(690), - [anon_sym_delete] = ACTIONS(690), - [anon_sym_exit] = ACTIONS(690), - [anon_sym_return] = ACTIONS(690), - [anon_sym_switch] = ACTIONS(690), - [anon_sym_LBRACE] = ACTIONS(690), - [anon_sym_RBRACE] = ACTIONS(690), - [anon_sym_case] = ACTIONS(690), - [anon_sym_default] = ACTIONS(690), - [anon_sym_getline] = ACTIONS(690), - [anon_sym_LT] = ACTIONS(690), - [sym_next_statement] = ACTIONS(690), - [sym_nextfile_statement] = ACTIONS(690), - [anon_sym_print] = ACTIONS(690), - [anon_sym_LPAREN2] = ACTIONS(692), - [anon_sym_printf] = ACTIONS(690), - [anon_sym_GT] = ACTIONS(690), - [anon_sym_GT_GT] = ACTIONS(690), - [anon_sym_PIPE] = ACTIONS(690), - [anon_sym_PIPE_AMP] = ACTIONS(690), - [anon_sym_QMARK] = ACTIONS(690), - [anon_sym_CARET] = ACTIONS(690), - [anon_sym_STAR_STAR] = ACTIONS(690), - [anon_sym_STAR] = ACTIONS(690), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_PERCENT] = ACTIONS(690), - [anon_sym_PLUS] = ACTIONS(690), - [anon_sym_DASH] = ACTIONS(690), - [anon_sym_LT_EQ] = ACTIONS(690), - [anon_sym_GT_EQ] = ACTIONS(690), - [anon_sym_EQ_EQ] = ACTIONS(690), - [anon_sym_BANG_EQ] = ACTIONS(690), - [anon_sym_TILDE] = ACTIONS(690), - [anon_sym_BANG_TILDE] = ACTIONS(690), - [anon_sym_AMP_AMP] = ACTIONS(690), - [anon_sym_PIPE_PIPE] = ACTIONS(690), - [anon_sym_BANG] = ACTIONS(690), - [anon_sym_PLUS_PLUS] = ACTIONS(690), - [anon_sym_DASH_DASH] = ACTIONS(690), - [anon_sym_EQ] = ACTIONS(690), - [anon_sym_PLUS_EQ] = ACTIONS(690), - [anon_sym_DASH_EQ] = ACTIONS(690), - [anon_sym_STAR_EQ] = ACTIONS(690), - [anon_sym_SLASH_EQ] = ACTIONS(690), - [anon_sym_PERCENT_EQ] = ACTIONS(690), - [anon_sym_CARET_EQ] = ACTIONS(690), - [anon_sym_DOLLAR] = ACTIONS(690), - [anon_sym_LBRACK] = ACTIONS(690), - [anon_sym_AT] = ACTIONS(690), - [aux_sym_number_token1] = ACTIONS(690), - [aux_sym_number_token2] = ACTIONS(690), - [anon_sym_DQUOTE] = ACTIONS(690), - [anon_sym_POUND] = ACTIONS(690), - [sym_concatenating_space] = ACTIONS(692), - [sym__if_else_separator] = ACTIONS(692), + [sym_identifier] = ACTIONS(688), + [anon_sym_COMMA] = ACTIONS(688), + [anon_sym_SEMI] = ACTIONS(688), + [anon_sym_LF] = ACTIONS(688), + [anon_sym_CR_LF] = ACTIONS(688), + [anon_sym_if] = ACTIONS(688), + [anon_sym_LPAREN] = ACTIONS(688), + [anon_sym_while] = ACTIONS(688), + [anon_sym_do] = ACTIONS(688), + [anon_sym_for] = ACTIONS(688), + [anon_sym_in] = ACTIONS(688), + [sym_break_statement] = ACTIONS(688), + [sym_continue_statement] = ACTIONS(688), + [anon_sym_delete] = ACTIONS(688), + [anon_sym_exit] = ACTIONS(688), + [anon_sym_return] = ACTIONS(688), + [anon_sym_switch] = ACTIONS(688), + [anon_sym_LBRACE] = ACTIONS(688), + [anon_sym_RBRACE] = ACTIONS(688), + [anon_sym_case] = ACTIONS(688), + [anon_sym_default] = ACTIONS(688), + [anon_sym_getline] = ACTIONS(688), + [anon_sym_LT] = ACTIONS(688), + [sym_next_statement] = ACTIONS(688), + [sym_nextfile_statement] = ACTIONS(688), + [anon_sym_print] = ACTIONS(688), + [anon_sym_printf] = ACTIONS(688), + [anon_sym_GT] = ACTIONS(688), + [anon_sym_GT_GT] = ACTIONS(688), + [anon_sym_PIPE] = ACTIONS(688), + [anon_sym_PIPE_AMP] = ACTIONS(688), + [anon_sym_QMARK] = ACTIONS(688), + [anon_sym_CARET] = ACTIONS(688), + [anon_sym_STAR_STAR] = ACTIONS(688), + [anon_sym_STAR] = ACTIONS(688), + [anon_sym_SLASH] = ACTIONS(688), + [anon_sym_PERCENT] = ACTIONS(688), + [anon_sym_PLUS] = ACTIONS(688), + [anon_sym_DASH] = ACTIONS(688), + [anon_sym_LT_EQ] = ACTIONS(688), + [anon_sym_GT_EQ] = ACTIONS(688), + [anon_sym_EQ_EQ] = ACTIONS(688), + [anon_sym_BANG_EQ] = ACTIONS(688), + [anon_sym_TILDE] = ACTIONS(688), + [anon_sym_BANG_TILDE] = ACTIONS(688), + [anon_sym_AMP_AMP] = ACTIONS(688), + [anon_sym_PIPE_PIPE] = ACTIONS(688), + [anon_sym_BANG] = ACTIONS(688), + [anon_sym_PLUS_PLUS] = ACTIONS(688), + [anon_sym_DASH_DASH] = ACTIONS(688), + [anon_sym_EQ] = ACTIONS(688), + [anon_sym_PLUS_EQ] = ACTIONS(688), + [anon_sym_DASH_EQ] = ACTIONS(688), + [anon_sym_STAR_EQ] = ACTIONS(688), + [anon_sym_SLASH_EQ] = ACTIONS(688), + [anon_sym_PERCENT_EQ] = ACTIONS(688), + [anon_sym_CARET_EQ] = ACTIONS(688), + [anon_sym_DOLLAR] = ACTIONS(688), + [anon_sym_LBRACK] = ACTIONS(648), + [anon_sym_AT] = ACTIONS(688), + [anon_sym_COLON_COLON] = ACTIONS(650), + [aux_sym_number_token1] = ACTIONS(688), + [aux_sym_number_token2] = ACTIONS(688), + [anon_sym_DQUOTE] = ACTIONS(688), + [anon_sym_POUND] = ACTIONS(688), + [sym_concatenating_space] = ACTIONS(690), + [sym__if_else_separator] = ACTIONS(690), }, [163] = { - [sym_identifier] = ACTIONS(644), - [anon_sym_COMMA] = ACTIONS(644), - [anon_sym_SEMI] = ACTIONS(644), - [anon_sym_LF] = ACTIONS(644), - [anon_sym_CR_LF] = ACTIONS(644), - [anon_sym_if] = ACTIONS(644), - [anon_sym_LPAREN] = ACTIONS(644), - [anon_sym_while] = ACTIONS(644), - [anon_sym_do] = ACTIONS(644), - [anon_sym_for] = ACTIONS(644), - [anon_sym_in] = ACTIONS(644), - [sym_break_statement] = ACTIONS(644), - [sym_continue_statement] = ACTIONS(644), - [anon_sym_delete] = ACTIONS(644), - [anon_sym_exit] = ACTIONS(644), - [anon_sym_return] = ACTIONS(644), - [anon_sym_switch] = ACTIONS(644), - [anon_sym_LBRACE] = ACTIONS(644), - [anon_sym_RBRACE] = ACTIONS(644), - [anon_sym_case] = ACTIONS(644), - [anon_sym_default] = ACTIONS(644), - [anon_sym_getline] = ACTIONS(644), - [anon_sym_LT] = ACTIONS(644), - [sym_next_statement] = ACTIONS(644), - [sym_nextfile_statement] = ACTIONS(644), - [anon_sym_print] = ACTIONS(644), - [anon_sym_LPAREN2] = ACTIONS(646), - [anon_sym_printf] = ACTIONS(644), - [anon_sym_GT] = ACTIONS(644), - [anon_sym_GT_GT] = ACTIONS(644), - [anon_sym_PIPE] = ACTIONS(644), - [anon_sym_PIPE_AMP] = ACTIONS(644), - [anon_sym_QMARK] = ACTIONS(644), - [anon_sym_CARET] = ACTIONS(644), - [anon_sym_STAR_STAR] = ACTIONS(644), - [anon_sym_STAR] = ACTIONS(644), - [anon_sym_SLASH] = ACTIONS(644), - [anon_sym_PERCENT] = ACTIONS(644), - [anon_sym_PLUS] = ACTIONS(644), - [anon_sym_DASH] = ACTIONS(644), - [anon_sym_LT_EQ] = ACTIONS(644), - [anon_sym_GT_EQ] = ACTIONS(644), - [anon_sym_EQ_EQ] = ACTIONS(644), - [anon_sym_BANG_EQ] = ACTIONS(644), - [anon_sym_TILDE] = ACTIONS(644), - [anon_sym_BANG_TILDE] = ACTIONS(644), - [anon_sym_AMP_AMP] = ACTIONS(644), - [anon_sym_PIPE_PIPE] = ACTIONS(644), - [anon_sym_BANG] = ACTIONS(644), + [sym_identifier] = ACTIONS(692), + [anon_sym_COMMA] = ACTIONS(692), + [anon_sym_SEMI] = ACTIONS(692), + [anon_sym_LF] = ACTIONS(692), + [anon_sym_CR_LF] = ACTIONS(692), + [anon_sym_if] = ACTIONS(692), + [anon_sym_LPAREN] = ACTIONS(692), + [anon_sym_while] = ACTIONS(692), + [anon_sym_do] = ACTIONS(692), + [anon_sym_for] = ACTIONS(692), + [anon_sym_in] = ACTIONS(692), + [sym_break_statement] = ACTIONS(692), + [sym_continue_statement] = ACTIONS(692), + [anon_sym_delete] = ACTIONS(692), + [anon_sym_exit] = ACTIONS(692), + [anon_sym_return] = ACTIONS(692), + [anon_sym_switch] = ACTIONS(692), + [anon_sym_LBRACE] = ACTIONS(692), + [anon_sym_RBRACE] = ACTIONS(692), + [anon_sym_case] = ACTIONS(692), + [anon_sym_default] = ACTIONS(692), + [anon_sym_getline] = ACTIONS(692), + [anon_sym_LT] = ACTIONS(692), + [sym_next_statement] = ACTIONS(692), + [sym_nextfile_statement] = ACTIONS(692), + [anon_sym_print] = ACTIONS(692), + [anon_sym_printf] = ACTIONS(692), + [anon_sym_GT] = ACTIONS(692), + [anon_sym_GT_GT] = ACTIONS(692), + [anon_sym_PIPE] = ACTIONS(692), + [anon_sym_PIPE_AMP] = ACTIONS(692), + [anon_sym_QMARK] = ACTIONS(692), + [anon_sym_CARET] = ACTIONS(692), + [anon_sym_STAR_STAR] = ACTIONS(692), + [anon_sym_STAR] = ACTIONS(692), + [anon_sym_SLASH] = ACTIONS(692), + [anon_sym_PERCENT] = ACTIONS(692), + [anon_sym_PLUS] = ACTIONS(692), + [anon_sym_DASH] = ACTIONS(692), + [anon_sym_LT_EQ] = ACTIONS(692), + [anon_sym_GT_EQ] = ACTIONS(692), + [anon_sym_EQ_EQ] = ACTIONS(692), + [anon_sym_BANG_EQ] = ACTIONS(692), + [anon_sym_TILDE] = ACTIONS(692), + [anon_sym_BANG_TILDE] = ACTIONS(692), + [anon_sym_AMP_AMP] = ACTIONS(692), + [anon_sym_PIPE_PIPE] = ACTIONS(692), + [anon_sym_BANG] = ACTIONS(692), + [anon_sym_PLUS_PLUS] = ACTIONS(692), + [anon_sym_DASH_DASH] = ACTIONS(692), + [anon_sym_EQ] = ACTIONS(692), + [anon_sym_PLUS_EQ] = ACTIONS(692), + [anon_sym_DASH_EQ] = ACTIONS(692), + [anon_sym_STAR_EQ] = ACTIONS(692), + [anon_sym_SLASH_EQ] = ACTIONS(692), + [anon_sym_PERCENT_EQ] = ACTIONS(692), + [anon_sym_CARET_EQ] = ACTIONS(692), + [anon_sym_DOLLAR] = ACTIONS(692), + [anon_sym_LBRACK] = ACTIONS(648), + [anon_sym_AT] = ACTIONS(692), + [anon_sym_COLON_COLON] = ACTIONS(650), + [aux_sym_number_token1] = ACTIONS(692), + [aux_sym_number_token2] = ACTIONS(692), + [anon_sym_DQUOTE] = ACTIONS(692), + [anon_sym_POUND] = ACTIONS(692), + [sym_concatenating_space] = ACTIONS(694), + [sym__if_else_separator] = ACTIONS(694), + }, + [164] = { + [sym_identifier] = ACTIONS(642), + [anon_sym_COMMA] = ACTIONS(642), + [anon_sym_SEMI] = ACTIONS(642), + [anon_sym_LF] = ACTIONS(642), + [anon_sym_CR_LF] = ACTIONS(642), + [anon_sym_if] = ACTIONS(642), + [anon_sym_LPAREN] = ACTIONS(642), + [anon_sym_while] = ACTIONS(642), + [anon_sym_do] = ACTIONS(642), + [anon_sym_for] = ACTIONS(642), + [anon_sym_in] = ACTIONS(642), + [sym_break_statement] = ACTIONS(642), + [sym_continue_statement] = ACTIONS(642), + [anon_sym_delete] = ACTIONS(642), + [anon_sym_exit] = ACTIONS(642), + [anon_sym_return] = ACTIONS(642), + [anon_sym_switch] = ACTIONS(642), + [anon_sym_LBRACE] = ACTIONS(642), + [anon_sym_RBRACE] = ACTIONS(642), + [anon_sym_case] = ACTIONS(642), + [anon_sym_default] = ACTIONS(642), + [anon_sym_getline] = ACTIONS(642), + [anon_sym_LT] = ACTIONS(642), + [sym_next_statement] = ACTIONS(642), + [sym_nextfile_statement] = ACTIONS(642), + [anon_sym_print] = ACTIONS(642), + [anon_sym_LPAREN2] = ACTIONS(644), + [anon_sym_printf] = ACTIONS(642), + [anon_sym_GT] = ACTIONS(642), + [anon_sym_GT_GT] = ACTIONS(642), + [anon_sym_PIPE] = ACTIONS(642), + [anon_sym_PIPE_AMP] = ACTIONS(642), + [anon_sym_QMARK] = ACTIONS(642), + [anon_sym_CARET] = ACTIONS(642), + [anon_sym_STAR_STAR] = ACTIONS(642), + [anon_sym_STAR] = ACTIONS(642), + [anon_sym_SLASH] = ACTIONS(642), + [anon_sym_PERCENT] = ACTIONS(642), + [anon_sym_PLUS] = ACTIONS(642), + [anon_sym_DASH] = ACTIONS(642), + [anon_sym_LT_EQ] = ACTIONS(642), + [anon_sym_GT_EQ] = ACTIONS(642), + [anon_sym_EQ_EQ] = ACTIONS(642), + [anon_sym_BANG_EQ] = ACTIONS(642), + [anon_sym_TILDE] = ACTIONS(642), + [anon_sym_BANG_TILDE] = ACTIONS(642), + [anon_sym_AMP_AMP] = ACTIONS(642), + [anon_sym_PIPE_PIPE] = ACTIONS(642), + [anon_sym_BANG] = ACTIONS(642), + [anon_sym_PLUS_PLUS] = ACTIONS(646), + [anon_sym_DASH_DASH] = ACTIONS(646), + [anon_sym_EQ] = ACTIONS(642), + [anon_sym_PLUS_EQ] = ACTIONS(642), + [anon_sym_DASH_EQ] = ACTIONS(642), + [anon_sym_STAR_EQ] = ACTIONS(642), + [anon_sym_SLASH_EQ] = ACTIONS(642), + [anon_sym_PERCENT_EQ] = ACTIONS(642), + [anon_sym_CARET_EQ] = ACTIONS(642), + [anon_sym_DOLLAR] = ACTIONS(642), + [anon_sym_LBRACK] = ACTIONS(648), + [anon_sym_AT] = ACTIONS(642), + [aux_sym_number_token1] = ACTIONS(642), + [aux_sym_number_token2] = ACTIONS(642), + [anon_sym_DQUOTE] = ACTIONS(642), + [anon_sym_POUND] = ACTIONS(642), + [sym_concatenating_space] = ACTIONS(652), + [sym__if_else_separator] = ACTIONS(652), + }, + [165] = { + [sym_identifier] = ACTIONS(642), + [anon_sym_COMMA] = ACTIONS(642), + [anon_sym_SEMI] = ACTIONS(642), + [anon_sym_LF] = ACTIONS(642), + [anon_sym_CR_LF] = ACTIONS(642), + [anon_sym_if] = ACTIONS(642), + [anon_sym_LPAREN] = ACTIONS(642), + [anon_sym_while] = ACTIONS(642), + [anon_sym_do] = ACTIONS(642), + [anon_sym_for] = ACTIONS(642), + [anon_sym_in] = ACTIONS(642), + [sym_break_statement] = ACTIONS(642), + [sym_continue_statement] = ACTIONS(642), + [anon_sym_delete] = ACTIONS(642), + [anon_sym_exit] = ACTIONS(642), + [anon_sym_return] = ACTIONS(642), + [anon_sym_switch] = ACTIONS(642), + [anon_sym_LBRACE] = ACTIONS(642), + [anon_sym_RBRACE] = ACTIONS(642), + [anon_sym_case] = ACTIONS(642), + [anon_sym_default] = ACTIONS(642), + [anon_sym_getline] = ACTIONS(642), + [anon_sym_LT] = ACTIONS(642), + [sym_next_statement] = ACTIONS(642), + [sym_nextfile_statement] = ACTIONS(642), + [anon_sym_print] = ACTIONS(642), + [anon_sym_LPAREN2] = ACTIONS(682), + [anon_sym_printf] = ACTIONS(642), + [anon_sym_GT] = ACTIONS(642), + [anon_sym_GT_GT] = ACTIONS(642), + [anon_sym_PIPE] = ACTIONS(642), + [anon_sym_PIPE_AMP] = ACTIONS(642), + [anon_sym_QMARK] = ACTIONS(642), + [anon_sym_CARET] = ACTIONS(642), + [anon_sym_STAR_STAR] = ACTIONS(642), + [anon_sym_STAR] = ACTIONS(642), + [anon_sym_SLASH] = ACTIONS(642), + [anon_sym_PERCENT] = ACTIONS(642), + [anon_sym_PLUS] = ACTIONS(642), + [anon_sym_DASH] = ACTIONS(642), + [anon_sym_LT_EQ] = ACTIONS(642), + [anon_sym_GT_EQ] = ACTIONS(642), + [anon_sym_EQ_EQ] = ACTIONS(642), + [anon_sym_BANG_EQ] = ACTIONS(642), + [anon_sym_TILDE] = ACTIONS(642), + [anon_sym_BANG_TILDE] = ACTIONS(642), + [anon_sym_AMP_AMP] = ACTIONS(642), + [anon_sym_PIPE_PIPE] = ACTIONS(642), + [anon_sym_BANG] = ACTIONS(642), + [anon_sym_PLUS_PLUS] = ACTIONS(686), + [anon_sym_DASH_DASH] = ACTIONS(686), + [anon_sym_EQ] = ACTIONS(642), + [anon_sym_PLUS_EQ] = ACTIONS(642), + [anon_sym_DASH_EQ] = ACTIONS(642), + [anon_sym_STAR_EQ] = ACTIONS(642), + [anon_sym_SLASH_EQ] = ACTIONS(642), + [anon_sym_PERCENT_EQ] = ACTIONS(642), + [anon_sym_CARET_EQ] = ACTIONS(642), + [anon_sym_DOLLAR] = ACTIONS(642), + [anon_sym_LBRACK] = ACTIONS(684), + [anon_sym_AT] = ACTIONS(642), + [aux_sym_number_token1] = ACTIONS(642), + [aux_sym_number_token2] = ACTIONS(642), + [anon_sym_DQUOTE] = ACTIONS(642), + [anon_sym_POUND] = ACTIONS(642), + [sym_concatenating_space] = ACTIONS(652), + }, + [166] = { + [sym_identifier] = ACTIONS(688), + [anon_sym_COMMA] = ACTIONS(688), + [anon_sym_SEMI] = ACTIONS(688), + [anon_sym_LF] = ACTIONS(688), + [anon_sym_CR_LF] = ACTIONS(688), + [anon_sym_if] = ACTIONS(688), + [anon_sym_LPAREN] = ACTIONS(688), + [anon_sym_while] = ACTIONS(688), + [anon_sym_do] = ACTIONS(688), + [anon_sym_for] = ACTIONS(688), + [anon_sym_in] = ACTIONS(688), + [sym_break_statement] = ACTIONS(688), + [sym_continue_statement] = ACTIONS(688), + [anon_sym_delete] = ACTIONS(688), + [anon_sym_exit] = ACTIONS(688), + [anon_sym_return] = ACTIONS(688), + [anon_sym_switch] = ACTIONS(688), + [anon_sym_LBRACE] = ACTIONS(688), + [anon_sym_RBRACE] = ACTIONS(688), + [anon_sym_case] = ACTIONS(688), + [anon_sym_default] = ACTIONS(688), + [anon_sym_getline] = ACTIONS(688), + [anon_sym_LT] = ACTIONS(688), + [sym_next_statement] = ACTIONS(688), + [sym_nextfile_statement] = ACTIONS(688), + [anon_sym_print] = ACTIONS(688), + [anon_sym_printf] = ACTIONS(688), + [anon_sym_GT] = ACTIONS(688), + [anon_sym_GT_GT] = ACTIONS(688), + [anon_sym_PIPE] = ACTIONS(688), + [anon_sym_PIPE_AMP] = ACTIONS(688), + [anon_sym_QMARK] = ACTIONS(688), + [anon_sym_CARET] = ACTIONS(688), + [anon_sym_STAR_STAR] = ACTIONS(688), + [anon_sym_STAR] = ACTIONS(688), + [anon_sym_SLASH] = ACTIONS(688), + [anon_sym_PERCENT] = ACTIONS(688), + [anon_sym_PLUS] = ACTIONS(688), + [anon_sym_DASH] = ACTIONS(688), + [anon_sym_LT_EQ] = ACTIONS(688), + [anon_sym_GT_EQ] = ACTIONS(688), + [anon_sym_EQ_EQ] = ACTIONS(688), + [anon_sym_BANG_EQ] = ACTIONS(688), + [anon_sym_TILDE] = ACTIONS(688), + [anon_sym_BANG_TILDE] = ACTIONS(688), + [anon_sym_AMP_AMP] = ACTIONS(688), + [anon_sym_PIPE_PIPE] = ACTIONS(688), + [anon_sym_BANG] = ACTIONS(688), + [anon_sym_PLUS_PLUS] = ACTIONS(688), + [anon_sym_DASH_DASH] = ACTIONS(688), + [anon_sym_EQ] = ACTIONS(688), + [anon_sym_PLUS_EQ] = ACTIONS(688), + [anon_sym_DASH_EQ] = ACTIONS(688), + [anon_sym_STAR_EQ] = ACTIONS(688), + [anon_sym_SLASH_EQ] = ACTIONS(688), + [anon_sym_PERCENT_EQ] = ACTIONS(688), + [anon_sym_CARET_EQ] = ACTIONS(688), + [anon_sym_DOLLAR] = ACTIONS(688), + [anon_sym_LBRACK] = ACTIONS(648), + [anon_sym_AT] = ACTIONS(688), + [aux_sym_number_token1] = ACTIONS(688), + [aux_sym_number_token2] = ACTIONS(688), + [anon_sym_DQUOTE] = ACTIONS(688), + [anon_sym_POUND] = ACTIONS(688), + [sym_concatenating_space] = ACTIONS(690), + [sym__if_else_separator] = ACTIONS(690), + }, + [167] = { + [sym_identifier] = ACTIONS(654), + [anon_sym_COMMA] = ACTIONS(654), + [anon_sym_SEMI] = ACTIONS(654), + [anon_sym_LF] = ACTIONS(654), + [anon_sym_CR_LF] = ACTIONS(654), + [anon_sym_if] = ACTIONS(654), + [anon_sym_LPAREN] = ACTIONS(654), + [anon_sym_while] = ACTIONS(654), + [anon_sym_do] = ACTIONS(654), + [anon_sym_for] = ACTIONS(654), + [anon_sym_in] = ACTIONS(642), + [sym_break_statement] = ACTIONS(654), + [sym_continue_statement] = ACTIONS(654), + [anon_sym_delete] = ACTIONS(654), + [anon_sym_exit] = ACTIONS(654), + [anon_sym_return] = ACTIONS(654), + [anon_sym_switch] = ACTIONS(654), + [anon_sym_LBRACE] = ACTIONS(654), + [anon_sym_RBRACE] = ACTIONS(654), + [anon_sym_case] = ACTIONS(654), + [anon_sym_default] = ACTIONS(654), + [anon_sym_getline] = ACTIONS(654), + [anon_sym_LT] = ACTIONS(642), + [sym_next_statement] = ACTIONS(654), + [sym_nextfile_statement] = ACTIONS(654), + [anon_sym_print] = ACTIONS(654), + [anon_sym_printf] = ACTIONS(654), + [anon_sym_GT] = ACTIONS(642), + [anon_sym_GT_GT] = ACTIONS(654), + [anon_sym_PIPE] = ACTIONS(642), + [anon_sym_PIPE_AMP] = ACTIONS(642), + [anon_sym_QMARK] = ACTIONS(642), + [anon_sym_CARET] = ACTIONS(642), + [anon_sym_STAR_STAR] = ACTIONS(642), + [anon_sym_STAR] = ACTIONS(642), + [anon_sym_SLASH] = ACTIONS(642), + [anon_sym_PERCENT] = ACTIONS(642), + [anon_sym_PLUS] = ACTIONS(642), + [anon_sym_DASH] = ACTIONS(642), + [anon_sym_LT_EQ] = ACTIONS(642), + [anon_sym_GT_EQ] = ACTIONS(642), + [anon_sym_EQ_EQ] = ACTIONS(642), + [anon_sym_BANG_EQ] = ACTIONS(642), + [anon_sym_TILDE] = ACTIONS(642), + [anon_sym_BANG_TILDE] = ACTIONS(642), + [anon_sym_AMP_AMP] = ACTIONS(642), + [anon_sym_PIPE_PIPE] = ACTIONS(642), + [anon_sym_BANG] = ACTIONS(654), [anon_sym_PLUS_PLUS] = ACTIONS(656), [anon_sym_DASH_DASH] = ACTIONS(656), - [anon_sym_EQ] = ACTIONS(644), - [anon_sym_PLUS_EQ] = ACTIONS(644), - [anon_sym_DASH_EQ] = ACTIONS(644), - [anon_sym_STAR_EQ] = ACTIONS(644), - [anon_sym_SLASH_EQ] = ACTIONS(644), - [anon_sym_PERCENT_EQ] = ACTIONS(644), - [anon_sym_CARET_EQ] = ACTIONS(644), - [anon_sym_DOLLAR] = ACTIONS(644), - [anon_sym_LBRACK] = ACTIONS(650), - [anon_sym_AT] = ACTIONS(644), - [aux_sym_number_token1] = ACTIONS(644), - [aux_sym_number_token2] = ACTIONS(644), - [anon_sym_DQUOTE] = ACTIONS(644), - [anon_sym_POUND] = ACTIONS(644), + [anon_sym_EQ] = ACTIONS(654), + [anon_sym_PLUS_EQ] = ACTIONS(654), + [anon_sym_DASH_EQ] = ACTIONS(654), + [anon_sym_STAR_EQ] = ACTIONS(654), + [anon_sym_SLASH_EQ] = ACTIONS(654), + [anon_sym_PERCENT_EQ] = ACTIONS(654), + [anon_sym_CARET_EQ] = ACTIONS(654), + [anon_sym_DOLLAR] = ACTIONS(654), + [anon_sym_LBRACK] = ACTIONS(648), + [anon_sym_AT] = ACTIONS(654), + [aux_sym_number_token1] = ACTIONS(654), + [aux_sym_number_token2] = ACTIONS(654), + [anon_sym_DQUOTE] = ACTIONS(654), + [anon_sym_POUND] = ACTIONS(654), [sym_concatenating_space] = ACTIONS(658), [sym__if_else_separator] = ACTIONS(658), }, - [164] = { - [sym_identifier] = ACTIONS(644), - [anon_sym_COMMA] = ACTIONS(644), - [anon_sym_SEMI] = ACTIONS(644), - [anon_sym_LF] = ACTIONS(644), - [anon_sym_CR_LF] = ACTIONS(644), - [anon_sym_if] = ACTIONS(644), - [anon_sym_LPAREN] = ACTIONS(644), - [anon_sym_while] = ACTIONS(644), - [anon_sym_do] = ACTIONS(644), - [anon_sym_for] = ACTIONS(644), - [anon_sym_in] = ACTIONS(644), - [sym_break_statement] = ACTIONS(644), - [sym_continue_statement] = ACTIONS(644), - [anon_sym_delete] = ACTIONS(644), - [anon_sym_exit] = ACTIONS(644), - [anon_sym_return] = ACTIONS(644), - [anon_sym_switch] = ACTIONS(644), - [anon_sym_LBRACE] = ACTIONS(644), - [anon_sym_RBRACE] = ACTIONS(644), - [anon_sym_case] = ACTIONS(644), - [anon_sym_default] = ACTIONS(644), - [anon_sym_getline] = ACTIONS(644), - [anon_sym_LT] = ACTIONS(644), - [sym_next_statement] = ACTIONS(644), - [sym_nextfile_statement] = ACTIONS(644), - [anon_sym_print] = ACTIONS(644), - [anon_sym_LPAREN2] = ACTIONS(686), - [anon_sym_printf] = ACTIONS(644), - [anon_sym_GT] = ACTIONS(644), - [anon_sym_GT_GT] = ACTIONS(644), - [anon_sym_PIPE] = ACTIONS(644), - [anon_sym_PIPE_AMP] = ACTIONS(644), - [anon_sym_QMARK] = ACTIONS(644), - [anon_sym_CARET] = ACTIONS(644), - [anon_sym_STAR_STAR] = ACTIONS(644), - [anon_sym_STAR] = ACTIONS(644), - [anon_sym_SLASH] = ACTIONS(644), - [anon_sym_PERCENT] = ACTIONS(644), - [anon_sym_PLUS] = ACTIONS(644), - [anon_sym_DASH] = ACTIONS(644), - [anon_sym_LT_EQ] = ACTIONS(644), - [anon_sym_GT_EQ] = ACTIONS(644), - [anon_sym_EQ_EQ] = ACTIONS(644), - [anon_sym_BANG_EQ] = ACTIONS(644), - [anon_sym_TILDE] = ACTIONS(644), - [anon_sym_BANG_TILDE] = ACTIONS(644), - [anon_sym_AMP_AMP] = ACTIONS(644), - [anon_sym_PIPE_PIPE] = ACTIONS(644), - [anon_sym_BANG] = ACTIONS(644), - [anon_sym_PLUS_PLUS] = ACTIONS(694), - [anon_sym_DASH_DASH] = ACTIONS(694), - [anon_sym_EQ] = ACTIONS(644), - [anon_sym_PLUS_EQ] = ACTIONS(644), - [anon_sym_DASH_EQ] = ACTIONS(644), - [anon_sym_STAR_EQ] = ACTIONS(644), - [anon_sym_SLASH_EQ] = ACTIONS(644), - [anon_sym_PERCENT_EQ] = ACTIONS(644), - [anon_sym_CARET_EQ] = ACTIONS(644), - [anon_sym_DOLLAR] = ACTIONS(644), - [anon_sym_LBRACK] = ACTIONS(688), - [anon_sym_AT] = ACTIONS(644), - [anon_sym_COLON_COLON] = ACTIONS(652), - [aux_sym_number_token1] = ACTIONS(644), - [aux_sym_number_token2] = ACTIONS(644), - [anon_sym_DQUOTE] = ACTIONS(644), - [anon_sym_POUND] = ACTIONS(644), + [168] = { + [sym_identifier] = ACTIONS(654), + [anon_sym_COMMA] = ACTIONS(654), + [anon_sym_SEMI] = ACTIONS(654), + [anon_sym_LF] = ACTIONS(654), + [anon_sym_CR_LF] = ACTIONS(654), + [anon_sym_if] = ACTIONS(654), + [anon_sym_LPAREN] = ACTIONS(654), + [anon_sym_while] = ACTIONS(654), + [anon_sym_do] = ACTIONS(654), + [anon_sym_for] = ACTIONS(654), + [anon_sym_in] = ACTIONS(642), + [sym_break_statement] = ACTIONS(654), + [sym_continue_statement] = ACTIONS(654), + [anon_sym_delete] = ACTIONS(654), + [anon_sym_exit] = ACTIONS(654), + [anon_sym_return] = ACTIONS(654), + [anon_sym_switch] = ACTIONS(654), + [anon_sym_LBRACE] = ACTIONS(654), + [anon_sym_RBRACE] = ACTIONS(654), + [anon_sym_case] = ACTIONS(654), + [anon_sym_default] = ACTIONS(654), + [anon_sym_getline] = ACTIONS(654), + [anon_sym_LT] = ACTIONS(642), + [sym_next_statement] = ACTIONS(654), + [sym_nextfile_statement] = ACTIONS(654), + [anon_sym_print] = ACTIONS(654), + [anon_sym_printf] = ACTIONS(654), + [anon_sym_GT] = ACTIONS(642), + [anon_sym_GT_GT] = ACTIONS(654), + [anon_sym_PIPE] = ACTIONS(642), + [anon_sym_PIPE_AMP] = ACTIONS(642), + [anon_sym_QMARK] = ACTIONS(642), + [anon_sym_CARET] = ACTIONS(642), + [anon_sym_STAR_STAR] = ACTIONS(642), + [anon_sym_STAR] = ACTIONS(642), + [anon_sym_SLASH] = ACTIONS(642), + [anon_sym_PERCENT] = ACTIONS(642), + [anon_sym_PLUS] = ACTIONS(642), + [anon_sym_DASH] = ACTIONS(642), + [anon_sym_LT_EQ] = ACTIONS(642), + [anon_sym_GT_EQ] = ACTIONS(642), + [anon_sym_EQ_EQ] = ACTIONS(642), + [anon_sym_BANG_EQ] = ACTIONS(642), + [anon_sym_TILDE] = ACTIONS(642), + [anon_sym_BANG_TILDE] = ACTIONS(642), + [anon_sym_AMP_AMP] = ACTIONS(642), + [anon_sym_PIPE_PIPE] = ACTIONS(642), + [anon_sym_BANG] = ACTIONS(654), + [anon_sym_PLUS_PLUS] = ACTIONS(656), + [anon_sym_DASH_DASH] = ACTIONS(656), + [anon_sym_EQ] = ACTIONS(696), + [anon_sym_PLUS_EQ] = ACTIONS(696), + [anon_sym_DASH_EQ] = ACTIONS(696), + [anon_sym_STAR_EQ] = ACTIONS(696), + [anon_sym_SLASH_EQ] = ACTIONS(696), + [anon_sym_PERCENT_EQ] = ACTIONS(696), + [anon_sym_CARET_EQ] = ACTIONS(696), + [anon_sym_DOLLAR] = ACTIONS(654), + [anon_sym_LBRACK] = ACTIONS(648), + [anon_sym_AT] = ACTIONS(654), + [aux_sym_number_token1] = ACTIONS(654), + [aux_sym_number_token2] = ACTIONS(654), + [anon_sym_DQUOTE] = ACTIONS(654), + [anon_sym_POUND] = ACTIONS(654), [sym_concatenating_space] = ACTIONS(658), + [sym__if_else_separator] = ACTIONS(658), }, - [165] = { - [sym__getline_exp] = STATE(475), - [sym_getline_input] = STATE(475), - [sym_getline_file] = STATE(475), - [sym__print_args] = STATE(692), - [sym__exp] = STATE(475), - [sym_ternary_exp] = STATE(447), - [sym_binary_exp] = STATE(447), - [sym__binary_in] = STATE(446), - [sym_unary_exp] = STATE(447), - [sym_update_exp] = STATE(475), - [sym_assignment_exp] = STATE(475), - [sym_piped_io_exp] = STATE(475), - [sym_string_concat] = STATE(447), - [sym_field_ref] = STATE(272), - [sym_array_ref] = STATE(253), - [sym_exp_list] = STATE(692), - [sym_regex] = STATE(475), - [sym_regex_constant] = STATE(475), - [sym_grouping] = STATE(447), - [sym__primitive] = STATE(447), - [sym_namespace] = STATE(1955), - [sym_ns_qualified_name] = STATE(221), - [sym_number] = STATE(447), - [sym_string] = STATE(447), - [sym_func_call] = STATE(447), - [sym_indirect_func_call] = STATE(475), - [aux_sym_exp_list_repeat1] = STATE(739), - [sym_identifier] = ACTIONS(127), + [169] = { + [sym__getline_exp] = STATE(473), + [sym_getline_input] = STATE(473), + [sym_getline_file] = STATE(473), + [sym__print_args] = STATE(660), + [sym__exp] = STATE(473), + [sym_ternary_exp] = STATE(427), + [sym_binary_exp] = STATE(427), + [sym__binary_in] = STATE(426), + [sym_unary_exp] = STATE(427), + [sym_update_exp] = STATE(473), + [sym_assignment_exp] = STATE(473), + [sym_piped_io_exp] = STATE(473), + [sym_string_concat] = STATE(427), + [sym_field_ref] = STATE(274), + [sym_array_ref] = STATE(268), + [sym_exp_list] = STATE(660), + [sym_regex] = STATE(473), + [sym_regex_constant] = STATE(473), + [sym_grouping] = STATE(427), + [sym__primitive] = STATE(427), + [sym_namespace] = STATE(1956), + [sym_ns_qualified_name] = STATE(244), + [sym_number] = STATE(427), + [sym_string] = STATE(427), + [sym_func_call] = STATE(427), + [sym_indirect_func_call] = STATE(473), + [aux_sym_exp_list_repeat1] = STATE(771), + [sym_identifier] = ACTIONS(85), [anon_sym_SEMI] = ACTIONS(660), [anon_sym_LF] = ACTIONS(660), [anon_sym_CR_LF] = ACTIONS(660), [anon_sym_if] = ACTIONS(660), - [anon_sym_LPAREN] = ACTIONS(696), + [anon_sym_LPAREN] = ACTIONS(698), [anon_sym_while] = ACTIONS(660), [anon_sym_do] = ACTIONS(660), [anon_sym_for] = ACTIONS(660), @@ -20294,370 +20868,302 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_switch] = ACTIONS(660), [anon_sym_LBRACE] = ACTIONS(660), [anon_sym_RBRACE] = ACTIONS(660), - [anon_sym_getline] = ACTIONS(147), + [anon_sym_getline] = ACTIONS(111), [sym_next_statement] = ACTIONS(660), [sym_nextfile_statement] = ACTIONS(660), [anon_sym_print] = ACTIONS(660), - [anon_sym_LPAREN2] = ACTIONS(698), + [anon_sym_LPAREN2] = ACTIONS(700), [anon_sym_printf] = ACTIONS(660), [anon_sym_GT] = ACTIONS(660), [anon_sym_GT_GT] = ACTIONS(660), [anon_sym_PIPE] = ACTIONS(660), [anon_sym_PIPE_AMP] = ACTIONS(660), - [anon_sym_SLASH] = ACTIONS(700), - [anon_sym_PLUS] = ACTIONS(155), - [anon_sym_DASH] = ACTIONS(155), - [anon_sym_BANG] = ACTIONS(155), - [anon_sym_PLUS_PLUS] = ACTIONS(702), - [anon_sym_DASH_DASH] = ACTIONS(702), - [anon_sym_DOLLAR] = ACTIONS(704), - [anon_sym_AT] = ACTIONS(706), - [aux_sym_number_token1] = ACTIONS(165), - [aux_sym_number_token2] = ACTIONS(165), - [anon_sym_DQUOTE] = ACTIONS(708), + [anon_sym_SLASH] = ACTIONS(702), + [anon_sym_PLUS] = ACTIONS(119), + [anon_sym_DASH] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(119), + [anon_sym_PLUS_PLUS] = ACTIONS(704), + [anon_sym_DASH_DASH] = ACTIONS(704), + [anon_sym_DOLLAR] = ACTIONS(706), + [anon_sym_AT] = ACTIONS(708), + [aux_sym_number_token1] = ACTIONS(129), + [aux_sym_number_token2] = ACTIONS(129), + [anon_sym_DQUOTE] = ACTIONS(710), [anon_sym_POUND] = ACTIONS(660), }, - [166] = { - [sym_array_ref] = STATE(171), - [sym_namespace] = STATE(2066), - [sym_ns_qualified_name] = STATE(171), - [sym_identifier] = ACTIONS(710), - [anon_sym_COMMA] = ACTIONS(712), - [anon_sym_SEMI] = ACTIONS(712), - [anon_sym_LF] = ACTIONS(712), - [anon_sym_CR_LF] = ACTIONS(712), - [anon_sym_if] = ACTIONS(712), - [anon_sym_LPAREN] = ACTIONS(712), - [anon_sym_while] = ACTIONS(712), - [anon_sym_do] = ACTIONS(712), - [anon_sym_for] = ACTIONS(712), - [anon_sym_in] = ACTIONS(712), - [sym_break_statement] = ACTIONS(712), - [sym_continue_statement] = ACTIONS(712), - [anon_sym_delete] = ACTIONS(712), - [anon_sym_exit] = ACTIONS(712), - [anon_sym_return] = ACTIONS(712), - [anon_sym_switch] = ACTIONS(712), - [anon_sym_LBRACE] = ACTIONS(712), - [anon_sym_RBRACE] = ACTIONS(712), - [anon_sym_getline] = ACTIONS(712), - [anon_sym_LT] = ACTIONS(712), - [sym_next_statement] = ACTIONS(712), - [sym_nextfile_statement] = ACTIONS(712), - [anon_sym_print] = ACTIONS(712), - [anon_sym_printf] = ACTIONS(712), - [anon_sym_GT] = ACTIONS(712), - [anon_sym_GT_GT] = ACTIONS(712), - [anon_sym_PIPE] = ACTIONS(712), - [anon_sym_PIPE_AMP] = ACTIONS(712), - [anon_sym_QMARK] = ACTIONS(712), - [anon_sym_CARET] = ACTIONS(712), - [anon_sym_STAR_STAR] = ACTIONS(712), - [anon_sym_STAR] = ACTIONS(712), - [anon_sym_SLASH] = ACTIONS(712), - [anon_sym_PERCENT] = ACTIONS(712), - [anon_sym_PLUS] = ACTIONS(712), - [anon_sym_DASH] = ACTIONS(712), - [anon_sym_LT_EQ] = ACTIONS(712), - [anon_sym_GT_EQ] = ACTIONS(712), - [anon_sym_EQ_EQ] = ACTIONS(712), - [anon_sym_BANG_EQ] = ACTIONS(712), - [anon_sym_TILDE] = ACTIONS(712), - [anon_sym_BANG_TILDE] = ACTIONS(712), - [anon_sym_AMP_AMP] = ACTIONS(712), - [anon_sym_PIPE_PIPE] = ACTIONS(712), - [anon_sym_BANG] = ACTIONS(712), - [anon_sym_PLUS_PLUS] = ACTIONS(712), - [anon_sym_DASH_DASH] = ACTIONS(712), - [anon_sym_EQ] = ACTIONS(712), - [anon_sym_PLUS_EQ] = ACTIONS(712), - [anon_sym_DASH_EQ] = ACTIONS(712), - [anon_sym_STAR_EQ] = ACTIONS(712), - [anon_sym_SLASH_EQ] = ACTIONS(712), - [anon_sym_PERCENT_EQ] = ACTIONS(712), - [anon_sym_CARET_EQ] = ACTIONS(712), - [anon_sym_DOLLAR] = ACTIONS(712), - [anon_sym_AT] = ACTIONS(712), - [aux_sym_number_token1] = ACTIONS(712), - [aux_sym_number_token2] = ACTIONS(712), - [anon_sym_DQUOTE] = ACTIONS(712), - [anon_sym_POUND] = ACTIONS(712), - [sym_concatenating_space] = ACTIONS(714), - [sym__if_else_separator] = ACTIONS(714), - }, - [167] = { - [sym_identifier] = ACTIONS(644), - [anon_sym_COMMA] = ACTIONS(644), - [anon_sym_SEMI] = ACTIONS(644), - [anon_sym_LF] = ACTIONS(644), - [anon_sym_CR_LF] = ACTIONS(644), - [anon_sym_if] = ACTIONS(644), - [anon_sym_LPAREN] = ACTIONS(644), - [anon_sym_while] = ACTIONS(644), - [anon_sym_do] = ACTIONS(644), - [anon_sym_for] = ACTIONS(644), - [anon_sym_in] = ACTIONS(644), - [sym_break_statement] = ACTIONS(644), - [sym_continue_statement] = ACTIONS(644), - [anon_sym_delete] = ACTIONS(644), - [anon_sym_exit] = ACTIONS(644), - [anon_sym_return] = ACTIONS(644), - [anon_sym_switch] = ACTIONS(644), - [anon_sym_LBRACE] = ACTIONS(644), - [anon_sym_RBRACE] = ACTIONS(644), - [anon_sym_getline] = ACTIONS(644), - [anon_sym_LT] = ACTIONS(644), - [sym_next_statement] = ACTIONS(644), - [sym_nextfile_statement] = ACTIONS(644), - [anon_sym_print] = ACTIONS(644), - [anon_sym_LPAREN2] = ACTIONS(716), - [anon_sym_printf] = ACTIONS(644), - [anon_sym_GT] = ACTIONS(644), - [anon_sym_GT_GT] = ACTIONS(644), - [anon_sym_PIPE] = ACTIONS(644), - [anon_sym_PIPE_AMP] = ACTIONS(644), - [anon_sym_QMARK] = ACTIONS(644), - [anon_sym_CARET] = ACTIONS(644), - [anon_sym_STAR_STAR] = ACTIONS(644), - [anon_sym_STAR] = ACTIONS(644), - [anon_sym_SLASH] = ACTIONS(644), - [anon_sym_PERCENT] = ACTIONS(644), - [anon_sym_PLUS] = ACTIONS(644), - [anon_sym_DASH] = ACTIONS(644), - [anon_sym_LT_EQ] = ACTIONS(644), - [anon_sym_GT_EQ] = ACTIONS(644), - [anon_sym_EQ_EQ] = ACTIONS(644), - [anon_sym_BANG_EQ] = ACTIONS(644), - [anon_sym_TILDE] = ACTIONS(644), - [anon_sym_BANG_TILDE] = ACTIONS(644), - [anon_sym_AMP_AMP] = ACTIONS(644), - [anon_sym_PIPE_PIPE] = ACTIONS(644), - [anon_sym_BANG] = ACTIONS(644), - [anon_sym_PLUS_PLUS] = ACTIONS(718), - [anon_sym_DASH_DASH] = ACTIONS(718), - [anon_sym_EQ] = ACTIONS(720), - [anon_sym_PLUS_EQ] = ACTIONS(720), - [anon_sym_DASH_EQ] = ACTIONS(720), - [anon_sym_STAR_EQ] = ACTIONS(720), - [anon_sym_SLASH_EQ] = ACTIONS(720), - [anon_sym_PERCENT_EQ] = ACTIONS(720), - [anon_sym_CARET_EQ] = ACTIONS(720), - [anon_sym_DOLLAR] = ACTIONS(644), - [anon_sym_LBRACK] = ACTIONS(650), - [anon_sym_AT] = ACTIONS(644), - [anon_sym_COLON_COLON] = ACTIONS(652), - [aux_sym_number_token1] = ACTIONS(644), - [aux_sym_number_token2] = ACTIONS(644), - [anon_sym_DQUOTE] = ACTIONS(644), - [anon_sym_POUND] = ACTIONS(644), + [170] = { + [sym_identifier] = ACTIONS(654), + [anon_sym_COMMA] = ACTIONS(654), + [anon_sym_SEMI] = ACTIONS(654), + [anon_sym_LF] = ACTIONS(654), + [anon_sym_CR_LF] = ACTIONS(654), + [anon_sym_if] = ACTIONS(654), + [anon_sym_LPAREN] = ACTIONS(654), + [anon_sym_while] = ACTIONS(654), + [anon_sym_do] = ACTIONS(654), + [anon_sym_for] = ACTIONS(654), + [anon_sym_in] = ACTIONS(642), + [sym_break_statement] = ACTIONS(654), + [sym_continue_statement] = ACTIONS(654), + [anon_sym_delete] = ACTIONS(654), + [anon_sym_exit] = ACTIONS(654), + [anon_sym_return] = ACTIONS(654), + [anon_sym_switch] = ACTIONS(654), + [anon_sym_LBRACE] = ACTIONS(654), + [anon_sym_RBRACE] = ACTIONS(654), + [anon_sym_getline] = ACTIONS(654), + [anon_sym_LT] = ACTIONS(642), + [sym_next_statement] = ACTIONS(654), + [sym_nextfile_statement] = ACTIONS(654), + [anon_sym_print] = ACTIONS(654), + [anon_sym_LPAREN2] = ACTIONS(712), + [anon_sym_printf] = ACTIONS(654), + [anon_sym_GT] = ACTIONS(642), + [anon_sym_GT_GT] = ACTIONS(654), + [anon_sym_PIPE] = ACTIONS(642), + [anon_sym_PIPE_AMP] = ACTIONS(642), + [anon_sym_QMARK] = ACTIONS(642), + [anon_sym_CARET] = ACTIONS(642), + [anon_sym_STAR_STAR] = ACTIONS(642), + [anon_sym_STAR] = ACTIONS(642), + [anon_sym_SLASH] = ACTIONS(642), + [anon_sym_PERCENT] = ACTIONS(642), + [anon_sym_PLUS] = ACTIONS(642), + [anon_sym_DASH] = ACTIONS(642), + [anon_sym_LT_EQ] = ACTIONS(642), + [anon_sym_GT_EQ] = ACTIONS(642), + [anon_sym_EQ_EQ] = ACTIONS(642), + [anon_sym_BANG_EQ] = ACTIONS(642), + [anon_sym_TILDE] = ACTIONS(642), + [anon_sym_BANG_TILDE] = ACTIONS(642), + [anon_sym_AMP_AMP] = ACTIONS(642), + [anon_sym_PIPE_PIPE] = ACTIONS(642), + [anon_sym_BANG] = ACTIONS(654), + [anon_sym_PLUS_PLUS] = ACTIONS(656), + [anon_sym_DASH_DASH] = ACTIONS(656), + [anon_sym_EQ] = ACTIONS(696), + [anon_sym_PLUS_EQ] = ACTIONS(696), + [anon_sym_DASH_EQ] = ACTIONS(696), + [anon_sym_STAR_EQ] = ACTIONS(696), + [anon_sym_SLASH_EQ] = ACTIONS(696), + [anon_sym_PERCENT_EQ] = ACTIONS(696), + [anon_sym_CARET_EQ] = ACTIONS(696), + [anon_sym_DOLLAR] = ACTIONS(654), + [anon_sym_LBRACK] = ACTIONS(648), + [anon_sym_AT] = ACTIONS(654), + [anon_sym_COLON_COLON] = ACTIONS(650), + [aux_sym_number_token1] = ACTIONS(654), + [aux_sym_number_token2] = ACTIONS(654), + [anon_sym_DQUOTE] = ACTIONS(654), + [anon_sym_POUND] = ACTIONS(654), [sym_concatenating_space] = ACTIONS(658), [sym__if_else_separator] = ACTIONS(658), }, - [168] = { - [sym_identifier] = ACTIONS(722), - [anon_sym_COMMA] = ACTIONS(722), - [anon_sym_SEMI] = ACTIONS(722), - [anon_sym_LF] = ACTIONS(722), - [anon_sym_CR_LF] = ACTIONS(722), - [anon_sym_if] = ACTIONS(722), - [anon_sym_LPAREN] = ACTIONS(722), - [anon_sym_while] = ACTIONS(722), - [anon_sym_do] = ACTIONS(722), - [anon_sym_for] = ACTIONS(722), - [anon_sym_in] = ACTIONS(722), - [sym_break_statement] = ACTIONS(722), - [sym_continue_statement] = ACTIONS(722), - [anon_sym_delete] = ACTIONS(722), - [anon_sym_exit] = ACTIONS(722), - [anon_sym_return] = ACTIONS(722), - [anon_sym_switch] = ACTIONS(722), - [anon_sym_LBRACE] = ACTIONS(722), - [anon_sym_RBRACE] = ACTIONS(722), - [anon_sym_case] = ACTIONS(722), - [anon_sym_default] = ACTIONS(722), - [anon_sym_getline] = ACTIONS(722), - [anon_sym_LT] = ACTIONS(722), - [sym_next_statement] = ACTIONS(722), - [sym_nextfile_statement] = ACTIONS(722), - [anon_sym_print] = ACTIONS(722), - [anon_sym_printf] = ACTIONS(722), - [anon_sym_GT] = ACTIONS(722), - [anon_sym_GT_GT] = ACTIONS(722), - [anon_sym_PIPE] = ACTIONS(722), - [anon_sym_PIPE_AMP] = ACTIONS(722), - [anon_sym_QMARK] = ACTIONS(722), - [anon_sym_CARET] = ACTIONS(722), - [anon_sym_STAR_STAR] = ACTIONS(722), - [anon_sym_STAR] = ACTIONS(722), - [anon_sym_SLASH] = ACTIONS(722), - [anon_sym_PERCENT] = ACTIONS(722), - [anon_sym_PLUS] = ACTIONS(722), - [anon_sym_DASH] = ACTIONS(722), - [anon_sym_LT_EQ] = ACTIONS(722), - [anon_sym_GT_EQ] = ACTIONS(722), - [anon_sym_EQ_EQ] = ACTIONS(722), - [anon_sym_BANG_EQ] = ACTIONS(722), - [anon_sym_TILDE] = ACTIONS(722), - [anon_sym_BANG_TILDE] = ACTIONS(722), - [anon_sym_AMP_AMP] = ACTIONS(722), - [anon_sym_PIPE_PIPE] = ACTIONS(722), - [anon_sym_BANG] = ACTIONS(722), - [anon_sym_PLUS_PLUS] = ACTIONS(722), - [anon_sym_DASH_DASH] = ACTIONS(722), - [anon_sym_EQ] = ACTIONS(722), - [anon_sym_PLUS_EQ] = ACTIONS(722), - [anon_sym_DASH_EQ] = ACTIONS(722), - [anon_sym_STAR_EQ] = ACTIONS(722), - [anon_sym_SLASH_EQ] = ACTIONS(722), - [anon_sym_PERCENT_EQ] = ACTIONS(722), - [anon_sym_CARET_EQ] = ACTIONS(722), - [anon_sym_DOLLAR] = ACTIONS(722), - [anon_sym_LBRACK] = ACTIONS(722), - [anon_sym_AT] = ACTIONS(722), - [aux_sym_number_token1] = ACTIONS(722), - [aux_sym_number_token2] = ACTIONS(722), - [anon_sym_DQUOTE] = ACTIONS(722), - [anon_sym_POUND] = ACTIONS(722), - [sym_concatenating_space] = ACTIONS(724), - [sym__if_else_separator] = ACTIONS(724), + [171] = { + [sym_identifier] = ACTIONS(688), + [anon_sym_COMMA] = ACTIONS(688), + [anon_sym_SEMI] = ACTIONS(688), + [anon_sym_LF] = ACTIONS(688), + [anon_sym_CR_LF] = ACTIONS(688), + [anon_sym_if] = ACTIONS(688), + [anon_sym_LPAREN] = ACTIONS(688), + [anon_sym_while] = ACTIONS(688), + [anon_sym_do] = ACTIONS(688), + [anon_sym_for] = ACTIONS(688), + [anon_sym_in] = ACTIONS(688), + [sym_break_statement] = ACTIONS(688), + [sym_continue_statement] = ACTIONS(688), + [anon_sym_delete] = ACTIONS(688), + [anon_sym_exit] = ACTIONS(688), + [anon_sym_return] = ACTIONS(688), + [anon_sym_switch] = ACTIONS(688), + [anon_sym_LBRACE] = ACTIONS(688), + [anon_sym_RBRACE] = ACTIONS(688), + [anon_sym_case] = ACTIONS(688), + [anon_sym_default] = ACTIONS(688), + [anon_sym_getline] = ACTIONS(688), + [anon_sym_LT] = ACTIONS(688), + [sym_next_statement] = ACTIONS(688), + [sym_nextfile_statement] = ACTIONS(688), + [anon_sym_print] = ACTIONS(688), + [anon_sym_printf] = ACTIONS(688), + [anon_sym_GT] = ACTIONS(688), + [anon_sym_GT_GT] = ACTIONS(688), + [anon_sym_PIPE] = ACTIONS(688), + [anon_sym_PIPE_AMP] = ACTIONS(688), + [anon_sym_QMARK] = ACTIONS(688), + [anon_sym_CARET] = ACTIONS(688), + [anon_sym_STAR_STAR] = ACTIONS(688), + [anon_sym_STAR] = ACTIONS(688), + [anon_sym_SLASH] = ACTIONS(688), + [anon_sym_PERCENT] = ACTIONS(688), + [anon_sym_PLUS] = ACTIONS(688), + [anon_sym_DASH] = ACTIONS(688), + [anon_sym_LT_EQ] = ACTIONS(688), + [anon_sym_GT_EQ] = ACTIONS(688), + [anon_sym_EQ_EQ] = ACTIONS(688), + [anon_sym_BANG_EQ] = ACTIONS(688), + [anon_sym_TILDE] = ACTIONS(688), + [anon_sym_BANG_TILDE] = ACTIONS(688), + [anon_sym_AMP_AMP] = ACTIONS(688), + [anon_sym_PIPE_PIPE] = ACTIONS(688), + [anon_sym_BANG] = ACTIONS(688), + [anon_sym_PLUS_PLUS] = ACTIONS(688), + [anon_sym_DASH_DASH] = ACTIONS(688), + [anon_sym_EQ] = ACTIONS(688), + [anon_sym_PLUS_EQ] = ACTIONS(688), + [anon_sym_DASH_EQ] = ACTIONS(688), + [anon_sym_STAR_EQ] = ACTIONS(688), + [anon_sym_SLASH_EQ] = ACTIONS(688), + [anon_sym_PERCENT_EQ] = ACTIONS(688), + [anon_sym_CARET_EQ] = ACTIONS(688), + [anon_sym_DOLLAR] = ACTIONS(688), + [anon_sym_LBRACK] = ACTIONS(684), + [anon_sym_AT] = ACTIONS(688), + [anon_sym_COLON_COLON] = ACTIONS(650), + [aux_sym_number_token1] = ACTIONS(688), + [aux_sym_number_token2] = ACTIONS(688), + [anon_sym_DQUOTE] = ACTIONS(688), + [anon_sym_POUND] = ACTIONS(688), + [sym_concatenating_space] = ACTIONS(690), }, - [169] = { - [sym_identifier] = ACTIONS(644), - [anon_sym_COMMA] = ACTIONS(644), - [anon_sym_SEMI] = ACTIONS(644), - [anon_sym_LF] = ACTIONS(644), - [anon_sym_CR_LF] = ACTIONS(644), - [anon_sym_if] = ACTIONS(644), - [anon_sym_LPAREN] = ACTIONS(644), - [anon_sym_while] = ACTIONS(644), - [anon_sym_do] = ACTIONS(644), - [anon_sym_for] = ACTIONS(644), - [anon_sym_in] = ACTIONS(644), - [sym_break_statement] = ACTIONS(644), - [sym_continue_statement] = ACTIONS(644), - [anon_sym_delete] = ACTIONS(644), - [anon_sym_exit] = ACTIONS(644), - [anon_sym_return] = ACTIONS(644), - [anon_sym_switch] = ACTIONS(644), - [anon_sym_LBRACE] = ACTIONS(644), - [anon_sym_RBRACE] = ACTIONS(644), - [anon_sym_case] = ACTIONS(644), - [anon_sym_default] = ACTIONS(644), - [anon_sym_getline] = ACTIONS(644), - [anon_sym_LT] = ACTIONS(644), - [sym_next_statement] = ACTIONS(644), - [sym_nextfile_statement] = ACTIONS(644), - [anon_sym_print] = ACTIONS(644), - [anon_sym_printf] = ACTIONS(644), - [anon_sym_GT] = ACTIONS(644), - [anon_sym_GT_GT] = ACTIONS(644), - [anon_sym_PIPE] = ACTIONS(644), - [anon_sym_PIPE_AMP] = ACTIONS(644), - [anon_sym_QMARK] = ACTIONS(644), - [anon_sym_CARET] = ACTIONS(644), - [anon_sym_STAR_STAR] = ACTIONS(644), - [anon_sym_STAR] = ACTIONS(644), - [anon_sym_SLASH] = ACTIONS(644), - [anon_sym_PERCENT] = ACTIONS(644), - [anon_sym_PLUS] = ACTIONS(644), - [anon_sym_DASH] = ACTIONS(644), - [anon_sym_LT_EQ] = ACTIONS(644), - [anon_sym_GT_EQ] = ACTIONS(644), - [anon_sym_EQ_EQ] = ACTIONS(644), - [anon_sym_BANG_EQ] = ACTIONS(644), - [anon_sym_TILDE] = ACTIONS(644), - [anon_sym_BANG_TILDE] = ACTIONS(644), - [anon_sym_AMP_AMP] = ACTIONS(644), - [anon_sym_PIPE_PIPE] = ACTIONS(644), - [anon_sym_BANG] = ACTIONS(644), + [172] = { + [sym_identifier] = ACTIONS(654), + [anon_sym_COMMA] = ACTIONS(654), + [anon_sym_SEMI] = ACTIONS(654), + [anon_sym_LF] = ACTIONS(654), + [anon_sym_CR_LF] = ACTIONS(654), + [anon_sym_if] = ACTIONS(654), + [anon_sym_LPAREN] = ACTIONS(654), + [anon_sym_while] = ACTIONS(654), + [anon_sym_do] = ACTIONS(654), + [anon_sym_for] = ACTIONS(654), + [anon_sym_in] = ACTIONS(642), + [sym_break_statement] = ACTIONS(654), + [sym_continue_statement] = ACTIONS(654), + [anon_sym_delete] = ACTIONS(654), + [anon_sym_exit] = ACTIONS(654), + [anon_sym_return] = ACTIONS(654), + [anon_sym_switch] = ACTIONS(654), + [anon_sym_LBRACE] = ACTIONS(654), + [anon_sym_RBRACE] = ACTIONS(654), + [anon_sym_case] = ACTIONS(654), + [anon_sym_default] = ACTIONS(654), + [anon_sym_getline] = ACTIONS(654), + [anon_sym_LT] = ACTIONS(642), + [sym_next_statement] = ACTIONS(654), + [sym_nextfile_statement] = ACTIONS(654), + [anon_sym_print] = ACTIONS(654), + [anon_sym_LPAREN2] = ACTIONS(682), + [anon_sym_printf] = ACTIONS(654), + [anon_sym_GT] = ACTIONS(642), + [anon_sym_GT_GT] = ACTIONS(654), + [anon_sym_PIPE] = ACTIONS(642), + [anon_sym_PIPE_AMP] = ACTIONS(642), + [anon_sym_QMARK] = ACTIONS(642), + [anon_sym_CARET] = ACTIONS(642), + [anon_sym_STAR_STAR] = ACTIONS(642), + [anon_sym_STAR] = ACTIONS(642), + [anon_sym_SLASH] = ACTIONS(642), + [anon_sym_PERCENT] = ACTIONS(642), + [anon_sym_PLUS] = ACTIONS(642), + [anon_sym_DASH] = ACTIONS(642), + [anon_sym_LT_EQ] = ACTIONS(642), + [anon_sym_GT_EQ] = ACTIONS(642), + [anon_sym_EQ_EQ] = ACTIONS(642), + [anon_sym_BANG_EQ] = ACTIONS(642), + [anon_sym_TILDE] = ACTIONS(642), + [anon_sym_BANG_TILDE] = ACTIONS(642), + [anon_sym_AMP_AMP] = ACTIONS(642), + [anon_sym_PIPE_PIPE] = ACTIONS(642), + [anon_sym_BANG] = ACTIONS(654), [anon_sym_PLUS_PLUS] = ACTIONS(656), [anon_sym_DASH_DASH] = ACTIONS(656), - [anon_sym_EQ] = ACTIONS(644), - [anon_sym_PLUS_EQ] = ACTIONS(644), - [anon_sym_DASH_EQ] = ACTIONS(644), - [anon_sym_STAR_EQ] = ACTIONS(644), - [anon_sym_SLASH_EQ] = ACTIONS(644), - [anon_sym_PERCENT_EQ] = ACTIONS(644), - [anon_sym_CARET_EQ] = ACTIONS(644), - [anon_sym_DOLLAR] = ACTIONS(644), - [anon_sym_LBRACK] = ACTIONS(650), - [anon_sym_AT] = ACTIONS(644), - [aux_sym_number_token1] = ACTIONS(644), - [aux_sym_number_token2] = ACTIONS(644), - [anon_sym_DQUOTE] = ACTIONS(644), - [anon_sym_POUND] = ACTIONS(644), + [anon_sym_EQ] = ACTIONS(654), + [anon_sym_PLUS_EQ] = ACTIONS(654), + [anon_sym_DASH_EQ] = ACTIONS(654), + [anon_sym_STAR_EQ] = ACTIONS(654), + [anon_sym_SLASH_EQ] = ACTIONS(654), + [anon_sym_PERCENT_EQ] = ACTIONS(654), + [anon_sym_CARET_EQ] = ACTIONS(654), + [anon_sym_DOLLAR] = ACTIONS(654), + [anon_sym_LBRACK] = ACTIONS(684), + [anon_sym_AT] = ACTIONS(654), + [aux_sym_number_token1] = ACTIONS(654), + [aux_sym_number_token2] = ACTIONS(654), + [anon_sym_DQUOTE] = ACTIONS(654), + [anon_sym_POUND] = ACTIONS(654), [sym_concatenating_space] = ACTIONS(658), - [sym__if_else_separator] = ACTIONS(658), }, - [170] = { - [sym_identifier] = ACTIONS(644), - [anon_sym_COMMA] = ACTIONS(644), - [anon_sym_SEMI] = ACTIONS(644), - [anon_sym_LF] = ACTIONS(644), - [anon_sym_CR_LF] = ACTIONS(644), - [anon_sym_if] = ACTIONS(644), - [anon_sym_LPAREN] = ACTIONS(644), - [anon_sym_while] = ACTIONS(644), - [anon_sym_do] = ACTIONS(644), - [anon_sym_for] = ACTIONS(644), - [anon_sym_in] = ACTIONS(644), - [sym_break_statement] = ACTIONS(644), - [sym_continue_statement] = ACTIONS(644), - [anon_sym_delete] = ACTIONS(644), - [anon_sym_exit] = ACTIONS(644), - [anon_sym_return] = ACTIONS(644), - [anon_sym_switch] = ACTIONS(644), - [anon_sym_LBRACE] = ACTIONS(644), - [anon_sym_RBRACE] = ACTIONS(644), - [anon_sym_getline] = ACTIONS(644), - [anon_sym_LT] = ACTIONS(644), - [sym_next_statement] = ACTIONS(644), - [sym_nextfile_statement] = ACTIONS(644), - [anon_sym_print] = ACTIONS(644), - [anon_sym_LPAREN2] = ACTIONS(716), - [anon_sym_printf] = ACTIONS(644), - [anon_sym_GT] = ACTIONS(644), - [anon_sym_GT_GT] = ACTIONS(644), - [anon_sym_PIPE] = ACTIONS(644), - [anon_sym_PIPE_AMP] = ACTIONS(644), - [anon_sym_QMARK] = ACTIONS(644), - [anon_sym_CARET] = ACTIONS(644), - [anon_sym_STAR_STAR] = ACTIONS(644), - [anon_sym_STAR] = ACTIONS(644), - [anon_sym_SLASH] = ACTIONS(644), - [anon_sym_PERCENT] = ACTIONS(644), - [anon_sym_PLUS] = ACTIONS(644), - [anon_sym_DASH] = ACTIONS(644), - [anon_sym_LT_EQ] = ACTIONS(644), - [anon_sym_GT_EQ] = ACTIONS(644), - [anon_sym_EQ_EQ] = ACTIONS(644), - [anon_sym_BANG_EQ] = ACTIONS(644), - [anon_sym_TILDE] = ACTIONS(644), - [anon_sym_BANG_TILDE] = ACTIONS(644), - [anon_sym_AMP_AMP] = ACTIONS(644), - [anon_sym_PIPE_PIPE] = ACTIONS(644), - [anon_sym_BANG] = ACTIONS(644), - [anon_sym_PLUS_PLUS] = ACTIONS(726), - [anon_sym_DASH_DASH] = ACTIONS(726), - [anon_sym_EQ] = ACTIONS(728), - [anon_sym_PLUS_EQ] = ACTIONS(728), - [anon_sym_DASH_EQ] = ACTIONS(728), - [anon_sym_STAR_EQ] = ACTIONS(728), - [anon_sym_SLASH_EQ] = ACTIONS(728), - [anon_sym_PERCENT_EQ] = ACTIONS(728), - [anon_sym_CARET_EQ] = ACTIONS(728), - [anon_sym_DOLLAR] = ACTIONS(644), - [anon_sym_LBRACK] = ACTIONS(650), - [anon_sym_AT] = ACTIONS(644), - [anon_sym_COLON_COLON] = ACTIONS(652), - [aux_sym_number_token1] = ACTIONS(644), - [aux_sym_number_token2] = ACTIONS(644), - [anon_sym_DQUOTE] = ACTIONS(644), - [anon_sym_POUND] = ACTIONS(644), - [sym_concatenating_space] = ACTIONS(730), - [sym__if_else_separator] = ACTIONS(658), + [173] = { + [sym_identifier] = ACTIONS(692), + [anon_sym_COMMA] = ACTIONS(692), + [anon_sym_SEMI] = ACTIONS(692), + [anon_sym_LF] = ACTIONS(692), + [anon_sym_CR_LF] = ACTIONS(692), + [anon_sym_if] = ACTIONS(692), + [anon_sym_LPAREN] = ACTIONS(692), + [anon_sym_while] = ACTIONS(692), + [anon_sym_do] = ACTIONS(692), + [anon_sym_for] = ACTIONS(692), + [anon_sym_in] = ACTIONS(692), + [sym_break_statement] = ACTIONS(692), + [sym_continue_statement] = ACTIONS(692), + [anon_sym_delete] = ACTIONS(692), + [anon_sym_exit] = ACTIONS(692), + [anon_sym_return] = ACTIONS(692), + [anon_sym_switch] = ACTIONS(692), + [anon_sym_LBRACE] = ACTIONS(692), + [anon_sym_RBRACE] = ACTIONS(692), + [anon_sym_case] = ACTIONS(692), + [anon_sym_default] = ACTIONS(692), + [anon_sym_getline] = ACTIONS(692), + [anon_sym_LT] = ACTIONS(692), + [sym_next_statement] = ACTIONS(692), + [sym_nextfile_statement] = ACTIONS(692), + [anon_sym_print] = ACTIONS(692), + [anon_sym_printf] = ACTIONS(692), + [anon_sym_GT] = ACTIONS(692), + [anon_sym_GT_GT] = ACTIONS(692), + [anon_sym_PIPE] = ACTIONS(692), + [anon_sym_PIPE_AMP] = ACTIONS(692), + [anon_sym_QMARK] = ACTIONS(692), + [anon_sym_CARET] = ACTIONS(692), + [anon_sym_STAR_STAR] = ACTIONS(692), + [anon_sym_STAR] = ACTIONS(692), + [anon_sym_SLASH] = ACTIONS(692), + [anon_sym_PERCENT] = ACTIONS(692), + [anon_sym_PLUS] = ACTIONS(692), + [anon_sym_DASH] = ACTIONS(692), + [anon_sym_LT_EQ] = ACTIONS(692), + [anon_sym_GT_EQ] = ACTIONS(692), + [anon_sym_EQ_EQ] = ACTIONS(692), + [anon_sym_BANG_EQ] = ACTIONS(692), + [anon_sym_TILDE] = ACTIONS(692), + [anon_sym_BANG_TILDE] = ACTIONS(692), + [anon_sym_AMP_AMP] = ACTIONS(692), + [anon_sym_PIPE_PIPE] = ACTIONS(692), + [anon_sym_BANG] = ACTIONS(692), + [anon_sym_PLUS_PLUS] = ACTIONS(692), + [anon_sym_DASH_DASH] = ACTIONS(692), + [anon_sym_EQ] = ACTIONS(692), + [anon_sym_PLUS_EQ] = ACTIONS(692), + [anon_sym_DASH_EQ] = ACTIONS(692), + [anon_sym_STAR_EQ] = ACTIONS(692), + [anon_sym_SLASH_EQ] = ACTIONS(692), + [anon_sym_PERCENT_EQ] = ACTIONS(692), + [anon_sym_CARET_EQ] = ACTIONS(692), + [anon_sym_DOLLAR] = ACTIONS(692), + [anon_sym_LBRACK] = ACTIONS(684), + [anon_sym_AT] = ACTIONS(692), + [anon_sym_COLON_COLON] = ACTIONS(650), + [aux_sym_number_token1] = ACTIONS(692), + [aux_sym_number_token2] = ACTIONS(692), + [anon_sym_DQUOTE] = ACTIONS(692), + [anon_sym_POUND] = ACTIONS(692), + [sym_concatenating_space] = ACTIONS(694), }, - [171] = { + [174] = { [sym_identifier] = ACTIONS(678), [anon_sym_COMMA] = ACTIONS(678), [anon_sym_SEMI] = ACTIONS(678), @@ -20684,6 +21190,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_next_statement] = ACTIONS(678), [sym_nextfile_statement] = ACTIONS(678), [anon_sym_print] = ACTIONS(678), + [anon_sym_LPAREN2] = ACTIONS(680), [anon_sym_printf] = ACTIONS(678), [anon_sym_GT] = ACTIONS(678), [anon_sym_GT_GT] = ACTIONS(678), @@ -20716,84 +21223,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT_EQ] = ACTIONS(678), [anon_sym_CARET_EQ] = ACTIONS(678), [anon_sym_DOLLAR] = ACTIONS(678), - [anon_sym_LBRACK] = ACTIONS(650), + [anon_sym_LBRACK] = ACTIONS(678), [anon_sym_AT] = ACTIONS(678), [aux_sym_number_token1] = ACTIONS(678), [aux_sym_number_token2] = ACTIONS(678), [anon_sym_DQUOTE] = ACTIONS(678), [anon_sym_POUND] = ACTIONS(678), [sym_concatenating_space] = ACTIONS(680), - [sym__if_else_separator] = ACTIONS(680), - }, - [172] = { - [sym_identifier] = ACTIONS(642), - [anon_sym_COMMA] = ACTIONS(642), - [anon_sym_SEMI] = ACTIONS(642), - [anon_sym_LF] = ACTIONS(642), - [anon_sym_CR_LF] = ACTIONS(642), - [anon_sym_if] = ACTIONS(642), - [anon_sym_LPAREN] = ACTIONS(642), - [anon_sym_while] = ACTIONS(642), - [anon_sym_do] = ACTIONS(642), - [anon_sym_for] = ACTIONS(642), - [anon_sym_in] = ACTIONS(644), - [sym_break_statement] = ACTIONS(642), - [sym_continue_statement] = ACTIONS(642), - [anon_sym_delete] = ACTIONS(642), - [anon_sym_exit] = ACTIONS(642), - [anon_sym_return] = ACTIONS(642), - [anon_sym_switch] = ACTIONS(642), - [anon_sym_LBRACE] = ACTIONS(642), - [anon_sym_RBRACE] = ACTIONS(642), - [anon_sym_getline] = ACTIONS(642), - [anon_sym_LT] = ACTIONS(644), - [sym_next_statement] = ACTIONS(642), - [sym_nextfile_statement] = ACTIONS(642), - [anon_sym_print] = ACTIONS(642), - [anon_sym_LPAREN2] = ACTIONS(716), - [anon_sym_printf] = ACTIONS(642), - [anon_sym_GT] = ACTIONS(644), - [anon_sym_GT_GT] = ACTIONS(642), - [anon_sym_PIPE] = ACTIONS(644), - [anon_sym_PIPE_AMP] = ACTIONS(644), - [anon_sym_QMARK] = ACTIONS(644), - [anon_sym_CARET] = ACTIONS(644), - [anon_sym_STAR_STAR] = ACTIONS(644), - [anon_sym_STAR] = ACTIONS(644), - [anon_sym_SLASH] = ACTIONS(644), - [anon_sym_PERCENT] = ACTIONS(644), - [anon_sym_PLUS] = ACTIONS(644), - [anon_sym_DASH] = ACTIONS(644), - [anon_sym_LT_EQ] = ACTIONS(644), - [anon_sym_GT_EQ] = ACTIONS(644), - [anon_sym_EQ_EQ] = ACTIONS(644), - [anon_sym_BANG_EQ] = ACTIONS(644), - [anon_sym_TILDE] = ACTIONS(644), - [anon_sym_BANG_TILDE] = ACTIONS(644), - [anon_sym_AMP_AMP] = ACTIONS(644), - [anon_sym_PIPE_PIPE] = ACTIONS(644), - [anon_sym_BANG] = ACTIONS(642), - [anon_sym_PLUS_PLUS] = ACTIONS(648), - [anon_sym_DASH_DASH] = ACTIONS(648), - [anon_sym_EQ] = ACTIONS(732), - [anon_sym_PLUS_EQ] = ACTIONS(732), - [anon_sym_DASH_EQ] = ACTIONS(732), - [anon_sym_STAR_EQ] = ACTIONS(732), - [anon_sym_SLASH_EQ] = ACTIONS(732), - [anon_sym_PERCENT_EQ] = ACTIONS(732), - [anon_sym_CARET_EQ] = ACTIONS(732), - [anon_sym_DOLLAR] = ACTIONS(642), - [anon_sym_LBRACK] = ACTIONS(650), - [anon_sym_AT] = ACTIONS(642), - [anon_sym_COLON_COLON] = ACTIONS(652), - [aux_sym_number_token1] = ACTIONS(642), - [aux_sym_number_token2] = ACTIONS(642), - [anon_sym_DQUOTE] = ACTIONS(642), - [anon_sym_POUND] = ACTIONS(642), - [sym_concatenating_space] = ACTIONS(654), - [sym__if_else_separator] = ACTIONS(654), }, - [173] = { + [175] = { [sym_identifier] = ACTIONS(642), [anon_sym_COMMA] = ACTIONS(642), [anon_sym_SEMI] = ACTIONS(642), @@ -20804,7 +21242,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(642), [anon_sym_do] = ACTIONS(642), [anon_sym_for] = ACTIONS(642), - [anon_sym_in] = ACTIONS(644), + [anon_sym_in] = ACTIONS(642), [sym_break_statement] = ACTIONS(642), [sym_continue_statement] = ACTIONS(642), [anon_sym_delete] = ACTIONS(642), @@ -20813,55 +21251,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_switch] = ACTIONS(642), [anon_sym_LBRACE] = ACTIONS(642), [anon_sym_RBRACE] = ACTIONS(642), - [anon_sym_case] = ACTIONS(642), - [anon_sym_default] = ACTIONS(642), [anon_sym_getline] = ACTIONS(642), - [anon_sym_LT] = ACTIONS(644), + [anon_sym_LT] = ACTIONS(642), [sym_next_statement] = ACTIONS(642), [sym_nextfile_statement] = ACTIONS(642), [anon_sym_print] = ACTIONS(642), - [anon_sym_LPAREN2] = ACTIONS(686), + [anon_sym_LPAREN2] = ACTIONS(712), [anon_sym_printf] = ACTIONS(642), - [anon_sym_GT] = ACTIONS(644), + [anon_sym_GT] = ACTIONS(642), [anon_sym_GT_GT] = ACTIONS(642), - [anon_sym_PIPE] = ACTIONS(644), - [anon_sym_PIPE_AMP] = ACTIONS(644), - [anon_sym_QMARK] = ACTIONS(644), - [anon_sym_CARET] = ACTIONS(644), - [anon_sym_STAR_STAR] = ACTIONS(644), - [anon_sym_STAR] = ACTIONS(644), - [anon_sym_SLASH] = ACTIONS(644), - [anon_sym_PERCENT] = ACTIONS(644), - [anon_sym_PLUS] = ACTIONS(644), - [anon_sym_DASH] = ACTIONS(644), - [anon_sym_LT_EQ] = ACTIONS(644), - [anon_sym_GT_EQ] = ACTIONS(644), - [anon_sym_EQ_EQ] = ACTIONS(644), - [anon_sym_BANG_EQ] = ACTIONS(644), - [anon_sym_TILDE] = ACTIONS(644), - [anon_sym_BANG_TILDE] = ACTIONS(644), - [anon_sym_AMP_AMP] = ACTIONS(644), - [anon_sym_PIPE_PIPE] = ACTIONS(644), + [anon_sym_PIPE] = ACTIONS(642), + [anon_sym_PIPE_AMP] = ACTIONS(642), + [anon_sym_QMARK] = ACTIONS(642), + [anon_sym_CARET] = ACTIONS(642), + [anon_sym_STAR_STAR] = ACTIONS(642), + [anon_sym_STAR] = ACTIONS(642), + [anon_sym_SLASH] = ACTIONS(642), + [anon_sym_PERCENT] = ACTIONS(642), + [anon_sym_PLUS] = ACTIONS(642), + [anon_sym_DASH] = ACTIONS(642), + [anon_sym_LT_EQ] = ACTIONS(642), + [anon_sym_GT_EQ] = ACTIONS(642), + [anon_sym_EQ_EQ] = ACTIONS(642), + [anon_sym_BANG_EQ] = ACTIONS(642), + [anon_sym_TILDE] = ACTIONS(642), + [anon_sym_BANG_TILDE] = ACTIONS(642), + [anon_sym_AMP_AMP] = ACTIONS(642), + [anon_sym_PIPE_PIPE] = ACTIONS(642), [anon_sym_BANG] = ACTIONS(642), - [anon_sym_PLUS_PLUS] = ACTIONS(648), - [anon_sym_DASH_DASH] = ACTIONS(648), - [anon_sym_EQ] = ACTIONS(642), - [anon_sym_PLUS_EQ] = ACTIONS(642), - [anon_sym_DASH_EQ] = ACTIONS(642), - [anon_sym_STAR_EQ] = ACTIONS(642), - [anon_sym_SLASH_EQ] = ACTIONS(642), - [anon_sym_PERCENT_EQ] = ACTIONS(642), - [anon_sym_CARET_EQ] = ACTIONS(642), + [anon_sym_PLUS_PLUS] = ACTIONS(714), + [anon_sym_DASH_DASH] = ACTIONS(714), + [anon_sym_EQ] = ACTIONS(716), + [anon_sym_PLUS_EQ] = ACTIONS(716), + [anon_sym_DASH_EQ] = ACTIONS(716), + [anon_sym_STAR_EQ] = ACTIONS(716), + [anon_sym_SLASH_EQ] = ACTIONS(716), + [anon_sym_PERCENT_EQ] = ACTIONS(716), + [anon_sym_CARET_EQ] = ACTIONS(716), [anon_sym_DOLLAR] = ACTIONS(642), - [anon_sym_LBRACK] = ACTIONS(688), + [anon_sym_LBRACK] = ACTIONS(648), [anon_sym_AT] = ACTIONS(642), + [anon_sym_COLON_COLON] = ACTIONS(650), [aux_sym_number_token1] = ACTIONS(642), [aux_sym_number_token2] = ACTIONS(642), [anon_sym_DQUOTE] = ACTIONS(642), [anon_sym_POUND] = ACTIONS(642), - [sym_concatenating_space] = ACTIONS(654), + [sym_concatenating_space] = ACTIONS(718), + [sym__if_else_separator] = ACTIONS(652), }, - [174] = { + [176] = { [sym_identifier] = ACTIONS(642), [anon_sym_COMMA] = ACTIONS(642), [anon_sym_SEMI] = ACTIONS(642), @@ -20872,7 +21310,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(642), [anon_sym_do] = ACTIONS(642), [anon_sym_for] = ACTIONS(642), - [anon_sym_in] = ACTIONS(644), + [anon_sym_in] = ACTIONS(642), [sym_break_statement] = ACTIONS(642), [sym_continue_statement] = ACTIONS(642), [anon_sym_delete] = ACTIONS(642), @@ -20884,34 +21322,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(642), [anon_sym_default] = ACTIONS(642), [anon_sym_getline] = ACTIONS(642), - [anon_sym_LT] = ACTIONS(644), + [anon_sym_LT] = ACTIONS(642), [sym_next_statement] = ACTIONS(642), [sym_nextfile_statement] = ACTIONS(642), [anon_sym_print] = ACTIONS(642), [anon_sym_printf] = ACTIONS(642), - [anon_sym_GT] = ACTIONS(644), + [anon_sym_GT] = ACTIONS(642), [anon_sym_GT_GT] = ACTIONS(642), - [anon_sym_PIPE] = ACTIONS(644), - [anon_sym_PIPE_AMP] = ACTIONS(644), - [anon_sym_QMARK] = ACTIONS(644), - [anon_sym_CARET] = ACTIONS(644), - [anon_sym_STAR_STAR] = ACTIONS(644), - [anon_sym_STAR] = ACTIONS(644), - [anon_sym_SLASH] = ACTIONS(644), - [anon_sym_PERCENT] = ACTIONS(644), - [anon_sym_PLUS] = ACTIONS(644), - [anon_sym_DASH] = ACTIONS(644), - [anon_sym_LT_EQ] = ACTIONS(644), - [anon_sym_GT_EQ] = ACTIONS(644), - [anon_sym_EQ_EQ] = ACTIONS(644), - [anon_sym_BANG_EQ] = ACTIONS(644), - [anon_sym_TILDE] = ACTIONS(644), - [anon_sym_BANG_TILDE] = ACTIONS(644), - [anon_sym_AMP_AMP] = ACTIONS(644), - [anon_sym_PIPE_PIPE] = ACTIONS(644), + [anon_sym_PIPE] = ACTIONS(642), + [anon_sym_PIPE_AMP] = ACTIONS(642), + [anon_sym_QMARK] = ACTIONS(642), + [anon_sym_CARET] = ACTIONS(642), + [anon_sym_STAR_STAR] = ACTIONS(642), + [anon_sym_STAR] = ACTIONS(642), + [anon_sym_SLASH] = ACTIONS(642), + [anon_sym_PERCENT] = ACTIONS(642), + [anon_sym_PLUS] = ACTIONS(642), + [anon_sym_DASH] = ACTIONS(642), + [anon_sym_LT_EQ] = ACTIONS(642), + [anon_sym_GT_EQ] = ACTIONS(642), + [anon_sym_EQ_EQ] = ACTIONS(642), + [anon_sym_BANG_EQ] = ACTIONS(642), + [anon_sym_TILDE] = ACTIONS(642), + [anon_sym_BANG_TILDE] = ACTIONS(642), + [anon_sym_AMP_AMP] = ACTIONS(642), + [anon_sym_PIPE_PIPE] = ACTIONS(642), [anon_sym_BANG] = ACTIONS(642), - [anon_sym_PLUS_PLUS] = ACTIONS(648), - [anon_sym_DASH_DASH] = ACTIONS(648), + [anon_sym_PLUS_PLUS] = ACTIONS(646), + [anon_sym_DASH_DASH] = ACTIONS(646), [anon_sym_EQ] = ACTIONS(642), [anon_sym_PLUS_EQ] = ACTIONS(642), [anon_sym_DASH_EQ] = ACTIONS(642), @@ -20920,286 +21358,150 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT_EQ] = ACTIONS(642), [anon_sym_CARET_EQ] = ACTIONS(642), [anon_sym_DOLLAR] = ACTIONS(642), - [anon_sym_LBRACK] = ACTIONS(650), + [anon_sym_LBRACK] = ACTIONS(648), [anon_sym_AT] = ACTIONS(642), [aux_sym_number_token1] = ACTIONS(642), [aux_sym_number_token2] = ACTIONS(642), [anon_sym_DQUOTE] = ACTIONS(642), [anon_sym_POUND] = ACTIONS(642), - [sym_concatenating_space] = ACTIONS(654), - [sym__if_else_separator] = ACTIONS(654), - }, - [175] = { - [sym_identifier] = ACTIONS(690), - [anon_sym_COMMA] = ACTIONS(690), - [anon_sym_SEMI] = ACTIONS(690), - [anon_sym_LF] = ACTIONS(690), - [anon_sym_CR_LF] = ACTIONS(690), - [anon_sym_if] = ACTIONS(690), - [anon_sym_LPAREN] = ACTIONS(690), - [anon_sym_while] = ACTIONS(690), - [anon_sym_do] = ACTIONS(690), - [anon_sym_for] = ACTIONS(690), - [anon_sym_in] = ACTIONS(690), - [sym_break_statement] = ACTIONS(690), - [sym_continue_statement] = ACTIONS(690), - [anon_sym_delete] = ACTIONS(690), - [anon_sym_exit] = ACTIONS(690), - [anon_sym_return] = ACTIONS(690), - [anon_sym_switch] = ACTIONS(690), - [anon_sym_LBRACE] = ACTIONS(690), - [anon_sym_RBRACE] = ACTIONS(690), - [anon_sym_case] = ACTIONS(690), - [anon_sym_default] = ACTIONS(690), - [anon_sym_getline] = ACTIONS(690), - [anon_sym_LT] = ACTIONS(690), - [sym_next_statement] = ACTIONS(690), - [sym_nextfile_statement] = ACTIONS(690), - [anon_sym_print] = ACTIONS(690), - [anon_sym_LPAREN2] = ACTIONS(692), - [anon_sym_printf] = ACTIONS(690), - [anon_sym_GT] = ACTIONS(690), - [anon_sym_GT_GT] = ACTIONS(690), - [anon_sym_PIPE] = ACTIONS(690), - [anon_sym_PIPE_AMP] = ACTIONS(690), - [anon_sym_QMARK] = ACTIONS(690), - [anon_sym_CARET] = ACTIONS(690), - [anon_sym_STAR_STAR] = ACTIONS(690), - [anon_sym_STAR] = ACTIONS(690), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_PERCENT] = ACTIONS(690), - [anon_sym_PLUS] = ACTIONS(690), - [anon_sym_DASH] = ACTIONS(690), - [anon_sym_LT_EQ] = ACTIONS(690), - [anon_sym_GT_EQ] = ACTIONS(690), - [anon_sym_EQ_EQ] = ACTIONS(690), - [anon_sym_BANG_EQ] = ACTIONS(690), - [anon_sym_TILDE] = ACTIONS(690), - [anon_sym_BANG_TILDE] = ACTIONS(690), - [anon_sym_AMP_AMP] = ACTIONS(690), - [anon_sym_PIPE_PIPE] = ACTIONS(690), - [anon_sym_BANG] = ACTIONS(690), - [anon_sym_PLUS_PLUS] = ACTIONS(690), - [anon_sym_DASH_DASH] = ACTIONS(690), - [anon_sym_EQ] = ACTIONS(690), - [anon_sym_PLUS_EQ] = ACTIONS(690), - [anon_sym_DASH_EQ] = ACTIONS(690), - [anon_sym_STAR_EQ] = ACTIONS(690), - [anon_sym_SLASH_EQ] = ACTIONS(690), - [anon_sym_PERCENT_EQ] = ACTIONS(690), - [anon_sym_CARET_EQ] = ACTIONS(690), - [anon_sym_DOLLAR] = ACTIONS(690), - [anon_sym_LBRACK] = ACTIONS(690), - [anon_sym_AT] = ACTIONS(690), - [aux_sym_number_token1] = ACTIONS(690), - [aux_sym_number_token2] = ACTIONS(690), - [anon_sym_DQUOTE] = ACTIONS(690), - [anon_sym_POUND] = ACTIONS(690), - [sym_concatenating_space] = ACTIONS(692), - }, - [176] = { - [sym_array_ref] = STATE(171), - [sym_namespace] = STATE(2066), - [sym_ns_qualified_name] = STATE(224), - [sym_identifier] = ACTIONS(734), - [anon_sym_COMMA] = ACTIONS(712), - [anon_sym_SEMI] = ACTIONS(712), - [anon_sym_LF] = ACTIONS(712), - [anon_sym_CR_LF] = ACTIONS(712), - [anon_sym_if] = ACTIONS(712), - [anon_sym_LPAREN] = ACTIONS(712), - [anon_sym_while] = ACTIONS(712), - [anon_sym_do] = ACTIONS(712), - [anon_sym_for] = ACTIONS(712), - [anon_sym_in] = ACTIONS(712), - [sym_break_statement] = ACTIONS(712), - [sym_continue_statement] = ACTIONS(712), - [anon_sym_delete] = ACTIONS(712), - [anon_sym_exit] = ACTIONS(712), - [anon_sym_return] = ACTIONS(712), - [anon_sym_switch] = ACTIONS(712), - [anon_sym_LBRACE] = ACTIONS(712), - [anon_sym_RBRACE] = ACTIONS(712), - [anon_sym_getline] = ACTIONS(712), - [anon_sym_LT] = ACTIONS(736), - [sym_next_statement] = ACTIONS(712), - [sym_nextfile_statement] = ACTIONS(712), - [anon_sym_print] = ACTIONS(712), - [anon_sym_printf] = ACTIONS(712), - [anon_sym_GT] = ACTIONS(712), - [anon_sym_GT_GT] = ACTIONS(712), - [anon_sym_PIPE] = ACTIONS(712), - [anon_sym_PIPE_AMP] = ACTIONS(712), - [anon_sym_QMARK] = ACTIONS(712), - [anon_sym_CARET] = ACTIONS(712), - [anon_sym_STAR_STAR] = ACTIONS(712), - [anon_sym_STAR] = ACTIONS(712), - [anon_sym_SLASH] = ACTIONS(712), - [anon_sym_PERCENT] = ACTIONS(712), - [anon_sym_PLUS] = ACTIONS(712), - [anon_sym_DASH] = ACTIONS(712), - [anon_sym_LT_EQ] = ACTIONS(712), - [anon_sym_GT_EQ] = ACTIONS(712), - [anon_sym_EQ_EQ] = ACTIONS(712), - [anon_sym_BANG_EQ] = ACTIONS(712), - [anon_sym_TILDE] = ACTIONS(712), - [anon_sym_BANG_TILDE] = ACTIONS(712), - [anon_sym_AMP_AMP] = ACTIONS(712), - [anon_sym_PIPE_PIPE] = ACTIONS(712), - [anon_sym_BANG] = ACTIONS(712), - [anon_sym_PLUS_PLUS] = ACTIONS(712), - [anon_sym_DASH_DASH] = ACTIONS(712), - [anon_sym_EQ] = ACTIONS(712), - [anon_sym_PLUS_EQ] = ACTIONS(712), - [anon_sym_DASH_EQ] = ACTIONS(712), - [anon_sym_STAR_EQ] = ACTIONS(712), - [anon_sym_SLASH_EQ] = ACTIONS(712), - [anon_sym_PERCENT_EQ] = ACTIONS(712), - [anon_sym_CARET_EQ] = ACTIONS(712), - [anon_sym_DOLLAR] = ACTIONS(712), - [anon_sym_AT] = ACTIONS(712), - [aux_sym_number_token1] = ACTIONS(712), - [aux_sym_number_token2] = ACTIONS(712), - [anon_sym_DQUOTE] = ACTIONS(712), - [anon_sym_POUND] = ACTIONS(712), - [sym_concatenating_space] = ACTIONS(714), - [sym__if_else_separator] = ACTIONS(714), + [sym_concatenating_space] = ACTIONS(652), + [sym__if_else_separator] = ACTIONS(652), }, [177] = { - [sym_identifier] = ACTIONS(682), - [anon_sym_COMMA] = ACTIONS(682), - [anon_sym_SEMI] = ACTIONS(682), - [anon_sym_LF] = ACTIONS(682), - [anon_sym_CR_LF] = ACTIONS(682), - [anon_sym_if] = ACTIONS(682), - [anon_sym_LPAREN] = ACTIONS(682), - [anon_sym_while] = ACTIONS(682), - [anon_sym_do] = ACTIONS(682), - [anon_sym_for] = ACTIONS(682), - [anon_sym_in] = ACTIONS(682), - [sym_break_statement] = ACTIONS(682), - [sym_continue_statement] = ACTIONS(682), - [anon_sym_delete] = ACTIONS(682), - [anon_sym_exit] = ACTIONS(682), - [anon_sym_return] = ACTIONS(682), - [anon_sym_switch] = ACTIONS(682), - [anon_sym_LBRACE] = ACTIONS(682), - [anon_sym_RBRACE] = ACTIONS(682), - [anon_sym_case] = ACTIONS(682), - [anon_sym_default] = ACTIONS(682), - [anon_sym_getline] = ACTIONS(682), - [anon_sym_LT] = ACTIONS(682), - [sym_next_statement] = ACTIONS(682), - [sym_nextfile_statement] = ACTIONS(682), - [anon_sym_print] = ACTIONS(682), - [anon_sym_printf] = ACTIONS(682), - [anon_sym_GT] = ACTIONS(682), - [anon_sym_GT_GT] = ACTIONS(682), - [anon_sym_PIPE] = ACTIONS(682), - [anon_sym_PIPE_AMP] = ACTIONS(682), - [anon_sym_QMARK] = ACTIONS(682), - [anon_sym_CARET] = ACTIONS(682), - [anon_sym_STAR_STAR] = ACTIONS(682), - [anon_sym_STAR] = ACTIONS(682), - [anon_sym_SLASH] = ACTIONS(682), - [anon_sym_PERCENT] = ACTIONS(682), - [anon_sym_PLUS] = ACTIONS(682), - [anon_sym_DASH] = ACTIONS(682), - [anon_sym_LT_EQ] = ACTIONS(682), - [anon_sym_GT_EQ] = ACTIONS(682), - [anon_sym_EQ_EQ] = ACTIONS(682), - [anon_sym_BANG_EQ] = ACTIONS(682), - [anon_sym_TILDE] = ACTIONS(682), - [anon_sym_BANG_TILDE] = ACTIONS(682), - [anon_sym_AMP_AMP] = ACTIONS(682), - [anon_sym_PIPE_PIPE] = ACTIONS(682), - [anon_sym_BANG] = ACTIONS(682), - [anon_sym_PLUS_PLUS] = ACTIONS(682), - [anon_sym_DASH_DASH] = ACTIONS(682), - [anon_sym_EQ] = ACTIONS(682), - [anon_sym_PLUS_EQ] = ACTIONS(682), - [anon_sym_DASH_EQ] = ACTIONS(682), - [anon_sym_STAR_EQ] = ACTIONS(682), - [anon_sym_SLASH_EQ] = ACTIONS(682), - [anon_sym_PERCENT_EQ] = ACTIONS(682), - [anon_sym_CARET_EQ] = ACTIONS(682), - [anon_sym_DOLLAR] = ACTIONS(682), - [anon_sym_LBRACK] = ACTIONS(650), - [anon_sym_AT] = ACTIONS(682), - [aux_sym_number_token1] = ACTIONS(682), - [aux_sym_number_token2] = ACTIONS(682), - [anon_sym_DQUOTE] = ACTIONS(682), - [anon_sym_POUND] = ACTIONS(682), - [sym_concatenating_space] = ACTIONS(684), - [sym__if_else_separator] = ACTIONS(684), + [sym_identifier] = ACTIONS(720), + [anon_sym_COMMA] = ACTIONS(720), + [anon_sym_SEMI] = ACTIONS(720), + [anon_sym_LF] = ACTIONS(720), + [anon_sym_CR_LF] = ACTIONS(720), + [anon_sym_if] = ACTIONS(720), + [anon_sym_LPAREN] = ACTIONS(720), + [anon_sym_while] = ACTIONS(720), + [anon_sym_do] = ACTIONS(720), + [anon_sym_for] = ACTIONS(720), + [anon_sym_in] = ACTIONS(720), + [sym_break_statement] = ACTIONS(720), + [sym_continue_statement] = ACTIONS(720), + [anon_sym_delete] = ACTIONS(720), + [anon_sym_exit] = ACTIONS(720), + [anon_sym_return] = ACTIONS(720), + [anon_sym_switch] = ACTIONS(720), + [anon_sym_LBRACE] = ACTIONS(720), + [anon_sym_RBRACE] = ACTIONS(720), + [anon_sym_case] = ACTIONS(720), + [anon_sym_default] = ACTIONS(720), + [anon_sym_getline] = ACTIONS(720), + [anon_sym_LT] = ACTIONS(720), + [sym_next_statement] = ACTIONS(720), + [sym_nextfile_statement] = ACTIONS(720), + [anon_sym_print] = ACTIONS(720), + [anon_sym_printf] = ACTIONS(720), + [anon_sym_GT] = ACTIONS(720), + [anon_sym_GT_GT] = ACTIONS(720), + [anon_sym_PIPE] = ACTIONS(720), + [anon_sym_PIPE_AMP] = ACTIONS(720), + [anon_sym_QMARK] = ACTIONS(720), + [anon_sym_CARET] = ACTIONS(720), + [anon_sym_STAR_STAR] = ACTIONS(720), + [anon_sym_STAR] = ACTIONS(720), + [anon_sym_SLASH] = ACTIONS(720), + [anon_sym_PERCENT] = ACTIONS(720), + [anon_sym_PLUS] = ACTIONS(720), + [anon_sym_DASH] = ACTIONS(720), + [anon_sym_LT_EQ] = ACTIONS(720), + [anon_sym_GT_EQ] = ACTIONS(720), + [anon_sym_EQ_EQ] = ACTIONS(720), + [anon_sym_BANG_EQ] = ACTIONS(720), + [anon_sym_TILDE] = ACTIONS(720), + [anon_sym_BANG_TILDE] = ACTIONS(720), + [anon_sym_AMP_AMP] = ACTIONS(720), + [anon_sym_PIPE_PIPE] = ACTIONS(720), + [anon_sym_BANG] = ACTIONS(720), + [anon_sym_PLUS_PLUS] = ACTIONS(720), + [anon_sym_DASH_DASH] = ACTIONS(720), + [anon_sym_EQ] = ACTIONS(720), + [anon_sym_PLUS_EQ] = ACTIONS(720), + [anon_sym_DASH_EQ] = ACTIONS(720), + [anon_sym_STAR_EQ] = ACTIONS(720), + [anon_sym_SLASH_EQ] = ACTIONS(720), + [anon_sym_PERCENT_EQ] = ACTIONS(720), + [anon_sym_CARET_EQ] = ACTIONS(720), + [anon_sym_DOLLAR] = ACTIONS(720), + [anon_sym_LBRACK] = ACTIONS(720), + [anon_sym_AT] = ACTIONS(720), + [aux_sym_number_token1] = ACTIONS(720), + [aux_sym_number_token2] = ACTIONS(720), + [anon_sym_DQUOTE] = ACTIONS(720), + [anon_sym_POUND] = ACTIONS(720), + [sym_concatenating_space] = ACTIONS(722), + [sym__if_else_separator] = ACTIONS(722), }, [178] = { - [sym_identifier] = ACTIONS(678), - [anon_sym_COMMA] = ACTIONS(678), - [anon_sym_SEMI] = ACTIONS(678), - [anon_sym_LF] = ACTIONS(678), - [anon_sym_CR_LF] = ACTIONS(678), - [anon_sym_if] = ACTIONS(678), - [anon_sym_LPAREN] = ACTIONS(678), - [anon_sym_while] = ACTIONS(678), - [anon_sym_do] = ACTIONS(678), - [anon_sym_for] = ACTIONS(678), - [anon_sym_in] = ACTIONS(678), - [sym_break_statement] = ACTIONS(678), - [sym_continue_statement] = ACTIONS(678), - [anon_sym_delete] = ACTIONS(678), - [anon_sym_exit] = ACTIONS(678), - [anon_sym_return] = ACTIONS(678), - [anon_sym_switch] = ACTIONS(678), - [anon_sym_LBRACE] = ACTIONS(678), - [anon_sym_RBRACE] = ACTIONS(678), - [anon_sym_case] = ACTIONS(678), - [anon_sym_default] = ACTIONS(678), - [anon_sym_getline] = ACTIONS(678), - [anon_sym_LT] = ACTIONS(678), - [sym_next_statement] = ACTIONS(678), - [sym_nextfile_statement] = ACTIONS(678), - [anon_sym_print] = ACTIONS(678), - [anon_sym_printf] = ACTIONS(678), - [anon_sym_GT] = ACTIONS(678), - [anon_sym_GT_GT] = ACTIONS(678), - [anon_sym_PIPE] = ACTIONS(678), - [anon_sym_PIPE_AMP] = ACTIONS(678), - [anon_sym_QMARK] = ACTIONS(678), - [anon_sym_CARET] = ACTIONS(678), - [anon_sym_STAR_STAR] = ACTIONS(678), - [anon_sym_STAR] = ACTIONS(678), - [anon_sym_SLASH] = ACTIONS(678), - [anon_sym_PERCENT] = ACTIONS(678), - [anon_sym_PLUS] = ACTIONS(678), - [anon_sym_DASH] = ACTIONS(678), - [anon_sym_LT_EQ] = ACTIONS(678), - [anon_sym_GT_EQ] = ACTIONS(678), - [anon_sym_EQ_EQ] = ACTIONS(678), - [anon_sym_BANG_EQ] = ACTIONS(678), - [anon_sym_TILDE] = ACTIONS(678), - [anon_sym_BANG_TILDE] = ACTIONS(678), - [anon_sym_AMP_AMP] = ACTIONS(678), - [anon_sym_PIPE_PIPE] = ACTIONS(678), - [anon_sym_BANG] = ACTIONS(678), - [anon_sym_PLUS_PLUS] = ACTIONS(678), - [anon_sym_DASH_DASH] = ACTIONS(678), - [anon_sym_EQ] = ACTIONS(678), - [anon_sym_PLUS_EQ] = ACTIONS(678), - [anon_sym_DASH_EQ] = ACTIONS(678), - [anon_sym_STAR_EQ] = ACTIONS(678), - [anon_sym_SLASH_EQ] = ACTIONS(678), - [anon_sym_PERCENT_EQ] = ACTIONS(678), - [anon_sym_CARET_EQ] = ACTIONS(678), - [anon_sym_DOLLAR] = ACTIONS(678), - [anon_sym_LBRACK] = ACTIONS(688), - [anon_sym_AT] = ACTIONS(678), - [anon_sym_COLON_COLON] = ACTIONS(652), - [aux_sym_number_token1] = ACTIONS(678), - [aux_sym_number_token2] = ACTIONS(678), - [anon_sym_DQUOTE] = ACTIONS(678), - [anon_sym_POUND] = ACTIONS(678), - [sym_concatenating_space] = ACTIONS(680), + [sym_array_ref] = STATE(166), + [sym_namespace] = STATE(2071), + [sym_ns_qualified_name] = STATE(166), + [sym_identifier] = ACTIONS(724), + [anon_sym_COMMA] = ACTIONS(726), + [anon_sym_SEMI] = ACTIONS(726), + [anon_sym_LF] = ACTIONS(726), + [anon_sym_CR_LF] = ACTIONS(726), + [anon_sym_if] = ACTIONS(726), + [anon_sym_LPAREN] = ACTIONS(726), + [anon_sym_while] = ACTIONS(726), + [anon_sym_do] = ACTIONS(726), + [anon_sym_for] = ACTIONS(726), + [anon_sym_in] = ACTIONS(726), + [sym_break_statement] = ACTIONS(726), + [sym_continue_statement] = ACTIONS(726), + [anon_sym_delete] = ACTIONS(726), + [anon_sym_exit] = ACTIONS(726), + [anon_sym_return] = ACTIONS(726), + [anon_sym_switch] = ACTIONS(726), + [anon_sym_LBRACE] = ACTIONS(726), + [anon_sym_RBRACE] = ACTIONS(726), + [anon_sym_getline] = ACTIONS(726), + [anon_sym_LT] = ACTIONS(726), + [sym_next_statement] = ACTIONS(726), + [sym_nextfile_statement] = ACTIONS(726), + [anon_sym_print] = ACTIONS(726), + [anon_sym_printf] = ACTIONS(726), + [anon_sym_GT] = ACTIONS(726), + [anon_sym_GT_GT] = ACTIONS(726), + [anon_sym_PIPE] = ACTIONS(726), + [anon_sym_PIPE_AMP] = ACTIONS(726), + [anon_sym_QMARK] = ACTIONS(726), + [anon_sym_CARET] = ACTIONS(726), + [anon_sym_STAR_STAR] = ACTIONS(726), + [anon_sym_STAR] = ACTIONS(726), + [anon_sym_SLASH] = ACTIONS(726), + [anon_sym_PERCENT] = ACTIONS(726), + [anon_sym_PLUS] = ACTIONS(726), + [anon_sym_DASH] = ACTIONS(726), + [anon_sym_LT_EQ] = ACTIONS(726), + [anon_sym_GT_EQ] = ACTIONS(726), + [anon_sym_EQ_EQ] = ACTIONS(726), + [anon_sym_BANG_EQ] = ACTIONS(726), + [anon_sym_TILDE] = ACTIONS(726), + [anon_sym_BANG_TILDE] = ACTIONS(726), + [anon_sym_AMP_AMP] = ACTIONS(726), + [anon_sym_PIPE_PIPE] = ACTIONS(726), + [anon_sym_BANG] = ACTIONS(726), + [anon_sym_PLUS_PLUS] = ACTIONS(726), + [anon_sym_DASH_DASH] = ACTIONS(726), + [anon_sym_EQ] = ACTIONS(726), + [anon_sym_PLUS_EQ] = ACTIONS(726), + [anon_sym_DASH_EQ] = ACTIONS(726), + [anon_sym_STAR_EQ] = ACTIONS(726), + [anon_sym_SLASH_EQ] = ACTIONS(726), + [anon_sym_PERCENT_EQ] = ACTIONS(726), + [anon_sym_CARET_EQ] = ACTIONS(726), + [anon_sym_DOLLAR] = ACTIONS(726), + [anon_sym_AT] = ACTIONS(726), + [aux_sym_number_token1] = ACTIONS(726), + [aux_sym_number_token2] = ACTIONS(726), + [anon_sym_DQUOTE] = ACTIONS(726), + [anon_sym_POUND] = ACTIONS(726), + [sym_concatenating_space] = ACTIONS(728), + [sym__if_else_separator] = ACTIONS(728), }, [179] = { [sym_identifier] = ACTIONS(642), @@ -21212,7 +21514,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(642), [anon_sym_do] = ACTIONS(642), [anon_sym_for] = ACTIONS(642), - [anon_sym_in] = ACTIONS(644), + [anon_sym_in] = ACTIONS(642), [sym_break_statement] = ACTIONS(642), [sym_continue_statement] = ACTIONS(642), [anon_sym_delete] = ACTIONS(642), @@ -21221,37 +21523,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_switch] = ACTIONS(642), [anon_sym_LBRACE] = ACTIONS(642), [anon_sym_RBRACE] = ACTIONS(642), - [anon_sym_case] = ACTIONS(642), - [anon_sym_default] = ACTIONS(642), [anon_sym_getline] = ACTIONS(642), - [anon_sym_LT] = ACTIONS(644), + [anon_sym_LT] = ACTIONS(642), [sym_next_statement] = ACTIONS(642), [sym_nextfile_statement] = ACTIONS(642), [anon_sym_print] = ACTIONS(642), + [anon_sym_LPAREN2] = ACTIONS(712), [anon_sym_printf] = ACTIONS(642), - [anon_sym_GT] = ACTIONS(644), + [anon_sym_GT] = ACTIONS(642), [anon_sym_GT_GT] = ACTIONS(642), - [anon_sym_PIPE] = ACTIONS(644), - [anon_sym_PIPE_AMP] = ACTIONS(644), - [anon_sym_QMARK] = ACTIONS(644), - [anon_sym_CARET] = ACTIONS(644), - [anon_sym_STAR_STAR] = ACTIONS(644), - [anon_sym_STAR] = ACTIONS(644), - [anon_sym_SLASH] = ACTIONS(644), - [anon_sym_PERCENT] = ACTIONS(644), - [anon_sym_PLUS] = ACTIONS(644), - [anon_sym_DASH] = ACTIONS(644), - [anon_sym_LT_EQ] = ACTIONS(644), - [anon_sym_GT_EQ] = ACTIONS(644), - [anon_sym_EQ_EQ] = ACTIONS(644), - [anon_sym_BANG_EQ] = ACTIONS(644), - [anon_sym_TILDE] = ACTIONS(644), - [anon_sym_BANG_TILDE] = ACTIONS(644), - [anon_sym_AMP_AMP] = ACTIONS(644), - [anon_sym_PIPE_PIPE] = ACTIONS(644), + [anon_sym_PIPE] = ACTIONS(642), + [anon_sym_PIPE_AMP] = ACTIONS(642), + [anon_sym_QMARK] = ACTIONS(642), + [anon_sym_CARET] = ACTIONS(642), + [anon_sym_STAR_STAR] = ACTIONS(642), + [anon_sym_STAR] = ACTIONS(642), + [anon_sym_SLASH] = ACTIONS(642), + [anon_sym_PERCENT] = ACTIONS(642), + [anon_sym_PLUS] = ACTIONS(642), + [anon_sym_DASH] = ACTIONS(642), + [anon_sym_LT_EQ] = ACTIONS(642), + [anon_sym_GT_EQ] = ACTIONS(642), + [anon_sym_EQ_EQ] = ACTIONS(642), + [anon_sym_BANG_EQ] = ACTIONS(642), + [anon_sym_TILDE] = ACTIONS(642), + [anon_sym_BANG_TILDE] = ACTIONS(642), + [anon_sym_AMP_AMP] = ACTIONS(642), + [anon_sym_PIPE_PIPE] = ACTIONS(642), [anon_sym_BANG] = ACTIONS(642), - [anon_sym_PLUS_PLUS] = ACTIONS(648), - [anon_sym_DASH_DASH] = ACTIONS(648), + [anon_sym_PLUS_PLUS] = ACTIONS(730), + [anon_sym_DASH_DASH] = ACTIONS(730), [anon_sym_EQ] = ACTIONS(732), [anon_sym_PLUS_EQ] = ACTIONS(732), [anon_sym_DASH_EQ] = ACTIONS(732), @@ -21260,201 +21561,270 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT_EQ] = ACTIONS(732), [anon_sym_CARET_EQ] = ACTIONS(732), [anon_sym_DOLLAR] = ACTIONS(642), - [anon_sym_LBRACK] = ACTIONS(650), + [anon_sym_LBRACK] = ACTIONS(648), [anon_sym_AT] = ACTIONS(642), + [anon_sym_COLON_COLON] = ACTIONS(650), [aux_sym_number_token1] = ACTIONS(642), [aux_sym_number_token2] = ACTIONS(642), [anon_sym_DQUOTE] = ACTIONS(642), [anon_sym_POUND] = ACTIONS(642), - [sym_concatenating_space] = ACTIONS(654), - [sym__if_else_separator] = ACTIONS(654), + [sym_concatenating_space] = ACTIONS(652), + [sym__if_else_separator] = ACTIONS(652), }, [180] = { - [sym_identifier] = ACTIONS(682), - [anon_sym_COMMA] = ACTIONS(682), - [anon_sym_SEMI] = ACTIONS(682), - [anon_sym_LF] = ACTIONS(682), - [anon_sym_CR_LF] = ACTIONS(682), - [anon_sym_if] = ACTIONS(682), - [anon_sym_LPAREN] = ACTIONS(682), - [anon_sym_while] = ACTIONS(682), - [anon_sym_do] = ACTIONS(682), - [anon_sym_for] = ACTIONS(682), - [anon_sym_in] = ACTIONS(682), - [sym_break_statement] = ACTIONS(682), - [sym_continue_statement] = ACTIONS(682), - [anon_sym_delete] = ACTIONS(682), - [anon_sym_exit] = ACTIONS(682), - [anon_sym_return] = ACTIONS(682), - [anon_sym_switch] = ACTIONS(682), - [anon_sym_LBRACE] = ACTIONS(682), - [anon_sym_RBRACE] = ACTIONS(682), - [anon_sym_case] = ACTIONS(682), - [anon_sym_default] = ACTIONS(682), - [anon_sym_getline] = ACTIONS(682), - [anon_sym_LT] = ACTIONS(682), - [sym_next_statement] = ACTIONS(682), - [sym_nextfile_statement] = ACTIONS(682), - [anon_sym_print] = ACTIONS(682), - [anon_sym_printf] = ACTIONS(682), - [anon_sym_GT] = ACTIONS(682), - [anon_sym_GT_GT] = ACTIONS(682), - [anon_sym_PIPE] = ACTIONS(682), - [anon_sym_PIPE_AMP] = ACTIONS(682), - [anon_sym_QMARK] = ACTIONS(682), - [anon_sym_CARET] = ACTIONS(682), - [anon_sym_STAR_STAR] = ACTIONS(682), - [anon_sym_STAR] = ACTIONS(682), - [anon_sym_SLASH] = ACTIONS(682), - [anon_sym_PERCENT] = ACTIONS(682), - [anon_sym_PLUS] = ACTIONS(682), - [anon_sym_DASH] = ACTIONS(682), - [anon_sym_LT_EQ] = ACTIONS(682), - [anon_sym_GT_EQ] = ACTIONS(682), - [anon_sym_EQ_EQ] = ACTIONS(682), - [anon_sym_BANG_EQ] = ACTIONS(682), - [anon_sym_TILDE] = ACTIONS(682), - [anon_sym_BANG_TILDE] = ACTIONS(682), - [anon_sym_AMP_AMP] = ACTIONS(682), - [anon_sym_PIPE_PIPE] = ACTIONS(682), - [anon_sym_BANG] = ACTIONS(682), - [anon_sym_PLUS_PLUS] = ACTIONS(682), - [anon_sym_DASH_DASH] = ACTIONS(682), - [anon_sym_EQ] = ACTIONS(682), - [anon_sym_PLUS_EQ] = ACTIONS(682), - [anon_sym_DASH_EQ] = ACTIONS(682), - [anon_sym_STAR_EQ] = ACTIONS(682), - [anon_sym_SLASH_EQ] = ACTIONS(682), - [anon_sym_PERCENT_EQ] = ACTIONS(682), - [anon_sym_CARET_EQ] = ACTIONS(682), - [anon_sym_DOLLAR] = ACTIONS(682), - [anon_sym_LBRACK] = ACTIONS(688), - [anon_sym_AT] = ACTIONS(682), - [anon_sym_COLON_COLON] = ACTIONS(652), - [aux_sym_number_token1] = ACTIONS(682), - [aux_sym_number_token2] = ACTIONS(682), - [anon_sym_DQUOTE] = ACTIONS(682), - [anon_sym_POUND] = ACTIONS(682), - [sym_concatenating_space] = ACTIONS(684), + [sym_array_ref] = STATE(166), + [sym_namespace] = STATE(2071), + [sym_ns_qualified_name] = STATE(232), + [sym_identifier] = ACTIONS(734), + [anon_sym_COMMA] = ACTIONS(726), + [anon_sym_SEMI] = ACTIONS(726), + [anon_sym_LF] = ACTIONS(726), + [anon_sym_CR_LF] = ACTIONS(726), + [anon_sym_if] = ACTIONS(726), + [anon_sym_LPAREN] = ACTIONS(726), + [anon_sym_while] = ACTIONS(726), + [anon_sym_do] = ACTIONS(726), + [anon_sym_for] = ACTIONS(726), + [anon_sym_in] = ACTIONS(726), + [sym_break_statement] = ACTIONS(726), + [sym_continue_statement] = ACTIONS(726), + [anon_sym_delete] = ACTIONS(726), + [anon_sym_exit] = ACTIONS(726), + [anon_sym_return] = ACTIONS(726), + [anon_sym_switch] = ACTIONS(726), + [anon_sym_LBRACE] = ACTIONS(726), + [anon_sym_RBRACE] = ACTIONS(726), + [anon_sym_getline] = ACTIONS(726), + [anon_sym_LT] = ACTIONS(736), + [sym_next_statement] = ACTIONS(726), + [sym_nextfile_statement] = ACTIONS(726), + [anon_sym_print] = ACTIONS(726), + [anon_sym_printf] = ACTIONS(726), + [anon_sym_GT] = ACTIONS(726), + [anon_sym_GT_GT] = ACTIONS(726), + [anon_sym_PIPE] = ACTIONS(726), + [anon_sym_PIPE_AMP] = ACTIONS(726), + [anon_sym_QMARK] = ACTIONS(726), + [anon_sym_CARET] = ACTIONS(726), + [anon_sym_STAR_STAR] = ACTIONS(726), + [anon_sym_STAR] = ACTIONS(726), + [anon_sym_SLASH] = ACTIONS(726), + [anon_sym_PERCENT] = ACTIONS(726), + [anon_sym_PLUS] = ACTIONS(726), + [anon_sym_DASH] = ACTIONS(726), + [anon_sym_LT_EQ] = ACTIONS(726), + [anon_sym_GT_EQ] = ACTIONS(726), + [anon_sym_EQ_EQ] = ACTIONS(726), + [anon_sym_BANG_EQ] = ACTIONS(726), + [anon_sym_TILDE] = ACTIONS(726), + [anon_sym_BANG_TILDE] = ACTIONS(726), + [anon_sym_AMP_AMP] = ACTIONS(726), + [anon_sym_PIPE_PIPE] = ACTIONS(726), + [anon_sym_BANG] = ACTIONS(726), + [anon_sym_PLUS_PLUS] = ACTIONS(726), + [anon_sym_DASH_DASH] = ACTIONS(726), + [anon_sym_EQ] = ACTIONS(726), + [anon_sym_PLUS_EQ] = ACTIONS(726), + [anon_sym_DASH_EQ] = ACTIONS(726), + [anon_sym_STAR_EQ] = ACTIONS(726), + [anon_sym_SLASH_EQ] = ACTIONS(726), + [anon_sym_PERCENT_EQ] = ACTIONS(726), + [anon_sym_CARET_EQ] = ACTIONS(726), + [anon_sym_DOLLAR] = ACTIONS(726), + [anon_sym_AT] = ACTIONS(726), + [aux_sym_number_token1] = ACTIONS(726), + [aux_sym_number_token2] = ACTIONS(726), + [anon_sym_DQUOTE] = ACTIONS(726), + [anon_sym_POUND] = ACTIONS(726), + [sym_concatenating_space] = ACTIONS(728), + [sym__if_else_separator] = ACTIONS(728), }, [181] = { - [sym_identifier] = ACTIONS(644), - [anon_sym_COMMA] = ACTIONS(644), - [anon_sym_SEMI] = ACTIONS(644), - [anon_sym_LF] = ACTIONS(644), - [anon_sym_CR_LF] = ACTIONS(644), - [anon_sym_if] = ACTIONS(644), - [anon_sym_LPAREN] = ACTIONS(644), - [anon_sym_while] = ACTIONS(644), - [anon_sym_do] = ACTIONS(644), - [anon_sym_for] = ACTIONS(644), - [anon_sym_in] = ACTIONS(644), - [sym_break_statement] = ACTIONS(644), - [sym_continue_statement] = ACTIONS(644), - [anon_sym_delete] = ACTIONS(644), - [anon_sym_exit] = ACTIONS(644), - [anon_sym_return] = ACTIONS(644), - [anon_sym_switch] = ACTIONS(644), - [anon_sym_LBRACE] = ACTIONS(644), - [anon_sym_RBRACE] = ACTIONS(644), - [anon_sym_case] = ACTIONS(644), - [anon_sym_default] = ACTIONS(644), - [anon_sym_getline] = ACTIONS(644), - [anon_sym_LT] = ACTIONS(644), - [sym_next_statement] = ACTIONS(644), - [sym_nextfile_statement] = ACTIONS(644), - [anon_sym_print] = ACTIONS(644), - [anon_sym_LPAREN2] = ACTIONS(686), - [anon_sym_printf] = ACTIONS(644), - [anon_sym_GT] = ACTIONS(644), - [anon_sym_GT_GT] = ACTIONS(644), - [anon_sym_PIPE] = ACTIONS(644), - [anon_sym_PIPE_AMP] = ACTIONS(644), - [anon_sym_QMARK] = ACTIONS(644), - [anon_sym_CARET] = ACTIONS(644), - [anon_sym_STAR_STAR] = ACTIONS(644), - [anon_sym_STAR] = ACTIONS(644), - [anon_sym_SLASH] = ACTIONS(644), - [anon_sym_PERCENT] = ACTIONS(644), - [anon_sym_PLUS] = ACTIONS(644), - [anon_sym_DASH] = ACTIONS(644), - [anon_sym_LT_EQ] = ACTIONS(644), - [anon_sym_GT_EQ] = ACTIONS(644), - [anon_sym_EQ_EQ] = ACTIONS(644), - [anon_sym_BANG_EQ] = ACTIONS(644), - [anon_sym_TILDE] = ACTIONS(644), - [anon_sym_BANG_TILDE] = ACTIONS(644), - [anon_sym_AMP_AMP] = ACTIONS(644), - [anon_sym_PIPE_PIPE] = ACTIONS(644), - [anon_sym_BANG] = ACTIONS(644), - [anon_sym_PLUS_PLUS] = ACTIONS(694), - [anon_sym_DASH_DASH] = ACTIONS(694), - [anon_sym_EQ] = ACTIONS(644), - [anon_sym_PLUS_EQ] = ACTIONS(644), - [anon_sym_DASH_EQ] = ACTIONS(644), - [anon_sym_STAR_EQ] = ACTIONS(644), - [anon_sym_SLASH_EQ] = ACTIONS(644), - [anon_sym_PERCENT_EQ] = ACTIONS(644), - [anon_sym_CARET_EQ] = ACTIONS(644), - [anon_sym_DOLLAR] = ACTIONS(644), - [anon_sym_LBRACK] = ACTIONS(688), - [anon_sym_AT] = ACTIONS(644), - [aux_sym_number_token1] = ACTIONS(644), - [aux_sym_number_token2] = ACTIONS(644), - [anon_sym_DQUOTE] = ACTIONS(644), - [anon_sym_POUND] = ACTIONS(644), - [sym_concatenating_space] = ACTIONS(658), + [sym_identifier] = ACTIONS(692), + [anon_sym_COMMA] = ACTIONS(692), + [anon_sym_SEMI] = ACTIONS(692), + [anon_sym_LF] = ACTIONS(692), + [anon_sym_CR_LF] = ACTIONS(692), + [anon_sym_if] = ACTIONS(692), + [anon_sym_LPAREN] = ACTIONS(692), + [anon_sym_while] = ACTIONS(692), + [anon_sym_do] = ACTIONS(692), + [anon_sym_for] = ACTIONS(692), + [anon_sym_in] = ACTIONS(692), + [sym_break_statement] = ACTIONS(692), + [sym_continue_statement] = ACTIONS(692), + [anon_sym_delete] = ACTIONS(692), + [anon_sym_exit] = ACTIONS(692), + [anon_sym_return] = ACTIONS(692), + [anon_sym_switch] = ACTIONS(692), + [anon_sym_LBRACE] = ACTIONS(692), + [anon_sym_RBRACE] = ACTIONS(692), + [anon_sym_case] = ACTIONS(692), + [anon_sym_default] = ACTIONS(692), + [anon_sym_getline] = ACTIONS(692), + [anon_sym_LT] = ACTIONS(692), + [sym_next_statement] = ACTIONS(692), + [sym_nextfile_statement] = ACTIONS(692), + [anon_sym_print] = ACTIONS(692), + [anon_sym_printf] = ACTIONS(692), + [anon_sym_GT] = ACTIONS(692), + [anon_sym_GT_GT] = ACTIONS(692), + [anon_sym_PIPE] = ACTIONS(692), + [anon_sym_PIPE_AMP] = ACTIONS(692), + [anon_sym_QMARK] = ACTIONS(692), + [anon_sym_CARET] = ACTIONS(692), + [anon_sym_STAR_STAR] = ACTIONS(692), + [anon_sym_STAR] = ACTIONS(692), + [anon_sym_SLASH] = ACTIONS(692), + [anon_sym_PERCENT] = ACTIONS(692), + [anon_sym_PLUS] = ACTIONS(692), + [anon_sym_DASH] = ACTIONS(692), + [anon_sym_LT_EQ] = ACTIONS(692), + [anon_sym_GT_EQ] = ACTIONS(692), + [anon_sym_EQ_EQ] = ACTIONS(692), + [anon_sym_BANG_EQ] = ACTIONS(692), + [anon_sym_TILDE] = ACTIONS(692), + [anon_sym_BANG_TILDE] = ACTIONS(692), + [anon_sym_AMP_AMP] = ACTIONS(692), + [anon_sym_PIPE_PIPE] = ACTIONS(692), + [anon_sym_BANG] = ACTIONS(692), + [anon_sym_PLUS_PLUS] = ACTIONS(692), + [anon_sym_DASH_DASH] = ACTIONS(692), + [anon_sym_EQ] = ACTIONS(692), + [anon_sym_PLUS_EQ] = ACTIONS(692), + [anon_sym_DASH_EQ] = ACTIONS(692), + [anon_sym_STAR_EQ] = ACTIONS(692), + [anon_sym_SLASH_EQ] = ACTIONS(692), + [anon_sym_PERCENT_EQ] = ACTIONS(692), + [anon_sym_CARET_EQ] = ACTIONS(692), + [anon_sym_DOLLAR] = ACTIONS(692), + [anon_sym_LBRACK] = ACTIONS(648), + [anon_sym_AT] = ACTIONS(692), + [aux_sym_number_token1] = ACTIONS(692), + [aux_sym_number_token2] = ACTIONS(692), + [anon_sym_DQUOTE] = ACTIONS(692), + [anon_sym_POUND] = ACTIONS(692), + [sym_concatenating_space] = ACTIONS(694), + [sym__if_else_separator] = ACTIONS(694), }, [182] = { - [sym_identifier] = ACTIONS(644), - [anon_sym_COMMA] = ACTIONS(644), - [anon_sym_SEMI] = ACTIONS(644), - [anon_sym_LF] = ACTIONS(644), - [anon_sym_CR_LF] = ACTIONS(644), - [anon_sym_if] = ACTIONS(644), - [anon_sym_LPAREN] = ACTIONS(644), - [anon_sym_while] = ACTIONS(644), - [anon_sym_do] = ACTIONS(644), - [anon_sym_for] = ACTIONS(644), - [anon_sym_in] = ACTIONS(644), - [sym_break_statement] = ACTIONS(644), - [sym_continue_statement] = ACTIONS(644), - [anon_sym_delete] = ACTIONS(644), - [anon_sym_exit] = ACTIONS(644), - [anon_sym_return] = ACTIONS(644), - [anon_sym_switch] = ACTIONS(644), - [anon_sym_LBRACE] = ACTIONS(644), - [anon_sym_RBRACE] = ACTIONS(644), - [anon_sym_getline] = ACTIONS(644), - [anon_sym_LT] = ACTIONS(644), - [sym_next_statement] = ACTIONS(644), - [sym_nextfile_statement] = ACTIONS(644), - [anon_sym_print] = ACTIONS(644), - [anon_sym_LPAREN2] = ACTIONS(738), - [anon_sym_printf] = ACTIONS(644), - [anon_sym_GT] = ACTIONS(644), - [anon_sym_GT_GT] = ACTIONS(644), - [anon_sym_PIPE] = ACTIONS(644), - [anon_sym_PIPE_AMP] = ACTIONS(644), - [anon_sym_QMARK] = ACTIONS(644), - [anon_sym_CARET] = ACTIONS(644), - [anon_sym_STAR_STAR] = ACTIONS(644), - [anon_sym_STAR] = ACTIONS(644), - [anon_sym_SLASH] = ACTIONS(644), - [anon_sym_PERCENT] = ACTIONS(644), - [anon_sym_PLUS] = ACTIONS(644), - [anon_sym_DASH] = ACTIONS(644), - [anon_sym_LT_EQ] = ACTIONS(644), - [anon_sym_GT_EQ] = ACTIONS(644), - [anon_sym_EQ_EQ] = ACTIONS(644), - [anon_sym_BANG_EQ] = ACTIONS(644), - [anon_sym_TILDE] = ACTIONS(644), - [anon_sym_BANG_TILDE] = ACTIONS(644), - [anon_sym_AMP_AMP] = ACTIONS(644), - [anon_sym_PIPE_PIPE] = ACTIONS(644), - [anon_sym_BANG] = ACTIONS(644), - [anon_sym_PLUS_PLUS] = ACTIONS(740), - [anon_sym_DASH_DASH] = ACTIONS(740), + [sym_identifier] = ACTIONS(738), + [anon_sym_COMMA] = ACTIONS(738), + [anon_sym_SEMI] = ACTIONS(738), + [anon_sym_LF] = ACTIONS(738), + [anon_sym_CR_LF] = ACTIONS(738), + [anon_sym_if] = ACTIONS(738), + [anon_sym_LPAREN] = ACTIONS(738), + [anon_sym_while] = ACTIONS(738), + [anon_sym_do] = ACTIONS(738), + [anon_sym_for] = ACTIONS(738), + [anon_sym_in] = ACTIONS(738), + [sym_break_statement] = ACTIONS(738), + [sym_continue_statement] = ACTIONS(738), + [anon_sym_delete] = ACTIONS(738), + [anon_sym_exit] = ACTIONS(738), + [anon_sym_return] = ACTIONS(738), + [anon_sym_switch] = ACTIONS(738), + [anon_sym_LBRACE] = ACTIONS(738), + [anon_sym_RBRACE] = ACTIONS(738), + [anon_sym_case] = ACTIONS(738), + [anon_sym_default] = ACTIONS(738), + [anon_sym_getline] = ACTIONS(738), + [anon_sym_LT] = ACTIONS(738), + [sym_next_statement] = ACTIONS(738), + [sym_nextfile_statement] = ACTIONS(738), + [anon_sym_print] = ACTIONS(738), + [anon_sym_printf] = ACTIONS(738), + [anon_sym_GT] = ACTIONS(738), + [anon_sym_GT_GT] = ACTIONS(738), + [anon_sym_PIPE] = ACTIONS(738), + [anon_sym_PIPE_AMP] = ACTIONS(738), + [anon_sym_QMARK] = ACTIONS(738), + [anon_sym_CARET] = ACTIONS(738), + [anon_sym_STAR_STAR] = ACTIONS(738), + [anon_sym_STAR] = ACTIONS(738), + [anon_sym_SLASH] = ACTIONS(738), + [anon_sym_PERCENT] = ACTIONS(738), + [anon_sym_PLUS] = ACTIONS(738), + [anon_sym_DASH] = ACTIONS(738), + [anon_sym_LT_EQ] = ACTIONS(738), + [anon_sym_GT_EQ] = ACTIONS(738), + [anon_sym_EQ_EQ] = ACTIONS(738), + [anon_sym_BANG_EQ] = ACTIONS(738), + [anon_sym_TILDE] = ACTIONS(738), + [anon_sym_BANG_TILDE] = ACTIONS(738), + [anon_sym_AMP_AMP] = ACTIONS(738), + [anon_sym_PIPE_PIPE] = ACTIONS(738), + [anon_sym_BANG] = ACTIONS(738), + [anon_sym_PLUS_PLUS] = ACTIONS(738), + [anon_sym_DASH_DASH] = ACTIONS(738), + [anon_sym_EQ] = ACTIONS(738), + [anon_sym_PLUS_EQ] = ACTIONS(738), + [anon_sym_DASH_EQ] = ACTIONS(738), + [anon_sym_STAR_EQ] = ACTIONS(738), + [anon_sym_SLASH_EQ] = ACTIONS(738), + [anon_sym_PERCENT_EQ] = ACTIONS(738), + [anon_sym_CARET_EQ] = ACTIONS(738), + [anon_sym_DOLLAR] = ACTIONS(738), + [anon_sym_AT] = ACTIONS(738), + [aux_sym_number_token1] = ACTIONS(738), + [aux_sym_number_token2] = ACTIONS(738), + [anon_sym_DQUOTE] = ACTIONS(738), + [anon_sym_POUND] = ACTIONS(738), + [sym_concatenating_space] = ACTIONS(740), + [sym__if_else_separator] = ACTIONS(740), + }, + [183] = { + [sym_identifier] = ACTIONS(742), + [anon_sym_COMMA] = ACTIONS(742), + [anon_sym_SEMI] = ACTIONS(742), + [anon_sym_LF] = ACTIONS(742), + [anon_sym_CR_LF] = ACTIONS(742), + [anon_sym_if] = ACTIONS(742), + [anon_sym_LPAREN] = ACTIONS(742), + [anon_sym_while] = ACTIONS(742), + [anon_sym_do] = ACTIONS(742), + [anon_sym_for] = ACTIONS(742), + [anon_sym_in] = ACTIONS(742), + [sym_break_statement] = ACTIONS(742), + [sym_continue_statement] = ACTIONS(742), + [anon_sym_delete] = ACTIONS(742), + [anon_sym_exit] = ACTIONS(742), + [anon_sym_return] = ACTIONS(742), + [anon_sym_switch] = ACTIONS(742), + [anon_sym_LBRACE] = ACTIONS(742), + [anon_sym_RBRACE] = ACTIONS(742), + [anon_sym_case] = ACTIONS(742), + [anon_sym_default] = ACTIONS(742), + [anon_sym_getline] = ACTIONS(742), + [anon_sym_LT] = ACTIONS(742), + [sym_next_statement] = ACTIONS(742), + [sym_nextfile_statement] = ACTIONS(742), + [anon_sym_print] = ACTIONS(742), + [anon_sym_printf] = ACTIONS(742), + [anon_sym_GT] = ACTIONS(742), + [anon_sym_GT_GT] = ACTIONS(742), + [anon_sym_PIPE] = ACTIONS(742), + [anon_sym_PIPE_AMP] = ACTIONS(742), + [anon_sym_QMARK] = ACTIONS(742), + [anon_sym_CARET] = ACTIONS(742), + [anon_sym_STAR_STAR] = ACTIONS(742), + [anon_sym_STAR] = ACTIONS(742), + [anon_sym_SLASH] = ACTIONS(742), + [anon_sym_PERCENT] = ACTIONS(742), + [anon_sym_PLUS] = ACTIONS(742), + [anon_sym_DASH] = ACTIONS(742), + [anon_sym_LT_EQ] = ACTIONS(742), + [anon_sym_GT_EQ] = ACTIONS(742), + [anon_sym_EQ_EQ] = ACTIONS(742), + [anon_sym_BANG_EQ] = ACTIONS(742), + [anon_sym_TILDE] = ACTIONS(742), + [anon_sym_BANG_TILDE] = ACTIONS(742), + [anon_sym_AMP_AMP] = ACTIONS(742), + [anon_sym_PIPE_PIPE] = ACTIONS(742), + [anon_sym_BANG] = ACTIONS(742), + [anon_sym_PLUS_PLUS] = ACTIONS(742), + [anon_sym_DASH_DASH] = ACTIONS(742), [anon_sym_EQ] = ACTIONS(742), [anon_sym_PLUS_EQ] = ACTIONS(742), [anon_sym_DASH_EQ] = ACTIONS(742), @@ -21462,17 +21832,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH_EQ] = ACTIONS(742), [anon_sym_PERCENT_EQ] = ACTIONS(742), [anon_sym_CARET_EQ] = ACTIONS(742), - [anon_sym_DOLLAR] = ACTIONS(644), - [anon_sym_LBRACK] = ACTIONS(688), - [anon_sym_AT] = ACTIONS(644), - [anon_sym_COLON_COLON] = ACTIONS(652), - [aux_sym_number_token1] = ACTIONS(644), - [aux_sym_number_token2] = ACTIONS(644), - [anon_sym_DQUOTE] = ACTIONS(644), - [anon_sym_POUND] = ACTIONS(644), + [anon_sym_DOLLAR] = ACTIONS(742), + [anon_sym_AT] = ACTIONS(742), + [aux_sym_number_token1] = ACTIONS(742), + [aux_sym_number_token2] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(742), + [anon_sym_POUND] = ACTIONS(742), [sym_concatenating_space] = ACTIONS(744), + [sym__if_else_separator] = ACTIONS(744), }, - [183] = { + [184] = { [sym_identifier] = ACTIONS(746), [anon_sym_COMMA] = ACTIONS(746), [anon_sym_SEMI] = ACTIONS(746), @@ -21539,7 +21908,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_concatenating_space] = ACTIONS(748), [sym__if_else_separator] = ACTIONS(748), }, - [184] = { + [185] = { [sym_identifier] = ACTIONS(750), [anon_sym_COMMA] = ACTIONS(750), [anon_sym_SEMI] = ACTIONS(750), @@ -21606,74 +21975,342 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_concatenating_space] = ACTIONS(752), [sym__if_else_separator] = ACTIONS(752), }, - [185] = { - [sym_identifier] = ACTIONS(678), - [anon_sym_COMMA] = ACTIONS(678), - [anon_sym_SEMI] = ACTIONS(678), - [anon_sym_LF] = ACTIONS(678), - [anon_sym_CR_LF] = ACTIONS(678), - [anon_sym_if] = ACTIONS(678), - [anon_sym_LPAREN] = ACTIONS(678), - [anon_sym_while] = ACTIONS(678), - [anon_sym_do] = ACTIONS(678), - [anon_sym_for] = ACTIONS(678), - [anon_sym_in] = ACTIONS(678), - [sym_break_statement] = ACTIONS(678), - [sym_continue_statement] = ACTIONS(678), - [anon_sym_delete] = ACTIONS(678), - [anon_sym_exit] = ACTIONS(678), - [anon_sym_return] = ACTIONS(678), - [anon_sym_switch] = ACTIONS(678), - [anon_sym_LBRACE] = ACTIONS(678), - [anon_sym_RBRACE] = ACTIONS(678), - [anon_sym_getline] = ACTIONS(678), + [186] = { + [sym_identifier] = ACTIONS(754), + [anon_sym_COMMA] = ACTIONS(754), + [anon_sym_SEMI] = ACTIONS(754), + [anon_sym_LF] = ACTIONS(754), + [anon_sym_CR_LF] = ACTIONS(754), + [anon_sym_if] = ACTIONS(754), + [anon_sym_LPAREN] = ACTIONS(754), + [anon_sym_while] = ACTIONS(754), + [anon_sym_do] = ACTIONS(754), + [anon_sym_for] = ACTIONS(754), + [anon_sym_in] = ACTIONS(754), + [sym_break_statement] = ACTIONS(754), + [sym_continue_statement] = ACTIONS(754), + [anon_sym_delete] = ACTIONS(754), + [anon_sym_exit] = ACTIONS(754), + [anon_sym_return] = ACTIONS(754), + [anon_sym_switch] = ACTIONS(754), + [anon_sym_LBRACE] = ACTIONS(754), + [anon_sym_RBRACE] = ACTIONS(754), + [anon_sym_case] = ACTIONS(754), + [anon_sym_default] = ACTIONS(754), + [anon_sym_getline] = ACTIONS(754), [anon_sym_LT] = ACTIONS(754), - [sym_next_statement] = ACTIONS(678), - [sym_nextfile_statement] = ACTIONS(678), - [anon_sym_print] = ACTIONS(678), - [anon_sym_printf] = ACTIONS(678), - [anon_sym_GT] = ACTIONS(678), - [anon_sym_GT_GT] = ACTIONS(678), - [anon_sym_PIPE] = ACTIONS(678), - [anon_sym_PIPE_AMP] = ACTIONS(678), - [anon_sym_QMARK] = ACTIONS(678), - [anon_sym_CARET] = ACTIONS(678), - [anon_sym_STAR_STAR] = ACTIONS(678), - [anon_sym_STAR] = ACTIONS(678), - [anon_sym_SLASH] = ACTIONS(678), - [anon_sym_PERCENT] = ACTIONS(678), - [anon_sym_PLUS] = ACTIONS(678), - [anon_sym_DASH] = ACTIONS(678), - [anon_sym_LT_EQ] = ACTIONS(678), - [anon_sym_GT_EQ] = ACTIONS(678), - [anon_sym_EQ_EQ] = ACTIONS(678), - [anon_sym_BANG_EQ] = ACTIONS(678), - [anon_sym_TILDE] = ACTIONS(678), - [anon_sym_BANG_TILDE] = ACTIONS(678), - [anon_sym_AMP_AMP] = ACTIONS(678), - [anon_sym_PIPE_PIPE] = ACTIONS(678), - [anon_sym_BANG] = ACTIONS(678), - [anon_sym_PLUS_PLUS] = ACTIONS(678), - [anon_sym_DASH_DASH] = ACTIONS(678), - [anon_sym_EQ] = ACTIONS(678), - [anon_sym_PLUS_EQ] = ACTIONS(678), - [anon_sym_DASH_EQ] = ACTIONS(678), - [anon_sym_STAR_EQ] = ACTIONS(678), - [anon_sym_SLASH_EQ] = ACTIONS(678), - [anon_sym_PERCENT_EQ] = ACTIONS(678), - [anon_sym_CARET_EQ] = ACTIONS(678), - [anon_sym_DOLLAR] = ACTIONS(678), - [anon_sym_LBRACK] = ACTIONS(650), - [anon_sym_AT] = ACTIONS(678), - [anon_sym_COLON_COLON] = ACTIONS(652), - [aux_sym_number_token1] = ACTIONS(678), - [aux_sym_number_token2] = ACTIONS(678), - [anon_sym_DQUOTE] = ACTIONS(678), - [anon_sym_POUND] = ACTIONS(678), - [sym_concatenating_space] = ACTIONS(680), - [sym__if_else_separator] = ACTIONS(680), + [sym_next_statement] = ACTIONS(754), + [sym_nextfile_statement] = ACTIONS(754), + [anon_sym_print] = ACTIONS(754), + [anon_sym_printf] = ACTIONS(754), + [anon_sym_GT] = ACTIONS(754), + [anon_sym_GT_GT] = ACTIONS(754), + [anon_sym_PIPE] = ACTIONS(754), + [anon_sym_PIPE_AMP] = ACTIONS(754), + [anon_sym_QMARK] = ACTIONS(754), + [anon_sym_CARET] = ACTIONS(754), + [anon_sym_STAR_STAR] = ACTIONS(754), + [anon_sym_STAR] = ACTIONS(754), + [anon_sym_SLASH] = ACTIONS(754), + [anon_sym_PERCENT] = ACTIONS(754), + [anon_sym_PLUS] = ACTIONS(754), + [anon_sym_DASH] = ACTIONS(754), + [anon_sym_LT_EQ] = ACTIONS(754), + [anon_sym_GT_EQ] = ACTIONS(754), + [anon_sym_EQ_EQ] = ACTIONS(754), + [anon_sym_BANG_EQ] = ACTIONS(754), + [anon_sym_TILDE] = ACTIONS(754), + [anon_sym_BANG_TILDE] = ACTIONS(754), + [anon_sym_AMP_AMP] = ACTIONS(754), + [anon_sym_PIPE_PIPE] = ACTIONS(754), + [anon_sym_BANG] = ACTIONS(754), + [anon_sym_PLUS_PLUS] = ACTIONS(754), + [anon_sym_DASH_DASH] = ACTIONS(754), + [anon_sym_EQ] = ACTIONS(754), + [anon_sym_PLUS_EQ] = ACTIONS(754), + [anon_sym_DASH_EQ] = ACTIONS(754), + [anon_sym_STAR_EQ] = ACTIONS(754), + [anon_sym_SLASH_EQ] = ACTIONS(754), + [anon_sym_PERCENT_EQ] = ACTIONS(754), + [anon_sym_CARET_EQ] = ACTIONS(754), + [anon_sym_DOLLAR] = ACTIONS(754), + [anon_sym_AT] = ACTIONS(754), + [aux_sym_number_token1] = ACTIONS(754), + [aux_sym_number_token2] = ACTIONS(754), + [anon_sym_DQUOTE] = ACTIONS(754), + [anon_sym_POUND] = ACTIONS(754), + [sym_concatenating_space] = ACTIONS(756), + [sym__if_else_separator] = ACTIONS(756), }, - [186] = { + [187] = { + [sym_identifier] = ACTIONS(692), + [anon_sym_COMMA] = ACTIONS(692), + [anon_sym_SEMI] = ACTIONS(692), + [anon_sym_LF] = ACTIONS(692), + [anon_sym_CR_LF] = ACTIONS(692), + [anon_sym_if] = ACTIONS(692), + [anon_sym_LPAREN] = ACTIONS(692), + [anon_sym_while] = ACTIONS(692), + [anon_sym_do] = ACTIONS(692), + [anon_sym_for] = ACTIONS(692), + [anon_sym_in] = ACTIONS(692), + [sym_break_statement] = ACTIONS(692), + [sym_continue_statement] = ACTIONS(692), + [anon_sym_delete] = ACTIONS(692), + [anon_sym_exit] = ACTIONS(692), + [anon_sym_return] = ACTIONS(692), + [anon_sym_switch] = ACTIONS(692), + [anon_sym_LBRACE] = ACTIONS(692), + [anon_sym_RBRACE] = ACTIONS(692), + [anon_sym_case] = ACTIONS(692), + [anon_sym_default] = ACTIONS(692), + [anon_sym_getline] = ACTIONS(692), + [anon_sym_LT] = ACTIONS(692), + [sym_next_statement] = ACTIONS(692), + [sym_nextfile_statement] = ACTIONS(692), + [anon_sym_print] = ACTIONS(692), + [anon_sym_printf] = ACTIONS(692), + [anon_sym_GT] = ACTIONS(692), + [anon_sym_GT_GT] = ACTIONS(692), + [anon_sym_PIPE] = ACTIONS(692), + [anon_sym_PIPE_AMP] = ACTIONS(692), + [anon_sym_QMARK] = ACTIONS(692), + [anon_sym_CARET] = ACTIONS(692), + [anon_sym_STAR_STAR] = ACTIONS(692), + [anon_sym_STAR] = ACTIONS(692), + [anon_sym_SLASH] = ACTIONS(692), + [anon_sym_PERCENT] = ACTIONS(692), + [anon_sym_PLUS] = ACTIONS(692), + [anon_sym_DASH] = ACTIONS(692), + [anon_sym_LT_EQ] = ACTIONS(692), + [anon_sym_GT_EQ] = ACTIONS(692), + [anon_sym_EQ_EQ] = ACTIONS(692), + [anon_sym_BANG_EQ] = ACTIONS(692), + [anon_sym_TILDE] = ACTIONS(692), + [anon_sym_BANG_TILDE] = ACTIONS(692), + [anon_sym_AMP_AMP] = ACTIONS(692), + [anon_sym_PIPE_PIPE] = ACTIONS(692), + [anon_sym_BANG] = ACTIONS(692), + [anon_sym_PLUS_PLUS] = ACTIONS(692), + [anon_sym_DASH_DASH] = ACTIONS(692), + [anon_sym_EQ] = ACTIONS(692), + [anon_sym_PLUS_EQ] = ACTIONS(692), + [anon_sym_DASH_EQ] = ACTIONS(692), + [anon_sym_STAR_EQ] = ACTIONS(692), + [anon_sym_SLASH_EQ] = ACTIONS(692), + [anon_sym_PERCENT_EQ] = ACTIONS(692), + [anon_sym_CARET_EQ] = ACTIONS(692), + [anon_sym_DOLLAR] = ACTIONS(692), + [anon_sym_AT] = ACTIONS(692), + [aux_sym_number_token1] = ACTIONS(692), + [aux_sym_number_token2] = ACTIONS(692), + [anon_sym_DQUOTE] = ACTIONS(692), + [anon_sym_POUND] = ACTIONS(692), + [sym_concatenating_space] = ACTIONS(694), + [sym__if_else_separator] = ACTIONS(694), + }, + [188] = { + [sym_identifier] = ACTIONS(654), + [anon_sym_COMMA] = ACTIONS(654), + [anon_sym_SEMI] = ACTIONS(654), + [anon_sym_LF] = ACTIONS(654), + [anon_sym_CR_LF] = ACTIONS(654), + [anon_sym_if] = ACTIONS(654), + [anon_sym_LPAREN] = ACTIONS(654), + [anon_sym_while] = ACTIONS(654), + [anon_sym_do] = ACTIONS(654), + [anon_sym_for] = ACTIONS(654), + [anon_sym_in] = ACTIONS(642), + [sym_break_statement] = ACTIONS(654), + [sym_continue_statement] = ACTIONS(654), + [anon_sym_delete] = ACTIONS(654), + [anon_sym_exit] = ACTIONS(654), + [anon_sym_return] = ACTIONS(654), + [anon_sym_switch] = ACTIONS(654), + [anon_sym_LBRACE] = ACTIONS(654), + [anon_sym_RBRACE] = ACTIONS(654), + [anon_sym_case] = ACTIONS(654), + [anon_sym_default] = ACTIONS(654), + [anon_sym_getline] = ACTIONS(654), + [anon_sym_LT] = ACTIONS(642), + [sym_next_statement] = ACTIONS(654), + [sym_nextfile_statement] = ACTIONS(654), + [anon_sym_print] = ACTIONS(654), + [anon_sym_printf] = ACTIONS(654), + [anon_sym_GT] = ACTIONS(642), + [anon_sym_GT_GT] = ACTIONS(654), + [anon_sym_PIPE] = ACTIONS(642), + [anon_sym_PIPE_AMP] = ACTIONS(642), + [anon_sym_QMARK] = ACTIONS(642), + [anon_sym_CARET] = ACTIONS(642), + [anon_sym_STAR_STAR] = ACTIONS(642), + [anon_sym_STAR] = ACTIONS(642), + [anon_sym_SLASH] = ACTIONS(642), + [anon_sym_PERCENT] = ACTIONS(642), + [anon_sym_PLUS] = ACTIONS(642), + [anon_sym_DASH] = ACTIONS(642), + [anon_sym_LT_EQ] = ACTIONS(642), + [anon_sym_GT_EQ] = ACTIONS(642), + [anon_sym_EQ_EQ] = ACTIONS(642), + [anon_sym_BANG_EQ] = ACTIONS(642), + [anon_sym_TILDE] = ACTIONS(642), + [anon_sym_BANG_TILDE] = ACTIONS(642), + [anon_sym_AMP_AMP] = ACTIONS(642), + [anon_sym_PIPE_PIPE] = ACTIONS(642), + [anon_sym_BANG] = ACTIONS(654), + [anon_sym_PLUS_PLUS] = ACTIONS(654), + [anon_sym_DASH_DASH] = ACTIONS(654), + [anon_sym_EQ] = ACTIONS(654), + [anon_sym_PLUS_EQ] = ACTIONS(654), + [anon_sym_DASH_EQ] = ACTIONS(654), + [anon_sym_STAR_EQ] = ACTIONS(654), + [anon_sym_SLASH_EQ] = ACTIONS(654), + [anon_sym_PERCENT_EQ] = ACTIONS(654), + [anon_sym_CARET_EQ] = ACTIONS(654), + [anon_sym_DOLLAR] = ACTIONS(654), + [anon_sym_AT] = ACTIONS(654), + [aux_sym_number_token1] = ACTIONS(654), + [aux_sym_number_token2] = ACTIONS(654), + [anon_sym_DQUOTE] = ACTIONS(654), + [anon_sym_POUND] = ACTIONS(654), + [sym_concatenating_space] = ACTIONS(658), + [sym__if_else_separator] = ACTIONS(658), + }, + [189] = { + [sym_identifier] = ACTIONS(758), + [anon_sym_COMMA] = ACTIONS(758), + [anon_sym_SEMI] = ACTIONS(758), + [anon_sym_LF] = ACTIONS(758), + [anon_sym_CR_LF] = ACTIONS(758), + [anon_sym_if] = ACTIONS(758), + [anon_sym_LPAREN] = ACTIONS(758), + [anon_sym_while] = ACTIONS(758), + [anon_sym_do] = ACTIONS(758), + [anon_sym_for] = ACTIONS(758), + [anon_sym_in] = ACTIONS(758), + [sym_break_statement] = ACTIONS(758), + [sym_continue_statement] = ACTIONS(758), + [anon_sym_delete] = ACTIONS(758), + [anon_sym_exit] = ACTIONS(758), + [anon_sym_return] = ACTIONS(758), + [anon_sym_switch] = ACTIONS(758), + [anon_sym_LBRACE] = ACTIONS(758), + [anon_sym_RBRACE] = ACTIONS(758), + [anon_sym_case] = ACTIONS(758), + [anon_sym_default] = ACTIONS(758), + [anon_sym_getline] = ACTIONS(758), + [anon_sym_LT] = ACTIONS(758), + [sym_next_statement] = ACTIONS(758), + [sym_nextfile_statement] = ACTIONS(758), + [anon_sym_print] = ACTIONS(758), + [anon_sym_printf] = ACTIONS(758), + [anon_sym_GT] = ACTIONS(758), + [anon_sym_GT_GT] = ACTIONS(758), + [anon_sym_PIPE] = ACTIONS(758), + [anon_sym_PIPE_AMP] = ACTIONS(758), + [anon_sym_QMARK] = ACTIONS(758), + [anon_sym_CARET] = ACTIONS(758), + [anon_sym_STAR_STAR] = ACTIONS(758), + [anon_sym_STAR] = ACTIONS(758), + [anon_sym_SLASH] = ACTIONS(758), + [anon_sym_PERCENT] = ACTIONS(758), + [anon_sym_PLUS] = ACTIONS(758), + [anon_sym_DASH] = ACTIONS(758), + [anon_sym_LT_EQ] = ACTIONS(758), + [anon_sym_GT_EQ] = ACTIONS(758), + [anon_sym_EQ_EQ] = ACTIONS(758), + [anon_sym_BANG_EQ] = ACTIONS(758), + [anon_sym_TILDE] = ACTIONS(758), + [anon_sym_BANG_TILDE] = ACTIONS(758), + [anon_sym_AMP_AMP] = ACTIONS(758), + [anon_sym_PIPE_PIPE] = ACTIONS(758), + [anon_sym_BANG] = ACTIONS(758), + [anon_sym_PLUS_PLUS] = ACTIONS(758), + [anon_sym_DASH_DASH] = ACTIONS(758), + [anon_sym_EQ] = ACTIONS(758), + [anon_sym_PLUS_EQ] = ACTIONS(758), + [anon_sym_DASH_EQ] = ACTIONS(758), + [anon_sym_STAR_EQ] = ACTIONS(758), + [anon_sym_SLASH_EQ] = ACTIONS(758), + [anon_sym_PERCENT_EQ] = ACTIONS(758), + [anon_sym_CARET_EQ] = ACTIONS(758), + [anon_sym_DOLLAR] = ACTIONS(758), + [anon_sym_AT] = ACTIONS(758), + [aux_sym_number_token1] = ACTIONS(758), + [aux_sym_number_token2] = ACTIONS(758), + [anon_sym_DQUOTE] = ACTIONS(758), + [anon_sym_POUND] = ACTIONS(758), + [sym_concatenating_space] = ACTIONS(760), + [sym__if_else_separator] = ACTIONS(760), + }, + [190] = { + [sym_identifier] = ACTIONS(688), + [anon_sym_COMMA] = ACTIONS(688), + [anon_sym_SEMI] = ACTIONS(688), + [anon_sym_LF] = ACTIONS(688), + [anon_sym_CR_LF] = ACTIONS(688), + [anon_sym_if] = ACTIONS(688), + [anon_sym_LPAREN] = ACTIONS(688), + [anon_sym_while] = ACTIONS(688), + [anon_sym_do] = ACTIONS(688), + [anon_sym_for] = ACTIONS(688), + [anon_sym_in] = ACTIONS(688), + [sym_break_statement] = ACTIONS(688), + [sym_continue_statement] = ACTIONS(688), + [anon_sym_delete] = ACTIONS(688), + [anon_sym_exit] = ACTIONS(688), + [anon_sym_return] = ACTIONS(688), + [anon_sym_switch] = ACTIONS(688), + [anon_sym_LBRACE] = ACTIONS(688), + [anon_sym_RBRACE] = ACTIONS(688), + [anon_sym_getline] = ACTIONS(688), + [anon_sym_LT] = ACTIONS(762), + [sym_next_statement] = ACTIONS(688), + [sym_nextfile_statement] = ACTIONS(688), + [anon_sym_print] = ACTIONS(688), + [anon_sym_printf] = ACTIONS(688), + [anon_sym_GT] = ACTIONS(688), + [anon_sym_GT_GT] = ACTIONS(688), + [anon_sym_PIPE] = ACTIONS(688), + [anon_sym_PIPE_AMP] = ACTIONS(688), + [anon_sym_QMARK] = ACTIONS(688), + [anon_sym_CARET] = ACTIONS(688), + [anon_sym_STAR_STAR] = ACTIONS(688), + [anon_sym_STAR] = ACTIONS(688), + [anon_sym_SLASH] = ACTIONS(688), + [anon_sym_PERCENT] = ACTIONS(688), + [anon_sym_PLUS] = ACTIONS(688), + [anon_sym_DASH] = ACTIONS(688), + [anon_sym_LT_EQ] = ACTIONS(688), + [anon_sym_GT_EQ] = ACTIONS(688), + [anon_sym_EQ_EQ] = ACTIONS(688), + [anon_sym_BANG_EQ] = ACTIONS(688), + [anon_sym_TILDE] = ACTIONS(688), + [anon_sym_BANG_TILDE] = ACTIONS(688), + [anon_sym_AMP_AMP] = ACTIONS(688), + [anon_sym_PIPE_PIPE] = ACTIONS(688), + [anon_sym_BANG] = ACTIONS(688), + [anon_sym_PLUS_PLUS] = ACTIONS(688), + [anon_sym_DASH_DASH] = ACTIONS(688), + [anon_sym_EQ] = ACTIONS(688), + [anon_sym_PLUS_EQ] = ACTIONS(688), + [anon_sym_DASH_EQ] = ACTIONS(688), + [anon_sym_STAR_EQ] = ACTIONS(688), + [anon_sym_SLASH_EQ] = ACTIONS(688), + [anon_sym_PERCENT_EQ] = ACTIONS(688), + [anon_sym_CARET_EQ] = ACTIONS(688), + [anon_sym_DOLLAR] = ACTIONS(688), + [anon_sym_LBRACK] = ACTIONS(648), + [anon_sym_AT] = ACTIONS(688), + [anon_sym_COLON_COLON] = ACTIONS(650), + [aux_sym_number_token1] = ACTIONS(688), + [aux_sym_number_token2] = ACTIONS(688), + [anon_sym_DQUOTE] = ACTIONS(688), + [anon_sym_POUND] = ACTIONS(688), + [sym_concatenating_space] = ACTIONS(690), + [sym__if_else_separator] = ACTIONS(690), + }, + [191] = { [sym_identifier] = ACTIONS(642), [anon_sym_COMMA] = ACTIONS(642), [anon_sym_SEMI] = ACTIONS(642), @@ -21684,7 +22321,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(642), [anon_sym_do] = ACTIONS(642), [anon_sym_for] = ACTIONS(642), - [anon_sym_in] = ACTIONS(644), + [anon_sym_in] = ACTIONS(642), [sym_break_statement] = ACTIONS(642), [sym_continue_statement] = ACTIONS(642), [anon_sym_delete] = ACTIONS(642), @@ -21693,37 +22330,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_switch] = ACTIONS(642), [anon_sym_LBRACE] = ACTIONS(642), [anon_sym_RBRACE] = ACTIONS(642), - [anon_sym_case] = ACTIONS(642), - [anon_sym_default] = ACTIONS(642), [anon_sym_getline] = ACTIONS(642), - [anon_sym_LT] = ACTIONS(644), + [anon_sym_LT] = ACTIONS(642), [sym_next_statement] = ACTIONS(642), [sym_nextfile_statement] = ACTIONS(642), [anon_sym_print] = ACTIONS(642), + [anon_sym_LPAREN2] = ACTIONS(712), [anon_sym_printf] = ACTIONS(642), - [anon_sym_GT] = ACTIONS(644), + [anon_sym_GT] = ACTIONS(642), [anon_sym_GT_GT] = ACTIONS(642), - [anon_sym_PIPE] = ACTIONS(644), - [anon_sym_PIPE_AMP] = ACTIONS(644), - [anon_sym_QMARK] = ACTIONS(644), - [anon_sym_CARET] = ACTIONS(644), - [anon_sym_STAR_STAR] = ACTIONS(644), - [anon_sym_STAR] = ACTIONS(644), - [anon_sym_SLASH] = ACTIONS(644), - [anon_sym_PERCENT] = ACTIONS(644), - [anon_sym_PLUS] = ACTIONS(644), - [anon_sym_DASH] = ACTIONS(644), - [anon_sym_LT_EQ] = ACTIONS(644), - [anon_sym_GT_EQ] = ACTIONS(644), - [anon_sym_EQ_EQ] = ACTIONS(644), - [anon_sym_BANG_EQ] = ACTIONS(644), - [anon_sym_TILDE] = ACTIONS(644), - [anon_sym_BANG_TILDE] = ACTIONS(644), - [anon_sym_AMP_AMP] = ACTIONS(644), - [anon_sym_PIPE_PIPE] = ACTIONS(644), + [anon_sym_PIPE] = ACTIONS(642), + [anon_sym_PIPE_AMP] = ACTIONS(642), + [anon_sym_QMARK] = ACTIONS(642), + [anon_sym_CARET] = ACTIONS(642), + [anon_sym_STAR_STAR] = ACTIONS(642), + [anon_sym_STAR] = ACTIONS(642), + [anon_sym_SLASH] = ACTIONS(642), + [anon_sym_PERCENT] = ACTIONS(642), + [anon_sym_PLUS] = ACTIONS(642), + [anon_sym_DASH] = ACTIONS(642), + [anon_sym_LT_EQ] = ACTIONS(642), + [anon_sym_GT_EQ] = ACTIONS(642), + [anon_sym_EQ_EQ] = ACTIONS(642), + [anon_sym_BANG_EQ] = ACTIONS(642), + [anon_sym_TILDE] = ACTIONS(642), + [anon_sym_BANG_TILDE] = ACTIONS(642), + [anon_sym_AMP_AMP] = ACTIONS(642), + [anon_sym_PIPE_PIPE] = ACTIONS(642), [anon_sym_BANG] = ACTIONS(642), - [anon_sym_PLUS_PLUS] = ACTIONS(648), - [anon_sym_DASH_DASH] = ACTIONS(648), + [anon_sym_PLUS_PLUS] = ACTIONS(730), + [anon_sym_DASH_DASH] = ACTIONS(730), [anon_sym_EQ] = ACTIONS(732), [anon_sym_PLUS_EQ] = ACTIONS(732), [anon_sym_DASH_EQ] = ACTIONS(732), @@ -21732,82 +22368,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT_EQ] = ACTIONS(732), [anon_sym_CARET_EQ] = ACTIONS(732), [anon_sym_DOLLAR] = ACTIONS(642), - [anon_sym_LBRACK] = ACTIONS(688), + [anon_sym_LBRACK] = ACTIONS(648), [anon_sym_AT] = ACTIONS(642), [aux_sym_number_token1] = ACTIONS(642), [aux_sym_number_token2] = ACTIONS(642), [anon_sym_DQUOTE] = ACTIONS(642), [anon_sym_POUND] = ACTIONS(642), - [sym_concatenating_space] = ACTIONS(654), - }, - [187] = { - [sym_identifier] = ACTIONS(644), - [anon_sym_COMMA] = ACTIONS(644), - [anon_sym_SEMI] = ACTIONS(644), - [anon_sym_LF] = ACTIONS(644), - [anon_sym_CR_LF] = ACTIONS(644), - [anon_sym_if] = ACTIONS(644), - [anon_sym_LPAREN] = ACTIONS(644), - [anon_sym_while] = ACTIONS(644), - [anon_sym_do] = ACTIONS(644), - [anon_sym_for] = ACTIONS(644), - [anon_sym_in] = ACTIONS(644), - [sym_break_statement] = ACTIONS(644), - [sym_continue_statement] = ACTIONS(644), - [anon_sym_delete] = ACTIONS(644), - [anon_sym_exit] = ACTIONS(644), - [anon_sym_return] = ACTIONS(644), - [anon_sym_switch] = ACTIONS(644), - [anon_sym_LBRACE] = ACTIONS(644), - [anon_sym_RBRACE] = ACTIONS(644), - [anon_sym_getline] = ACTIONS(644), - [anon_sym_LT] = ACTIONS(644), - [sym_next_statement] = ACTIONS(644), - [sym_nextfile_statement] = ACTIONS(644), - [anon_sym_print] = ACTIONS(644), - [anon_sym_LPAREN2] = ACTIONS(738), - [anon_sym_printf] = ACTIONS(644), - [anon_sym_GT] = ACTIONS(644), - [anon_sym_GT_GT] = ACTIONS(644), - [anon_sym_PIPE] = ACTIONS(644), - [anon_sym_PIPE_AMP] = ACTIONS(644), - [anon_sym_QMARK] = ACTIONS(644), - [anon_sym_CARET] = ACTIONS(644), - [anon_sym_STAR_STAR] = ACTIONS(644), - [anon_sym_STAR] = ACTIONS(644), - [anon_sym_SLASH] = ACTIONS(644), - [anon_sym_PERCENT] = ACTIONS(644), - [anon_sym_PLUS] = ACTIONS(644), - [anon_sym_DASH] = ACTIONS(644), - [anon_sym_LT_EQ] = ACTIONS(644), - [anon_sym_GT_EQ] = ACTIONS(644), - [anon_sym_EQ_EQ] = ACTIONS(644), - [anon_sym_BANG_EQ] = ACTIONS(644), - [anon_sym_TILDE] = ACTIONS(644), - [anon_sym_BANG_TILDE] = ACTIONS(644), - [anon_sym_AMP_AMP] = ACTIONS(644), - [anon_sym_PIPE_PIPE] = ACTIONS(644), - [anon_sym_BANG] = ACTIONS(644), - [anon_sym_PLUS_PLUS] = ACTIONS(756), - [anon_sym_DASH_DASH] = ACTIONS(756), - [anon_sym_EQ] = ACTIONS(758), - [anon_sym_PLUS_EQ] = ACTIONS(758), - [anon_sym_DASH_EQ] = ACTIONS(758), - [anon_sym_STAR_EQ] = ACTIONS(758), - [anon_sym_SLASH_EQ] = ACTIONS(758), - [anon_sym_PERCENT_EQ] = ACTIONS(758), - [anon_sym_CARET_EQ] = ACTIONS(758), - [anon_sym_DOLLAR] = ACTIONS(644), - [anon_sym_LBRACK] = ACTIONS(688), - [anon_sym_AT] = ACTIONS(644), - [anon_sym_COLON_COLON] = ACTIONS(652), - [aux_sym_number_token1] = ACTIONS(644), - [aux_sym_number_token2] = ACTIONS(644), - [anon_sym_DQUOTE] = ACTIONS(644), - [anon_sym_POUND] = ACTIONS(644), - [sym_concatenating_space] = ACTIONS(658), + [sym_concatenating_space] = ACTIONS(652), + [sym__if_else_separator] = ACTIONS(652), }, - [188] = { + [192] = { [sym_identifier] = ACTIONS(642), [anon_sym_COMMA] = ACTIONS(642), [anon_sym_SEMI] = ACTIONS(642), @@ -21818,7 +22388,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(642), [anon_sym_do] = ACTIONS(642), [anon_sym_for] = ACTIONS(642), - [anon_sym_in] = ACTIONS(644), + [anon_sym_in] = ACTIONS(642), [sym_break_statement] = ACTIONS(642), [sym_continue_statement] = ACTIONS(642), [anon_sym_delete] = ACTIONS(642), @@ -21827,322 +22397,121 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_switch] = ACTIONS(642), [anon_sym_LBRACE] = ACTIONS(642), [anon_sym_RBRACE] = ACTIONS(642), + [anon_sym_case] = ACTIONS(642), + [anon_sym_default] = ACTIONS(642), [anon_sym_getline] = ACTIONS(642), - [anon_sym_LT] = ACTIONS(644), + [anon_sym_LT] = ACTIONS(642), [sym_next_statement] = ACTIONS(642), [sym_nextfile_statement] = ACTIONS(642), [anon_sym_print] = ACTIONS(642), - [anon_sym_LPAREN2] = ACTIONS(738), [anon_sym_printf] = ACTIONS(642), - [anon_sym_GT] = ACTIONS(644), + [anon_sym_GT] = ACTIONS(642), [anon_sym_GT_GT] = ACTIONS(642), - [anon_sym_PIPE] = ACTIONS(644), - [anon_sym_PIPE_AMP] = ACTIONS(644), - [anon_sym_QMARK] = ACTIONS(644), - [anon_sym_CARET] = ACTIONS(644), - [anon_sym_STAR_STAR] = ACTIONS(644), - [anon_sym_STAR] = ACTIONS(644), - [anon_sym_SLASH] = ACTIONS(644), - [anon_sym_PERCENT] = ACTIONS(644), - [anon_sym_PLUS] = ACTIONS(644), - [anon_sym_DASH] = ACTIONS(644), - [anon_sym_LT_EQ] = ACTIONS(644), - [anon_sym_GT_EQ] = ACTIONS(644), - [anon_sym_EQ_EQ] = ACTIONS(644), - [anon_sym_BANG_EQ] = ACTIONS(644), - [anon_sym_TILDE] = ACTIONS(644), - [anon_sym_BANG_TILDE] = ACTIONS(644), - [anon_sym_AMP_AMP] = ACTIONS(644), - [anon_sym_PIPE_PIPE] = ACTIONS(644), + [anon_sym_PIPE] = ACTIONS(642), + [anon_sym_PIPE_AMP] = ACTIONS(642), + [anon_sym_QMARK] = ACTIONS(642), + [anon_sym_CARET] = ACTIONS(642), + [anon_sym_STAR_STAR] = ACTIONS(642), + [anon_sym_STAR] = ACTIONS(642), + [anon_sym_SLASH] = ACTIONS(642), + [anon_sym_PERCENT] = ACTIONS(642), + [anon_sym_PLUS] = ACTIONS(642), + [anon_sym_DASH] = ACTIONS(642), + [anon_sym_LT_EQ] = ACTIONS(642), + [anon_sym_GT_EQ] = ACTIONS(642), + [anon_sym_EQ_EQ] = ACTIONS(642), + [anon_sym_BANG_EQ] = ACTIONS(642), + [anon_sym_TILDE] = ACTIONS(642), + [anon_sym_BANG_TILDE] = ACTIONS(642), + [anon_sym_AMP_AMP] = ACTIONS(642), + [anon_sym_PIPE_PIPE] = ACTIONS(642), [anon_sym_BANG] = ACTIONS(642), - [anon_sym_PLUS_PLUS] = ACTIONS(648), - [anon_sym_DASH_DASH] = ACTIONS(648), - [anon_sym_EQ] = ACTIONS(732), - [anon_sym_PLUS_EQ] = ACTIONS(732), - [anon_sym_DASH_EQ] = ACTIONS(732), - [anon_sym_STAR_EQ] = ACTIONS(732), - [anon_sym_SLASH_EQ] = ACTIONS(732), - [anon_sym_PERCENT_EQ] = ACTIONS(732), - [anon_sym_CARET_EQ] = ACTIONS(732), - [anon_sym_DOLLAR] = ACTIONS(642), - [anon_sym_LBRACK] = ACTIONS(688), - [anon_sym_AT] = ACTIONS(642), - [anon_sym_COLON_COLON] = ACTIONS(652), - [aux_sym_number_token1] = ACTIONS(642), - [aux_sym_number_token2] = ACTIONS(642), - [anon_sym_DQUOTE] = ACTIONS(642), - [anon_sym_POUND] = ACTIONS(642), - [sym_concatenating_space] = ACTIONS(654), - }, - [189] = { - [sym_identifier] = ACTIONS(642), - [anon_sym_COMMA] = ACTIONS(642), - [anon_sym_SEMI] = ACTIONS(642), - [anon_sym_LF] = ACTIONS(642), - [anon_sym_CR_LF] = ACTIONS(642), - [anon_sym_if] = ACTIONS(642), - [anon_sym_LPAREN] = ACTIONS(642), - [anon_sym_while] = ACTIONS(642), - [anon_sym_do] = ACTIONS(642), - [anon_sym_for] = ACTIONS(642), - [anon_sym_in] = ACTIONS(644), - [sym_break_statement] = ACTIONS(642), - [sym_continue_statement] = ACTIONS(642), - [anon_sym_delete] = ACTIONS(642), - [anon_sym_exit] = ACTIONS(642), - [anon_sym_return] = ACTIONS(642), - [anon_sym_switch] = ACTIONS(642), - [anon_sym_LBRACE] = ACTIONS(642), - [anon_sym_RBRACE] = ACTIONS(642), - [anon_sym_case] = ACTIONS(642), - [anon_sym_default] = ACTIONS(642), - [anon_sym_getline] = ACTIONS(642), - [anon_sym_LT] = ACTIONS(644), - [sym_next_statement] = ACTIONS(642), - [sym_nextfile_statement] = ACTIONS(642), - [anon_sym_print] = ACTIONS(642), - [anon_sym_printf] = ACTIONS(642), - [anon_sym_GT] = ACTIONS(644), - [anon_sym_GT_GT] = ACTIONS(642), - [anon_sym_PIPE] = ACTIONS(644), - [anon_sym_PIPE_AMP] = ACTIONS(644), - [anon_sym_QMARK] = ACTIONS(644), - [anon_sym_CARET] = ACTIONS(644), - [anon_sym_STAR_STAR] = ACTIONS(644), - [anon_sym_STAR] = ACTIONS(644), - [anon_sym_SLASH] = ACTIONS(644), - [anon_sym_PERCENT] = ACTIONS(644), - [anon_sym_PLUS] = ACTIONS(644), - [anon_sym_DASH] = ACTIONS(644), - [anon_sym_LT_EQ] = ACTIONS(644), - [anon_sym_GT_EQ] = ACTIONS(644), - [anon_sym_EQ_EQ] = ACTIONS(644), - [anon_sym_BANG_EQ] = ACTIONS(644), - [anon_sym_TILDE] = ACTIONS(644), - [anon_sym_BANG_TILDE] = ACTIONS(644), - [anon_sym_AMP_AMP] = ACTIONS(644), - [anon_sym_PIPE_PIPE] = ACTIONS(644), - [anon_sym_BANG] = ACTIONS(642), - [anon_sym_PLUS_PLUS] = ACTIONS(648), - [anon_sym_DASH_DASH] = ACTIONS(648), - [anon_sym_EQ] = ACTIONS(732), - [anon_sym_PLUS_EQ] = ACTIONS(732), - [anon_sym_DASH_EQ] = ACTIONS(732), - [anon_sym_STAR_EQ] = ACTIONS(732), - [anon_sym_SLASH_EQ] = ACTIONS(732), - [anon_sym_PERCENT_EQ] = ACTIONS(732), - [anon_sym_CARET_EQ] = ACTIONS(732), + [anon_sym_PLUS_PLUS] = ACTIONS(646), + [anon_sym_DASH_DASH] = ACTIONS(646), + [anon_sym_EQ] = ACTIONS(642), + [anon_sym_PLUS_EQ] = ACTIONS(642), + [anon_sym_DASH_EQ] = ACTIONS(642), + [anon_sym_STAR_EQ] = ACTIONS(642), + [anon_sym_SLASH_EQ] = ACTIONS(642), + [anon_sym_PERCENT_EQ] = ACTIONS(642), + [anon_sym_CARET_EQ] = ACTIONS(642), [anon_sym_DOLLAR] = ACTIONS(642), [anon_sym_AT] = ACTIONS(642), [aux_sym_number_token1] = ACTIONS(642), [aux_sym_number_token2] = ACTIONS(642), [anon_sym_DQUOTE] = ACTIONS(642), [anon_sym_POUND] = ACTIONS(642), - [sym_concatenating_space] = ACTIONS(654), - [sym__if_else_separator] = ACTIONS(654), - }, - [190] = { - [sym_identifier] = ACTIONS(760), - [anon_sym_COMMA] = ACTIONS(760), - [anon_sym_SEMI] = ACTIONS(760), - [anon_sym_LF] = ACTIONS(760), - [anon_sym_CR_LF] = ACTIONS(760), - [anon_sym_if] = ACTIONS(760), - [anon_sym_LPAREN] = ACTIONS(760), - [anon_sym_while] = ACTIONS(760), - [anon_sym_do] = ACTIONS(760), - [anon_sym_for] = ACTIONS(760), - [anon_sym_in] = ACTIONS(760), - [sym_break_statement] = ACTIONS(760), - [sym_continue_statement] = ACTIONS(760), - [anon_sym_delete] = ACTIONS(760), - [anon_sym_exit] = ACTIONS(760), - [anon_sym_return] = ACTIONS(760), - [anon_sym_switch] = ACTIONS(760), - [anon_sym_LBRACE] = ACTIONS(760), - [anon_sym_RBRACE] = ACTIONS(760), - [anon_sym_case] = ACTIONS(760), - [anon_sym_default] = ACTIONS(760), - [anon_sym_getline] = ACTIONS(760), - [anon_sym_LT] = ACTIONS(760), - [sym_next_statement] = ACTIONS(760), - [sym_nextfile_statement] = ACTIONS(760), - [anon_sym_print] = ACTIONS(760), - [anon_sym_printf] = ACTIONS(760), - [anon_sym_GT] = ACTIONS(760), - [anon_sym_GT_GT] = ACTIONS(760), - [anon_sym_PIPE] = ACTIONS(760), - [anon_sym_PIPE_AMP] = ACTIONS(760), - [anon_sym_QMARK] = ACTIONS(760), - [anon_sym_CARET] = ACTIONS(760), - [anon_sym_STAR_STAR] = ACTIONS(760), - [anon_sym_STAR] = ACTIONS(760), - [anon_sym_SLASH] = ACTIONS(760), - [anon_sym_PERCENT] = ACTIONS(760), - [anon_sym_PLUS] = ACTIONS(760), - [anon_sym_DASH] = ACTIONS(760), - [anon_sym_LT_EQ] = ACTIONS(760), - [anon_sym_GT_EQ] = ACTIONS(760), - [anon_sym_EQ_EQ] = ACTIONS(760), - [anon_sym_BANG_EQ] = ACTIONS(760), - [anon_sym_TILDE] = ACTIONS(760), - [anon_sym_BANG_TILDE] = ACTIONS(760), - [anon_sym_AMP_AMP] = ACTIONS(760), - [anon_sym_PIPE_PIPE] = ACTIONS(760), - [anon_sym_BANG] = ACTIONS(760), - [anon_sym_PLUS_PLUS] = ACTIONS(760), - [anon_sym_DASH_DASH] = ACTIONS(760), - [anon_sym_EQ] = ACTIONS(760), - [anon_sym_PLUS_EQ] = ACTIONS(760), - [anon_sym_DASH_EQ] = ACTIONS(760), - [anon_sym_STAR_EQ] = ACTIONS(760), - [anon_sym_SLASH_EQ] = ACTIONS(760), - [anon_sym_PERCENT_EQ] = ACTIONS(760), - [anon_sym_CARET_EQ] = ACTIONS(760), - [anon_sym_DOLLAR] = ACTIONS(760), - [anon_sym_AT] = ACTIONS(760), - [aux_sym_number_token1] = ACTIONS(760), - [aux_sym_number_token2] = ACTIONS(760), - [anon_sym_DQUOTE] = ACTIONS(760), - [anon_sym_POUND] = ACTIONS(760), - [sym_concatenating_space] = ACTIONS(762), - [sym__if_else_separator] = ACTIONS(762), + [sym_concatenating_space] = ACTIONS(652), + [sym__if_else_separator] = ACTIONS(652), }, - [191] = { - [sym_array_ref] = STATE(192), - [sym_namespace] = STATE(2061), - [sym_ns_qualified_name] = STATE(264), + [193] = { [sym_identifier] = ACTIONS(764), - [anon_sym_COMMA] = ACTIONS(712), - [anon_sym_SEMI] = ACTIONS(712), - [anon_sym_LF] = ACTIONS(712), - [anon_sym_CR_LF] = ACTIONS(712), - [anon_sym_if] = ACTIONS(712), - [anon_sym_LPAREN] = ACTIONS(712), - [anon_sym_while] = ACTIONS(712), - [anon_sym_do] = ACTIONS(712), - [anon_sym_for] = ACTIONS(712), - [anon_sym_in] = ACTIONS(712), - [sym_break_statement] = ACTIONS(712), - [sym_continue_statement] = ACTIONS(712), - [anon_sym_delete] = ACTIONS(712), - [anon_sym_exit] = ACTIONS(712), - [anon_sym_return] = ACTIONS(712), - [anon_sym_switch] = ACTIONS(712), - [anon_sym_LBRACE] = ACTIONS(712), - [anon_sym_RBRACE] = ACTIONS(712), - [anon_sym_getline] = ACTIONS(712), - [anon_sym_LT] = ACTIONS(766), - [sym_next_statement] = ACTIONS(712), - [sym_nextfile_statement] = ACTIONS(712), - [anon_sym_print] = ACTIONS(712), - [anon_sym_printf] = ACTIONS(712), - [anon_sym_GT] = ACTIONS(712), - [anon_sym_GT_GT] = ACTIONS(712), - [anon_sym_PIPE] = ACTIONS(712), - [anon_sym_PIPE_AMP] = ACTIONS(712), - [anon_sym_QMARK] = ACTIONS(712), - [anon_sym_CARET] = ACTIONS(712), - [anon_sym_STAR_STAR] = ACTIONS(712), - [anon_sym_STAR] = ACTIONS(712), - [anon_sym_SLASH] = ACTIONS(712), - [anon_sym_PERCENT] = ACTIONS(712), - [anon_sym_PLUS] = ACTIONS(712), - [anon_sym_DASH] = ACTIONS(712), - [anon_sym_LT_EQ] = ACTIONS(712), - [anon_sym_GT_EQ] = ACTIONS(712), - [anon_sym_EQ_EQ] = ACTIONS(712), - [anon_sym_BANG_EQ] = ACTIONS(712), - [anon_sym_TILDE] = ACTIONS(712), - [anon_sym_BANG_TILDE] = ACTIONS(712), - [anon_sym_AMP_AMP] = ACTIONS(712), - [anon_sym_PIPE_PIPE] = ACTIONS(712), - [anon_sym_BANG] = ACTIONS(712), - [anon_sym_PLUS_PLUS] = ACTIONS(712), - [anon_sym_DASH_DASH] = ACTIONS(712), - [anon_sym_EQ] = ACTIONS(712), - [anon_sym_PLUS_EQ] = ACTIONS(712), - [anon_sym_DASH_EQ] = ACTIONS(712), - [anon_sym_STAR_EQ] = ACTIONS(712), - [anon_sym_SLASH_EQ] = ACTIONS(712), - [anon_sym_PERCENT_EQ] = ACTIONS(712), - [anon_sym_CARET_EQ] = ACTIONS(712), - [anon_sym_DOLLAR] = ACTIONS(712), - [anon_sym_AT] = ACTIONS(712), - [aux_sym_number_token1] = ACTIONS(712), - [aux_sym_number_token2] = ACTIONS(712), - [anon_sym_DQUOTE] = ACTIONS(712), - [anon_sym_POUND] = ACTIONS(712), - [sym_concatenating_space] = ACTIONS(714), - }, - [192] = { - [sym_identifier] = ACTIONS(678), - [anon_sym_COMMA] = ACTIONS(678), - [anon_sym_SEMI] = ACTIONS(678), - [anon_sym_LF] = ACTIONS(678), - [anon_sym_CR_LF] = ACTIONS(678), - [anon_sym_if] = ACTIONS(678), - [anon_sym_LPAREN] = ACTIONS(678), - [anon_sym_while] = ACTIONS(678), - [anon_sym_do] = ACTIONS(678), - [anon_sym_for] = ACTIONS(678), - [anon_sym_in] = ACTIONS(678), - [sym_break_statement] = ACTIONS(678), - [sym_continue_statement] = ACTIONS(678), - [anon_sym_delete] = ACTIONS(678), - [anon_sym_exit] = ACTIONS(678), - [anon_sym_return] = ACTIONS(678), - [anon_sym_switch] = ACTIONS(678), - [anon_sym_LBRACE] = ACTIONS(678), - [anon_sym_RBRACE] = ACTIONS(678), - [anon_sym_case] = ACTIONS(678), - [anon_sym_default] = ACTIONS(678), - [anon_sym_getline] = ACTIONS(678), - [anon_sym_LT] = ACTIONS(678), - [sym_next_statement] = ACTIONS(678), - [sym_nextfile_statement] = ACTIONS(678), - [anon_sym_print] = ACTIONS(678), - [anon_sym_printf] = ACTIONS(678), - [anon_sym_GT] = ACTIONS(678), - [anon_sym_GT_GT] = ACTIONS(678), - [anon_sym_PIPE] = ACTIONS(678), - [anon_sym_PIPE_AMP] = ACTIONS(678), - [anon_sym_QMARK] = ACTIONS(678), - [anon_sym_CARET] = ACTIONS(678), - [anon_sym_STAR_STAR] = ACTIONS(678), - [anon_sym_STAR] = ACTIONS(678), - [anon_sym_SLASH] = ACTIONS(678), - [anon_sym_PERCENT] = ACTIONS(678), - [anon_sym_PLUS] = ACTIONS(678), - [anon_sym_DASH] = ACTIONS(678), - [anon_sym_LT_EQ] = ACTIONS(678), - [anon_sym_GT_EQ] = ACTIONS(678), - [anon_sym_EQ_EQ] = ACTIONS(678), - [anon_sym_BANG_EQ] = ACTIONS(678), - [anon_sym_TILDE] = ACTIONS(678), - [anon_sym_BANG_TILDE] = ACTIONS(678), - [anon_sym_AMP_AMP] = ACTIONS(678), - [anon_sym_PIPE_PIPE] = ACTIONS(678), - [anon_sym_BANG] = ACTIONS(678), - [anon_sym_PLUS_PLUS] = ACTIONS(678), - [anon_sym_DASH_DASH] = ACTIONS(678), - [anon_sym_EQ] = ACTIONS(678), - [anon_sym_PLUS_EQ] = ACTIONS(678), - [anon_sym_DASH_EQ] = ACTIONS(678), - [anon_sym_STAR_EQ] = ACTIONS(678), - [anon_sym_SLASH_EQ] = ACTIONS(678), - [anon_sym_PERCENT_EQ] = ACTIONS(678), - [anon_sym_CARET_EQ] = ACTIONS(678), - [anon_sym_DOLLAR] = ACTIONS(678), - [anon_sym_LBRACK] = ACTIONS(688), - [anon_sym_AT] = ACTIONS(678), - [aux_sym_number_token1] = ACTIONS(678), - [aux_sym_number_token2] = ACTIONS(678), - [anon_sym_DQUOTE] = ACTIONS(678), - [anon_sym_POUND] = ACTIONS(678), - [sym_concatenating_space] = ACTIONS(680), + [anon_sym_COMMA] = ACTIONS(764), + [anon_sym_SEMI] = ACTIONS(764), + [anon_sym_LF] = ACTIONS(764), + [anon_sym_CR_LF] = ACTIONS(764), + [anon_sym_if] = ACTIONS(764), + [anon_sym_LPAREN] = ACTIONS(764), + [anon_sym_while] = ACTIONS(764), + [anon_sym_do] = ACTIONS(764), + [anon_sym_for] = ACTIONS(764), + [anon_sym_in] = ACTIONS(764), + [sym_break_statement] = ACTIONS(764), + [sym_continue_statement] = ACTIONS(764), + [anon_sym_delete] = ACTIONS(764), + [anon_sym_exit] = ACTIONS(764), + [anon_sym_return] = ACTIONS(764), + [anon_sym_switch] = ACTIONS(764), + [anon_sym_LBRACE] = ACTIONS(764), + [anon_sym_RBRACE] = ACTIONS(764), + [anon_sym_case] = ACTIONS(764), + [anon_sym_default] = ACTIONS(764), + [anon_sym_getline] = ACTIONS(764), + [anon_sym_LT] = ACTIONS(764), + [sym_next_statement] = ACTIONS(764), + [sym_nextfile_statement] = ACTIONS(764), + [anon_sym_print] = ACTIONS(764), + [anon_sym_printf] = ACTIONS(764), + [anon_sym_GT] = ACTIONS(764), + [anon_sym_GT_GT] = ACTIONS(764), + [anon_sym_PIPE] = ACTIONS(764), + [anon_sym_PIPE_AMP] = ACTIONS(764), + [anon_sym_QMARK] = ACTIONS(764), + [anon_sym_CARET] = ACTIONS(764), + [anon_sym_STAR_STAR] = ACTIONS(764), + [anon_sym_STAR] = ACTIONS(764), + [anon_sym_SLASH] = ACTIONS(764), + [anon_sym_PERCENT] = ACTIONS(764), + [anon_sym_PLUS] = ACTIONS(764), + [anon_sym_DASH] = ACTIONS(764), + [anon_sym_LT_EQ] = ACTIONS(764), + [anon_sym_GT_EQ] = ACTIONS(764), + [anon_sym_EQ_EQ] = ACTIONS(764), + [anon_sym_BANG_EQ] = ACTIONS(764), + [anon_sym_TILDE] = ACTIONS(764), + [anon_sym_BANG_TILDE] = ACTIONS(764), + [anon_sym_AMP_AMP] = ACTIONS(764), + [anon_sym_PIPE_PIPE] = ACTIONS(764), + [anon_sym_BANG] = ACTIONS(764), + [anon_sym_PLUS_PLUS] = ACTIONS(764), + [anon_sym_DASH_DASH] = ACTIONS(764), + [anon_sym_EQ] = ACTIONS(764), + [anon_sym_PLUS_EQ] = ACTIONS(764), + [anon_sym_DASH_EQ] = ACTIONS(764), + [anon_sym_STAR_EQ] = ACTIONS(764), + [anon_sym_SLASH_EQ] = ACTIONS(764), + [anon_sym_PERCENT_EQ] = ACTIONS(764), + [anon_sym_CARET_EQ] = ACTIONS(764), + [anon_sym_DOLLAR] = ACTIONS(764), + [anon_sym_AT] = ACTIONS(764), + [aux_sym_number_token1] = ACTIONS(764), + [aux_sym_number_token2] = ACTIONS(764), + [anon_sym_DQUOTE] = ACTIONS(764), + [anon_sym_POUND] = ACTIONS(764), + [sym_concatenating_space] = ACTIONS(766), + [sym__if_else_separator] = ACTIONS(766), }, - [193] = { + [194] = { [sym_identifier] = ACTIONS(768), [anon_sym_COMMA] = ACTIONS(768), [anon_sym_SEMI] = ACTIONS(768), @@ -22209,7 +22578,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_concatenating_space] = ACTIONS(770), [sym__if_else_separator] = ACTIONS(770), }, - [194] = { + [195] = { [sym_identifier] = ACTIONS(772), [anon_sym_COMMA] = ACTIONS(772), [anon_sym_SEMI] = ACTIONS(772), @@ -22276,141 +22645,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_concatenating_space] = ACTIONS(774), [sym__if_else_separator] = ACTIONS(774), }, - [195] = { - [sym_identifier] = ACTIONS(682), - [anon_sym_COMMA] = ACTIONS(682), - [anon_sym_SEMI] = ACTIONS(682), - [anon_sym_LF] = ACTIONS(682), - [anon_sym_CR_LF] = ACTIONS(682), - [anon_sym_if] = ACTIONS(682), - [anon_sym_LPAREN] = ACTIONS(682), - [anon_sym_while] = ACTIONS(682), - [anon_sym_do] = ACTIONS(682), - [anon_sym_for] = ACTIONS(682), - [anon_sym_in] = ACTIONS(682), - [sym_break_statement] = ACTIONS(682), - [sym_continue_statement] = ACTIONS(682), - [anon_sym_delete] = ACTIONS(682), - [anon_sym_exit] = ACTIONS(682), - [anon_sym_return] = ACTIONS(682), - [anon_sym_switch] = ACTIONS(682), - [anon_sym_LBRACE] = ACTIONS(682), - [anon_sym_RBRACE] = ACTIONS(682), - [anon_sym_case] = ACTIONS(682), - [anon_sym_default] = ACTIONS(682), - [anon_sym_getline] = ACTIONS(682), - [anon_sym_LT] = ACTIONS(682), - [sym_next_statement] = ACTIONS(682), - [sym_nextfile_statement] = ACTIONS(682), - [anon_sym_print] = ACTIONS(682), - [anon_sym_printf] = ACTIONS(682), - [anon_sym_GT] = ACTIONS(682), - [anon_sym_GT_GT] = ACTIONS(682), - [anon_sym_PIPE] = ACTIONS(682), - [anon_sym_PIPE_AMP] = ACTIONS(682), - [anon_sym_QMARK] = ACTIONS(682), - [anon_sym_CARET] = ACTIONS(682), - [anon_sym_STAR_STAR] = ACTIONS(682), - [anon_sym_STAR] = ACTIONS(682), - [anon_sym_SLASH] = ACTIONS(682), - [anon_sym_PERCENT] = ACTIONS(682), - [anon_sym_PLUS] = ACTIONS(682), - [anon_sym_DASH] = ACTIONS(682), - [anon_sym_LT_EQ] = ACTIONS(682), - [anon_sym_GT_EQ] = ACTIONS(682), - [anon_sym_EQ_EQ] = ACTIONS(682), - [anon_sym_BANG_EQ] = ACTIONS(682), - [anon_sym_TILDE] = ACTIONS(682), - [anon_sym_BANG_TILDE] = ACTIONS(682), - [anon_sym_AMP_AMP] = ACTIONS(682), - [anon_sym_PIPE_PIPE] = ACTIONS(682), - [anon_sym_BANG] = ACTIONS(682), - [anon_sym_PLUS_PLUS] = ACTIONS(682), - [anon_sym_DASH_DASH] = ACTIONS(682), - [anon_sym_EQ] = ACTIONS(682), - [anon_sym_PLUS_EQ] = ACTIONS(682), - [anon_sym_DASH_EQ] = ACTIONS(682), - [anon_sym_STAR_EQ] = ACTIONS(682), - [anon_sym_SLASH_EQ] = ACTIONS(682), - [anon_sym_PERCENT_EQ] = ACTIONS(682), - [anon_sym_CARET_EQ] = ACTIONS(682), - [anon_sym_DOLLAR] = ACTIONS(682), - [anon_sym_AT] = ACTIONS(682), - [aux_sym_number_token1] = ACTIONS(682), - [aux_sym_number_token2] = ACTIONS(682), - [anon_sym_DQUOTE] = ACTIONS(682), - [anon_sym_POUND] = ACTIONS(682), - [sym_concatenating_space] = ACTIONS(684), - [sym__if_else_separator] = ACTIONS(684), - }, [196] = { - [sym_identifier] = ACTIONS(644), - [anon_sym_COMMA] = ACTIONS(644), - [anon_sym_SEMI] = ACTIONS(644), - [anon_sym_LF] = ACTIONS(644), - [anon_sym_CR_LF] = ACTIONS(644), - [anon_sym_if] = ACTIONS(644), - [anon_sym_LPAREN] = ACTIONS(644), - [anon_sym_while] = ACTIONS(644), - [anon_sym_do] = ACTIONS(644), - [anon_sym_for] = ACTIONS(644), - [anon_sym_in] = ACTIONS(644), - [sym_break_statement] = ACTIONS(644), - [sym_continue_statement] = ACTIONS(644), - [anon_sym_delete] = ACTIONS(644), - [anon_sym_exit] = ACTIONS(644), - [anon_sym_return] = ACTIONS(644), - [anon_sym_switch] = ACTIONS(644), - [anon_sym_LBRACE] = ACTIONS(644), - [anon_sym_RBRACE] = ACTIONS(644), - [anon_sym_getline] = ACTIONS(644), - [anon_sym_LT] = ACTIONS(644), - [sym_next_statement] = ACTIONS(644), - [sym_nextfile_statement] = ACTIONS(644), - [anon_sym_print] = ACTIONS(644), - [anon_sym_LPAREN2] = ACTIONS(716), - [anon_sym_printf] = ACTIONS(644), - [anon_sym_GT] = ACTIONS(644), - [anon_sym_GT_GT] = ACTIONS(644), - [anon_sym_PIPE] = ACTIONS(644), - [anon_sym_PIPE_AMP] = ACTIONS(644), - [anon_sym_QMARK] = ACTIONS(644), - [anon_sym_CARET] = ACTIONS(644), - [anon_sym_STAR_STAR] = ACTIONS(644), - [anon_sym_STAR] = ACTIONS(644), - [anon_sym_SLASH] = ACTIONS(644), - [anon_sym_PERCENT] = ACTIONS(644), - [anon_sym_PLUS] = ACTIONS(644), - [anon_sym_DASH] = ACTIONS(644), - [anon_sym_LT_EQ] = ACTIONS(644), - [anon_sym_GT_EQ] = ACTIONS(644), - [anon_sym_EQ_EQ] = ACTIONS(644), - [anon_sym_BANG_EQ] = ACTIONS(644), - [anon_sym_TILDE] = ACTIONS(644), - [anon_sym_BANG_TILDE] = ACTIONS(644), - [anon_sym_AMP_AMP] = ACTIONS(644), - [anon_sym_PIPE_PIPE] = ACTIONS(644), - [anon_sym_BANG] = ACTIONS(644), - [anon_sym_PLUS_PLUS] = ACTIONS(726), - [anon_sym_DASH_DASH] = ACTIONS(726), - [anon_sym_EQ] = ACTIONS(728), - [anon_sym_PLUS_EQ] = ACTIONS(728), - [anon_sym_DASH_EQ] = ACTIONS(728), - [anon_sym_STAR_EQ] = ACTIONS(728), - [anon_sym_SLASH_EQ] = ACTIONS(728), - [anon_sym_PERCENT_EQ] = ACTIONS(728), - [anon_sym_CARET_EQ] = ACTIONS(728), - [anon_sym_DOLLAR] = ACTIONS(644), - [anon_sym_LBRACK] = ACTIONS(650), - [anon_sym_AT] = ACTIONS(644), - [aux_sym_number_token1] = ACTIONS(644), - [aux_sym_number_token2] = ACTIONS(644), - [anon_sym_DQUOTE] = ACTIONS(644), - [anon_sym_POUND] = ACTIONS(644), - [sym_concatenating_space] = ACTIONS(730), - [sym__if_else_separator] = ACTIONS(658), - }, - [197] = { [sym_identifier] = ACTIONS(776), [anon_sym_COMMA] = ACTIONS(776), [anon_sym_SEMI] = ACTIONS(776), @@ -22477,7 +22712,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_concatenating_space] = ACTIONS(778), [sym__if_else_separator] = ACTIONS(778), }, - [198] = { + [197] = { [sym_identifier] = ACTIONS(780), [anon_sym_COMMA] = ACTIONS(780), [anon_sym_SEMI] = ACTIONS(780), @@ -22544,409 +22779,141 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_concatenating_space] = ACTIONS(782), [sym__if_else_separator] = ACTIONS(782), }, - [199] = { + [198] = { + [sym_array_ref] = STATE(209), + [sym_namespace] = STATE(2066), + [sym_ns_qualified_name] = STATE(209), [sym_identifier] = ACTIONS(784), - [anon_sym_COMMA] = ACTIONS(784), - [anon_sym_SEMI] = ACTIONS(784), - [anon_sym_LF] = ACTIONS(784), - [anon_sym_CR_LF] = ACTIONS(784), - [anon_sym_if] = ACTIONS(784), - [anon_sym_LPAREN] = ACTIONS(784), - [anon_sym_while] = ACTIONS(784), - [anon_sym_do] = ACTIONS(784), - [anon_sym_for] = ACTIONS(784), - [anon_sym_in] = ACTIONS(784), - [sym_break_statement] = ACTIONS(784), - [sym_continue_statement] = ACTIONS(784), - [anon_sym_delete] = ACTIONS(784), - [anon_sym_exit] = ACTIONS(784), - [anon_sym_return] = ACTIONS(784), - [anon_sym_switch] = ACTIONS(784), - [anon_sym_LBRACE] = ACTIONS(784), - [anon_sym_RBRACE] = ACTIONS(784), - [anon_sym_case] = ACTIONS(784), - [anon_sym_default] = ACTIONS(784), - [anon_sym_getline] = ACTIONS(784), - [anon_sym_LT] = ACTIONS(784), - [sym_next_statement] = ACTIONS(784), - [sym_nextfile_statement] = ACTIONS(784), - [anon_sym_print] = ACTIONS(784), - [anon_sym_printf] = ACTIONS(784), - [anon_sym_GT] = ACTIONS(784), - [anon_sym_GT_GT] = ACTIONS(784), - [anon_sym_PIPE] = ACTIONS(784), - [anon_sym_PIPE_AMP] = ACTIONS(784), - [anon_sym_QMARK] = ACTIONS(784), - [anon_sym_CARET] = ACTIONS(784), - [anon_sym_STAR_STAR] = ACTIONS(784), - [anon_sym_STAR] = ACTIONS(784), - [anon_sym_SLASH] = ACTIONS(784), - [anon_sym_PERCENT] = ACTIONS(784), - [anon_sym_PLUS] = ACTIONS(784), - [anon_sym_DASH] = ACTIONS(784), - [anon_sym_LT_EQ] = ACTIONS(784), - [anon_sym_GT_EQ] = ACTIONS(784), - [anon_sym_EQ_EQ] = ACTIONS(784), - [anon_sym_BANG_EQ] = ACTIONS(784), - [anon_sym_TILDE] = ACTIONS(784), - [anon_sym_BANG_TILDE] = ACTIONS(784), - [anon_sym_AMP_AMP] = ACTIONS(784), - [anon_sym_PIPE_PIPE] = ACTIONS(784), - [anon_sym_BANG] = ACTIONS(784), - [anon_sym_PLUS_PLUS] = ACTIONS(784), - [anon_sym_DASH_DASH] = ACTIONS(784), - [anon_sym_EQ] = ACTIONS(784), - [anon_sym_PLUS_EQ] = ACTIONS(784), - [anon_sym_DASH_EQ] = ACTIONS(784), - [anon_sym_STAR_EQ] = ACTIONS(784), - [anon_sym_SLASH_EQ] = ACTIONS(784), - [anon_sym_PERCENT_EQ] = ACTIONS(784), - [anon_sym_CARET_EQ] = ACTIONS(784), - [anon_sym_DOLLAR] = ACTIONS(784), - [anon_sym_AT] = ACTIONS(784), - [aux_sym_number_token1] = ACTIONS(784), - [aux_sym_number_token2] = ACTIONS(784), - [anon_sym_DQUOTE] = ACTIONS(784), - [anon_sym_POUND] = ACTIONS(784), - [sym_concatenating_space] = ACTIONS(786), - [sym__if_else_separator] = ACTIONS(786), - }, - [200] = { - [sym_identifier] = ACTIONS(788), - [anon_sym_COMMA] = ACTIONS(788), - [anon_sym_SEMI] = ACTIONS(788), - [anon_sym_LF] = ACTIONS(788), - [anon_sym_CR_LF] = ACTIONS(788), - [anon_sym_if] = ACTIONS(788), - [anon_sym_LPAREN] = ACTIONS(788), - [anon_sym_while] = ACTIONS(788), - [anon_sym_do] = ACTIONS(788), - [anon_sym_for] = ACTIONS(788), - [anon_sym_in] = ACTIONS(788), - [sym_break_statement] = ACTIONS(788), - [sym_continue_statement] = ACTIONS(788), - [anon_sym_delete] = ACTIONS(788), - [anon_sym_exit] = ACTIONS(788), - [anon_sym_return] = ACTIONS(788), - [anon_sym_switch] = ACTIONS(788), - [anon_sym_LBRACE] = ACTIONS(788), - [anon_sym_RBRACE] = ACTIONS(788), - [anon_sym_case] = ACTIONS(788), - [anon_sym_default] = ACTIONS(788), - [anon_sym_getline] = ACTIONS(788), - [anon_sym_LT] = ACTIONS(788), - [sym_next_statement] = ACTIONS(788), - [sym_nextfile_statement] = ACTIONS(788), - [anon_sym_print] = ACTIONS(788), - [anon_sym_printf] = ACTIONS(788), - [anon_sym_GT] = ACTIONS(788), - [anon_sym_GT_GT] = ACTIONS(788), - [anon_sym_PIPE] = ACTIONS(788), - [anon_sym_PIPE_AMP] = ACTIONS(788), - [anon_sym_QMARK] = ACTIONS(788), - [anon_sym_CARET] = ACTIONS(788), - [anon_sym_STAR_STAR] = ACTIONS(788), - [anon_sym_STAR] = ACTIONS(788), - [anon_sym_SLASH] = ACTIONS(788), - [anon_sym_PERCENT] = ACTIONS(788), - [anon_sym_PLUS] = ACTIONS(788), - [anon_sym_DASH] = ACTIONS(788), - [anon_sym_LT_EQ] = ACTIONS(788), - [anon_sym_GT_EQ] = ACTIONS(788), - [anon_sym_EQ_EQ] = ACTIONS(788), - [anon_sym_BANG_EQ] = ACTIONS(788), - [anon_sym_TILDE] = ACTIONS(788), - [anon_sym_BANG_TILDE] = ACTIONS(788), - [anon_sym_AMP_AMP] = ACTIONS(788), - [anon_sym_PIPE_PIPE] = ACTIONS(788), - [anon_sym_BANG] = ACTIONS(788), - [anon_sym_PLUS_PLUS] = ACTIONS(788), - [anon_sym_DASH_DASH] = ACTIONS(788), - [anon_sym_EQ] = ACTIONS(788), - [anon_sym_PLUS_EQ] = ACTIONS(788), - [anon_sym_DASH_EQ] = ACTIONS(788), - [anon_sym_STAR_EQ] = ACTIONS(788), - [anon_sym_SLASH_EQ] = ACTIONS(788), - [anon_sym_PERCENT_EQ] = ACTIONS(788), - [anon_sym_CARET_EQ] = ACTIONS(788), - [anon_sym_DOLLAR] = ACTIONS(788), - [anon_sym_AT] = ACTIONS(788), - [aux_sym_number_token1] = ACTIONS(788), - [aux_sym_number_token2] = ACTIONS(788), - [anon_sym_DQUOTE] = ACTIONS(788), - [anon_sym_POUND] = ACTIONS(788), - [sym_concatenating_space] = ACTIONS(790), - [sym__if_else_separator] = ACTIONS(790), - }, - [201] = { - [sym_identifier] = ACTIONS(792), - [anon_sym_COMMA] = ACTIONS(792), - [anon_sym_SEMI] = ACTIONS(792), - [anon_sym_LF] = ACTIONS(792), - [anon_sym_CR_LF] = ACTIONS(792), - [anon_sym_if] = ACTIONS(792), - [anon_sym_LPAREN] = ACTIONS(792), - [anon_sym_while] = ACTIONS(792), - [anon_sym_do] = ACTIONS(792), - [anon_sym_for] = ACTIONS(792), - [anon_sym_in] = ACTIONS(792), - [sym_break_statement] = ACTIONS(792), - [sym_continue_statement] = ACTIONS(792), - [anon_sym_delete] = ACTIONS(792), - [anon_sym_exit] = ACTIONS(792), - [anon_sym_return] = ACTIONS(792), - [anon_sym_switch] = ACTIONS(792), - [anon_sym_LBRACE] = ACTIONS(792), - [anon_sym_RBRACE] = ACTIONS(792), - [anon_sym_case] = ACTIONS(792), - [anon_sym_default] = ACTIONS(792), - [anon_sym_getline] = ACTIONS(792), - [anon_sym_LT] = ACTIONS(792), - [sym_next_statement] = ACTIONS(792), - [sym_nextfile_statement] = ACTIONS(792), - [anon_sym_print] = ACTIONS(792), - [anon_sym_printf] = ACTIONS(792), - [anon_sym_GT] = ACTIONS(792), - [anon_sym_GT_GT] = ACTIONS(792), - [anon_sym_PIPE] = ACTIONS(792), - [anon_sym_PIPE_AMP] = ACTIONS(792), - [anon_sym_QMARK] = ACTIONS(792), - [anon_sym_CARET] = ACTIONS(792), - [anon_sym_STAR_STAR] = ACTIONS(792), - [anon_sym_STAR] = ACTIONS(792), - [anon_sym_SLASH] = ACTIONS(792), - [anon_sym_PERCENT] = ACTIONS(792), - [anon_sym_PLUS] = ACTIONS(792), - [anon_sym_DASH] = ACTIONS(792), - [anon_sym_LT_EQ] = ACTIONS(792), - [anon_sym_GT_EQ] = ACTIONS(792), - [anon_sym_EQ_EQ] = ACTIONS(792), - [anon_sym_BANG_EQ] = ACTIONS(792), - [anon_sym_TILDE] = ACTIONS(792), - [anon_sym_BANG_TILDE] = ACTIONS(792), - [anon_sym_AMP_AMP] = ACTIONS(792), - [anon_sym_PIPE_PIPE] = ACTIONS(792), - [anon_sym_BANG] = ACTIONS(792), - [anon_sym_PLUS_PLUS] = ACTIONS(792), - [anon_sym_DASH_DASH] = ACTIONS(792), - [anon_sym_EQ] = ACTIONS(792), - [anon_sym_PLUS_EQ] = ACTIONS(792), - [anon_sym_DASH_EQ] = ACTIONS(792), - [anon_sym_STAR_EQ] = ACTIONS(792), - [anon_sym_SLASH_EQ] = ACTIONS(792), - [anon_sym_PERCENT_EQ] = ACTIONS(792), - [anon_sym_CARET_EQ] = ACTIONS(792), - [anon_sym_DOLLAR] = ACTIONS(792), - [anon_sym_AT] = ACTIONS(792), - [aux_sym_number_token1] = ACTIONS(792), - [aux_sym_number_token2] = ACTIONS(792), - [anon_sym_DQUOTE] = ACTIONS(792), - [anon_sym_POUND] = ACTIONS(792), - [sym_concatenating_space] = ACTIONS(794), - [sym__if_else_separator] = ACTIONS(794), - }, - [202] = { - [sym_identifier] = ACTIONS(644), - [anon_sym_COMMA] = ACTIONS(644), - [anon_sym_SEMI] = ACTIONS(644), - [anon_sym_LF] = ACTIONS(644), - [anon_sym_CR_LF] = ACTIONS(644), - [anon_sym_if] = ACTIONS(644), - [anon_sym_LPAREN] = ACTIONS(644), - [anon_sym_while] = ACTIONS(644), - [anon_sym_do] = ACTIONS(644), - [anon_sym_for] = ACTIONS(644), - [anon_sym_in] = ACTIONS(644), - [sym_break_statement] = ACTIONS(644), - [sym_continue_statement] = ACTIONS(644), - [anon_sym_delete] = ACTIONS(644), - [anon_sym_exit] = ACTIONS(644), - [anon_sym_return] = ACTIONS(644), - [anon_sym_switch] = ACTIONS(644), - [anon_sym_LBRACE] = ACTIONS(644), - [anon_sym_RBRACE] = ACTIONS(644), - [anon_sym_case] = ACTIONS(644), - [anon_sym_default] = ACTIONS(644), - [anon_sym_getline] = ACTIONS(644), - [anon_sym_LT] = ACTIONS(644), - [sym_next_statement] = ACTIONS(644), - [sym_nextfile_statement] = ACTIONS(644), - [anon_sym_print] = ACTIONS(644), - [anon_sym_printf] = ACTIONS(644), - [anon_sym_GT] = ACTIONS(644), - [anon_sym_GT_GT] = ACTIONS(644), - [anon_sym_PIPE] = ACTIONS(644), - [anon_sym_PIPE_AMP] = ACTIONS(644), - [anon_sym_QMARK] = ACTIONS(644), - [anon_sym_CARET] = ACTIONS(644), - [anon_sym_STAR_STAR] = ACTIONS(644), - [anon_sym_STAR] = ACTIONS(644), - [anon_sym_SLASH] = ACTIONS(644), - [anon_sym_PERCENT] = ACTIONS(644), - [anon_sym_PLUS] = ACTIONS(644), - [anon_sym_DASH] = ACTIONS(644), - [anon_sym_LT_EQ] = ACTIONS(644), - [anon_sym_GT_EQ] = ACTIONS(644), - [anon_sym_EQ_EQ] = ACTIONS(644), - [anon_sym_BANG_EQ] = ACTIONS(644), - [anon_sym_TILDE] = ACTIONS(644), - [anon_sym_BANG_TILDE] = ACTIONS(644), - [anon_sym_AMP_AMP] = ACTIONS(644), - [anon_sym_PIPE_PIPE] = ACTIONS(644), - [anon_sym_BANG] = ACTIONS(644), - [anon_sym_PLUS_PLUS] = ACTIONS(656), - [anon_sym_DASH_DASH] = ACTIONS(656), - [anon_sym_EQ] = ACTIONS(644), - [anon_sym_PLUS_EQ] = ACTIONS(644), - [anon_sym_DASH_EQ] = ACTIONS(644), - [anon_sym_STAR_EQ] = ACTIONS(644), - [anon_sym_SLASH_EQ] = ACTIONS(644), - [anon_sym_PERCENT_EQ] = ACTIONS(644), - [anon_sym_CARET_EQ] = ACTIONS(644), - [anon_sym_DOLLAR] = ACTIONS(644), - [anon_sym_AT] = ACTIONS(644), - [aux_sym_number_token1] = ACTIONS(644), - [aux_sym_number_token2] = ACTIONS(644), - [anon_sym_DQUOTE] = ACTIONS(644), - [anon_sym_POUND] = ACTIONS(644), - [sym_concatenating_space] = ACTIONS(658), - [sym__if_else_separator] = ACTIONS(658), - }, - [203] = { - [sym_identifier] = ACTIONS(644), - [anon_sym_COMMA] = ACTIONS(644), - [anon_sym_SEMI] = ACTIONS(644), - [anon_sym_LF] = ACTIONS(644), - [anon_sym_CR_LF] = ACTIONS(644), - [anon_sym_if] = ACTIONS(644), - [anon_sym_LPAREN] = ACTIONS(644), - [anon_sym_while] = ACTIONS(644), - [anon_sym_do] = ACTIONS(644), - [anon_sym_for] = ACTIONS(644), - [anon_sym_in] = ACTIONS(644), - [sym_break_statement] = ACTIONS(644), - [sym_continue_statement] = ACTIONS(644), - [anon_sym_delete] = ACTIONS(644), - [anon_sym_exit] = ACTIONS(644), - [anon_sym_return] = ACTIONS(644), - [anon_sym_switch] = ACTIONS(644), - [anon_sym_LBRACE] = ACTIONS(644), - [anon_sym_RBRACE] = ACTIONS(644), - [anon_sym_getline] = ACTIONS(644), - [anon_sym_LT] = ACTIONS(644), - [sym_next_statement] = ACTIONS(644), - [sym_nextfile_statement] = ACTIONS(644), - [anon_sym_print] = ACTIONS(644), - [anon_sym_LPAREN2] = ACTIONS(716), - [anon_sym_printf] = ACTIONS(644), - [anon_sym_GT] = ACTIONS(644), - [anon_sym_GT_GT] = ACTIONS(644), - [anon_sym_PIPE] = ACTIONS(644), - [anon_sym_PIPE_AMP] = ACTIONS(644), - [anon_sym_QMARK] = ACTIONS(644), - [anon_sym_CARET] = ACTIONS(644), - [anon_sym_STAR_STAR] = ACTIONS(644), - [anon_sym_STAR] = ACTIONS(644), - [anon_sym_SLASH] = ACTIONS(644), - [anon_sym_PERCENT] = ACTIONS(644), - [anon_sym_PLUS] = ACTIONS(644), - [anon_sym_DASH] = ACTIONS(644), - [anon_sym_LT_EQ] = ACTIONS(644), - [anon_sym_GT_EQ] = ACTIONS(644), - [anon_sym_EQ_EQ] = ACTIONS(644), - [anon_sym_BANG_EQ] = ACTIONS(644), - [anon_sym_TILDE] = ACTIONS(644), - [anon_sym_BANG_TILDE] = ACTIONS(644), - [anon_sym_AMP_AMP] = ACTIONS(644), - [anon_sym_PIPE_PIPE] = ACTIONS(644), - [anon_sym_BANG] = ACTIONS(644), - [anon_sym_PLUS_PLUS] = ACTIONS(718), - [anon_sym_DASH_DASH] = ACTIONS(718), - [anon_sym_EQ] = ACTIONS(720), - [anon_sym_PLUS_EQ] = ACTIONS(720), - [anon_sym_DASH_EQ] = ACTIONS(720), - [anon_sym_STAR_EQ] = ACTIONS(720), - [anon_sym_SLASH_EQ] = ACTIONS(720), - [anon_sym_PERCENT_EQ] = ACTIONS(720), - [anon_sym_CARET_EQ] = ACTIONS(720), - [anon_sym_DOLLAR] = ACTIONS(644), - [anon_sym_LBRACK] = ACTIONS(650), - [anon_sym_AT] = ACTIONS(644), - [aux_sym_number_token1] = ACTIONS(644), - [aux_sym_number_token2] = ACTIONS(644), - [anon_sym_DQUOTE] = ACTIONS(644), - [anon_sym_POUND] = ACTIONS(644), - [sym_concatenating_space] = ACTIONS(658), - [sym__if_else_separator] = ACTIONS(658), + [anon_sym_COMMA] = ACTIONS(726), + [anon_sym_SEMI] = ACTIONS(726), + [anon_sym_LF] = ACTIONS(726), + [anon_sym_CR_LF] = ACTIONS(726), + [anon_sym_if] = ACTIONS(726), + [anon_sym_LPAREN] = ACTIONS(726), + [anon_sym_while] = ACTIONS(726), + [anon_sym_do] = ACTIONS(726), + [anon_sym_for] = ACTIONS(726), + [anon_sym_in] = ACTIONS(726), + [sym_break_statement] = ACTIONS(726), + [sym_continue_statement] = ACTIONS(726), + [anon_sym_delete] = ACTIONS(726), + [anon_sym_exit] = ACTIONS(726), + [anon_sym_return] = ACTIONS(726), + [anon_sym_switch] = ACTIONS(726), + [anon_sym_LBRACE] = ACTIONS(726), + [anon_sym_RBRACE] = ACTIONS(726), + [anon_sym_getline] = ACTIONS(726), + [anon_sym_LT] = ACTIONS(726), + [sym_next_statement] = ACTIONS(726), + [sym_nextfile_statement] = ACTIONS(726), + [anon_sym_print] = ACTIONS(726), + [anon_sym_printf] = ACTIONS(726), + [anon_sym_GT] = ACTIONS(726), + [anon_sym_GT_GT] = ACTIONS(726), + [anon_sym_PIPE] = ACTIONS(726), + [anon_sym_PIPE_AMP] = ACTIONS(726), + [anon_sym_QMARK] = ACTIONS(726), + [anon_sym_CARET] = ACTIONS(726), + [anon_sym_STAR_STAR] = ACTIONS(726), + [anon_sym_STAR] = ACTIONS(726), + [anon_sym_SLASH] = ACTIONS(726), + [anon_sym_PERCENT] = ACTIONS(726), + [anon_sym_PLUS] = ACTIONS(726), + [anon_sym_DASH] = ACTIONS(726), + [anon_sym_LT_EQ] = ACTIONS(726), + [anon_sym_GT_EQ] = ACTIONS(726), + [anon_sym_EQ_EQ] = ACTIONS(726), + [anon_sym_BANG_EQ] = ACTIONS(726), + [anon_sym_TILDE] = ACTIONS(726), + [anon_sym_BANG_TILDE] = ACTIONS(726), + [anon_sym_AMP_AMP] = ACTIONS(726), + [anon_sym_PIPE_PIPE] = ACTIONS(726), + [anon_sym_BANG] = ACTIONS(726), + [anon_sym_PLUS_PLUS] = ACTIONS(726), + [anon_sym_DASH_DASH] = ACTIONS(726), + [anon_sym_EQ] = ACTIONS(726), + [anon_sym_PLUS_EQ] = ACTIONS(726), + [anon_sym_DASH_EQ] = ACTIONS(726), + [anon_sym_STAR_EQ] = ACTIONS(726), + [anon_sym_SLASH_EQ] = ACTIONS(726), + [anon_sym_PERCENT_EQ] = ACTIONS(726), + [anon_sym_CARET_EQ] = ACTIONS(726), + [anon_sym_DOLLAR] = ACTIONS(726), + [anon_sym_AT] = ACTIONS(726), + [aux_sym_number_token1] = ACTIONS(726), + [aux_sym_number_token2] = ACTIONS(726), + [anon_sym_DQUOTE] = ACTIONS(726), + [anon_sym_POUND] = ACTIONS(726), + [sym_concatenating_space] = ACTIONS(728), }, - [204] = { - [sym_identifier] = ACTIONS(722), - [anon_sym_COMMA] = ACTIONS(722), - [anon_sym_SEMI] = ACTIONS(722), - [anon_sym_LF] = ACTIONS(722), - [anon_sym_CR_LF] = ACTIONS(722), - [anon_sym_if] = ACTIONS(722), - [anon_sym_LPAREN] = ACTIONS(722), - [anon_sym_while] = ACTIONS(722), - [anon_sym_do] = ACTIONS(722), - [anon_sym_for] = ACTIONS(722), - [anon_sym_in] = ACTIONS(722), - [sym_break_statement] = ACTIONS(722), - [sym_continue_statement] = ACTIONS(722), - [anon_sym_delete] = ACTIONS(722), - [anon_sym_exit] = ACTIONS(722), - [anon_sym_return] = ACTIONS(722), - [anon_sym_switch] = ACTIONS(722), - [anon_sym_LBRACE] = ACTIONS(722), - [anon_sym_RBRACE] = ACTIONS(722), - [anon_sym_case] = ACTIONS(722), - [anon_sym_default] = ACTIONS(722), - [anon_sym_getline] = ACTIONS(722), - [anon_sym_LT] = ACTIONS(722), - [sym_next_statement] = ACTIONS(722), - [sym_nextfile_statement] = ACTIONS(722), - [anon_sym_print] = ACTIONS(722), - [anon_sym_printf] = ACTIONS(722), - [anon_sym_GT] = ACTIONS(722), - [anon_sym_GT_GT] = ACTIONS(722), - [anon_sym_PIPE] = ACTIONS(722), - [anon_sym_PIPE_AMP] = ACTIONS(722), - [anon_sym_QMARK] = ACTIONS(722), - [anon_sym_CARET] = ACTIONS(722), - [anon_sym_STAR_STAR] = ACTIONS(722), - [anon_sym_STAR] = ACTIONS(722), - [anon_sym_SLASH] = ACTIONS(722), - [anon_sym_PERCENT] = ACTIONS(722), - [anon_sym_PLUS] = ACTIONS(722), - [anon_sym_DASH] = ACTIONS(722), - [anon_sym_LT_EQ] = ACTIONS(722), - [anon_sym_GT_EQ] = ACTIONS(722), - [anon_sym_EQ_EQ] = ACTIONS(722), - [anon_sym_BANG_EQ] = ACTIONS(722), - [anon_sym_TILDE] = ACTIONS(722), - [anon_sym_BANG_TILDE] = ACTIONS(722), - [anon_sym_AMP_AMP] = ACTIONS(722), - [anon_sym_PIPE_PIPE] = ACTIONS(722), - [anon_sym_BANG] = ACTIONS(722), - [anon_sym_PLUS_PLUS] = ACTIONS(722), - [anon_sym_DASH_DASH] = ACTIONS(722), - [anon_sym_EQ] = ACTIONS(722), - [anon_sym_PLUS_EQ] = ACTIONS(722), - [anon_sym_DASH_EQ] = ACTIONS(722), - [anon_sym_STAR_EQ] = ACTIONS(722), - [anon_sym_SLASH_EQ] = ACTIONS(722), - [anon_sym_PERCENT_EQ] = ACTIONS(722), - [anon_sym_CARET_EQ] = ACTIONS(722), - [anon_sym_DOLLAR] = ACTIONS(722), - [anon_sym_LBRACK] = ACTIONS(722), - [anon_sym_AT] = ACTIONS(722), - [aux_sym_number_token1] = ACTIONS(722), - [aux_sym_number_token2] = ACTIONS(722), - [anon_sym_DQUOTE] = ACTIONS(722), - [anon_sym_POUND] = ACTIONS(722), - [sym_concatenating_space] = ACTIONS(724), + [199] = { + [sym_identifier] = ACTIONS(786), + [anon_sym_COMMA] = ACTIONS(786), + [anon_sym_SEMI] = ACTIONS(786), + [anon_sym_LF] = ACTIONS(786), + [anon_sym_CR_LF] = ACTIONS(786), + [anon_sym_if] = ACTIONS(786), + [anon_sym_LPAREN] = ACTIONS(786), + [anon_sym_while] = ACTIONS(786), + [anon_sym_do] = ACTIONS(786), + [anon_sym_for] = ACTIONS(786), + [anon_sym_in] = ACTIONS(786), + [sym_break_statement] = ACTIONS(786), + [sym_continue_statement] = ACTIONS(786), + [anon_sym_delete] = ACTIONS(786), + [anon_sym_exit] = ACTIONS(786), + [anon_sym_return] = ACTIONS(786), + [anon_sym_switch] = ACTIONS(786), + [anon_sym_LBRACE] = ACTIONS(786), + [anon_sym_RBRACE] = ACTIONS(786), + [anon_sym_case] = ACTIONS(786), + [anon_sym_default] = ACTIONS(786), + [anon_sym_getline] = ACTIONS(786), + [anon_sym_LT] = ACTIONS(786), + [sym_next_statement] = ACTIONS(786), + [sym_nextfile_statement] = ACTIONS(786), + [anon_sym_print] = ACTIONS(786), + [anon_sym_printf] = ACTIONS(786), + [anon_sym_GT] = ACTIONS(786), + [anon_sym_GT_GT] = ACTIONS(786), + [anon_sym_PIPE] = ACTIONS(786), + [anon_sym_PIPE_AMP] = ACTIONS(786), + [anon_sym_QMARK] = ACTIONS(786), + [anon_sym_CARET] = ACTIONS(786), + [anon_sym_STAR_STAR] = ACTIONS(786), + [anon_sym_STAR] = ACTIONS(786), + [anon_sym_SLASH] = ACTIONS(786), + [anon_sym_PERCENT] = ACTIONS(786), + [anon_sym_PLUS] = ACTIONS(786), + [anon_sym_DASH] = ACTIONS(786), + [anon_sym_LT_EQ] = ACTIONS(786), + [anon_sym_GT_EQ] = ACTIONS(786), + [anon_sym_EQ_EQ] = ACTIONS(786), + [anon_sym_BANG_EQ] = ACTIONS(786), + [anon_sym_TILDE] = ACTIONS(786), + [anon_sym_BANG_TILDE] = ACTIONS(786), + [anon_sym_AMP_AMP] = ACTIONS(786), + [anon_sym_PIPE_PIPE] = ACTIONS(786), + [anon_sym_BANG] = ACTIONS(786), + [anon_sym_PLUS_PLUS] = ACTIONS(786), + [anon_sym_DASH_DASH] = ACTIONS(786), + [anon_sym_EQ] = ACTIONS(786), + [anon_sym_PLUS_EQ] = ACTIONS(786), + [anon_sym_DASH_EQ] = ACTIONS(786), + [anon_sym_STAR_EQ] = ACTIONS(786), + [anon_sym_SLASH_EQ] = ACTIONS(786), + [anon_sym_PERCENT_EQ] = ACTIONS(786), + [anon_sym_CARET_EQ] = ACTIONS(786), + [anon_sym_DOLLAR] = ACTIONS(786), + [anon_sym_AT] = ACTIONS(786), + [aux_sym_number_token1] = ACTIONS(786), + [aux_sym_number_token2] = ACTIONS(786), + [anon_sym_DQUOTE] = ACTIONS(786), + [anon_sym_POUND] = ACTIONS(786), + [sym_concatenating_space] = ACTIONS(788), + [sym__if_else_separator] = ACTIONS(788), }, - [205] = { + [200] = { [sym_identifier] = ACTIONS(642), [anon_sym_COMMA] = ACTIONS(642), [anon_sym_SEMI] = ACTIONS(642), @@ -22957,7 +22924,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(642), [anon_sym_do] = ACTIONS(642), [anon_sym_for] = ACTIONS(642), - [anon_sym_in] = ACTIONS(644), + [anon_sym_in] = ACTIONS(642), [sym_break_statement] = ACTIONS(642), [sym_continue_statement] = ACTIONS(642), [anon_sym_delete] = ACTIONS(642), @@ -22966,456 +22933,389 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_switch] = ACTIONS(642), [anon_sym_LBRACE] = ACTIONS(642), [anon_sym_RBRACE] = ACTIONS(642), - [anon_sym_case] = ACTIONS(642), - [anon_sym_default] = ACTIONS(642), [anon_sym_getline] = ACTIONS(642), - [anon_sym_LT] = ACTIONS(644), + [anon_sym_LT] = ACTIONS(642), [sym_next_statement] = ACTIONS(642), [sym_nextfile_statement] = ACTIONS(642), [anon_sym_print] = ACTIONS(642), + [anon_sym_LPAREN2] = ACTIONS(712), [anon_sym_printf] = ACTIONS(642), - [anon_sym_GT] = ACTIONS(644), + [anon_sym_GT] = ACTIONS(642), [anon_sym_GT_GT] = ACTIONS(642), - [anon_sym_PIPE] = ACTIONS(644), - [anon_sym_PIPE_AMP] = ACTIONS(644), - [anon_sym_QMARK] = ACTIONS(644), - [anon_sym_CARET] = ACTIONS(644), - [anon_sym_STAR_STAR] = ACTIONS(644), - [anon_sym_STAR] = ACTIONS(644), - [anon_sym_SLASH] = ACTIONS(644), - [anon_sym_PERCENT] = ACTIONS(644), - [anon_sym_PLUS] = ACTIONS(644), - [anon_sym_DASH] = ACTIONS(644), - [anon_sym_LT_EQ] = ACTIONS(644), - [anon_sym_GT_EQ] = ACTIONS(644), - [anon_sym_EQ_EQ] = ACTIONS(644), - [anon_sym_BANG_EQ] = ACTIONS(644), - [anon_sym_TILDE] = ACTIONS(644), - [anon_sym_BANG_TILDE] = ACTIONS(644), - [anon_sym_AMP_AMP] = ACTIONS(644), - [anon_sym_PIPE_PIPE] = ACTIONS(644), + [anon_sym_PIPE] = ACTIONS(642), + [anon_sym_PIPE_AMP] = ACTIONS(642), + [anon_sym_QMARK] = ACTIONS(642), + [anon_sym_CARET] = ACTIONS(642), + [anon_sym_STAR_STAR] = ACTIONS(642), + [anon_sym_STAR] = ACTIONS(642), + [anon_sym_SLASH] = ACTIONS(642), + [anon_sym_PERCENT] = ACTIONS(642), + [anon_sym_PLUS] = ACTIONS(642), + [anon_sym_DASH] = ACTIONS(642), + [anon_sym_LT_EQ] = ACTIONS(642), + [anon_sym_GT_EQ] = ACTIONS(642), + [anon_sym_EQ_EQ] = ACTIONS(642), + [anon_sym_BANG_EQ] = ACTIONS(642), + [anon_sym_TILDE] = ACTIONS(642), + [anon_sym_BANG_TILDE] = ACTIONS(642), + [anon_sym_AMP_AMP] = ACTIONS(642), + [anon_sym_PIPE_PIPE] = ACTIONS(642), [anon_sym_BANG] = ACTIONS(642), - [anon_sym_PLUS_PLUS] = ACTIONS(648), - [anon_sym_DASH_DASH] = ACTIONS(648), - [anon_sym_EQ] = ACTIONS(642), - [anon_sym_PLUS_EQ] = ACTIONS(642), - [anon_sym_DASH_EQ] = ACTIONS(642), - [anon_sym_STAR_EQ] = ACTIONS(642), - [anon_sym_SLASH_EQ] = ACTIONS(642), - [anon_sym_PERCENT_EQ] = ACTIONS(642), - [anon_sym_CARET_EQ] = ACTIONS(642), + [anon_sym_PLUS_PLUS] = ACTIONS(714), + [anon_sym_DASH_DASH] = ACTIONS(714), + [anon_sym_EQ] = ACTIONS(716), + [anon_sym_PLUS_EQ] = ACTIONS(716), + [anon_sym_DASH_EQ] = ACTIONS(716), + [anon_sym_STAR_EQ] = ACTIONS(716), + [anon_sym_SLASH_EQ] = ACTIONS(716), + [anon_sym_PERCENT_EQ] = ACTIONS(716), + [anon_sym_CARET_EQ] = ACTIONS(716), [anon_sym_DOLLAR] = ACTIONS(642), - [anon_sym_LBRACK] = ACTIONS(688), + [anon_sym_LBRACK] = ACTIONS(648), [anon_sym_AT] = ACTIONS(642), [aux_sym_number_token1] = ACTIONS(642), [aux_sym_number_token2] = ACTIONS(642), [anon_sym_DQUOTE] = ACTIONS(642), [anon_sym_POUND] = ACTIONS(642), - [sym_concatenating_space] = ACTIONS(654), - }, - [206] = { - [sym_identifier] = ACTIONS(796), - [anon_sym_COMMA] = ACTIONS(796), - [anon_sym_SEMI] = ACTIONS(796), - [anon_sym_LF] = ACTIONS(796), - [anon_sym_CR_LF] = ACTIONS(796), - [anon_sym_if] = ACTIONS(796), - [anon_sym_LPAREN] = ACTIONS(796), - [anon_sym_while] = ACTIONS(796), - [anon_sym_do] = ACTIONS(796), - [anon_sym_for] = ACTIONS(796), - [anon_sym_in] = ACTIONS(796), - [sym_break_statement] = ACTIONS(796), - [sym_continue_statement] = ACTIONS(796), - [anon_sym_delete] = ACTIONS(796), - [anon_sym_exit] = ACTIONS(796), - [anon_sym_return] = ACTIONS(796), - [anon_sym_switch] = ACTIONS(796), - [anon_sym_LBRACE] = ACTIONS(796), - [anon_sym_RBRACE] = ACTIONS(796), - [anon_sym_case] = ACTIONS(796), - [anon_sym_default] = ACTIONS(796), - [anon_sym_getline] = ACTIONS(796), - [anon_sym_LT] = ACTIONS(796), - [sym_next_statement] = ACTIONS(796), - [sym_nextfile_statement] = ACTIONS(796), - [anon_sym_print] = ACTIONS(796), - [anon_sym_printf] = ACTIONS(796), - [anon_sym_GT] = ACTIONS(796), - [anon_sym_GT_GT] = ACTIONS(796), - [anon_sym_PIPE] = ACTIONS(796), - [anon_sym_PIPE_AMP] = ACTIONS(796), - [anon_sym_QMARK] = ACTIONS(796), - [anon_sym_CARET] = ACTIONS(796), - [anon_sym_STAR_STAR] = ACTIONS(796), - [anon_sym_STAR] = ACTIONS(796), - [anon_sym_SLASH] = ACTIONS(796), - [anon_sym_PERCENT] = ACTIONS(796), - [anon_sym_PLUS] = ACTIONS(796), - [anon_sym_DASH] = ACTIONS(796), - [anon_sym_LT_EQ] = ACTIONS(796), - [anon_sym_GT_EQ] = ACTIONS(796), - [anon_sym_EQ_EQ] = ACTIONS(796), - [anon_sym_BANG_EQ] = ACTIONS(796), - [anon_sym_TILDE] = ACTIONS(796), - [anon_sym_BANG_TILDE] = ACTIONS(796), - [anon_sym_AMP_AMP] = ACTIONS(796), - [anon_sym_PIPE_PIPE] = ACTIONS(796), - [anon_sym_BANG] = ACTIONS(796), - [anon_sym_PLUS_PLUS] = ACTIONS(796), - [anon_sym_DASH_DASH] = ACTIONS(796), - [anon_sym_EQ] = ACTIONS(796), - [anon_sym_PLUS_EQ] = ACTIONS(796), - [anon_sym_DASH_EQ] = ACTIONS(796), - [anon_sym_STAR_EQ] = ACTIONS(796), - [anon_sym_SLASH_EQ] = ACTIONS(796), - [anon_sym_PERCENT_EQ] = ACTIONS(796), - [anon_sym_CARET_EQ] = ACTIONS(796), - [anon_sym_DOLLAR] = ACTIONS(796), - [anon_sym_AT] = ACTIONS(796), - [aux_sym_number_token1] = ACTIONS(796), - [aux_sym_number_token2] = ACTIONS(796), - [anon_sym_DQUOTE] = ACTIONS(796), - [anon_sym_POUND] = ACTIONS(796), - [sym_concatenating_space] = ACTIONS(798), - [sym__if_else_separator] = ACTIONS(798), + [sym_concatenating_space] = ACTIONS(718), + [sym__if_else_separator] = ACTIONS(652), }, - [207] = { - [sym_identifier] = ACTIONS(800), - [anon_sym_COMMA] = ACTIONS(800), - [anon_sym_SEMI] = ACTIONS(800), - [anon_sym_LF] = ACTIONS(800), - [anon_sym_CR_LF] = ACTIONS(800), - [anon_sym_if] = ACTIONS(800), - [anon_sym_LPAREN] = ACTIONS(800), - [anon_sym_while] = ACTIONS(800), - [anon_sym_do] = ACTIONS(800), - [anon_sym_for] = ACTIONS(800), - [anon_sym_in] = ACTIONS(800), - [sym_break_statement] = ACTIONS(800), - [sym_continue_statement] = ACTIONS(800), - [anon_sym_delete] = ACTIONS(800), - [anon_sym_exit] = ACTIONS(800), - [anon_sym_return] = ACTIONS(800), - [anon_sym_switch] = ACTIONS(800), - [anon_sym_LBRACE] = ACTIONS(800), - [anon_sym_RBRACE] = ACTIONS(800), - [anon_sym_case] = ACTIONS(800), - [anon_sym_default] = ACTIONS(800), - [anon_sym_getline] = ACTIONS(800), - [anon_sym_LT] = ACTIONS(800), - [sym_next_statement] = ACTIONS(800), - [sym_nextfile_statement] = ACTIONS(800), - [anon_sym_print] = ACTIONS(800), - [anon_sym_printf] = ACTIONS(800), - [anon_sym_GT] = ACTIONS(800), - [anon_sym_GT_GT] = ACTIONS(800), - [anon_sym_PIPE] = ACTIONS(800), - [anon_sym_PIPE_AMP] = ACTIONS(800), - [anon_sym_QMARK] = ACTIONS(800), - [anon_sym_CARET] = ACTIONS(800), - [anon_sym_STAR_STAR] = ACTIONS(800), - [anon_sym_STAR] = ACTIONS(800), - [anon_sym_SLASH] = ACTIONS(800), - [anon_sym_PERCENT] = ACTIONS(800), - [anon_sym_PLUS] = ACTIONS(800), - [anon_sym_DASH] = ACTIONS(800), - [anon_sym_LT_EQ] = ACTIONS(800), - [anon_sym_GT_EQ] = ACTIONS(800), - [anon_sym_EQ_EQ] = ACTIONS(800), - [anon_sym_BANG_EQ] = ACTIONS(800), - [anon_sym_TILDE] = ACTIONS(800), - [anon_sym_BANG_TILDE] = ACTIONS(800), - [anon_sym_AMP_AMP] = ACTIONS(800), - [anon_sym_PIPE_PIPE] = ACTIONS(800), - [anon_sym_BANG] = ACTIONS(800), - [anon_sym_PLUS_PLUS] = ACTIONS(800), - [anon_sym_DASH_DASH] = ACTIONS(800), - [anon_sym_EQ] = ACTIONS(800), - [anon_sym_PLUS_EQ] = ACTIONS(800), - [anon_sym_DASH_EQ] = ACTIONS(800), - [anon_sym_STAR_EQ] = ACTIONS(800), - [anon_sym_SLASH_EQ] = ACTIONS(800), - [anon_sym_PERCENT_EQ] = ACTIONS(800), - [anon_sym_CARET_EQ] = ACTIONS(800), - [anon_sym_DOLLAR] = ACTIONS(800), - [anon_sym_AT] = ACTIONS(800), - [aux_sym_number_token1] = ACTIONS(800), - [aux_sym_number_token2] = ACTIONS(800), - [anon_sym_DQUOTE] = ACTIONS(800), - [anon_sym_POUND] = ACTIONS(800), - [sym_concatenating_space] = ACTIONS(802), - [sym__if_else_separator] = ACTIONS(802), + [201] = { + [sym_identifier] = ACTIONS(790), + [anon_sym_COMMA] = ACTIONS(790), + [anon_sym_SEMI] = ACTIONS(790), + [anon_sym_LF] = ACTIONS(790), + [anon_sym_CR_LF] = ACTIONS(790), + [anon_sym_if] = ACTIONS(790), + [anon_sym_LPAREN] = ACTIONS(790), + [anon_sym_while] = ACTIONS(790), + [anon_sym_do] = ACTIONS(790), + [anon_sym_for] = ACTIONS(790), + [anon_sym_in] = ACTIONS(790), + [sym_break_statement] = ACTIONS(790), + [sym_continue_statement] = ACTIONS(790), + [anon_sym_delete] = ACTIONS(790), + [anon_sym_exit] = ACTIONS(790), + [anon_sym_return] = ACTIONS(790), + [anon_sym_switch] = ACTIONS(790), + [anon_sym_LBRACE] = ACTIONS(790), + [anon_sym_RBRACE] = ACTIONS(790), + [anon_sym_case] = ACTIONS(790), + [anon_sym_default] = ACTIONS(790), + [anon_sym_getline] = ACTIONS(790), + [anon_sym_LT] = ACTIONS(790), + [sym_next_statement] = ACTIONS(790), + [sym_nextfile_statement] = ACTIONS(790), + [anon_sym_print] = ACTIONS(790), + [anon_sym_printf] = ACTIONS(790), + [anon_sym_GT] = ACTIONS(790), + [anon_sym_GT_GT] = ACTIONS(790), + [anon_sym_PIPE] = ACTIONS(790), + [anon_sym_PIPE_AMP] = ACTIONS(790), + [anon_sym_QMARK] = ACTIONS(790), + [anon_sym_CARET] = ACTIONS(790), + [anon_sym_STAR_STAR] = ACTIONS(790), + [anon_sym_STAR] = ACTIONS(790), + [anon_sym_SLASH] = ACTIONS(790), + [anon_sym_PERCENT] = ACTIONS(790), + [anon_sym_PLUS] = ACTIONS(790), + [anon_sym_DASH] = ACTIONS(790), + [anon_sym_LT_EQ] = ACTIONS(790), + [anon_sym_GT_EQ] = ACTIONS(790), + [anon_sym_EQ_EQ] = ACTIONS(790), + [anon_sym_BANG_EQ] = ACTIONS(790), + [anon_sym_TILDE] = ACTIONS(790), + [anon_sym_BANG_TILDE] = ACTIONS(790), + [anon_sym_AMP_AMP] = ACTIONS(790), + [anon_sym_PIPE_PIPE] = ACTIONS(790), + [anon_sym_BANG] = ACTIONS(790), + [anon_sym_PLUS_PLUS] = ACTIONS(790), + [anon_sym_DASH_DASH] = ACTIONS(790), + [anon_sym_EQ] = ACTIONS(790), + [anon_sym_PLUS_EQ] = ACTIONS(790), + [anon_sym_DASH_EQ] = ACTIONS(790), + [anon_sym_STAR_EQ] = ACTIONS(790), + [anon_sym_SLASH_EQ] = ACTIONS(790), + [anon_sym_PERCENT_EQ] = ACTIONS(790), + [anon_sym_CARET_EQ] = ACTIONS(790), + [anon_sym_DOLLAR] = ACTIONS(790), + [anon_sym_AT] = ACTIONS(790), + [aux_sym_number_token1] = ACTIONS(790), + [aux_sym_number_token2] = ACTIONS(790), + [anon_sym_DQUOTE] = ACTIONS(790), + [anon_sym_POUND] = ACTIONS(790), + [sym_concatenating_space] = ACTIONS(792), + [sym__if_else_separator] = ACTIONS(792), }, - [208] = { - [sym_identifier] = ACTIONS(644), - [anon_sym_COMMA] = ACTIONS(644), - [anon_sym_SEMI] = ACTIONS(644), - [anon_sym_LF] = ACTIONS(644), - [anon_sym_CR_LF] = ACTIONS(644), - [anon_sym_if] = ACTIONS(644), - [anon_sym_LPAREN] = ACTIONS(644), - [anon_sym_while] = ACTIONS(644), - [anon_sym_do] = ACTIONS(644), - [anon_sym_for] = ACTIONS(644), - [anon_sym_in] = ACTIONS(644), - [sym_break_statement] = ACTIONS(644), - [sym_continue_statement] = ACTIONS(644), - [anon_sym_delete] = ACTIONS(644), - [anon_sym_exit] = ACTIONS(644), - [anon_sym_return] = ACTIONS(644), - [anon_sym_switch] = ACTIONS(644), - [anon_sym_LBRACE] = ACTIONS(644), - [anon_sym_RBRACE] = ACTIONS(644), - [anon_sym_case] = ACTIONS(644), - [anon_sym_default] = ACTIONS(644), - [anon_sym_getline] = ACTIONS(644), - [anon_sym_LT] = ACTIONS(644), - [sym_next_statement] = ACTIONS(644), - [sym_nextfile_statement] = ACTIONS(644), - [anon_sym_print] = ACTIONS(644), - [anon_sym_printf] = ACTIONS(644), - [anon_sym_GT] = ACTIONS(644), - [anon_sym_GT_GT] = ACTIONS(644), - [anon_sym_PIPE] = ACTIONS(644), - [anon_sym_PIPE_AMP] = ACTIONS(644), - [anon_sym_QMARK] = ACTIONS(644), - [anon_sym_CARET] = ACTIONS(644), - [anon_sym_STAR_STAR] = ACTIONS(644), - [anon_sym_STAR] = ACTIONS(644), - [anon_sym_SLASH] = ACTIONS(644), - [anon_sym_PERCENT] = ACTIONS(644), - [anon_sym_PLUS] = ACTIONS(644), - [anon_sym_DASH] = ACTIONS(644), - [anon_sym_LT_EQ] = ACTIONS(644), - [anon_sym_GT_EQ] = ACTIONS(644), - [anon_sym_EQ_EQ] = ACTIONS(644), - [anon_sym_BANG_EQ] = ACTIONS(644), - [anon_sym_TILDE] = ACTIONS(644), - [anon_sym_BANG_TILDE] = ACTIONS(644), - [anon_sym_AMP_AMP] = ACTIONS(644), - [anon_sym_PIPE_PIPE] = ACTIONS(644), - [anon_sym_BANG] = ACTIONS(644), - [anon_sym_PLUS_PLUS] = ACTIONS(694), - [anon_sym_DASH_DASH] = ACTIONS(694), - [anon_sym_EQ] = ACTIONS(644), - [anon_sym_PLUS_EQ] = ACTIONS(644), - [anon_sym_DASH_EQ] = ACTIONS(644), - [anon_sym_STAR_EQ] = ACTIONS(644), - [anon_sym_SLASH_EQ] = ACTIONS(644), - [anon_sym_PERCENT_EQ] = ACTIONS(644), - [anon_sym_CARET_EQ] = ACTIONS(644), - [anon_sym_DOLLAR] = ACTIONS(644), - [anon_sym_LBRACK] = ACTIONS(688), - [anon_sym_AT] = ACTIONS(644), - [aux_sym_number_token1] = ACTIONS(644), - [aux_sym_number_token2] = ACTIONS(644), - [anon_sym_DQUOTE] = ACTIONS(644), - [anon_sym_POUND] = ACTIONS(644), + [202] = { + [sym_identifier] = ACTIONS(654), + [anon_sym_COMMA] = ACTIONS(654), + [anon_sym_SEMI] = ACTIONS(654), + [anon_sym_LF] = ACTIONS(654), + [anon_sym_CR_LF] = ACTIONS(654), + [anon_sym_if] = ACTIONS(654), + [anon_sym_LPAREN] = ACTIONS(654), + [anon_sym_while] = ACTIONS(654), + [anon_sym_do] = ACTIONS(654), + [anon_sym_for] = ACTIONS(654), + [anon_sym_in] = ACTIONS(642), + [sym_break_statement] = ACTIONS(654), + [sym_continue_statement] = ACTIONS(654), + [anon_sym_delete] = ACTIONS(654), + [anon_sym_exit] = ACTIONS(654), + [anon_sym_return] = ACTIONS(654), + [anon_sym_switch] = ACTIONS(654), + [anon_sym_LBRACE] = ACTIONS(654), + [anon_sym_RBRACE] = ACTIONS(654), + [anon_sym_case] = ACTIONS(654), + [anon_sym_default] = ACTIONS(654), + [anon_sym_getline] = ACTIONS(654), + [anon_sym_LT] = ACTIONS(642), + [sym_next_statement] = ACTIONS(654), + [sym_nextfile_statement] = ACTIONS(654), + [anon_sym_print] = ACTIONS(654), + [anon_sym_printf] = ACTIONS(654), + [anon_sym_GT] = ACTIONS(642), + [anon_sym_GT_GT] = ACTIONS(654), + [anon_sym_PIPE] = ACTIONS(642), + [anon_sym_PIPE_AMP] = ACTIONS(642), + [anon_sym_QMARK] = ACTIONS(642), + [anon_sym_CARET] = ACTIONS(642), + [anon_sym_STAR_STAR] = ACTIONS(642), + [anon_sym_STAR] = ACTIONS(642), + [anon_sym_SLASH] = ACTIONS(642), + [anon_sym_PERCENT] = ACTIONS(642), + [anon_sym_PLUS] = ACTIONS(642), + [anon_sym_DASH] = ACTIONS(642), + [anon_sym_LT_EQ] = ACTIONS(642), + [anon_sym_GT_EQ] = ACTIONS(642), + [anon_sym_EQ_EQ] = ACTIONS(642), + [anon_sym_BANG_EQ] = ACTIONS(642), + [anon_sym_TILDE] = ACTIONS(642), + [anon_sym_BANG_TILDE] = ACTIONS(642), + [anon_sym_AMP_AMP] = ACTIONS(642), + [anon_sym_PIPE_PIPE] = ACTIONS(642), + [anon_sym_BANG] = ACTIONS(654), + [anon_sym_PLUS_PLUS] = ACTIONS(656), + [anon_sym_DASH_DASH] = ACTIONS(656), + [anon_sym_EQ] = ACTIONS(654), + [anon_sym_PLUS_EQ] = ACTIONS(654), + [anon_sym_DASH_EQ] = ACTIONS(654), + [anon_sym_STAR_EQ] = ACTIONS(654), + [anon_sym_SLASH_EQ] = ACTIONS(654), + [anon_sym_PERCENT_EQ] = ACTIONS(654), + [anon_sym_CARET_EQ] = ACTIONS(654), + [anon_sym_DOLLAR] = ACTIONS(654), + [anon_sym_LBRACK] = ACTIONS(684), + [anon_sym_AT] = ACTIONS(654), + [aux_sym_number_token1] = ACTIONS(654), + [aux_sym_number_token2] = ACTIONS(654), + [anon_sym_DQUOTE] = ACTIONS(654), + [anon_sym_POUND] = ACTIONS(654), [sym_concatenating_space] = ACTIONS(658), }, - [209] = { - [sym_identifier] = ACTIONS(804), - [anon_sym_COMMA] = ACTIONS(804), - [anon_sym_SEMI] = ACTIONS(804), - [anon_sym_LF] = ACTIONS(804), - [anon_sym_CR_LF] = ACTIONS(804), - [anon_sym_if] = ACTIONS(804), - [anon_sym_LPAREN] = ACTIONS(804), - [anon_sym_while] = ACTIONS(804), - [anon_sym_do] = ACTIONS(804), - [anon_sym_for] = ACTIONS(804), - [anon_sym_in] = ACTIONS(804), - [sym_break_statement] = ACTIONS(804), - [sym_continue_statement] = ACTIONS(804), - [anon_sym_delete] = ACTIONS(804), - [anon_sym_exit] = ACTIONS(804), - [anon_sym_return] = ACTIONS(804), - [anon_sym_switch] = ACTIONS(804), - [anon_sym_LBRACE] = ACTIONS(804), - [anon_sym_RBRACE] = ACTIONS(804), - [anon_sym_case] = ACTIONS(804), - [anon_sym_default] = ACTIONS(804), - [anon_sym_getline] = ACTIONS(804), - [anon_sym_LT] = ACTIONS(804), - [sym_next_statement] = ACTIONS(804), - [sym_nextfile_statement] = ACTIONS(804), - [anon_sym_print] = ACTIONS(804), - [anon_sym_printf] = ACTIONS(804), - [anon_sym_GT] = ACTIONS(804), - [anon_sym_GT_GT] = ACTIONS(804), - [anon_sym_PIPE] = ACTIONS(804), - [anon_sym_PIPE_AMP] = ACTIONS(804), - [anon_sym_QMARK] = ACTIONS(804), - [anon_sym_CARET] = ACTIONS(804), - [anon_sym_STAR_STAR] = ACTIONS(804), - [anon_sym_STAR] = ACTIONS(804), - [anon_sym_SLASH] = ACTIONS(804), - [anon_sym_PERCENT] = ACTIONS(804), - [anon_sym_PLUS] = ACTIONS(804), - [anon_sym_DASH] = ACTIONS(804), - [anon_sym_LT_EQ] = ACTIONS(804), - [anon_sym_GT_EQ] = ACTIONS(804), - [anon_sym_EQ_EQ] = ACTIONS(804), - [anon_sym_BANG_EQ] = ACTIONS(804), - [anon_sym_TILDE] = ACTIONS(804), - [anon_sym_BANG_TILDE] = ACTIONS(804), - [anon_sym_AMP_AMP] = ACTIONS(804), - [anon_sym_PIPE_PIPE] = ACTIONS(804), - [anon_sym_BANG] = ACTIONS(804), - [anon_sym_PLUS_PLUS] = ACTIONS(804), - [anon_sym_DASH_DASH] = ACTIONS(804), - [anon_sym_EQ] = ACTIONS(804), - [anon_sym_PLUS_EQ] = ACTIONS(804), - [anon_sym_DASH_EQ] = ACTIONS(804), - [anon_sym_STAR_EQ] = ACTIONS(804), - [anon_sym_SLASH_EQ] = ACTIONS(804), - [anon_sym_PERCENT_EQ] = ACTIONS(804), - [anon_sym_CARET_EQ] = ACTIONS(804), - [anon_sym_DOLLAR] = ACTIONS(804), - [anon_sym_AT] = ACTIONS(804), - [aux_sym_number_token1] = ACTIONS(804), - [aux_sym_number_token2] = ACTIONS(804), - [anon_sym_DQUOTE] = ACTIONS(804), - [anon_sym_POUND] = ACTIONS(804), - [sym_concatenating_space] = ACTIONS(806), - [sym__if_else_separator] = ACTIONS(806), + [203] = { + [sym_identifier] = ACTIONS(794), + [anon_sym_COMMA] = ACTIONS(794), + [anon_sym_SEMI] = ACTIONS(794), + [anon_sym_LF] = ACTIONS(794), + [anon_sym_CR_LF] = ACTIONS(794), + [anon_sym_if] = ACTIONS(794), + [anon_sym_LPAREN] = ACTIONS(794), + [anon_sym_while] = ACTIONS(794), + [anon_sym_do] = ACTIONS(794), + [anon_sym_for] = ACTIONS(794), + [anon_sym_in] = ACTIONS(794), + [sym_break_statement] = ACTIONS(794), + [sym_continue_statement] = ACTIONS(794), + [anon_sym_delete] = ACTIONS(794), + [anon_sym_exit] = ACTIONS(794), + [anon_sym_return] = ACTIONS(794), + [anon_sym_switch] = ACTIONS(794), + [anon_sym_LBRACE] = ACTIONS(794), + [anon_sym_RBRACE] = ACTIONS(794), + [anon_sym_case] = ACTIONS(794), + [anon_sym_default] = ACTIONS(794), + [anon_sym_getline] = ACTIONS(794), + [anon_sym_LT] = ACTIONS(794), + [sym_next_statement] = ACTIONS(794), + [sym_nextfile_statement] = ACTIONS(794), + [anon_sym_print] = ACTIONS(794), + [anon_sym_printf] = ACTIONS(794), + [anon_sym_GT] = ACTIONS(794), + [anon_sym_GT_GT] = ACTIONS(794), + [anon_sym_PIPE] = ACTIONS(794), + [anon_sym_PIPE_AMP] = ACTIONS(794), + [anon_sym_QMARK] = ACTIONS(794), + [anon_sym_CARET] = ACTIONS(794), + [anon_sym_STAR_STAR] = ACTIONS(794), + [anon_sym_STAR] = ACTIONS(794), + [anon_sym_SLASH] = ACTIONS(794), + [anon_sym_PERCENT] = ACTIONS(794), + [anon_sym_PLUS] = ACTIONS(794), + [anon_sym_DASH] = ACTIONS(794), + [anon_sym_LT_EQ] = ACTIONS(794), + [anon_sym_GT_EQ] = ACTIONS(794), + [anon_sym_EQ_EQ] = ACTIONS(794), + [anon_sym_BANG_EQ] = ACTIONS(794), + [anon_sym_TILDE] = ACTIONS(794), + [anon_sym_BANG_TILDE] = ACTIONS(794), + [anon_sym_AMP_AMP] = ACTIONS(794), + [anon_sym_PIPE_PIPE] = ACTIONS(794), + [anon_sym_BANG] = ACTIONS(794), + [anon_sym_PLUS_PLUS] = ACTIONS(794), + [anon_sym_DASH_DASH] = ACTIONS(794), + [anon_sym_EQ] = ACTIONS(794), + [anon_sym_PLUS_EQ] = ACTIONS(794), + [anon_sym_DASH_EQ] = ACTIONS(794), + [anon_sym_STAR_EQ] = ACTIONS(794), + [anon_sym_SLASH_EQ] = ACTIONS(794), + [anon_sym_PERCENT_EQ] = ACTIONS(794), + [anon_sym_CARET_EQ] = ACTIONS(794), + [anon_sym_DOLLAR] = ACTIONS(794), + [anon_sym_AT] = ACTIONS(794), + [aux_sym_number_token1] = ACTIONS(794), + [aux_sym_number_token2] = ACTIONS(794), + [anon_sym_DQUOTE] = ACTIONS(794), + [anon_sym_POUND] = ACTIONS(794), + [sym_concatenating_space] = ACTIONS(796), + [sym__if_else_separator] = ACTIONS(796), }, - [210] = { - [sym_identifier] = ACTIONS(808), - [anon_sym_COMMA] = ACTIONS(808), - [anon_sym_SEMI] = ACTIONS(808), - [anon_sym_LF] = ACTIONS(808), - [anon_sym_CR_LF] = ACTIONS(808), - [anon_sym_if] = ACTIONS(808), - [anon_sym_LPAREN] = ACTIONS(808), - [anon_sym_while] = ACTIONS(808), - [anon_sym_do] = ACTIONS(808), - [anon_sym_for] = ACTIONS(808), - [anon_sym_in] = ACTIONS(808), - [sym_break_statement] = ACTIONS(808), - [sym_continue_statement] = ACTIONS(808), - [anon_sym_delete] = ACTIONS(808), - [anon_sym_exit] = ACTIONS(808), - [anon_sym_return] = ACTIONS(808), - [anon_sym_switch] = ACTIONS(808), - [anon_sym_LBRACE] = ACTIONS(808), - [anon_sym_RBRACE] = ACTIONS(808), - [anon_sym_case] = ACTIONS(808), - [anon_sym_default] = ACTIONS(808), - [anon_sym_getline] = ACTIONS(808), - [anon_sym_LT] = ACTIONS(808), - [sym_next_statement] = ACTIONS(808), - [sym_nextfile_statement] = ACTIONS(808), - [anon_sym_print] = ACTIONS(808), - [anon_sym_printf] = ACTIONS(808), - [anon_sym_GT] = ACTIONS(808), - [anon_sym_GT_GT] = ACTIONS(808), - [anon_sym_PIPE] = ACTIONS(808), - [anon_sym_PIPE_AMP] = ACTIONS(808), - [anon_sym_QMARK] = ACTIONS(808), - [anon_sym_CARET] = ACTIONS(808), - [anon_sym_STAR_STAR] = ACTIONS(808), - [anon_sym_STAR] = ACTIONS(808), - [anon_sym_SLASH] = ACTIONS(808), - [anon_sym_PERCENT] = ACTIONS(808), - [anon_sym_PLUS] = ACTIONS(808), - [anon_sym_DASH] = ACTIONS(808), - [anon_sym_LT_EQ] = ACTIONS(808), - [anon_sym_GT_EQ] = ACTIONS(808), - [anon_sym_EQ_EQ] = ACTIONS(808), - [anon_sym_BANG_EQ] = ACTIONS(808), - [anon_sym_TILDE] = ACTIONS(808), - [anon_sym_BANG_TILDE] = ACTIONS(808), - [anon_sym_AMP_AMP] = ACTIONS(808), - [anon_sym_PIPE_PIPE] = ACTIONS(808), - [anon_sym_BANG] = ACTIONS(808), - [anon_sym_PLUS_PLUS] = ACTIONS(808), - [anon_sym_DASH_DASH] = ACTIONS(808), - [anon_sym_EQ] = ACTIONS(808), - [anon_sym_PLUS_EQ] = ACTIONS(808), - [anon_sym_DASH_EQ] = ACTIONS(808), - [anon_sym_STAR_EQ] = ACTIONS(808), - [anon_sym_SLASH_EQ] = ACTIONS(808), - [anon_sym_PERCENT_EQ] = ACTIONS(808), - [anon_sym_CARET_EQ] = ACTIONS(808), - [anon_sym_DOLLAR] = ACTIONS(808), - [anon_sym_AT] = ACTIONS(808), - [aux_sym_number_token1] = ACTIONS(808), - [aux_sym_number_token2] = ACTIONS(808), - [anon_sym_DQUOTE] = ACTIONS(808), - [anon_sym_POUND] = ACTIONS(808), - [sym_concatenating_space] = ACTIONS(810), - [sym__if_else_separator] = ACTIONS(810), + [204] = { + [sym_identifier] = ACTIONS(798), + [anon_sym_COMMA] = ACTIONS(798), + [anon_sym_SEMI] = ACTIONS(798), + [anon_sym_LF] = ACTIONS(798), + [anon_sym_CR_LF] = ACTIONS(798), + [anon_sym_if] = ACTIONS(798), + [anon_sym_LPAREN] = ACTIONS(798), + [anon_sym_while] = ACTIONS(798), + [anon_sym_do] = ACTIONS(798), + [anon_sym_for] = ACTIONS(798), + [anon_sym_in] = ACTIONS(798), + [sym_break_statement] = ACTIONS(798), + [sym_continue_statement] = ACTIONS(798), + [anon_sym_delete] = ACTIONS(798), + [anon_sym_exit] = ACTIONS(798), + [anon_sym_return] = ACTIONS(798), + [anon_sym_switch] = ACTIONS(798), + [anon_sym_LBRACE] = ACTIONS(798), + [anon_sym_RBRACE] = ACTIONS(798), + [anon_sym_case] = ACTIONS(798), + [anon_sym_default] = ACTIONS(798), + [anon_sym_getline] = ACTIONS(798), + [anon_sym_LT] = ACTIONS(798), + [sym_next_statement] = ACTIONS(798), + [sym_nextfile_statement] = ACTIONS(798), + [anon_sym_print] = ACTIONS(798), + [anon_sym_printf] = ACTIONS(798), + [anon_sym_GT] = ACTIONS(798), + [anon_sym_GT_GT] = ACTIONS(798), + [anon_sym_PIPE] = ACTIONS(798), + [anon_sym_PIPE_AMP] = ACTIONS(798), + [anon_sym_QMARK] = ACTIONS(798), + [anon_sym_CARET] = ACTIONS(798), + [anon_sym_STAR_STAR] = ACTIONS(798), + [anon_sym_STAR] = ACTIONS(798), + [anon_sym_SLASH] = ACTIONS(798), + [anon_sym_PERCENT] = ACTIONS(798), + [anon_sym_PLUS] = ACTIONS(798), + [anon_sym_DASH] = ACTIONS(798), + [anon_sym_LT_EQ] = ACTIONS(798), + [anon_sym_GT_EQ] = ACTIONS(798), + [anon_sym_EQ_EQ] = ACTIONS(798), + [anon_sym_BANG_EQ] = ACTIONS(798), + [anon_sym_TILDE] = ACTIONS(798), + [anon_sym_BANG_TILDE] = ACTIONS(798), + [anon_sym_AMP_AMP] = ACTIONS(798), + [anon_sym_PIPE_PIPE] = ACTIONS(798), + [anon_sym_BANG] = ACTIONS(798), + [anon_sym_PLUS_PLUS] = ACTIONS(798), + [anon_sym_DASH_DASH] = ACTIONS(798), + [anon_sym_EQ] = ACTIONS(798), + [anon_sym_PLUS_EQ] = ACTIONS(798), + [anon_sym_DASH_EQ] = ACTIONS(798), + [anon_sym_STAR_EQ] = ACTIONS(798), + [anon_sym_SLASH_EQ] = ACTIONS(798), + [anon_sym_PERCENT_EQ] = ACTIONS(798), + [anon_sym_CARET_EQ] = ACTIONS(798), + [anon_sym_DOLLAR] = ACTIONS(798), + [anon_sym_AT] = ACTIONS(798), + [aux_sym_number_token1] = ACTIONS(798), + [aux_sym_number_token2] = ACTIONS(798), + [anon_sym_DQUOTE] = ACTIONS(798), + [anon_sym_POUND] = ACTIONS(798), + [sym_concatenating_space] = ACTIONS(800), + [sym__if_else_separator] = ACTIONS(800), }, - [211] = { - [sym_identifier] = ACTIONS(642), - [anon_sym_COMMA] = ACTIONS(642), - [anon_sym_SEMI] = ACTIONS(642), - [anon_sym_LF] = ACTIONS(642), - [anon_sym_CR_LF] = ACTIONS(642), - [anon_sym_if] = ACTIONS(642), - [anon_sym_LPAREN] = ACTIONS(642), - [anon_sym_while] = ACTIONS(642), - [anon_sym_do] = ACTIONS(642), - [anon_sym_for] = ACTIONS(642), - [anon_sym_in] = ACTIONS(644), - [sym_break_statement] = ACTIONS(642), - [sym_continue_statement] = ACTIONS(642), - [anon_sym_delete] = ACTIONS(642), - [anon_sym_exit] = ACTIONS(642), - [anon_sym_return] = ACTIONS(642), - [anon_sym_switch] = ACTIONS(642), - [anon_sym_LBRACE] = ACTIONS(642), - [anon_sym_RBRACE] = ACTIONS(642), - [anon_sym_getline] = ACTIONS(642), - [anon_sym_LT] = ACTIONS(644), - [sym_next_statement] = ACTIONS(642), - [sym_nextfile_statement] = ACTIONS(642), - [anon_sym_print] = ACTIONS(642), - [anon_sym_LPAREN2] = ACTIONS(716), - [anon_sym_printf] = ACTIONS(642), - [anon_sym_GT] = ACTIONS(644), - [anon_sym_GT_GT] = ACTIONS(642), - [anon_sym_PIPE] = ACTIONS(644), - [anon_sym_PIPE_AMP] = ACTIONS(644), - [anon_sym_QMARK] = ACTIONS(644), - [anon_sym_CARET] = ACTIONS(644), - [anon_sym_STAR_STAR] = ACTIONS(644), - [anon_sym_STAR] = ACTIONS(644), - [anon_sym_SLASH] = ACTIONS(644), - [anon_sym_PERCENT] = ACTIONS(644), - [anon_sym_PLUS] = ACTIONS(644), - [anon_sym_DASH] = ACTIONS(644), - [anon_sym_LT_EQ] = ACTIONS(644), - [anon_sym_GT_EQ] = ACTIONS(644), - [anon_sym_EQ_EQ] = ACTIONS(644), - [anon_sym_BANG_EQ] = ACTIONS(644), - [anon_sym_TILDE] = ACTIONS(644), - [anon_sym_BANG_TILDE] = ACTIONS(644), - [anon_sym_AMP_AMP] = ACTIONS(644), - [anon_sym_PIPE_PIPE] = ACTIONS(644), - [anon_sym_BANG] = ACTIONS(642), - [anon_sym_PLUS_PLUS] = ACTIONS(648), - [anon_sym_DASH_DASH] = ACTIONS(648), - [anon_sym_EQ] = ACTIONS(732), - [anon_sym_PLUS_EQ] = ACTIONS(732), - [anon_sym_DASH_EQ] = ACTIONS(732), - [anon_sym_STAR_EQ] = ACTIONS(732), - [anon_sym_SLASH_EQ] = ACTIONS(732), - [anon_sym_PERCENT_EQ] = ACTIONS(732), - [anon_sym_CARET_EQ] = ACTIONS(732), - [anon_sym_DOLLAR] = ACTIONS(642), - [anon_sym_LBRACK] = ACTIONS(650), - [anon_sym_AT] = ACTIONS(642), - [aux_sym_number_token1] = ACTIONS(642), - [aux_sym_number_token2] = ACTIONS(642), - [anon_sym_DQUOTE] = ACTIONS(642), - [anon_sym_POUND] = ACTIONS(642), - [sym_concatenating_space] = ACTIONS(654), - [sym__if_else_separator] = ACTIONS(654), + [205] = { + [sym_identifier] = ACTIONS(720), + [anon_sym_COMMA] = ACTIONS(720), + [anon_sym_SEMI] = ACTIONS(720), + [anon_sym_LF] = ACTIONS(720), + [anon_sym_CR_LF] = ACTIONS(720), + [anon_sym_if] = ACTIONS(720), + [anon_sym_LPAREN] = ACTIONS(720), + [anon_sym_while] = ACTIONS(720), + [anon_sym_do] = ACTIONS(720), + [anon_sym_for] = ACTIONS(720), + [anon_sym_in] = ACTIONS(720), + [sym_break_statement] = ACTIONS(720), + [sym_continue_statement] = ACTIONS(720), + [anon_sym_delete] = ACTIONS(720), + [anon_sym_exit] = ACTIONS(720), + [anon_sym_return] = ACTIONS(720), + [anon_sym_switch] = ACTIONS(720), + [anon_sym_LBRACE] = ACTIONS(720), + [anon_sym_RBRACE] = ACTIONS(720), + [anon_sym_case] = ACTIONS(720), + [anon_sym_default] = ACTIONS(720), + [anon_sym_getline] = ACTIONS(720), + [anon_sym_LT] = ACTIONS(720), + [sym_next_statement] = ACTIONS(720), + [sym_nextfile_statement] = ACTIONS(720), + [anon_sym_print] = ACTIONS(720), + [anon_sym_printf] = ACTIONS(720), + [anon_sym_GT] = ACTIONS(720), + [anon_sym_GT_GT] = ACTIONS(720), + [anon_sym_PIPE] = ACTIONS(720), + [anon_sym_PIPE_AMP] = ACTIONS(720), + [anon_sym_QMARK] = ACTIONS(720), + [anon_sym_CARET] = ACTIONS(720), + [anon_sym_STAR_STAR] = ACTIONS(720), + [anon_sym_STAR] = ACTIONS(720), + [anon_sym_SLASH] = ACTIONS(720), + [anon_sym_PERCENT] = ACTIONS(720), + [anon_sym_PLUS] = ACTIONS(720), + [anon_sym_DASH] = ACTIONS(720), + [anon_sym_LT_EQ] = ACTIONS(720), + [anon_sym_GT_EQ] = ACTIONS(720), + [anon_sym_EQ_EQ] = ACTIONS(720), + [anon_sym_BANG_EQ] = ACTIONS(720), + [anon_sym_TILDE] = ACTIONS(720), + [anon_sym_BANG_TILDE] = ACTIONS(720), + [anon_sym_AMP_AMP] = ACTIONS(720), + [anon_sym_PIPE_PIPE] = ACTIONS(720), + [anon_sym_BANG] = ACTIONS(720), + [anon_sym_PLUS_PLUS] = ACTIONS(720), + [anon_sym_DASH_DASH] = ACTIONS(720), + [anon_sym_EQ] = ACTIONS(720), + [anon_sym_PLUS_EQ] = ACTIONS(720), + [anon_sym_DASH_EQ] = ACTIONS(720), + [anon_sym_STAR_EQ] = ACTIONS(720), + [anon_sym_SLASH_EQ] = ACTIONS(720), + [anon_sym_PERCENT_EQ] = ACTIONS(720), + [anon_sym_CARET_EQ] = ACTIONS(720), + [anon_sym_DOLLAR] = ACTIONS(720), + [anon_sym_LBRACK] = ACTIONS(720), + [anon_sym_AT] = ACTIONS(720), + [aux_sym_number_token1] = ACTIONS(720), + [aux_sym_number_token2] = ACTIONS(720), + [anon_sym_DQUOTE] = ACTIONS(720), + [anon_sym_POUND] = ACTIONS(720), + [sym_concatenating_space] = ACTIONS(722), }, - [212] = { + [206] = { [sym_identifier] = ACTIONS(642), [anon_sym_COMMA] = ACTIONS(642), [anon_sym_SEMI] = ACTIONS(642), @@ -23426,7 +23326,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(642), [anon_sym_do] = ACTIONS(642), [anon_sym_for] = ACTIONS(642), - [anon_sym_in] = ACTIONS(644), + [anon_sym_in] = ACTIONS(642), [sym_break_statement] = ACTIONS(642), [sym_continue_statement] = ACTIONS(642), [anon_sym_delete] = ACTIONS(642), @@ -23435,54 +23335,389 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_switch] = ACTIONS(642), [anon_sym_LBRACE] = ACTIONS(642), [anon_sym_RBRACE] = ACTIONS(642), - [anon_sym_case] = ACTIONS(642), - [anon_sym_default] = ACTIONS(642), [anon_sym_getline] = ACTIONS(642), - [anon_sym_LT] = ACTIONS(644), + [anon_sym_LT] = ACTIONS(642), [sym_next_statement] = ACTIONS(642), [sym_nextfile_statement] = ACTIONS(642), [anon_sym_print] = ACTIONS(642), + [anon_sym_LPAREN2] = ACTIONS(802), [anon_sym_printf] = ACTIONS(642), - [anon_sym_GT] = ACTIONS(644), + [anon_sym_GT] = ACTIONS(642), [anon_sym_GT_GT] = ACTIONS(642), - [anon_sym_PIPE] = ACTIONS(644), - [anon_sym_PIPE_AMP] = ACTIONS(644), - [anon_sym_QMARK] = ACTIONS(644), - [anon_sym_CARET] = ACTIONS(644), - [anon_sym_STAR_STAR] = ACTIONS(644), - [anon_sym_STAR] = ACTIONS(644), - [anon_sym_SLASH] = ACTIONS(644), - [anon_sym_PERCENT] = ACTIONS(644), - [anon_sym_PLUS] = ACTIONS(644), - [anon_sym_DASH] = ACTIONS(644), - [anon_sym_LT_EQ] = ACTIONS(644), - [anon_sym_GT_EQ] = ACTIONS(644), - [anon_sym_EQ_EQ] = ACTIONS(644), - [anon_sym_BANG_EQ] = ACTIONS(644), - [anon_sym_TILDE] = ACTIONS(644), - [anon_sym_BANG_TILDE] = ACTIONS(644), - [anon_sym_AMP_AMP] = ACTIONS(644), - [anon_sym_PIPE_PIPE] = ACTIONS(644), + [anon_sym_PIPE] = ACTIONS(642), + [anon_sym_PIPE_AMP] = ACTIONS(642), + [anon_sym_QMARK] = ACTIONS(642), + [anon_sym_CARET] = ACTIONS(642), + [anon_sym_STAR_STAR] = ACTIONS(642), + [anon_sym_STAR] = ACTIONS(642), + [anon_sym_SLASH] = ACTIONS(642), + [anon_sym_PERCENT] = ACTIONS(642), + [anon_sym_PLUS] = ACTIONS(642), + [anon_sym_DASH] = ACTIONS(642), + [anon_sym_LT_EQ] = ACTIONS(642), + [anon_sym_GT_EQ] = ACTIONS(642), + [anon_sym_EQ_EQ] = ACTIONS(642), + [anon_sym_BANG_EQ] = ACTIONS(642), + [anon_sym_TILDE] = ACTIONS(642), + [anon_sym_BANG_TILDE] = ACTIONS(642), + [anon_sym_AMP_AMP] = ACTIONS(642), + [anon_sym_PIPE_PIPE] = ACTIONS(642), [anon_sym_BANG] = ACTIONS(642), - [anon_sym_PLUS_PLUS] = ACTIONS(642), - [anon_sym_DASH_DASH] = ACTIONS(642), - [anon_sym_EQ] = ACTIONS(642), - [anon_sym_PLUS_EQ] = ACTIONS(642), - [anon_sym_DASH_EQ] = ACTIONS(642), - [anon_sym_STAR_EQ] = ACTIONS(642), - [anon_sym_SLASH_EQ] = ACTIONS(642), - [anon_sym_PERCENT_EQ] = ACTIONS(642), - [anon_sym_CARET_EQ] = ACTIONS(642), + [anon_sym_PLUS_PLUS] = ACTIONS(804), + [anon_sym_DASH_DASH] = ACTIONS(804), + [anon_sym_EQ] = ACTIONS(806), + [anon_sym_PLUS_EQ] = ACTIONS(806), + [anon_sym_DASH_EQ] = ACTIONS(806), + [anon_sym_STAR_EQ] = ACTIONS(806), + [anon_sym_SLASH_EQ] = ACTIONS(806), + [anon_sym_PERCENT_EQ] = ACTIONS(806), + [anon_sym_CARET_EQ] = ACTIONS(806), [anon_sym_DOLLAR] = ACTIONS(642), + [anon_sym_LBRACK] = ACTIONS(684), [anon_sym_AT] = ACTIONS(642), + [anon_sym_COLON_COLON] = ACTIONS(650), [aux_sym_number_token1] = ACTIONS(642), [aux_sym_number_token2] = ACTIONS(642), [anon_sym_DQUOTE] = ACTIONS(642), [anon_sym_POUND] = ACTIONS(642), - [sym_concatenating_space] = ACTIONS(654), - [sym__if_else_separator] = ACTIONS(654), + [sym_concatenating_space] = ACTIONS(652), }, - [213] = { + [207] = { + [sym_identifier] = ACTIONS(692), + [anon_sym_COMMA] = ACTIONS(692), + [anon_sym_SEMI] = ACTIONS(692), + [anon_sym_LF] = ACTIONS(692), + [anon_sym_CR_LF] = ACTIONS(692), + [anon_sym_if] = ACTIONS(692), + [anon_sym_LPAREN] = ACTIONS(692), + [anon_sym_while] = ACTIONS(692), + [anon_sym_do] = ACTIONS(692), + [anon_sym_for] = ACTIONS(692), + [anon_sym_in] = ACTIONS(692), + [sym_break_statement] = ACTIONS(692), + [sym_continue_statement] = ACTIONS(692), + [anon_sym_delete] = ACTIONS(692), + [anon_sym_exit] = ACTIONS(692), + [anon_sym_return] = ACTIONS(692), + [anon_sym_switch] = ACTIONS(692), + [anon_sym_LBRACE] = ACTIONS(692), + [anon_sym_RBRACE] = ACTIONS(692), + [anon_sym_case] = ACTIONS(692), + [anon_sym_default] = ACTIONS(692), + [anon_sym_getline] = ACTIONS(692), + [anon_sym_LT] = ACTIONS(692), + [sym_next_statement] = ACTIONS(692), + [sym_nextfile_statement] = ACTIONS(692), + [anon_sym_print] = ACTIONS(692), + [anon_sym_printf] = ACTIONS(692), + [anon_sym_GT] = ACTIONS(692), + [anon_sym_GT_GT] = ACTIONS(692), + [anon_sym_PIPE] = ACTIONS(692), + [anon_sym_PIPE_AMP] = ACTIONS(692), + [anon_sym_QMARK] = ACTIONS(692), + [anon_sym_CARET] = ACTIONS(692), + [anon_sym_STAR_STAR] = ACTIONS(692), + [anon_sym_STAR] = ACTIONS(692), + [anon_sym_SLASH] = ACTIONS(692), + [anon_sym_PERCENT] = ACTIONS(692), + [anon_sym_PLUS] = ACTIONS(692), + [anon_sym_DASH] = ACTIONS(692), + [anon_sym_LT_EQ] = ACTIONS(692), + [anon_sym_GT_EQ] = ACTIONS(692), + [anon_sym_EQ_EQ] = ACTIONS(692), + [anon_sym_BANG_EQ] = ACTIONS(692), + [anon_sym_TILDE] = ACTIONS(692), + [anon_sym_BANG_TILDE] = ACTIONS(692), + [anon_sym_AMP_AMP] = ACTIONS(692), + [anon_sym_PIPE_PIPE] = ACTIONS(692), + [anon_sym_BANG] = ACTIONS(692), + [anon_sym_PLUS_PLUS] = ACTIONS(692), + [anon_sym_DASH_DASH] = ACTIONS(692), + [anon_sym_EQ] = ACTIONS(692), + [anon_sym_PLUS_EQ] = ACTIONS(692), + [anon_sym_DASH_EQ] = ACTIONS(692), + [anon_sym_STAR_EQ] = ACTIONS(692), + [anon_sym_SLASH_EQ] = ACTIONS(692), + [anon_sym_PERCENT_EQ] = ACTIONS(692), + [anon_sym_CARET_EQ] = ACTIONS(692), + [anon_sym_DOLLAR] = ACTIONS(692), + [anon_sym_LBRACK] = ACTIONS(684), + [anon_sym_AT] = ACTIONS(692), + [aux_sym_number_token1] = ACTIONS(692), + [aux_sym_number_token2] = ACTIONS(692), + [anon_sym_DQUOTE] = ACTIONS(692), + [anon_sym_POUND] = ACTIONS(692), + [sym_concatenating_space] = ACTIONS(694), + }, + [208] = { + [sym_identifier] = ACTIONS(654), + [anon_sym_COMMA] = ACTIONS(654), + [anon_sym_SEMI] = ACTIONS(654), + [anon_sym_LF] = ACTIONS(654), + [anon_sym_CR_LF] = ACTIONS(654), + [anon_sym_if] = ACTIONS(654), + [anon_sym_LPAREN] = ACTIONS(654), + [anon_sym_while] = ACTIONS(654), + [anon_sym_do] = ACTIONS(654), + [anon_sym_for] = ACTIONS(654), + [anon_sym_in] = ACTIONS(642), + [sym_break_statement] = ACTIONS(654), + [sym_continue_statement] = ACTIONS(654), + [anon_sym_delete] = ACTIONS(654), + [anon_sym_exit] = ACTIONS(654), + [anon_sym_return] = ACTIONS(654), + [anon_sym_switch] = ACTIONS(654), + [anon_sym_LBRACE] = ACTIONS(654), + [anon_sym_RBRACE] = ACTIONS(654), + [anon_sym_case] = ACTIONS(654), + [anon_sym_default] = ACTIONS(654), + [anon_sym_getline] = ACTIONS(654), + [anon_sym_LT] = ACTIONS(642), + [sym_next_statement] = ACTIONS(654), + [sym_nextfile_statement] = ACTIONS(654), + [anon_sym_print] = ACTIONS(654), + [anon_sym_printf] = ACTIONS(654), + [anon_sym_GT] = ACTIONS(642), + [anon_sym_GT_GT] = ACTIONS(654), + [anon_sym_PIPE] = ACTIONS(642), + [anon_sym_PIPE_AMP] = ACTIONS(642), + [anon_sym_QMARK] = ACTIONS(642), + [anon_sym_CARET] = ACTIONS(642), + [anon_sym_STAR_STAR] = ACTIONS(642), + [anon_sym_STAR] = ACTIONS(642), + [anon_sym_SLASH] = ACTIONS(642), + [anon_sym_PERCENT] = ACTIONS(642), + [anon_sym_PLUS] = ACTIONS(642), + [anon_sym_DASH] = ACTIONS(642), + [anon_sym_LT_EQ] = ACTIONS(642), + [anon_sym_GT_EQ] = ACTIONS(642), + [anon_sym_EQ_EQ] = ACTIONS(642), + [anon_sym_BANG_EQ] = ACTIONS(642), + [anon_sym_TILDE] = ACTIONS(642), + [anon_sym_BANG_TILDE] = ACTIONS(642), + [anon_sym_AMP_AMP] = ACTIONS(642), + [anon_sym_PIPE_PIPE] = ACTIONS(642), + [anon_sym_BANG] = ACTIONS(654), + [anon_sym_PLUS_PLUS] = ACTIONS(656), + [anon_sym_DASH_DASH] = ACTIONS(656), + [anon_sym_EQ] = ACTIONS(696), + [anon_sym_PLUS_EQ] = ACTIONS(696), + [anon_sym_DASH_EQ] = ACTIONS(696), + [anon_sym_STAR_EQ] = ACTIONS(696), + [anon_sym_SLASH_EQ] = ACTIONS(696), + [anon_sym_PERCENT_EQ] = ACTIONS(696), + [anon_sym_CARET_EQ] = ACTIONS(696), + [anon_sym_DOLLAR] = ACTIONS(654), + [anon_sym_LBRACK] = ACTIONS(684), + [anon_sym_AT] = ACTIONS(654), + [aux_sym_number_token1] = ACTIONS(654), + [aux_sym_number_token2] = ACTIONS(654), + [anon_sym_DQUOTE] = ACTIONS(654), + [anon_sym_POUND] = ACTIONS(654), + [sym_concatenating_space] = ACTIONS(658), + }, + [209] = { + [sym_identifier] = ACTIONS(688), + [anon_sym_COMMA] = ACTIONS(688), + [anon_sym_SEMI] = ACTIONS(688), + [anon_sym_LF] = ACTIONS(688), + [anon_sym_CR_LF] = ACTIONS(688), + [anon_sym_if] = ACTIONS(688), + [anon_sym_LPAREN] = ACTIONS(688), + [anon_sym_while] = ACTIONS(688), + [anon_sym_do] = ACTIONS(688), + [anon_sym_for] = ACTIONS(688), + [anon_sym_in] = ACTIONS(688), + [sym_break_statement] = ACTIONS(688), + [sym_continue_statement] = ACTIONS(688), + [anon_sym_delete] = ACTIONS(688), + [anon_sym_exit] = ACTIONS(688), + [anon_sym_return] = ACTIONS(688), + [anon_sym_switch] = ACTIONS(688), + [anon_sym_LBRACE] = ACTIONS(688), + [anon_sym_RBRACE] = ACTIONS(688), + [anon_sym_case] = ACTIONS(688), + [anon_sym_default] = ACTIONS(688), + [anon_sym_getline] = ACTIONS(688), + [anon_sym_LT] = ACTIONS(688), + [sym_next_statement] = ACTIONS(688), + [sym_nextfile_statement] = ACTIONS(688), + [anon_sym_print] = ACTIONS(688), + [anon_sym_printf] = ACTIONS(688), + [anon_sym_GT] = ACTIONS(688), + [anon_sym_GT_GT] = ACTIONS(688), + [anon_sym_PIPE] = ACTIONS(688), + [anon_sym_PIPE_AMP] = ACTIONS(688), + [anon_sym_QMARK] = ACTIONS(688), + [anon_sym_CARET] = ACTIONS(688), + [anon_sym_STAR_STAR] = ACTIONS(688), + [anon_sym_STAR] = ACTIONS(688), + [anon_sym_SLASH] = ACTIONS(688), + [anon_sym_PERCENT] = ACTIONS(688), + [anon_sym_PLUS] = ACTIONS(688), + [anon_sym_DASH] = ACTIONS(688), + [anon_sym_LT_EQ] = ACTIONS(688), + [anon_sym_GT_EQ] = ACTIONS(688), + [anon_sym_EQ_EQ] = ACTIONS(688), + [anon_sym_BANG_EQ] = ACTIONS(688), + [anon_sym_TILDE] = ACTIONS(688), + [anon_sym_BANG_TILDE] = ACTIONS(688), + [anon_sym_AMP_AMP] = ACTIONS(688), + [anon_sym_PIPE_PIPE] = ACTIONS(688), + [anon_sym_BANG] = ACTIONS(688), + [anon_sym_PLUS_PLUS] = ACTIONS(688), + [anon_sym_DASH_DASH] = ACTIONS(688), + [anon_sym_EQ] = ACTIONS(688), + [anon_sym_PLUS_EQ] = ACTIONS(688), + [anon_sym_DASH_EQ] = ACTIONS(688), + [anon_sym_STAR_EQ] = ACTIONS(688), + [anon_sym_SLASH_EQ] = ACTIONS(688), + [anon_sym_PERCENT_EQ] = ACTIONS(688), + [anon_sym_CARET_EQ] = ACTIONS(688), + [anon_sym_DOLLAR] = ACTIONS(688), + [anon_sym_LBRACK] = ACTIONS(684), + [anon_sym_AT] = ACTIONS(688), + [aux_sym_number_token1] = ACTIONS(688), + [aux_sym_number_token2] = ACTIONS(688), + [anon_sym_DQUOTE] = ACTIONS(688), + [anon_sym_POUND] = ACTIONS(688), + [sym_concatenating_space] = ACTIONS(690), + }, + [210] = { + [sym_array_ref] = STATE(209), + [sym_namespace] = STATE(2066), + [sym_ns_qualified_name] = STATE(261), + [sym_identifier] = ACTIONS(808), + [anon_sym_COMMA] = ACTIONS(726), + [anon_sym_SEMI] = ACTIONS(726), + [anon_sym_LF] = ACTIONS(726), + [anon_sym_CR_LF] = ACTIONS(726), + [anon_sym_if] = ACTIONS(726), + [anon_sym_LPAREN] = ACTIONS(726), + [anon_sym_while] = ACTIONS(726), + [anon_sym_do] = ACTIONS(726), + [anon_sym_for] = ACTIONS(726), + [anon_sym_in] = ACTIONS(726), + [sym_break_statement] = ACTIONS(726), + [sym_continue_statement] = ACTIONS(726), + [anon_sym_delete] = ACTIONS(726), + [anon_sym_exit] = ACTIONS(726), + [anon_sym_return] = ACTIONS(726), + [anon_sym_switch] = ACTIONS(726), + [anon_sym_LBRACE] = ACTIONS(726), + [anon_sym_RBRACE] = ACTIONS(726), + [anon_sym_getline] = ACTIONS(726), + [anon_sym_LT] = ACTIONS(810), + [sym_next_statement] = ACTIONS(726), + [sym_nextfile_statement] = ACTIONS(726), + [anon_sym_print] = ACTIONS(726), + [anon_sym_printf] = ACTIONS(726), + [anon_sym_GT] = ACTIONS(726), + [anon_sym_GT_GT] = ACTIONS(726), + [anon_sym_PIPE] = ACTIONS(726), + [anon_sym_PIPE_AMP] = ACTIONS(726), + [anon_sym_QMARK] = ACTIONS(726), + [anon_sym_CARET] = ACTIONS(726), + [anon_sym_STAR_STAR] = ACTIONS(726), + [anon_sym_STAR] = ACTIONS(726), + [anon_sym_SLASH] = ACTIONS(726), + [anon_sym_PERCENT] = ACTIONS(726), + [anon_sym_PLUS] = ACTIONS(726), + [anon_sym_DASH] = ACTIONS(726), + [anon_sym_LT_EQ] = ACTIONS(726), + [anon_sym_GT_EQ] = ACTIONS(726), + [anon_sym_EQ_EQ] = ACTIONS(726), + [anon_sym_BANG_EQ] = ACTIONS(726), + [anon_sym_TILDE] = ACTIONS(726), + [anon_sym_BANG_TILDE] = ACTIONS(726), + [anon_sym_AMP_AMP] = ACTIONS(726), + [anon_sym_PIPE_PIPE] = ACTIONS(726), + [anon_sym_BANG] = ACTIONS(726), + [anon_sym_PLUS_PLUS] = ACTIONS(726), + [anon_sym_DASH_DASH] = ACTIONS(726), + [anon_sym_EQ] = ACTIONS(726), + [anon_sym_PLUS_EQ] = ACTIONS(726), + [anon_sym_DASH_EQ] = ACTIONS(726), + [anon_sym_STAR_EQ] = ACTIONS(726), + [anon_sym_SLASH_EQ] = ACTIONS(726), + [anon_sym_PERCENT_EQ] = ACTIONS(726), + [anon_sym_CARET_EQ] = ACTIONS(726), + [anon_sym_DOLLAR] = ACTIONS(726), + [anon_sym_AT] = ACTIONS(726), + [aux_sym_number_token1] = ACTIONS(726), + [aux_sym_number_token2] = ACTIONS(726), + [anon_sym_DQUOTE] = ACTIONS(726), + [anon_sym_POUND] = ACTIONS(726), + [sym_concatenating_space] = ACTIONS(728), + }, + [211] = { + [sym_identifier] = ACTIONS(654), + [anon_sym_COMMA] = ACTIONS(654), + [anon_sym_SEMI] = ACTIONS(654), + [anon_sym_LF] = ACTIONS(654), + [anon_sym_CR_LF] = ACTIONS(654), + [anon_sym_if] = ACTIONS(654), + [anon_sym_LPAREN] = ACTIONS(654), + [anon_sym_while] = ACTIONS(654), + [anon_sym_do] = ACTIONS(654), + [anon_sym_for] = ACTIONS(654), + [anon_sym_in] = ACTIONS(642), + [sym_break_statement] = ACTIONS(654), + [sym_continue_statement] = ACTIONS(654), + [anon_sym_delete] = ACTIONS(654), + [anon_sym_exit] = ACTIONS(654), + [anon_sym_return] = ACTIONS(654), + [anon_sym_switch] = ACTIONS(654), + [anon_sym_LBRACE] = ACTIONS(654), + [anon_sym_RBRACE] = ACTIONS(654), + [anon_sym_getline] = ACTIONS(654), + [anon_sym_LT] = ACTIONS(642), + [sym_next_statement] = ACTIONS(654), + [sym_nextfile_statement] = ACTIONS(654), + [anon_sym_print] = ACTIONS(654), + [anon_sym_LPAREN2] = ACTIONS(802), + [anon_sym_printf] = ACTIONS(654), + [anon_sym_GT] = ACTIONS(642), + [anon_sym_GT_GT] = ACTIONS(654), + [anon_sym_PIPE] = ACTIONS(642), + [anon_sym_PIPE_AMP] = ACTIONS(642), + [anon_sym_QMARK] = ACTIONS(642), + [anon_sym_CARET] = ACTIONS(642), + [anon_sym_STAR_STAR] = ACTIONS(642), + [anon_sym_STAR] = ACTIONS(642), + [anon_sym_SLASH] = ACTIONS(642), + [anon_sym_PERCENT] = ACTIONS(642), + [anon_sym_PLUS] = ACTIONS(642), + [anon_sym_DASH] = ACTIONS(642), + [anon_sym_LT_EQ] = ACTIONS(642), + [anon_sym_GT_EQ] = ACTIONS(642), + [anon_sym_EQ_EQ] = ACTIONS(642), + [anon_sym_BANG_EQ] = ACTIONS(642), + [anon_sym_TILDE] = ACTIONS(642), + [anon_sym_BANG_TILDE] = ACTIONS(642), + [anon_sym_AMP_AMP] = ACTIONS(642), + [anon_sym_PIPE_PIPE] = ACTIONS(642), + [anon_sym_BANG] = ACTIONS(654), + [anon_sym_PLUS_PLUS] = ACTIONS(656), + [anon_sym_DASH_DASH] = ACTIONS(656), + [anon_sym_EQ] = ACTIONS(696), + [anon_sym_PLUS_EQ] = ACTIONS(696), + [anon_sym_DASH_EQ] = ACTIONS(696), + [anon_sym_STAR_EQ] = ACTIONS(696), + [anon_sym_SLASH_EQ] = ACTIONS(696), + [anon_sym_PERCENT_EQ] = ACTIONS(696), + [anon_sym_CARET_EQ] = ACTIONS(696), + [anon_sym_DOLLAR] = ACTIONS(654), + [anon_sym_LBRACK] = ACTIONS(684), + [anon_sym_AT] = ACTIONS(654), + [anon_sym_COLON_COLON] = ACTIONS(650), + [aux_sym_number_token1] = ACTIONS(654), + [aux_sym_number_token2] = ACTIONS(654), + [anon_sym_DQUOTE] = ACTIONS(654), + [anon_sym_POUND] = ACTIONS(654), + [sym_concatenating_space] = ACTIONS(658), + }, + [212] = { [sym_identifier] = ACTIONS(812), [anon_sym_COMMA] = ACTIONS(812), [anon_sym_SEMI] = ACTIONS(812), @@ -23542,2469 +23777,429 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET_EQ] = ACTIONS(812), [anon_sym_DOLLAR] = ACTIONS(812), [anon_sym_AT] = ACTIONS(812), - [aux_sym_number_token1] = ACTIONS(812), - [aux_sym_number_token2] = ACTIONS(812), - [anon_sym_DQUOTE] = ACTIONS(812), - [anon_sym_POUND] = ACTIONS(812), - [sym_concatenating_space] = ACTIONS(814), - [sym__if_else_separator] = ACTIONS(814), - }, - [214] = { - [sym_identifier] = ACTIONS(682), - [anon_sym_COMMA] = ACTIONS(682), - [anon_sym_SEMI] = ACTIONS(682), - [anon_sym_LF] = ACTIONS(682), - [anon_sym_CR_LF] = ACTIONS(682), - [anon_sym_if] = ACTIONS(682), - [anon_sym_LPAREN] = ACTIONS(682), - [anon_sym_while] = ACTIONS(682), - [anon_sym_do] = ACTIONS(682), - [anon_sym_for] = ACTIONS(682), - [anon_sym_in] = ACTIONS(682), - [sym_break_statement] = ACTIONS(682), - [sym_continue_statement] = ACTIONS(682), - [anon_sym_delete] = ACTIONS(682), - [anon_sym_exit] = ACTIONS(682), - [anon_sym_return] = ACTIONS(682), - [anon_sym_switch] = ACTIONS(682), - [anon_sym_LBRACE] = ACTIONS(682), - [anon_sym_RBRACE] = ACTIONS(682), - [anon_sym_case] = ACTIONS(682), - [anon_sym_default] = ACTIONS(682), - [anon_sym_getline] = ACTIONS(682), - [anon_sym_LT] = ACTIONS(682), - [sym_next_statement] = ACTIONS(682), - [sym_nextfile_statement] = ACTIONS(682), - [anon_sym_print] = ACTIONS(682), - [anon_sym_printf] = ACTIONS(682), - [anon_sym_GT] = ACTIONS(682), - [anon_sym_GT_GT] = ACTIONS(682), - [anon_sym_PIPE] = ACTIONS(682), - [anon_sym_PIPE_AMP] = ACTIONS(682), - [anon_sym_QMARK] = ACTIONS(682), - [anon_sym_CARET] = ACTIONS(682), - [anon_sym_STAR_STAR] = ACTIONS(682), - [anon_sym_STAR] = ACTIONS(682), - [anon_sym_SLASH] = ACTIONS(682), - [anon_sym_PERCENT] = ACTIONS(682), - [anon_sym_PLUS] = ACTIONS(682), - [anon_sym_DASH] = ACTIONS(682), - [anon_sym_LT_EQ] = ACTIONS(682), - [anon_sym_GT_EQ] = ACTIONS(682), - [anon_sym_EQ_EQ] = ACTIONS(682), - [anon_sym_BANG_EQ] = ACTIONS(682), - [anon_sym_TILDE] = ACTIONS(682), - [anon_sym_BANG_TILDE] = ACTIONS(682), - [anon_sym_AMP_AMP] = ACTIONS(682), - [anon_sym_PIPE_PIPE] = ACTIONS(682), - [anon_sym_BANG] = ACTIONS(682), - [anon_sym_PLUS_PLUS] = ACTIONS(682), - [anon_sym_DASH_DASH] = ACTIONS(682), - [anon_sym_EQ] = ACTIONS(682), - [anon_sym_PLUS_EQ] = ACTIONS(682), - [anon_sym_DASH_EQ] = ACTIONS(682), - [anon_sym_STAR_EQ] = ACTIONS(682), - [anon_sym_SLASH_EQ] = ACTIONS(682), - [anon_sym_PERCENT_EQ] = ACTIONS(682), - [anon_sym_CARET_EQ] = ACTIONS(682), - [anon_sym_DOLLAR] = ACTIONS(682), - [anon_sym_LBRACK] = ACTIONS(688), - [anon_sym_AT] = ACTIONS(682), - [aux_sym_number_token1] = ACTIONS(682), - [aux_sym_number_token2] = ACTIONS(682), - [anon_sym_DQUOTE] = ACTIONS(682), - [anon_sym_POUND] = ACTIONS(682), - [sym_concatenating_space] = ACTIONS(684), - }, - [215] = { - [sym_identifier] = ACTIONS(642), - [anon_sym_COMMA] = ACTIONS(642), - [anon_sym_SEMI] = ACTIONS(642), - [anon_sym_LF] = ACTIONS(642), - [anon_sym_CR_LF] = ACTIONS(642), - [anon_sym_if] = ACTIONS(642), - [anon_sym_LPAREN] = ACTIONS(642), - [anon_sym_while] = ACTIONS(642), - [anon_sym_do] = ACTIONS(642), - [anon_sym_for] = ACTIONS(642), - [anon_sym_in] = ACTIONS(644), - [sym_break_statement] = ACTIONS(642), - [sym_continue_statement] = ACTIONS(642), - [anon_sym_delete] = ACTIONS(642), - [anon_sym_exit] = ACTIONS(642), - [anon_sym_return] = ACTIONS(642), - [anon_sym_switch] = ACTIONS(642), - [anon_sym_LBRACE] = ACTIONS(642), - [anon_sym_RBRACE] = ACTIONS(642), - [anon_sym_case] = ACTIONS(642), - [anon_sym_default] = ACTIONS(642), - [anon_sym_getline] = ACTIONS(642), - [anon_sym_LT] = ACTIONS(644), - [sym_next_statement] = ACTIONS(642), - [sym_nextfile_statement] = ACTIONS(642), - [anon_sym_print] = ACTIONS(642), - [anon_sym_printf] = ACTIONS(642), - [anon_sym_GT] = ACTIONS(644), - [anon_sym_GT_GT] = ACTIONS(642), - [anon_sym_PIPE] = ACTIONS(644), - [anon_sym_PIPE_AMP] = ACTIONS(644), - [anon_sym_QMARK] = ACTIONS(644), - [anon_sym_CARET] = ACTIONS(644), - [anon_sym_STAR_STAR] = ACTIONS(644), - [anon_sym_STAR] = ACTIONS(644), - [anon_sym_SLASH] = ACTIONS(644), - [anon_sym_PERCENT] = ACTIONS(644), - [anon_sym_PLUS] = ACTIONS(644), - [anon_sym_DASH] = ACTIONS(644), - [anon_sym_LT_EQ] = ACTIONS(644), - [anon_sym_GT_EQ] = ACTIONS(644), - [anon_sym_EQ_EQ] = ACTIONS(644), - [anon_sym_BANG_EQ] = ACTIONS(644), - [anon_sym_TILDE] = ACTIONS(644), - [anon_sym_BANG_TILDE] = ACTIONS(644), - [anon_sym_AMP_AMP] = ACTIONS(644), - [anon_sym_PIPE_PIPE] = ACTIONS(644), - [anon_sym_BANG] = ACTIONS(642), - [anon_sym_PLUS_PLUS] = ACTIONS(648), - [anon_sym_DASH_DASH] = ACTIONS(648), - [anon_sym_EQ] = ACTIONS(642), - [anon_sym_PLUS_EQ] = ACTIONS(642), - [anon_sym_DASH_EQ] = ACTIONS(642), - [anon_sym_STAR_EQ] = ACTIONS(642), - [anon_sym_SLASH_EQ] = ACTIONS(642), - [anon_sym_PERCENT_EQ] = ACTIONS(642), - [anon_sym_CARET_EQ] = ACTIONS(642), - [anon_sym_DOLLAR] = ACTIONS(642), - [anon_sym_AT] = ACTIONS(642), - [aux_sym_number_token1] = ACTIONS(642), - [aux_sym_number_token2] = ACTIONS(642), - [anon_sym_DQUOTE] = ACTIONS(642), - [anon_sym_POUND] = ACTIONS(642), - [sym_concatenating_space] = ACTIONS(654), - [sym__if_else_separator] = ACTIONS(654), - }, - [216] = { - [sym_identifier] = ACTIONS(816), - [anon_sym_COMMA] = ACTIONS(816), - [anon_sym_SEMI] = ACTIONS(816), - [anon_sym_LF] = ACTIONS(816), - [anon_sym_CR_LF] = ACTIONS(816), - [anon_sym_if] = ACTIONS(816), - [anon_sym_LPAREN] = ACTIONS(816), - [anon_sym_while] = ACTIONS(816), - [anon_sym_do] = ACTIONS(816), - [anon_sym_for] = ACTIONS(816), - [anon_sym_in] = ACTIONS(816), - [sym_break_statement] = ACTIONS(816), - [sym_continue_statement] = ACTIONS(816), - [anon_sym_delete] = ACTIONS(816), - [anon_sym_exit] = ACTIONS(816), - [anon_sym_return] = ACTIONS(816), - [anon_sym_switch] = ACTIONS(816), - [anon_sym_LBRACE] = ACTIONS(816), - [anon_sym_RBRACE] = ACTIONS(816), - [anon_sym_case] = ACTIONS(816), - [anon_sym_default] = ACTIONS(816), - [anon_sym_getline] = ACTIONS(816), - [anon_sym_LT] = ACTIONS(816), - [sym_next_statement] = ACTIONS(816), - [sym_nextfile_statement] = ACTIONS(816), - [anon_sym_print] = ACTIONS(816), - [anon_sym_printf] = ACTIONS(816), - [anon_sym_GT] = ACTIONS(816), - [anon_sym_GT_GT] = ACTIONS(816), - [anon_sym_PIPE] = ACTIONS(816), - [anon_sym_PIPE_AMP] = ACTIONS(816), - [anon_sym_QMARK] = ACTIONS(816), - [anon_sym_CARET] = ACTIONS(816), - [anon_sym_STAR_STAR] = ACTIONS(816), - [anon_sym_STAR] = ACTIONS(816), - [anon_sym_SLASH] = ACTIONS(816), - [anon_sym_PERCENT] = ACTIONS(816), - [anon_sym_PLUS] = ACTIONS(816), - [anon_sym_DASH] = ACTIONS(816), - [anon_sym_LT_EQ] = ACTIONS(816), - [anon_sym_GT_EQ] = ACTIONS(816), - [anon_sym_EQ_EQ] = ACTIONS(816), - [anon_sym_BANG_EQ] = ACTIONS(816), - [anon_sym_TILDE] = ACTIONS(816), - [anon_sym_BANG_TILDE] = ACTIONS(816), - [anon_sym_AMP_AMP] = ACTIONS(816), - [anon_sym_PIPE_PIPE] = ACTIONS(816), - [anon_sym_BANG] = ACTIONS(816), - [anon_sym_PLUS_PLUS] = ACTIONS(816), - [anon_sym_DASH_DASH] = ACTIONS(816), - [anon_sym_EQ] = ACTIONS(816), - [anon_sym_PLUS_EQ] = ACTIONS(816), - [anon_sym_DASH_EQ] = ACTIONS(816), - [anon_sym_STAR_EQ] = ACTIONS(816), - [anon_sym_SLASH_EQ] = ACTIONS(816), - [anon_sym_PERCENT_EQ] = ACTIONS(816), - [anon_sym_CARET_EQ] = ACTIONS(816), - [anon_sym_DOLLAR] = ACTIONS(816), - [anon_sym_AT] = ACTIONS(816), - [aux_sym_number_token1] = ACTIONS(816), - [aux_sym_number_token2] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(816), - [anon_sym_POUND] = ACTIONS(816), - [sym_concatenating_space] = ACTIONS(818), - [sym__if_else_separator] = ACTIONS(818), - }, - [217] = { - [sym_identifier] = ACTIONS(820), - [anon_sym_COMMA] = ACTIONS(820), - [anon_sym_SEMI] = ACTIONS(820), - [anon_sym_LF] = ACTIONS(820), - [anon_sym_CR_LF] = ACTIONS(820), - [anon_sym_if] = ACTIONS(820), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_while] = ACTIONS(820), - [anon_sym_do] = ACTIONS(820), - [anon_sym_for] = ACTIONS(820), - [anon_sym_in] = ACTIONS(820), - [sym_break_statement] = ACTIONS(820), - [sym_continue_statement] = ACTIONS(820), - [anon_sym_delete] = ACTIONS(820), - [anon_sym_exit] = ACTIONS(820), - [anon_sym_return] = ACTIONS(820), - [anon_sym_switch] = ACTIONS(820), - [anon_sym_LBRACE] = ACTIONS(820), - [anon_sym_RBRACE] = ACTIONS(820), - [anon_sym_case] = ACTIONS(820), - [anon_sym_default] = ACTIONS(820), - [anon_sym_getline] = ACTIONS(820), - [anon_sym_LT] = ACTIONS(820), - [sym_next_statement] = ACTIONS(820), - [sym_nextfile_statement] = ACTIONS(820), - [anon_sym_print] = ACTIONS(820), - [anon_sym_printf] = ACTIONS(820), - [anon_sym_GT] = ACTIONS(820), - [anon_sym_GT_GT] = ACTIONS(820), - [anon_sym_PIPE] = ACTIONS(820), - [anon_sym_PIPE_AMP] = ACTIONS(820), - [anon_sym_QMARK] = ACTIONS(820), - [anon_sym_CARET] = ACTIONS(820), - [anon_sym_STAR_STAR] = ACTIONS(820), - [anon_sym_STAR] = ACTIONS(820), - [anon_sym_SLASH] = ACTIONS(820), - [anon_sym_PERCENT] = ACTIONS(820), - [anon_sym_PLUS] = ACTIONS(820), - [anon_sym_DASH] = ACTIONS(820), - [anon_sym_LT_EQ] = ACTIONS(820), - [anon_sym_GT_EQ] = ACTIONS(820), - [anon_sym_EQ_EQ] = ACTIONS(820), - [anon_sym_BANG_EQ] = ACTIONS(820), - [anon_sym_TILDE] = ACTIONS(820), - [anon_sym_BANG_TILDE] = ACTIONS(820), - [anon_sym_AMP_AMP] = ACTIONS(820), - [anon_sym_PIPE_PIPE] = ACTIONS(820), - [anon_sym_BANG] = ACTIONS(820), - [anon_sym_PLUS_PLUS] = ACTIONS(820), - [anon_sym_DASH_DASH] = ACTIONS(820), - [anon_sym_EQ] = ACTIONS(820), - [anon_sym_PLUS_EQ] = ACTIONS(820), - [anon_sym_DASH_EQ] = ACTIONS(820), - [anon_sym_STAR_EQ] = ACTIONS(820), - [anon_sym_SLASH_EQ] = ACTIONS(820), - [anon_sym_PERCENT_EQ] = ACTIONS(820), - [anon_sym_CARET_EQ] = ACTIONS(820), - [anon_sym_DOLLAR] = ACTIONS(820), - [anon_sym_AT] = ACTIONS(820), - [aux_sym_number_token1] = ACTIONS(820), - [aux_sym_number_token2] = ACTIONS(820), - [anon_sym_DQUOTE] = ACTIONS(820), - [anon_sym_POUND] = ACTIONS(820), - [sym_concatenating_space] = ACTIONS(822), - [sym__if_else_separator] = ACTIONS(822), - }, - [218] = { - [sym_array_ref] = STATE(192), - [sym_namespace] = STATE(2061), - [sym_ns_qualified_name] = STATE(192), - [sym_identifier] = ACTIONS(824), - [anon_sym_COMMA] = ACTIONS(712), - [anon_sym_SEMI] = ACTIONS(712), - [anon_sym_LF] = ACTIONS(712), - [anon_sym_CR_LF] = ACTIONS(712), - [anon_sym_if] = ACTIONS(712), - [anon_sym_LPAREN] = ACTIONS(712), - [anon_sym_while] = ACTIONS(712), - [anon_sym_do] = ACTIONS(712), - [anon_sym_for] = ACTIONS(712), - [anon_sym_in] = ACTIONS(712), - [sym_break_statement] = ACTIONS(712), - [sym_continue_statement] = ACTIONS(712), - [anon_sym_delete] = ACTIONS(712), - [anon_sym_exit] = ACTIONS(712), - [anon_sym_return] = ACTIONS(712), - [anon_sym_switch] = ACTIONS(712), - [anon_sym_LBRACE] = ACTIONS(712), - [anon_sym_RBRACE] = ACTIONS(712), - [anon_sym_getline] = ACTIONS(712), - [anon_sym_LT] = ACTIONS(712), - [sym_next_statement] = ACTIONS(712), - [sym_nextfile_statement] = ACTIONS(712), - [anon_sym_print] = ACTIONS(712), - [anon_sym_printf] = ACTIONS(712), - [anon_sym_GT] = ACTIONS(712), - [anon_sym_GT_GT] = ACTIONS(712), - [anon_sym_PIPE] = ACTIONS(712), - [anon_sym_PIPE_AMP] = ACTIONS(712), - [anon_sym_QMARK] = ACTIONS(712), - [anon_sym_CARET] = ACTIONS(712), - [anon_sym_STAR_STAR] = ACTIONS(712), - [anon_sym_STAR] = ACTIONS(712), - [anon_sym_SLASH] = ACTIONS(712), - [anon_sym_PERCENT] = ACTIONS(712), - [anon_sym_PLUS] = ACTIONS(712), - [anon_sym_DASH] = ACTIONS(712), - [anon_sym_LT_EQ] = ACTIONS(712), - [anon_sym_GT_EQ] = ACTIONS(712), - [anon_sym_EQ_EQ] = ACTIONS(712), - [anon_sym_BANG_EQ] = ACTIONS(712), - [anon_sym_TILDE] = ACTIONS(712), - [anon_sym_BANG_TILDE] = ACTIONS(712), - [anon_sym_AMP_AMP] = ACTIONS(712), - [anon_sym_PIPE_PIPE] = ACTIONS(712), - [anon_sym_BANG] = ACTIONS(712), - [anon_sym_PLUS_PLUS] = ACTIONS(712), - [anon_sym_DASH_DASH] = ACTIONS(712), - [anon_sym_EQ] = ACTIONS(712), - [anon_sym_PLUS_EQ] = ACTIONS(712), - [anon_sym_DASH_EQ] = ACTIONS(712), - [anon_sym_STAR_EQ] = ACTIONS(712), - [anon_sym_SLASH_EQ] = ACTIONS(712), - [anon_sym_PERCENT_EQ] = ACTIONS(712), - [anon_sym_CARET_EQ] = ACTIONS(712), - [anon_sym_DOLLAR] = ACTIONS(712), - [anon_sym_AT] = ACTIONS(712), - [aux_sym_number_token1] = ACTIONS(712), - [aux_sym_number_token2] = ACTIONS(712), - [anon_sym_DQUOTE] = ACTIONS(712), - [anon_sym_POUND] = ACTIONS(712), - [sym_concatenating_space] = ACTIONS(714), - }, -}; - -static const uint16_t ts_small_parse_table[] = { - [0] = 2, - ACTIONS(774), 1, - sym_concatenating_space, - ACTIONS(772), 63, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_in, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - anon_sym_getline, - anon_sym_LT, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [69] = 5, - ACTIONS(654), 1, - sym_concatenating_space, - ACTIONS(648), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(732), 7, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - ACTIONS(644), 21, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(642), 33, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - anon_sym_getline, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_GT_GT, - anon_sym_BANG, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [144] = 6, - ACTIONS(688), 1, - anon_sym_LBRACK, - ACTIONS(738), 1, - anon_sym_LPAREN2, - ACTIONS(744), 1, - sym_concatenating_space, - ACTIONS(740), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(742), 7, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - ACTIONS(644), 52, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_in, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_getline, - anon_sym_LT, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_BANG, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [221] = 2, - ACTIONS(684), 1, - sym_concatenating_space, - ACTIONS(682), 63, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_in, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - anon_sym_getline, - anon_sym_LT, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [290] = 4, - ACTIONS(654), 1, - sym_concatenating_space, - ACTIONS(648), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(644), 21, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(642), 40, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - anon_sym_getline, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_GT_GT, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [363] = 4, - ACTIONS(650), 1, - anon_sym_LBRACK, - ACTIONS(754), 1, - anon_sym_LT, - ACTIONS(680), 2, - sym_concatenating_space, - sym__if_else_separator, - ACTIONS(678), 60, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_in, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_getline, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [436] = 5, - ACTIONS(650), 1, - anon_sym_LBRACK, - ACTIONS(658), 2, - sym_concatenating_space, - sym__if_else_separator, - ACTIONS(718), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(720), 7, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - ACTIONS(644), 52, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_in, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_getline, - anon_sym_LT, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_BANG, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [511] = 2, - ACTIONS(806), 1, - sym_concatenating_space, - ACTIONS(804), 63, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_in, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - anon_sym_getline, - anon_sym_LT, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [580] = 2, - ACTIONS(818), 1, - sym_concatenating_space, - ACTIONS(816), 63, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_in, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - anon_sym_getline, - anon_sym_LT, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [649] = 2, - ACTIONS(810), 1, - sym_concatenating_space, - ACTIONS(808), 63, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_in, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - anon_sym_getline, - anon_sym_LT, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [718] = 2, - ACTIONS(782), 1, - sym_concatenating_space, - ACTIONS(780), 63, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_in, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - anon_sym_getline, - anon_sym_LT, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [787] = 2, - ACTIONS(748), 1, - sym_concatenating_space, - ACTIONS(746), 63, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_in, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - anon_sym_getline, - anon_sym_LT, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [856] = 2, - ACTIONS(798), 1, - sym_concatenating_space, - ACTIONS(796), 63, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_in, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - anon_sym_getline, - anon_sym_LT, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [925] = 2, - ACTIONS(814), 1, - sym_concatenating_space, - ACTIONS(812), 63, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_in, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - anon_sym_getline, - anon_sym_LT, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [994] = 2, - ACTIONS(692), 2, - sym_concatenating_space, - sym__if_else_separator, - ACTIONS(690), 62, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_in, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_getline, - anon_sym_LT, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_DOLLAR, - anon_sym_LBRACK, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [1063] = 3, - ACTIONS(828), 1, - sym_regex_flags, - ACTIONS(830), 2, - sym_concatenating_space, - sym__if_else_separator, - ACTIONS(826), 61, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_in, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_getline, - anon_sym_LT, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [1134] = 2, - ACTIONS(790), 1, - sym_concatenating_space, - ACTIONS(788), 63, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_in, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - anon_sym_getline, - anon_sym_LT, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [1203] = 3, - ACTIONS(658), 1, - sym_concatenating_space, - ACTIONS(694), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(644), 61, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_in, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - anon_sym_getline, - anon_sym_LT, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [1274] = 7, - ACTIONS(654), 1, - sym_concatenating_space, - ACTIONS(688), 1, - anon_sym_LBRACK, - ACTIONS(738), 1, - anon_sym_LPAREN2, - ACTIONS(648), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(732), 7, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - ACTIONS(644), 21, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(642), 31, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_getline, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_GT_GT, - anon_sym_BANG, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [1353] = 2, - ACTIONS(794), 1, - sym_concatenating_space, - ACTIONS(792), 63, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_in, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - anon_sym_getline, - anon_sym_LT, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [1422] = 3, - ACTIONS(834), 1, - sym_regex_flags, - ACTIONS(836), 2, - sym_concatenating_space, - sym__if_else_separator, - ACTIONS(832), 61, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_in, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_getline, - anon_sym_LT, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [1493] = 6, - ACTIONS(650), 1, - anon_sym_LBRACK, - ACTIONS(658), 1, - sym__if_else_separator, - ACTIONS(730), 1, - sym_concatenating_space, - ACTIONS(726), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(728), 7, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - ACTIONS(644), 52, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_in, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_getline, - anon_sym_LT, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_BANG, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [1570] = 2, - ACTIONS(786), 1, - sym_concatenating_space, - ACTIONS(784), 63, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_in, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - anon_sym_getline, - anon_sym_LT, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [1639] = 2, - ACTIONS(778), 1, - sym_concatenating_space, - ACTIONS(776), 63, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_in, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - anon_sym_getline, - anon_sym_LT, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [1708] = 2, - ACTIONS(770), 1, - sym_concatenating_space, - ACTIONS(768), 63, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_in, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - anon_sym_getline, - anon_sym_LT, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [1777] = 2, - ACTIONS(752), 1, - sym_concatenating_space, - ACTIONS(750), 63, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_in, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - anon_sym_getline, - anon_sym_LT, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [1846] = 2, - ACTIONS(802), 1, - sym_concatenating_space, - ACTIONS(800), 63, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_in, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - anon_sym_getline, - anon_sym_LT, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [1915] = 2, - ACTIONS(822), 1, - sym_concatenating_space, - ACTIONS(820), 63, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_in, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - anon_sym_getline, - anon_sym_LT, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [1984] = 5, - ACTIONS(652), 1, - anon_sym_COLON_COLON, - ACTIONS(680), 1, - sym_concatenating_space, - ACTIONS(688), 1, - anon_sym_LBRACK, - ACTIONS(838), 1, - anon_sym_LT, - ACTIONS(678), 60, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_in, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_getline, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [2059] = 2, - ACTIONS(762), 1, - sym_concatenating_space, - ACTIONS(760), 63, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_in, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - anon_sym_getline, - anon_sym_LT, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [2128] = 3, - ACTIONS(654), 1, - sym_concatenating_space, - ACTIONS(644), 21, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(642), 42, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - anon_sym_getline, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_GT_GT, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [2199] = 6, - ACTIONS(658), 1, - sym_concatenating_space, - ACTIONS(688), 1, + [aux_sym_number_token1] = ACTIONS(812), + [aux_sym_number_token2] = ACTIONS(812), + [anon_sym_DQUOTE] = ACTIONS(812), + [anon_sym_POUND] = ACTIONS(812), + [sym_concatenating_space] = ACTIONS(814), + [sym__if_else_separator] = ACTIONS(814), + }, + [213] = { + [sym_identifier] = ACTIONS(654), + [anon_sym_COMMA] = ACTIONS(654), + [anon_sym_SEMI] = ACTIONS(654), + [anon_sym_LF] = ACTIONS(654), + [anon_sym_CR_LF] = ACTIONS(654), + [anon_sym_if] = ACTIONS(654), + [anon_sym_LPAREN] = ACTIONS(654), + [anon_sym_while] = ACTIONS(654), + [anon_sym_do] = ACTIONS(654), + [anon_sym_for] = ACTIONS(654), + [anon_sym_in] = ACTIONS(642), + [sym_break_statement] = ACTIONS(654), + [sym_continue_statement] = ACTIONS(654), + [anon_sym_delete] = ACTIONS(654), + [anon_sym_exit] = ACTIONS(654), + [anon_sym_return] = ACTIONS(654), + [anon_sym_switch] = ACTIONS(654), + [anon_sym_LBRACE] = ACTIONS(654), + [anon_sym_RBRACE] = ACTIONS(654), + [anon_sym_case] = ACTIONS(654), + [anon_sym_default] = ACTIONS(654), + [anon_sym_getline] = ACTIONS(654), + [anon_sym_LT] = ACTIONS(642), + [sym_next_statement] = ACTIONS(654), + [sym_nextfile_statement] = ACTIONS(654), + [anon_sym_print] = ACTIONS(654), + [anon_sym_printf] = ACTIONS(654), + [anon_sym_GT] = ACTIONS(642), + [anon_sym_GT_GT] = ACTIONS(654), + [anon_sym_PIPE] = ACTIONS(642), + [anon_sym_PIPE_AMP] = ACTIONS(642), + [anon_sym_QMARK] = ACTIONS(642), + [anon_sym_CARET] = ACTIONS(642), + [anon_sym_STAR_STAR] = ACTIONS(642), + [anon_sym_STAR] = ACTIONS(642), + [anon_sym_SLASH] = ACTIONS(642), + [anon_sym_PERCENT] = ACTIONS(642), + [anon_sym_PLUS] = ACTIONS(642), + [anon_sym_DASH] = ACTIONS(642), + [anon_sym_LT_EQ] = ACTIONS(642), + [anon_sym_GT_EQ] = ACTIONS(642), + [anon_sym_EQ_EQ] = ACTIONS(642), + [anon_sym_BANG_EQ] = ACTIONS(642), + [anon_sym_TILDE] = ACTIONS(642), + [anon_sym_BANG_TILDE] = ACTIONS(642), + [anon_sym_AMP_AMP] = ACTIONS(642), + [anon_sym_PIPE_PIPE] = ACTIONS(642), + [anon_sym_BANG] = ACTIONS(654), + [anon_sym_PLUS_PLUS] = ACTIONS(656), + [anon_sym_DASH_DASH] = ACTIONS(656), + [anon_sym_EQ] = ACTIONS(696), + [anon_sym_PLUS_EQ] = ACTIONS(696), + [anon_sym_DASH_EQ] = ACTIONS(696), + [anon_sym_STAR_EQ] = ACTIONS(696), + [anon_sym_SLASH_EQ] = ACTIONS(696), + [anon_sym_PERCENT_EQ] = ACTIONS(696), + [anon_sym_CARET_EQ] = ACTIONS(696), + [anon_sym_DOLLAR] = ACTIONS(654), + [anon_sym_AT] = ACTIONS(654), + [aux_sym_number_token1] = ACTIONS(654), + [aux_sym_number_token2] = ACTIONS(654), + [anon_sym_DQUOTE] = ACTIONS(654), + [anon_sym_POUND] = ACTIONS(654), + [sym_concatenating_space] = ACTIONS(658), + [sym__if_else_separator] = ACTIONS(658), + }, + [214] = { + [sym_identifier] = ACTIONS(654), + [anon_sym_COMMA] = ACTIONS(654), + [anon_sym_SEMI] = ACTIONS(654), + [anon_sym_LF] = ACTIONS(654), + [anon_sym_CR_LF] = ACTIONS(654), + [anon_sym_if] = ACTIONS(654), + [anon_sym_LPAREN] = ACTIONS(654), + [anon_sym_while] = ACTIONS(654), + [anon_sym_do] = ACTIONS(654), + [anon_sym_for] = ACTIONS(654), + [anon_sym_in] = ACTIONS(642), + [sym_break_statement] = ACTIONS(654), + [sym_continue_statement] = ACTIONS(654), + [anon_sym_delete] = ACTIONS(654), + [anon_sym_exit] = ACTIONS(654), + [anon_sym_return] = ACTIONS(654), + [anon_sym_switch] = ACTIONS(654), + [anon_sym_LBRACE] = ACTIONS(654), + [anon_sym_RBRACE] = ACTIONS(654), + [anon_sym_getline] = ACTIONS(654), + [anon_sym_LT] = ACTIONS(642), + [sym_next_statement] = ACTIONS(654), + [sym_nextfile_statement] = ACTIONS(654), + [anon_sym_print] = ACTIONS(654), + [anon_sym_LPAREN2] = ACTIONS(712), + [anon_sym_printf] = ACTIONS(654), + [anon_sym_GT] = ACTIONS(642), + [anon_sym_GT_GT] = ACTIONS(654), + [anon_sym_PIPE] = ACTIONS(642), + [anon_sym_PIPE_AMP] = ACTIONS(642), + [anon_sym_QMARK] = ACTIONS(642), + [anon_sym_CARET] = ACTIONS(642), + [anon_sym_STAR_STAR] = ACTIONS(642), + [anon_sym_STAR] = ACTIONS(642), + [anon_sym_SLASH] = ACTIONS(642), + [anon_sym_PERCENT] = ACTIONS(642), + [anon_sym_PLUS] = ACTIONS(642), + [anon_sym_DASH] = ACTIONS(642), + [anon_sym_LT_EQ] = ACTIONS(642), + [anon_sym_GT_EQ] = ACTIONS(642), + [anon_sym_EQ_EQ] = ACTIONS(642), + [anon_sym_BANG_EQ] = ACTIONS(642), + [anon_sym_TILDE] = ACTIONS(642), + [anon_sym_BANG_TILDE] = ACTIONS(642), + [anon_sym_AMP_AMP] = ACTIONS(642), + [anon_sym_PIPE_PIPE] = ACTIONS(642), + [anon_sym_BANG] = ACTIONS(654), + [anon_sym_PLUS_PLUS] = ACTIONS(656), + [anon_sym_DASH_DASH] = ACTIONS(656), + [anon_sym_EQ] = ACTIONS(696), + [anon_sym_PLUS_EQ] = ACTIONS(696), + [anon_sym_DASH_EQ] = ACTIONS(696), + [anon_sym_STAR_EQ] = ACTIONS(696), + [anon_sym_SLASH_EQ] = ACTIONS(696), + [anon_sym_PERCENT_EQ] = ACTIONS(696), + [anon_sym_CARET_EQ] = ACTIONS(696), + [anon_sym_DOLLAR] = ACTIONS(654), + [anon_sym_LBRACK] = ACTIONS(648), + [anon_sym_AT] = ACTIONS(654), + [aux_sym_number_token1] = ACTIONS(654), + [aux_sym_number_token2] = ACTIONS(654), + [anon_sym_DQUOTE] = ACTIONS(654), + [anon_sym_POUND] = ACTIONS(654), + [sym_concatenating_space] = ACTIONS(658), + [sym__if_else_separator] = ACTIONS(658), + }, + [215] = { + [sym_identifier] = ACTIONS(816), + [anon_sym_COMMA] = ACTIONS(816), + [anon_sym_SEMI] = ACTIONS(816), + [anon_sym_LF] = ACTIONS(816), + [anon_sym_CR_LF] = ACTIONS(816), + [anon_sym_if] = ACTIONS(816), + [anon_sym_LPAREN] = ACTIONS(816), + [anon_sym_while] = ACTIONS(816), + [anon_sym_do] = ACTIONS(816), + [anon_sym_for] = ACTIONS(816), + [anon_sym_in] = ACTIONS(816), + [sym_break_statement] = ACTIONS(816), + [sym_continue_statement] = ACTIONS(816), + [anon_sym_delete] = ACTIONS(816), + [anon_sym_exit] = ACTIONS(816), + [anon_sym_return] = ACTIONS(816), + [anon_sym_switch] = ACTIONS(816), + [anon_sym_LBRACE] = ACTIONS(816), + [anon_sym_RBRACE] = ACTIONS(816), + [anon_sym_case] = ACTIONS(816), + [anon_sym_default] = ACTIONS(816), + [anon_sym_getline] = ACTIONS(816), + [anon_sym_LT] = ACTIONS(816), + [sym_next_statement] = ACTIONS(816), + [sym_nextfile_statement] = ACTIONS(816), + [anon_sym_print] = ACTIONS(816), + [anon_sym_printf] = ACTIONS(816), + [anon_sym_GT] = ACTIONS(816), + [anon_sym_GT_GT] = ACTIONS(816), + [anon_sym_PIPE] = ACTIONS(816), + [anon_sym_PIPE_AMP] = ACTIONS(816), + [anon_sym_QMARK] = ACTIONS(816), + [anon_sym_CARET] = ACTIONS(816), + [anon_sym_STAR_STAR] = ACTIONS(816), + [anon_sym_STAR] = ACTIONS(816), + [anon_sym_SLASH] = ACTIONS(816), + [anon_sym_PERCENT] = ACTIONS(816), + [anon_sym_PLUS] = ACTIONS(816), + [anon_sym_DASH] = ACTIONS(816), + [anon_sym_LT_EQ] = ACTIONS(816), + [anon_sym_GT_EQ] = ACTIONS(816), + [anon_sym_EQ_EQ] = ACTIONS(816), + [anon_sym_BANG_EQ] = ACTIONS(816), + [anon_sym_TILDE] = ACTIONS(816), + [anon_sym_BANG_TILDE] = ACTIONS(816), + [anon_sym_AMP_AMP] = ACTIONS(816), + [anon_sym_PIPE_PIPE] = ACTIONS(816), + [anon_sym_BANG] = ACTIONS(816), + [anon_sym_PLUS_PLUS] = ACTIONS(816), + [anon_sym_DASH_DASH] = ACTIONS(816), + [anon_sym_EQ] = ACTIONS(816), + [anon_sym_PLUS_EQ] = ACTIONS(816), + [anon_sym_DASH_EQ] = ACTIONS(816), + [anon_sym_STAR_EQ] = ACTIONS(816), + [anon_sym_SLASH_EQ] = ACTIONS(816), + [anon_sym_PERCENT_EQ] = ACTIONS(816), + [anon_sym_CARET_EQ] = ACTIONS(816), + [anon_sym_DOLLAR] = ACTIONS(816), + [anon_sym_AT] = ACTIONS(816), + [aux_sym_number_token1] = ACTIONS(816), + [aux_sym_number_token2] = ACTIONS(816), + [anon_sym_DQUOTE] = ACTIONS(816), + [anon_sym_POUND] = ACTIONS(816), + [sym_concatenating_space] = ACTIONS(818), + [sym__if_else_separator] = ACTIONS(818), + }, + [216] = { + [sym_identifier] = ACTIONS(642), + [anon_sym_COMMA] = ACTIONS(642), + [anon_sym_SEMI] = ACTIONS(642), + [anon_sym_LF] = ACTIONS(642), + [anon_sym_CR_LF] = ACTIONS(642), + [anon_sym_if] = ACTIONS(642), + [anon_sym_LPAREN] = ACTIONS(642), + [anon_sym_while] = ACTIONS(642), + [anon_sym_do] = ACTIONS(642), + [anon_sym_for] = ACTIONS(642), + [anon_sym_in] = ACTIONS(642), + [sym_break_statement] = ACTIONS(642), + [sym_continue_statement] = ACTIONS(642), + [anon_sym_delete] = ACTIONS(642), + [anon_sym_exit] = ACTIONS(642), + [anon_sym_return] = ACTIONS(642), + [anon_sym_switch] = ACTIONS(642), + [anon_sym_LBRACE] = ACTIONS(642), + [anon_sym_RBRACE] = ACTIONS(642), + [anon_sym_case] = ACTIONS(642), + [anon_sym_default] = ACTIONS(642), + [anon_sym_getline] = ACTIONS(642), + [anon_sym_LT] = ACTIONS(642), + [sym_next_statement] = ACTIONS(642), + [sym_nextfile_statement] = ACTIONS(642), + [anon_sym_print] = ACTIONS(642), + [anon_sym_printf] = ACTIONS(642), + [anon_sym_GT] = ACTIONS(642), + [anon_sym_GT_GT] = ACTIONS(642), + [anon_sym_PIPE] = ACTIONS(642), + [anon_sym_PIPE_AMP] = ACTIONS(642), + [anon_sym_QMARK] = ACTIONS(642), + [anon_sym_CARET] = ACTIONS(642), + [anon_sym_STAR_STAR] = ACTIONS(642), + [anon_sym_STAR] = ACTIONS(642), + [anon_sym_SLASH] = ACTIONS(642), + [anon_sym_PERCENT] = ACTIONS(642), + [anon_sym_PLUS] = ACTIONS(642), + [anon_sym_DASH] = ACTIONS(642), + [anon_sym_LT_EQ] = ACTIONS(642), + [anon_sym_GT_EQ] = ACTIONS(642), + [anon_sym_EQ_EQ] = ACTIONS(642), + [anon_sym_BANG_EQ] = ACTIONS(642), + [anon_sym_TILDE] = ACTIONS(642), + [anon_sym_BANG_TILDE] = ACTIONS(642), + [anon_sym_AMP_AMP] = ACTIONS(642), + [anon_sym_PIPE_PIPE] = ACTIONS(642), + [anon_sym_BANG] = ACTIONS(642), + [anon_sym_PLUS_PLUS] = ACTIONS(686), + [anon_sym_DASH_DASH] = ACTIONS(686), + [anon_sym_EQ] = ACTIONS(642), + [anon_sym_PLUS_EQ] = ACTIONS(642), + [anon_sym_DASH_EQ] = ACTIONS(642), + [anon_sym_STAR_EQ] = ACTIONS(642), + [anon_sym_SLASH_EQ] = ACTIONS(642), + [anon_sym_PERCENT_EQ] = ACTIONS(642), + [anon_sym_CARET_EQ] = ACTIONS(642), + [anon_sym_DOLLAR] = ACTIONS(642), + [anon_sym_LBRACK] = ACTIONS(684), + [anon_sym_AT] = ACTIONS(642), + [aux_sym_number_token1] = ACTIONS(642), + [aux_sym_number_token2] = ACTIONS(642), + [anon_sym_DQUOTE] = ACTIONS(642), + [anon_sym_POUND] = ACTIONS(642), + [sym_concatenating_space] = ACTIONS(652), + }, + [217] = { + [sym_identifier] = ACTIONS(642), + [anon_sym_COMMA] = ACTIONS(642), + [anon_sym_SEMI] = ACTIONS(642), + [anon_sym_LF] = ACTIONS(642), + [anon_sym_CR_LF] = ACTIONS(642), + [anon_sym_if] = ACTIONS(642), + [anon_sym_LPAREN] = ACTIONS(642), + [anon_sym_while] = ACTIONS(642), + [anon_sym_do] = ACTIONS(642), + [anon_sym_for] = ACTIONS(642), + [anon_sym_in] = ACTIONS(642), + [sym_break_statement] = ACTIONS(642), + [sym_continue_statement] = ACTIONS(642), + [anon_sym_delete] = ACTIONS(642), + [anon_sym_exit] = ACTIONS(642), + [anon_sym_return] = ACTIONS(642), + [anon_sym_switch] = ACTIONS(642), + [anon_sym_LBRACE] = ACTIONS(642), + [anon_sym_RBRACE] = ACTIONS(642), + [anon_sym_getline] = ACTIONS(642), + [anon_sym_LT] = ACTIONS(642), + [sym_next_statement] = ACTIONS(642), + [sym_nextfile_statement] = ACTIONS(642), + [anon_sym_print] = ACTIONS(642), + [anon_sym_LPAREN2] = ACTIONS(802), + [anon_sym_printf] = ACTIONS(642), + [anon_sym_GT] = ACTIONS(642), + [anon_sym_GT_GT] = ACTIONS(642), + [anon_sym_PIPE] = ACTIONS(642), + [anon_sym_PIPE_AMP] = ACTIONS(642), + [anon_sym_QMARK] = ACTIONS(642), + [anon_sym_CARET] = ACTIONS(642), + [anon_sym_STAR_STAR] = ACTIONS(642), + [anon_sym_STAR] = ACTIONS(642), + [anon_sym_SLASH] = ACTIONS(642), + [anon_sym_PERCENT] = ACTIONS(642), + [anon_sym_PLUS] = ACTIONS(642), + [anon_sym_DASH] = ACTIONS(642), + [anon_sym_LT_EQ] = ACTIONS(642), + [anon_sym_GT_EQ] = ACTIONS(642), + [anon_sym_EQ_EQ] = ACTIONS(642), + [anon_sym_BANG_EQ] = ACTIONS(642), + [anon_sym_TILDE] = ACTIONS(642), + [anon_sym_BANG_TILDE] = ACTIONS(642), + [anon_sym_AMP_AMP] = ACTIONS(642), + [anon_sym_PIPE_PIPE] = ACTIONS(642), + [anon_sym_BANG] = ACTIONS(642), + [anon_sym_PLUS_PLUS] = ACTIONS(820), + [anon_sym_DASH_DASH] = ACTIONS(820), + [anon_sym_EQ] = ACTIONS(822), + [anon_sym_PLUS_EQ] = ACTIONS(822), + [anon_sym_DASH_EQ] = ACTIONS(822), + [anon_sym_STAR_EQ] = ACTIONS(822), + [anon_sym_SLASH_EQ] = ACTIONS(822), + [anon_sym_PERCENT_EQ] = ACTIONS(822), + [anon_sym_CARET_EQ] = ACTIONS(822), + [anon_sym_DOLLAR] = ACTIONS(642), + [anon_sym_LBRACK] = ACTIONS(684), + [anon_sym_AT] = ACTIONS(642), + [anon_sym_COLON_COLON] = ACTIONS(650), + [aux_sym_number_token1] = ACTIONS(642), + [aux_sym_number_token2] = ACTIONS(642), + [anon_sym_DQUOTE] = ACTIONS(642), + [anon_sym_POUND] = ACTIONS(642), + [sym_concatenating_space] = ACTIONS(824), + }, + [218] = { + [sym_identifier] = ACTIONS(654), + [anon_sym_COMMA] = ACTIONS(654), + [anon_sym_SEMI] = ACTIONS(654), + [anon_sym_LF] = ACTIONS(654), + [anon_sym_CR_LF] = ACTIONS(654), + [anon_sym_if] = ACTIONS(654), + [anon_sym_LPAREN] = ACTIONS(654), + [anon_sym_while] = ACTIONS(654), + [anon_sym_do] = ACTIONS(654), + [anon_sym_for] = ACTIONS(654), + [anon_sym_in] = ACTIONS(642), + [sym_break_statement] = ACTIONS(654), + [sym_continue_statement] = ACTIONS(654), + [anon_sym_delete] = ACTIONS(654), + [anon_sym_exit] = ACTIONS(654), + [anon_sym_return] = ACTIONS(654), + [anon_sym_switch] = ACTIONS(654), + [anon_sym_LBRACE] = ACTIONS(654), + [anon_sym_RBRACE] = ACTIONS(654), + [anon_sym_case] = ACTIONS(654), + [anon_sym_default] = ACTIONS(654), + [anon_sym_getline] = ACTIONS(654), + [anon_sym_LT] = ACTIONS(642), + [sym_next_statement] = ACTIONS(654), + [sym_nextfile_statement] = ACTIONS(654), + [anon_sym_print] = ACTIONS(654), + [anon_sym_printf] = ACTIONS(654), + [anon_sym_GT] = ACTIONS(642), + [anon_sym_GT_GT] = ACTIONS(654), + [anon_sym_PIPE] = ACTIONS(642), + [anon_sym_PIPE_AMP] = ACTIONS(642), + [anon_sym_QMARK] = ACTIONS(642), + [anon_sym_CARET] = ACTIONS(642), + [anon_sym_STAR_STAR] = ACTIONS(642), + [anon_sym_STAR] = ACTIONS(642), + [anon_sym_SLASH] = ACTIONS(642), + [anon_sym_PERCENT] = ACTIONS(642), + [anon_sym_PLUS] = ACTIONS(642), + [anon_sym_DASH] = ACTIONS(642), + [anon_sym_LT_EQ] = ACTIONS(642), + [anon_sym_GT_EQ] = ACTIONS(642), + [anon_sym_EQ_EQ] = ACTIONS(642), + [anon_sym_BANG_EQ] = ACTIONS(642), + [anon_sym_TILDE] = ACTIONS(642), + [anon_sym_BANG_TILDE] = ACTIONS(642), + [anon_sym_AMP_AMP] = ACTIONS(642), + [anon_sym_PIPE_PIPE] = ACTIONS(642), + [anon_sym_BANG] = ACTIONS(654), + [anon_sym_PLUS_PLUS] = ACTIONS(656), + [anon_sym_DASH_DASH] = ACTIONS(656), + [anon_sym_EQ] = ACTIONS(654), + [anon_sym_PLUS_EQ] = ACTIONS(654), + [anon_sym_DASH_EQ] = ACTIONS(654), + [anon_sym_STAR_EQ] = ACTIONS(654), + [anon_sym_SLASH_EQ] = ACTIONS(654), + [anon_sym_PERCENT_EQ] = ACTIONS(654), + [anon_sym_CARET_EQ] = ACTIONS(654), + [anon_sym_DOLLAR] = ACTIONS(654), + [anon_sym_AT] = ACTIONS(654), + [aux_sym_number_token1] = ACTIONS(654), + [aux_sym_number_token2] = ACTIONS(654), + [anon_sym_DQUOTE] = ACTIONS(654), + [anon_sym_POUND] = ACTIONS(654), + [sym_concatenating_space] = ACTIONS(658), + [sym__if_else_separator] = ACTIONS(658), + }, +}; + +static const uint16_t ts_small_parse_table[] = { + [0] = 6, + ACTIONS(648), 1, anon_sym_LBRACK, - ACTIONS(738), 1, - anon_sym_LPAREN2, - ACTIONS(756), 2, + ACTIONS(652), 1, + sym__if_else_separator, + ACTIONS(718), 1, + sym_concatenating_space, + ACTIONS(714), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(758), 7, + ACTIONS(716), 7, anon_sym_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -26012,7 +24207,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_CARET_EQ, - ACTIONS(644), 52, + ACTIONS(642), 52, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -26065,170 +24260,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [2276] = 7, - ACTIONS(844), 2, - anon_sym_CARET, - anon_sym_STAR_STAR, - ACTIONS(848), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(850), 2, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(852), 2, - sym_concatenating_space, - sym__if_else_separator, - ACTIONS(846), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(842), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(840), 46, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_in, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_getline, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [2354] = 12, - ACTIONS(856), 1, - anon_sym_in, - ACTIONS(860), 1, - anon_sym_QMARK, - ACTIONS(862), 1, - anon_sym_AMP_AMP, - ACTIONS(864), 1, - anon_sym_PIPE_PIPE, - ACTIONS(844), 2, - anon_sym_CARET, - anon_sym_STAR_STAR, - ACTIONS(848), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(850), 2, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(858), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(866), 2, - sym_concatenating_space, - sym__if_else_separator, - ACTIONS(846), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(842), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(854), 40, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_getline, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_GT_GT, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [2442] = 5, - ACTIONS(688), 1, - anon_sym_LBRACK, - ACTIONS(744), 1, + [77] = 2, + ACTIONS(766), 1, sym_concatenating_space, - ACTIONS(740), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(742), 7, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - ACTIONS(644), 52, + ACTIONS(764), 63, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -26247,6 +24282,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_switch, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, anon_sym_getline, anon_sym_LT, sym_next_statement, @@ -26274,68 +24311,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_BANG, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [2516] = 7, - ACTIONS(844), 2, - anon_sym_CARET, - anon_sym_STAR_STAR, - ACTIONS(848), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(850), 2, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(870), 2, - sym_concatenating_space, - sym__if_else_separator, - ACTIONS(846), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(842), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(868), 46, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_in, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_getline, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_BANG, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_EQ, @@ -26352,147 +24327,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [2594] = 4, - ACTIONS(794), 2, + [146] = 2, + ACTIONS(680), 2, sym_concatenating_space, sym__if_else_separator, - ACTIONS(844), 2, - anon_sym_CARET, - anon_sym_STAR_STAR, - ACTIONS(846), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(792), 56, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_in, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_getline, - anon_sym_LT, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [2666] = 5, - ACTIONS(658), 1, - sym__if_else_separator, - ACTIONS(730), 1, - sym_concatenating_space, - ACTIONS(726), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(728), 7, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - ACTIONS(644), 52, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_in, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_getline, - anon_sym_LT, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_BANG, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [2740] = 2, - ACTIONS(692), 1, - sym_concatenating_space, - ACTIONS(690), 62, + ACTIONS(678), 62, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -26555,14 +24394,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [2808] = 3, - ACTIONS(794), 2, + [215] = 3, + ACTIONS(828), 1, + sym_regex_flags, + ACTIONS(830), 2, sym_concatenating_space, sym__if_else_separator, - ACTIONS(844), 2, - anon_sym_CARET, - anon_sym_STAR_STAR, - ACTIONS(792), 59, + ACTIONS(826), 61, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -26592,6 +24430,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PIPE_AMP, anon_sym_QMARK, + anon_sym_CARET, + anon_sym_STAR_STAR, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -26622,12 +24462,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [2878] = 3, - ACTIONS(830), 1, + [286] = 2, + ACTIONS(778), 1, sym_concatenating_space, - ACTIONS(872), 1, - sym_regex_flags, - ACTIONS(826), 61, + ACTIONS(776), 63, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -26646,6 +24484,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_switch, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, anon_sym_getline, anon_sym_LT, sym_next_statement, @@ -26689,11 +24529,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [2948] = 3, - ACTIONS(836), 1, - sym_concatenating_space, - ACTIONS(874), 1, + [355] = 3, + ACTIONS(834), 1, sym_regex_flags, + ACTIONS(836), 2, + sym_concatenating_space, + sym__if_else_separator, ACTIONS(832), 61, anon_sym_COMMA, anon_sym_SEMI, @@ -26756,92 +24597,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [3018] = 6, - ACTIONS(794), 2, - sym_concatenating_space, - sym__if_else_separator, - ACTIONS(844), 2, - anon_sym_CARET, - anon_sym_STAR_STAR, - ACTIONS(848), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(846), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(842), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(792), 48, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_in, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_getline, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [3094] = 4, - ACTIONS(658), 2, + [426] = 2, + ACTIONS(694), 1, sym_concatenating_space, - sym__if_else_separator, - ACTIONS(718), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(720), 7, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - ACTIONS(644), 52, + ACTIONS(692), 63, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -26860,6 +24619,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_switch, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, anon_sym_getline, anon_sym_LT, sym_next_statement, @@ -26887,66 +24648,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_BANG, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [3166] = 5, - ACTIONS(794), 2, - sym_concatenating_space, - sym__if_else_separator, - ACTIONS(844), 2, - anon_sym_CARET, - anon_sym_STAR_STAR, - ACTIONS(848), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(846), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(792), 54, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_in, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_getline, - anon_sym_LT, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_BANG, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_EQ, @@ -26963,14 +24664,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [3240] = 4, - ACTIONS(680), 1, + [495] = 2, + ACTIONS(752), 1, sym_concatenating_space, - ACTIONS(688), 1, - anon_sym_LBRACK, - ACTIONS(838), 1, - anon_sym_LT, - ACTIONS(678), 60, + ACTIONS(750), 63, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -26989,7 +24686,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_switch, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, anon_sym_getline, + anon_sym_LT, sym_next_statement, sym_nextfile_statement, anon_sym_print, @@ -27031,33 +24731,32 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [3312] = 8, - ACTIONS(856), 1, - anon_sym_in, - ACTIONS(794), 2, + [564] = 3, + ACTIONS(658), 1, sym_concatenating_space, - sym__if_else_separator, - ACTIONS(844), 2, + ACTIONS(642), 21, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_QMARK, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(848), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(850), 2, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(846), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(842), 6, - anon_sym_LT, - anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(792), 45, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(654), 42, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -27075,17 +24774,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_switch, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, anon_sym_getline, sym_next_statement, sym_nextfile_statement, anon_sym_print, anon_sym_printf, anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_BANG, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -27103,39 +24799,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [3392] = 11, - ACTIONS(856), 1, - anon_sym_in, - ACTIONS(860), 1, - anon_sym_QMARK, - ACTIONS(862), 1, - anon_sym_AMP_AMP, - ACTIONS(864), 1, - anon_sym_PIPE_PIPE, - ACTIONS(844), 2, - anon_sym_CARET, - anon_sym_STAR_STAR, - ACTIONS(848), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(850), 2, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(878), 2, + [635] = 2, + ACTIONS(748), 1, sym_concatenating_space, - sym__if_else_separator, - ACTIONS(846), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(842), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(876), 42, + ACTIONS(746), 63, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -27145,6 +24812,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_for, + anon_sym_in, sym_break_statement, sym_continue_statement, anon_sym_delete, @@ -27153,14 +24821,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_switch, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, anon_sym_getline, + anon_sym_LT, sym_next_statement, sym_nextfile_statement, anon_sym_print, anon_sym_printf, + anon_sym_GT, anon_sym_GT_GT, anon_sym_PIPE, anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_CARET, + anon_sym_STAR_STAR, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_BANG, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -27178,21 +24866,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [3478] = 5, - ACTIONS(844), 2, - anon_sym_CARET, - anon_sym_STAR_STAR, - ACTIONS(848), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(882), 2, + [704] = 2, + ACTIONS(760), 1, sym_concatenating_space, - sym__if_else_separator, - ACTIONS(846), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(880), 54, + ACTIONS(758), 63, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -27211,6 +24888,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_switch, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, anon_sym_getline, anon_sym_LT, sym_next_statement, @@ -27222,6 +24901,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PIPE_AMP, anon_sym_QMARK, + anon_sym_CARET, + anon_sym_STAR_STAR, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, @@ -27243,27 +24929,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_AT, sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [3552] = 5, - ACTIONS(658), 1, - sym_concatenating_space, - ACTIONS(688), 1, - anon_sym_LBRACK, - ACTIONS(756), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(758), 7, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - ACTIONS(644), 52, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DQUOTE, + anon_sym_POUND, + [773] = 2, + ACTIONS(782), 1, + sym_concatenating_space, + ACTIONS(780), 63, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -27282,6 +24955,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_switch, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, anon_sym_getline, anon_sym_LT, sym_next_statement, @@ -27309,6 +24984,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_BANG, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, anon_sym_DOLLAR, anon_sym_AT, sym_identifier, @@ -27316,35 +25000,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [3626] = 9, - ACTIONS(856), 1, - anon_sym_in, - ACTIONS(862), 1, - anon_sym_AMP_AMP, - ACTIONS(794), 2, + [842] = 2, + ACTIONS(792), 1, sym_concatenating_space, - sym__if_else_separator, - ACTIONS(844), 2, - anon_sym_CARET, - anon_sym_STAR_STAR, - ACTIONS(848), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(850), 2, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(846), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(842), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(792), 44, + ACTIONS(790), 63, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -27354,6 +25013,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_for, + anon_sym_in, sym_break_statement, sym_continue_statement, anon_sym_delete, @@ -27362,15 +25022,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_switch, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, anon_sym_getline, + anon_sym_LT, sym_next_statement, sym_nextfile_statement, anon_sym_print, anon_sym_printf, + anon_sym_GT, anon_sym_GT_GT, anon_sym_PIPE, anon_sym_PIPE_AMP, anon_sym_QMARK, + anon_sym_CARET, + anon_sym_STAR_STAR, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_BANG, anon_sym_PLUS_PLUS, @@ -27389,20 +25067,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [3708] = 5, - ACTIONS(882), 1, + [911] = 4, + ACTIONS(648), 1, + anon_sym_LBRACK, + ACTIONS(762), 1, + anon_sym_LT, + ACTIONS(690), 2, sym_concatenating_space, - ACTIONS(884), 2, - anon_sym_CARET, - anon_sym_STAR_STAR, - ACTIONS(888), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(886), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(880), 54, + sym__if_else_separator, + ACTIONS(688), 60, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -27422,7 +25095,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_getline, - anon_sym_LT, sym_next_statement, sym_nextfile_statement, anon_sym_print, @@ -27432,6 +25104,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PIPE_AMP, anon_sym_QMARK, + anon_sym_CARET, + anon_sym_STAR_STAR, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, @@ -27457,17 +25136,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [3781] = 4, - ACTIONS(794), 1, + [984] = 3, + ACTIONS(652), 1, sym_concatenating_space, - ACTIONS(884), 2, - anon_sym_CARET, - anon_sym_STAR_STAR, - ACTIONS(886), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(792), 56, + ACTIONS(686), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(642), 61, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -27486,6 +25161,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_switch, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, anon_sym_getline, anon_sym_LT, sym_next_statement, @@ -27497,6 +25174,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PIPE_AMP, anon_sym_QMARK, + anon_sym_CARET, + anon_sym_STAR_STAR, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PLUS, anon_sym_DASH, anon_sym_LT_EQ, @@ -27508,8 +25190,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -27524,21 +25204,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [3852] = 4, - ACTIONS(744), 1, + [1055] = 2, + ACTIONS(770), 1, sym_concatenating_space, - ACTIONS(740), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(742), 7, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - ACTIONS(644), 52, + ACTIONS(768), 63, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -27557,6 +25226,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_switch, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, anon_sym_getline, anon_sym_LT, sym_next_statement, @@ -27584,6 +25255,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_BANG, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, anon_sym_DOLLAR, anon_sym_AT, sym_identifier, @@ -27591,41 +25271,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [3923] = 12, - ACTIONS(866), 1, + [1124] = 2, + ACTIONS(774), 1, sym_concatenating_space, - ACTIONS(890), 1, - anon_sym_in, - ACTIONS(896), 1, - anon_sym_QMARK, - ACTIONS(900), 1, - anon_sym_AMP_AMP, - ACTIONS(902), 1, - anon_sym_PIPE_PIPE, - ACTIONS(884), 2, - anon_sym_CARET, - anon_sym_STAR_STAR, - ACTIONS(888), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(894), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(898), 2, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(886), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(892), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(854), 40, + ACTIONS(772), 63, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -27635,6 +25284,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_for, + anon_sym_in, sym_break_statement, sym_continue_statement, anon_sym_delete, @@ -27643,12 +25293,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_switch, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, anon_sym_getline, + anon_sym_LT, sym_next_statement, sym_nextfile_statement, anon_sym_print, anon_sym_printf, + anon_sym_GT, anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_CARET, + anon_sym_STAR_STAR, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_BANG, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -27666,30 +25338,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [4010] = 7, - ACTIONS(852), 1, + [1193] = 2, + ACTIONS(740), 1, sym_concatenating_space, - ACTIONS(884), 2, - anon_sym_CARET, - anon_sym_STAR_STAR, - ACTIONS(888), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(898), 2, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(886), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(892), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(840), 46, + ACTIONS(738), 63, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -27708,15 +25360,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_switch, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, anon_sym_getline, + anon_sym_LT, sym_next_statement, sym_nextfile_statement, anon_sym_print, anon_sym_printf, + anon_sym_GT, anon_sym_GT_GT, anon_sym_PIPE, anon_sym_PIPE_AMP, anon_sym_QMARK, + anon_sym_CARET, + anon_sym_STAR_STAR, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_BANG, @@ -27736,30 +25405,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [4087] = 7, - ACTIONS(870), 1, + [1262] = 2, + ACTIONS(788), 1, sym_concatenating_space, - ACTIONS(884), 2, - anon_sym_CARET, - anon_sym_STAR_STAR, - ACTIONS(888), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(898), 2, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(886), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(892), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(868), 46, + ACTIONS(786), 63, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -27778,15 +25427,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_switch, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, anon_sym_getline, + anon_sym_LT, sym_next_statement, sym_nextfile_statement, anon_sym_print, anon_sym_printf, + anon_sym_GT, anon_sym_GT_GT, anon_sym_PIPE, anon_sym_PIPE_AMP, anon_sym_QMARK, + anon_sym_CARET, + anon_sym_STAR_STAR, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_BANG, @@ -27806,13 +25472,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [4164] = 4, - ACTIONS(658), 1, + [1331] = 5, + ACTIONS(648), 1, + anon_sym_LBRACK, + ACTIONS(652), 2, sym_concatenating_space, - ACTIONS(756), 2, + sym__if_else_separator, + ACTIONS(730), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(758), 7, + ACTIONS(732), 7, anon_sym_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -27820,7 +25489,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_CARET_EQ, - ACTIONS(644), 52, + ACTIONS(642), 52, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -27873,34 +25542,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [4235] = 9, - ACTIONS(794), 1, + [1406] = 2, + ACTIONS(744), 1, sym_concatenating_space, - ACTIONS(890), 1, - anon_sym_in, - ACTIONS(900), 1, - anon_sym_AMP_AMP, - ACTIONS(884), 2, - anon_sym_CARET, - anon_sym_STAR_STAR, - ACTIONS(888), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(898), 2, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(886), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(892), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(792), 44, + ACTIONS(742), 63, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -27910,6 +25555,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_for, + anon_sym_in, sym_break_statement, sym_continue_statement, anon_sym_delete, @@ -27918,15 +25564,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_switch, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, anon_sym_getline, + anon_sym_LT, sym_next_statement, sym_nextfile_statement, anon_sym_print, anon_sym_printf, + anon_sym_GT, anon_sym_GT_GT, anon_sym_PIPE, anon_sym_PIPE_AMP, anon_sym_QMARK, + anon_sym_CARET, + anon_sym_STAR_STAR, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_BANG, anon_sym_PLUS_PLUS, @@ -27945,38 +25609,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [4316] = 11, - ACTIONS(878), 1, + [1475] = 5, + ACTIONS(650), 1, + anon_sym_COLON_COLON, + ACTIONS(684), 1, + anon_sym_LBRACK, + ACTIONS(690), 1, sym_concatenating_space, - ACTIONS(890), 1, - anon_sym_in, - ACTIONS(896), 1, - anon_sym_QMARK, - ACTIONS(900), 1, - anon_sym_AMP_AMP, - ACTIONS(902), 1, - anon_sym_PIPE_PIPE, - ACTIONS(884), 2, - anon_sym_CARET, - anon_sym_STAR_STAR, - ACTIONS(888), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(898), 2, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(886), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(892), 6, + ACTIONS(838), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(876), 42, + ACTIONS(688), 60, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -27986,6 +25628,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_for, + anon_sym_in, sym_break_statement, sym_continue_statement, anon_sym_delete, @@ -27999,9 +25642,26 @@ static const uint16_t ts_small_parse_table[] = { sym_nextfile_statement, anon_sym_print, anon_sym_printf, + anon_sym_GT, anon_sym_GT_GT, anon_sym_PIPE, anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_CARET, + anon_sym_STAR_STAR, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_BANG, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -28019,20 +25679,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [4401] = 5, - ACTIONS(794), 1, + [1550] = 2, + ACTIONS(796), 1, sym_concatenating_space, - ACTIONS(884), 2, - anon_sym_CARET, - anon_sym_STAR_STAR, - ACTIONS(888), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(886), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(792), 54, + ACTIONS(794), 63, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -28051,6 +25701,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_switch, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, anon_sym_getline, anon_sym_LT, sym_next_statement, @@ -28062,6 +25714,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PIPE_AMP, anon_sym_QMARK, + anon_sym_CARET, + anon_sym_STAR_STAR, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, @@ -28087,13 +25746,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [4474] = 3, - ACTIONS(794), 1, + [1619] = 2, + ACTIONS(756), 1, sym_concatenating_space, - ACTIONS(884), 2, - anon_sym_CARET, - anon_sym_STAR_STAR, - ACTIONS(792), 59, + ACTIONS(754), 63, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -28112,6 +25768,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_switch, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, anon_sym_getline, anon_sym_LT, sym_next_statement, @@ -28123,6 +25781,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PIPE_AMP, anon_sym_QMARK, + anon_sym_CARET, + anon_sym_STAR_STAR, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -28153,32 +25813,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [4543] = 8, - ACTIONS(794), 1, + [1688] = 2, + ACTIONS(818), 1, sym_concatenating_space, - ACTIONS(890), 1, - anon_sym_in, - ACTIONS(884), 2, - anon_sym_CARET, - anon_sym_STAR_STAR, - ACTIONS(888), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(898), 2, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(886), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(892), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(792), 45, + ACTIONS(816), 63, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -28188,6 +25826,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_for, + anon_sym_in, sym_break_statement, sym_continue_statement, anon_sym_delete, @@ -28196,15 +25835,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_switch, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, anon_sym_getline, + anon_sym_LT, sym_next_statement, sym_nextfile_statement, anon_sym_print, anon_sym_printf, + anon_sym_GT, anon_sym_GT_GT, anon_sym_PIPE, anon_sym_PIPE_AMP, anon_sym_QMARK, + anon_sym_CARET, + anon_sym_STAR_STAR, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_BANG, @@ -28224,27 +25880,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [4622] = 6, - ACTIONS(794), 1, + [1757] = 6, + ACTIONS(684), 1, + anon_sym_LBRACK, + ACTIONS(802), 1, + anon_sym_LPAREN2, + ACTIONS(824), 1, sym_concatenating_space, - ACTIONS(884), 2, - anon_sym_CARET, - anon_sym_STAR_STAR, - ACTIONS(888), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(886), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(892), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(792), 48, + ACTIONS(820), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(822), 7, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + ACTIONS(642), 52, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -28264,28 +25918,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_getline, + anon_sym_LT, sym_next_statement, sym_nextfile_statement, anon_sym_print, anon_sym_printf, + anon_sym_GT, anon_sym_GT_GT, anon_sym_PIPE, anon_sym_PIPE_AMP, anon_sym_QMARK, + anon_sym_CARET, + anon_sym_STAR_STAR, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_TILDE, anon_sym_BANG_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, anon_sym_DOLLAR, anon_sym_AT, sym_identifier, @@ -28293,54 +25951,48 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [4697] = 6, - ACTIONS(652), 1, - anon_sym_COLON_COLON, - ACTIONS(904), 1, - anon_sym_LPAREN2, - ACTIONS(908), 1, - anon_sym_LBRACK, - ACTIONS(906), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(644), 24, - anon_sym_BEGIN, - anon_sym_END, - anon_sym_BEGINFILE, - anon_sym_ENDFILE, - anon_sym_LPAREN, - anon_sym_in, - anon_sym_COLON, - anon_sym_getline, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - anon_sym_function, - anon_sym_func, - ACTIONS(658), 31, + [1834] = 2, + ACTIONS(800), 1, sym_concatenating_space, - ts_builtin_sym_end, + ACTIONS(798), 63, anon_sym_COMMA, - anon_sym_ATinclude, - anon_sym_ATload, - anon_sym_ATnamespace, anon_sym_SEMI, - anon_sym_RPAREN, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_if, + anon_sym_LPAREN, + anon_sym_while, + anon_sym_do, + anon_sym_for, + anon_sym_in, + sym_break_statement, + sym_continue_statement, + anon_sym_delete, + anon_sym_exit, + anon_sym_return, + anon_sym_switch, anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, + anon_sym_getline, + anon_sym_LT, + sym_next_statement, + sym_nextfile_statement, + anon_sym_print, + anon_sym_printf, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_PIPE, anon_sym_PIPE_AMP, anon_sym_QMARK, + anon_sym_CARET, anon_sym_STAR_STAR, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, @@ -28349,6 +26001,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_BANG, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -28356,35 +26012,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT_EQ, anon_sym_CARET_EQ, anon_sym_DOLLAR, - anon_sym_RBRACK, + anon_sym_AT, + sym_identifier, + aux_sym_number_token1, aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [4770] = 8, - ACTIONS(652), 1, - anon_sym_COLON_COLON, - ACTIONS(904), 1, - anon_sym_LPAREN2, - ACTIONS(908), 1, + [1903] = 7, + ACTIONS(658), 1, + sym_concatenating_space, + ACTIONS(684), 1, anon_sym_LBRACK, - ACTIONS(910), 2, + ACTIONS(802), 1, + anon_sym_LPAREN2, + ACTIONS(656), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(644), 10, + ACTIONS(696), 7, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + ACTIONS(642), 21, anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_QMARK, anon_sym_CARET, + anon_sym_STAR_STAR, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(658), 11, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, @@ -28393,57 +26058,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - ACTIONS(642), 14, - anon_sym_BEGIN, - anon_sym_END, - anon_sym_BEGINFILE, - anon_sym_ENDFILE, + ACTIONS(654), 31, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_if, anon_sym_LPAREN, - anon_sym_COLON, + anon_sym_while, + anon_sym_do, + anon_sym_for, + sym_break_statement, + sym_continue_statement, + anon_sym_delete, + anon_sym_exit, + anon_sym_return, + anon_sym_switch, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_getline, + sym_next_statement, + sym_nextfile_statement, + anon_sym_print, + anon_sym_printf, + anon_sym_GT_GT, anon_sym_BANG, - anon_sym_EQ, + anon_sym_DOLLAR, anon_sym_AT, sym_identifier, aux_sym_number_token1, - anon_sym_function, - anon_sym_func, - ACTIONS(654), 20, + aux_sym_number_token2, + anon_sym_DQUOTE, + anon_sym_POUND, + [1982] = 6, + ACTIONS(652), 1, sym_concatenating_space, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_ATinclude, - anon_sym_ATload, - anon_sym_ATnamespace, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LBRACE, + ACTIONS(684), 1, + anon_sym_LBRACK, + ACTIONS(802), 1, + anon_sym_LPAREN2, + ACTIONS(804), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(806), 7, + anon_sym_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_CARET_EQ, - anon_sym_DOLLAR, - anon_sym_RBRACK, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [4847] = 7, - ACTIONS(912), 1, - sym_identifier, - ACTIONS(914), 1, - anon_sym_LT, - STATE(313), 1, - sym_ns_qualified_name, - STATE(320), 1, - sym_array_ref, - STATE(2065), 1, - sym_namespace, - ACTIONS(714), 2, - sym_concatenating_space, - sym__if_else_separator, - ACTIONS(712), 52, + ACTIONS(642), 52, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -28463,6 +26128,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_getline, + anon_sym_LT, sym_next_statement, sym_nextfile_statement, anon_sym_print, @@ -28488,57 +26154,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_DOLLAR, anon_sym_AT, + sym_identifier, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [4921] = 4, - ACTIONS(652), 1, - anon_sym_COLON_COLON, - ACTIONS(908), 1, - anon_sym_LBRACK, - ACTIONS(682), 23, - anon_sym_BEGIN, - anon_sym_END, - anon_sym_BEGINFILE, - anon_sym_ENDFILE, + [2059] = 2, + ACTIONS(814), 1, + sym_concatenating_space, + ACTIONS(812), 63, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_if, + anon_sym_LPAREN, + anon_sym_while, + anon_sym_do, + anon_sym_for, anon_sym_in, - anon_sym_COLON, + sym_break_statement, + sym_continue_statement, + anon_sym_delete, + anon_sym_exit, + anon_sym_return, + anon_sym_switch, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, anon_sym_getline, anon_sym_LT, + sym_next_statement, + sym_nextfile_statement, + anon_sym_print, + anon_sym_printf, anon_sym_GT, + anon_sym_GT_GT, anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_QMARK, anon_sym_CARET, + anon_sym_STAR_STAR, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_PLUS, anon_sym_DASH, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - anon_sym_function, - anon_sym_func, - ACTIONS(684), 34, - sym_concatenating_space, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_ATinclude, - anon_sym_ATload, - anon_sym_ATnamespace, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, @@ -28547,8 +26211,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_BANG, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -28556,73 +26222,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT_EQ, anon_sym_CARET_EQ, anon_sym_DOLLAR, - anon_sym_RBRACK, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [4989] = 19, - ACTIONS(298), 1, - sym_identifier, - ACTIONS(318), 1, - anon_sym_getline, - ACTIONS(662), 1, - anon_sym_LPAREN, - ACTIONS(666), 1, - anon_sym_SLASH, - ACTIONS(670), 1, - anon_sym_DOLLAR, - ACTIONS(672), 1, anon_sym_AT, - ACTIONS(674), 1, - anon_sym_DQUOTE, - ACTIONS(918), 1, - sym__if_else_separator, - STATE(196), 1, - sym_ns_qualified_name, - STATE(240), 1, - sym_array_ref, - STATE(256), 1, - sym_field_ref, - STATE(369), 1, - sym__binary_in, - STATE(2063), 1, - sym_namespace, - ACTIONS(336), 2, + sym_identifier, aux_sym_number_token1, aux_sym_number_token2, - ACTIONS(668), 2, + anon_sym_DQUOTE, + anon_sym_POUND, + [2128] = 5, + ACTIONS(658), 1, + sym_concatenating_space, + ACTIONS(656), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(326), 3, + ACTIONS(696), 7, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + ACTIONS(642), 21, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_CARET, + anon_sym_STAR_STAR, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PLUS, anon_sym_DASH, - anon_sym_BANG, - STATE(375), 9, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_string_concat, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - STATE(492), 10, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_regex, - sym_regex_constant, - sym_indirect_func_call, - ACTIONS(916), 20, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(654), 33, + anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, anon_sym_if, + anon_sym_LPAREN, anon_sym_while, anon_sym_do, anon_sym_for, @@ -28634,74 +26282,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_switch, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, + anon_sym_getline, sym_next_statement, sym_nextfile_statement, anon_sym_print, anon_sym_printf, - anon_sym_POUND, - [5087] = 19, - ACTIONS(298), 1, - sym_identifier, - ACTIONS(318), 1, - anon_sym_getline, - ACTIONS(662), 1, - anon_sym_LPAREN, - ACTIONS(666), 1, - anon_sym_SLASH, - ACTIONS(670), 1, + anon_sym_GT_GT, + anon_sym_BANG, anon_sym_DOLLAR, - ACTIONS(672), 1, anon_sym_AT, - ACTIONS(674), 1, - anon_sym_DQUOTE, - ACTIONS(922), 1, - sym__if_else_separator, - STATE(196), 1, - sym_ns_qualified_name, - STATE(240), 1, - sym_array_ref, - STATE(256), 1, - sym_field_ref, - STATE(369), 1, - sym__binary_in, - STATE(2063), 1, - sym_namespace, - ACTIONS(336), 2, + sym_identifier, aux_sym_number_token1, aux_sym_number_token2, - ACTIONS(668), 2, + anon_sym_DQUOTE, + anon_sym_POUND, + [2203] = 4, + ACTIONS(658), 1, + sym_concatenating_space, + ACTIONS(656), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(326), 3, + ACTIONS(642), 21, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_CARET, + anon_sym_STAR_STAR, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PLUS, anon_sym_DASH, - anon_sym_BANG, - STATE(375), 9, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_string_concat, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - STATE(494), 10, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_regex, - sym_regex_constant, - sym_indirect_func_call, - ACTIONS(920), 20, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(654), 40, + anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, anon_sym_if, + anon_sym_LPAREN, anon_sym_while, anon_sym_do, anon_sym_for, @@ -28713,61 +26344,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_switch, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, + anon_sym_getline, sym_next_statement, sym_nextfile_statement, anon_sym_print, anon_sym_printf, - anon_sym_POUND, - [5185] = 2, - ACTIONS(690), 23, - anon_sym_BEGIN, - anon_sym_END, - anon_sym_BEGINFILE, - anon_sym_ENDFILE, - anon_sym_LPAREN, - anon_sym_in, - anon_sym_getline, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, + anon_sym_GT_GT, anon_sym_BANG, anon_sym_EQ, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - anon_sym_function, - anon_sym_func, - ACTIONS(692), 36, - sym_concatenating_space, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_ATinclude, - anon_sym_ATload, - anon_sym_ATnamespace, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_LPAREN2, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -28775,123 +26361,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT_EQ, anon_sym_CARET_EQ, anon_sym_DOLLAR, - anon_sym_LBRACK, - anon_sym_RBRACK, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [5249] = 29, - ACTIONS(5), 1, - sym_identifier, - ACTIONS(11), 1, - anon_sym_LPAREN, - ACTIONS(13), 1, - anon_sym_LBRACE, - ACTIONS(15), 1, - anon_sym_getline, - ACTIONS(17), 1, - anon_sym_SLASH, - ACTIONS(21), 1, - anon_sym_BANG, - ACTIONS(25), 1, - anon_sym_DOLLAR, - ACTIONS(27), 1, anon_sym_AT, - ACTIONS(29), 1, + sym_identifier, aux_sym_number_token1, - ACTIONS(31), 1, aux_sym_number_token2, - ACTIONS(33), 1, anon_sym_DQUOTE, - ACTIONS(37), 1, anon_sym_POUND, - ACTIONS(924), 1, - ts_builtin_sym_end, - STATE(419), 1, - sym_ns_qualified_name, - STATE(469), 1, - sym_array_ref, - STATE(486), 1, - sym_field_ref, - STATE(556), 1, - sym__binary_in, - STATE(1522), 1, - sym_pattern, - STATE(1555), 1, - sym_block, - STATE(2075), 1, - sym_namespace, - ACTIONS(19), 2, + [2276] = 5, + ACTIONS(778), 2, + sym_concatenating_space, + sym__if_else_separator, + ACTIONS(840), 2, + anon_sym_CARET, + anon_sym_STAR_STAR, + ACTIONS(844), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(23), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(35), 2, - anon_sym_function, - anon_sym_func, - STATE(1558), 2, - sym_range_pattern, - sym__special_pattern, - ACTIONS(9), 3, - anon_sym_ATinclude, - anon_sym_ATload, - anon_sym_ATnamespace, - ACTIONS(7), 4, - anon_sym_BEGIN, - anon_sym_END, - anon_sym_BEGINFILE, - anon_sym_ENDFILE, - STATE(294), 5, - sym_rule, - sym_directive, - sym_func_def, - sym_comment, - aux_sym_program_repeat1, - STATE(559), 9, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_string_concat, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - STATE(578), 10, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_regex, - sym_regex_constant, - sym_indirect_func_call, - [5367] = 7, - ACTIONS(904), 1, - anon_sym_LPAREN2, - ACTIONS(908), 1, - anon_sym_LBRACK, - ACTIONS(910), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(644), 10, + ACTIONS(842), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(776), 54, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_if, + anon_sym_LPAREN, + anon_sym_while, + anon_sym_do, + anon_sym_for, anon_sym_in, + sym_break_statement, + sym_continue_statement, + anon_sym_delete, + anon_sym_exit, + anon_sym_return, + anon_sym_switch, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_getline, anon_sym_LT, + sym_next_statement, + sym_nextfile_statement, + anon_sym_print, + anon_sym_printf, anon_sym_GT, + anon_sym_GT_GT, anon_sym_PIPE, - anon_sym_CARET, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(658), 11, anon_sym_PIPE_AMP, anon_sym_QMARK, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, @@ -28900,31 +26419,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - ACTIONS(642), 13, - anon_sym_BEGIN, - anon_sym_END, - anon_sym_BEGINFILE, - anon_sym_ENDFILE, - anon_sym_LPAREN, - anon_sym_getline, anon_sym_BANG, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_EQ, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - anon_sym_function, - anon_sym_func, - ACTIONS(654), 21, - sym_concatenating_space, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_ATinclude, - anon_sym_ATload, - anon_sym_ATnamespace, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_COLON, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -28932,22 +26430,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT_EQ, anon_sym_CARET_EQ, anon_sym_DOLLAR, - anon_sym_RBRACK, + anon_sym_AT, + sym_identifier, + aux_sym_number_token1, aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [5441] = 5, - ACTIONS(926), 1, - sym_identifier, - STATE(2065), 1, - sym_namespace, - ACTIONS(714), 2, + [2350] = 4, + ACTIONS(778), 2, sym_concatenating_space, sym__if_else_separator, - STATE(320), 2, - sym_array_ref, - sym_ns_qualified_name, - ACTIONS(712), 53, + ACTIONS(840), 2, + anon_sym_CARET, + anon_sym_STAR_STAR, + ACTIONS(842), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(776), 56, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -28977,11 +26477,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PIPE_AMP, anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PLUS, anon_sym_DASH, anon_sym_LT_EQ, @@ -28995,58 +26490,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, anon_sym_DOLLAR, anon_sym_AT, + sym_identifier, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [5511] = 5, - ACTIONS(904), 1, - anon_sym_LPAREN2, - ACTIONS(908), 1, - anon_sym_LBRACK, - ACTIONS(906), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(644), 23, - anon_sym_BEGIN, - anon_sym_END, - anon_sym_BEGINFILE, - anon_sym_ENDFILE, + [2422] = 3, + ACTIONS(836), 1, + sym_concatenating_space, + ACTIONS(846), 1, + sym_regex_flags, + ACTIONS(832), 61, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_if, anon_sym_LPAREN, + anon_sym_while, + anon_sym_do, + anon_sym_for, anon_sym_in, + sym_break_statement, + sym_continue_statement, + anon_sym_delete, + anon_sym_exit, + anon_sym_return, + anon_sym_switch, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_getline, anon_sym_LT, + sym_next_statement, + sym_nextfile_statement, + anon_sym_print, + anon_sym_printf, anon_sym_GT, + anon_sym_GT_GT, anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_QMARK, anon_sym_CARET, + anon_sym_STAR_STAR, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_PLUS, anon_sym_DASH, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - anon_sym_function, - anon_sym_func, - ACTIONS(658), 32, - sym_concatenating_space, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_ATinclude, - anon_sym_ATload, - anon_sym_ATnamespace, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, @@ -29055,6 +26554,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_BANG, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -29062,142 +26565,130 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT_EQ, anon_sym_CARET_EQ, anon_sym_DOLLAR, - anon_sym_RBRACK, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [5581] = 29, - ACTIONS(928), 1, - ts_builtin_sym_end, - ACTIONS(930), 1, - sym_identifier, - ACTIONS(939), 1, - anon_sym_LPAREN, - ACTIONS(942), 1, - anon_sym_LBRACE, - ACTIONS(945), 1, - anon_sym_getline, - ACTIONS(948), 1, - anon_sym_SLASH, - ACTIONS(954), 1, - anon_sym_BANG, - ACTIONS(960), 1, - anon_sym_DOLLAR, - ACTIONS(963), 1, anon_sym_AT, - ACTIONS(966), 1, + sym_identifier, aux_sym_number_token1, - ACTIONS(969), 1, aux_sym_number_token2, - ACTIONS(972), 1, anon_sym_DQUOTE, - ACTIONS(978), 1, anon_sym_POUND, - STATE(419), 1, - sym_ns_qualified_name, - STATE(469), 1, - sym_array_ref, - STATE(486), 1, - sym_field_ref, - STATE(556), 1, - sym__binary_in, - STATE(1522), 1, - sym_pattern, - STATE(1555), 1, - sym_block, - STATE(2075), 1, - sym_namespace, - ACTIONS(951), 2, + [2492] = 12, + ACTIONS(850), 1, + anon_sym_in, + ACTIONS(856), 1, + anon_sym_QMARK, + ACTIONS(860), 1, + anon_sym_AMP_AMP, + ACTIONS(862), 1, + anon_sym_PIPE_PIPE, + ACTIONS(840), 2, + anon_sym_CARET, + anon_sym_STAR_STAR, + ACTIONS(844), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(957), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(975), 2, - anon_sym_function, - anon_sym_func, - STATE(1558), 2, - sym_range_pattern, - sym__special_pattern, - ACTIONS(936), 3, - anon_sym_ATinclude, - anon_sym_ATload, - anon_sym_ATnamespace, - ACTIONS(933), 4, - anon_sym_BEGIN, - anon_sym_END, - anon_sym_BEGINFILE, - anon_sym_ENDFILE, - STATE(294), 5, - sym_rule, - sym_directive, - sym_func_def, - sym_comment, - aux_sym_program_repeat1, - STATE(559), 9, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_string_concat, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - STATE(578), 10, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_regex, - sym_regex_constant, - sym_indirect_func_call, - [5699] = 4, - ACTIONS(652), 1, - anon_sym_COLON_COLON, - ACTIONS(908), 1, - anon_sym_LBRACK, - ACTIONS(678), 23, - anon_sym_BEGIN, - anon_sym_END, - anon_sym_BEGINFILE, - anon_sym_ENDFILE, - anon_sym_in, - anon_sym_COLON, - anon_sym_getline, - anon_sym_LT, - anon_sym_GT, + ACTIONS(854), 2, anon_sym_PIPE, - anon_sym_CARET, + anon_sym_PIPE_AMP, + ACTIONS(858), 2, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(864), 2, + sym_concatenating_space, + sym__if_else_separator, + ACTIONS(842), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(852), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(848), 40, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_if, + anon_sym_LPAREN, + anon_sym_while, + anon_sym_do, + anon_sym_for, + sym_break_statement, + sym_continue_statement, + anon_sym_delete, + anon_sym_exit, + anon_sym_return, + anon_sym_switch, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_getline, + sym_next_statement, + sym_nextfile_statement, + anon_sym_print, + anon_sym_printf, + anon_sym_GT_GT, anon_sym_BANG, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_DOLLAR, anon_sym_AT, sym_identifier, aux_sym_number_token1, - anon_sym_function, - anon_sym_func, - ACTIONS(680), 34, + aux_sym_number_token2, + anon_sym_DQUOTE, + anon_sym_POUND, + [2580] = 3, + ACTIONS(830), 1, sym_concatenating_space, - ts_builtin_sym_end, + ACTIONS(866), 1, + sym_regex_flags, + ACTIONS(826), 61, anon_sym_COMMA, - anon_sym_ATinclude, - anon_sym_ATload, - anon_sym_ATnamespace, anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_if, anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_while, + anon_sym_do, + anon_sym_for, + anon_sym_in, + sym_break_statement, + sym_continue_statement, + anon_sym_delete, + anon_sym_exit, + anon_sym_return, + anon_sym_switch, anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_getline, + anon_sym_LT, + sym_next_statement, + sym_nextfile_statement, + anon_sym_print, + anon_sym_printf, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_PIPE, anon_sym_PIPE_AMP, anon_sym_QMARK, + anon_sym_CARET, anon_sym_STAR_STAR, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, @@ -29206,8 +26697,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_BANG, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -29215,61 +26708,136 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT_EQ, anon_sym_CARET_EQ, anon_sym_DOLLAR, - anon_sym_RBRACK, + anon_sym_AT, + sym_identifier, + aux_sym_number_token1, aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [5767] = 3, - ACTIONS(908), 1, - anon_sym_LBRACK, - ACTIONS(678), 22, - anon_sym_BEGIN, - anon_sym_END, - anon_sym_BEGINFILE, - anon_sym_ENDFILE, + [2650] = 2, + ACTIONS(680), 1, + sym_concatenating_space, + ACTIONS(678), 62, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_if, + anon_sym_LPAREN, + anon_sym_while, + anon_sym_do, + anon_sym_for, anon_sym_in, + sym_break_statement, + sym_continue_statement, + anon_sym_delete, + anon_sym_exit, + anon_sym_return, + anon_sym_switch, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_getline, anon_sym_LT, + sym_next_statement, + sym_nextfile_statement, + anon_sym_print, + anon_sym_printf, anon_sym_GT, + anon_sym_GT_GT, anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_QMARK, anon_sym_CARET, + anon_sym_STAR_STAR, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_PLUS, anon_sym_DASH, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_BANG, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_DOLLAR, + anon_sym_LBRACK, anon_sym_AT, sym_identifier, aux_sym_number_token1, - anon_sym_function, - anon_sym_func, - ACTIONS(680), 35, + aux_sym_number_token2, + anon_sym_DQUOTE, + anon_sym_POUND, + [2718] = 7, + ACTIONS(840), 2, + anon_sym_CARET, + anon_sym_STAR_STAR, + ACTIONS(844), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(858), 2, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(870), 2, sym_concatenating_space, - ts_builtin_sym_end, + sym__if_else_separator, + ACTIONS(842), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(852), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(868), 46, anon_sym_COMMA, - anon_sym_ATinclude, - anon_sym_ATload, - anon_sym_ATnamespace, anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_if, anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_while, + anon_sym_do, + anon_sym_for, + anon_sym_in, + sym_break_statement, + sym_continue_statement, + anon_sym_delete, + anon_sym_exit, + anon_sym_return, + anon_sym_switch, anon_sym_LBRACE, - anon_sym_COLON, + anon_sym_RBRACE, + anon_sym_getline, + sym_next_statement, + sym_nextfile_statement, + anon_sym_print, + anon_sym_printf, + anon_sym_GT_GT, + anon_sym_PIPE, anon_sym_PIPE_AMP, anon_sym_QMARK, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_BANG, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -29277,31 +26845,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT_EQ, anon_sym_CARET_EQ, anon_sym_DOLLAR, - anon_sym_RBRACK, + anon_sym_AT, + sym_identifier, + aux_sym_number_token1, aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [5832] = 6, - ACTIONS(908), 1, - anon_sym_LBRACK, - ACTIONS(910), 2, + [2796] = 5, + ACTIONS(652), 1, + sym__if_else_separator, + ACTIONS(718), 1, + sym_concatenating_space, + ACTIONS(714), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(644), 10, + ACTIONS(716), 7, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + ACTIONS(642), 52, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_if, + anon_sym_LPAREN, + anon_sym_while, + anon_sym_do, + anon_sym_for, anon_sym_in, + sym_break_statement, + sym_continue_statement, + anon_sym_delete, + anon_sym_exit, + anon_sym_return, + anon_sym_switch, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_getline, anon_sym_LT, + sym_next_statement, + sym_nextfile_statement, + anon_sym_print, + anon_sym_printf, anon_sym_GT, + anon_sym_GT_GT, anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_QMARK, anon_sym_CARET, + anon_sym_STAR_STAR, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(658), 11, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, @@ -29310,31 +26912,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - ACTIONS(642), 12, - anon_sym_BEGIN, - anon_sym_END, - anon_sym_BEGINFILE, - anon_sym_ENDFILE, - anon_sym_getline, anon_sym_BANG, - anon_sym_EQ, + anon_sym_DOLLAR, anon_sym_AT, sym_identifier, aux_sym_number_token1, - anon_sym_function, - anon_sym_func, - ACTIONS(654), 22, + aux_sym_number_token2, + anon_sym_DQUOTE, + anon_sym_POUND, + [2870] = 9, + ACTIONS(850), 1, + anon_sym_in, + ACTIONS(860), 1, + anon_sym_AMP_AMP, + ACTIONS(778), 2, sym_concatenating_space, - ts_builtin_sym_end, + sym__if_else_separator, + ACTIONS(840), 2, + anon_sym_CARET, + anon_sym_STAR_STAR, + ACTIONS(844), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(858), 2, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(842), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(852), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(776), 44, anon_sym_COMMA, - anon_sym_ATinclude, - anon_sym_ATload, - anon_sym_ATnamespace, anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_if, anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_while, + anon_sym_do, + anon_sym_for, + sym_break_statement, + sym_continue_statement, + anon_sym_delete, + anon_sym_exit, + anon_sym_return, + anon_sym_switch, anon_sym_LBRACE, - anon_sym_COLON, + anon_sym_RBRACE, + anon_sym_getline, + sym_next_statement, + sym_nextfile_statement, + anon_sym_print, + anon_sym_printf, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_PIPE_PIPE, + anon_sym_BANG, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -29342,21 +26987,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT_EQ, anon_sym_CARET_EQ, anon_sym_DOLLAR, - anon_sym_RBRACK, + anon_sym_AT, + sym_identifier, + aux_sym_number_token1, aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [5903] = 5, - ACTIONS(714), 1, + [2952] = 8, + ACTIONS(850), 1, + anon_sym_in, + ACTIONS(778), 2, sym_concatenating_space, - ACTIONS(981), 1, - sym_identifier, - STATE(2060), 1, - sym_namespace, - STATE(391), 2, - sym_array_ref, - sym_ns_qualified_name, - ACTIONS(712), 53, + sym__if_else_separator, + ACTIONS(840), 2, + anon_sym_CARET, + anon_sym_STAR_STAR, + ACTIONS(844), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(858), 2, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(842), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(852), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(776), 45, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -29366,7 +27029,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_for, - anon_sym_in, sym_break_statement, sym_continue_statement, anon_sym_delete, @@ -29376,44 +27038,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_getline, - anon_sym_LT, sym_next_statement, sym_nextfile_statement, anon_sym_print, anon_sym_printf, - anon_sym_GT, anon_sym_GT_GT, anon_sym_PIPE, anon_sym_PIPE_AMP, anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_BANG, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, anon_sym_DOLLAR, anon_sym_AT, + sym_identifier, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [5972] = 2, - ACTIONS(692), 1, - sym__if_else_separator, - ACTIONS(690), 57, + [3032] = 4, + ACTIONS(684), 1, + anon_sym_LBRACK, + ACTIONS(690), 1, + sym_concatenating_space, + ACTIONS(838), 1, + anon_sym_LT, + ACTIONS(688), 60, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -29432,10 +27091,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_switch, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, anon_sym_getline, - anon_sym_LT, sym_next_statement, sym_nextfile_statement, anon_sym_print, @@ -29463,53 +27119,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, anon_sym_DOLLAR, - anon_sym_LBRACK, anon_sym_AT, sym_identifier, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [6035] = 2, - ACTIONS(722), 22, - anon_sym_BEGIN, - anon_sym_END, - anon_sym_BEGINFILE, - anon_sym_ENDFILE, - anon_sym_in, - anon_sym_getline, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, + [3104] = 5, + ACTIONS(840), 2, anon_sym_CARET, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(844), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - anon_sym_function, - anon_sym_func, - ACTIONS(724), 36, + ACTIONS(874), 2, sym_concatenating_space, - ts_builtin_sym_end, + sym__if_else_separator, + ACTIONS(842), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(872), 54, anon_sym_COMMA, - anon_sym_ATinclude, - anon_sym_ATload, - anon_sym_ATnamespace, anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_if, anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_while, + anon_sym_do, + anon_sym_for, + anon_sym_in, + sym_break_statement, + sym_continue_statement, + anon_sym_delete, + anon_sym_exit, + anon_sym_return, + anon_sym_switch, anon_sym_LBRACE, - anon_sym_COLON, + anon_sym_RBRACE, + anon_sym_getline, + anon_sym_LT, + sym_next_statement, + sym_nextfile_statement, + anon_sym_print, + anon_sym_printf, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_PIPE, anon_sym_PIPE_AMP, anon_sym_QMARK, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, @@ -29518,8 +27185,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_BANG, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -29527,75 +27196,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT_EQ, anon_sym_CARET_EQ, anon_sym_DOLLAR, - anon_sym_LBRACK, - anon_sym_RBRACK, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [6098] = 18, - ACTIONS(127), 1, - sym_identifier, - ACTIONS(147), 1, - anon_sym_getline, - ACTIONS(696), 1, - anon_sym_LPAREN, - ACTIONS(700), 1, - anon_sym_SLASH, - ACTIONS(704), 1, - anon_sym_DOLLAR, - ACTIONS(706), 1, anon_sym_AT, - ACTIONS(708), 1, - anon_sym_DQUOTE, - STATE(221), 1, - sym_ns_qualified_name, - STATE(253), 1, - sym_array_ref, - STATE(272), 1, - sym_field_ref, - STATE(446), 1, - sym__binary_in, - STATE(1955), 1, - sym_namespace, - ACTIONS(165), 2, + sym_identifier, aux_sym_number_token1, aux_sym_number_token2, - ACTIONS(702), 2, + anon_sym_DQUOTE, + anon_sym_POUND, + [3178] = 5, + ACTIONS(652), 1, + sym_concatenating_space, + ACTIONS(684), 1, + anon_sym_LBRACK, + ACTIONS(804), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(155), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - STATE(447), 9, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_string_concat, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - STATE(501), 10, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_regex, - sym_regex_constant, - sym_indirect_func_call, - ACTIONS(920), 20, + ACTIONS(806), 7, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + ACTIONS(642), 52, + anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, anon_sym_if, + anon_sym_LPAREN, anon_sym_while, anon_sym_do, anon_sym_for, + anon_sym_in, sym_break_statement, sym_continue_statement, anon_sym_delete, @@ -29604,55 +27237,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_switch, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_getline, + anon_sym_LT, sym_next_statement, sym_nextfile_statement, anon_sym_print, anon_sym_printf, - anon_sym_POUND, - [6193] = 4, - ACTIONS(908), 1, - anon_sym_LBRACK, - ACTIONS(906), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(644), 22, - anon_sym_BEGIN, - anon_sym_END, - anon_sym_BEGINFILE, - anon_sym_ENDFILE, - anon_sym_in, - anon_sym_getline, - anon_sym_LT, anon_sym_GT, + anon_sym_GT_GT, anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_QMARK, anon_sym_CARET, + anon_sym_STAR_STAR, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_PLUS, anon_sym_DASH, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - anon_sym_function, - anon_sym_func, - ACTIONS(658), 33, - sym_concatenating_space, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_ATinclude, - anon_sym_ATload, - anon_sym_ATnamespace, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, @@ -29661,26 +27263,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, + anon_sym_BANG, anon_sym_DOLLAR, - anon_sym_RBRACK, + anon_sym_AT, + sym_identifier, + aux_sym_number_token1, aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [6260] = 4, - ACTIONS(652), 1, - anon_sym_COLON_COLON, - ACTIONS(983), 1, - anon_sym_LBRACK, - ACTIONS(680), 2, + [3252] = 4, + ACTIONS(652), 2, sym_concatenating_space, sym__if_else_separator, - ACTIONS(678), 54, + ACTIONS(730), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(732), 7, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + ACTIONS(642), 52, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -29726,8 +27332,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_DOLLAR, anon_sym_AT, sym_identifier, @@ -29735,20 +27339,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [6327] = 7, - ACTIONS(714), 1, + [3324] = 3, + ACTIONS(778), 2, + sym_concatenating_space, sym__if_else_separator, - ACTIONS(985), 1, - sym_identifier, - ACTIONS(987), 1, - anon_sym_LT, - STATE(362), 1, - sym_array_ref, - STATE(370), 1, - sym_ns_qualified_name, - STATE(2064), 1, - sym_namespace, - ACTIONS(712), 52, + ACTIONS(840), 2, + anon_sym_CARET, + anon_sym_STAR_STAR, + ACTIONS(776), 59, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -29768,6 +27366,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_getline, + anon_sym_LT, sym_next_statement, sym_nextfile_statement, anon_sym_print, @@ -29777,8 +27376,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PIPE_AMP, anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -29795,16 +27392,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, anon_sym_DOLLAR, anon_sym_AT, + sym_identifier, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [6400] = 2, - ACTIONS(724), 1, + [3394] = 6, + ACTIONS(778), 2, + sym_concatenating_space, sym__if_else_separator, - ACTIONS(722), 57, + ACTIONS(840), 2, + anon_sym_CARET, + anon_sym_STAR_STAR, + ACTIONS(844), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(842), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(852), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(776), 48, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -29823,30 +27446,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_switch, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, anon_sym_getline, - anon_sym_LT, sym_next_statement, sym_nextfile_statement, anon_sym_print, anon_sym_printf, - anon_sym_GT, anon_sym_GT_GT, anon_sym_PIPE, anon_sym_PIPE_AMP, anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, anon_sym_TILDE, anon_sym_BANG_TILDE, anon_sym_AMP_AMP, @@ -29854,90 +27462,112 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_LBRACK, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [6463] = 8, - ACTIONS(732), 1, anon_sym_EQ, - ACTIONS(908), 1, - anon_sym_LBRACK, - ACTIONS(910), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(989), 6, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_CARET_EQ, - ACTIONS(644), 10, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(642), 11, - anon_sym_BEGIN, - anon_sym_END, - anon_sym_BEGINFILE, - anon_sym_ENDFILE, - anon_sym_getline, - anon_sym_BANG, + anon_sym_DOLLAR, anon_sym_AT, sym_identifier, aux_sym_number_token1, - anon_sym_function, - anon_sym_func, - ACTIONS(658), 11, - anon_sym_PIPE_AMP, + aux_sym_number_token2, + anon_sym_DQUOTE, + anon_sym_POUND, + [3470] = 11, + ACTIONS(850), 1, + anon_sym_in, + ACTIONS(856), 1, anon_sym_QMARK, + ACTIONS(860), 1, + anon_sym_AMP_AMP, + ACTIONS(862), 1, + anon_sym_PIPE_PIPE, + ACTIONS(840), 2, + anon_sym_CARET, anon_sym_STAR_STAR, + ACTIONS(844), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(858), 2, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(878), 2, + sym_concatenating_space, + sym__if_else_separator, + ACTIONS(842), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(852), 6, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(654), 16, - sym_concatenating_space, - ts_builtin_sym_end, + ACTIONS(876), 42, anon_sym_COMMA, - anon_sym_ATinclude, - anon_sym_ATload, - anon_sym_ATnamespace, anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_if, anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_while, + anon_sym_do, + anon_sym_for, + sym_break_statement, + sym_continue_statement, + anon_sym_delete, + anon_sym_exit, + anon_sym_return, + anon_sym_switch, anon_sym_LBRACE, - anon_sym_COLON, + anon_sym_RBRACE, + anon_sym_getline, + sym_next_statement, + sym_nextfile_statement, + anon_sym_print, + anon_sym_printf, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_BANG, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, anon_sym_DOLLAR, - anon_sym_RBRACK, + anon_sym_AT, + sym_identifier, + aux_sym_number_token1, aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [6538] = 4, - ACTIONS(652), 1, - anon_sym_COLON_COLON, - ACTIONS(983), 1, + [3556] = 5, + ACTIONS(684), 1, anon_sym_LBRACK, - ACTIONS(684), 2, + ACTIONS(824), 1, sym_concatenating_space, - sym__if_else_separator, - ACTIONS(682), 54, + ACTIONS(820), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(822), 7, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + ACTIONS(642), 52, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -29983,8 +27613,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_DOLLAR, anon_sym_AT, sym_identifier, @@ -29992,70 +27620,41 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [6605] = 18, - ACTIONS(127), 1, - sym_identifier, - ACTIONS(147), 1, - anon_sym_getline, - ACTIONS(696), 1, - anon_sym_LPAREN, - ACTIONS(700), 1, - anon_sym_SLASH, - ACTIONS(704), 1, - anon_sym_DOLLAR, - ACTIONS(706), 1, - anon_sym_AT, - ACTIONS(708), 1, - anon_sym_DQUOTE, - STATE(221), 1, - sym_ns_qualified_name, - STATE(253), 1, - sym_array_ref, - STATE(272), 1, - sym_field_ref, - STATE(446), 1, - sym__binary_in, - STATE(1955), 1, - sym_namespace, - ACTIONS(165), 2, - aux_sym_number_token1, - aux_sym_number_token2, - ACTIONS(702), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(155), 3, + [3630] = 7, + ACTIONS(840), 2, + anon_sym_CARET, + anon_sym_STAR_STAR, + ACTIONS(844), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_BANG, - STATE(447), 9, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_string_concat, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - STATE(499), 10, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_regex, - sym_regex_constant, - sym_indirect_func_call, - ACTIONS(916), 20, + ACTIONS(858), 2, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(882), 2, + sym_concatenating_space, + sym__if_else_separator, + ACTIONS(842), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(852), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(880), 46, + anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, anon_sym_if, + anon_sym_LPAREN, anon_sym_while, anon_sym_do, anon_sym_for, + anon_sym_in, sym_break_statement, sym_continue_statement, anon_sym_delete, @@ -30064,22 +27663,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_switch, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_getline, sym_next_statement, sym_nextfile_statement, anon_sym_print, anon_sym_printf, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_BANG, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_DOLLAR, + anon_sym_AT, + sym_identifier, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DQUOTE, anon_sym_POUND, - [6700] = 5, - ACTIONS(652), 1, - anon_sym_COLON_COLON, - ACTIONS(983), 1, - anon_sym_LBRACK, - ACTIONS(991), 1, - anon_sym_LT, - ACTIONS(680), 2, + [3708] = 3, + ACTIONS(778), 1, sym_concatenating_space, - sym__if_else_separator, - ACTIONS(678), 53, + ACTIONS(884), 2, + anon_sym_CARET, + anon_sym_STAR_STAR, + ACTIONS(776), 59, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -30099,6 +27717,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_getline, + anon_sym_LT, sym_next_statement, sym_nextfile_statement, anon_sym_print, @@ -30108,8 +27727,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PIPE_AMP, anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -30126,6 +27743,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, anon_sym_DOLLAR, anon_sym_AT, sym_identifier, @@ -30133,47 +27757,49 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [6769] = 3, - ACTIONS(908), 1, - anon_sym_LBRACK, - ACTIONS(682), 22, - anon_sym_BEGIN, - anon_sym_END, - anon_sym_BEGINFILE, - anon_sym_ENDFILE, - anon_sym_in, - anon_sym_getline, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, + [3777] = 5, + ACTIONS(778), 1, + sym_concatenating_space, + ACTIONS(884), 2, anon_sym_CARET, + anon_sym_STAR_STAR, + ACTIONS(888), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(886), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - anon_sym_function, - anon_sym_func, - ACTIONS(684), 35, - sym_concatenating_space, - ts_builtin_sym_end, + ACTIONS(776), 54, anon_sym_COMMA, - anon_sym_ATinclude, - anon_sym_ATload, - anon_sym_ATnamespace, anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_if, anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_while, + anon_sym_do, + anon_sym_for, + anon_sym_in, + sym_break_statement, + sym_continue_statement, + anon_sym_delete, + anon_sym_exit, + anon_sym_return, + anon_sym_switch, anon_sym_LBRACE, - anon_sym_COLON, + anon_sym_RBRACE, + anon_sym_getline, + anon_sym_LT, + sym_next_statement, + sym_nextfile_statement, + anon_sym_print, + anon_sym_printf, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_PIPE, anon_sym_PIPE_AMP, anon_sym_QMARK, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, @@ -30182,8 +27808,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_BANG, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -30191,21 +27819,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT_EQ, anon_sym_CARET_EQ, anon_sym_DOLLAR, - anon_sym_RBRACK, + anon_sym_AT, + sym_identifier, + aux_sym_number_token1, aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [6834] = 5, - ACTIONS(714), 1, - sym__if_else_separator, - ACTIONS(993), 1, - sym_identifier, - STATE(2064), 1, - sym_namespace, - STATE(362), 2, - sym_array_ref, - sym_ns_qualified_name, - ACTIONS(712), 53, + [3850] = 7, + ACTIONS(882), 1, + sym_concatenating_space, + ACTIONS(884), 2, + anon_sym_CARET, + anon_sym_STAR_STAR, + ACTIONS(888), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(892), 2, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(886), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(890), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(880), 46, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -30225,54 +27868,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_getline, - anon_sym_LT, sym_next_statement, sym_nextfile_statement, anon_sym_print, anon_sym_printf, - anon_sym_GT, anon_sym_GT_GT, anon_sym_PIPE, anon_sym_PIPE_AMP, anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_BANG, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, anon_sym_DOLLAR, anon_sym_AT, + sym_identifier, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [6903] = 7, - ACTIONS(714), 1, + [3927] = 11, + ACTIONS(878), 1, sym_concatenating_space, - ACTIONS(995), 1, - sym_identifier, - ACTIONS(997), 1, + ACTIONS(894), 1, + anon_sym_in, + ACTIONS(896), 1, + anon_sym_QMARK, + ACTIONS(898), 1, + anon_sym_AMP_AMP, + ACTIONS(900), 1, + anon_sym_PIPE_PIPE, + ACTIONS(884), 2, + anon_sym_CARET, + anon_sym_STAR_STAR, + ACTIONS(888), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(892), 2, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(886), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(890), 6, anon_sym_LT, - STATE(391), 1, - sym_array_ref, - STATE(392), 1, - sym_ns_qualified_name, - STATE(2060), 1, - sym_namespace, - ACTIONS(712), 52, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(876), 42, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -30282,7 +27936,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_for, - anon_sym_in, sym_break_statement, sym_continue_statement, anon_sym_delete, @@ -30296,44 +27949,41 @@ static const uint16_t ts_small_parse_table[] = { sym_nextfile_statement, anon_sym_print, anon_sym_printf, - anon_sym_GT, anon_sym_GT_GT, anon_sym_PIPE, anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_BANG, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, anon_sym_DOLLAR, anon_sym_AT, + sym_identifier, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [6976] = 4, - ACTIONS(983), 1, - anon_sym_LBRACK, - ACTIONS(991), 1, - anon_sym_LT, - ACTIONS(680), 2, + [4012] = 4, + ACTIONS(824), 1, sym_concatenating_space, - sym__if_else_separator, - ACTIONS(678), 53, + ACTIONS(820), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(822), 7, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + ACTIONS(642), 52, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -30353,6 +28003,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_getline, + anon_sym_LT, sym_next_statement, sym_nextfile_statement, anon_sym_print, @@ -30378,8 +28029,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_DOLLAR, anon_sym_AT, sym_identifier, @@ -30387,115 +28036,62 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [7042] = 2, - ACTIONS(792), 22, - anon_sym_BEGIN, - anon_sym_END, - anon_sym_BEGINFILE, - anon_sym_ENDFILE, - anon_sym_in, - anon_sym_getline, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, + [4083] = 6, + ACTIONS(778), 1, + sym_concatenating_space, + ACTIONS(884), 2, anon_sym_CARET, + anon_sym_STAR_STAR, + ACTIONS(888), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(886), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - anon_sym_function, - anon_sym_func, - ACTIONS(794), 35, - sym_concatenating_space, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_ATinclude, - anon_sym_ATload, - anon_sym_ATnamespace, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_STAR_STAR, + ACTIONS(890), 6, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_DOLLAR, - anon_sym_RBRACK, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [7104] = 2, - ACTIONS(784), 22, - anon_sym_BEGIN, - anon_sym_END, - anon_sym_BEGINFILE, - anon_sym_ENDFILE, - anon_sym_in, - anon_sym_getline, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - anon_sym_function, - anon_sym_func, - ACTIONS(786), 35, - sym_concatenating_space, - ts_builtin_sym_end, + ACTIONS(776), 48, anon_sym_COMMA, - anon_sym_ATinclude, - anon_sym_ATload, - anon_sym_ATnamespace, anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_if, anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_while, + anon_sym_do, + anon_sym_for, + anon_sym_in, + sym_break_statement, + sym_continue_statement, + anon_sym_delete, + anon_sym_exit, + anon_sym_return, + anon_sym_switch, anon_sym_LBRACE, - anon_sym_COLON, + anon_sym_RBRACE, + anon_sym_getline, + sym_next_statement, + sym_nextfile_statement, + anon_sym_print, + anon_sym_printf, + anon_sym_GT_GT, + anon_sym_PIPE, anon_sym_PIPE_AMP, anon_sym_QMARK, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, anon_sym_TILDE, anon_sym_BANG_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_BANG, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -30503,119 +28099,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT_EQ, anon_sym_CARET_EQ, anon_sym_DOLLAR, - anon_sym_RBRACK, + anon_sym_AT, + sym_identifier, + aux_sym_number_token1, aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [7166] = 2, - ACTIONS(804), 22, - anon_sym_BEGIN, - anon_sym_END, - anon_sym_BEGINFILE, - anon_sym_ENDFILE, + [4158] = 12, + ACTIONS(864), 1, + sym_concatenating_space, + ACTIONS(894), 1, anon_sym_in, - anon_sym_getline, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, + ACTIONS(896), 1, + anon_sym_QMARK, + ACTIONS(898), 1, + anon_sym_AMP_AMP, + ACTIONS(900), 1, + anon_sym_PIPE_PIPE, + ACTIONS(884), 2, anon_sym_CARET, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(888), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - anon_sym_function, - anon_sym_func, - ACTIONS(806), 35, - sym_concatenating_space, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_ATinclude, - anon_sym_ATload, - anon_sym_ATnamespace, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + ACTIONS(892), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_DOLLAR, - anon_sym_RBRACK, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [7228] = 2, - ACTIONS(816), 22, - anon_sym_BEGIN, - anon_sym_END, - anon_sym_BEGINFILE, - anon_sym_ENDFILE, - anon_sym_in, - anon_sym_getline, - anon_sym_LT, - anon_sym_GT, + ACTIONS(902), 2, anon_sym_PIPE, - anon_sym_CARET, + anon_sym_PIPE_AMP, + ACTIONS(886), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - anon_sym_function, - anon_sym_func, - ACTIONS(818), 35, - sym_concatenating_space, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_ATinclude, - anon_sym_ATload, - anon_sym_ATnamespace, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_STAR_STAR, + ACTIONS(890), 6, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(848), 40, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_if, + anon_sym_LPAREN, + anon_sym_while, + anon_sym_do, + anon_sym_for, + sym_break_statement, + sym_continue_statement, + anon_sym_delete, + anon_sym_exit, + anon_sym_return, + anon_sym_switch, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_getline, + sym_next_statement, + sym_nextfile_statement, + anon_sym_print, + anon_sym_printf, + anon_sym_GT_GT, + anon_sym_BANG, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -30623,18 +28174,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT_EQ, anon_sym_CARET_EQ, anon_sym_DOLLAR, - anon_sym_RBRACK, + anon_sym_AT, + sym_identifier, + aux_sym_number_token1, aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [7290] = 4, - ACTIONS(652), 1, - anon_sym_COLON_COLON, - ACTIONS(680), 1, - sym__if_else_separator, - ACTIONS(999), 1, - anon_sym_LBRACK, - ACTIONS(678), 54, + [4245] = 4, + ACTIONS(778), 1, + sym_concatenating_space, + ACTIONS(884), 2, + anon_sym_CARET, + anon_sym_STAR_STAR, + ACTIONS(886), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(776), 56, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -30664,11 +28220,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PIPE_AMP, anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PLUS, anon_sym_DASH, anon_sym_LT_EQ, @@ -30682,6 +28233,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, anon_sym_DOLLAR, anon_sym_AT, sym_identifier, @@ -30689,45 +28247,49 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [7356] = 2, - ACTIONS(776), 22, - anon_sym_BEGIN, - anon_sym_END, - anon_sym_BEGINFILE, - anon_sym_ENDFILE, - anon_sym_in, - anon_sym_getline, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, + [4316] = 5, + ACTIONS(874), 1, + sym_concatenating_space, + ACTIONS(884), 2, anon_sym_CARET, + anon_sym_STAR_STAR, + ACTIONS(888), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(886), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - anon_sym_function, - anon_sym_func, - ACTIONS(778), 35, - sym_concatenating_space, - ts_builtin_sym_end, + ACTIONS(872), 54, anon_sym_COMMA, - anon_sym_ATinclude, - anon_sym_ATload, - anon_sym_ATnamespace, anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_if, anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_while, + anon_sym_do, + anon_sym_for, + anon_sym_in, + sym_break_statement, + sym_continue_statement, + anon_sym_delete, + anon_sym_exit, + anon_sym_return, + anon_sym_switch, anon_sym_LBRACE, - anon_sym_COLON, + anon_sym_RBRACE, + anon_sym_getline, + anon_sym_LT, + sym_next_statement, + sym_nextfile_statement, + anon_sym_print, + anon_sym_printf, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_PIPE, anon_sym_PIPE_AMP, anon_sym_QMARK, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, @@ -30736,8 +28298,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_BANG, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -30745,17 +28309,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT_EQ, anon_sym_CARET_EQ, anon_sym_DOLLAR, - anon_sym_RBRACK, + anon_sym_AT, + sym_identifier, + aux_sym_number_token1, aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [7418] = 3, - ACTIONS(983), 1, - anon_sym_LBRACK, - ACTIONS(680), 2, + [4389] = 4, + ACTIONS(652), 1, sym_concatenating_space, - sym__if_else_separator, - ACTIONS(678), 54, + ACTIONS(804), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(806), 7, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + ACTIONS(642), 52, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -30801,8 +28375,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_DOLLAR, anon_sym_AT, sym_identifier, @@ -30810,15 +28382,30 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [7482] = 4, - ACTIONS(1001), 1, - sym_identifier, - STATE(2054), 1, - sym_namespace, - STATE(443), 2, - sym_array_ref, - sym_ns_qualified_name, - ACTIONS(712), 53, + [4460] = 7, + ACTIONS(870), 1, + sym_concatenating_space, + ACTIONS(884), 2, + anon_sym_CARET, + anon_sym_STAR_STAR, + ACTIONS(888), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(892), 2, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(886), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(890), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(868), 46, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -30838,48 +28425,131 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_getline, - anon_sym_LT, sym_next_statement, sym_nextfile_statement, anon_sym_print, anon_sym_printf, - anon_sym_GT, anon_sym_GT_GT, anon_sym_PIPE, anon_sym_PIPE_AMP, anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_BANG, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_DOLLAR, + anon_sym_AT, + sym_identifier, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DQUOTE, + anon_sym_POUND, + [4537] = 9, + ACTIONS(778), 1, + sym_concatenating_space, + ACTIONS(894), 1, + anon_sym_in, + ACTIONS(898), 1, + anon_sym_AMP_AMP, + ACTIONS(884), 2, anon_sym_CARET, anon_sym_STAR_STAR, + ACTIONS(888), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(892), 2, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(886), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(890), 6, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, + ACTIONS(776), 44, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_if, + anon_sym_LPAREN, + anon_sym_while, + anon_sym_do, + anon_sym_for, + sym_break_statement, + sym_continue_statement, + anon_sym_delete, + anon_sym_exit, + anon_sym_return, + anon_sym_switch, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_getline, + sym_next_statement, + sym_nextfile_statement, + anon_sym_print, + anon_sym_printf, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_QMARK, anon_sym_PIPE_PIPE, anon_sym_BANG, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, anon_sym_DOLLAR, anon_sym_AT, + sym_identifier, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [7548] = 4, - ACTIONS(652), 1, - anon_sym_COLON_COLON, - ACTIONS(684), 1, - sym__if_else_separator, - ACTIONS(999), 1, - anon_sym_LBRACK, - ACTIONS(682), 54, + [4618] = 8, + ACTIONS(778), 1, + sym_concatenating_space, + ACTIONS(894), 1, + anon_sym_in, + ACTIONS(884), 2, + anon_sym_CARET, + anon_sym_STAR_STAR, + ACTIONS(888), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(892), 2, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(886), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(890), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(776), 45, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -30889,7 +28559,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_for, - anon_sym_in, sym_break_statement, sym_continue_statement, anon_sym_delete, @@ -30899,23 +28568,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_getline, - anon_sym_LT, sym_next_statement, sym_nextfile_statement, anon_sym_print, anon_sym_printf, - anon_sym_GT, anon_sym_GT_GT, anon_sym_PIPE, anon_sym_PIPE_AMP, anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_BANG, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_DOLLAR, + anon_sym_AT, + sym_identifier, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DQUOTE, + anon_sym_POUND, + [4697] = 8, + ACTIONS(650), 1, + anon_sym_COLON_COLON, + ACTIONS(904), 1, + anon_sym_LPAREN2, + ACTIONS(908), 1, + anon_sym_LBRACK, + ACTIONS(906), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(642), 10, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, anon_sym_CARET, - anon_sym_STAR_STAR, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(652), 11, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, @@ -30924,21 +28628,118 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + ACTIONS(654), 14, + anon_sym_BEGIN, + anon_sym_END, + anon_sym_BEGINFILE, + anon_sym_ENDFILE, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_getline, anon_sym_BANG, + anon_sym_EQ, + anon_sym_AT, + sym_identifier, + aux_sym_number_token1, + anon_sym_function, + anon_sym_func, + ACTIONS(658), 20, + sym_concatenating_space, + ts_builtin_sym_end, + anon_sym_COMMA, + anon_sym_ATinclude, + anon_sym_ATload, + anon_sym_ATnamespace, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_DOLLAR, + anon_sym_RBRACK, + aux_sym_number_token2, + anon_sym_DQUOTE, + anon_sym_POUND, + [4774] = 6, + ACTIONS(650), 1, + anon_sym_COLON_COLON, + ACTIONS(904), 1, + anon_sym_LPAREN2, + ACTIONS(908), 1, + anon_sym_LBRACK, + ACTIONS(910), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DOLLAR, + ACTIONS(642), 24, + anon_sym_BEGIN, + anon_sym_END, + anon_sym_BEGINFILE, + anon_sym_ENDFILE, + anon_sym_LPAREN, + anon_sym_in, + anon_sym_COLON, + anon_sym_getline, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_EQ, anon_sym_AT, sym_identifier, aux_sym_number_token1, + anon_sym_function, + anon_sym_func, + ACTIONS(652), 31, + sym_concatenating_space, + ts_builtin_sym_end, + anon_sym_COMMA, + anon_sym_ATinclude, + anon_sym_ATload, + anon_sym_ATnamespace, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_DOLLAR, + anon_sym_RBRACK, aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [7614] = 5, - ACTIONS(910), 2, + [4847] = 7, + ACTIONS(904), 1, + anon_sym_LPAREN2, + ACTIONS(908), 1, + anon_sym_LBRACK, + ACTIONS(906), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(644), 10, + ACTIONS(642), 10, anon_sym_in, anon_sym_LT, anon_sym_GT, @@ -30949,7 +28750,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(658), 11, + ACTIONS(652), 11, anon_sym_PIPE_AMP, anon_sym_QMARK, anon_sym_STAR_STAR, @@ -30961,11 +28762,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - ACTIONS(642), 12, + ACTIONS(654), 13, anon_sym_BEGIN, anon_sym_END, anon_sym_BEGINFILE, anon_sym_ENDFILE, + anon_sym_LPAREN, anon_sym_getline, anon_sym_BANG, anon_sym_EQ, @@ -30974,7 +28776,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, anon_sym_function, anon_sym_func, - ACTIONS(654), 22, + ACTIONS(658), 21, sym_concatenating_space, ts_builtin_sym_end, anon_sym_COMMA, @@ -30982,7 +28784,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATload, anon_sym_ATnamespace, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_COLON, @@ -30997,49 +28798,203 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [7682] = 3, - ACTIONS(983), 1, - anon_sym_LBRACK, - ACTIONS(684), 2, + [4921] = 29, + ACTIONS(5), 1, + sym_identifier, + ACTIONS(11), 1, + anon_sym_LPAREN, + ACTIONS(13), 1, + anon_sym_LBRACE, + ACTIONS(15), 1, + anon_sym_getline, + ACTIONS(17), 1, + anon_sym_SLASH, + ACTIONS(21), 1, + anon_sym_BANG, + ACTIONS(25), 1, + anon_sym_DOLLAR, + ACTIONS(27), 1, + anon_sym_AT, + ACTIONS(29), 1, + aux_sym_number_token1, + ACTIONS(31), 1, + aux_sym_number_token2, + ACTIONS(33), 1, + anon_sym_DQUOTE, + ACTIONS(37), 1, + anon_sym_POUND, + ACTIONS(912), 1, + ts_builtin_sym_end, + STATE(433), 1, + sym_ns_qualified_name, + STATE(459), 1, + sym_array_ref, + STATE(495), 1, + sym_field_ref, + STATE(539), 1, + sym__binary_in, + STATE(1534), 1, + sym_pattern, + STATE(1545), 1, + sym_block, + STATE(2080), 1, + sym_namespace, + ACTIONS(19), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(23), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(35), 2, + anon_sym_function, + anon_sym_func, + STATE(1555), 2, + sym_range_pattern, + sym__special_pattern, + ACTIONS(9), 3, + anon_sym_ATinclude, + anon_sym_ATload, + anon_sym_ATnamespace, + ACTIONS(7), 4, + anon_sym_BEGIN, + anon_sym_END, + anon_sym_BEGINFILE, + anon_sym_ENDFILE, + STATE(293), 5, + sym_rule, + sym_directive, + sym_func_def, + sym_comment, + aux_sym_program_repeat1, + STATE(538), 9, + sym_ternary_exp, + sym_binary_exp, + sym_unary_exp, + sym_string_concat, + sym_grouping, + sym__primitive, + sym_number, + sym_string, + sym_func_call, + STATE(571), 10, + sym__getline_exp, + sym_getline_input, + sym_getline_file, + sym__exp, + sym_update_exp, + sym_assignment_exp, + sym_piped_io_exp, + sym_regex, + sym_regex_constant, + sym_indirect_func_call, + [5039] = 2, + ACTIONS(678), 23, + anon_sym_BEGIN, + anon_sym_END, + anon_sym_BEGINFILE, + anon_sym_ENDFILE, + anon_sym_LPAREN, + anon_sym_in, + anon_sym_getline, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_AT, + sym_identifier, + aux_sym_number_token1, + anon_sym_function, + anon_sym_func, + ACTIONS(680), 36, sym_concatenating_space, - sym__if_else_separator, - ACTIONS(682), 54, + ts_builtin_sym_end, anon_sym_COMMA, + anon_sym_ATinclude, + anon_sym_ATload, + anon_sym_ATnamespace, anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_LPAREN2, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_DOLLAR, + anon_sym_LBRACK, + anon_sym_RBRACK, + aux_sym_number_token2, + anon_sym_DQUOTE, + anon_sym_POUND, + [5103] = 5, + ACTIONS(904), 1, + anon_sym_LPAREN2, + ACTIONS(908), 1, + anon_sym_LBRACK, + ACTIONS(910), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(642), 23, + anon_sym_BEGIN, + anon_sym_END, + anon_sym_BEGINFILE, + anon_sym_ENDFILE, anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, anon_sym_in, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_getline, anon_sym_LT, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, anon_sym_GT, - anon_sym_GT_GT, anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, anon_sym_CARET, - anon_sym_STAR_STAR, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_PLUS, anon_sym_DASH, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_AT, + sym_identifier, + aux_sym_number_token1, + anon_sym_function, + anon_sym_func, + ACTIONS(652), 32, + sym_concatenating_space, + ts_builtin_sym_end, + anon_sym_COMMA, + anon_sym_ATinclude, + anon_sym_ATload, + anon_sym_ATnamespace, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, @@ -31048,23 +29003,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, + anon_sym_RBRACK, aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [7746] = 2, - ACTIONS(812), 22, + [5173] = 4, + ACTIONS(650), 1, + anon_sym_COLON_COLON, + ACTIONS(908), 1, + anon_sym_LBRACK, + ACTIONS(688), 23, anon_sym_BEGIN, anon_sym_END, anon_sym_BEGINFILE, anon_sym_ENDFILE, anon_sym_in, + anon_sym_COLON, anon_sym_getline, anon_sym_LT, anon_sym_GT, @@ -31082,7 +29043,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, anon_sym_function, anon_sym_func, - ACTIONS(814), 35, + ACTIONS(690), 34, sym_concatenating_space, ts_builtin_sym_end, anon_sym_COMMA, @@ -31093,7 +29054,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, - anon_sym_COLON, anon_sym_PIPE_AMP, anon_sym_QMARK, anon_sym_STAR_STAR, @@ -31118,16 +29078,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [7808] = 5, - ACTIONS(652), 1, - anon_sym_COLON_COLON, - ACTIONS(680), 1, - sym_concatenating_space, - ACTIONS(1003), 1, + [5241] = 7, + ACTIONS(914), 1, + sym_identifier, + ACTIONS(916), 1, anon_sym_LT, - ACTIONS(1005), 1, - anon_sym_LBRACK, - ACTIONS(678), 53, + STATE(313), 1, + sym_array_ref, + STATE(326), 1, + sym_ns_qualified_name, + STATE(2070), 1, + sym_namespace, + ACTIONS(728), 2, + sym_concatenating_space, + sym__if_else_separator, + ACTIONS(726), 52, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -31176,13 +29141,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_DOLLAR, anon_sym_AT, - sym_identifier, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [7876] = 1, - ACTIONS(722), 57, + [5315] = 5, + ACTIONS(918), 1, + sym_identifier, + STATE(2070), 1, + sym_namespace, + ACTIONS(728), 2, + sym_concatenating_space, + sym__if_else_separator, + STATE(313), 2, + sym_array_ref, + sym_ns_qualified_name, + ACTIONS(726), 53, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -31201,8 +29175,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_switch, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, anon_sym_getline, anon_sym_LT, sym_next_statement, @@ -31233,85 +29205,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_DOLLAR, - anon_sym_LBRACK, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [7936] = 7, - ACTIONS(732), 1, - anon_sym_EQ, - ACTIONS(910), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(989), 6, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - ACTIONS(644), 10, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(642), 11, - anon_sym_BEGIN, - anon_sym_END, - anon_sym_BEGINFILE, - anon_sym_ENDFILE, - anon_sym_getline, - anon_sym_BANG, anon_sym_AT, - sym_identifier, aux_sym_number_token1, - anon_sym_function, - anon_sym_func, - ACTIONS(658), 11, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(654), 16, - sym_concatenating_space, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_ATinclude, - anon_sym_ATload, - anon_sym_ATnamespace, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_DOLLAR, - anon_sym_RBRACK, aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [8008] = 2, - ACTIONS(772), 22, + [5385] = 4, + ACTIONS(650), 1, + anon_sym_COLON_COLON, + ACTIONS(908), 1, + anon_sym_LBRACK, + ACTIONS(692), 23, anon_sym_BEGIN, anon_sym_END, anon_sym_BEGINFILE, anon_sym_ENDFILE, anon_sym_in, + anon_sym_COLON, anon_sym_getline, anon_sym_LT, anon_sym_GT, @@ -31329,7 +29239,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, anon_sym_function, anon_sym_func, - ACTIONS(774), 35, + ACTIONS(694), 34, sym_concatenating_space, ts_builtin_sym_end, anon_sym_COMMA, @@ -31340,7 +29250,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, - anon_sym_COLON, anon_sym_PIPE_AMP, anon_sym_QMARK, anon_sym_STAR_STAR, @@ -31365,8 +29274,257 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [8070] = 2, - ACTIONS(780), 22, + [5453] = 29, + ACTIONS(920), 1, + ts_builtin_sym_end, + ACTIONS(922), 1, + sym_identifier, + ACTIONS(931), 1, + anon_sym_LPAREN, + ACTIONS(934), 1, + anon_sym_LBRACE, + ACTIONS(937), 1, + anon_sym_getline, + ACTIONS(940), 1, + anon_sym_SLASH, + ACTIONS(946), 1, + anon_sym_BANG, + ACTIONS(952), 1, + anon_sym_DOLLAR, + ACTIONS(955), 1, + anon_sym_AT, + ACTIONS(958), 1, + aux_sym_number_token1, + ACTIONS(961), 1, + aux_sym_number_token2, + ACTIONS(964), 1, + anon_sym_DQUOTE, + ACTIONS(970), 1, + anon_sym_POUND, + STATE(433), 1, + sym_ns_qualified_name, + STATE(459), 1, + sym_array_ref, + STATE(495), 1, + sym_field_ref, + STATE(539), 1, + sym__binary_in, + STATE(1534), 1, + sym_pattern, + STATE(1545), 1, + sym_block, + STATE(2080), 1, + sym_namespace, + ACTIONS(943), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(949), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(967), 2, + anon_sym_function, + anon_sym_func, + STATE(1555), 2, + sym_range_pattern, + sym__special_pattern, + ACTIONS(928), 3, + anon_sym_ATinclude, + anon_sym_ATload, + anon_sym_ATnamespace, + ACTIONS(925), 4, + anon_sym_BEGIN, + anon_sym_END, + anon_sym_BEGINFILE, + anon_sym_ENDFILE, + STATE(293), 5, + sym_rule, + sym_directive, + sym_func_def, + sym_comment, + aux_sym_program_repeat1, + STATE(538), 9, + sym_ternary_exp, + sym_binary_exp, + sym_unary_exp, + sym_string_concat, + sym_grouping, + sym__primitive, + sym_number, + sym_string, + sym_func_call, + STATE(571), 10, + sym__getline_exp, + sym_getline_input, + sym_getline_file, + sym__exp, + sym_update_exp, + sym_assignment_exp, + sym_piped_io_exp, + sym_regex, + sym_regex_constant, + sym_indirect_func_call, + [5571] = 19, + ACTIONS(530), 1, + sym_identifier, + ACTIONS(544), 1, + anon_sym_getline, + ACTIONS(662), 1, + anon_sym_LPAREN, + ACTIONS(666), 1, + anon_sym_SLASH, + ACTIONS(670), 1, + anon_sym_DOLLAR, + ACTIONS(672), 1, + anon_sym_AT, + ACTIONS(674), 1, + anon_sym_DQUOTE, + ACTIONS(975), 1, + sym__if_else_separator, + STATE(200), 1, + sym_ns_qualified_name, + STATE(219), 1, + sym_array_ref, + STATE(258), 1, + sym_field_ref, + STATE(373), 1, + sym__binary_in, + STATE(2068), 1, + sym_namespace, + ACTIONS(562), 2, + aux_sym_number_token1, + aux_sym_number_token2, + ACTIONS(668), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(552), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + STATE(359), 9, + sym_ternary_exp, + sym_binary_exp, + sym_unary_exp, + sym_string_concat, + sym_grouping, + sym__primitive, + sym_number, + sym_string, + sym_func_call, + STATE(485), 10, + sym__getline_exp, + sym_getline_input, + sym_getline_file, + sym__exp, + sym_update_exp, + sym_assignment_exp, + sym_piped_io_exp, + sym_regex, + sym_regex_constant, + sym_indirect_func_call, + ACTIONS(973), 20, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_if, + anon_sym_while, + anon_sym_do, + anon_sym_for, + sym_break_statement, + sym_continue_statement, + anon_sym_delete, + anon_sym_exit, + anon_sym_return, + anon_sym_switch, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_next_statement, + sym_nextfile_statement, + anon_sym_print, + anon_sym_printf, + anon_sym_POUND, + [5669] = 19, + ACTIONS(530), 1, + sym_identifier, + ACTIONS(544), 1, + anon_sym_getline, + ACTIONS(662), 1, + anon_sym_LPAREN, + ACTIONS(666), 1, + anon_sym_SLASH, + ACTIONS(670), 1, + anon_sym_DOLLAR, + ACTIONS(672), 1, + anon_sym_AT, + ACTIONS(674), 1, + anon_sym_DQUOTE, + ACTIONS(979), 1, + sym__if_else_separator, + STATE(200), 1, + sym_ns_qualified_name, + STATE(219), 1, + sym_array_ref, + STATE(258), 1, + sym_field_ref, + STATE(373), 1, + sym__binary_in, + STATE(2068), 1, + sym_namespace, + ACTIONS(562), 2, + aux_sym_number_token1, + aux_sym_number_token2, + ACTIONS(668), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(552), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + STATE(359), 9, + sym_ternary_exp, + sym_binary_exp, + sym_unary_exp, + sym_string_concat, + sym_grouping, + sym__primitive, + sym_number, + sym_string, + sym_func_call, + STATE(482), 10, + sym__getline_exp, + sym_getline_input, + sym_getline_file, + sym__exp, + sym_update_exp, + sym_assignment_exp, + sym_piped_io_exp, + sym_regex, + sym_regex_constant, + sym_indirect_func_call, + ACTIONS(977), 20, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_if, + anon_sym_while, + anon_sym_do, + anon_sym_for, + sym_break_statement, + sym_continue_statement, + anon_sym_delete, + anon_sym_exit, + anon_sym_return, + anon_sym_switch, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_next_statement, + sym_nextfile_statement, + anon_sym_print, + anon_sym_printf, + anon_sym_POUND, + [5767] = 3, + ACTIONS(908), 1, + anon_sym_LBRACK, + ACTIONS(692), 22, anon_sym_BEGIN, anon_sym_END, anon_sym_BEGINFILE, @@ -31389,7 +29547,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, anon_sym_function, anon_sym_func, - ACTIONS(782), 35, + ACTIONS(694), 35, sym_concatenating_space, ts_builtin_sym_end, anon_sym_COMMA, @@ -31425,8 +29583,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [8132] = 2, - ACTIONS(788), 22, + [5832] = 2, + ACTIONS(720), 22, anon_sym_BEGIN, anon_sym_END, anon_sym_BEGINFILE, @@ -31449,7 +29607,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, anon_sym_function, anon_sym_func, - ACTIONS(790), 35, + ACTIONS(722), 36, sym_concatenating_space, ts_builtin_sym_end, anon_sym_COMMA, @@ -31481,49 +29639,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT_EQ, anon_sym_CARET_EQ, anon_sym_DOLLAR, + anon_sym_LBRACK, anon_sym_RBRACK, aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [8194] = 2, - ACTIONS(682), 22, - anon_sym_BEGIN, - anon_sym_END, - anon_sym_BEGINFILE, - anon_sym_ENDFILE, + [5895] = 2, + ACTIONS(680), 1, + sym__if_else_separator, + ACTIONS(678), 57, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_if, + anon_sym_LPAREN, + anon_sym_while, + anon_sym_do, + anon_sym_for, anon_sym_in, + sym_break_statement, + sym_continue_statement, + anon_sym_delete, + anon_sym_exit, + anon_sym_return, + anon_sym_switch, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, anon_sym_getline, anon_sym_LT, + sym_next_statement, + sym_nextfile_statement, + anon_sym_print, + anon_sym_printf, anon_sym_GT, + anon_sym_GT_GT, anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_QMARK, anon_sym_CARET, + anon_sym_STAR_STAR, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_PLUS, anon_sym_DASH, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - anon_sym_function, - anon_sym_func, - ACTIONS(684), 35, - sym_concatenating_space, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_ATinclude, - anon_sym_ATload, - anon_sym_ATnamespace, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, @@ -31532,29 +29694,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_BANG, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, anon_sym_DOLLAR, - anon_sym_RBRACK, + anon_sym_LBRACK, + anon_sym_AT, + sym_identifier, + aux_sym_number_token1, aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [8256] = 5, - ACTIONS(652), 1, - anon_sym_COLON_COLON, - ACTIONS(680), 1, - sym__if_else_separator, - ACTIONS(999), 1, - anon_sym_LBRACK, - ACTIONS(1007), 1, - anon_sym_LT, - ACTIONS(678), 53, + [5958] = 5, + ACTIONS(728), 1, + sym_concatenating_space, + ACTIONS(981), 1, + sym_identifier, + STATE(2065), 1, + sym_namespace, + STATE(386), 2, + sym_array_ref, + sym_ns_qualified_name, + ACTIONS(726), 53, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -31574,6 +29735,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_getline, + anon_sym_LT, sym_next_statement, sym_nextfile_statement, anon_sym_print, @@ -31603,16 +29765,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_DOLLAR, anon_sym_AT, - sym_identifier, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [8324] = 3, - ACTIONS(906), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(644), 22, + [6027] = 3, + ACTIONS(908), 1, + anon_sym_LBRACK, + ACTIONS(688), 22, anon_sym_BEGIN, anon_sym_END, anon_sym_BEGINFILE, @@ -31635,7 +29795,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, anon_sym_function, anon_sym_func, - ACTIONS(658), 33, + ACTIONS(690), 35, sym_concatenating_space, ts_builtin_sym_end, anon_sym_COMMA, @@ -31658,22 +29818,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_DOLLAR, + anon_sym_RBRACK, + aux_sym_number_token2, + anon_sym_DQUOTE, + anon_sym_POUND, + [6092] = 8, + ACTIONS(696), 1, + anon_sym_EQ, + ACTIONS(908), 1, + anon_sym_LBRACK, + ACTIONS(906), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(983), 6, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_CARET_EQ, + ACTIONS(642), 10, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(652), 11, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(654), 11, + anon_sym_BEGIN, + anon_sym_END, + anon_sym_BEGINFILE, + anon_sym_ENDFILE, + anon_sym_getline, + anon_sym_BANG, + anon_sym_AT, + sym_identifier, + aux_sym_number_token1, + anon_sym_function, + anon_sym_func, + ACTIONS(658), 16, + sym_concatenating_space, + ts_builtin_sym_end, + anon_sym_COMMA, + anon_sym_ATinclude, + anon_sym_ATload, + anon_sym_ATnamespace, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COLON, anon_sym_DOLLAR, anon_sym_RBRACK, aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [8388] = 2, - ACTIONS(692), 2, + [6167] = 4, + ACTIONS(650), 1, + anon_sym_COLON_COLON, + ACTIONS(985), 1, + anon_sym_LBRACK, + ACTIONS(690), 2, sym_concatenating_space, sym__if_else_separator, - ACTIONS(690), 55, + ACTIONS(688), 54, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -31722,20 +29955,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_DOLLAR, - anon_sym_LBRACK, anon_sym_AT, sym_identifier, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [8450] = 3, - ACTIONS(1009), 1, - sym_regex_flags, - ACTIONS(830), 2, - sym_concatenating_space, + [6234] = 2, + ACTIONS(722), 1, sym__if_else_separator, - ACTIONS(826), 54, + ACTIONS(720), 57, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -31754,6 +29983,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_switch, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, anon_sym_getline, anon_sym_LT, sym_next_statement, @@ -31784,20 +30015,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_DOLLAR, + anon_sym_LBRACK, anon_sym_AT, sym_identifier, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [8514] = 4, - ACTIONS(652), 1, - anon_sym_COLON_COLON, - ACTIONS(684), 1, + [6297] = 7, + ACTIONS(728), 1, sym_concatenating_space, - ACTIONS(1005), 1, - anon_sym_LBRACK, - ACTIONS(682), 54, + ACTIONS(987), 1, + sym_identifier, + ACTIONS(989), 1, + anon_sym_LT, + STATE(385), 1, + sym_ns_qualified_name, + STATE(386), 1, + sym_array_ref, + STATE(2065), 1, + sym_namespace, + ACTIONS(726), 52, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -31817,7 +30055,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_getline, - anon_sym_LT, sym_next_statement, sym_nextfile_statement, anon_sym_print, @@ -31847,18 +30084,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_DOLLAR, anon_sym_AT, - sym_identifier, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [8580] = 3, - ACTIONS(1011), 1, - sym_regex_flags, - ACTIONS(836), 2, + [6370] = 4, + ACTIONS(650), 1, + anon_sym_COLON_COLON, + ACTIONS(985), 1, + anon_sym_LBRACK, + ACTIONS(694), 2, sym_concatenating_space, sym__if_else_separator, - ACTIONS(832), 54, + ACTIONS(692), 54, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -31913,14 +30151,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [8644] = 2, - ACTIONS(768), 22, - anon_sym_BEGIN, - anon_sym_END, - anon_sym_BEGINFILE, - anon_sym_ENDFILE, + [6437] = 6, + ACTIONS(908), 1, + anon_sym_LBRACK, + ACTIONS(906), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(642), 10, anon_sym_in, - anon_sym_getline, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -31930,6 +30168,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(652), 11, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(654), 12, + anon_sym_BEGIN, + anon_sym_END, + anon_sym_BEGINFILE, + anon_sym_ENDFILE, + anon_sym_getline, anon_sym_BANG, anon_sym_EQ, anon_sym_AT, @@ -31937,7 +30193,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, anon_sym_function, anon_sym_func, - ACTIONS(770), 35, + ACTIONS(658), 22, sym_concatenating_space, ts_builtin_sym_end, anon_sym_COMMA, @@ -31949,19 +30205,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_COLON, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -31973,18 +30216,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [8706] = 6, - ACTIONS(1013), 1, - sym_identifier, - ACTIONS(1015), 1, + [6508] = 5, + ACTIONS(650), 1, + anon_sym_COLON_COLON, + ACTIONS(985), 1, + anon_sym_LBRACK, + ACTIONS(991), 1, anon_sym_LT, - STATE(442), 1, - sym_ns_qualified_name, - STATE(443), 1, - sym_array_ref, - STATE(2054), 1, - sym_namespace, - ACTIONS(712), 52, + ACTIONS(690), 2, + sym_concatenating_space, + sym__if_else_separator, + ACTIONS(688), 53, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -32033,12 +30275,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_DOLLAR, anon_sym_AT, + sym_identifier, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [8776] = 2, - ACTIONS(746), 22, + [6577] = 4, + ACTIONS(908), 1, + anon_sym_LBRACK, + ACTIONS(910), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(642), 22, anon_sym_BEGIN, anon_sym_END, anon_sym_BEGINFILE, @@ -32061,7 +30309,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, anon_sym_function, anon_sym_func, - ACTIONS(748), 35, + ACTIONS(652), 33, sym_concatenating_space, ts_builtin_sym_end, anon_sym_COMMA, @@ -32084,8 +30332,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -32097,45 +30343,273 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [8838] = 2, - ACTIONS(808), 22, - anon_sym_BEGIN, - anon_sym_END, - anon_sym_BEGINFILE, - anon_sym_ENDFILE, + [6644] = 5, + ACTIONS(728), 1, + sym__if_else_separator, + ACTIONS(993), 1, + sym_identifier, + STATE(2069), 1, + sym_namespace, + STATE(365), 2, + sym_array_ref, + sym_ns_qualified_name, + ACTIONS(726), 53, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_if, + anon_sym_LPAREN, + anon_sym_while, + anon_sym_do, + anon_sym_for, anon_sym_in, + sym_break_statement, + sym_continue_statement, + anon_sym_delete, + anon_sym_exit, + anon_sym_return, + anon_sym_switch, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_getline, anon_sym_LT, + sym_next_statement, + sym_nextfile_statement, + anon_sym_print, + anon_sym_printf, anon_sym_GT, + anon_sym_GT_GT, anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_QMARK, anon_sym_CARET, + anon_sym_STAR_STAR, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_PLUS, anon_sym_DASH, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_BANG, - anon_sym_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_DOLLAR, anon_sym_AT, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DQUOTE, + anon_sym_POUND, + [6713] = 18, + ACTIONS(85), 1, sym_identifier, + ACTIONS(111), 1, + anon_sym_getline, + ACTIONS(698), 1, + anon_sym_LPAREN, + ACTIONS(702), 1, + anon_sym_SLASH, + ACTIONS(706), 1, + anon_sym_DOLLAR, + ACTIONS(708), 1, + anon_sym_AT, + ACTIONS(710), 1, + anon_sym_DQUOTE, + STATE(244), 1, + sym_ns_qualified_name, + STATE(268), 1, + sym_array_ref, + STATE(274), 1, + sym_field_ref, + STATE(426), 1, + sym__binary_in, + STATE(1956), 1, + sym_namespace, + ACTIONS(129), 2, aux_sym_number_token1, - anon_sym_function, - anon_sym_func, - ACTIONS(810), 35, - sym_concatenating_space, - ts_builtin_sym_end, + aux_sym_number_token2, + ACTIONS(704), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(119), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + STATE(427), 9, + sym_ternary_exp, + sym_binary_exp, + sym_unary_exp, + sym_string_concat, + sym_grouping, + sym__primitive, + sym_number, + sym_string, + sym_func_call, + STATE(501), 10, + sym__getline_exp, + sym_getline_input, + sym_getline_file, + sym__exp, + sym_update_exp, + sym_assignment_exp, + sym_piped_io_exp, + sym_regex, + sym_regex_constant, + sym_indirect_func_call, + ACTIONS(977), 20, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_if, + anon_sym_while, + anon_sym_do, + anon_sym_for, + sym_break_statement, + sym_continue_statement, + anon_sym_delete, + anon_sym_exit, + anon_sym_return, + anon_sym_switch, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_next_statement, + sym_nextfile_statement, + anon_sym_print, + anon_sym_printf, + anon_sym_POUND, + [6808] = 18, + ACTIONS(85), 1, + sym_identifier, + ACTIONS(111), 1, + anon_sym_getline, + ACTIONS(698), 1, + anon_sym_LPAREN, + ACTIONS(702), 1, + anon_sym_SLASH, + ACTIONS(706), 1, + anon_sym_DOLLAR, + ACTIONS(708), 1, + anon_sym_AT, + ACTIONS(710), 1, + anon_sym_DQUOTE, + STATE(244), 1, + sym_ns_qualified_name, + STATE(268), 1, + sym_array_ref, + STATE(274), 1, + sym_field_ref, + STATE(426), 1, + sym__binary_in, + STATE(1956), 1, + sym_namespace, + ACTIONS(129), 2, + aux_sym_number_token1, + aux_sym_number_token2, + ACTIONS(704), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(119), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + STATE(427), 9, + sym_ternary_exp, + sym_binary_exp, + sym_unary_exp, + sym_string_concat, + sym_grouping, + sym__primitive, + sym_number, + sym_string, + sym_func_call, + STATE(500), 10, + sym__getline_exp, + sym_getline_input, + sym_getline_file, + sym__exp, + sym_update_exp, + sym_assignment_exp, + sym_piped_io_exp, + sym_regex, + sym_regex_constant, + sym_indirect_func_call, + ACTIONS(973), 20, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_if, + anon_sym_while, + anon_sym_do, + anon_sym_for, + sym_break_statement, + sym_continue_statement, + anon_sym_delete, + anon_sym_exit, + anon_sym_return, + anon_sym_switch, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_next_statement, + sym_nextfile_statement, + anon_sym_print, + anon_sym_printf, + anon_sym_POUND, + [6903] = 7, + ACTIONS(728), 1, + sym__if_else_separator, + ACTIONS(995), 1, + sym_identifier, + ACTIONS(997), 1, + anon_sym_LT, + STATE(365), 1, + sym_array_ref, + STATE(366), 1, + sym_ns_qualified_name, + STATE(2069), 1, + sym_namespace, + ACTIONS(726), 52, anon_sym_COMMA, - anon_sym_ATinclude, - anon_sym_ATload, - anon_sym_ATnamespace, anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_if, anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_while, + anon_sym_do, + anon_sym_for, + anon_sym_in, + sym_break_statement, + sym_continue_statement, + anon_sym_delete, + anon_sym_exit, + anon_sym_return, + anon_sym_switch, anon_sym_LBRACE, - anon_sym_COLON, + anon_sym_RBRACE, + anon_sym_getline, + sym_next_statement, + sym_nextfile_statement, + anon_sym_print, + anon_sym_printf, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_PIPE, anon_sym_PIPE_AMP, anon_sym_QMARK, + anon_sym_CARET, anon_sym_STAR_STAR, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, @@ -32144,58 +30618,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_BANG, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, anon_sym_DOLLAR, - anon_sym_RBRACK, + anon_sym_AT, + aux_sym_number_token1, aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [8900] = 2, - ACTIONS(800), 22, - anon_sym_BEGIN, - anon_sym_END, - anon_sym_BEGINFILE, - anon_sym_ENDFILE, + [6976] = 3, + ACTIONS(985), 1, + anon_sym_LBRACK, + ACTIONS(690), 2, + sym_concatenating_space, + sym__if_else_separator, + ACTIONS(688), 54, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_if, + anon_sym_LPAREN, + anon_sym_while, + anon_sym_do, + anon_sym_for, anon_sym_in, + sym_break_statement, + sym_continue_statement, + anon_sym_delete, + anon_sym_exit, + anon_sym_return, + anon_sym_switch, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_getline, anon_sym_LT, + sym_next_statement, + sym_nextfile_statement, + anon_sym_print, + anon_sym_printf, anon_sym_GT, + anon_sym_GT_GT, anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_QMARK, anon_sym_CARET, + anon_sym_STAR_STAR, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_PLUS, anon_sym_DASH, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - anon_sym_function, - anon_sym_func, - ACTIONS(802), 35, - sym_concatenating_space, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_ATinclude, - anon_sym_ATload, - anon_sym_ATnamespace, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, @@ -32204,21 +30678,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_BANG, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, anon_sym_DOLLAR, - anon_sym_RBRACK, + anon_sym_AT, + sym_identifier, + aux_sym_number_token1, aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [8962] = 2, - ACTIONS(760), 22, + [7040] = 2, + ACTIONS(780), 22, anon_sym_BEGIN, anon_sym_END, anon_sym_BEGINFILE, @@ -32241,7 +30712,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, anon_sym_function, anon_sym_func, - ACTIONS(762), 35, + ACTIONS(782), 35, sym_concatenating_space, ts_builtin_sym_end, anon_sym_COMMA, @@ -32277,45 +30748,109 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [9024] = 2, - ACTIONS(750), 22, - anon_sym_BEGIN, - anon_sym_END, - anon_sym_BEGINFILE, - anon_sym_ENDFILE, + [7102] = 2, + ACTIONS(722), 2, + sym_concatenating_space, + sym__if_else_separator, + ACTIONS(720), 55, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_if, + anon_sym_LPAREN, + anon_sym_while, + anon_sym_do, + anon_sym_for, anon_sym_in, + sym_break_statement, + sym_continue_statement, + anon_sym_delete, + anon_sym_exit, + anon_sym_return, + anon_sym_switch, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_getline, anon_sym_LT, + sym_next_statement, + sym_nextfile_statement, + anon_sym_print, + anon_sym_printf, anon_sym_GT, + anon_sym_GT_GT, anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_QMARK, anon_sym_CARET, + anon_sym_STAR_STAR, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_PLUS, anon_sym_DASH, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_BANG, - anon_sym_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_DOLLAR, + anon_sym_LBRACK, anon_sym_AT, sym_identifier, aux_sym_number_token1, - anon_sym_function, - anon_sym_func, - ACTIONS(752), 35, + aux_sym_number_token2, + anon_sym_DQUOTE, + anon_sym_POUND, + [7164] = 3, + ACTIONS(999), 1, + sym_regex_flags, + ACTIONS(836), 2, sym_concatenating_space, - ts_builtin_sym_end, + sym__if_else_separator, + ACTIONS(832), 54, anon_sym_COMMA, - anon_sym_ATinclude, - anon_sym_ATload, - anon_sym_ATnamespace, anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_if, anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_while, + anon_sym_do, + anon_sym_for, + anon_sym_in, + sym_break_statement, + sym_continue_statement, + anon_sym_delete, + anon_sym_exit, + anon_sym_return, + anon_sym_switch, anon_sym_LBRACE, - anon_sym_COLON, + anon_sym_RBRACE, + anon_sym_getline, + anon_sym_LT, + sym_next_statement, + sym_nextfile_statement, + anon_sym_print, + anon_sym_printf, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_PIPE, anon_sym_PIPE_AMP, anon_sym_QMARK, + anon_sym_CARET, anon_sym_STAR_STAR, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, @@ -32324,21 +30859,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_BANG, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, anon_sym_DOLLAR, - anon_sym_RBRACK, + anon_sym_AT, + sym_identifier, + aux_sym_number_token1, aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [9086] = 2, - ACTIONS(796), 22, + [7228] = 2, + ACTIONS(750), 22, anon_sym_BEGIN, anon_sym_END, anon_sym_BEGINFILE, @@ -32361,7 +30893,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, anon_sym_function, anon_sym_func, - ACTIONS(798), 35, + ACTIONS(752), 35, sym_concatenating_space, ts_builtin_sym_end, anon_sym_COMMA, @@ -32397,8 +30929,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [9148] = 2, - ACTIONS(820), 22, + [7290] = 2, + ACTIONS(754), 22, anon_sym_BEGIN, anon_sym_END, anon_sym_BEGINFILE, @@ -32421,7 +30953,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, anon_sym_function, anon_sym_func, - ACTIONS(822), 35, + ACTIONS(756), 35, sym_concatenating_space, ts_builtin_sym_end, anon_sym_COMMA, @@ -32457,14 +30989,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [9210] = 4, - ACTIONS(652), 1, - anon_sym_COLON_COLON, - ACTIONS(680), 1, + [7352] = 3, + ACTIONS(1001), 1, + sym_regex_flags, + ACTIONS(830), 2, sym_concatenating_space, - ACTIONS(1005), 1, - anon_sym_LBRACK, - ACTIONS(678), 54, + sym__if_else_separator, + ACTIONS(826), 54, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -32519,9 +31050,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [9276] = 4, - ACTIONS(644), 10, + [7416] = 2, + ACTIONS(816), 22, + anon_sym_BEGIN, + anon_sym_END, + anon_sym_BEGINFILE, + anon_sym_ENDFILE, anon_sym_in, + anon_sym_getline, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -32531,7 +31067,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(658), 11, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_AT, + sym_identifier, + aux_sym_number_token1, + anon_sym_function, + anon_sym_func, + ACTIONS(818), 35, + sym_concatenating_space, + ts_builtin_sym_end, + anon_sym_COMMA, + anon_sym_ATinclude, + anon_sym_ATload, + anon_sym_ATnamespace, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COLON, anon_sym_PIPE_AMP, anon_sym_QMARK, anon_sym_STAR_STAR, @@ -32543,12 +31097,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - ACTIONS(642), 12, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_DOLLAR, + anon_sym_RBRACK, + aux_sym_number_token2, + anon_sym_DQUOTE, + anon_sym_POUND, + [7478] = 2, + ACTIONS(692), 22, anon_sym_BEGIN, anon_sym_END, anon_sym_BEGINFILE, anon_sym_ENDFILE, + anon_sym_in, anon_sym_getline, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_BANG, anon_sym_EQ, anon_sym_AT, @@ -32556,7 +31134,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, anon_sym_function, anon_sym_func, - ACTIONS(654), 24, + ACTIONS(694), 35, sym_concatenating_space, ts_builtin_sym_end, anon_sym_COMMA, @@ -32568,6 +31146,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_COLON, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -32581,11 +31170,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [9342] = 2, - ACTIONS(724), 2, + [7540] = 5, + ACTIONS(650), 1, + anon_sym_COLON_COLON, + ACTIONS(690), 1, sym_concatenating_space, - sym__if_else_separator, - ACTIONS(722), 55, + ACTIONS(1003), 1, + anon_sym_LT, + ACTIONS(1005), 1, + anon_sym_LBRACK, + ACTIONS(688), 53, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -32605,7 +31199,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_getline, - anon_sym_LT, sym_next_statement, sym_nextfile_statement, anon_sym_print, @@ -32634,15 +31227,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_DOLLAR, - anon_sym_LBRACK, anon_sym_AT, sym_identifier, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [9404] = 1, - ACTIONS(690), 57, + [7608] = 2, + ACTIONS(680), 2, + sym_concatenating_space, + sym__if_else_separator, + ACTIONS(678), 55, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -32661,8 +31256,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_switch, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, anon_sym_getline, anon_sym_LT, sym_next_statement, @@ -32700,12 +31293,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [9464] = 3, - ACTIONS(652), 1, - anon_sym_COLON_COLON, - ACTIONS(1017), 1, + [7670] = 3, + ACTIONS(985), 1, anon_sym_LBRACK, - ACTIONS(678), 54, + ACTIONS(694), 2, + sym_concatenating_space, + sym__if_else_separator, + ACTIONS(692), 54, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -32760,35 +31354,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [9527] = 9, - ACTIONS(1019), 1, - anon_sym_in, - ACTIONS(1031), 1, - anon_sym_AMP_AMP, - ACTIONS(794), 2, + [7734] = 4, + ACTIONS(650), 1, + anon_sym_COLON_COLON, + ACTIONS(694), 1, sym_concatenating_space, - sym__if_else_separator, - ACTIONS(1023), 2, - anon_sym_CARET, - anon_sym_STAR_STAR, - ACTIONS(1027), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1029), 2, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(1025), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1021), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(792), 37, + ACTIONS(1005), 1, + anon_sym_LBRACK, + ACTIONS(692), 54, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -32798,6 +31371,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_for, + anon_sym_in, sym_break_statement, sym_continue_statement, anon_sym_delete, @@ -32807,14 +31381,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_getline, + anon_sym_LT, sym_next_statement, sym_nextfile_statement, anon_sym_print, anon_sym_printf, + anon_sym_GT, anon_sym_GT_GT, anon_sym_PIPE, anon_sym_PIPE_AMP, anon_sym_QMARK, + anon_sym_CARET, + anon_sym_STAR_STAR, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_BANG, anon_sym_PLUS_PLUS, @@ -32826,33 +31416,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [9602] = 8, - ACTIONS(1019), 1, - anon_sym_in, - ACTIONS(794), 2, + [7800] = 4, + ACTIONS(985), 1, + anon_sym_LBRACK, + ACTIONS(991), 1, + anon_sym_LT, + ACTIONS(690), 2, sym_concatenating_space, sym__if_else_separator, - ACTIONS(1023), 2, - anon_sym_CARET, - anon_sym_STAR_STAR, - ACTIONS(1027), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1029), 2, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(1025), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1021), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(792), 38, + ACTIONS(688), 53, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -32862,6 +31434,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_for, + anon_sym_in, sym_break_statement, sym_continue_statement, anon_sym_delete, @@ -32875,10 +31448,24 @@ static const uint16_t ts_small_parse_table[] = { sym_nextfile_statement, anon_sym_print, anon_sym_printf, + anon_sym_GT, anon_sym_GT_GT, anon_sym_PIPE, anon_sym_PIPE_AMP, anon_sym_QMARK, + anon_sym_CARET, + anon_sym_STAR_STAR, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_BANG, @@ -32891,47 +31478,105 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [9675] = 2, - ACTIONS(752), 2, + [7866] = 2, + ACTIONS(772), 22, + anon_sym_BEGIN, + anon_sym_END, + anon_sym_BEGINFILE, + anon_sym_ENDFILE, + anon_sym_in, + anon_sym_getline, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_AT, + sym_identifier, + aux_sym_number_token1, + anon_sym_function, + anon_sym_func, + ACTIONS(774), 35, sym_concatenating_space, - sym__if_else_separator, - ACTIONS(750), 54, + ts_builtin_sym_end, anon_sym_COMMA, + anon_sym_ATinclude, + anon_sym_ATload, + anon_sym_ATnamespace, anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_in, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, + anon_sym_RPAREN, anon_sym_LBRACE, - anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_DOLLAR, + anon_sym_RBRACK, + aux_sym_number_token2, + anon_sym_DQUOTE, + anon_sym_POUND, + [7928] = 2, + ACTIONS(768), 22, + anon_sym_BEGIN, + anon_sym_END, + anon_sym_BEGINFILE, + anon_sym_ENDFILE, + anon_sym_in, anon_sym_getline, anon_sym_LT, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, anon_sym_GT, - anon_sym_GT_GT, anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, anon_sym_CARET, - anon_sym_STAR_STAR, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_PLUS, anon_sym_DASH, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_AT, + sym_identifier, + aux_sym_number_token1, + anon_sym_function, + anon_sym_func, + ACTIONS(770), 35, + sym_concatenating_space, + ts_builtin_sym_end, + anon_sym_COMMA, + anon_sym_ATinclude, + anon_sym_ATload, + anon_sym_ATnamespace, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, @@ -32940,24 +31585,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_BANG, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, + anon_sym_RBRACK, aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [9736] = 4, - ACTIONS(652), 1, - anon_sym_COLON_COLON, - ACTIONS(1017), 1, - anon_sym_LBRACK, - ACTIONS(1033), 1, - anon_sym_LT, - ACTIONS(678), 53, + [7990] = 1, + ACTIONS(720), 57, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -32976,7 +31618,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_switch, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, anon_sym_getline, + anon_sym_LT, sym_next_statement, sym_nextfile_statement, anon_sym_print, @@ -33005,81 +31650,143 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_DOLLAR, + anon_sym_LBRACK, anon_sym_AT, sym_identifier, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [9801] = 6, - ACTIONS(794), 2, - sym_concatenating_space, - sym__if_else_separator, - ACTIONS(1023), 2, + [8050] = 2, + ACTIONS(798), 22, + anon_sym_BEGIN, + anon_sym_END, + anon_sym_BEGINFILE, + anon_sym_ENDFILE, + anon_sym_in, + anon_sym_getline, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, anon_sym_CARET, - anon_sym_STAR_STAR, - ACTIONS(1027), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1025), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1021), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(792), 41, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_AT, + sym_identifier, + aux_sym_number_token1, + anon_sym_function, + anon_sym_func, + ACTIONS(800), 35, + sym_concatenating_space, + ts_builtin_sym_end, anon_sym_COMMA, + anon_sym_ATinclude, + anon_sym_ATload, + anon_sym_ATnamespace, anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_in, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, + anon_sym_RPAREN, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_getline, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_GT_GT, - anon_sym_PIPE, + anon_sym_COLON, anon_sym_PIPE_AMP, anon_sym_QMARK, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_TILDE, anon_sym_BANG_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_BANG, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, anon_sym_DOLLAR, + anon_sym_RBRACK, + aux_sym_number_token2, + anon_sym_DQUOTE, + anon_sym_POUND, + [8112] = 3, + ACTIONS(910), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(642), 22, + anon_sym_BEGIN, + anon_sym_END, + anon_sym_BEGINFILE, + anon_sym_ENDFILE, + anon_sym_in, + anon_sym_getline, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_EQ, anon_sym_AT, sym_identifier, aux_sym_number_token1, + anon_sym_function, + anon_sym_func, + ACTIONS(652), 33, + sym_concatenating_space, + ts_builtin_sym_end, + anon_sym_COMMA, + anon_sym_ATinclude, + anon_sym_ATload, + anon_sym_ATnamespace, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_DOLLAR, + anon_sym_RBRACK, aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [9870] = 3, - ACTIONS(684), 1, - sym__if_else_separator, - ACTIONS(999), 1, - anon_sym_LBRACK, - ACTIONS(682), 54, + [8176] = 4, + ACTIONS(1007), 1, + sym_identifier, + STATE(2059), 1, + sym_namespace, + STATE(415), 2, + sym_array_ref, + sym_ns_qualified_name, + ACTIONS(726), 53, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -33129,84 +31836,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_DOLLAR, anon_sym_AT, - sym_identifier, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [9933] = 11, - ACTIONS(1019), 1, + [8242] = 2, + ACTIONS(738), 22, + anon_sym_BEGIN, + anon_sym_END, + anon_sym_BEGINFILE, + anon_sym_ENDFILE, anon_sym_in, - ACTIONS(1031), 1, - anon_sym_AMP_AMP, - ACTIONS(1035), 1, - anon_sym_QMARK, - ACTIONS(1037), 1, - anon_sym_PIPE_PIPE, - ACTIONS(878), 2, - sym_concatenating_space, - sym__if_else_separator, - ACTIONS(1023), 2, + anon_sym_getline, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, anon_sym_CARET, - anon_sym_STAR_STAR, - ACTIONS(1027), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1029), 2, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(1025), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1021), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(876), 35, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_AT, + sym_identifier, + aux_sym_number_token1, + anon_sym_function, + anon_sym_func, + ACTIONS(740), 35, + sym_concatenating_space, + ts_builtin_sym_end, anon_sym_COMMA, + anon_sym_ATinclude, + anon_sym_ATload, + anon_sym_ATnamespace, anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_getline, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_GT_GT, - anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COLON, anon_sym_PIPE_AMP, - anon_sym_BANG, + anon_sym_QMARK, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, + anon_sym_RBRACK, aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [10012] = 2, - ACTIONS(762), 2, - sym_concatenating_space, + [8304] = 4, + ACTIONS(650), 1, + anon_sym_COLON_COLON, + ACTIONS(690), 1, sym__if_else_separator, - ACTIONS(760), 54, + ACTIONS(1009), 1, + anon_sym_LBRACK, + ACTIONS(688), 54, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -33261,11 +31962,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [10073] = 2, - ACTIONS(684), 2, - sym_concatenating_space, + [8370] = 4, + ACTIONS(650), 1, + anon_sym_COLON_COLON, + ACTIONS(694), 1, sym__if_else_separator, - ACTIONS(682), 54, + ACTIONS(1009), 1, + anon_sym_LBRACK, + ACTIONS(692), 54, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -33320,12 +32024,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [10134] = 3, - ACTIONS(680), 1, - sym__if_else_separator, - ACTIONS(999), 1, - anon_sym_LBRACK, - ACTIONS(678), 54, + [8436] = 6, + ACTIONS(1011), 1, + sym_identifier, + ACTIONS(1013), 1, + anon_sym_LT, + STATE(413), 1, + sym_ns_qualified_name, + STATE(415), 1, + sym_array_ref, + STATE(2059), 1, + sym_namespace, + ACTIONS(726), 52, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -33345,7 +32055,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_getline, - anon_sym_LT, sym_next_statement, sym_nextfile_statement, anon_sym_print, @@ -33375,52 +32084,109 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_DOLLAR, anon_sym_AT, - sym_identifier, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [10197] = 2, - ACTIONS(806), 2, + [8506] = 2, + ACTIONS(794), 22, + anon_sym_BEGIN, + anon_sym_END, + anon_sym_BEGINFILE, + anon_sym_ENDFILE, + anon_sym_in, + anon_sym_getline, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_AT, + sym_identifier, + aux_sym_number_token1, + anon_sym_function, + anon_sym_func, + ACTIONS(796), 35, sym_concatenating_space, - sym__if_else_separator, - ACTIONS(804), 54, + ts_builtin_sym_end, anon_sym_COMMA, + anon_sym_ATinclude, + anon_sym_ATload, + anon_sym_ATnamespace, anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_in, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, + anon_sym_RPAREN, anon_sym_LBRACE, - anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_DOLLAR, + anon_sym_RBRACK, + aux_sym_number_token2, + anon_sym_DQUOTE, + anon_sym_POUND, + [8568] = 2, + ACTIONS(790), 22, + anon_sym_BEGIN, + anon_sym_END, + anon_sym_BEGINFILE, + anon_sym_ENDFILE, + anon_sym_in, anon_sym_getline, anon_sym_LT, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, anon_sym_GT, - anon_sym_GT_GT, anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, anon_sym_CARET, - anon_sym_STAR_STAR, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_PLUS, anon_sym_DASH, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_AT, + sym_identifier, + aux_sym_number_token1, + anon_sym_function, + anon_sym_func, + ACTIONS(792), 35, + sym_concatenating_space, + ts_builtin_sym_end, + anon_sym_COMMA, + anon_sym_ATinclude, + anon_sym_ATload, + anon_sym_ATnamespace, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, @@ -33429,21 +32195,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_BANG, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, + anon_sym_RBRACK, aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [10258] = 2, - ACTIONS(818), 2, - sym_concatenating_space, + [8630] = 5, + ACTIONS(650), 1, + anon_sym_COLON_COLON, + ACTIONS(690), 1, sym__if_else_separator, - ACTIONS(816), 54, + ACTIONS(1009), 1, + anon_sym_LBRACK, + ACTIONS(1015), 1, + anon_sym_LT, + ACTIONS(688), 53, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -33463,7 +32237,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_getline, - anon_sym_LT, sym_next_statement, sym_nextfile_statement, anon_sym_print, @@ -33498,49 +32271,45 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [10319] = 4, - ACTIONS(794), 2, - sym_concatenating_space, - sym__if_else_separator, - ACTIONS(1023), 2, + [8698] = 2, + ACTIONS(764), 22, + anon_sym_BEGIN, + anon_sym_END, + anon_sym_BEGINFILE, + anon_sym_ENDFILE, + anon_sym_in, + anon_sym_getline, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, anon_sym_CARET, - anon_sym_STAR_STAR, - ACTIONS(1025), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(792), 49, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_AT, + sym_identifier, + aux_sym_number_token1, + anon_sym_function, + anon_sym_func, + ACTIONS(766), 35, + sym_concatenating_space, + ts_builtin_sym_end, anon_sym_COMMA, + anon_sym_ATinclude, + anon_sym_ATload, + anon_sym_ATnamespace, anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_in, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, + anon_sym_RPAREN, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_getline, - anon_sym_LT, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, + anon_sym_COLON, anon_sym_PIPE_AMP, anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, @@ -33549,21 +32318,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_BANG, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, + anon_sym_RBRACK, aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [10384] = 2, - ACTIONS(810), 2, - sym_concatenating_space, - sym__if_else_separator, - ACTIONS(808), 54, + [8760] = 1, + ACTIONS(678), 57, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -33582,6 +32351,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_switch, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, anon_sym_getline, anon_sym_LT, sym_next_statement, @@ -33612,53 +32383,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_DOLLAR, + anon_sym_LBRACK, anon_sym_AT, sym_identifier, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [10445] = 2, - ACTIONS(748), 2, - sym_concatenating_space, - sym__if_else_separator, - ACTIONS(746), 54, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, + [8820] = 2, + ACTIONS(758), 22, + anon_sym_BEGIN, + anon_sym_END, + anon_sym_BEGINFILE, + anon_sym_ENDFILE, anon_sym_in, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_getline, anon_sym_LT, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, anon_sym_GT, - anon_sym_GT_GT, anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, anon_sym_CARET, - anon_sym_STAR_STAR, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_PLUS, anon_sym_DASH, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_AT, + sym_identifier, + aux_sym_number_token1, + anon_sym_function, + anon_sym_func, + ACTIONS(760), 35, + sym_concatenating_space, + ts_builtin_sym_end, + anon_sym_COMMA, + anon_sym_ATinclude, + anon_sym_ATload, + anon_sym_ATnamespace, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, @@ -33667,21 +32437,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_BANG, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, + anon_sym_RBRACK, aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [10506] = 2, - ACTIONS(798), 2, + [8882] = 4, + ACTIONS(650), 1, + anon_sym_COLON_COLON, + ACTIONS(690), 1, sym_concatenating_space, - sym__if_else_separator, - ACTIONS(796), 54, + ACTIONS(1005), 1, + anon_sym_LBRACK, + ACTIONS(688), 54, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -33736,47 +32512,45 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [10567] = 2, - ACTIONS(790), 2, - sym_concatenating_space, - sym__if_else_separator, - ACTIONS(788), 54, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, + [8948] = 2, + ACTIONS(746), 22, + anon_sym_BEGIN, + anon_sym_END, + anon_sym_BEGINFILE, + anon_sym_ENDFILE, anon_sym_in, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_getline, anon_sym_LT, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, anon_sym_GT, - anon_sym_GT_GT, anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, anon_sym_CARET, - anon_sym_STAR_STAR, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_PLUS, anon_sym_DASH, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_AT, + sym_identifier, + aux_sym_number_token1, + anon_sym_function, + anon_sym_func, + ACTIONS(748), 35, + sym_concatenating_space, + ts_builtin_sym_end, + anon_sym_COMMA, + anon_sym_ATinclude, + anon_sym_ATload, + anon_sym_ATnamespace, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, @@ -33785,59 +32559,107 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_BANG, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, + anon_sym_RBRACK, aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [10628] = 4, - ACTIONS(680), 1, - sym__if_else_separator, - ACTIONS(999), 1, - anon_sym_LBRACK, - ACTIONS(1007), 1, + [9010] = 2, + ACTIONS(812), 22, + anon_sym_BEGIN, + anon_sym_END, + anon_sym_BEGINFILE, + anon_sym_ENDFILE, + anon_sym_in, + anon_sym_getline, anon_sym_LT, - ACTIONS(678), 53, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_AT, + sym_identifier, + aux_sym_number_token1, + anon_sym_function, + anon_sym_func, + ACTIONS(814), 35, + sym_concatenating_space, + ts_builtin_sym_end, anon_sym_COMMA, + anon_sym_ATinclude, + anon_sym_ATload, + anon_sym_ATnamespace, anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_in, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, + anon_sym_RPAREN, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_getline, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, + anon_sym_COLON, anon_sym_PIPE_AMP, anon_sym_QMARK, - anon_sym_CARET, anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_DOLLAR, + anon_sym_RBRACK, + aux_sym_number_token2, + anon_sym_DQUOTE, + anon_sym_POUND, + [9072] = 7, + ACTIONS(696), 1, + anon_sym_EQ, + ACTIONS(906), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(983), 6, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + ACTIONS(642), 10, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(652), 11, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, @@ -33846,57 +32668,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + ACTIONS(654), 11, + anon_sym_BEGIN, + anon_sym_END, + anon_sym_BEGINFILE, + anon_sym_ENDFILE, + anon_sym_getline, anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, anon_sym_AT, sym_identifier, aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [10693] = 2, - ACTIONS(770), 2, + anon_sym_function, + anon_sym_func, + ACTIONS(658), 16, sym_concatenating_space, - sym__if_else_separator, - ACTIONS(768), 54, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_in, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, + ts_builtin_sym_end, + anon_sym_COMMA, + anon_sym_ATinclude, + anon_sym_ATload, + anon_sym_ATnamespace, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_getline, + anon_sym_COLON, + anon_sym_DOLLAR, + anon_sym_RBRACK, + aux_sym_number_token2, + anon_sym_DQUOTE, + anon_sym_POUND, + [9144] = 5, + ACTIONS(906), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(642), 10, + anon_sym_in, anon_sym_LT, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, anon_sym_GT, - anon_sym_GT_GT, anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, anon_sym_CARET, - anon_sym_STAR_STAR, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(652), 11, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, @@ -33905,41 +32724,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + ACTIONS(654), 12, + anon_sym_BEGIN, + anon_sym_END, + anon_sym_BEGINFILE, + anon_sym_ENDFILE, + anon_sym_getline, anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, + anon_sym_EQ, anon_sym_AT, sym_identifier, aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [10754] = 8, - ACTIONS(652), 1, - anon_sym_COLON_COLON, - ACTIONS(908), 1, - anon_sym_LBRACK, - ACTIONS(1039), 1, - anon_sym_LPAREN2, - ACTIONS(1043), 1, - anon_sym_EQ, - ACTIONS(1041), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1045), 6, + anon_sym_function, + anon_sym_func, + ACTIONS(658), 22, + sym_concatenating_space, + ts_builtin_sym_end, + anon_sym_COMMA, + anon_sym_ATinclude, + anon_sym_ATload, + anon_sym_ATnamespace, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COLON, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_CARET_EQ, - ACTIONS(644), 22, + anon_sym_DOLLAR, + anon_sym_RBRACK, + aux_sym_number_token2, + anon_sym_DQUOTE, + anon_sym_POUND, + [9212] = 2, + ACTIONS(776), 22, anon_sym_BEGIN, anon_sym_END, anon_sym_BEGINFILE, anon_sym_ENDFILE, - anon_sym_LPAREN, anon_sym_in, anon_sym_getline, anon_sym_LT, @@ -33952,19 +32778,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, + anon_sym_EQ, anon_sym_AT, sym_identifier, aux_sym_number_token1, anon_sym_function, anon_sym_func, - ACTIONS(658), 22, + ACTIONS(778), 35, sym_concatenating_space, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_ATinclude, anon_sym_ATload, anon_sym_ATnamespace, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LBRACE, + anon_sym_COLON, anon_sym_PIPE_AMP, anon_sym_QMARK, anon_sym_STAR_STAR, @@ -33976,185 +32807,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_DOLLAR, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [10827] = 7, - ACTIONS(870), 2, - sym_concatenating_space, - sym__if_else_separator, - ACTIONS(1023), 2, - anon_sym_CARET, - anon_sym_STAR_STAR, - ACTIONS(1027), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1029), 2, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(1025), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1021), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(868), 39, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_in, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_getline, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_BANG, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, + anon_sym_RBRACK, aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [10898] = 12, - ACTIONS(1019), 1, + [9274] = 2, + ACTIONS(786), 22, + anon_sym_BEGIN, + anon_sym_END, + anon_sym_BEGINFILE, + anon_sym_ENDFILE, anon_sym_in, - ACTIONS(1031), 1, - anon_sym_AMP_AMP, - ACTIONS(1035), 1, - anon_sym_QMARK, - ACTIONS(1037), 1, - anon_sym_PIPE_PIPE, - ACTIONS(866), 2, - sym_concatenating_space, - sym__if_else_separator, - ACTIONS(1023), 2, - anon_sym_CARET, - anon_sym_STAR_STAR, - ACTIONS(1027), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1029), 2, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(1047), 2, + anon_sym_getline, + anon_sym_LT, + anon_sym_GT, anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(1025), 3, + anon_sym_CARET, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1021), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(854), 33, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_getline, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, + anon_sym_EQ, anon_sym_AT, sym_identifier, aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [10979] = 3, - ACTIONS(658), 1, - sym__if_else_separator, - ACTIONS(730), 1, + anon_sym_function, + anon_sym_func, + ACTIONS(788), 35, sym_concatenating_space, - ACTIONS(644), 54, + ts_builtin_sym_end, anon_sym_COMMA, + anon_sym_ATinclude, + anon_sym_ATload, + anon_sym_ATnamespace, anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_in, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, + anon_sym_RPAREN, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_getline, - anon_sym_LT, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, + anon_sym_COLON, anon_sym_PIPE_AMP, anon_sym_QMARK, - anon_sym_CARET, anon_sym_STAR_STAR, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, @@ -34163,60 +32867,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_BANG, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, + anon_sym_RBRACK, aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [11042] = 5, - ACTIONS(882), 2, - sym_concatenating_space, - sym__if_else_separator, - ACTIONS(1023), 2, + [9336] = 2, + ACTIONS(742), 22, + anon_sym_BEGIN, + anon_sym_END, + anon_sym_BEGINFILE, + anon_sym_ENDFILE, + anon_sym_in, + anon_sym_getline, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, anon_sym_CARET, - anon_sym_STAR_STAR, - ACTIONS(1027), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1025), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(880), 47, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_AT, + sym_identifier, + aux_sym_number_token1, + anon_sym_function, + anon_sym_func, + ACTIONS(744), 35, + sym_concatenating_space, + ts_builtin_sym_end, anon_sym_COMMA, + anon_sym_ATinclude, + anon_sym_ATload, + anon_sym_ATnamespace, anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_in, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, + anon_sym_RPAREN, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_getline, - anon_sym_LT, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, + anon_sym_COLON, anon_sym_PIPE_AMP, anon_sym_QMARK, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, @@ -34225,58 +32927,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_BANG, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, + anon_sym_RBRACK, aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [11109] = 3, - ACTIONS(836), 1, - sym__if_else_separator, - ACTIONS(1049), 1, - sym_regex_flags, - ACTIONS(832), 54, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, + [9398] = 4, + ACTIONS(642), 10, anon_sym_in, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_getline, anon_sym_LT, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, anon_sym_GT, - anon_sym_GT_GT, anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, anon_sym_CARET, - anon_sym_STAR_STAR, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(652), 11, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, @@ -34285,58 +32964,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + ACTIONS(654), 12, + anon_sym_BEGIN, + anon_sym_END, + anon_sym_BEGINFILE, + anon_sym_ENDFILE, + anon_sym_getline, anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, + anon_sym_EQ, anon_sym_AT, sym_identifier, aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [11172] = 3, - ACTIONS(794), 2, + anon_sym_function, + anon_sym_func, + ACTIONS(658), 24, sym_concatenating_space, - sym__if_else_separator, - ACTIONS(1023), 2, - anon_sym_CARET, - anon_sym_STAR_STAR, - ACTIONS(792), 52, + ts_builtin_sym_end, anon_sym_COMMA, + anon_sym_ATinclude, + anon_sym_ATload, + anon_sym_ATnamespace, anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_in, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, + anon_sym_RPAREN, anon_sym_LBRACE, - anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_DOLLAR, + anon_sym_RBRACK, + aux_sym_number_token2, + anon_sym_DQUOTE, + anon_sym_POUND, + [9464] = 5, + ACTIONS(1017), 1, + sym_identifier, + STATE(2062), 1, + sym_namespace, + STATE(300), 2, + sym_array_ref, + sym_ns_qualified_name, + ACTIONS(726), 21, + anon_sym_BEGIN, + anon_sym_END, + anon_sym_BEGINFILE, + anon_sym_ENDFILE, + anon_sym_in, anon_sym_getline, anon_sym_LT, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, anon_sym_GT, - anon_sym_GT_GT, anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, + anon_sym_CARET, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_PLUS, anon_sym_DASH, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_AT, + aux_sym_number_token1, + anon_sym_function, + anon_sym_func, + ACTIONS(728), 31, + sym_concatenating_space, + ts_builtin_sym_end, + anon_sym_COMMA, + anon_sym_ATinclude, + anon_sym_ATload, + anon_sym_ATnamespace, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, @@ -34345,21 +33052,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_BANG, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [11235] = 2, - ACTIONS(794), 2, - sym_concatenating_space, - sym__if_else_separator, - ACTIONS(792), 54, + [9531] = 4, + ACTIONS(650), 1, + anon_sym_COLON_COLON, + ACTIONS(1019), 1, + anon_sym_LT, + ACTIONS(1021), 1, + anon_sym_LBRACK, + ACTIONS(688), 53, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -34379,7 +33091,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_getline, - anon_sym_LT, sym_next_statement, sym_nextfile_statement, anon_sym_print, @@ -34414,11 +33125,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [11296] = 2, - ACTIONS(786), 2, + [9596] = 2, + ACTIONS(680), 1, sym_concatenating_space, - sym__if_else_separator, - ACTIONS(784), 54, + ACTIONS(678), 55, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -34467,27 +33177,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_DOLLAR, + anon_sym_LBRACK, anon_sym_AT, sym_identifier, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [11357] = 5, - ACTIONS(794), 2, + [9657] = 2, + ACTIONS(778), 2, sym_concatenating_space, sym__if_else_separator, - ACTIONS(1023), 2, - anon_sym_CARET, - anon_sym_STAR_STAR, - ACTIONS(1027), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1025), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(792), 47, + ACTIONS(776), 54, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -34517,6 +33218,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PIPE_AMP, anon_sym_QMARK, + anon_sym_CARET, + anon_sym_STAR_STAR, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, @@ -34535,11 +33243,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [11424] = 2, - ACTIONS(778), 2, + [9718] = 2, + ACTIONS(722), 1, sym_concatenating_space, - sym__if_else_separator, - ACTIONS(776), 54, + ACTIONS(720), 55, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -34588,18 +33295,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_DOLLAR, + anon_sym_LBRACK, anon_sym_AT, sym_identifier, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [11485] = 3, - ACTIONS(652), 1, - anon_sym_COLON_COLON, - ACTIONS(1017), 1, - anon_sym_LBRACK, - ACTIONS(682), 54, + [9779] = 5, + ACTIONS(778), 2, + sym_concatenating_space, + sym__if_else_separator, + ACTIONS(1023), 2, + anon_sym_CARET, + anon_sym_STAR_STAR, + ACTIONS(1027), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1025), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(776), 47, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -34629,13 +33346,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PIPE_AMP, anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, @@ -34654,50 +33364,108 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [11548] = 7, - ACTIONS(1051), 1, - sym_identifier, - ACTIONS(1053), 1, - anon_sym_LT, - STATE(296), 1, - sym_array_ref, - STATE(463), 1, - sym_ns_qualified_name, - STATE(2057), 1, - sym_namespace, - ACTIONS(712), 20, - anon_sym_BEGIN, - anon_sym_END, - anon_sym_BEGINFILE, - anon_sym_ENDFILE, + [9846] = 3, + ACTIONS(778), 2, + sym_concatenating_space, + sym__if_else_separator, + ACTIONS(1023), 2, + anon_sym_CARET, + anon_sym_STAR_STAR, + ACTIONS(776), 52, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_if, + anon_sym_LPAREN, + anon_sym_while, + anon_sym_do, + anon_sym_for, anon_sym_in, + sym_break_statement, + sym_continue_statement, + anon_sym_delete, + anon_sym_exit, + anon_sym_return, + anon_sym_switch, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_getline, + anon_sym_LT, + sym_next_statement, + sym_nextfile_statement, + anon_sym_print, + anon_sym_printf, anon_sym_GT, + anon_sym_GT_GT, anon_sym_PIPE, - anon_sym_CARET, + anon_sym_PIPE_AMP, + anon_sym_QMARK, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_PLUS, anon_sym_DASH, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_BANG, - anon_sym_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_DOLLAR, anon_sym_AT, + sym_identifier, aux_sym_number_token1, - anon_sym_function, - anon_sym_func, - ACTIONS(714), 31, + aux_sym_number_token2, + anon_sym_DQUOTE, + anon_sym_POUND, + [9909] = 3, + ACTIONS(652), 1, + sym__if_else_separator, + ACTIONS(718), 1, sym_concatenating_space, - ts_builtin_sym_end, + ACTIONS(642), 54, anon_sym_COMMA, - anon_sym_ATinclude, - anon_sym_ATload, - anon_sym_ATnamespace, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_if, anon_sym_LPAREN, + anon_sym_while, + anon_sym_do, + anon_sym_for, + anon_sym_in, + sym_break_statement, + sym_continue_statement, + anon_sym_delete, + anon_sym_exit, + anon_sym_return, + anon_sym_switch, anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_getline, + anon_sym_LT, + sym_next_statement, + sym_nextfile_statement, + anon_sym_print, + anon_sym_printf, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_PIPE, anon_sym_PIPE_AMP, anon_sym_QMARK, + anon_sym_CARET, anon_sym_STAR_STAR, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, @@ -34706,22 +33474,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_BANG, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, anon_sym_DOLLAR, + anon_sym_AT, + sym_identifier, + aux_sym_number_token1, aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [11619] = 2, - ACTIONS(692), 1, + [9972] = 3, + ACTIONS(830), 1, sym_concatenating_space, - ACTIONS(690), 55, + ACTIONS(1029), 1, + sym_regex_flags, + ACTIONS(826), 54, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -34770,18 +33538,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_DOLLAR, - anon_sym_LBRACK, anon_sym_AT, sym_identifier, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [11680] = 2, - ACTIONS(774), 2, + [10035] = 3, + ACTIONS(836), 1, sym_concatenating_space, - sym__if_else_separator, - ACTIONS(772), 54, + ACTIONS(1031), 1, + sym_regex_flags, + ACTIONS(832), 54, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -34836,8 +33604,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [11741] = 7, - ACTIONS(852), 2, + [10098] = 9, + ACTIONS(1033), 1, + anon_sym_in, + ACTIONS(1039), 1, + anon_sym_AMP_AMP, + ACTIONS(778), 2, sym_concatenating_space, sym__if_else_separator, ACTIONS(1023), 2, @@ -34846,21 +33618,21 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1027), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1029), 2, + ACTIONS(1037), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, ACTIONS(1025), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1021), 6, + ACTIONS(1035), 6, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(840), 39, + ACTIONS(776), 37, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -34870,7 +33642,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_for, - anon_sym_in, sym_break_statement, sym_continue_statement, anon_sym_delete, @@ -34888,7 +33659,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PIPE_AMP, anon_sym_QMARK, - anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_BANG, anon_sym_PLUS_PLUS, @@ -34900,10 +33670,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [11812] = 2, - ACTIONS(724), 1, + [10173] = 4, + ACTIONS(778), 2, sym_concatenating_space, - ACTIONS(722), 55, + sym__if_else_separator, + ACTIONS(1023), 2, + anon_sym_CARET, + anon_sym_STAR_STAR, + ACTIONS(1025), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(776), 49, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -34933,11 +33711,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PIPE_AMP, anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PLUS, anon_sym_DASH, anon_sym_LT_EQ, @@ -34952,19 +33725,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_DOLLAR, - anon_sym_LBRACK, anon_sym_AT, sym_identifier, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [11873] = 3, - ACTIONS(830), 1, + [10238] = 6, + ACTIONS(778), 2, + sym_concatenating_space, sym__if_else_separator, - ACTIONS(1055), 1, - sym_regex_flags, - ACTIONS(826), 54, + ACTIONS(1023), 2, + anon_sym_CARET, + anon_sym_STAR_STAR, + ACTIONS(1027), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1025), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1035), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(776), 41, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -34984,27 +33772,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_getline, - anon_sym_LT, sym_next_statement, sym_nextfile_statement, anon_sym_print, anon_sym_printf, - anon_sym_GT, anon_sym_GT_GT, anon_sym_PIPE, anon_sym_PIPE_AMP, anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, anon_sym_TILDE, anon_sym_BANG_TILDE, anon_sym_AMP_AMP, @@ -35019,14 +33794,38 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [11936] = 3, - ACTIONS(654), 2, - sym_concatenating_space, + [10307] = 3, + ACTIONS(690), 1, sym__if_else_separator, - ACTIONS(644), 21, + ACTIONS(1009), 1, + anon_sym_LBRACK, + ACTIONS(688), 54, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_if, + anon_sym_LPAREN, + anon_sym_while, + anon_sym_do, + anon_sym_for, anon_sym_in, + sym_break_statement, + sym_continue_statement, + anon_sym_delete, + anon_sym_exit, + anon_sym_return, + anon_sym_switch, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_getline, anon_sym_LT, + sym_next_statement, + sym_nextfile_statement, + anon_sym_print, + anon_sym_printf, anon_sym_GT, + anon_sym_GT_GT, anon_sym_PIPE, anon_sym_PIPE_AMP, anon_sym_QMARK, @@ -35045,7 +33844,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - ACTIONS(642), 33, + anon_sym_BANG, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_DOLLAR, + anon_sym_AT, + sym_identifier, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DQUOTE, + anon_sym_POUND, + [10370] = 4, + ACTIONS(690), 1, + sym__if_else_separator, + ACTIONS(1009), 1, + anon_sym_LBRACK, + ACTIONS(1015), 1, + anon_sym_LT, + ACTIONS(688), 53, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -35055,6 +33871,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_for, + anon_sym_in, sym_break_statement, sym_continue_statement, anon_sym_delete, @@ -35068,7 +33885,26 @@ static const uint16_t ts_small_parse_table[] = { sym_nextfile_statement, anon_sym_print, anon_sym_printf, + anon_sym_GT, anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_CARET, + anon_sym_STAR_STAR, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_BANG, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -35079,12 +33915,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [11999] = 3, - ACTIONS(680), 1, + [10435] = 2, + ACTIONS(818), 2, sym_concatenating_space, - ACTIONS(1005), 1, - anon_sym_LBRACK, - ACTIONS(678), 54, + sym__if_else_separator, + ACTIONS(816), 54, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -35139,14 +33974,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [12062] = 4, - ACTIONS(680), 1, - sym_concatenating_space, - ACTIONS(1003), 1, - anon_sym_LT, - ACTIONS(1005), 1, + [10496] = 3, + ACTIONS(694), 1, + sym__if_else_separator, + ACTIONS(1009), 1, anon_sym_LBRACK, - ACTIONS(678), 53, + ACTIONS(692), 54, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -35166,6 +33999,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_getline, + anon_sym_LT, sym_next_statement, sym_nextfile_statement, anon_sym_print, @@ -35200,12 +34034,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [12127] = 3, - ACTIONS(684), 1, + [10559] = 2, + ACTIONS(782), 2, sym_concatenating_space, - ACTIONS(1005), 1, - anon_sym_LBRACK, - ACTIONS(682), 54, + sym__if_else_separator, + ACTIONS(780), 54, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -35260,11 +34093,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [12190] = 2, - ACTIONS(802), 2, + [10620] = 2, + ACTIONS(766), 2, sym_concatenating_space, sym__if_else_separator, - ACTIONS(800), 54, + ACTIONS(764), 54, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -35319,50 +34152,26 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [12251] = 9, - ACTIONS(652), 1, + [10681] = 8, + ACTIONS(650), 1, anon_sym_COLON_COLON, ACTIONS(908), 1, anon_sym_LBRACK, - ACTIONS(1039), 1, + ACTIONS(1041), 1, anon_sym_LPAREN2, - ACTIONS(1059), 1, + ACTIONS(1045), 1, anon_sym_EQ, - ACTIONS(1063), 1, - sym_concatenating_space, - ACTIONS(1057), 2, + ACTIONS(1043), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1061), 6, + ACTIONS(1047), 6, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_CARET_EQ, - ACTIONS(658), 21, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_ATinclude, - anon_sym_ATload, - anon_sym_ATnamespace, - anon_sym_LBRACE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_DOLLAR, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - ACTIONS(644), 22, + ACTIONS(642), 22, anon_sym_BEGIN, anon_sym_END, anon_sym_BEGINFILE, @@ -35385,11 +34194,34 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, anon_sym_function, anon_sym_func, - [12326] = 2, - ACTIONS(814), 2, + ACTIONS(652), 22, + sym_concatenating_space, + ts_builtin_sym_end, + anon_sym_COMMA, + anon_sym_ATinclude, + anon_sym_ATload, + anon_sym_ATnamespace, + anon_sym_LBRACE, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_DOLLAR, + aux_sym_number_token2, + anon_sym_DQUOTE, + anon_sym_POUND, + [10754] = 2, + ACTIONS(774), 2, sym_concatenating_space, sym__if_else_separator, - ACTIONS(812), 54, + ACTIONS(772), 54, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -35444,12 +34276,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [12387] = 3, - ACTIONS(830), 1, + [10815] = 2, + ACTIONS(770), 2, sym_concatenating_space, - ACTIONS(1065), 1, - sym_regex_flags, - ACTIONS(826), 54, + sym__if_else_separator, + ACTIONS(768), 54, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -35504,11 +34335,85 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [12450] = 2, - ACTIONS(822), 2, + [10876] = 7, + ACTIONS(1049), 1, + sym_identifier, + ACTIONS(1051), 1, + anon_sym_LT, + STATE(300), 1, + sym_array_ref, + STATE(470), 1, + sym_ns_qualified_name, + STATE(2062), 1, + sym_namespace, + ACTIONS(726), 20, + anon_sym_BEGIN, + anon_sym_END, + anon_sym_BEGINFILE, + anon_sym_ENDFILE, + anon_sym_in, + anon_sym_getline, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_AT, + aux_sym_number_token1, + anon_sym_function, + anon_sym_func, + ACTIONS(728), 31, + sym_concatenating_space, + ts_builtin_sym_end, + anon_sym_COMMA, + anon_sym_ATinclude, + anon_sym_ATload, + anon_sym_ATnamespace, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_DOLLAR, + aux_sym_number_token2, + anon_sym_DQUOTE, + anon_sym_POUND, + [10947] = 5, + ACTIONS(874), 2, sym_concatenating_space, sym__if_else_separator, - ACTIONS(820), 54, + ACTIONS(1023), 2, + anon_sym_CARET, + anon_sym_STAR_STAR, + ACTIONS(1027), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1025), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(872), 47, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -35538,13 +34443,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PIPE_AMP, anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, @@ -35563,11 +34461,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [12511] = 2, - ACTIONS(782), 2, + [11014] = 2, + ACTIONS(814), 2, sym_concatenating_space, sym__if_else_separator, - ACTIONS(780), 54, + ACTIONS(812), 54, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -35622,79 +34520,76 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [12572] = 10, - ACTIONS(652), 1, - anon_sym_COLON_COLON, - ACTIONS(732), 1, - anon_sym_EQ, - ACTIONS(908), 1, - anon_sym_LBRACK, - ACTIONS(1039), 1, - anon_sym_LPAREN2, - ACTIONS(910), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(989), 6, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - ACTIONS(644), 10, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, + [11075] = 7, + ACTIONS(882), 2, + sym_concatenating_space, + sym__if_else_separator, + ACTIONS(1023), 2, anon_sym_CARET, + anon_sym_STAR_STAR, + ACTIONS(1027), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1037), 2, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(1025), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(654), 11, - sym_concatenating_space, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_ATinclude, - anon_sym_ATload, - anon_sym_ATnamespace, - anon_sym_LBRACE, - anon_sym_DOLLAR, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - ACTIONS(658), 11, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_STAR_STAR, + ACTIONS(1035), 6, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(642), 12, - anon_sym_BEGIN, - anon_sym_END, - anon_sym_BEGINFILE, - anon_sym_ENDFILE, + ACTIONS(880), 39, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_if, anon_sym_LPAREN, + anon_sym_while, + anon_sym_do, + anon_sym_for, + anon_sym_in, + sym_break_statement, + sym_continue_statement, + anon_sym_delete, + anon_sym_exit, + anon_sym_return, + anon_sym_switch, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_getline, + sym_next_statement, + sym_nextfile_statement, + anon_sym_print, + anon_sym_printf, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_BANG, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_DOLLAR, anon_sym_AT, sym_identifier, aux_sym_number_token1, - anon_sym_function, - anon_sym_func, - [12649] = 3, - ACTIONS(836), 1, - sym_concatenating_space, - ACTIONS(1067), 1, - sym_regex_flags, - ACTIONS(832), 54, + aux_sym_number_token2, + anon_sym_DQUOTE, + anon_sym_POUND, + [11146] = 3, + ACTIONS(650), 1, + anon_sym_COLON_COLON, + ACTIONS(1021), 1, + anon_sym_LBRACK, + ACTIONS(692), 54, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -35749,48 +34644,47 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [12712] = 5, - ACTIONS(1069), 1, - sym_identifier, - STATE(2057), 1, - sym_namespace, - STATE(296), 2, - sym_array_ref, - sym_ns_qualified_name, - ACTIONS(712), 21, - anon_sym_BEGIN, - anon_sym_END, - anon_sym_BEGINFILE, - anon_sym_ENDFILE, + [11209] = 2, + ACTIONS(760), 2, + sym_concatenating_space, + sym__if_else_separator, + ACTIONS(758), 54, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_if, + anon_sym_LPAREN, + anon_sym_while, + anon_sym_do, + anon_sym_for, anon_sym_in, + sym_break_statement, + sym_continue_statement, + anon_sym_delete, + anon_sym_exit, + anon_sym_return, + anon_sym_switch, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_getline, anon_sym_LT, + sym_next_statement, + sym_nextfile_statement, + anon_sym_print, + anon_sym_printf, anon_sym_GT, + anon_sym_GT_GT, anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_QMARK, anon_sym_CARET, + anon_sym_STAR_STAR, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_PLUS, anon_sym_DASH, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_AT, - aux_sym_number_token1, - anon_sym_function, - anon_sym_func, - ACTIONS(714), 31, - sym_concatenating_space, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_ATinclude, - anon_sym_ATload, - anon_sym_ATnamespace, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, @@ -35799,30 +34693,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_BANG, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, anon_sym_DOLLAR, + anon_sym_AT, + sym_identifier, + aux_sym_number_token1, aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [12779] = 12, - ACTIONS(1019), 1, + [11270] = 8, + ACTIONS(1033), 1, anon_sym_in, - ACTIONS(1031), 1, - anon_sym_AMP_AMP, - ACTIONS(1035), 1, - anon_sym_QMARK, - ACTIONS(1037), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1073), 1, - anon_sym_COMMA, - ACTIONS(1075), 1, + ACTIONS(778), 2, + sym_concatenating_space, sym__if_else_separator, ACTIONS(1023), 2, anon_sym_CARET, @@ -35830,20 +34715,22 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1027), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1029), 2, + ACTIONS(1037), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, ACTIONS(1025), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1021), 5, + ACTIONS(1035), 6, anon_sym_LT, + anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1071), 35, + ACTIONS(776), 38, + anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, @@ -35865,10 +34752,12 @@ static const uint16_t ts_small_parse_table[] = { sym_nextfile_statement, anon_sym_print, anon_sym_printf, - anon_sym_GT, anon_sym_GT_GT, anon_sym_PIPE, anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_BANG, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -35879,20 +34768,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [12859] = 5, - ACTIONS(794), 1, + [11343] = 2, + ACTIONS(694), 2, sym_concatenating_space, - ACTIONS(1077), 2, - anon_sym_CARET, - anon_sym_STAR_STAR, - ACTIONS(1081), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1079), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(792), 47, + sym__if_else_separator, + ACTIONS(692), 54, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -35922,6 +34802,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PIPE_AMP, anon_sym_QMARK, + anon_sym_CARET, + anon_sym_STAR_STAR, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, @@ -35940,10 +34827,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [12925] = 2, - ACTIONS(778), 1, + [11404] = 3, + ACTIONS(694), 1, sym_concatenating_space, - ACTIONS(776), 54, + ACTIONS(1005), 1, + anon_sym_LBRACK, + ACTIONS(692), 54, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -35998,10 +34887,33 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [12985] = 2, - ACTIONS(752), 1, + [11467] = 3, + ACTIONS(658), 2, sym_concatenating_space, - ACTIONS(750), 54, + sym__if_else_separator, + ACTIONS(642), 21, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_CARET, + anon_sym_STAR_STAR, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(654), 33, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -36011,7 +34923,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_for, - anon_sym_in, sym_break_statement, sym_continue_statement, anon_sym_delete, @@ -36021,31 +34932,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_getline, - anon_sym_LT, sym_next_statement, sym_nextfile_statement, anon_sym_print, anon_sym_printf, - anon_sym_GT, anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_BANG, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -36056,47 +34947,47 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [13045] = 5, - ACTIONS(652), 1, - anon_sym_COLON_COLON, - ACTIONS(908), 1, - anon_sym_LBRACK, - ACTIONS(1083), 1, - anon_sym_LT, - ACTIONS(678), 21, - anon_sym_BEGIN, - anon_sym_END, - anon_sym_BEGINFILE, - anon_sym_ENDFILE, + [11530] = 2, + ACTIONS(756), 2, + sym_concatenating_space, + sym__if_else_separator, + ACTIONS(754), 54, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_if, + anon_sym_LPAREN, + anon_sym_while, + anon_sym_do, + anon_sym_for, anon_sym_in, + sym_break_statement, + sym_continue_statement, + anon_sym_delete, + anon_sym_exit, + anon_sym_return, + anon_sym_switch, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_getline, + anon_sym_LT, + sym_next_statement, + sym_nextfile_statement, + anon_sym_print, + anon_sym_printf, anon_sym_GT, + anon_sym_GT_GT, anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_QMARK, anon_sym_CARET, + anon_sym_STAR_STAR, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_PLUS, anon_sym_DASH, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - anon_sym_function, - anon_sym_func, - ACTIONS(680), 31, - sym_concatenating_space, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_ATinclude, - anon_sym_ATload, - anon_sym_ATnamespace, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, @@ -36105,22 +34996,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_BANG, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, anon_sym_DOLLAR, + anon_sym_AT, + sym_identifier, + aux_sym_number_token1, aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [13111] = 2, - ACTIONS(770), 1, - sym__if_else_separator, - ACTIONS(768), 54, + [11591] = 4, + ACTIONS(690), 1, + sym_concatenating_space, + ACTIONS(1003), 1, + anon_sym_LT, + ACTIONS(1005), 1, + anon_sym_LBRACK, + ACTIONS(688), 53, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -36140,7 +35033,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_getline, - anon_sym_LT, sym_next_statement, sym_nextfile_statement, anon_sym_print, @@ -36175,10 +35067,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [13171] = 2, - ACTIONS(814), 1, + [11656] = 3, + ACTIONS(690), 1, sym_concatenating_space, - ACTIONS(812), 54, + ACTIONS(1005), 1, + anon_sym_LBRACK, + ACTIONS(688), 54, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -36233,10 +35127,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [13231] = 2, - ACTIONS(762), 1, - sym__if_else_separator, - ACTIONS(760), 54, + [11719] = 3, + ACTIONS(650), 1, + anon_sym_COLON_COLON, + ACTIONS(1021), 1, + anon_sym_LBRACK, + ACTIONS(688), 54, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -36291,10 +35187,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [13291] = 2, - ACTIONS(782), 1, + [11782] = 2, + ACTIONS(752), 2, sym_concatenating_space, - ACTIONS(780), 54, + sym__if_else_separator, + ACTIONS(750), 54, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -36349,18 +35246,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [13351] = 12, - ACTIONS(1019), 1, + [11843] = 11, + ACTIONS(1033), 1, anon_sym_in, - ACTIONS(1031), 1, + ACTIONS(1039), 1, anon_sym_AMP_AMP, - ACTIONS(1035), 1, + ACTIONS(1053), 1, anon_sym_QMARK, - ACTIONS(1037), 1, + ACTIONS(1055), 1, anon_sym_PIPE_PIPE, - ACTIONS(1073), 1, - anon_sym_COMMA, - ACTIONS(1087), 1, + ACTIONS(878), 2, + sym_concatenating_space, sym__if_else_separator, ACTIONS(1023), 2, anon_sym_CARET, @@ -36368,21 +35264,22 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1027), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1029), 2, + ACTIONS(1037), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, ACTIONS(1025), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1021), 6, + ACTIONS(1035), 6, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1085), 34, + ACTIONS(876), 35, + anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, @@ -36417,47 +35314,34 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [13431] = 9, - ACTIONS(732), 1, - anon_sym_EQ, + [11922] = 9, + ACTIONS(650), 1, + anon_sym_COLON_COLON, ACTIONS(908), 1, anon_sym_LBRACK, - ACTIONS(1039), 1, + ACTIONS(1041), 1, anon_sym_LPAREN2, - ACTIONS(910), 2, + ACTIONS(1059), 1, + anon_sym_EQ, + ACTIONS(1063), 1, + sym_concatenating_space, + ACTIONS(1057), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(989), 6, + ACTIONS(1061), 6, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_CARET_EQ, - ACTIONS(644), 10, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(654), 11, - sym_concatenating_space, + ACTIONS(652), 21, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_ATinclude, anon_sym_ATload, anon_sym_ATnamespace, anon_sym_LBRACE, - anon_sym_DOLLAR, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - ACTIONS(658), 11, anon_sym_PIPE_AMP, anon_sym_QMARK, anon_sym_STAR_STAR, @@ -36469,23 +35353,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - ACTIONS(642), 12, + anon_sym_DOLLAR, + aux_sym_number_token2, + anon_sym_DQUOTE, + anon_sym_POUND, + ACTIONS(642), 22, anon_sym_BEGIN, anon_sym_END, anon_sym_BEGINFILE, anon_sym_ENDFILE, anon_sym_LPAREN, + anon_sym_in, anon_sym_getline, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_BANG, anon_sym_AT, sym_identifier, aux_sym_number_token1, anon_sym_function, anon_sym_func, - [13505] = 2, - ACTIONS(786), 1, + [11997] = 2, + ACTIONS(748), 2, sym_concatenating_space, - ACTIONS(784), 54, + sym__if_else_separator, + ACTIONS(746), 54, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -36540,10 +35439,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [13565] = 2, - ACTIONS(802), 1, + [12058] = 2, + ACTIONS(792), 2, sym_concatenating_space, - ACTIONS(800), 54, + sym__if_else_separator, + ACTIONS(790), 54, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -36598,38 +35498,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [13625] = 11, - ACTIONS(878), 1, + [12119] = 2, + ACTIONS(740), 2, sym_concatenating_space, - ACTIONS(1089), 1, - anon_sym_in, - ACTIONS(1093), 1, - anon_sym_QMARK, - ACTIONS(1097), 1, - anon_sym_AMP_AMP, - ACTIONS(1099), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1077), 2, - anon_sym_CARET, - anon_sym_STAR_STAR, - ACTIONS(1081), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1095), 2, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(1079), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1091), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(876), 35, + sym__if_else_separator, + ACTIONS(738), 54, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -36639,6 +35512,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_for, + anon_sym_in, sym_break_statement, sym_continue_statement, anon_sym_delete, @@ -36648,74 +35522,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_getline, + anon_sym_LT, sym_next_statement, sym_nextfile_statement, anon_sym_print, anon_sym_printf, + anon_sym_GT, anon_sym_GT_GT, anon_sym_PIPE, anon_sym_PIPE_AMP, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [13703] = 7, - ACTIONS(870), 1, - sym_concatenating_space, - ACTIONS(1077), 2, + anon_sym_QMARK, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(1081), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1095), 2, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(1079), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1091), 6, - anon_sym_LT, - anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(868), 39, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_in, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_getline, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, + anon_sym_TILDE, + anon_sym_BANG_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_BANG, @@ -36728,10 +35557,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [13773] = 2, - ACTIONS(762), 1, - sym_concatenating_space, - ACTIONS(760), 54, + [12180] = 3, + ACTIONS(830), 1, + sym__if_else_separator, + ACTIONS(1065), 1, + sym_regex_flags, + ACTIONS(826), 54, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -36786,98 +35617,42 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [13833] = 8, - ACTIONS(908), 1, - anon_sym_LBRACK, + [12243] = 12, + ACTIONS(1033), 1, + anon_sym_in, ACTIONS(1039), 1, - anon_sym_LPAREN2, - ACTIONS(1059), 1, - anon_sym_EQ, - ACTIONS(1063), 1, - sym_concatenating_space, - ACTIONS(1057), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1061), 6, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - ACTIONS(658), 21, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_ATinclude, - anon_sym_ATload, - anon_sym_ATnamespace, - anon_sym_LBRACE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, anon_sym_AMP_AMP, + ACTIONS(1053), 1, + anon_sym_QMARK, + ACTIONS(1055), 1, anon_sym_PIPE_PIPE, - anon_sym_DOLLAR, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - ACTIONS(644), 22, - anon_sym_BEGIN, - anon_sym_END, - anon_sym_BEGINFILE, - anon_sym_ENDFILE, - anon_sym_LPAREN, - anon_sym_in, - anon_sym_getline, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - anon_sym_function, - anon_sym_func, - [13905] = 9, - ACTIONS(794), 1, + ACTIONS(864), 2, sym_concatenating_space, - ACTIONS(1089), 1, - anon_sym_in, - ACTIONS(1097), 1, - anon_sym_AMP_AMP, - ACTIONS(1077), 2, + sym__if_else_separator, + ACTIONS(1023), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(1081), 2, + ACTIONS(1027), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1095), 2, + ACTIONS(1037), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(1079), 3, + ACTIONS(1067), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(1025), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1091), 6, + ACTIONS(1035), 6, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(792), 37, + ACTIONS(848), 33, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -36901,10 +35676,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_print, anon_sym_printf, anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_PIPE_PIPE, anon_sym_BANG, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -36915,32 +35686,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [13979] = 8, - ACTIONS(794), 1, + [12324] = 2, + ACTIONS(744), 2, sym_concatenating_space, - ACTIONS(1089), 1, - anon_sym_in, - ACTIONS(1077), 2, - anon_sym_CARET, - anon_sym_STAR_STAR, - ACTIONS(1081), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1095), 2, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(1079), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1091), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(792), 38, + sym__if_else_separator, + ACTIONS(742), 54, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -36950,6 +35700,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_for, + anon_sym_in, sym_break_statement, sym_continue_statement, anon_sym_delete, @@ -36959,74 +35710,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_getline, + anon_sym_LT, sym_next_statement, sym_nextfile_statement, anon_sym_print, anon_sym_printf, + anon_sym_GT, anon_sym_GT_GT, anon_sym_PIPE, anon_sym_PIPE_AMP, anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [14051] = 6, - ACTIONS(794), 1, - sym_concatenating_space, - ACTIONS(1077), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(1081), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1079), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1091), 6, - anon_sym_LT, - anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(792), 41, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_in, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_getline, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, anon_sym_TILDE, anon_sym_BANG_TILDE, anon_sym_AMP_AMP, @@ -37041,17 +35745,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [14119] = 4, - ACTIONS(794), 1, + [12385] = 2, + ACTIONS(788), 2, sym_concatenating_space, - ACTIONS(1077), 2, - anon_sym_CARET, - anon_sym_STAR_STAR, - ACTIONS(1079), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(792), 49, + sym__if_else_separator, + ACTIONS(786), 54, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -37081,6 +35779,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PIPE_AMP, anon_sym_QMARK, + anon_sym_CARET, + anon_sym_STAR_STAR, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PLUS, anon_sym_DASH, anon_sym_LT_EQ, @@ -37101,47 +35804,40 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [14183] = 3, - ACTIONS(794), 1, - sym_concatenating_space, - ACTIONS(1077), 2, - anon_sym_CARET, - anon_sym_STAR_STAR, - ACTIONS(792), 52, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, + [12446] = 10, + ACTIONS(650), 1, + anon_sym_COLON_COLON, + ACTIONS(696), 1, + anon_sym_EQ, + ACTIONS(908), 1, + anon_sym_LBRACK, + ACTIONS(1041), 1, + anon_sym_LPAREN2, + ACTIONS(906), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(983), 6, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + ACTIONS(642), 10, anon_sym_in, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_getline, anon_sym_LT, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, anon_sym_GT, - anon_sym_GT_GT, anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, + anon_sym_CARET, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(652), 11, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, @@ -37150,20 +35846,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(658), 11, + sym_concatenating_space, + ts_builtin_sym_end, + anon_sym_COMMA, + anon_sym_ATinclude, + anon_sym_ATload, + anon_sym_ATnamespace, + anon_sym_LBRACE, anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [14245] = 2, - ACTIONS(794), 1, + ACTIONS(654), 12, + anon_sym_BEGIN, + anon_sym_END, + anon_sym_BEGINFILE, + anon_sym_ENDFILE, + anon_sym_LPAREN, + anon_sym_getline, + anon_sym_BANG, + anon_sym_AT, + sym_identifier, + aux_sym_number_token1, + anon_sym_function, + anon_sym_func, + [12523] = 2, + ACTIONS(800), 2, sym_concatenating_space, - ACTIONS(792), 54, + sym__if_else_separator, + ACTIONS(798), 54, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -37218,30 +35930,31 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [14305] = 7, - ACTIONS(852), 1, + [12584] = 7, + ACTIONS(870), 2, sym_concatenating_space, - ACTIONS(1077), 2, + sym__if_else_separator, + ACTIONS(1023), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(1081), 2, + ACTIONS(1027), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1095), 2, + ACTIONS(1037), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(1079), 3, + ACTIONS(1025), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1091), 6, + ACTIONS(1035), 6, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(840), 39, + ACTIONS(868), 39, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -37281,10 +35994,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [14375] = 2, - ACTIONS(770), 1, + [12655] = 2, + ACTIONS(796), 2, sym_concatenating_space, - ACTIONS(768), 54, + sym__if_else_separator, + ACTIONS(794), 54, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -37339,41 +36053,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [14435] = 12, - ACTIONS(866), 1, - sym_concatenating_space, - ACTIONS(1089), 1, - anon_sym_in, - ACTIONS(1093), 1, - anon_sym_QMARK, - ACTIONS(1097), 1, - anon_sym_AMP_AMP, - ACTIONS(1099), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1077), 2, - anon_sym_CARET, - anon_sym_STAR_STAR, - ACTIONS(1081), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1095), 2, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(1101), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(1079), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1091), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(854), 33, + [12716] = 3, + ACTIONS(836), 1, + sym__if_else_separator, + ACTIONS(1069), 1, + sym_regex_flags, + ACTIONS(832), 54, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -37383,6 +36068,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_for, + anon_sym_in, sym_break_statement, sym_continue_statement, anon_sym_delete, @@ -37392,11 +36078,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_getline, + anon_sym_LT, sym_next_statement, sym_nextfile_statement, anon_sym_print, anon_sym_printf, + anon_sym_GT, anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_CARET, + anon_sym_STAR_STAR, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_BANG, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -37407,33 +36113,40 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [14515] = 3, - ACTIONS(654), 1, - sym_concatenating_space, - ACTIONS(644), 21, + [12779] = 12, + ACTIONS(1033), 1, anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, + ACTIONS(1039), 1, + anon_sym_AMP_AMP, + ACTIONS(1053), 1, anon_sym_QMARK, + ACTIONS(1055), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1073), 1, + anon_sym_COMMA, + ACTIONS(1075), 1, + sym__if_else_separator, + ACTIONS(1023), 2, anon_sym_CARET, anon_sym_STAR_STAR, + ACTIONS(1027), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1037), 2, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(1025), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(1035), 6, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(642), 33, - anon_sym_COMMA, + ACTIONS(1071), 34, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, @@ -37456,6 +36169,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_print, anon_sym_printf, anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, anon_sym_BANG, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -37466,10 +36181,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [14577] = 2, - ACTIONS(798), 1, + [12859] = 2, + ACTIONS(814), 1, sym_concatenating_space, - ACTIONS(796), 54, + ACTIONS(812), 54, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -37524,10 +36239,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [14637] = 2, - ACTIONS(748), 1, + [12919] = 5, + ACTIONS(874), 1, sym_concatenating_space, - ACTIONS(746), 54, + ACTIONS(1077), 2, + anon_sym_CARET, + anon_sym_STAR_STAR, + ACTIONS(1081), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1079), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(872), 47, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -37557,13 +36282,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PIPE_AMP, anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, @@ -37582,10 +36300,34 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [14697] = 2, - ACTIONS(1103), 1, - sym_regex_flags, - ACTIONS(826), 54, + [12985] = 9, + ACTIONS(778), 1, + sym_concatenating_space, + ACTIONS(1083), 1, + anon_sym_in, + ACTIONS(1089), 1, + anon_sym_AMP_AMP, + ACTIONS(1077), 2, + anon_sym_CARET, + anon_sym_STAR_STAR, + ACTIONS(1081), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1087), 2, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(1079), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1085), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(776), 37, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -37595,7 +36337,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_for, - anon_sym_in, sym_break_statement, sym_continue_statement, anon_sym_delete, @@ -37605,23 +36346,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_getline, - anon_sym_LT, sym_next_statement, sym_nextfile_statement, anon_sym_print, anon_sym_printf, - anon_sym_GT, anon_sym_GT_GT, anon_sym_PIPE, anon_sym_PIPE_AMP, anon_sym_QMARK, + anon_sym_PIPE_PIPE, + anon_sym_BANG, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_DOLLAR, + anon_sym_AT, + sym_identifier, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DQUOTE, + anon_sym_POUND, + [13059] = 9, + ACTIONS(696), 1, + anon_sym_EQ, + ACTIONS(908), 1, + anon_sym_LBRACK, + ACTIONS(1041), 1, + anon_sym_LPAREN2, + ACTIONS(906), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(983), 6, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + ACTIONS(642), 10, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, anon_sym_CARET, - anon_sym_STAR_STAR, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(652), 11, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, @@ -37630,20 +36405,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(658), 11, + sym_concatenating_space, + ts_builtin_sym_end, + anon_sym_COMMA, + anon_sym_ATinclude, + anon_sym_ATload, + anon_sym_ATnamespace, + anon_sym_LBRACE, anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [14757] = 2, - ACTIONS(810), 1, + ACTIONS(654), 12, + anon_sym_BEGIN, + anon_sym_END, + anon_sym_BEGINFILE, + anon_sym_ENDFILE, + anon_sym_LPAREN, + anon_sym_getline, + anon_sym_BANG, + anon_sym_AT, + sym_identifier, + aux_sym_number_token1, + anon_sym_function, + anon_sym_func, + [13133] = 8, + ACTIONS(778), 1, sym_concatenating_space, - ACTIONS(808), 54, + ACTIONS(1083), 1, + anon_sym_in, + ACTIONS(1077), 2, + anon_sym_CARET, + anon_sym_STAR_STAR, + ACTIONS(1081), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1087), 2, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(1079), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1085), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(776), 38, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -37653,7 +36465,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_for, - anon_sym_in, sym_break_statement, sym_continue_statement, anon_sym_delete, @@ -37663,29 +36474,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_getline, - anon_sym_LT, sym_next_statement, sym_nextfile_statement, anon_sym_print, anon_sym_printf, - anon_sym_GT, anon_sym_GT_GT, anon_sym_PIPE, anon_sym_PIPE_AMP, anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_BANG, @@ -37698,10 +36494,27 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [14817] = 2, - ACTIONS(818), 1, + [13205] = 6, + ACTIONS(778), 1, sym_concatenating_space, - ACTIONS(816), 54, + ACTIONS(1077), 2, + anon_sym_CARET, + anon_sym_STAR_STAR, + ACTIONS(1081), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1079), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1085), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(776), 41, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -37721,27 +36534,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_getline, - anon_sym_LT, sym_next_statement, sym_nextfile_statement, anon_sym_print, anon_sym_printf, - anon_sym_GT, anon_sym_GT_GT, anon_sym_PIPE, anon_sym_PIPE_AMP, anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, anon_sym_TILDE, anon_sym_BANG_TILDE, anon_sym_AMP_AMP, @@ -37756,10 +36556,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [14877] = 2, - ACTIONS(822), 1, + [13273] = 4, + ACTIONS(778), 1, sym_concatenating_space, - ACTIONS(820), 54, + ACTIONS(1077), 2, + anon_sym_CARET, + anon_sym_STAR_STAR, + ACTIONS(1079), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(776), 49, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -37789,11 +36596,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PIPE_AMP, anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PLUS, anon_sym_DASH, anon_sym_LT_EQ, @@ -37814,10 +36616,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [14937] = 2, - ACTIONS(806), 1, + [13337] = 3, + ACTIONS(778), 1, sym_concatenating_space, - ACTIONS(804), 54, + ACTIONS(1077), 2, + anon_sym_CARET, + anon_sym_STAR_STAR, + ACTIONS(776), 52, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -37847,8 +36652,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PIPE_AMP, anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -37872,10 +36675,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [14997] = 2, - ACTIONS(684), 1, - sym__if_else_separator, - ACTIONS(682), 54, + [13399] = 2, + ACTIONS(1091), 1, + sym_regex_flags, + ACTIONS(832), 54, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -37930,10 +36733,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [15057] = 2, - ACTIONS(1017), 1, + [13459] = 3, + ACTIONS(1019), 1, + anon_sym_LT, + ACTIONS(1021), 1, anon_sym_LBRACK, - ACTIONS(682), 54, + ACTIONS(688), 53, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -37953,7 +36758,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_getline, - anon_sym_LT, sym_next_statement, sym_nextfile_statement, anon_sym_print, @@ -37988,20 +36792,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [15117] = 5, - ACTIONS(882), 1, - sym_concatenating_space, - ACTIONS(1077), 2, - anon_sym_CARET, - anon_sym_STAR_STAR, - ACTIONS(1081), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1079), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(880), 47, + [13521] = 2, + ACTIONS(782), 1, + sym__if_else_separator, + ACTIONS(780), 54, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -38031,6 +36825,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PIPE_AMP, anon_sym_QMARK, + anon_sym_CARET, + anon_sym_STAR_STAR, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, @@ -38049,10 +36850,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [15183] = 2, - ACTIONS(1105), 1, - sym_regex_flags, - ACTIONS(832), 54, + [13581] = 2, + ACTIONS(1021), 1, + anon_sym_LBRACK, + ACTIONS(688), 54, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -38107,10 +36908,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [15243] = 2, - ACTIONS(782), 1, + [13641] = 2, + ACTIONS(766), 1, sym__if_else_separator, - ACTIONS(780), 54, + ACTIONS(764), 54, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -38165,12 +36966,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [15303] = 3, - ACTIONS(1017), 1, - anon_sym_LBRACK, - ACTIONS(1033), 1, - anon_sym_LT, - ACTIONS(678), 53, + [13701] = 2, + ACTIONS(766), 1, + sym_concatenating_space, + ACTIONS(764), 54, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -38190,6 +36989,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_getline, + anon_sym_LT, sym_next_statement, sym_nextfile_statement, anon_sym_print, @@ -38224,10 +37024,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [15365] = 2, - ACTIONS(1017), 1, - anon_sym_LBRACK, - ACTIONS(678), 54, + [13761] = 2, + ACTIONS(788), 1, + sym__if_else_separator, + ACTIONS(786), 54, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -38282,10 +37082,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [15425] = 2, - ACTIONS(684), 1, + [13821] = 2, + ACTIONS(792), 1, sym_concatenating_space, - ACTIONS(682), 54, + ACTIONS(790), 54, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -38340,73 +37140,140 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [15485] = 7, - ACTIONS(908), 1, - anon_sym_LBRACK, - ACTIONS(1039), 1, - anon_sym_LPAREN2, - ACTIONS(1043), 1, - anon_sym_EQ, - ACTIONS(1041), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1045), 6, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - ACTIONS(644), 22, - anon_sym_BEGIN, - anon_sym_END, - anon_sym_BEGINFILE, - anon_sym_ENDFILE, - anon_sym_LPAREN, - anon_sym_in, - anon_sym_getline, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, + [13881] = 7, + ACTIONS(882), 1, + sym_concatenating_space, + ACTIONS(1077), 2, anon_sym_CARET, + anon_sym_STAR_STAR, + ACTIONS(1081), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1087), 2, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(1079), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(1085), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(880), 39, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_if, + anon_sym_LPAREN, + anon_sym_while, + anon_sym_do, + anon_sym_for, + anon_sym_in, + sym_break_statement, + sym_continue_statement, + anon_sym_delete, + anon_sym_exit, + anon_sym_return, + anon_sym_switch, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_getline, + sym_next_statement, + sym_nextfile_statement, + anon_sym_print, + anon_sym_printf, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_BANG, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_DOLLAR, anon_sym_AT, sym_identifier, aux_sym_number_token1, - anon_sym_function, - anon_sym_func, - ACTIONS(658), 22, + aux_sym_number_token2, + anon_sym_DQUOTE, + anon_sym_POUND, + [13951] = 11, + ACTIONS(878), 1, sym_concatenating_space, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_ATinclude, - anon_sym_ATload, - anon_sym_ATnamespace, - anon_sym_LBRACE, - anon_sym_PIPE_AMP, + ACTIONS(1083), 1, + anon_sym_in, + ACTIONS(1089), 1, + anon_sym_AMP_AMP, + ACTIONS(1093), 1, anon_sym_QMARK, + ACTIONS(1095), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1077), 2, + anon_sym_CARET, anon_sym_STAR_STAR, + ACTIONS(1081), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1087), 2, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(1079), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1085), 6, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(876), 35, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_if, + anon_sym_LPAREN, + anon_sym_while, + anon_sym_do, + anon_sym_for, + sym_break_statement, + sym_continue_statement, + anon_sym_delete, + anon_sym_exit, + anon_sym_return, + anon_sym_switch, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_getline, + sym_next_statement, + sym_nextfile_statement, + anon_sym_print, + anon_sym_printf, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_BANG, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_DOLLAR, + anon_sym_AT, + sym_identifier, + aux_sym_number_token1, aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [15555] = 2, - ACTIONS(790), 1, + [14029] = 2, + ACTIONS(778), 1, sym_concatenating_space, - ACTIONS(788), 54, + ACTIONS(776), 54, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -38461,10 +37328,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [15615] = 2, - ACTIONS(744), 1, + [14089] = 2, + ACTIONS(740), 1, sym_concatenating_space, - ACTIONS(644), 54, + ACTIONS(738), 54, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -38519,10 +37386,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [15675] = 2, - ACTIONS(774), 1, + [14149] = 2, + ACTIONS(760), 1, sym_concatenating_space, - ACTIONS(772), 54, + ACTIONS(758), 54, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -38577,10 +37444,73 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [15735] = 2, - ACTIONS(806), 1, - sym__if_else_separator, - ACTIONS(804), 54, + [14209] = 7, + ACTIONS(908), 1, + anon_sym_LBRACK, + ACTIONS(1041), 1, + anon_sym_LPAREN2, + ACTIONS(1045), 1, + anon_sym_EQ, + ACTIONS(1043), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1047), 6, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + ACTIONS(642), 22, + anon_sym_BEGIN, + anon_sym_END, + anon_sym_BEGINFILE, + anon_sym_ENDFILE, + anon_sym_LPAREN, + anon_sym_in, + anon_sym_getline, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_AT, + sym_identifier, + aux_sym_number_token1, + anon_sym_function, + anon_sym_func, + ACTIONS(652), 22, + sym_concatenating_space, + ts_builtin_sym_end, + anon_sym_COMMA, + anon_sym_ATinclude, + anon_sym_ATload, + anon_sym_ATnamespace, + anon_sym_LBRACE, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_DOLLAR, + aux_sym_number_token2, + anon_sym_DQUOTE, + anon_sym_POUND, + [14279] = 2, + ACTIONS(770), 1, + sym_concatenating_space, + ACTIONS(768), 54, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -38635,10 +37565,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [15795] = 2, - ACTIONS(818), 1, - sym__if_else_separator, - ACTIONS(816), 54, + [14339] = 2, + ACTIONS(824), 1, + sym_concatenating_space, + ACTIONS(642), 54, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -38693,10 +37623,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [15855] = 2, - ACTIONS(810), 1, + [14399] = 2, + ACTIONS(800), 1, sym__if_else_separator, - ACTIONS(808), 54, + ACTIONS(798), 54, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -38751,10 +37681,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [15915] = 2, - ACTIONS(748), 1, + [14459] = 2, + ACTIONS(796), 1, sym__if_else_separator, - ACTIONS(746), 54, + ACTIONS(794), 54, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -38809,10 +37739,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [15975] = 2, - ACTIONS(798), 1, + [14519] = 2, + ACTIONS(744), 1, sym__if_else_separator, - ACTIONS(796), 54, + ACTIONS(742), 54, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -38867,10 +37797,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [16035] = 2, - ACTIONS(752), 1, - sym__if_else_separator, - ACTIONS(750), 54, + [14579] = 5, + ACTIONS(778), 1, + sym_concatenating_space, + ACTIONS(1077), 2, + anon_sym_CARET, + anon_sym_STAR_STAR, + ACTIONS(1081), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1079), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(776), 47, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -38900,13 +37840,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PIPE_AMP, anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, @@ -38925,16 +37858,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [16095] = 12, - ACTIONS(866), 1, + [14645] = 12, + ACTIONS(864), 1, sym__if_else_separator, - ACTIONS(1019), 1, + ACTIONS(1033), 1, anon_sym_in, - ACTIONS(1031), 1, + ACTIONS(1039), 1, anon_sym_AMP_AMP, - ACTIONS(1035), 1, + ACTIONS(1053), 1, anon_sym_QMARK, - ACTIONS(1037), 1, + ACTIONS(1055), 1, anon_sym_PIPE_PIPE, ACTIONS(1023), 2, anon_sym_CARET, @@ -38942,24 +37875,24 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1027), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1029), 2, + ACTIONS(1037), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(1107), 2, + ACTIONS(1097), 2, anon_sym_PIPE, anon_sym_PIPE_AMP, ACTIONS(1025), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1021), 6, + ACTIONS(1035), 6, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(854), 33, + ACTIONS(848), 33, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -38993,46 +37926,35 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [16175] = 2, - ACTIONS(786), 1, - sym__if_else_separator, - ACTIONS(784), 54, + [14725] = 8, + ACTIONS(908), 1, + anon_sym_LBRACK, + ACTIONS(1041), 1, + anon_sym_LPAREN2, + ACTIONS(1059), 1, + anon_sym_EQ, + ACTIONS(1063), 1, + sym_concatenating_space, + ACTIONS(1057), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1061), 6, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + ACTIONS(652), 21, + ts_builtin_sym_end, anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_in, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, + anon_sym_ATinclude, + anon_sym_ATload, + anon_sym_ATnamespace, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_getline, - anon_sym_LT, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, anon_sym_PIPE_AMP, anon_sym_QMARK, - anon_sym_CARET, anon_sym_STAR_STAR, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, @@ -39041,20 +37963,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [16235] = 2, - ACTIONS(778), 1, + ACTIONS(642), 22, + anon_sym_BEGIN, + anon_sym_END, + anon_sym_BEGINFILE, + anon_sym_ENDFILE, + anon_sym_LPAREN, + anon_sym_in, + anon_sym_getline, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_AT, + sym_identifier, + aux_sym_number_token1, + anon_sym_function, + anon_sym_func, + [14797] = 2, + ACTIONS(740), 1, sym__if_else_separator, - ACTIONS(776), 54, + ACTIONS(738), 54, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -39109,8 +38048,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [16295] = 1, - ACTIONS(768), 54, + [14857] = 2, + ACTIONS(792), 1, + sym__if_else_separator, + ACTIONS(790), 54, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -39165,65 +38106,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [16352] = 2, - ACTIONS(690), 22, - anon_sym_BEGIN, - anon_sym_END, - anon_sym_BEGINFILE, - anon_sym_ENDFILE, - anon_sym_in, - anon_sym_getline, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - anon_sym_function, - anon_sym_func, - ACTIONS(692), 32, - sym_concatenating_space, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_ATinclude, - anon_sym_ATload, - anon_sym_ATnamespace, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_DOLLAR, - anon_sym_LBRACK, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [16411] = 1, - ACTIONS(750), 54, + [14917] = 2, + ACTIONS(748), 1, + sym__if_else_separator, + ACTIONS(746), 54, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -39278,8 +38164,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [16468] = 1, - ACTIONS(780), 54, + [14977] = 2, + ACTIONS(752), 1, + sym__if_else_separator, + ACTIONS(750), 54, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -39313,124 +38201,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [16525] = 3, - ACTIONS(1109), 1, - sym_regex_flags, - ACTIONS(832), 22, - anon_sym_BEGIN, - anon_sym_END, - anon_sym_BEGINFILE, - anon_sym_ENDFILE, - anon_sym_in, - anon_sym_getline, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - anon_sym_function, - anon_sym_func, - ACTIONS(836), 31, - sym_concatenating_space, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_ATinclude, - anon_sym_ATload, - anon_sym_ATnamespace, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_DOLLAR, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [16586] = 4, - ACTIONS(908), 1, - anon_sym_LBRACK, - ACTIONS(1083), 1, - anon_sym_LT, - ACTIONS(678), 21, - anon_sym_BEGIN, - anon_sym_END, - anon_sym_BEGINFILE, - anon_sym_ENDFILE, - anon_sym_in, - anon_sym_getline, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - anon_sym_function, - anon_sym_func, - ACTIONS(680), 31, - sym_concatenating_space, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_ATinclude, - anon_sym_ATload, - anon_sym_ATnamespace, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_STAR_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, @@ -39439,20 +38212,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_BANG, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, anon_sym_DOLLAR, + anon_sym_AT, + sym_identifier, + aux_sym_number_token1, aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [16649] = 1, - ACTIONS(776), 54, + [15037] = 2, + ACTIONS(756), 1, + sym__if_else_separator, + ACTIONS(754), 54, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -39507,39 +38280,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [16706] = 11, - ACTIONS(1089), 1, - anon_sym_in, - ACTIONS(1093), 1, - anon_sym_QMARK, - ACTIONS(1097), 1, - anon_sym_AMP_AMP, - ACTIONS(1099), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1077), 2, - anon_sym_CARET, - anon_sym_STAR_STAR, - ACTIONS(1081), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1095), 2, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(1111), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(1079), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1091), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(854), 33, + [15097] = 2, + ACTIONS(694), 1, + sym_concatenating_space, + ACTIONS(692), 54, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -39549,6 +38293,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_for, + anon_sym_in, sym_break_statement, sym_continue_statement, anon_sym_delete, @@ -39558,11 +38303,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_getline, + anon_sym_LT, sym_next_statement, sym_nextfile_statement, anon_sym_print, anon_sym_printf, + anon_sym_GT, anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_CARET, + anon_sym_STAR_STAR, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_BANG, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -39573,38 +38338,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [16783] = 11, - ACTIONS(1073), 1, + [15157] = 2, + ACTIONS(694), 1, + sym__if_else_separator, + ACTIONS(692), 54, anon_sym_COMMA, - ACTIONS(1089), 1, - anon_sym_in, - ACTIONS(1093), 1, - anon_sym_QMARK, - ACTIONS(1097), 1, - anon_sym_AMP_AMP, - ACTIONS(1099), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1077), 2, - anon_sym_CARET, - anon_sym_STAR_STAR, - ACTIONS(1081), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1095), 2, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(1079), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1091), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1085), 34, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, @@ -39613,6 +38351,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_for, + anon_sym_in, sym_break_statement, sym_continue_statement, anon_sym_delete, @@ -39622,61 +38361,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_getline, + anon_sym_LT, sym_next_statement, sym_nextfile_statement, anon_sym_print, anon_sym_printf, + anon_sym_GT, anon_sym_GT_GT, anon_sym_PIPE, anon_sym_PIPE_AMP, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [16860] = 3, - ACTIONS(1113), 1, - sym_regex_flags, - ACTIONS(826), 22, - anon_sym_BEGIN, - anon_sym_END, - anon_sym_BEGINFILE, - anon_sym_ENDFILE, - anon_sym_in, - anon_sym_getline, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, + anon_sym_QMARK, anon_sym_CARET, + anon_sym_STAR_STAR, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_PLUS, anon_sym_DASH, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - anon_sym_function, - anon_sym_func, - ACTIONS(830), 31, - sym_concatenating_space, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_ATinclude, - anon_sym_ATload, - anon_sym_ATnamespace, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, @@ -39685,20 +38386,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_BANG, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, anon_sym_DOLLAR, + anon_sym_AT, + sym_identifier, + aux_sym_number_token1, aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [16921] = 1, - ACTIONS(796), 54, + [15217] = 2, + ACTIONS(774), 1, + sym_concatenating_space, + ACTIONS(772), 54, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -39753,56 +38454,46 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [16978] = 7, - ACTIONS(908), 1, - anon_sym_LBRACK, - ACTIONS(1059), 1, - anon_sym_EQ, - ACTIONS(1063), 1, + [15277] = 2, + ACTIONS(756), 1, sym_concatenating_space, - ACTIONS(1057), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1061), 6, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - ACTIONS(644), 21, - anon_sym_BEGIN, - anon_sym_END, - anon_sym_BEGINFILE, - anon_sym_ENDFILE, + ACTIONS(754), 54, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_if, + anon_sym_LPAREN, + anon_sym_while, + anon_sym_do, + anon_sym_for, anon_sym_in, + sym_break_statement, + sym_continue_statement, + anon_sym_delete, + anon_sym_exit, + anon_sym_return, + anon_sym_switch, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_getline, anon_sym_LT, + sym_next_statement, + sym_nextfile_statement, + anon_sym_print, + anon_sym_printf, anon_sym_GT, + anon_sym_GT_GT, anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_QMARK, anon_sym_CARET, + anon_sym_STAR_STAR, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_PLUS, anon_sym_DASH, - anon_sym_BANG, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - anon_sym_function, - anon_sym_func, - ACTIONS(658), 22, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_ATinclude, - anon_sym_ATload, - anon_sym_ATnamespace, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, @@ -39811,12 +38502,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_BANG, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_DOLLAR, + anon_sym_AT, + sym_identifier, + aux_sym_number_token1, aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [17047] = 1, - ACTIONS(746), 54, + [15337] = 2, + ACTIONS(1021), 1, + anon_sym_LBRACK, + ACTIONS(692), 54, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -39871,8 +38570,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [17104] = 1, - ACTIONS(760), 54, + [15397] = 2, + ACTIONS(752), 1, + sym_concatenating_space, + ACTIONS(750), 54, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -39927,85 +38628,98 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [17161] = 22, - ACTIONS(39), 1, - sym_identifier, - ACTIONS(45), 1, + [15457] = 12, + ACTIONS(864), 1, + sym_concatenating_space, + ACTIONS(1083), 1, + anon_sym_in, + ACTIONS(1089), 1, + anon_sym_AMP_AMP, + ACTIONS(1093), 1, + anon_sym_QMARK, + ACTIONS(1095), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1077), 2, + anon_sym_CARET, + anon_sym_STAR_STAR, + ACTIONS(1081), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1087), 2, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(1099), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(1079), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1085), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(848), 33, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_if, anon_sym_LPAREN, - ACTIONS(63), 1, + anon_sym_while, + anon_sym_do, + anon_sym_for, + sym_break_statement, + sym_continue_statement, + anon_sym_delete, + anon_sym_exit, + anon_sym_return, + anon_sym_switch, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_getline, - ACTIONS(69), 1, - anon_sym_SLASH, - ACTIONS(75), 1, - anon_sym_DOLLAR, - ACTIONS(77), 1, - anon_sym_AT, - ACTIONS(81), 1, - anon_sym_DQUOTE, - ACTIONS(664), 1, - anon_sym_LPAREN2, - ACTIONS(676), 1, - sym__if_else_separator, - STATE(592), 1, - sym_ns_qualified_name, - STATE(603), 1, - sym_array_ref, - STATE(619), 1, - sym_field_ref, - STATE(737), 1, - aux_sym_exp_list_repeat1, - STATE(1309), 1, - sym__binary_in, - STATE(2063), 1, - sym_namespace, - ACTIONS(73), 2, + sym_next_statement, + sym_nextfile_statement, + anon_sym_print, + anon_sym_printf, + anon_sym_GT_GT, + anon_sym_BANG, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(79), 2, + anon_sym_DOLLAR, + anon_sym_AT, + sym_identifier, aux_sym_number_token1, aux_sym_number_token2, - STATE(636), 2, - sym__print_args, - sym_exp_list, - ACTIONS(71), 3, + anon_sym_DQUOTE, + anon_sym_POUND, + [15537] = 7, + ACTIONS(870), 1, + sym_concatenating_space, + ACTIONS(1077), 2, + anon_sym_CARET, + anon_sym_STAR_STAR, + ACTIONS(1081), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_BANG, - STATE(1354), 9, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_string_concat, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - STATE(1410), 10, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_regex, - sym_regex_constant, - sym_indirect_func_call, - ACTIONS(660), 11, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, + ACTIONS(1087), 2, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(1079), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1085), 6, + anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_POUND, - [17260] = 1, - ACTIONS(784), 54, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(868), 39, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -40025,31 +38739,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_getline, - anon_sym_LT, sym_next_statement, sym_nextfile_statement, anon_sym_print, anon_sym_printf, - anon_sym_GT, anon_sym_GT_GT, anon_sym_PIPE, anon_sym_PIPE_AMP, anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_BANG, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_DOLLAR, + anon_sym_AT, + sym_identifier, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DQUOTE, + anon_sym_POUND, + [15607] = 12, + ACTIONS(1033), 1, + anon_sym_in, + ACTIONS(1039), 1, + anon_sym_AMP_AMP, + ACTIONS(1053), 1, + anon_sym_QMARK, + ACTIONS(1055), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1073), 1, + anon_sym_COMMA, + ACTIONS(1103), 1, + sym__if_else_separator, + ACTIONS(1023), 2, anon_sym_CARET, anon_sym_STAR_STAR, + ACTIONS(1027), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1037), 2, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(1025), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(1035), 5, + anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(1101), 35, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_if, + anon_sym_LPAREN, + anon_sym_while, + anon_sym_do, + anon_sym_for, + sym_break_statement, + sym_continue_statement, + anon_sym_delete, + anon_sym_exit, + anon_sym_return, + anon_sym_switch, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_getline, + sym_next_statement, + sym_nextfile_statement, + anon_sym_print, + anon_sym_printf, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, anon_sym_BANG, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -40060,55 +38827,46 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [17317] = 6, - ACTIONS(908), 1, - anon_sym_LBRACK, - ACTIONS(1043), 1, - anon_sym_EQ, - ACTIONS(1041), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1045), 6, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - ACTIONS(644), 21, - anon_sym_BEGIN, - anon_sym_END, - anon_sym_BEGINFILE, - anon_sym_ENDFILE, + [15687] = 2, + ACTIONS(744), 1, + sym_concatenating_space, + ACTIONS(742), 54, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_if, + anon_sym_LPAREN, + anon_sym_while, + anon_sym_do, + anon_sym_for, anon_sym_in, + sym_break_statement, + sym_continue_statement, + anon_sym_delete, + anon_sym_exit, + anon_sym_return, + anon_sym_switch, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_getline, anon_sym_LT, + sym_next_statement, + sym_nextfile_statement, + anon_sym_print, + anon_sym_printf, anon_sym_GT, + anon_sym_GT_GT, anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_QMARK, anon_sym_CARET, + anon_sym_STAR_STAR, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_PLUS, anon_sym_DASH, - anon_sym_BANG, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - anon_sym_function, - anon_sym_func, - ACTIONS(658), 23, - sym_concatenating_space, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_ATinclude, - anon_sym_ATload, - anon_sym_ATnamespace, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, @@ -40117,41 +38875,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_BANG, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_DOLLAR, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [17384] = 11, - ACTIONS(1073), 1, - anon_sym_COMMA, - ACTIONS(1089), 1, - anon_sym_in, - ACTIONS(1093), 1, - anon_sym_QMARK, - ACTIONS(1097), 1, - anon_sym_AMP_AMP, - ACTIONS(1099), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1077), 2, - anon_sym_CARET, - anon_sym_STAR_STAR, - ACTIONS(1081), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1095), 2, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(1079), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1091), 5, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1071), 35, + anon_sym_AT, + sym_identifier, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DQUOTE, + anon_sym_POUND, + [15747] = 2, + ACTIONS(782), 1, + sym_concatenating_space, + ACTIONS(780), 54, + anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, @@ -40160,6 +38898,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_for, + anon_sym_in, sym_break_statement, sym_continue_statement, anon_sym_delete, @@ -40169,6 +38908,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_getline, + anon_sym_LT, sym_next_statement, sym_nextfile_statement, anon_sym_print, @@ -40177,6 +38917,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_PIPE, anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_CARET, + anon_sym_STAR_STAR, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_BANG, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -40187,8 +38943,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [17461] = 1, - ACTIONS(808), 54, + [15807] = 2, + ACTIONS(1105), 1, + sym_regex_flags, + ACTIONS(826), 54, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -40243,8 +39001,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [17518] = 1, - ACTIONS(804), 54, + [15867] = 2, + ACTIONS(818), 1, + sym_concatenating_space, + ACTIONS(816), 54, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -40299,8 +39059,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [17575] = 1, - ACTIONS(682), 54, + [15927] = 2, + ACTIONS(748), 1, + sym_concatenating_space, + ACTIONS(746), 54, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -40355,8 +39117,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [17632] = 1, - ACTIONS(816), 54, + [15987] = 2, + ACTIONS(796), 1, + sym_concatenating_space, + ACTIONS(794), 54, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -40411,53 +39175,46 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [17689] = 5, - ACTIONS(1043), 1, - anon_sym_EQ, - ACTIONS(1041), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1045), 6, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - ACTIONS(644), 21, - anon_sym_BEGIN, - anon_sym_END, - anon_sym_BEGINFILE, - anon_sym_ENDFILE, + [16047] = 2, + ACTIONS(800), 1, + sym_concatenating_space, + ACTIONS(798), 54, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_if, + anon_sym_LPAREN, + anon_sym_while, + anon_sym_do, + anon_sym_for, anon_sym_in, + sym_break_statement, + sym_continue_statement, + anon_sym_delete, + anon_sym_exit, + anon_sym_return, + anon_sym_switch, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_getline, anon_sym_LT, + sym_next_statement, + sym_nextfile_statement, + anon_sym_print, + anon_sym_printf, anon_sym_GT, + anon_sym_GT_GT, anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_QMARK, anon_sym_CARET, + anon_sym_STAR_STAR, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_PLUS, anon_sym_DASH, - anon_sym_BANG, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - anon_sym_function, - anon_sym_func, - ACTIONS(658), 23, - sym_concatenating_space, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_ATinclude, - anon_sym_ATload, - anon_sym_ATnamespace, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, @@ -40466,120 +39223,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_DOLLAR, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [17753] = 21, - ACTIONS(85), 1, - sym_identifier, - ACTIONS(89), 1, - anon_sym_LPAREN, - ACTIONS(107), 1, - anon_sym_getline, - ACTIONS(113), 1, - anon_sym_SLASH, - ACTIONS(119), 1, - anon_sym_DOLLAR, - ACTIONS(121), 1, - anon_sym_AT, - ACTIONS(125), 1, - anon_sym_DQUOTE, - ACTIONS(698), 1, - anon_sym_LPAREN2, - STATE(607), 1, - sym_ns_qualified_name, - STATE(610), 1, - sym_array_ref, - STATE(703), 1, - sym_field_ref, - STATE(733), 1, - aux_sym_exp_list_repeat1, - STATE(1373), 1, - sym__binary_in, - STATE(1955), 1, - sym_namespace, - ACTIONS(117), 2, + anon_sym_BANG, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(123), 2, + anon_sym_DOLLAR, + anon_sym_AT, + sym_identifier, aux_sym_number_token1, aux_sym_number_token2, - STATE(692), 2, - sym__print_args, - sym_exp_list, - ACTIONS(115), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - STATE(1421), 9, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_string_concat, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - STATE(1433), 10, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_regex, - sym_regex_constant, - sym_indirect_func_call, - ACTIONS(660), 11, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, + anon_sym_DQUOTE, + anon_sym_POUND, + [16107] = 3, + ACTIONS(658), 1, + sym_concatenating_space, + ACTIONS(642), 21, + anon_sym_in, + anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, anon_sym_PIPE, anon_sym_PIPE_AMP, - anon_sym_POUND, - [17849] = 12, - ACTIONS(83), 1, - sym__if_else_separator, - ACTIONS(1019), 1, - anon_sym_in, - ACTIONS(1031), 1, - anon_sym_AMP_AMP, - ACTIONS(1035), 1, anon_sym_QMARK, - ACTIONS(1037), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1023), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(1027), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1029), 2, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(1107), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(1025), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1021), 6, - anon_sym_LT, - anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(41), 31, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(654), 33, + anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, @@ -40601,6 +39281,7 @@ static const uint16_t ts_small_parse_table[] = { sym_nextfile_statement, anon_sym_print, anon_sym_printf, + anon_sym_GT_GT, anon_sym_BANG, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -40611,107 +39292,46 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [17927] = 8, - ACTIONS(1117), 1, - anon_sym_CARET, - ACTIONS(1119), 1, - anon_sym_STAR_STAR, - ACTIONS(1115), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1123), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1121), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1125), 4, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(792), 14, - anon_sym_BEGIN, - anon_sym_END, - anon_sym_BEGINFILE, - anon_sym_ENDFILE, - anon_sym_in, - anon_sym_getline, - anon_sym_PIPE, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - anon_sym_function, - anon_sym_func, - ACTIONS(794), 26, + [16169] = 2, + ACTIONS(788), 1, sym_concatenating_space, - ts_builtin_sym_end, + ACTIONS(786), 54, anon_sym_COMMA, - anon_sym_ATinclude, - anon_sym_ATload, - anon_sym_ATnamespace, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_if, anon_sym_LPAREN, + anon_sym_while, + anon_sym_do, + anon_sym_for, + anon_sym_in, + sym_break_statement, + sym_continue_statement, + anon_sym_delete, + anon_sym_exit, + anon_sym_return, + anon_sym_switch, anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_getline, + anon_sym_LT, + sym_next_statement, + sym_nextfile_statement, + anon_sym_print, + anon_sym_printf, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_PIPE, anon_sym_PIPE_AMP, anon_sym_QMARK, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_DOLLAR, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [17997] = 5, - ACTIONS(1117), 1, anon_sym_CARET, - ACTIONS(1119), 1, anon_sym_STAR_STAR, - ACTIONS(1121), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(792), 18, - anon_sym_BEGIN, - anon_sym_END, - anon_sym_BEGINFILE, - anon_sym_ENDFILE, - anon_sym_in, - anon_sym_getline, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - anon_sym_function, - anon_sym_func, - ACTIONS(794), 30, - sym_concatenating_space, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_ATinclude, - anon_sym_ATload, - anon_sym_ATnamespace, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, @@ -40720,33 +39340,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_BANG, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, anon_sym_DOLLAR, + anon_sym_AT, + sym_identifier, + aux_sym_number_token1, aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [18061] = 4, - ACTIONS(1117), 1, - anon_sym_CARET, - ACTIONS(1119), 1, - anon_sym_STAR_STAR, - ACTIONS(792), 21, + [16229] = 5, + ACTIONS(650), 1, + anon_sym_COLON_COLON, + ACTIONS(908), 1, + anon_sym_LBRACK, + ACTIONS(1107), 1, + anon_sym_LT, + ACTIONS(688), 21, anon_sym_BEGIN, anon_sym_END, anon_sym_BEGINFILE, anon_sym_ENDFILE, anon_sym_in, anon_sym_getline, - anon_sym_LT, anon_sym_GT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -40759,7 +39379,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, anon_sym_function, anon_sym_func, - ACTIONS(794), 30, + ACTIONS(690), 31, sym_concatenating_space, ts_builtin_sym_end, anon_sym_COMMA, @@ -40770,6 +39390,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE_AMP, anon_sym_QMARK, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, @@ -40790,22 +39411,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [18123] = 6, - ACTIONS(1059), 1, - anon_sym_EQ, - ACTIONS(1063), 1, - sym_concatenating_space, - ACTIONS(1057), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1061), 6, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - ACTIONS(644), 21, + [16295] = 3, + ACTIONS(1109), 1, + sym_regex_flags, + ACTIONS(832), 22, anon_sym_BEGIN, anon_sym_END, anon_sym_BEGINFILE, @@ -40822,64 +39431,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - anon_sym_function, - anon_sym_func, - ACTIONS(658), 22, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_ATinclude, - anon_sym_ATload, - anon_sym_ATnamespace, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_DOLLAR, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [18189] = 6, - ACTIONS(1117), 1, - anon_sym_CARET, - ACTIONS(1119), 1, - anon_sym_STAR_STAR, - ACTIONS(1123), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1121), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(792), 16, - anon_sym_BEGIN, - anon_sym_END, - anon_sym_BEGINFILE, - anon_sym_ENDFILE, - anon_sym_in, - anon_sym_getline, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_BANG, anon_sym_EQ, anon_sym_AT, sym_identifier, aux_sym_number_token1, anon_sym_function, anon_sym_func, - ACTIONS(794), 30, + ACTIONS(836), 31, sym_concatenating_space, ts_builtin_sym_end, anon_sym_COMMA, @@ -40890,6 +39448,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE_AMP, anon_sym_QMARK, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, @@ -40910,176 +39469,46 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [18255] = 13, - ACTIONS(1117), 1, - anon_sym_CARET, - ACTIONS(1119), 1, - anon_sym_STAR_STAR, - ACTIONS(1127), 1, - anon_sym_in, - ACTIONS(1129), 1, - anon_sym_QMARK, - ACTIONS(1133), 1, - anon_sym_AMP_AMP, - ACTIONS(1135), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1115), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1123), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1131), 2, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(1121), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1125), 4, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(876), 13, - anon_sym_BEGIN, - anon_sym_END, - anon_sym_BEGINFILE, - anon_sym_ENDFILE, - anon_sym_getline, - anon_sym_PIPE, - anon_sym_BANG, + [16356] = 7, + ACTIONS(908), 1, + anon_sym_LBRACK, + ACTIONS(1059), 1, anon_sym_EQ, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - anon_sym_function, - anon_sym_func, - ACTIONS(878), 21, + ACTIONS(1063), 1, sym_concatenating_space, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_ATinclude, - anon_sym_ATload, - anon_sym_ATnamespace, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_PIPE_AMP, + ACTIONS(1057), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + ACTIONS(1061), 6, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_CARET_EQ, - anon_sym_DOLLAR, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [18335] = 9, - ACTIONS(1117), 1, - anon_sym_CARET, - ACTIONS(1119), 1, - anon_sym_STAR_STAR, - ACTIONS(1115), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1123), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1131), 2, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(1121), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1125), 4, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(840), 14, + ACTIONS(642), 21, anon_sym_BEGIN, anon_sym_END, anon_sym_BEGINFILE, anon_sym_ENDFILE, anon_sym_in, anon_sym_getline, - anon_sym_PIPE, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - anon_sym_function, - anon_sym_func, - ACTIONS(852), 24, - sym_concatenating_space, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_ATinclude, - anon_sym_ATload, - anon_sym_ATnamespace, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_DOLLAR, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [18407] = 9, - ACTIONS(1117), 1, - anon_sym_CARET, - ACTIONS(1119), 1, - anon_sym_STAR_STAR, - ACTIONS(1115), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1123), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1131), 2, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(1121), 3, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1125), 4, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(868), 14, - anon_sym_BEGIN, - anon_sym_END, - anon_sym_BEGINFILE, - anon_sym_ENDFILE, - anon_sym_in, - anon_sym_getline, - anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_BANG, - anon_sym_EQ, anon_sym_AT, sym_identifier, aux_sym_number_token1, anon_sym_function, anon_sym_func, - ACTIONS(870), 24, - sym_concatenating_space, + ACTIONS(652), 22, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_ATinclude, @@ -41089,124 +39518,163 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE_AMP, anon_sym_QMARK, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, anon_sym_DOLLAR, aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [18479] = 15, - ACTIONS(1117), 1, - anon_sym_CARET, - ACTIONS(1119), 1, - anon_sym_STAR_STAR, - ACTIONS(1127), 1, + [16425] = 1, + ACTIONS(750), 54, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_if, + anon_sym_LPAREN, + anon_sym_while, + anon_sym_do, + anon_sym_for, anon_sym_in, - ACTIONS(1129), 1, - anon_sym_QMARK, - ACTIONS(1133), 1, - anon_sym_AMP_AMP, - ACTIONS(1135), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1137), 1, - anon_sym_PIPE, - ACTIONS(1139), 1, - anon_sym_PIPE_AMP, - ACTIONS(1115), 2, + sym_break_statement, + sym_continue_statement, + anon_sym_delete, + anon_sym_exit, + anon_sym_return, + anon_sym_switch, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_getline, anon_sym_LT, + sym_next_statement, + sym_nextfile_statement, + anon_sym_print, + anon_sym_printf, anon_sym_GT, - ACTIONS(1123), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1131), 2, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(1121), 3, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_CARET, + anon_sym_STAR_STAR, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1125), 4, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(854), 12, - anon_sym_BEGIN, - anon_sym_END, - anon_sym_BEGINFILE, - anon_sym_ENDFILE, - anon_sym_getline, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_BANG, - anon_sym_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_DOLLAR, anon_sym_AT, sym_identifier, aux_sym_number_token1, - anon_sym_function, - anon_sym_func, - ACTIONS(866), 20, - sym_concatenating_space, - ts_builtin_sym_end, + aux_sym_number_token2, + anon_sym_DQUOTE, + anon_sym_POUND, + [16482] = 1, + ACTIONS(764), 54, anon_sym_COMMA, - anon_sym_ATinclude, - anon_sym_ATload, - anon_sym_ATnamespace, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_if, anon_sym_LPAREN, + anon_sym_while, + anon_sym_do, + anon_sym_for, + anon_sym_in, + sym_break_statement, + sym_continue_statement, + anon_sym_delete, + anon_sym_exit, + anon_sym_return, + anon_sym_switch, anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_getline, + anon_sym_LT, + sym_next_statement, + sym_nextfile_statement, + anon_sym_print, + anon_sym_printf, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_CARET, + anon_sym_STAR_STAR, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_BANG, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, anon_sym_DOLLAR, + anon_sym_AT, + sym_identifier, + aux_sym_number_token1, aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [18563] = 12, - ACTIONS(1019), 1, + [16539] = 11, + ACTIONS(1073), 1, + anon_sym_COMMA, + ACTIONS(1083), 1, anon_sym_in, - ACTIONS(1031), 1, + ACTIONS(1089), 1, anon_sym_AMP_AMP, - ACTIONS(1035), 1, + ACTIONS(1093), 1, anon_sym_QMARK, - ACTIONS(1037), 1, + ACTIONS(1095), 1, anon_sym_PIPE_PIPE, - ACTIONS(1143), 1, - sym__if_else_separator, - ACTIONS(1023), 2, + ACTIONS(1077), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(1027), 2, + ACTIONS(1081), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1029), 2, + ACTIONS(1087), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(1107), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(1025), 3, + ACTIONS(1079), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1021), 6, + ACTIONS(1085), 6, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1141), 31, + ACTIONS(1071), 34, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, @@ -41228,6 +39696,9 @@ static const uint16_t ts_small_parse_table[] = { sym_nextfile_statement, anon_sym_print, anon_sym_printf, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, anon_sym_BANG, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -41238,41 +39709,40 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [18641] = 12, - ACTIONS(1019), 1, + [16616] = 11, + ACTIONS(1083), 1, anon_sym_in, - ACTIONS(1031), 1, + ACTIONS(1089), 1, anon_sym_AMP_AMP, - ACTIONS(1035), 1, + ACTIONS(1093), 1, anon_sym_QMARK, - ACTIONS(1037), 1, + ACTIONS(1095), 1, anon_sym_PIPE_PIPE, - ACTIONS(1147), 1, - sym__if_else_separator, - ACTIONS(1023), 2, + ACTIONS(1077), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(1027), 2, + ACTIONS(1081), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1029), 2, + ACTIONS(1087), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(1107), 2, + ACTIONS(1111), 2, anon_sym_PIPE, anon_sym_PIPE_AMP, - ACTIONS(1025), 3, + ACTIONS(1079), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1021), 6, + ACTIONS(1085), 6, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1145), 31, + ACTIONS(848), 33, + anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, @@ -41294,6 +39764,7 @@ static const uint16_t ts_small_parse_table[] = { sym_nextfile_statement, anon_sym_print, anon_sym_printf, + anon_sym_GT_GT, anon_sym_BANG, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -41304,41 +39775,142 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [18719] = 12, - ACTIONS(1019), 1, + [16693] = 1, + ACTIONS(738), 54, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_if, + anon_sym_LPAREN, + anon_sym_while, + anon_sym_do, + anon_sym_for, anon_sym_in, - ACTIONS(1031), 1, - anon_sym_AMP_AMP, - ACTIONS(1035), 1, + sym_break_statement, + sym_continue_statement, + anon_sym_delete, + anon_sym_exit, + anon_sym_return, + anon_sym_switch, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_getline, + anon_sym_LT, + sym_next_statement, + sym_nextfile_statement, + anon_sym_print, + anon_sym_printf, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, anon_sym_QMARK, - ACTIONS(1037), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1151), 1, - sym__if_else_separator, - ACTIONS(1023), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(1027), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1029), 2, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(1107), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(1025), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1021), 6, - anon_sym_LT, - anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1149), 31, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_BANG, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_DOLLAR, + anon_sym_AT, + sym_identifier, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DQUOTE, + anon_sym_POUND, + [16750] = 22, + ACTIONS(39), 1, + sym_identifier, + ACTIONS(45), 1, + anon_sym_LPAREN, + ACTIONS(63), 1, + anon_sym_getline, + ACTIONS(69), 1, + anon_sym_SLASH, + ACTIONS(75), 1, + anon_sym_DOLLAR, + ACTIONS(77), 1, + anon_sym_AT, + ACTIONS(81), 1, + anon_sym_DQUOTE, + ACTIONS(664), 1, + anon_sym_LPAREN2, + ACTIONS(676), 1, + sym__if_else_separator, + STATE(590), 1, + sym_ns_qualified_name, + STATE(601), 1, + sym_array_ref, + STATE(632), 1, + sym_field_ref, + STATE(722), 1, + aux_sym_exp_list_repeat1, + STATE(1305), 1, + sym__binary_in, + STATE(2068), 1, + sym_namespace, + ACTIONS(73), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(79), 2, + aux_sym_number_token1, + aux_sym_number_token2, + STATE(633), 2, + sym__print_args, + sym_exp_list, + ACTIONS(71), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + STATE(1371), 9, + sym_ternary_exp, + sym_binary_exp, + sym_unary_exp, + sym_string_concat, + sym_grouping, + sym__primitive, + sym_number, + sym_string, + sym_func_call, + STATE(1423), 10, + sym__getline_exp, + sym_getline_input, + sym_getline_file, + sym__exp, + sym_update_exp, + sym_assignment_exp, + sym_piped_io_exp, + sym_regex, + sym_regex_constant, + sym_indirect_func_call, + ACTIONS(660), 11, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_POUND, + [16849] = 1, + ACTIONS(746), 54, + anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, @@ -41347,6 +39919,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_for, + anon_sym_in, sym_break_statement, sym_continue_statement, anon_sym_delete, @@ -41356,10 +39929,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_getline, + anon_sym_LT, sym_next_statement, sym_nextfile_statement, anon_sym_print, anon_sym_printf, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_CARET, + anon_sym_STAR_STAR, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_BANG, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -41370,19 +39964,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [18797] = 6, - ACTIONS(1117), 1, - anon_sym_CARET, - ACTIONS(1119), 1, - anon_sym_STAR_STAR, - ACTIONS(1123), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1121), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(880), 16, + [16906] = 6, + ACTIONS(908), 1, + anon_sym_LBRACK, + ACTIONS(1045), 1, + anon_sym_EQ, + ACTIONS(1043), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1047), 6, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + ACTIONS(642), 21, anon_sym_BEGIN, anon_sym_END, anon_sym_BEGINFILE, @@ -41392,14 +39989,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_PIPE, + anon_sym_CARET, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_BANG, - anon_sym_EQ, anon_sym_AT, sym_identifier, aux_sym_number_token1, anon_sym_function, anon_sym_func, - ACTIONS(882), 30, + ACTIONS(652), 23, sym_concatenating_space, ts_builtin_sym_end, anon_sym_COMMA, @@ -41410,6 +40012,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE_AMP, anon_sym_QMARK, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, @@ -41418,116 +40021,142 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, anon_sym_DOLLAR, aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [18863] = 10, - ACTIONS(1117), 1, - anon_sym_CARET, - ACTIONS(1119), 1, - anon_sym_STAR_STAR, - ACTIONS(1127), 1, + [16973] = 1, + ACTIONS(754), 54, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_if, + anon_sym_LPAREN, + anon_sym_while, + anon_sym_do, + anon_sym_for, anon_sym_in, - ACTIONS(1115), 2, + sym_break_statement, + sym_continue_statement, + anon_sym_delete, + anon_sym_exit, + anon_sym_return, + anon_sym_switch, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_getline, anon_sym_LT, + sym_next_statement, + sym_nextfile_statement, + anon_sym_print, + anon_sym_printf, anon_sym_GT, - ACTIONS(1123), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1131), 2, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(1121), 3, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_CARET, + anon_sym_STAR_STAR, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1125), 4, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(792), 13, - anon_sym_BEGIN, - anon_sym_END, - anon_sym_BEGINFILE, - anon_sym_ENDFILE, - anon_sym_getline, - anon_sym_PIPE, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - anon_sym_function, - anon_sym_func, - ACTIONS(794), 24, - sym_concatenating_space, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_ATinclude, - anon_sym_ATload, - anon_sym_ATnamespace, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, + anon_sym_TILDE, + anon_sym_BANG_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_BANG, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, anon_sym_DOLLAR, + anon_sym_AT, + sym_identifier, + aux_sym_number_token1, aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [18937] = 11, - ACTIONS(1117), 1, - anon_sym_CARET, - ACTIONS(1119), 1, - anon_sym_STAR_STAR, - ACTIONS(1127), 1, + [17030] = 1, + ACTIONS(780), 54, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_if, + anon_sym_LPAREN, + anon_sym_while, + anon_sym_do, + anon_sym_for, anon_sym_in, - ACTIONS(1133), 1, - anon_sym_AMP_AMP, - ACTIONS(1115), 2, + sym_break_statement, + sym_continue_statement, + anon_sym_delete, + anon_sym_exit, + anon_sym_return, + anon_sym_switch, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_getline, anon_sym_LT, + sym_next_statement, + sym_nextfile_statement, + anon_sym_print, + anon_sym_printf, anon_sym_GT, - ACTIONS(1123), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1131), 2, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(1121), 3, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_CARET, + anon_sym_STAR_STAR, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1125), 4, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(792), 13, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_BANG, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_DOLLAR, + anon_sym_AT, + sym_identifier, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DQUOTE, + anon_sym_POUND, + [17087] = 4, + ACTIONS(908), 1, + anon_sym_LBRACK, + ACTIONS(1107), 1, + anon_sym_LT, + ACTIONS(688), 21, anon_sym_BEGIN, anon_sym_END, anon_sym_BEGINFILE, anon_sym_ENDFILE, + anon_sym_in, anon_sym_getline, + anon_sym_GT, anon_sym_PIPE, + anon_sym_CARET, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_BANG, anon_sym_EQ, anon_sym_AT, @@ -41535,7 +40164,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, anon_sym_function, anon_sym_func, - ACTIONS(794), 23, + ACTIONS(690), 31, sym_concatenating_space, ts_builtin_sym_end, anon_sym_COMMA, @@ -41546,6 +40175,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE_AMP, anon_sym_QMARK, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -41559,41 +40196,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [19013] = 12, - ACTIONS(1019), 1, - anon_sym_in, - ACTIONS(1031), 1, - anon_sym_AMP_AMP, - ACTIONS(1035), 1, - anon_sym_QMARK, - ACTIONS(1037), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1155), 1, - sym__if_else_separator, - ACTIONS(1023), 2, - anon_sym_CARET, - anon_sym_STAR_STAR, - ACTIONS(1027), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1029), 2, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(1107), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(1025), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1021), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1153), 31, + [17150] = 1, + ACTIONS(790), 54, + anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, @@ -41602,6 +40207,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_for, + anon_sym_in, sym_break_statement, sym_continue_statement, anon_sym_delete, @@ -41611,53 +40217,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_getline, + anon_sym_LT, sym_next_statement, sym_nextfile_statement, anon_sym_print, anon_sym_printf, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [19091] = 11, - ACTIONS(1089), 1, - anon_sym_in, - ACTIONS(1093), 1, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, anon_sym_QMARK, - ACTIONS(1097), 1, - anon_sym_AMP_AMP, - ACTIONS(1099), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1077), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(1081), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1095), 2, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(1111), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(1079), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1091), 6, - anon_sym_LT, - anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1141), 31, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_BANG, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_DOLLAR, + anon_sym_AT, + sym_identifier, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DQUOTE, + anon_sym_POUND, + [17207] = 1, + ACTIONS(742), 54, + anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, @@ -41666,6 +40263,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_for, + anon_sym_in, sym_break_statement, sym_continue_statement, anon_sym_delete, @@ -41675,10 +40273,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_getline, + anon_sym_LT, sym_next_statement, sym_nextfile_statement, anon_sym_print, anon_sym_printf, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_CARET, + anon_sym_STAR_STAR, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_BANG, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -41689,14 +40308,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [19166] = 11, - ACTIONS(1089), 1, + [17264] = 11, + ACTIONS(1073), 1, + anon_sym_COMMA, + ACTIONS(1083), 1, anon_sym_in, + ACTIONS(1089), 1, + anon_sym_AMP_AMP, ACTIONS(1093), 1, anon_sym_QMARK, - ACTIONS(1097), 1, - anon_sym_AMP_AMP, - ACTIONS(1099), 1, + ACTIONS(1095), 1, anon_sym_PIPE_PIPE, ACTIONS(1077), 2, anon_sym_CARET, @@ -41704,24 +40325,20 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1081), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1095), 2, + ACTIONS(1087), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(1111), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, ACTIONS(1079), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1091), 6, + ACTIONS(1085), 5, anon_sym_LT, - anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1145), 31, + ACTIONS(1101), 35, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, @@ -41743,6 +40360,10 @@ static const uint16_t ts_small_parse_table[] = { sym_nextfile_statement, anon_sym_print, anon_sym_printf, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, anon_sym_BANG, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -41753,39 +40374,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [19241] = 11, - ACTIONS(1089), 1, - anon_sym_in, - ACTIONS(1093), 1, - anon_sym_QMARK, - ACTIONS(1097), 1, - anon_sym_AMP_AMP, - ACTIONS(1099), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1077), 2, - anon_sym_CARET, - anon_sym_STAR_STAR, - ACTIONS(1081), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1095), 2, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(1111), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(1079), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1091), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1149), 31, + [17341] = 1, + ACTIONS(798), 54, + anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, @@ -41794,6 +40385,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_for, + anon_sym_in, sym_break_statement, sym_continue_statement, anon_sym_delete, @@ -41803,53 +40395,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_getline, + anon_sym_LT, sym_next_statement, sym_nextfile_statement, anon_sym_print, anon_sym_printf, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [19316] = 11, - ACTIONS(1089), 1, - anon_sym_in, - ACTIONS(1093), 1, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, anon_sym_QMARK, - ACTIONS(1097), 1, - anon_sym_AMP_AMP, - ACTIONS(1099), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1077), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(1081), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1095), 2, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(1111), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(1079), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1091), 6, - anon_sym_LT, - anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1153), 31, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_BANG, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_DOLLAR, + anon_sym_AT, + sym_identifier, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DQUOTE, + anon_sym_POUND, + [17398] = 1, + ACTIONS(794), 54, + anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, @@ -41858,6 +40441,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_for, + anon_sym_in, sym_break_statement, sym_continue_statement, anon_sym_delete, @@ -41867,53 +40451,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_getline, + anon_sym_LT, sym_next_statement, sym_nextfile_statement, anon_sym_print, anon_sym_printf, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [19391] = 11, - ACTIONS(1089), 1, - anon_sym_in, - ACTIONS(1093), 1, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, anon_sym_QMARK, - ACTIONS(1097), 1, - anon_sym_AMP_AMP, - ACTIONS(1099), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1077), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(1081), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1095), 2, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(1111), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(1079), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1091), 6, - anon_sym_LT, - anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(41), 31, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_BANG, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_DOLLAR, + anon_sym_AT, + sym_identifier, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DQUOTE, + anon_sym_POUND, + [17455] = 1, + ACTIONS(786), 54, + anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, @@ -41922,6 +40497,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_for, + anon_sym_in, sym_break_statement, sym_continue_statement, anon_sym_delete, @@ -41931,10 +40507,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_getline, + anon_sym_LT, sym_next_statement, sym_nextfile_statement, anon_sym_print, anon_sym_printf, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_CARET, + anon_sym_STAR_STAR, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_BANG, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -41945,181 +40542,31 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [19466] = 22, - ACTIONS(81), 1, - anon_sym_DQUOTE, - ACTIONS(450), 1, - sym_identifier, - ACTIONS(468), 1, - anon_sym_getline, - ACTIONS(594), 1, - anon_sym_LPAREN, - ACTIONS(596), 1, - anon_sym_SLASH, - ACTIONS(600), 1, - anon_sym_DOLLAR, - ACTIONS(602), 1, - anon_sym_AT, - ACTIONS(664), 1, - anon_sym_LPAREN2, - ACTIONS(676), 1, - sym__if_else_separator, - STATE(647), 1, - sym_ns_qualified_name, - STATE(771), 1, - aux_sym_exp_list_repeat1, - STATE(774), 1, - sym_array_ref, - STATE(995), 1, - sym_field_ref, - STATE(1309), 1, - sym__binary_in, - STATE(2063), 1, - sym_namespace, - ACTIONS(79), 2, - aux_sym_number_token1, - aux_sym_number_token2, - ACTIONS(598), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(636), 2, - sym__print_args, - sym_exp_list, - ACTIONS(476), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - ACTIONS(660), 8, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_while, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - STATE(1441), 9, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_string_concat, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - STATE(1491), 10, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_regex, - sym_regex_constant, - sym_indirect_func_call, - [19562] = 21, - ACTIONS(125), 1, - anon_sym_DQUOTE, - ACTIONS(362), 1, - sym_identifier, - ACTIONS(376), 1, - anon_sym_getline, - ACTIONS(620), 1, - anon_sym_LPAREN, - ACTIONS(622), 1, - anon_sym_SLASH, - ACTIONS(626), 1, - anon_sym_DOLLAR, - ACTIONS(628), 1, - anon_sym_AT, - ACTIONS(698), 1, - anon_sym_LPAREN2, - STATE(744), 1, - sym_ns_qualified_name, - STATE(745), 1, - aux_sym_exp_list_repeat1, - STATE(1022), 1, - sym_array_ref, - STATE(1121), 1, - sym_field_ref, - STATE(1373), 1, - sym__binary_in, - STATE(1955), 1, - sym_namespace, - ACTIONS(123), 2, - aux_sym_number_token1, - aux_sym_number_token2, - ACTIONS(624), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(692), 2, - sym__print_args, - sym_exp_list, - ACTIONS(384), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - ACTIONS(660), 8, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_while, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - STATE(1470), 9, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_string_concat, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - STATE(1512), 10, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_regex, - sym_regex_constant, - sym_indirect_func_call, - [19655] = 7, - ACTIONS(1157), 1, - sym_identifier, - ACTIONS(1159), 1, - anon_sym_LT, - STATE(519), 1, - sym_array_ref, - STATE(520), 1, - sym_ns_qualified_name, - STATE(2056), 1, - sym_namespace, - ACTIONS(712), 16, + [17512] = 2, + ACTIONS(678), 22, anon_sym_BEGIN, anon_sym_END, anon_sym_BEGINFILE, anon_sym_ENDFILE, anon_sym_in, anon_sym_getline, + anon_sym_LT, anon_sym_GT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, + anon_sym_EQ, anon_sym_AT, + sym_identifier, aux_sym_number_token1, anon_sym_function, anon_sym_func, - ACTIONS(714), 28, + ACTIONS(680), 32, sym_concatenating_space, ts_builtin_sym_end, anon_sym_COMMA, @@ -42130,10 +40577,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE_AMP, anon_sym_QMARK, - anon_sym_CARET, anon_sym_STAR_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, @@ -42144,19 +40588,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, anon_sym_DOLLAR, + anon_sym_LBRACK, aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [19719] = 5, - ACTIONS(1161), 1, - sym_identifier, - STATE(2056), 1, - sym_namespace, - STATE(519), 2, - sym_array_ref, - sym_ns_qualified_name, - ACTIONS(712), 17, + [17571] = 3, + ACTIONS(1113), 1, + sym_regex_flags, + ACTIONS(826), 22, anon_sym_BEGIN, anon_sym_END, anon_sym_BEGINFILE, @@ -42166,15 +40612,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, + anon_sym_EQ, anon_sym_AT, + sym_identifier, aux_sym_number_token1, anon_sym_function, anon_sym_func, - ACTIONS(714), 28, + ACTIONS(830), 31, sym_concatenating_space, ts_builtin_sym_end, anon_sym_COMMA, @@ -42185,10 +40636,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE_AMP, anon_sym_QMARK, - anon_sym_CARET, anon_sym_STAR_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, @@ -42199,50 +40647,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, anon_sym_DOLLAR, aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [19779] = 5, - ACTIONS(652), 1, - anon_sym_COLON_COLON, - ACTIONS(1163), 1, - anon_sym_LT, - ACTIONS(1165), 1, - anon_sym_LBRACK, - ACTIONS(678), 17, - anon_sym_BEGIN, - anon_sym_END, - anon_sym_BEGINFILE, - anon_sym_ENDFILE, - anon_sym_in, - anon_sym_getline, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - anon_sym_function, - anon_sym_func, - ACTIONS(680), 28, - sym_concatenating_space, - ts_builtin_sym_end, + [17632] = 1, + ACTIONS(692), 54, anon_sym_COMMA, - anon_sym_ATinclude, - anon_sym_ATload, - anon_sym_ATnamespace, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_if, anon_sym_LPAREN, + anon_sym_while, + anon_sym_do, + anon_sym_for, + anon_sym_in, + sym_break_statement, + sym_continue_statement, + anon_sym_delete, + anon_sym_exit, + anon_sym_return, + anon_sym_switch, anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_getline, + anon_sym_LT, + sym_next_statement, + sym_nextfile_statement, + anon_sym_print, + anon_sym_printf, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_PIPE, anon_sym_PIPE_AMP, anon_sym_QMARK, anon_sym_CARET, anon_sym_STAR_STAR, + anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, @@ -42251,18 +40703,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_BANG, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_DOLLAR, + anon_sym_AT, + sym_identifier, + aux_sym_number_token1, aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [19838] = 4, - ACTIONS(652), 1, - anon_sym_COLON_COLON, - ACTIONS(1165), 1, - anon_sym_LBRACK, - ACTIONS(682), 18, + [17689] = 4, + ACTIONS(1115), 1, + anon_sym_CARET, + ACTIONS(1117), 1, + anon_sym_STAR_STAR, + ACTIONS(776), 21, anon_sym_BEGIN, anon_sym_END, anon_sym_BEGINFILE, @@ -42273,15 +40729,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, + anon_sym_EQ, anon_sym_AT, sym_identifier, aux_sym_number_token1, anon_sym_function, anon_sym_func, - ACTIONS(684), 28, + ACTIONS(778), 30, sym_concatenating_space, ts_builtin_sym_end, anon_sym_COMMA, @@ -42292,10 +40751,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE_AMP, anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, @@ -42306,91 +40761,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, anon_sym_DOLLAR, aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [19895] = 7, - ACTIONS(1167), 1, - sym_identifier, - ACTIONS(1169), 1, + [17751] = 9, + ACTIONS(1115), 1, + anon_sym_CARET, + ACTIONS(1117), 1, + anon_sym_STAR_STAR, + ACTIONS(1119), 2, anon_sym_LT, - STATE(528), 1, - sym_ns_qualified_name, - STATE(529), 1, - sym_array_ref, - STATE(2022), 1, - sym_namespace, - ACTIONS(712), 16, - anon_sym_BEGIN, - anon_sym_END, - anon_sym_BEGINFILE, - anon_sym_ENDFILE, - anon_sym_in, - anon_sym_getline, anon_sym_GT, - anon_sym_PIPE, - anon_sym_STAR, + ACTIONS(1123), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_BANG, - anon_sym_AT, - aux_sym_number_token1, - anon_sym_function, - anon_sym_func, - ACTIONS(714), 27, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_ATinclude, - anon_sym_ATload, - anon_sym_ATnamespace, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, + ACTIONS(1127), 2, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(1121), 3, + anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(1125), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [19958] = 4, - ACTIONS(652), 1, - anon_sym_COLON_COLON, - ACTIONS(1165), 1, - anon_sym_LBRACK, - ACTIONS(678), 18, + ACTIONS(868), 14, anon_sym_BEGIN, anon_sym_END, anon_sym_BEGINFILE, anon_sym_ENDFILE, anon_sym_in, anon_sym_getline, - anon_sym_LT, - anon_sym_GT, anon_sym_PIPE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_BANG, + anon_sym_EQ, anon_sym_AT, sym_identifier, aux_sym_number_token1, anon_sym_function, anon_sym_func, - ACTIONS(680), 28, + ACTIONS(870), 24, sym_concatenating_space, ts_builtin_sym_end, anon_sym_COMMA, @@ -42401,154 +40820,325 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE_AMP, anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_DOLLAR, + aux_sym_number_token2, + anon_sym_DQUOTE, + anon_sym_POUND, + [17823] = 12, + ACTIONS(1033), 1, + anon_sym_in, + ACTIONS(1039), 1, + anon_sym_AMP_AMP, + ACTIONS(1053), 1, + anon_sym_QMARK, + ACTIONS(1055), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1131), 1, + sym__if_else_separator, + ACTIONS(1023), 2, anon_sym_CARET, anon_sym_STAR_STAR, + ACTIONS(1027), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1037), 2, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(1097), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(1025), 3, + anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(1035), 6, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(1129), 31, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_if, + anon_sym_LPAREN, + anon_sym_while, + anon_sym_do, + anon_sym_for, + sym_break_statement, + sym_continue_statement, + anon_sym_delete, + anon_sym_exit, + anon_sym_return, + anon_sym_switch, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_getline, + sym_next_statement, + sym_nextfile_statement, + anon_sym_print, + anon_sym_printf, + anon_sym_BANG, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_DOLLAR, + anon_sym_AT, + sym_identifier, + aux_sym_number_token1, aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [20015] = 5, - ACTIONS(1171), 1, - sym_identifier, - STATE(2022), 1, - sym_namespace, - STATE(529), 2, - sym_array_ref, - sym_ns_qualified_name, - ACTIONS(712), 17, - anon_sym_BEGIN, - anon_sym_END, - anon_sym_BEGINFILE, - anon_sym_ENDFILE, + [17901] = 12, + ACTIONS(83), 1, + sym__if_else_separator, + ACTIONS(1033), 1, anon_sym_in, - anon_sym_getline, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_AT, - aux_sym_number_token1, - anon_sym_function, - anon_sym_func, - ACTIONS(714), 27, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_ATinclude, - anon_sym_ATload, - anon_sym_ATnamespace, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_PIPE_AMP, + ACTIONS(1039), 1, + anon_sym_AMP_AMP, + ACTIONS(1053), 1, anon_sym_QMARK, + ACTIONS(1055), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1023), 2, anon_sym_CARET, anon_sym_STAR_STAR, + ACTIONS(1027), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1037), 2, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(1097), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(1025), 3, + anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(1035), 6, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(41), 31, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_if, + anon_sym_LPAREN, + anon_sym_while, + anon_sym_do, + anon_sym_for, + sym_break_statement, + sym_continue_statement, + anon_sym_delete, + anon_sym_exit, + anon_sym_return, + anon_sym_switch, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_getline, + sym_next_statement, + sym_nextfile_statement, + anon_sym_print, + anon_sym_printf, + anon_sym_BANG, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_DOLLAR, + anon_sym_AT, + sym_identifier, + aux_sym_number_token1, aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [20074] = 2, - ACTIONS(722), 18, + [17979] = 13, + ACTIONS(1115), 1, + anon_sym_CARET, + ACTIONS(1117), 1, + anon_sym_STAR_STAR, + ACTIONS(1133), 1, + anon_sym_in, + ACTIONS(1135), 1, + anon_sym_QMARK, + ACTIONS(1137), 1, + anon_sym_AMP_AMP, + ACTIONS(1139), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1119), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1123), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1127), 2, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(1121), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1125), 4, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(876), 13, anon_sym_BEGIN, anon_sym_END, anon_sym_BEGINFILE, anon_sym_ENDFILE, - anon_sym_in, anon_sym_getline, - anon_sym_LT, - anon_sym_GT, anon_sym_PIPE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_BANG, + anon_sym_EQ, anon_sym_AT, sym_identifier, aux_sym_number_token1, anon_sym_function, anon_sym_func, - ACTIONS(724), 29, + ACTIONS(878), 21, + sym_concatenating_space, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_ATinclude, anon_sym_ATload, anon_sym_ATnamespace, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_PIPE_AMP, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_DOLLAR, + aux_sym_number_token2, + anon_sym_DQUOTE, + anon_sym_POUND, + [18059] = 12, + ACTIONS(1033), 1, + anon_sym_in, + ACTIONS(1039), 1, + anon_sym_AMP_AMP, + ACTIONS(1053), 1, anon_sym_QMARK, + ACTIONS(1055), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1143), 1, + sym__if_else_separator, + ACTIONS(1023), 2, anon_sym_CARET, anon_sym_STAR_STAR, + ACTIONS(1027), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1037), 2, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(1097), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(1025), 3, + anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(1035), 6, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(1141), 31, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_if, + anon_sym_LPAREN, + anon_sym_while, + anon_sym_do, + anon_sym_for, + sym_break_statement, + sym_continue_statement, + anon_sym_delete, + anon_sym_exit, + anon_sym_return, + anon_sym_switch, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_getline, + sym_next_statement, + sym_nextfile_statement, + anon_sym_print, + anon_sym_printf, + anon_sym_BANG, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_DOLLAR, - anon_sym_LBRACK, + anon_sym_AT, + sym_identifier, + aux_sym_number_token1, aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [20126] = 5, - ACTIONS(652), 1, - anon_sym_COLON_COLON, - ACTIONS(1173), 1, + [18137] = 9, + ACTIONS(1115), 1, + anon_sym_CARET, + ACTIONS(1117), 1, + anon_sym_STAR_STAR, + ACTIONS(1119), 2, anon_sym_LT, - ACTIONS(1175), 1, - anon_sym_LBRACK, - ACTIONS(678), 17, + anon_sym_GT, + ACTIONS(1123), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1127), 2, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(1121), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1125), 4, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(880), 14, anon_sym_BEGIN, anon_sym_END, anon_sym_BEGINFILE, anon_sym_ENDFILE, anon_sym_in, anon_sym_getline, - anon_sym_GT, anon_sym_PIPE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_BANG, + anon_sym_EQ, anon_sym_AT, sym_identifier, aux_sym_number_token1, anon_sym_function, anon_sym_func, - ACTIONS(680), 27, + ACTIONS(882), 24, + sym_concatenating_space, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_ATinclude, @@ -42558,80 +41148,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE_AMP, anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, anon_sym_DOLLAR, aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [20184] = 2, - ACTIONS(690), 18, + [18209] = 11, + ACTIONS(1115), 1, + anon_sym_CARET, + ACTIONS(1117), 1, + anon_sym_STAR_STAR, + ACTIONS(1133), 1, + anon_sym_in, + ACTIONS(1137), 1, + anon_sym_AMP_AMP, + ACTIONS(1119), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1123), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1127), 2, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(1121), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1125), 4, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(776), 13, anon_sym_BEGIN, anon_sym_END, anon_sym_BEGINFILE, anon_sym_ENDFILE, - anon_sym_in, anon_sym_getline, - anon_sym_LT, - anon_sym_GT, anon_sym_PIPE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_BANG, + anon_sym_EQ, anon_sym_AT, sym_identifier, aux_sym_number_token1, anon_sym_function, anon_sym_func, - ACTIONS(692), 29, + ACTIONS(778), 23, + sym_concatenating_space, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_ATinclude, anon_sym_ATload, anon_sym_ATnamespace, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_PIPE_AMP, anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, anon_sym_DOLLAR, - anon_sym_LBRACK, aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [20236] = 4, - ACTIONS(652), 1, - anon_sym_COLON_COLON, - ACTIONS(1175), 1, - anon_sym_LBRACK, - ACTIONS(678), 18, + [18285] = 5, + ACTIONS(1115), 1, + anon_sym_CARET, + ACTIONS(1117), 1, + anon_sym_STAR_STAR, + ACTIONS(1121), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(776), 18, anon_sym_BEGIN, anon_sym_END, anon_sym_BEGINFILE, @@ -42641,16 +41246,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_STAR, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, + anon_sym_EQ, anon_sym_AT, sym_identifier, aux_sym_number_token1, anon_sym_function, anon_sym_func, - ACTIONS(680), 27, + ACTIONS(778), 30, + sym_concatenating_space, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_ATinclude, @@ -42660,10 +41266,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE_AMP, anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, @@ -42674,31 +41276,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, anon_sym_DOLLAR, aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [20292] = 2, - ACTIONS(690), 18, + [18349] = 8, + ACTIONS(1115), 1, + anon_sym_CARET, + ACTIONS(1117), 1, + anon_sym_STAR_STAR, + ACTIONS(1119), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1123), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1121), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1125), 4, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(776), 14, anon_sym_BEGIN, anon_sym_END, anon_sym_BEGINFILE, anon_sym_ENDFILE, anon_sym_in, anon_sym_getline, - anon_sym_LT, - anon_sym_GT, anon_sym_PIPE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_BANG, + anon_sym_EQ, anon_sym_AT, sym_identifier, aux_sym_number_token1, anon_sym_function, anon_sym_func, - ACTIONS(692), 29, + ACTIONS(778), 26, sym_concatenating_space, ts_builtin_sym_end, anon_sym_COMMA, @@ -42709,27 +41332,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE_AMP, anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, anon_sym_TILDE, anon_sym_BANG_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, anon_sym_DOLLAR, - anon_sym_LBRACK, aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [20344] = 2, - ACTIONS(722), 18, + [18419] = 5, + ACTIONS(1045), 1, + anon_sym_EQ, + ACTIONS(1043), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1047), 6, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + ACTIONS(642), 21, anon_sym_BEGIN, anon_sym_END, anon_sym_BEGINFILE, @@ -42739,7 +41371,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, @@ -42748,7 +41383,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, anon_sym_function, anon_sym_func, - ACTIONS(724), 29, + ACTIONS(652), 23, sym_concatenating_space, ts_builtin_sym_end, anon_sym_COMMA, @@ -42759,10 +41394,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE_AMP, anon_sym_QMARK, - anon_sym_CARET, anon_sym_STAR_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, @@ -42771,36 +41403,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_DOLLAR, - anon_sym_LBRACK, aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [20396] = 3, - ACTIONS(1165), 1, - anon_sym_LBRACK, - ACTIONS(678), 18, + [18483] = 10, + ACTIONS(1115), 1, + anon_sym_CARET, + ACTIONS(1117), 1, + anon_sym_STAR_STAR, + ACTIONS(1133), 1, + anon_sym_in, + ACTIONS(1119), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1123), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1127), 2, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(1121), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1125), 4, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(776), 13, anon_sym_BEGIN, anon_sym_END, anon_sym_BEGINFILE, anon_sym_ENDFILE, - anon_sym_in, anon_sym_getline, - anon_sym_LT, - anon_sym_GT, anon_sym_PIPE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_BANG, + anon_sym_EQ, anon_sym_AT, sym_identifier, aux_sym_number_token1, anon_sym_function, anon_sym_func, - ACTIONS(680), 28, + ACTIONS(778), 24, sym_concatenating_space, ts_builtin_sym_end, anon_sym_COMMA, @@ -42811,48 +41457,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE_AMP, anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, anon_sym_DOLLAR, aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [20450] = 4, - ACTIONS(1163), 1, + [18557] = 15, + ACTIONS(1115), 1, + anon_sym_CARET, + ACTIONS(1117), 1, + anon_sym_STAR_STAR, + ACTIONS(1133), 1, + anon_sym_in, + ACTIONS(1135), 1, + anon_sym_QMARK, + ACTIONS(1137), 1, + anon_sym_AMP_AMP, + ACTIONS(1139), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1145), 1, + anon_sym_PIPE, + ACTIONS(1147), 1, + anon_sym_PIPE_AMP, + ACTIONS(1119), 2, anon_sym_LT, - ACTIONS(1165), 1, - anon_sym_LBRACK, - ACTIONS(678), 17, + anon_sym_GT, + ACTIONS(1123), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1127), 2, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(1121), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1125), 4, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(848), 12, anon_sym_BEGIN, anon_sym_END, anon_sym_BEGINFILE, anon_sym_ENDFILE, - anon_sym_in, anon_sym_getline, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_BANG, + anon_sym_EQ, anon_sym_AT, sym_identifier, aux_sym_number_token1, anon_sym_function, anon_sym_func, - ACTIONS(680), 28, + ACTIONS(864), 20, sym_concatenating_space, ts_builtin_sym_end, anon_sym_COMMA, @@ -42861,30 +41528,166 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATnamespace, anon_sym_LPAREN, anon_sym_LBRACE, - anon_sym_PIPE_AMP, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_DOLLAR, + aux_sym_number_token2, + anon_sym_DQUOTE, + anon_sym_POUND, + [18641] = 12, + ACTIONS(1033), 1, + anon_sym_in, + ACTIONS(1039), 1, + anon_sym_AMP_AMP, + ACTIONS(1053), 1, anon_sym_QMARK, + ACTIONS(1055), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1151), 1, + sym__if_else_separator, + ACTIONS(1023), 2, anon_sym_CARET, anon_sym_STAR_STAR, + ACTIONS(1027), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1037), 2, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(1097), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(1025), 3, + anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(1035), 6, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, + ACTIONS(1149), 31, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_if, + anon_sym_LPAREN, + anon_sym_while, + anon_sym_do, + anon_sym_for, + sym_break_statement, + sym_continue_statement, + anon_sym_delete, + anon_sym_exit, + anon_sym_return, + anon_sym_switch, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_getline, + sym_next_statement, + sym_nextfile_statement, + anon_sym_print, + anon_sym_printf, + anon_sym_BANG, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_DOLLAR, + anon_sym_AT, + sym_identifier, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DQUOTE, + anon_sym_POUND, + [18719] = 12, + ACTIONS(1033), 1, + anon_sym_in, + ACTIONS(1039), 1, anon_sym_AMP_AMP, + ACTIONS(1053), 1, + anon_sym_QMARK, + ACTIONS(1055), 1, anon_sym_PIPE_PIPE, + ACTIONS(1155), 1, + sym__if_else_separator, + ACTIONS(1023), 2, + anon_sym_CARET, + anon_sym_STAR_STAR, + ACTIONS(1027), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1037), 2, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(1097), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(1025), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1035), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1153), 31, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_if, + anon_sym_LPAREN, + anon_sym_while, + anon_sym_do, + anon_sym_for, + sym_break_statement, + sym_continue_statement, + anon_sym_delete, + anon_sym_exit, + anon_sym_return, + anon_sym_switch, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_getline, + sym_next_statement, + sym_nextfile_statement, + anon_sym_print, + anon_sym_printf, + anon_sym_BANG, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_DOLLAR, + anon_sym_AT, + sym_identifier, + aux_sym_number_token1, aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [20506] = 3, - ACTIONS(1177), 1, - sym_regex_flags, - ACTIONS(832), 18, + [18797] = 6, + ACTIONS(1059), 1, + anon_sym_EQ, + ACTIONS(1063), 1, + sym_concatenating_space, + ACTIONS(1057), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1061), 6, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + ACTIONS(642), 21, anon_sym_BEGIN, anon_sym_END, anon_sym_BEGINFILE, @@ -42894,7 +41697,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, @@ -42903,8 +41709,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, anon_sym_function, anon_sym_func, - ACTIONS(836), 28, - sym_concatenating_space, + ACTIONS(652), 22, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_ATinclude, @@ -42914,10 +41719,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE_AMP, anon_sym_QMARK, - anon_sym_CARET, anon_sym_STAR_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, @@ -42926,16 +41728,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_DOLLAR, aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [20560] = 3, - ACTIONS(1165), 1, - anon_sym_LBRACK, - ACTIONS(682), 18, + [18863] = 6, + ACTIONS(1115), 1, + anon_sym_CARET, + ACTIONS(1117), 1, + anon_sym_STAR_STAR, + ACTIONS(1123), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1121), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(776), 16, anon_sym_BEGIN, anon_sym_END, anon_sym_BEGINFILE, @@ -42945,16 +41754,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_BANG, + anon_sym_EQ, anon_sym_AT, sym_identifier, aux_sym_number_token1, anon_sym_function, anon_sym_func, - ACTIONS(684), 28, + ACTIONS(778), 30, sym_concatenating_space, ts_builtin_sym_end, anon_sym_COMMA, @@ -42965,10 +41772,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE_AMP, anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, @@ -42979,14 +41782,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, anon_sym_DOLLAR, aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [20614] = 3, - ACTIONS(1179), 1, - sym_regex_flags, - ACTIONS(826), 18, + [18929] = 6, + ACTIONS(1115), 1, + anon_sym_CARET, + ACTIONS(1117), 1, + anon_sym_STAR_STAR, + ACTIONS(1123), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1121), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(872), 16, anon_sym_BEGIN, anon_sym_END, anon_sym_BEGINFILE, @@ -42996,16 +41814,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_BANG, + anon_sym_EQ, anon_sym_AT, sym_identifier, aux_sym_number_token1, anon_sym_function, anon_sym_func, - ACTIONS(830), 28, + ACTIONS(874), 30, sym_concatenating_space, ts_builtin_sym_end, anon_sym_COMMA, @@ -43016,10 +41832,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE_AMP, anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, @@ -43030,231 +41842,573 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, anon_sym_DOLLAR, aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [20668] = 4, - ACTIONS(652), 1, - anon_sym_COLON_COLON, - ACTIONS(1175), 1, - anon_sym_LBRACK, - ACTIONS(682), 18, - anon_sym_BEGIN, - anon_sym_END, - anon_sym_BEGINFILE, - anon_sym_ENDFILE, - anon_sym_in, + [18995] = 21, + ACTIONS(137), 1, + sym_identifier, + ACTIONS(141), 1, + anon_sym_LPAREN, + ACTIONS(153), 1, anon_sym_getline, - anon_sym_LT, + ACTIONS(159), 1, + anon_sym_SLASH, + ACTIONS(165), 1, + anon_sym_DOLLAR, + ACTIONS(167), 1, + anon_sym_AT, + ACTIONS(171), 1, + anon_sym_DQUOTE, + ACTIONS(700), 1, + anon_sym_LPAREN2, + STATE(597), 1, + sym_ns_qualified_name, + STATE(614), 1, + sym_array_ref, + STATE(705), 1, + sym_field_ref, + STATE(718), 1, + aux_sym_exp_list_repeat1, + STATE(1385), 1, + sym__binary_in, + STATE(1956), 1, + sym_namespace, + ACTIONS(163), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(169), 2, + aux_sym_number_token1, + aux_sym_number_token2, + STATE(660), 2, + sym__print_args, + sym_exp_list, + ACTIONS(161), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + STATE(1420), 9, + sym_ternary_exp, + sym_binary_exp, + sym_unary_exp, + sym_string_concat, + sym_grouping, + sym__primitive, + sym_number, + sym_string, + sym_func_call, + STATE(1434), 10, + sym__getline_exp, + sym_getline_input, + sym_getline_file, + sym__exp, + sym_update_exp, + sym_assignment_exp, + sym_piped_io_exp, + sym_regex, + sym_regex_constant, + sym_indirect_func_call, + ACTIONS(660), 11, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, anon_sym_GT, + anon_sym_GT_GT, anon_sym_PIPE, - anon_sym_STAR, + anon_sym_PIPE_AMP, + anon_sym_POUND, + [19091] = 11, + ACTIONS(1083), 1, + anon_sym_in, + ACTIONS(1089), 1, + anon_sym_AMP_AMP, + ACTIONS(1093), 1, + anon_sym_QMARK, + ACTIONS(1095), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1077), 2, + anon_sym_CARET, + anon_sym_STAR_STAR, + ACTIONS(1081), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(1087), 2, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(1111), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(1079), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1085), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1153), 31, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_if, + anon_sym_LPAREN, + anon_sym_while, + anon_sym_do, + anon_sym_for, + sym_break_statement, + sym_continue_statement, + anon_sym_delete, + anon_sym_exit, + anon_sym_return, + anon_sym_switch, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_getline, + sym_next_statement, + sym_nextfile_statement, + anon_sym_print, + anon_sym_printf, anon_sym_BANG, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_DOLLAR, anon_sym_AT, sym_identifier, aux_sym_number_token1, - anon_sym_function, - anon_sym_func, - ACTIONS(684), 27, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_ATinclude, - anon_sym_ATload, - anon_sym_ATnamespace, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_PIPE_AMP, + aux_sym_number_token2, + anon_sym_DQUOTE, + anon_sym_POUND, + [19166] = 11, + ACTIONS(1083), 1, + anon_sym_in, + ACTIONS(1089), 1, + anon_sym_AMP_AMP, + ACTIONS(1093), 1, anon_sym_QMARK, + ACTIONS(1095), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1077), 2, anon_sym_CARET, anon_sym_STAR_STAR, + ACTIONS(1081), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1087), 2, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(1111), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(1079), 3, + anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(1085), 6, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(1141), 31, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_if, + anon_sym_LPAREN, + anon_sym_while, + anon_sym_do, + anon_sym_for, + sym_break_statement, + sym_continue_statement, + anon_sym_delete, + anon_sym_exit, + anon_sym_return, + anon_sym_switch, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_getline, + sym_next_statement, + sym_nextfile_statement, + anon_sym_print, + anon_sym_printf, + anon_sym_BANG, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_DOLLAR, + anon_sym_AT, + sym_identifier, + aux_sym_number_token1, aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [20724] = 3, - ACTIONS(1181), 2, - anon_sym_CARET, - anon_sym_STAR_STAR, - ACTIONS(792), 18, - anon_sym_BEGIN, - anon_sym_END, - anon_sym_BEGINFILE, - anon_sym_ENDFILE, + [19241] = 11, + ACTIONS(1083), 1, anon_sym_in, - anon_sym_getline, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_STAR, + ACTIONS(1089), 1, + anon_sym_AMP_AMP, + ACTIONS(1093), 1, + anon_sym_QMARK, + ACTIONS(1095), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1077), 2, + anon_sym_CARET, + anon_sym_STAR_STAR, + ACTIONS(1081), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_BANG, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - anon_sym_function, - anon_sym_func, - ACTIONS(794), 26, - sym_concatenating_space, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_ATinclude, - anon_sym_ATload, - anon_sym_ATnamespace, - anon_sym_LPAREN, - anon_sym_LBRACE, + ACTIONS(1087), 2, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(1111), 2, + anon_sym_PIPE, anon_sym_PIPE_AMP, - anon_sym_QMARK, + ACTIONS(1079), 3, + anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(1085), 6, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(1129), 31, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_if, + anon_sym_LPAREN, + anon_sym_while, + anon_sym_do, + anon_sym_for, + sym_break_statement, + sym_continue_statement, + anon_sym_delete, + anon_sym_exit, + anon_sym_return, + anon_sym_switch, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_getline, + sym_next_statement, + sym_nextfile_statement, + anon_sym_print, + anon_sym_printf, + anon_sym_BANG, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_DOLLAR, + anon_sym_AT, + sym_identifier, + aux_sym_number_token1, aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [20777] = 2, - ACTIONS(808), 18, - anon_sym_BEGIN, - anon_sym_END, - anon_sym_BEGINFILE, - anon_sym_ENDFILE, + [19316] = 11, + ACTIONS(1083), 1, anon_sym_in, - anon_sym_getline, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - anon_sym_function, - anon_sym_func, - ACTIONS(810), 28, - sym_concatenating_space, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_ATinclude, - anon_sym_ATload, - anon_sym_ATnamespace, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_PIPE_AMP, + ACTIONS(1089), 1, + anon_sym_AMP_AMP, + ACTIONS(1093), 1, anon_sym_QMARK, + ACTIONS(1095), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1077), 2, anon_sym_CARET, anon_sym_STAR_STAR, + ACTIONS(1081), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1087), 2, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(1111), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(1079), 3, + anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(1085), 6, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(1149), 31, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_if, + anon_sym_LPAREN, + anon_sym_while, + anon_sym_do, + anon_sym_for, + sym_break_statement, + sym_continue_statement, + anon_sym_delete, + anon_sym_exit, + anon_sym_return, + anon_sym_switch, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_getline, + sym_next_statement, + sym_nextfile_statement, + anon_sym_print, + anon_sym_printf, + anon_sym_BANG, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_DOLLAR, + anon_sym_AT, + sym_identifier, + aux_sym_number_token1, aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [20828] = 11, - ACTIONS(1183), 1, + [19391] = 11, + ACTIONS(1083), 1, anon_sym_in, - ACTIONS(1187), 1, - anon_sym_STAR, - ACTIONS(1197), 1, + ACTIONS(1089), 1, anon_sym_AMP_AMP, - ACTIONS(1181), 2, + ACTIONS(1093), 1, + anon_sym_QMARK, + ACTIONS(1095), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1077), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(1185), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1189), 2, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1191), 2, + ACTIONS(1081), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1195), 2, + ACTIONS(1087), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(1193), 4, + ACTIONS(1111), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(1079), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1085), 6, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(792), 12, - anon_sym_BEGIN, - anon_sym_END, - anon_sym_BEGINFILE, - anon_sym_ENDFILE, + ACTIONS(41), 31, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_if, + anon_sym_LPAREN, + anon_sym_while, + anon_sym_do, + anon_sym_for, + sym_break_statement, + sym_continue_statement, + anon_sym_delete, + anon_sym_exit, + anon_sym_return, + anon_sym_switch, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_getline, - anon_sym_PIPE, + sym_next_statement, + sym_nextfile_statement, + anon_sym_print, + anon_sym_printf, anon_sym_BANG, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_DOLLAR, anon_sym_AT, sym_identifier, aux_sym_number_token1, - anon_sym_function, - anon_sym_func, - ACTIONS(794), 17, - sym_concatenating_space, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_ATinclude, - anon_sym_ATload, - anon_sym_ATnamespace, + aux_sym_number_token2, + anon_sym_DQUOTE, + anon_sym_POUND, + [19466] = 22, + ACTIONS(81), 1, + anon_sym_DQUOTE, + ACTIONS(336), 1, + sym_identifier, + ACTIONS(354), 1, + anon_sym_getline, + ACTIONS(594), 1, anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_PIPE_PIPE, + ACTIONS(596), 1, + anon_sym_SLASH, + ACTIONS(600), 1, + anon_sym_DOLLAR, + ACTIONS(602), 1, + anon_sym_AT, + ACTIONS(664), 1, + anon_sym_LPAREN2, + ACTIONS(676), 1, + sym__if_else_separator, + STATE(672), 1, + sym_ns_qualified_name, + STATE(735), 1, + aux_sym_exp_list_repeat1, + STATE(740), 1, + sym_array_ref, + STATE(950), 1, + sym_field_ref, + STATE(1305), 1, + sym__binary_in, + STATE(2068), 1, + sym_namespace, + ACTIONS(79), 2, + aux_sym_number_token1, + aux_sym_number_token2, + ACTIONS(598), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + STATE(633), 2, + sym__print_args, + sym_exp_list, + ACTIONS(362), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + ACTIONS(660), 8, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_while, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + STATE(1461), 9, + sym_ternary_exp, + sym_binary_exp, + sym_unary_exp, + sym_string_concat, + sym_grouping, + sym__primitive, + sym_number, + sym_string, + sym_func_call, + STATE(1482), 10, + sym__getline_exp, + sym_getline_input, + sym_getline_file, + sym__exp, + sym_update_exp, + sym_assignment_exp, + sym_piped_io_exp, + sym_regex, + sym_regex_constant, + sym_indirect_func_call, + [19562] = 21, + ACTIONS(171), 1, + anon_sym_DQUOTE, + ACTIONS(270), 1, + sym_identifier, + ACTIONS(288), 1, + anon_sym_getline, + ACTIONS(608), 1, + anon_sym_LPAREN, + ACTIONS(610), 1, + anon_sym_SLASH, + ACTIONS(614), 1, anon_sym_DOLLAR, + ACTIONS(616), 1, + anon_sym_AT, + ACTIONS(700), 1, + anon_sym_LPAREN2, + STATE(720), 1, + sym_ns_qualified_name, + STATE(721), 1, + aux_sym_exp_list_repeat1, + STATE(991), 1, + sym_array_ref, + STATE(1194), 1, + sym_field_ref, + STATE(1385), 1, + sym__binary_in, + STATE(1956), 1, + sym_namespace, + ACTIONS(169), 2, + aux_sym_number_token1, aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [20897] = 4, - ACTIONS(1173), 1, - anon_sym_LT, - ACTIONS(1175), 1, - anon_sym_LBRACK, - ACTIONS(678), 17, + ACTIONS(612), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(660), 2, + sym__print_args, + sym_exp_list, + ACTIONS(296), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + ACTIONS(660), 8, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_while, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + STATE(1476), 9, + sym_ternary_exp, + sym_binary_exp, + sym_unary_exp, + sym_string_concat, + sym_grouping, + sym__primitive, + sym_number, + sym_string, + sym_func_call, + STATE(1535), 10, + sym__getline_exp, + sym_getline_input, + sym_getline_file, + sym__exp, + sym_update_exp, + sym_assignment_exp, + sym_piped_io_exp, + sym_regex, + sym_regex_constant, + sym_indirect_func_call, + [19655] = 5, + ACTIONS(1157), 1, + sym_identifier, + STATE(2061), 1, + sym_namespace, + STATE(519), 2, + sym_array_ref, + sym_ns_qualified_name, + ACTIONS(726), 17, anon_sym_BEGIN, anon_sym_END, anon_sym_BEGINFILE, anon_sym_ENDFILE, anon_sym_in, anon_sym_getline, + anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_STAR, @@ -43262,11 +42416,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_BANG, anon_sym_AT, - sym_identifier, aux_sym_number_token1, anon_sym_function, anon_sym_func, - ACTIONS(680), 27, + ACTIONS(728), 28, + sym_concatenating_space, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_ATinclude, @@ -43294,17 +42448,24 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [20952] = 3, - ACTIONS(1175), 1, - anon_sym_LBRACK, - ACTIONS(678), 18, + [19715] = 7, + ACTIONS(1159), 1, + sym_identifier, + ACTIONS(1161), 1, + anon_sym_LT, + STATE(517), 1, + sym_ns_qualified_name, + STATE(519), 1, + sym_array_ref, + STATE(2061), 1, + sym_namespace, + ACTIONS(726), 16, anon_sym_BEGIN, anon_sym_END, anon_sym_BEGINFILE, anon_sym_ENDFILE, anon_sym_in, anon_sym_getline, - anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_STAR, @@ -43312,11 +42473,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_BANG, anon_sym_AT, - sym_identifier, aux_sym_number_token1, anon_sym_function, anon_sym_func, - ACTIONS(680), 27, + ACTIONS(728), 28, + sym_concatenating_space, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_ATinclude, @@ -43344,8 +42505,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [21005] = 2, - ACTIONS(820), 18, + [19779] = 4, + ACTIONS(650), 1, + anon_sym_COLON_COLON, + ACTIONS(1163), 1, + anon_sym_LBRACK, + ACTIONS(692), 18, anon_sym_BEGIN, anon_sym_END, anon_sym_BEGINFILE, @@ -43364,7 +42529,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, anon_sym_function, anon_sym_func, - ACTIONS(822), 28, + ACTIONS(694), 28, sym_concatenating_space, ts_builtin_sym_end, anon_sym_COMMA, @@ -43393,25 +42558,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [21056] = 5, - ACTIONS(1187), 1, - anon_sym_STAR, - ACTIONS(1181), 2, - anon_sym_CARET, - anon_sym_STAR_STAR, - ACTIONS(1189), 2, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(792), 17, + [19836] = 5, + ACTIONS(650), 1, + anon_sym_COLON_COLON, + ACTIONS(1163), 1, + anon_sym_LBRACK, + ACTIONS(1165), 1, + anon_sym_LT, + ACTIONS(688), 17, anon_sym_BEGIN, anon_sym_END, anon_sym_BEGINFILE, anon_sym_ENDFILE, anon_sym_in, anon_sym_getline, - anon_sym_LT, anon_sym_GT, anon_sym_PIPE, + anon_sym_STAR, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, @@ -43420,7 +42583,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, anon_sym_function, anon_sym_func, - ACTIONS(794), 24, + ACTIONS(690), 28, sym_concatenating_space, ts_builtin_sym_end, anon_sym_COMMA, @@ -43431,65 +42594,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE_AMP, anon_sym_QMARK, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [21113] = 8, - ACTIONS(1187), 1, - anon_sym_STAR, - ACTIONS(1181), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(1185), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1189), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1191), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1193), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(792), 13, - anon_sym_BEGIN, - anon_sym_END, - anon_sym_BEGINFILE, - anon_sym_ENDFILE, - anon_sym_in, - anon_sym_getline, - anon_sym_PIPE, - anon_sym_BANG, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - anon_sym_function, - anon_sym_func, - ACTIONS(794), 20, - sym_concatenating_space, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_ATinclude, - anon_sym_ATload, - anon_sym_ATnamespace, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, anon_sym_TILDE, anon_sym_BANG_TILDE, anon_sym_AMP_AMP, @@ -43500,8 +42612,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [21176] = 2, - ACTIONS(792), 18, + [19895] = 5, + ACTIONS(1167), 1, + sym_identifier, + STATE(2027), 1, + sym_namespace, + STATE(556), 2, + sym_array_ref, + sym_ns_qualified_name, + ACTIONS(726), 17, anon_sym_BEGIN, anon_sym_END, anon_sym_BEGINFILE, @@ -43516,12 +42635,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_BANG, anon_sym_AT, - sym_identifier, aux_sym_number_token1, anon_sym_function, anon_sym_func, - ACTIONS(794), 28, - sym_concatenating_space, + ACTIONS(728), 27, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_ATinclude, @@ -43549,19 +42666,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [21227] = 6, - ACTIONS(1187), 1, - anon_sym_STAR, - ACTIONS(1181), 2, - anon_sym_CARET, - anon_sym_STAR_STAR, - ACTIONS(1189), 2, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1191), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(792), 15, + [19954] = 4, + ACTIONS(650), 1, + anon_sym_COLON_COLON, + ACTIONS(1163), 1, + anon_sym_LBRACK, + ACTIONS(688), 18, anon_sym_BEGIN, anon_sym_END, anon_sym_BEGINFILE, @@ -43571,13 +42681,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_BANG, anon_sym_AT, sym_identifier, aux_sym_number_token1, anon_sym_function, anon_sym_func, - ACTIONS(794), 24, + ACTIONS(690), 28, sym_concatenating_space, ts_builtin_sym_end, anon_sym_COMMA, @@ -43588,6 +42701,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE_AMP, anon_sym_QMARK, + anon_sym_CARET, + anon_sym_STAR_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, @@ -43602,36 +42719,35 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [21286] = 6, - ACTIONS(1187), 1, - anon_sym_STAR, - ACTIONS(1181), 2, - anon_sym_CARET, - anon_sym_STAR_STAR, - ACTIONS(1189), 2, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1191), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(880), 15, + [20011] = 7, + ACTIONS(1169), 1, + sym_identifier, + ACTIONS(1171), 1, + anon_sym_LT, + STATE(556), 1, + sym_array_ref, + STATE(557), 1, + sym_ns_qualified_name, + STATE(2027), 1, + sym_namespace, + ACTIONS(726), 16, anon_sym_BEGIN, anon_sym_END, anon_sym_BEGINFILE, anon_sym_ENDFILE, anon_sym_in, anon_sym_getline, - anon_sym_LT, anon_sym_GT, anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_BANG, anon_sym_AT, - sym_identifier, aux_sym_number_token1, anon_sym_function, anon_sym_func, - ACTIONS(882), 24, - sym_concatenating_space, + ACTIONS(728), 27, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_ATinclude, @@ -43641,69 +42757,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE_AMP, anon_sym_QMARK, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [21345] = 10, - ACTIONS(1183), 1, - anon_sym_in, - ACTIONS(1187), 1, - anon_sym_STAR, - ACTIONS(1181), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(1185), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1189), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1191), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1195), 2, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(1193), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(792), 12, - anon_sym_BEGIN, - anon_sym_END, - anon_sym_BEGINFILE, - anon_sym_ENDFILE, - anon_sym_getline, - anon_sym_PIPE, - anon_sym_BANG, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - anon_sym_function, - anon_sym_func, - ACTIONS(794), 18, - sym_concatenating_space, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_ATinclude, - anon_sym_ATload, - anon_sym_ATnamespace, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, + anon_sym_TILDE, + anon_sym_BANG_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_PLUS, @@ -43712,8 +42775,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [21412] = 2, - ACTIONS(780), 18, + [20074] = 2, + ACTIONS(720), 18, anon_sym_BEGIN, anon_sym_END, anon_sym_BEGINFILE, @@ -43732,7 +42795,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, anon_sym_function, anon_sym_func, - ACTIONS(782), 28, + ACTIONS(722), 29, sym_concatenating_space, ts_builtin_sym_end, anon_sym_COMMA, @@ -43758,11 +42821,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_DOLLAR, + anon_sym_LBRACK, aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [21463] = 2, - ACTIONS(750), 18, + [20126] = 3, + ACTIONS(1173), 1, + sym_regex_flags, + ACTIONS(826), 18, anon_sym_BEGIN, anon_sym_END, anon_sym_BEGINFILE, @@ -43781,7 +42847,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, anon_sym_function, anon_sym_func, - ACTIONS(752), 28, + ACTIONS(830), 28, + sym_concatenating_space, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_ATinclude, @@ -43789,7 +42856,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATnamespace, anon_sym_LPAREN, anon_sym_LBRACE, - anon_sym_COLON, anon_sym_PIPE_AMP, anon_sym_QMARK, anon_sym_CARET, @@ -43810,8 +42876,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [21514] = 2, - ACTIONS(760), 18, + [20180] = 3, + ACTIONS(1163), 1, + anon_sym_LBRACK, + ACTIONS(692), 18, anon_sym_BEGIN, anon_sym_END, anon_sym_BEGINFILE, @@ -43830,7 +42898,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, anon_sym_function, anon_sym_func, - ACTIONS(762), 28, + ACTIONS(694), 28, sym_concatenating_space, ts_builtin_sym_end, anon_sym_COMMA, @@ -43859,44 +42927,29 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [21565] = 9, - ACTIONS(1187), 1, - anon_sym_STAR, - ACTIONS(1181), 2, - anon_sym_CARET, - anon_sym_STAR_STAR, - ACTIONS(1185), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1189), 2, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1191), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1195), 2, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(1193), 4, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(840), 13, + [20234] = 3, + ACTIONS(1175), 1, + sym_regex_flags, + ACTIONS(832), 18, anon_sym_BEGIN, anon_sym_END, anon_sym_BEGINFILE, anon_sym_ENDFILE, anon_sym_in, anon_sym_getline, + anon_sym_LT, + anon_sym_GT, anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_BANG, anon_sym_AT, sym_identifier, aux_sym_number_token1, anon_sym_function, anon_sym_func, - ACTIONS(852), 18, + ACTIONS(836), 28, sym_concatenating_space, ts_builtin_sym_end, anon_sym_COMMA, @@ -43907,6 +42960,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE_AMP, anon_sym_QMARK, + anon_sym_CARET, + anon_sym_STAR_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_PLUS, @@ -43915,44 +42978,30 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [21630] = 9, - ACTIONS(1187), 1, - anon_sym_STAR, - ACTIONS(1181), 2, - anon_sym_CARET, - anon_sym_STAR_STAR, - ACTIONS(1185), 2, + [20288] = 4, + ACTIONS(1163), 1, + anon_sym_LBRACK, + ACTIONS(1165), 1, anon_sym_LT, - anon_sym_GT, - ACTIONS(1189), 2, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1191), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1195), 2, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(1193), 4, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(868), 13, + ACTIONS(688), 17, anon_sym_BEGIN, anon_sym_END, anon_sym_BEGINFILE, anon_sym_ENDFILE, anon_sym_in, anon_sym_getline, + anon_sym_GT, anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_BANG, anon_sym_AT, sym_identifier, aux_sym_number_token1, anon_sym_function, anon_sym_func, - ACTIONS(870), 18, + ACTIONS(690), 28, sym_concatenating_space, ts_builtin_sym_end, anon_sym_COMMA, @@ -43963,6 +43012,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE_AMP, anon_sym_QMARK, + anon_sym_CARET, + anon_sym_STAR_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_PLUS, @@ -43971,8 +43030,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [21695] = 2, - ACTIONS(812), 18, + [20344] = 4, + ACTIONS(650), 1, + anon_sym_COLON_COLON, + ACTIONS(1177), 1, + anon_sym_LBRACK, + ACTIONS(688), 18, anon_sym_BEGIN, anon_sym_END, anon_sym_BEGINFILE, @@ -43991,8 +43054,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, anon_sym_function, anon_sym_func, - ACTIONS(814), 28, - sym_concatenating_space, + ACTIONS(690), 27, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_ATinclude, @@ -44020,8 +43082,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [21746] = 2, - ACTIONS(750), 18, + [20400] = 3, + ACTIONS(1163), 1, + anon_sym_LBRACK, + ACTIONS(688), 18, anon_sym_BEGIN, anon_sym_END, anon_sym_BEGINFILE, @@ -44040,7 +43104,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, anon_sym_function, anon_sym_func, - ACTIONS(752), 28, + ACTIONS(690), 28, sym_concatenating_space, ts_builtin_sym_end, anon_sym_COMMA, @@ -44069,8 +43133,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [21797] = 2, - ACTIONS(776), 18, + [20454] = 2, + ACTIONS(678), 18, anon_sym_BEGIN, anon_sym_END, anon_sym_BEGINFILE, @@ -44089,7 +43153,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, anon_sym_function, anon_sym_func, - ACTIONS(778), 28, + ACTIONS(680), 29, sym_concatenating_space, ts_builtin_sym_end, anon_sym_COMMA, @@ -44115,18 +43179,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_DOLLAR, + anon_sym_LBRACK, aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [21848] = 2, - ACTIONS(784), 18, + [20506] = 5, + ACTIONS(650), 1, + anon_sym_COLON_COLON, + ACTIONS(1177), 1, + anon_sym_LBRACK, + ACTIONS(1179), 1, + anon_sym_LT, + ACTIONS(688), 17, anon_sym_BEGIN, anon_sym_END, anon_sym_BEGINFILE, anon_sym_ENDFILE, anon_sym_in, anon_sym_getline, - anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_STAR, @@ -44138,8 +43208,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, anon_sym_function, anon_sym_func, - ACTIONS(786), 28, - sym_concatenating_space, + ACTIONS(690), 27, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_ATinclude, @@ -44167,140 +43236,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [21899] = 19, - ACTIONS(39), 1, - sym_identifier, - ACTIONS(45), 1, - anon_sym_LPAREN, - ACTIONS(63), 1, - anon_sym_getline, - ACTIONS(69), 1, - anon_sym_SLASH, - ACTIONS(75), 1, - anon_sym_DOLLAR, - ACTIONS(77), 1, - anon_sym_AT, - ACTIONS(81), 1, - anon_sym_DQUOTE, - ACTIONS(922), 1, - sym__if_else_separator, - STATE(592), 1, - sym_ns_qualified_name, - STATE(603), 1, - sym_array_ref, - STATE(619), 1, - sym_field_ref, - STATE(1309), 1, - sym__binary_in, - STATE(2063), 1, - sym_namespace, - ACTIONS(73), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(79), 2, - aux_sym_number_token1, - aux_sym_number_token2, - ACTIONS(71), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - ACTIONS(920), 7, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - anon_sym_POUND, - STATE(1354), 9, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_string_concat, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - STATE(1457), 10, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_regex, - sym_regex_constant, - sym_indirect_func_call, - [21984] = 19, - ACTIONS(39), 1, - sym_identifier, - ACTIONS(45), 1, - anon_sym_LPAREN, - ACTIONS(63), 1, - anon_sym_getline, - ACTIONS(69), 1, - anon_sym_SLASH, - ACTIONS(75), 1, - anon_sym_DOLLAR, - ACTIONS(77), 1, - anon_sym_AT, - ACTIONS(81), 1, - anon_sym_DQUOTE, - ACTIONS(918), 1, - sym__if_else_separator, - STATE(592), 1, - sym_ns_qualified_name, - STATE(603), 1, - sym_array_ref, - STATE(619), 1, - sym_field_ref, - STATE(1309), 1, - sym__binary_in, - STATE(2063), 1, - sym_namespace, - ACTIONS(73), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(79), 2, - aux_sym_number_token1, - aux_sym_number_token2, - ACTIONS(71), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - ACTIONS(916), 7, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - anon_sym_POUND, - STATE(1354), 9, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_string_concat, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - STATE(1438), 10, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_regex, - sym_regex_constant, - sym_indirect_func_call, - [22069] = 2, - ACTIONS(800), 18, + [20564] = 2, + ACTIONS(678), 18, anon_sym_BEGIN, anon_sym_END, anon_sym_BEGINFILE, @@ -44319,14 +43256,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, anon_sym_function, anon_sym_func, - ACTIONS(802), 28, - sym_concatenating_space, + ACTIONS(680), 29, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_ATinclude, anon_sym_ATload, anon_sym_ATnamespace, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_PIPE_AMP, anon_sym_QMARK, @@ -44345,11 +43282,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_DOLLAR, + anon_sym_LBRACK, aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [22120] = 2, - ACTIONS(772), 18, + [20616] = 2, + ACTIONS(720), 18, anon_sym_BEGIN, anon_sym_END, anon_sym_BEGINFILE, @@ -44368,14 +43306,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, anon_sym_function, anon_sym_func, - ACTIONS(774), 28, - sym_concatenating_space, + ACTIONS(722), 29, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_ATinclude, anon_sym_ATload, anon_sym_ATnamespace, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_PIPE_AMP, anon_sym_QMARK, @@ -44394,58 +43332,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_DOLLAR, + anon_sym_LBRACK, aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [22171] = 15, - ACTIONS(1183), 1, - anon_sym_in, - ACTIONS(1187), 1, - anon_sym_STAR, - ACTIONS(1197), 1, - anon_sym_AMP_AMP, - ACTIONS(1199), 1, - anon_sym_PIPE, - ACTIONS(1201), 1, - anon_sym_PIPE_AMP, - ACTIONS(1203), 1, - anon_sym_QMARK, - ACTIONS(1205), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1181), 2, - anon_sym_CARET, - anon_sym_STAR_STAR, - ACTIONS(1185), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1189), 2, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1191), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1195), 2, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(1193), 4, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(854), 11, + [20668] = 4, + ACTIONS(650), 1, + anon_sym_COLON_COLON, + ACTIONS(1177), 1, + anon_sym_LBRACK, + ACTIONS(692), 18, anon_sym_BEGIN, anon_sym_END, anon_sym_BEGINFILE, anon_sym_ENDFILE, + anon_sym_in, anon_sym_getline, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_BANG, anon_sym_AT, sym_identifier, aux_sym_number_token1, anon_sym_function, anon_sym_func, - ACTIONS(866), 14, - sym_concatenating_space, + ACTIONS(694), 27, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_ATinclude, @@ -44453,16 +43368,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATnamespace, anon_sym_LPAREN, anon_sym_LBRACE, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_CARET, + anon_sym_STAR_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_DOLLAR, aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [22248] = 3, - ACTIONS(1175), 1, - anon_sym_LBRACK, - ACTIONS(682), 18, + [20724] = 3, + ACTIONS(1181), 1, + sym_regex_flags, + ACTIONS(826), 18, anon_sym_BEGIN, anon_sym_END, anon_sym_BEGINFILE, @@ -44481,7 +43410,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, anon_sym_function, anon_sym_func, - ACTIONS(684), 27, + ACTIONS(830), 27, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_ATinclude, @@ -44509,38 +43438,34 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [22301] = 13, + [20777] = 11, ACTIONS(1183), 1, anon_sym_in, - ACTIONS(1187), 1, + ACTIONS(1189), 1, anon_sym_STAR, - ACTIONS(1197), 1, + ACTIONS(1199), 1, anon_sym_AMP_AMP, - ACTIONS(1203), 1, - anon_sym_QMARK, - ACTIONS(1205), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1181), 2, - anon_sym_CARET, - anon_sym_STAR_STAR, ACTIONS(1185), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1189), 2, + ACTIONS(1187), 2, + anon_sym_CARET, + anon_sym_STAR_STAR, + ACTIONS(1191), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1191), 2, + ACTIONS(1193), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1195), 2, + ACTIONS(1197), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(1193), 4, + ACTIONS(1195), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(876), 12, + ACTIONS(776), 12, anon_sym_BEGIN, anon_sym_END, anon_sym_BEGINFILE, @@ -44553,7 +43478,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, anon_sym_function, anon_sym_func, - ACTIONS(878), 15, + ACTIONS(778), 17, sym_concatenating_space, ts_builtin_sym_end, anon_sym_COMMA, @@ -44563,35 +43488,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_PIPE_PIPE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_DOLLAR, aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [22374] = 3, - ACTIONS(1207), 1, - sym_regex_flags, - ACTIONS(832), 18, + [20846] = 8, + ACTIONS(1189), 1, + anon_sym_STAR, + ACTIONS(1185), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1187), 2, + anon_sym_CARET, + anon_sym_STAR_STAR, + ACTIONS(1191), 2, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1193), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1195), 4, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(776), 13, anon_sym_BEGIN, anon_sym_END, anon_sym_BEGINFILE, anon_sym_ENDFILE, anon_sym_in, anon_sym_getline, - anon_sym_LT, - anon_sym_GT, anon_sym_PIPE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_BANG, anon_sym_AT, sym_identifier, aux_sym_number_token1, anon_sym_function, anon_sym_func, - ACTIONS(836), 27, + ACTIONS(778), 20, + sym_concatenating_space, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_ATinclude, @@ -44601,14 +43541,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE_AMP, anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, anon_sym_TILDE, anon_sym_BANG_TILDE, anon_sym_AMP_AMP, @@ -44619,8 +43551,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [22427] = 2, - ACTIONS(796), 18, + [20909] = 3, + ACTIONS(1187), 2, + anon_sym_CARET, + anon_sym_STAR_STAR, + ACTIONS(776), 18, anon_sym_BEGIN, anon_sym_END, anon_sym_BEGINFILE, @@ -44639,7 +43574,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, anon_sym_function, anon_sym_func, - ACTIONS(798), 28, + ACTIONS(778), 26, sym_concatenating_space, ts_builtin_sym_end, anon_sym_COMMA, @@ -44650,8 +43585,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE_AMP, anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT_EQ, @@ -44668,8 +43601,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [22478] = 2, - ACTIONS(746), 18, + [20962] = 2, + ACTIONS(772), 18, anon_sym_BEGIN, anon_sym_END, anon_sym_BEGINFILE, @@ -44688,7 +43621,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, anon_sym_function, anon_sym_func, - ACTIONS(748), 28, + ACTIONS(774), 28, sym_concatenating_space, ts_builtin_sym_end, anon_sym_COMMA, @@ -44717,8 +43650,81 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [22529] = 2, - ACTIONS(788), 18, + [21013] = 15, + ACTIONS(1183), 1, + anon_sym_in, + ACTIONS(1189), 1, + anon_sym_STAR, + ACTIONS(1199), 1, + anon_sym_AMP_AMP, + ACTIONS(1201), 1, + anon_sym_PIPE, + ACTIONS(1203), 1, + anon_sym_PIPE_AMP, + ACTIONS(1205), 1, + anon_sym_QMARK, + ACTIONS(1207), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1185), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1187), 2, + anon_sym_CARET, + anon_sym_STAR_STAR, + ACTIONS(1191), 2, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1193), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1197), 2, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(1195), 4, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(848), 11, + anon_sym_BEGIN, + anon_sym_END, + anon_sym_BEGINFILE, + anon_sym_ENDFILE, + anon_sym_getline, + anon_sym_BANG, + anon_sym_AT, + sym_identifier, + aux_sym_number_token1, + anon_sym_function, + anon_sym_func, + ACTIONS(864), 14, + sym_concatenating_space, + ts_builtin_sym_end, + anon_sym_COMMA, + anon_sym_ATinclude, + anon_sym_ATload, + anon_sym_ATnamespace, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_DOLLAR, + aux_sym_number_token2, + anon_sym_DQUOTE, + anon_sym_POUND, + [21090] = 6, + ACTIONS(1189), 1, + anon_sym_STAR, + ACTIONS(1187), 2, + anon_sym_CARET, + anon_sym_STAR_STAR, + ACTIONS(1191), 2, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1193), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(776), 15, anon_sym_BEGIN, anon_sym_END, anon_sym_BEGINFILE, @@ -44728,16 +43734,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_BANG, anon_sym_AT, sym_identifier, aux_sym_number_token1, anon_sym_function, anon_sym_func, - ACTIONS(790), 28, + ACTIONS(778), 24, sym_concatenating_space, ts_builtin_sym_end, anon_sym_COMMA, @@ -44748,10 +43751,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE_AMP, anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, @@ -44766,62 +43765,66 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [22580] = 5, - ACTIONS(710), 1, - sym_identifier, - STATE(2063), 1, - sym_namespace, - ACTIONS(714), 2, - sym_concatenating_space, - sym__if_else_separator, - STATE(171), 2, - sym_array_ref, - sym_ns_qualified_name, - ACTIONS(712), 40, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_while, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, + [21149] = 9, + ACTIONS(1189), 1, + anon_sym_STAR, + ACTIONS(1185), 2, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, + ACTIONS(1187), 2, anon_sym_CARET, anon_sym_STAR_STAR, - anon_sym_STAR, + ACTIONS(1191), 2, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(1193), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(1197), 2, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(1195), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, + ACTIONS(868), 13, + anon_sym_BEGIN, + anon_sym_END, + anon_sym_BEGINFILE, + anon_sym_ENDFILE, + anon_sym_in, + anon_sym_getline, + anon_sym_PIPE, + anon_sym_BANG, + anon_sym_AT, + sym_identifier, + aux_sym_number_token1, + anon_sym_function, + anon_sym_func, + ACTIONS(870), 18, + sym_concatenating_space, + ts_builtin_sym_end, + anon_sym_COMMA, + anon_sym_ATinclude, + anon_sym_ATload, + anon_sym_ATnamespace, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_PIPE_AMP, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, + anon_sym_DOLLAR, + aux_sym_number_token2, + anon_sym_DQUOTE, anon_sym_POUND, - [22637] = 3, - ACTIONS(1209), 1, - sym_regex_flags, - ACTIONS(826), 18, + [21214] = 3, + ACTIONS(1177), 1, + anon_sym_LBRACK, + ACTIONS(692), 18, anon_sym_BEGIN, anon_sym_END, anon_sym_BEGINFILE, @@ -44840,7 +43843,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, anon_sym_function, anon_sym_func, - ACTIONS(830), 27, + ACTIONS(694), 27, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_ATinclude, @@ -44868,10 +43871,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [22690] = 3, - ACTIONS(1063), 1, - sym_concatenating_space, - ACTIONS(644), 18, + [21267] = 2, + ACTIONS(816), 18, anon_sym_BEGIN, anon_sym_END, anon_sym_BEGINFILE, @@ -44890,7 +43891,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, anon_sym_function, anon_sym_func, - ACTIONS(658), 27, + ACTIONS(818), 28, + sym_concatenating_space, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_ATinclude, @@ -44918,8 +43920,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [22743] = 2, - ACTIONS(768), 18, + [21318] = 2, + ACTIONS(738), 18, anon_sym_BEGIN, anon_sym_END, anon_sym_BEGINFILE, @@ -44938,7 +43940,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, anon_sym_function, anon_sym_func, - ACTIONS(770), 28, + ACTIONS(740), 28, sym_concatenating_space, ts_builtin_sym_end, anon_sym_COMMA, @@ -44967,8 +43969,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [22794] = 2, - ACTIONS(682), 18, + [21369] = 2, + ACTIONS(780), 18, anon_sym_BEGIN, anon_sym_END, anon_sym_BEGINFILE, @@ -44987,7 +43989,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, anon_sym_function, anon_sym_func, - ACTIONS(684), 28, + ACTIONS(782), 28, sym_concatenating_space, ts_builtin_sym_end, anon_sym_COMMA, @@ -45016,8 +44018,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [22845] = 4, - ACTIONS(644), 7, + [21420] = 4, + ACTIONS(642), 7, anon_sym_in, anon_sym_LT, anon_sym_GT, @@ -45025,7 +44027,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(642), 11, + ACTIONS(654), 11, anon_sym_BEGIN, anon_sym_END, anon_sym_BEGINFILE, @@ -45037,22 +44039,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, anon_sym_function, anon_sym_func, - ACTIONS(654), 14, - sym_concatenating_space, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_ATinclude, - anon_sym_ATload, - anon_sym_ATnamespace, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - ACTIONS(658), 14, + ACTIONS(652), 14, anon_sym_PIPE_AMP, anon_sym_QMARK, anon_sym_CARET, @@ -45067,8 +44054,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [22900] = 2, - ACTIONS(796), 18, + ACTIONS(658), 14, + sym_concatenating_space, + ts_builtin_sym_end, + anon_sym_COMMA, + anon_sym_ATinclude, + anon_sym_ATload, + anon_sym_ATnamespace, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_DOLLAR, + aux_sym_number_token2, + anon_sym_DQUOTE, + anon_sym_POUND, + [21475] = 3, + ACTIONS(1063), 1, + sym_concatenating_space, + ACTIONS(642), 18, anon_sym_BEGIN, anon_sym_END, anon_sym_BEGINFILE, @@ -45087,7 +44091,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, anon_sym_function, anon_sym_func, - ACTIONS(798), 28, + ACTIONS(652), 27, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_ATinclude, @@ -45095,7 +44099,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATnamespace, anon_sym_LPAREN, anon_sym_LBRACE, - anon_sym_COLON, anon_sym_PIPE_AMP, anon_sym_QMARK, anon_sym_CARET, @@ -45116,8 +44119,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [22951] = 2, - ACTIONS(804), 18, + [21528] = 2, + ACTIONS(768), 18, anon_sym_BEGIN, anon_sym_END, anon_sym_BEGINFILE, @@ -45136,7 +44139,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, anon_sym_function, anon_sym_func, - ACTIONS(806), 28, + ACTIONS(770), 28, sym_concatenating_space, ts_builtin_sym_end, anon_sym_COMMA, @@ -45165,8 +44168,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [23002] = 2, - ACTIONS(816), 18, + [21579] = 2, + ACTIONS(754), 18, anon_sym_BEGIN, anon_sym_END, anon_sym_BEGINFILE, @@ -45185,7 +44188,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, anon_sym_function, anon_sym_func, - ACTIONS(818), 28, + ACTIONS(756), 28, sym_concatenating_space, ts_builtin_sym_end, anon_sym_COMMA, @@ -45214,62 +44217,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [23053] = 8, - ACTIONS(650), 1, - anon_sym_LBRACK, - ACTIONS(652), 1, - anon_sym_COLON_COLON, - ACTIONS(1211), 1, - anon_sym_LPAREN2, - ACTIONS(648), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(654), 2, - sym_concatenating_space, - sym__if_else_separator, - ACTIONS(732), 7, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - ACTIONS(642), 10, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_while, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - anon_sym_GT_GT, - anon_sym_POUND, - ACTIONS(644), 21, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [23115] = 2, - ACTIONS(760), 18, + [21630] = 2, + ACTIONS(738), 18, anon_sym_BEGIN, anon_sym_END, anon_sym_BEGINFILE, @@ -45288,7 +44237,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, anon_sym_function, anon_sym_func, - ACTIONS(762), 27, + ACTIONS(740), 28, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_ATinclude, @@ -45296,6 +44245,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATnamespace, anon_sym_LPAREN, anon_sym_LBRACE, + anon_sym_COLON, anon_sym_PIPE_AMP, anon_sym_QMARK, anon_sym_CARET, @@ -45316,8 +44266,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [23165] = 2, - ACTIONS(816), 18, + [21681] = 2, + ACTIONS(790), 18, anon_sym_BEGIN, anon_sym_END, anon_sym_BEGINFILE, @@ -45336,7 +44286,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, anon_sym_function, anon_sym_func, - ACTIONS(818), 27, + ACTIONS(792), 28, + sym_concatenating_space, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_ATinclude, @@ -45364,8 +44315,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [23215] = 2, - ACTIONS(784), 18, + [21732] = 2, + ACTIONS(776), 18, anon_sym_BEGIN, anon_sym_END, anon_sym_BEGINFILE, @@ -45384,7 +44335,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, anon_sym_function, anon_sym_func, - ACTIONS(786), 27, + ACTIONS(778), 28, + sym_concatenating_space, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_ATinclude, @@ -45412,8 +44364,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [23265] = 2, - ACTIONS(776), 18, + [21783] = 2, + ACTIONS(812), 18, anon_sym_BEGIN, anon_sym_END, anon_sym_BEGINFILE, @@ -45432,7 +44384,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, anon_sym_function, anon_sym_func, - ACTIONS(778), 27, + ACTIONS(814), 28, + sym_concatenating_space, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_ATinclude, @@ -45460,42 +44413,44 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [23315] = 18, - ACTIONS(85), 1, + [21834] = 19, + ACTIONS(39), 1, sym_identifier, - ACTIONS(89), 1, + ACTIONS(45), 1, anon_sym_LPAREN, - ACTIONS(107), 1, + ACTIONS(63), 1, anon_sym_getline, - ACTIONS(113), 1, + ACTIONS(69), 1, anon_sym_SLASH, - ACTIONS(119), 1, + ACTIONS(75), 1, anon_sym_DOLLAR, - ACTIONS(121), 1, + ACTIONS(77), 1, anon_sym_AT, - ACTIONS(125), 1, + ACTIONS(81), 1, anon_sym_DQUOTE, - STATE(607), 1, + ACTIONS(979), 1, + sym__if_else_separator, + STATE(590), 1, sym_ns_qualified_name, - STATE(610), 1, + STATE(601), 1, sym_array_ref, - STATE(703), 1, + STATE(632), 1, sym_field_ref, - STATE(1373), 1, + STATE(1305), 1, sym__binary_in, - STATE(1955), 1, + STATE(2068), 1, sym_namespace, - ACTIONS(117), 2, + ACTIONS(73), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(123), 2, + ACTIONS(79), 2, aux_sym_number_token1, aux_sym_number_token2, - ACTIONS(115), 3, + ACTIONS(71), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, - ACTIONS(916), 7, + ACTIONS(977), 7, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, @@ -45503,7 +44458,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_case, anon_sym_default, anon_sym_POUND, - STATE(1421), 9, + STATE(1371), 9, sym_ternary_exp, sym_binary_exp, sym_unary_exp, @@ -45513,7 +44468,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_string, sym_func_call, - STATE(1492), 10, + STATE(1441), 10, sym__getline_exp, sym_getline_input, sym_getline_file, @@ -45524,27 +44479,46 @@ static const uint16_t ts_small_parse_table[] = { sym_regex, sym_regex_constant, sym_indirect_func_call, - [23397] = 2, - ACTIONS(804), 18, + [21919] = 10, + ACTIONS(1183), 1, + anon_sym_in, + ACTIONS(1189), 1, + anon_sym_STAR, + ACTIONS(1185), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1187), 2, + anon_sym_CARET, + anon_sym_STAR_STAR, + ACTIONS(1191), 2, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1193), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1197), 2, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(1195), 4, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(776), 12, anon_sym_BEGIN, anon_sym_END, anon_sym_BEGINFILE, anon_sym_ENDFILE, - anon_sym_in, anon_sym_getline, - anon_sym_LT, - anon_sym_GT, anon_sym_PIPE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_BANG, anon_sym_AT, sym_identifier, aux_sym_number_token1, anon_sym_function, anon_sym_func, - ACTIONS(806), 27, + ACTIONS(778), 18, + sym_concatenating_space, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_ATinclude, @@ -45554,16 +44528,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE_AMP, anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_PLUS, @@ -45572,42 +44536,44 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [23447] = 18, - ACTIONS(85), 1, + [21986] = 19, + ACTIONS(39), 1, sym_identifier, - ACTIONS(89), 1, + ACTIONS(45), 1, anon_sym_LPAREN, - ACTIONS(107), 1, + ACTIONS(63), 1, anon_sym_getline, - ACTIONS(113), 1, + ACTIONS(69), 1, anon_sym_SLASH, - ACTIONS(119), 1, + ACTIONS(75), 1, anon_sym_DOLLAR, - ACTIONS(121), 1, + ACTIONS(77), 1, anon_sym_AT, - ACTIONS(125), 1, + ACTIONS(81), 1, anon_sym_DQUOTE, - STATE(607), 1, + ACTIONS(975), 1, + sym__if_else_separator, + STATE(590), 1, sym_ns_qualified_name, - STATE(610), 1, + STATE(601), 1, sym_array_ref, - STATE(703), 1, + STATE(632), 1, sym_field_ref, - STATE(1373), 1, + STATE(1305), 1, sym__binary_in, - STATE(1955), 1, + STATE(2068), 1, sym_namespace, - ACTIONS(117), 2, + ACTIONS(73), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(123), 2, + ACTIONS(79), 2, aux_sym_number_token1, aux_sym_number_token2, - ACTIONS(115), 3, + ACTIONS(71), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, - ACTIONS(920), 7, + ACTIONS(973), 7, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, @@ -45615,7 +44581,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_case, anon_sym_default, anon_sym_POUND, - STATE(1421), 9, + STATE(1371), 9, sym_ternary_exp, sym_binary_exp, sym_unary_exp, @@ -45625,7 +44591,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_string, sym_func_call, - STATE(1494), 10, + STATE(1442), 10, sym__getline_exp, sym_getline_input, sym_getline_file, @@ -45636,203 +44602,35 @@ static const uint16_t ts_small_parse_table[] = { sym_regex, sym_regex_constant, sym_indirect_func_call, - [23529] = 2, - ACTIONS(808), 18, - anon_sym_BEGIN, - anon_sym_END, - anon_sym_BEGINFILE, - anon_sym_ENDFILE, - anon_sym_in, - anon_sym_getline, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - anon_sym_function, - anon_sym_func, - ACTIONS(810), 27, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_ATinclude, - anon_sym_ATload, - anon_sym_ATnamespace, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [23579] = 7, - ACTIONS(1213), 1, - sym_identifier, - ACTIONS(1215), 1, - anon_sym_LT, - STATE(171), 1, - sym_array_ref, - STATE(605), 1, - sym_ns_qualified_name, - STATE(2063), 1, - sym_namespace, - ACTIONS(714), 2, - sym_concatenating_space, - sym__if_else_separator, - ACTIONS(712), 38, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_POUND, - [23639] = 2, - ACTIONS(768), 18, - anon_sym_BEGIN, - anon_sym_END, - anon_sym_BEGINFILE, - anon_sym_ENDFILE, - anon_sym_in, - anon_sym_getline, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - anon_sym_function, - anon_sym_func, - ACTIONS(770), 27, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_ATinclude, - anon_sym_ATload, - anon_sym_ATnamespace, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [23689] = 15, - ACTIONS(1183), 1, - anon_sym_in, - ACTIONS(1187), 1, + [22071] = 5, + ACTIONS(1189), 1, anon_sym_STAR, - ACTIONS(1197), 1, - anon_sym_AMP_AMP, - ACTIONS(1203), 1, - anon_sym_QMARK, - ACTIONS(1205), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1217), 1, - anon_sym_PIPE, - ACTIONS(1219), 1, - anon_sym_PIPE_AMP, - ACTIONS(1181), 2, + ACTIONS(1187), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(1185), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1189), 2, - anon_sym_SLASH, - anon_sym_PERCENT, ACTIONS(1191), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1195), 2, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(1193), 4, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(854), 11, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(776), 17, anon_sym_BEGIN, anon_sym_END, anon_sym_BEGINFILE, anon_sym_ENDFILE, + anon_sym_in, anon_sym_getline, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_BANG, anon_sym_AT, sym_identifier, aux_sym_number_token1, anon_sym_function, anon_sym_func, - ACTIONS(866), 13, + ACTIONS(778), 24, + sym_concatenating_space, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_ATinclude, @@ -45840,76 +44638,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATnamespace, anon_sym_LPAREN, anon_sym_LBRACE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [23765] = 16, - ACTIONS(1183), 1, - anon_sym_in, - ACTIONS(1187), 1, - anon_sym_STAR, - ACTIONS(1197), 1, - anon_sym_AMP_AMP, - ACTIONS(1203), 1, - anon_sym_QMARK, - ACTIONS(1205), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1217), 1, - anon_sym_PIPE, - ACTIONS(1219), 1, anon_sym_PIPE_AMP, - ACTIONS(1225), 1, - anon_sym_COMMA, - ACTIONS(1181), 2, - anon_sym_CARET, - anon_sym_STAR_STAR, - ACTIONS(1185), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1189), 2, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1191), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1195), 2, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(1193), 4, + anon_sym_QMARK, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1223), 11, - anon_sym_BEGIN, - anon_sym_END, - anon_sym_BEGINFILE, - anon_sym_ENDFILE, - anon_sym_getline, - anon_sym_BANG, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - anon_sym_function, - anon_sym_func, - ACTIONS(1221), 12, - ts_builtin_sym_end, - anon_sym_ATinclude, - anon_sym_ATload, - anon_sym_ATnamespace, - anon_sym_LPAREN, - anon_sym_LBRACE, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_DOLLAR, aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [23843] = 2, - ACTIONS(780), 18, + [22128] = 3, + ACTIONS(1209), 1, + sym_regex_flags, + ACTIONS(832), 18, anon_sym_BEGIN, anon_sym_END, anon_sym_BEGINFILE, @@ -45928,7 +44676,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, anon_sym_function, anon_sym_func, - ACTIONS(782), 27, + ACTIONS(836), 27, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_ATinclude, @@ -45956,39 +44704,41 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [23893] = 5, - ACTIONS(714), 1, - sym_concatenating_space, - ACTIONS(824), 1, - sym_identifier, - STATE(1955), 1, - sym_namespace, - STATE(192), 2, - sym_array_ref, - sym_ns_qualified_name, - ACTIONS(712), 40, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_while, + [22181] = 2, + ACTIONS(786), 18, + anon_sym_BEGIN, + anon_sym_END, + anon_sym_BEGINFILE, + anon_sym_ENDFILE, anon_sym_in, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, + anon_sym_getline, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_AT, + sym_identifier, + aux_sym_number_token1, + anon_sym_function, + anon_sym_func, + ACTIONS(788), 28, + sym_concatenating_space, + ts_builtin_sym_end, + anon_sym_COMMA, + anon_sym_ATinclude, + anon_sym_ATload, + anon_sym_ATnamespace, + anon_sym_LPAREN, + anon_sym_LBRACE, anon_sym_PIPE_AMP, anon_sym_QMARK, anon_sym_CARET, anon_sym_STAR_STAR, - anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, @@ -45999,16 +44749,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, + anon_sym_DOLLAR, + aux_sym_number_token2, + anon_sym_DQUOTE, anon_sym_POUND, - [23949] = 2, - ACTIONS(682), 18, + [22232] = 2, + ACTIONS(794), 18, anon_sym_BEGIN, anon_sym_END, anon_sym_BEGINFILE, @@ -46027,7 +44773,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, anon_sym_function, anon_sym_func, - ACTIONS(684), 27, + ACTIONS(796), 28, + sym_concatenating_space, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_ATinclude, @@ -46055,7 +44802,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [23999] = 2, + [22283] = 2, ACTIONS(746), 18, anon_sym_BEGIN, anon_sym_END, @@ -46075,7 +44822,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, anon_sym_function, anon_sym_func, - ACTIONS(748), 27, + ACTIONS(748), 28, + sym_concatenating_space, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_ATinclude, @@ -46103,93 +44851,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [24049] = 15, - ACTIONS(1183), 1, - anon_sym_in, - ACTIONS(1187), 1, - anon_sym_STAR, - ACTIONS(1197), 1, - anon_sym_AMP_AMP, - ACTIONS(1203), 1, - anon_sym_QMARK, - ACTIONS(1205), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1217), 1, - anon_sym_PIPE, - ACTIONS(1219), 1, - anon_sym_PIPE_AMP, - ACTIONS(1181), 2, - anon_sym_CARET, - anon_sym_STAR_STAR, - ACTIONS(1185), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1189), 2, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1191), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1195), 2, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(1193), 4, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1229), 11, + [22334] = 2, + ACTIONS(750), 18, anon_sym_BEGIN, anon_sym_END, anon_sym_BEGINFILE, anon_sym_ENDFILE, + anon_sym_in, anon_sym_getline, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_BANG, anon_sym_AT, sym_identifier, aux_sym_number_token1, anon_sym_function, anon_sym_func, - ACTIONS(1227), 12, + ACTIONS(752), 28, + sym_concatenating_space, ts_builtin_sym_end, + anon_sym_COMMA, anon_sym_ATinclude, anon_sym_ATload, anon_sym_ATnamespace, anon_sym_LPAREN, anon_sym_LBRACE, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_CARET, + anon_sym_STAR_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_DOLLAR, aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [24124] = 8, - ACTIONS(650), 1, - anon_sym_LBRACK, - ACTIONS(652), 1, - anon_sym_COLON_COLON, - ACTIONS(658), 1, - sym__if_else_separator, - ACTIONS(1211), 1, - anon_sym_LPAREN2, - ACTIONS(1235), 1, + [22385] = 5, + ACTIONS(724), 1, + sym_identifier, + STATE(2068), 1, + sym_namespace, + ACTIONS(728), 2, sym_concatenating_space, - ACTIONS(1231), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1233), 7, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - ACTIONS(644), 30, + sym__if_else_separator, + STATE(166), 2, + sym_array_ref, + sym_ns_qualified_name, + ACTIONS(726), 40, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, + anon_sym_while, anon_sym_in, anon_sym_RBRACE, anon_sym_case, @@ -46215,21 +44942,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_POUND, - [24185] = 7, - ACTIONS(650), 1, - anon_sym_LBRACK, - ACTIONS(652), 1, - anon_sym_COLON_COLON, - ACTIONS(1211), 1, - anon_sym_LPAREN2, - ACTIONS(658), 2, - sym_concatenating_space, - sym__if_else_separator, - ACTIONS(1237), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1239), 7, anon_sym_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -46237,82 +44951,103 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_CARET_EQ, - ACTIONS(644), 30, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, + anon_sym_POUND, + [22442] = 13, + ACTIONS(1183), 1, anon_sym_in, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, + ACTIONS(1189), 1, + anon_sym_STAR, + ACTIONS(1199), 1, + anon_sym_AMP_AMP, + ACTIONS(1205), 1, + anon_sym_QMARK, + ACTIONS(1207), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1185), 2, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, + ACTIONS(1187), 2, anon_sym_CARET, anon_sym_STAR_STAR, - anon_sym_STAR, + ACTIONS(1191), 2, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(1193), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(1197), 2, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(1195), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_POUND, - [24244] = 8, - ACTIONS(652), 1, - anon_sym_COLON_COLON, - ACTIONS(654), 1, + ACTIONS(876), 12, + anon_sym_BEGIN, + anon_sym_END, + anon_sym_BEGINFILE, + anon_sym_ENDFILE, + anon_sym_getline, + anon_sym_PIPE, + anon_sym_BANG, + anon_sym_AT, + sym_identifier, + aux_sym_number_token1, + anon_sym_function, + anon_sym_func, + ACTIONS(878), 15, sym_concatenating_space, - ACTIONS(688), 1, - anon_sym_LBRACK, - ACTIONS(1241), 1, - anon_sym_LPAREN2, - ACTIONS(648), 2, + ts_builtin_sym_end, + anon_sym_COMMA, + anon_sym_ATinclude, + anon_sym_ATload, + anon_sym_ATnamespace, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_PIPE_AMP, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(732), 7, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - ACTIONS(642), 10, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_while, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - anon_sym_GT_GT, + anon_sym_DOLLAR, + aux_sym_number_token2, + anon_sym_DQUOTE, anon_sym_POUND, - ACTIONS(644), 21, + [22515] = 3, + ACTIONS(1177), 1, + anon_sym_LBRACK, + ACTIONS(688), 18, + anon_sym_BEGIN, + anon_sym_END, + anon_sym_BEGINFILE, + anon_sym_ENDFILE, anon_sym_in, + anon_sym_getline, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_AT, + sym_identifier, + aux_sym_number_token1, + anon_sym_function, + anon_sym_func, + ACTIONS(690), 27, + ts_builtin_sym_end, + anon_sym_COMMA, + anon_sym_ATinclude, + anon_sym_ATload, + anon_sym_ATnamespace, + anon_sym_LPAREN, + anon_sym_LBRACE, anon_sym_PIPE_AMP, anon_sym_QMARK, anon_sym_CARET, anon_sym_STAR_STAR, - anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, @@ -46321,50 +45056,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [24305] = 7, - ACTIONS(650), 1, - anon_sym_LBRACK, - ACTIONS(1211), 1, - anon_sym_LPAREN2, - ACTIONS(648), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(654), 2, - sym_concatenating_space, - sym__if_else_separator, - ACTIONS(732), 7, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - ACTIONS(642), 10, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_while, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - anon_sym_GT_GT, + anon_sym_DOLLAR, + aux_sym_number_token2, + anon_sym_DQUOTE, anon_sym_POUND, - ACTIONS(644), 21, - anon_sym_in, + [22568] = 4, + ACTIONS(1177), 1, + anon_sym_LBRACK, + ACTIONS(1179), 1, anon_sym_LT, + ACTIONS(688), 17, + anon_sym_BEGIN, + anon_sym_END, + anon_sym_BEGINFILE, + anon_sym_ENDFILE, + anon_sym_in, + anon_sym_getline, anon_sym_GT, anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_AT, + sym_identifier, + aux_sym_number_token1, + anon_sym_function, + anon_sym_func, + ACTIONS(690), 27, + ts_builtin_sym_end, + anon_sym_COMMA, + anon_sym_ATinclude, + anon_sym_ATload, + anon_sym_ATnamespace, + anon_sym_LPAREN, + anon_sym_LBRACE, anon_sym_PIPE_AMP, anon_sym_QMARK, anon_sym_CARET, anon_sym_STAR_STAR, - anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, @@ -46373,40 +45107,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [24364] = 7, - ACTIONS(714), 1, - sym_concatenating_space, - ACTIONS(1243), 1, - sym_identifier, - ACTIONS(1245), 1, - anon_sym_LT, - STATE(192), 1, - sym_array_ref, - STATE(612), 1, - sym_ns_qualified_name, - STATE(1955), 1, - sym_namespace, - ACTIONS(712), 38, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_DOLLAR, + aux_sym_number_token2, + anon_sym_DQUOTE, + anon_sym_POUND, + [22623] = 2, + ACTIONS(742), 18, + anon_sym_BEGIN, + anon_sym_END, + anon_sym_BEGINFILE, + anon_sym_ENDFILE, anon_sym_in, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, + anon_sym_getline, + anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_AT, + sym_identifier, + aux_sym_number_token1, + anon_sym_function, + anon_sym_func, + ACTIONS(744), 28, + sym_concatenating_space, + ts_builtin_sym_end, + anon_sym_COMMA, + anon_sym_ATinclude, + anon_sym_ATload, + anon_sym_ATnamespace, + anon_sym_LPAREN, + anon_sym_LBRACE, anon_sym_PIPE_AMP, anon_sym_QMARK, anon_sym_CARET, anon_sym_STAR_STAR, - anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, @@ -46417,120 +45158,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_POUND, - [24423] = 19, - ACTIONS(81), 1, - anon_sym_DQUOTE, - ACTIONS(450), 1, - sym_identifier, - ACTIONS(468), 1, - anon_sym_getline, - ACTIONS(594), 1, - anon_sym_LPAREN, - ACTIONS(596), 1, - anon_sym_SLASH, - ACTIONS(600), 1, anon_sym_DOLLAR, - ACTIONS(602), 1, - anon_sym_AT, - ACTIONS(922), 1, - sym__if_else_separator, - STATE(647), 1, - sym_ns_qualified_name, - STATE(774), 1, - sym_array_ref, - STATE(995), 1, - sym_field_ref, - STATE(1309), 1, - sym__binary_in, - STATE(2063), 1, - sym_namespace, - ACTIONS(79), 2, - aux_sym_number_token1, aux_sym_number_token2, - ACTIONS(598), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(476), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - ACTIONS(920), 4, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_while, - STATE(1441), 9, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_string_concat, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - STATE(1554), 10, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_regex, - sym_regex_constant, - sym_indirect_func_call, - [24505] = 7, - ACTIONS(654), 1, - sym_concatenating_space, - ACTIONS(688), 1, - anon_sym_LBRACK, - ACTIONS(1241), 1, - anon_sym_LPAREN2, - ACTIONS(648), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(732), 7, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - ACTIONS(642), 10, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_while, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - anon_sym_GT_GT, + anon_sym_DQUOTE, anon_sym_POUND, - ACTIONS(644), 21, + [22674] = 2, + ACTIONS(798), 18, + anon_sym_BEGIN, + anon_sym_END, + anon_sym_BEGINFILE, + anon_sym_ENDFILE, anon_sym_in, + anon_sym_getline, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_AT, + sym_identifier, + aux_sym_number_token1, + anon_sym_function, + anon_sym_func, + ACTIONS(800), 28, + ts_builtin_sym_end, + anon_sym_COMMA, + anon_sym_ATinclude, + anon_sym_ATload, + anon_sym_ATnamespace, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_COLON, anon_sym_PIPE_AMP, anon_sym_QMARK, anon_sym_CARET, anon_sym_STAR_STAR, - anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, @@ -46539,111 +45205,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [24563] = 19, - ACTIONS(81), 1, - anon_sym_DQUOTE, - ACTIONS(450), 1, - sym_identifier, - ACTIONS(468), 1, - anon_sym_getline, - ACTIONS(594), 1, - anon_sym_LPAREN, - ACTIONS(596), 1, - anon_sym_SLASH, - ACTIONS(600), 1, - anon_sym_DOLLAR, - ACTIONS(602), 1, - anon_sym_AT, - ACTIONS(918), 1, - sym__if_else_separator, - STATE(647), 1, - sym_ns_qualified_name, - STATE(774), 1, - sym_array_ref, - STATE(995), 1, - sym_field_ref, - STATE(1309), 1, - sym__binary_in, - STATE(2063), 1, - sym_namespace, - ACTIONS(79), 2, - aux_sym_number_token1, - aux_sym_number_token2, - ACTIONS(598), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(476), 3, + anon_sym_DOLLAR, + aux_sym_number_token2, + anon_sym_DQUOTE, + anon_sym_POUND, + [22725] = 2, + ACTIONS(764), 18, + anon_sym_BEGIN, + anon_sym_END, + anon_sym_BEGINFILE, + anon_sym_ENDFILE, + anon_sym_in, + anon_sym_getline, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_STAR, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, - ACTIONS(916), 4, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_while, - STATE(1441), 9, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_string_concat, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - STATE(1556), 10, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_regex, - sym_regex_constant, - sym_indirect_func_call, - [24645] = 7, - ACTIONS(650), 1, - anon_sym_LBRACK, - ACTIONS(658), 1, - sym__if_else_separator, - ACTIONS(1211), 1, - anon_sym_LPAREN2, - ACTIONS(1235), 1, + anon_sym_AT, + sym_identifier, + aux_sym_number_token1, + anon_sym_function, + anon_sym_func, + ACTIONS(766), 28, sym_concatenating_space, - ACTIONS(1231), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1233), 7, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - ACTIONS(644), 30, + ts_builtin_sym_end, anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, + anon_sym_ATinclude, + anon_sym_ATload, + anon_sym_ATnamespace, + anon_sym_LPAREN, + anon_sym_LBRACE, anon_sym_PIPE_AMP, anon_sym_QMARK, anon_sym_CARET, anon_sym_STAR_STAR, - anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, @@ -46652,99 +45254,103 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_POUND, - [24703] = 6, - ACTIONS(650), 1, - anon_sym_LBRACK, - ACTIONS(1211), 1, - anon_sym_LPAREN2, - ACTIONS(658), 2, - sym_concatenating_space, - sym__if_else_separator, - ACTIONS(1237), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1239), 7, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - ACTIONS(644), 30, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, + anon_sym_DOLLAR, + aux_sym_number_token2, + anon_sym_DQUOTE, + anon_sym_POUND, + [22776] = 9, + ACTIONS(1189), 1, + anon_sym_STAR, + ACTIONS(1185), 2, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, + ACTIONS(1187), 2, anon_sym_CARET, anon_sym_STAR_STAR, - anon_sym_STAR, + ACTIONS(1191), 2, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(1193), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(1197), 2, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(1195), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, + ACTIONS(880), 13, + anon_sym_BEGIN, + anon_sym_END, + anon_sym_BEGINFILE, + anon_sym_ENDFILE, + anon_sym_in, + anon_sym_getline, + anon_sym_PIPE, + anon_sym_BANG, + anon_sym_AT, + sym_identifier, + aux_sym_number_token1, + anon_sym_function, + anon_sym_func, + ACTIONS(882), 18, + sym_concatenating_space, + ts_builtin_sym_end, + anon_sym_COMMA, + anon_sym_ATinclude, + anon_sym_ATload, + anon_sym_ATnamespace, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_PIPE_AMP, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_POUND, - [24759] = 7, - ACTIONS(652), 1, - anon_sym_COLON_COLON, - ACTIONS(688), 1, - anon_sym_LBRACK, - ACTIONS(1241), 1, - anon_sym_LPAREN2, - ACTIONS(1251), 1, - sym_concatenating_space, - ACTIONS(1247), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1249), 7, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - ACTIONS(644), 30, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, + anon_sym_DOLLAR, + aux_sym_number_token2, + anon_sym_DQUOTE, + anon_sym_POUND, + [22841] = 2, + ACTIONS(798), 18, + anon_sym_BEGIN, + anon_sym_END, + anon_sym_BEGINFILE, + anon_sym_ENDFILE, anon_sym_in, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, + anon_sym_getline, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_AT, + sym_identifier, + aux_sym_number_token1, + anon_sym_function, + anon_sym_func, + ACTIONS(800), 28, + sym_concatenating_space, + ts_builtin_sym_end, + anon_sym_COMMA, + anon_sym_ATinclude, + anon_sym_ATload, + anon_sym_ATnamespace, + anon_sym_LPAREN, + anon_sym_LBRACE, anon_sym_PIPE_AMP, anon_sym_QMARK, anon_sym_CARET, anon_sym_STAR_STAR, - anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, @@ -46753,38 +45359,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_DOLLAR, + aux_sym_number_token2, + anon_sym_DQUOTE, anon_sym_POUND, - [24817] = 5, - ACTIONS(650), 1, - anon_sym_LBRACK, - ACTIONS(652), 1, - anon_sym_COLON_COLON, - ACTIONS(1253), 1, - anon_sym_LT, - ACTIONS(680), 2, - sym_concatenating_space, - sym__if_else_separator, - ACTIONS(678), 38, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, + [22892] = 2, + ACTIONS(758), 18, + anon_sym_BEGIN, + anon_sym_END, + anon_sym_BEGINFILE, + anon_sym_ENDFILE, anon_sym_in, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, + anon_sym_getline, + anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_AT, + sym_identifier, + aux_sym_number_token1, + anon_sym_function, + anon_sym_func, + ACTIONS(760), 28, + sym_concatenating_space, + ts_builtin_sym_end, + anon_sym_COMMA, + anon_sym_ATinclude, + anon_sym_ATload, + anon_sym_ATnamespace, + anon_sym_LPAREN, + anon_sym_LBRACE, anon_sym_PIPE_AMP, anon_sym_QMARK, anon_sym_CARET, anon_sym_STAR_STAR, - anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, @@ -46795,56 +45410,98 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, + anon_sym_DOLLAR, + aux_sym_number_token2, + anon_sym_DQUOTE, anon_sym_POUND, - [24871] = 7, - ACTIONS(652), 1, - anon_sym_COLON_COLON, - ACTIONS(658), 1, - sym_concatenating_space, - ACTIONS(688), 1, - anon_sym_LBRACK, - ACTIONS(1241), 1, - anon_sym_LPAREN2, - ACTIONS(1255), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1257), 7, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - ACTIONS(644), 30, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, + [22943] = 2, + ACTIONS(692), 18, + anon_sym_BEGIN, + anon_sym_END, + anon_sym_BEGINFILE, + anon_sym_ENDFILE, anon_sym_in, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, + anon_sym_getline, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_AT, + sym_identifier, + aux_sym_number_token1, + anon_sym_function, + anon_sym_func, + ACTIONS(694), 28, + sym_concatenating_space, + ts_builtin_sym_end, + anon_sym_COMMA, + anon_sym_ATinclude, + anon_sym_ATload, + anon_sym_ATnamespace, + anon_sym_LPAREN, + anon_sym_LBRACE, anon_sym_PIPE_AMP, anon_sym_QMARK, anon_sym_CARET, anon_sym_STAR_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_DOLLAR, + aux_sym_number_token2, + anon_sym_DQUOTE, + anon_sym_POUND, + [22994] = 6, + ACTIONS(1189), 1, anon_sym_STAR, + ACTIONS(1187), 2, + anon_sym_CARET, + anon_sym_STAR_STAR, + ACTIONS(1191), 2, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(1193), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(872), 15, + anon_sym_BEGIN, + anon_sym_END, + anon_sym_BEGINFILE, + anon_sym_ENDFILE, + anon_sym_in, + anon_sym_getline, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_BANG, + anon_sym_AT, + sym_identifier, + aux_sym_number_token1, + anon_sym_function, + anon_sym_func, + ACTIONS(874), 24, + sym_concatenating_space, + ts_builtin_sym_end, + anon_sym_COMMA, + anon_sym_ATinclude, + anon_sym_ATload, + anon_sym_ATnamespace, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_PIPE_AMP, + anon_sym_QMARK, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, @@ -46853,18 +45510,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_DOLLAR, + aux_sym_number_token2, + anon_sym_DQUOTE, anon_sym_POUND, - [24929] = 3, - ACTIONS(828), 1, - sym_regex_flags, - ACTIONS(830), 2, + [23053] = 5, + ACTIONS(728), 1, sym_concatenating_space, - sym__if_else_separator, - ACTIONS(826), 39, + ACTIONS(784), 1, + sym_identifier, + STATE(1956), 1, + sym_namespace, + STATE(209), 2, + sym_array_ref, + sym_ns_qualified_name, + ACTIONS(726), 40, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, + anon_sym_while, anon_sym_in, anon_sym_RBRACE, anon_sym_case, @@ -46900,46 +45567,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT_EQ, anon_sym_CARET_EQ, anon_sym_POUND, - [24978] = 6, - ACTIONS(658), 1, - sym_concatenating_space, - ACTIONS(688), 1, - anon_sym_LBRACK, - ACTIONS(1241), 1, - anon_sym_LPAREN2, - ACTIONS(1255), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1257), 7, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - ACTIONS(644), 30, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, + [23109] = 2, + ACTIONS(692), 18, + anon_sym_BEGIN, + anon_sym_END, + anon_sym_BEGINFILE, + anon_sym_ENDFILE, anon_sym_in, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, + anon_sym_getline, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_AT, + sym_identifier, + aux_sym_number_token1, + anon_sym_function, + anon_sym_func, + ACTIONS(694), 27, + ts_builtin_sym_end, + anon_sym_COMMA, + anon_sym_ATinclude, + anon_sym_ATload, + anon_sym_ATnamespace, + anon_sym_LPAREN, + anon_sym_LBRACE, anon_sym_PIPE_AMP, anon_sym_QMARK, anon_sym_CARET, anon_sym_STAR_STAR, - anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, @@ -46948,48 +45609,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_POUND, - [25033] = 18, - ACTIONS(125), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_DOLLAR, + aux_sym_number_token2, anon_sym_DQUOTE, - ACTIONS(362), 1, + anon_sym_POUND, + [23159] = 18, + ACTIONS(137), 1, sym_identifier, - ACTIONS(376), 1, - anon_sym_getline, - ACTIONS(620), 1, + ACTIONS(141), 1, anon_sym_LPAREN, - ACTIONS(622), 1, + ACTIONS(153), 1, + anon_sym_getline, + ACTIONS(159), 1, anon_sym_SLASH, - ACTIONS(626), 1, + ACTIONS(165), 1, anon_sym_DOLLAR, - ACTIONS(628), 1, + ACTIONS(167), 1, anon_sym_AT, - STATE(744), 1, + ACTIONS(171), 1, + anon_sym_DQUOTE, + STATE(597), 1, sym_ns_qualified_name, - STATE(1022), 1, + STATE(614), 1, sym_array_ref, - STATE(1121), 1, + STATE(705), 1, sym_field_ref, - STATE(1373), 1, + STATE(1385), 1, sym__binary_in, - STATE(1955), 1, + STATE(1956), 1, sym_namespace, - ACTIONS(123), 2, - aux_sym_number_token1, - aux_sym_number_token2, - ACTIONS(624), 2, + ACTIONS(163), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(384), 3, + ACTIONS(169), 2, + aux_sym_number_token1, + aux_sym_number_token2, + ACTIONS(161), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, - ACTIONS(916), 4, + ACTIONS(973), 7, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, - anon_sym_while, - STATE(1470), 9, + anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, + anon_sym_POUND, + STATE(1420), 9, sym_ternary_exp, sym_binary_exp, sym_unary_exp, @@ -46999,7 +45668,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_string, sym_func_call, - STATE(1570), 10, + STATE(1472), 10, sym__getline_exp, sym_getline_input, sym_getline_file, @@ -47010,34 +45679,88 @@ static const uint16_t ts_small_parse_table[] = { sym_regex, sym_regex_constant, sym_indirect_func_call, - [25112] = 3, - ACTIONS(834), 1, - sym_regex_flags, - ACTIONS(836), 2, - sym_concatenating_space, - sym__if_else_separator, - ACTIONS(832), 39, + [23241] = 2, + ACTIONS(794), 18, + anon_sym_BEGIN, + anon_sym_END, + anon_sym_BEGINFILE, + anon_sym_ENDFILE, + anon_sym_in, + anon_sym_getline, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_AT, + sym_identifier, + aux_sym_number_token1, + anon_sym_function, + anon_sym_func, + ACTIONS(796), 27, + ts_builtin_sym_end, anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, + anon_sym_ATinclude, + anon_sym_ATload, + anon_sym_ATnamespace, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_CARET, + anon_sym_STAR_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_DOLLAR, + aux_sym_number_token2, + anon_sym_DQUOTE, + anon_sym_POUND, + [23291] = 2, + ACTIONS(786), 18, + anon_sym_BEGIN, + anon_sym_END, + anon_sym_BEGINFILE, + anon_sym_ENDFILE, anon_sym_in, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, + anon_sym_getline, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_AT, + sym_identifier, + aux_sym_number_token1, + anon_sym_function, + anon_sym_func, + ACTIONS(788), 27, + ts_builtin_sym_end, + anon_sym_COMMA, + anon_sym_ATinclude, + anon_sym_ATload, + anon_sym_ATnamespace, + anon_sym_LPAREN, + anon_sym_LBRACE, anon_sym_PIPE_AMP, anon_sym_QMARK, anon_sym_CARET, anon_sym_STAR_STAR, - anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, @@ -47048,55 +45771,116 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, + anon_sym_DOLLAR, + aux_sym_number_token2, + anon_sym_DQUOTE, anon_sym_POUND, - [25161] = 18, - ACTIONS(125), 1, + [23341] = 16, + ACTIONS(1183), 1, + anon_sym_in, + ACTIONS(1189), 1, + anon_sym_STAR, + ACTIONS(1199), 1, + anon_sym_AMP_AMP, + ACTIONS(1205), 1, + anon_sym_QMARK, + ACTIONS(1207), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1215), 1, + anon_sym_COMMA, + ACTIONS(1217), 1, + anon_sym_PIPE, + ACTIONS(1219), 1, + anon_sym_PIPE_AMP, + ACTIONS(1185), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1187), 2, + anon_sym_CARET, + anon_sym_STAR_STAR, + ACTIONS(1191), 2, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1193), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1197), 2, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(1195), 4, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1213), 11, + anon_sym_BEGIN, + anon_sym_END, + anon_sym_BEGINFILE, + anon_sym_ENDFILE, + anon_sym_getline, + anon_sym_BANG, + anon_sym_AT, + sym_identifier, + aux_sym_number_token1, + anon_sym_function, + anon_sym_func, + ACTIONS(1211), 12, + ts_builtin_sym_end, + anon_sym_ATinclude, + anon_sym_ATload, + anon_sym_ATnamespace, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_DOLLAR, + aux_sym_number_token2, anon_sym_DQUOTE, - ACTIONS(362), 1, + anon_sym_POUND, + [23419] = 18, + ACTIONS(137), 1, sym_identifier, - ACTIONS(376), 1, - anon_sym_getline, - ACTIONS(620), 1, + ACTIONS(141), 1, anon_sym_LPAREN, - ACTIONS(622), 1, + ACTIONS(153), 1, + anon_sym_getline, + ACTIONS(159), 1, anon_sym_SLASH, - ACTIONS(626), 1, + ACTIONS(165), 1, anon_sym_DOLLAR, - ACTIONS(628), 1, + ACTIONS(167), 1, anon_sym_AT, - STATE(744), 1, + ACTIONS(171), 1, + anon_sym_DQUOTE, + STATE(597), 1, sym_ns_qualified_name, - STATE(1022), 1, + STATE(614), 1, sym_array_ref, - STATE(1121), 1, + STATE(705), 1, sym_field_ref, - STATE(1373), 1, + STATE(1385), 1, sym__binary_in, - STATE(1955), 1, + STATE(1956), 1, sym_namespace, - ACTIONS(123), 2, - aux_sym_number_token1, - aux_sym_number_token2, - ACTIONS(624), 2, + ACTIONS(163), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(384), 3, + ACTIONS(169), 2, + aux_sym_number_token1, + aux_sym_number_token2, + ACTIONS(161), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, - ACTIONS(920), 4, + ACTIONS(977), 7, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, - anon_sym_while, - STATE(1470), 9, + anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, + anon_sym_POUND, + STATE(1420), 9, sym_ternary_exp, sym_binary_exp, sym_unary_exp, @@ -47106,7 +45890,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_string, sym_func_call, - STATE(1567), 10, + STATE(1473), 10, sym__getline_exp, sym_getline_input, sym_getline_file, @@ -47117,136 +45901,101 @@ static const uint16_t ts_small_parse_table[] = { sym_regex, sym_regex_constant, sym_indirect_func_call, - [25240] = 5, - ACTIONS(652), 1, - anon_sym_COLON_COLON, - ACTIONS(680), 1, - sym_concatenating_space, - ACTIONS(688), 1, - anon_sym_LBRACK, - ACTIONS(1259), 1, - anon_sym_LT, - ACTIONS(678), 38, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, + [23501] = 15, + ACTIONS(1183), 1, anon_sym_in, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - anon_sym_GT, - anon_sym_GT_GT, + ACTIONS(1189), 1, + anon_sym_STAR, + ACTIONS(1199), 1, + anon_sym_AMP_AMP, + ACTIONS(1205), 1, + anon_sym_QMARK, + ACTIONS(1207), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1217), 1, anon_sym_PIPE, + ACTIONS(1219), 1, anon_sym_PIPE_AMP, - anon_sym_QMARK, + ACTIONS(1185), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1187), 2, anon_sym_CARET, anon_sym_STAR_STAR, - anon_sym_STAR, + ACTIONS(1191), 2, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(1193), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(1197), 2, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(1195), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(848), 11, + anon_sym_BEGIN, + anon_sym_END, + anon_sym_BEGINFILE, + anon_sym_ENDFILE, + anon_sym_getline, + anon_sym_BANG, + anon_sym_AT, + sym_identifier, + aux_sym_number_token1, + anon_sym_function, + anon_sym_func, + ACTIONS(864), 13, + ts_builtin_sym_end, + anon_sym_COMMA, + anon_sym_ATinclude, + anon_sym_ATload, + anon_sym_ATnamespace, + anon_sym_LPAREN, + anon_sym_LBRACE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, + anon_sym_DOLLAR, + aux_sym_number_token2, + anon_sym_DQUOTE, anon_sym_POUND, - [25293] = 6, - ACTIONS(650), 1, - anon_sym_LBRACK, - ACTIONS(658), 1, - sym__if_else_separator, - ACTIONS(1235), 1, - sym_concatenating_space, - ACTIONS(1231), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1233), 7, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - ACTIONS(644), 30, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, + [23577] = 2, + ACTIONS(790), 18, + anon_sym_BEGIN, + anon_sym_END, + anon_sym_BEGINFILE, + anon_sym_ENDFILE, anon_sym_in, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, + anon_sym_getline, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PLUS, anon_sym_DASH, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_POUND, - [25348] = 7, - ACTIONS(1261), 1, + anon_sym_BANG, + anon_sym_AT, sym_identifier, - ACTIONS(1263), 1, - anon_sym_LT, - STATE(171), 1, - sym_array_ref, - STATE(742), 1, - sym_ns_qualified_name, - STATE(2063), 1, - sym_namespace, - ACTIONS(714), 2, - sym_concatenating_space, - sym__if_else_separator, - ACTIONS(712), 35, + aux_sym_number_token1, + anon_sym_function, + anon_sym_func, + ACTIONS(792), 27, + ts_builtin_sym_end, anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_while, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, + anon_sym_ATinclude, + anon_sym_ATload, + anon_sym_ATnamespace, + anon_sym_LPAREN, + anon_sym_LBRACE, anon_sym_PIPE_AMP, anon_sym_QMARK, anon_sym_CARET, anon_sym_STAR_STAR, - anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, @@ -47257,42 +46006,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - [25405] = 4, - ACTIONS(650), 1, - anon_sym_LBRACK, - ACTIONS(1253), 1, - anon_sym_LT, - ACTIONS(680), 2, - sym_concatenating_space, - sym__if_else_separator, - ACTIONS(678), 38, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, + anon_sym_DOLLAR, + aux_sym_number_token2, + anon_sym_DQUOTE, + anon_sym_POUND, + [23627] = 2, + ACTIONS(742), 18, + anon_sym_BEGIN, + anon_sym_END, + anon_sym_BEGINFILE, + anon_sym_ENDFILE, anon_sym_in, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, + anon_sym_getline, + anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_AT, + sym_identifier, + aux_sym_number_token1, + anon_sym_function, + anon_sym_func, + ACTIONS(744), 27, + ts_builtin_sym_end, + anon_sym_COMMA, + anon_sym_ATinclude, + anon_sym_ATload, + anon_sym_ATnamespace, + anon_sym_LPAREN, + anon_sym_LBRACE, anon_sym_PIPE_AMP, anon_sym_QMARK, anon_sym_CARET, anon_sym_STAR_STAR, - anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, @@ -47303,102 +46054,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, + anon_sym_DOLLAR, + aux_sym_number_token2, + anon_sym_DQUOTE, anon_sym_POUND, - [25456] = 5, - ACTIONS(650), 1, - anon_sym_LBRACK, - ACTIONS(658), 2, - sym_concatenating_space, - sym__if_else_separator, - ACTIONS(1237), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1239), 7, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - ACTIONS(644), 30, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, + [23677] = 2, + ACTIONS(764), 18, + anon_sym_BEGIN, + anon_sym_END, + anon_sym_BEGINFILE, + anon_sym_ENDFILE, anon_sym_in, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, + anon_sym_getline, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PLUS, anon_sym_DASH, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_POUND, - [25509] = 6, - ACTIONS(688), 1, - anon_sym_LBRACK, - ACTIONS(1241), 1, - anon_sym_LPAREN2, - ACTIONS(1251), 1, - sym_concatenating_space, - ACTIONS(1247), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1249), 7, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - ACTIONS(644), 30, + anon_sym_BANG, + anon_sym_AT, + sym_identifier, + aux_sym_number_token1, + anon_sym_function, + anon_sym_func, + ACTIONS(766), 27, + ts_builtin_sym_end, anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, + anon_sym_ATinclude, + anon_sym_ATload, + anon_sym_ATnamespace, + anon_sym_LPAREN, + anon_sym_LBRACE, anon_sym_PIPE_AMP, anon_sym_QMARK, anon_sym_CARET, anon_sym_STAR_STAR, - anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, @@ -47407,78 +46100,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_DOLLAR, + aux_sym_number_token2, + anon_sym_DQUOTE, anon_sym_POUND, - [25564] = 2, - ACTIONS(1267), 1, - sym__if_else_separator, - ACTIONS(1265), 40, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, + [23727] = 2, + ACTIONS(754), 18, + anon_sym_BEGIN, + anon_sym_END, + anon_sym_BEGINFILE, + anon_sym_ENDFILE, + anon_sym_in, anon_sym_getline, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, + anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_SLASH, + anon_sym_STAR, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, anon_sym_AT, sym_identifier, aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [25610] = 3, - ACTIONS(836), 1, - sym_concatenating_space, - ACTIONS(874), 1, - sym_regex_flags, - ACTIONS(832), 39, + anon_sym_function, + anon_sym_func, + ACTIONS(756), 27, + ts_builtin_sym_end, anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, + anon_sym_ATinclude, + anon_sym_ATload, + anon_sym_ATnamespace, + anon_sym_LPAREN, + anon_sym_LBRACE, anon_sym_PIPE_AMP, anon_sym_QMARK, anon_sym_CARET, anon_sym_STAR_STAR, - anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, @@ -47489,52 +46150,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, + anon_sym_DOLLAR, + aux_sym_number_token2, + anon_sym_DQUOTE, anon_sym_POUND, - [25658] = 5, - ACTIONS(688), 1, - anon_sym_LBRACK, - ACTIONS(1251), 1, - sym_concatenating_space, - ACTIONS(1247), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1249), 7, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - ACTIONS(644), 30, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, + [23777] = 2, + ACTIONS(750), 18, + anon_sym_BEGIN, + anon_sym_END, + anon_sym_BEGINFILE, + anon_sym_ENDFILE, anon_sym_in, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, + anon_sym_getline, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_AT, + sym_identifier, + aux_sym_number_token1, + anon_sym_function, + anon_sym_func, + ACTIONS(752), 27, + ts_builtin_sym_end, + anon_sym_COMMA, + anon_sym_ATinclude, + anon_sym_ATload, + anon_sym_ATnamespace, + anon_sym_LPAREN, + anon_sym_LBRACE, anon_sym_PIPE_AMP, anon_sym_QMARK, anon_sym_CARET, anon_sym_STAR_STAR, - anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, @@ -47543,78 +46196,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_POUND, - [25710] = 21, - ACTIONS(1269), 1, - sym_identifier, - ACTIONS(1271), 1, - anon_sym_LPAREN, - ACTIONS(1273), 1, - anon_sym_getline, - ACTIONS(1275), 1, - anon_sym_SLASH, - ACTIONS(1279), 1, - anon_sym_BANG, - ACTIONS(1283), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_DOLLAR, - ACTIONS(1285), 1, - anon_sym_AT, - ACTIONS(1287), 1, - aux_sym_number_token1, - ACTIONS(1289), 1, aux_sym_number_token2, - ACTIONS(1291), 1, anon_sym_DQUOTE, - STATE(761), 1, - aux_sym_exp_list_repeat1, - STATE(1067), 1, - sym_ns_qualified_name, - STATE(1137), 1, + anon_sym_POUND, + [23827] = 7, + ACTIONS(1221), 1, + sym_identifier, + ACTIONS(1223), 1, + anon_sym_LT, + STATE(166), 1, sym_array_ref, - STATE(1231), 1, - sym_field_ref, - STATE(1502), 1, - sym__binary_in, - STATE(2075), 1, + STATE(600), 1, + sym_ns_qualified_name, + STATE(2068), 1, sym_namespace, - ACTIONS(1277), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1281), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2026), 2, - sym__print_args, - sym_exp_list, - STATE(1500), 9, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_string_concat, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - STATE(1598), 10, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_regex, - sym_regex_constant, - sym_indirect_func_call, - [25794] = 4, - ACTIONS(680), 1, + ACTIONS(728), 2, sym_concatenating_space, - ACTIONS(688), 1, - anon_sym_LBRACK, - ACTIONS(1259), 1, - anon_sym_LT, - ACTIONS(678), 38, + sym__if_else_separator, + ACTIONS(726), 38, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -47653,143 +46255,146 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT_EQ, anon_sym_CARET_EQ, anon_sym_POUND, - [25844] = 6, - ACTIONS(794), 2, - sym_concatenating_space, - sym__if_else_separator, - ACTIONS(1295), 2, - anon_sym_CARET, - anon_sym_STAR_STAR, - ACTIONS(1299), 2, + [23887] = 2, + ACTIONS(780), 18, + anon_sym_BEGIN, + anon_sym_END, + anon_sym_BEGINFILE, + anon_sym_ENDFILE, + anon_sym_in, + anon_sym_getline, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_STAR, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1297), 3, - anon_sym_STAR, + anon_sym_BANG, + anon_sym_AT, + sym_identifier, + aux_sym_number_token1, + anon_sym_function, + anon_sym_func, + ACTIONS(782), 27, + ts_builtin_sym_end, + anon_sym_COMMA, + anon_sym_ATinclude, + anon_sym_ATload, + anon_sym_ATnamespace, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_CARET, + anon_sym_STAR_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1293), 6, - anon_sym_LT, - anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(792), 26, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, anon_sym_TILDE, anon_sym_BANG_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, + anon_sym_DOLLAR, + aux_sym_number_token2, + anon_sym_DQUOTE, anon_sym_POUND, - [25898] = 21, - ACTIONS(85), 1, - sym_identifier, - ACTIONS(107), 1, + [23937] = 2, + ACTIONS(746), 18, + anon_sym_BEGIN, + anon_sym_END, + anon_sym_BEGINFILE, + anon_sym_ENDFILE, + anon_sym_in, anon_sym_getline, - ACTIONS(123), 1, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_AT, + sym_identifier, aux_sym_number_token1, - ACTIONS(276), 1, + anon_sym_function, + anon_sym_func, + ACTIONS(748), 27, + ts_builtin_sym_end, + anon_sym_COMMA, + anon_sym_ATinclude, + anon_sym_ATload, + anon_sym_ATnamespace, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_CARET, + anon_sym_STAR_STAR, anon_sym_SLASH, - ACTIONS(278), 1, - anon_sym_BANG, - ACTIONS(282), 1, + anon_sym_PERCENT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_DOLLAR, - ACTIONS(284), 1, - anon_sym_AT, - ACTIONS(286), 1, aux_sym_number_token2, - ACTIONS(288), 1, anon_sym_DQUOTE, - ACTIONS(1301), 1, - anon_sym_LPAREN, - STATE(607), 1, - sym_ns_qualified_name, - STATE(610), 1, - sym_array_ref, - STATE(703), 1, - sym_field_ref, - STATE(733), 1, - aux_sym_exp_list_repeat1, - STATE(1373), 1, - sym__binary_in, - STATE(1955), 1, - sym_namespace, - ACTIONS(115), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(280), 2, + anon_sym_POUND, + [23987] = 8, + ACTIONS(648), 1, + anon_sym_LBRACK, + ACTIONS(650), 1, + anon_sym_COLON_COLON, + ACTIONS(1225), 1, + anon_sym_LPAREN2, + ACTIONS(656), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(689), 2, - sym__print_args, - sym_exp_list, - STATE(1421), 9, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_string_concat, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - STATE(1433), 10, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_regex, - sym_regex_constant, - sym_indirect_func_call, - [25982] = 4, - ACTIONS(794), 2, + ACTIONS(658), 2, sym_concatenating_space, sym__if_else_separator, - ACTIONS(1295), 2, - anon_sym_CARET, - anon_sym_STAR_STAR, - ACTIONS(1297), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(792), 34, + ACTIONS(696), 7, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + ACTIONS(654), 10, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, - anon_sym_in, + anon_sym_while, anon_sym_RBRACE, anon_sym_case, anon_sym_default, + anon_sym_GT_GT, + anon_sym_POUND, + ACTIONS(642), 21, + anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, anon_sym_PIPE, anon_sym_PIPE_AMP, anon_sym_QMARK, + anon_sym_CARET, + anon_sym_STAR_STAR, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PLUS, anon_sym_DASH, anon_sym_LT_EQ, @@ -47800,8 +46405,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + [24049] = 8, + ACTIONS(648), 1, + anon_sym_LBRACK, + ACTIONS(650), 1, + anon_sym_COLON_COLON, + ACTIONS(652), 1, + sym__if_else_separator, + ACTIONS(1225), 1, + anon_sym_LPAREN2, + ACTIONS(1231), 1, + sym_concatenating_space, + ACTIONS(1227), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + ACTIONS(1229), 7, anon_sym_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -47809,171 +46427,109 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_CARET_EQ, - anon_sym_POUND, - [26032] = 8, - ACTIONS(1303), 1, - anon_sym_in, - ACTIONS(794), 2, - sym_concatenating_space, - sym__if_else_separator, - ACTIONS(1295), 2, - anon_sym_CARET, - anon_sym_STAR_STAR, - ACTIONS(1299), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1305), 2, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(1297), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1293), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(792), 23, + ACTIONS(642), 30, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, + anon_sym_in, anon_sym_RBRACE, anon_sym_case, anon_sym_default, + anon_sym_LT, + anon_sym_GT, anon_sym_GT_GT, anon_sym_PIPE, anon_sym_PIPE_AMP, anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_POUND, - [26090] = 9, - ACTIONS(1303), 1, - anon_sym_in, - ACTIONS(1307), 1, - anon_sym_AMP_AMP, - ACTIONS(794), 2, - sym_concatenating_space, - sym__if_else_separator, - ACTIONS(1295), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(1299), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1305), 2, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(1297), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1293), 6, - anon_sym_LT, - anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(792), 22, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, anon_sym_POUND, - [26150] = 12, - ACTIONS(1303), 1, + [24110] = 15, + ACTIONS(1183), 1, anon_sym_in, - ACTIONS(1307), 1, + ACTIONS(1189), 1, + anon_sym_STAR, + ACTIONS(1199), 1, anon_sym_AMP_AMP, - ACTIONS(1311), 1, + ACTIONS(1205), 1, anon_sym_QMARK, - ACTIONS(1313), 1, + ACTIONS(1207), 1, anon_sym_PIPE_PIPE, - ACTIONS(866), 2, - sym_concatenating_space, - sym__if_else_separator, - ACTIONS(1295), 2, + ACTIONS(1217), 1, + anon_sym_PIPE, + ACTIONS(1219), 1, + anon_sym_PIPE_AMP, + ACTIONS(1185), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1187), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(1299), 2, + ACTIONS(1191), 2, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1193), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1305), 2, + ACTIONS(1197), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(1309), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(1297), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1293), 6, - anon_sym_LT, - anon_sym_GT, + ACTIONS(1195), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(854), 18, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - anon_sym_GT_GT, + ACTIONS(1235), 11, + anon_sym_BEGIN, + anon_sym_END, + anon_sym_BEGINFILE, + anon_sym_ENDFILE, + anon_sym_getline, + anon_sym_BANG, + anon_sym_AT, + sym_identifier, + aux_sym_number_token1, + anon_sym_function, + anon_sym_func, + ACTIONS(1233), 12, + ts_builtin_sym_end, + anon_sym_ATinclude, + anon_sym_ATload, + anon_sym_ATnamespace, + anon_sym_LPAREN, + anon_sym_LBRACE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, + anon_sym_DOLLAR, + aux_sym_number_token2, + anon_sym_DQUOTE, anon_sym_POUND, - [26216] = 5, - ACTIONS(658), 1, - sym__if_else_separator, - ACTIONS(1235), 1, - sym_concatenating_space, - ACTIONS(1231), 2, + [24185] = 7, + ACTIONS(648), 1, + anon_sym_LBRACK, + ACTIONS(1225), 1, + anon_sym_LPAREN2, + ACTIONS(656), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1233), 7, + ACTIONS(658), 2, + sym_concatenating_space, + sym__if_else_separator, + ACTIONS(696), 7, anon_sym_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -47981,18 +46537,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_CARET_EQ, - ACTIONS(644), 30, + ACTIONS(654), 10, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, - anon_sym_in, + anon_sym_while, anon_sym_RBRACE, anon_sym_case, anon_sym_default, + anon_sym_GT_GT, + anon_sym_POUND, + ACTIONS(642), 21, + anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, anon_sym_PIPE, anon_sym_PIPE_AMP, anon_sym_QMARK, @@ -48011,142 +46570,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_POUND, - [26268] = 21, - ACTIONS(1269), 1, + [24244] = 7, + ACTIONS(728), 1, + sym_concatenating_space, + ACTIONS(1237), 1, sym_identifier, - ACTIONS(1271), 1, - anon_sym_LPAREN, - ACTIONS(1273), 1, - anon_sym_getline, - ACTIONS(1275), 1, - anon_sym_SLASH, - ACTIONS(1279), 1, - anon_sym_BANG, - ACTIONS(1283), 1, - anon_sym_DOLLAR, - ACTIONS(1285), 1, - anon_sym_AT, - ACTIONS(1287), 1, - aux_sym_number_token1, - ACTIONS(1289), 1, - aux_sym_number_token2, - ACTIONS(1291), 1, - anon_sym_DQUOTE, - STATE(761), 1, - aux_sym_exp_list_repeat1, - STATE(1067), 1, - sym_ns_qualified_name, - STATE(1137), 1, + ACTIONS(1239), 1, + anon_sym_LT, + STATE(209), 1, sym_array_ref, - STATE(1231), 1, - sym_field_ref, - STATE(1502), 1, - sym__binary_in, - STATE(2075), 1, - sym_namespace, - ACTIONS(1277), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1281), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2053), 2, - sym__print_args, - sym_exp_list, - STATE(1500), 9, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_string_concat, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - STATE(1574), 10, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_regex, - sym_regex_constant, - sym_indirect_func_call, - [26352] = 21, - ACTIONS(1269), 1, - sym_identifier, - ACTIONS(1271), 1, - anon_sym_LPAREN, - ACTIONS(1273), 1, - anon_sym_getline, - ACTIONS(1275), 1, - anon_sym_SLASH, - ACTIONS(1279), 1, - anon_sym_BANG, - ACTIONS(1283), 1, - anon_sym_DOLLAR, - ACTIONS(1285), 1, - anon_sym_AT, - ACTIONS(1287), 1, - aux_sym_number_token1, - ACTIONS(1289), 1, - aux_sym_number_token2, - ACTIONS(1291), 1, - anon_sym_DQUOTE, - STATE(761), 1, - aux_sym_exp_list_repeat1, - STATE(1067), 1, + STATE(625), 1, sym_ns_qualified_name, - STATE(1137), 1, - sym_array_ref, - STATE(1231), 1, - sym_field_ref, - STATE(1502), 1, - sym__binary_in, - STATE(2075), 1, + STATE(1956), 1, sym_namespace, - ACTIONS(1277), 2, + ACTIONS(726), 38, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_CARET, + anon_sym_STAR_STAR, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1281), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2052), 2, - sym__print_args, - sym_exp_list, - STATE(1500), 9, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_string_concat, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - STATE(1598), 10, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_regex, - sym_regex_constant, - sym_indirect_func_call, - [26436] = 5, - ACTIONS(658), 1, - sym_concatenating_space, - ACTIONS(688), 1, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_POUND, + [24303] = 7, + ACTIONS(648), 1, anon_sym_LBRACK, - ACTIONS(1255), 2, + ACTIONS(650), 1, + anon_sym_COLON_COLON, + ACTIONS(1225), 1, + anon_sym_LPAREN2, + ACTIONS(652), 2, + sym_concatenating_space, + sym__if_else_separator, + ACTIONS(1241), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1257), 7, + ACTIONS(1243), 7, anon_sym_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -48154,7 +46643,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_CARET_EQ, - ACTIONS(644), 30, + ACTIONS(642), 30, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -48185,28 +46674,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_POUND, - [26488] = 3, - ACTIONS(794), 2, + [24362] = 8, + ACTIONS(650), 1, + anon_sym_COLON_COLON, + ACTIONS(658), 1, sym_concatenating_space, - sym__if_else_separator, - ACTIONS(1295), 2, - anon_sym_CARET, - anon_sym_STAR_STAR, - ACTIONS(792), 37, + ACTIONS(684), 1, + anon_sym_LBRACK, + ACTIONS(1245), 1, + anon_sym_LPAREN2, + ACTIONS(656), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(696), 7, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + ACTIONS(654), 10, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, - anon_sym_in, + anon_sym_while, anon_sym_RBRACE, anon_sym_case, anon_sym_default, + anon_sym_GT_GT, + anon_sym_POUND, + ACTIONS(642), 21, + anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, anon_sym_PIPE, anon_sym_PIPE_AMP, anon_sym_QMARK, + anon_sym_CARET, + anon_sym_STAR_STAR, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -48220,185 +46727,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_POUND, - [26536] = 21, - ACTIONS(1269), 1, + [24423] = 19, + ACTIONS(81), 1, + anon_sym_DQUOTE, + ACTIONS(336), 1, sym_identifier, - ACTIONS(1271), 1, - anon_sym_LPAREN, - ACTIONS(1273), 1, + ACTIONS(354), 1, anon_sym_getline, - ACTIONS(1275), 1, + ACTIONS(594), 1, + anon_sym_LPAREN, + ACTIONS(596), 1, anon_sym_SLASH, - ACTIONS(1279), 1, - anon_sym_BANG, - ACTIONS(1283), 1, + ACTIONS(600), 1, anon_sym_DOLLAR, - ACTIONS(1285), 1, + ACTIONS(602), 1, anon_sym_AT, - ACTIONS(1287), 1, - aux_sym_number_token1, - ACTIONS(1289), 1, - aux_sym_number_token2, - ACTIONS(1291), 1, - anon_sym_DQUOTE, - STATE(761), 1, - aux_sym_exp_list_repeat1, - STATE(1067), 1, + ACTIONS(979), 1, + sym__if_else_separator, + STATE(672), 1, sym_ns_qualified_name, - STATE(1137), 1, + STATE(740), 1, sym_array_ref, - STATE(1231), 1, + STATE(950), 1, sym_field_ref, - STATE(1502), 1, + STATE(1305), 1, sym__binary_in, - STATE(2075), 1, + STATE(2068), 1, sym_namespace, - ACTIONS(1277), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1281), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1968), 2, - sym__print_args, - sym_exp_list, - STATE(1500), 9, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_string_concat, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - STATE(1574), 10, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_regex, - sym_regex_constant, - sym_indirect_func_call, - [26620] = 21, - ACTIONS(298), 1, - sym_identifier, - ACTIONS(318), 1, - anon_sym_getline, - ACTIONS(324), 1, - anon_sym_SLASH, - ACTIONS(328), 1, - anon_sym_BANG, - ACTIONS(332), 1, - anon_sym_DOLLAR, - ACTIONS(334), 1, - anon_sym_AT, - ACTIONS(336), 1, + ACTIONS(79), 2, aux_sym_number_token1, - ACTIONS(338), 1, aux_sym_number_token2, - ACTIONS(340), 1, - anon_sym_DQUOTE, - ACTIONS(1315), 1, - anon_sym_LPAREN, - STATE(196), 1, - sym_ns_qualified_name, - STATE(240), 1, - sym_array_ref, - STATE(256), 1, - sym_field_ref, - STATE(369), 1, - sym__binary_in, - STATE(738), 1, - aux_sym_exp_list_repeat1, - STATE(2063), 1, - sym_namespace, - ACTIONS(326), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(330), 2, + ACTIONS(598), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(608), 2, - sym__print_args, - sym_exp_list, - STATE(375), 9, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_string_concat, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - STATE(403), 10, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_regex, - sym_regex_constant, - sym_indirect_func_call, - [26704] = 21, - ACTIONS(127), 1, - sym_identifier, - ACTIONS(147), 1, - anon_sym_getline, - ACTIONS(153), 1, - anon_sym_SLASH, - ACTIONS(157), 1, - anon_sym_BANG, - ACTIONS(161), 1, - anon_sym_DOLLAR, - ACTIONS(163), 1, - anon_sym_AT, - ACTIONS(165), 1, - aux_sym_number_token1, - ACTIONS(167), 1, - aux_sym_number_token2, - ACTIONS(169), 1, - anon_sym_DQUOTE, - ACTIONS(1301), 1, - anon_sym_LPAREN, - STATE(221), 1, - sym_ns_qualified_name, - STATE(253), 1, - sym_array_ref, - STATE(272), 1, - sym_field_ref, - STATE(446), 1, - sym__binary_in, - STATE(739), 1, - aux_sym_exp_list_repeat1, - STATE(1955), 1, - sym_namespace, - ACTIONS(155), 2, + ACTIONS(362), 3, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(159), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(689), 2, - sym__print_args, - sym_exp_list, - STATE(447), 9, + anon_sym_BANG, + ACTIONS(977), 4, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_while, + STATE(1461), 9, sym_ternary_exp, sym_binary_exp, sym_unary_exp, @@ -48408,7 +46779,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_string, sym_func_call, - STATE(475), 10, + STATE(1544), 10, sym__getline_exp, sym_getline_input, sym_getline_file, @@ -48419,58 +46790,69 @@ static const uint16_t ts_small_parse_table[] = { sym_regex, sym_regex_constant, sym_indirect_func_call, - [26788] = 2, - ACTIONS(1319), 1, + [24505] = 7, + ACTIONS(648), 1, + anon_sym_LBRACK, + ACTIONS(652), 1, sym__if_else_separator, - ACTIONS(1317), 40, + ACTIONS(1225), 1, + anon_sym_LPAREN2, + ACTIONS(1231), 1, + sym_concatenating_space, + ACTIONS(1227), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1229), 7, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + ACTIONS(642), 30, + anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, + anon_sym_in, anon_sym_RBRACE, anon_sym_case, anon_sym_default, - anon_sym_getline, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, + anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, anon_sym_PIPE, anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_CARET, + anon_sym_STAR_STAR, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PLUS, anon_sym_DASH, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_POUND, - [26834] = 4, - ACTIONS(658), 2, + [24563] = 6, + ACTIONS(648), 1, + anon_sym_LBRACK, + ACTIONS(1225), 1, + anon_sym_LPAREN2, + ACTIONS(652), 2, sym_concatenating_space, sym__if_else_separator, - ACTIONS(1237), 2, + ACTIONS(1241), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1239), 7, + ACTIONS(1243), 7, anon_sym_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -48478,7 +46860,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_CARET_EQ, - ACTIONS(644), 30, + ACTIONS(642), 30, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -48509,31 +46891,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_POUND, - [26884] = 7, - ACTIONS(870), 2, + [24619] = 5, + ACTIONS(648), 1, + anon_sym_LBRACK, + ACTIONS(650), 1, + anon_sym_COLON_COLON, + ACTIONS(1247), 1, + anon_sym_LT, + ACTIONS(690), 2, sym_concatenating_space, sym__if_else_separator, - ACTIONS(1295), 2, - anon_sym_CARET, - anon_sym_STAR_STAR, - ACTIONS(1299), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1305), 2, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(1297), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1293), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(868), 24, + ACTIONS(688), 38, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -48542,10 +46910,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_case, anon_sym_default, + anon_sym_GT, anon_sym_GT_GT, anon_sym_PIPE, anon_sym_PIPE_AMP, anon_sym_QMARK, + anon_sym_CARET, + anon_sym_STAR_STAR, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_PLUS, @@ -48558,51 +46940,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT_EQ, anon_sym_CARET_EQ, anon_sym_POUND, - [26940] = 11, - ACTIONS(1303), 1, - anon_sym_in, - ACTIONS(1307), 1, - anon_sym_AMP_AMP, - ACTIONS(1311), 1, - anon_sym_QMARK, - ACTIONS(1313), 1, - anon_sym_PIPE_PIPE, - ACTIONS(878), 2, + [24673] = 7, + ACTIONS(650), 1, + anon_sym_COLON_COLON, + ACTIONS(652), 1, sym_concatenating_space, - sym__if_else_separator, - ACTIONS(1295), 2, - anon_sym_CARET, - anon_sym_STAR_STAR, - ACTIONS(1299), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1305), 2, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(1297), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1293), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(876), 20, + ACTIONS(684), 1, + anon_sym_LBRACK, + ACTIONS(1245), 1, + anon_sym_LPAREN2, + ACTIONS(1249), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1251), 7, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + ACTIONS(642), 30, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, + anon_sym_in, anon_sym_RBRACE, anon_sym_case, anon_sym_default, + anon_sym_LT, + anon_sym_GT, anon_sym_GT_GT, anon_sym_PIPE, anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_CARET, + anon_sym_STAR_STAR, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_POUND, + [24731] = 7, + ACTIONS(650), 1, + anon_sym_COLON_COLON, + ACTIONS(684), 1, + anon_sym_LBRACK, + ACTIONS(1245), 1, + anon_sym_LPAREN2, + ACTIONS(1257), 1, + sym_concatenating_space, + ACTIONS(1253), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + ACTIONS(1255), 7, anon_sym_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -48610,90 +47011,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_CARET_EQ, - anon_sym_POUND, - [27004] = 21, - ACTIONS(79), 1, - aux_sym_number_token1, - ACTIONS(450), 1, - sym_identifier, - ACTIONS(468), 1, - anon_sym_getline, - ACTIONS(474), 1, - anon_sym_SLASH, - ACTIONS(478), 1, - anon_sym_BANG, - ACTIONS(482), 1, - anon_sym_DOLLAR, - ACTIONS(484), 1, - anon_sym_AT, - ACTIONS(486), 1, - aux_sym_number_token2, - ACTIONS(488), 1, - anon_sym_DQUOTE, - ACTIONS(1315), 1, - anon_sym_LPAREN, - STATE(647), 1, - sym_ns_qualified_name, - STATE(771), 1, - aux_sym_exp_list_repeat1, - STATE(774), 1, - sym_array_ref, - STATE(995), 1, - sym_field_ref, - STATE(1309), 1, - sym__binary_in, - STATE(2063), 1, - sym_namespace, - ACTIONS(476), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(480), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(608), 2, - sym__print_args, - sym_exp_list, - STATE(1441), 9, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_string_concat, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - STATE(1491), 10, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_regex, - sym_regex_constant, - sym_indirect_func_call, - [27088] = 7, - ACTIONS(714), 1, - sym_concatenating_space, - ACTIONS(1321), 1, - sym_identifier, - ACTIONS(1323), 1, - anon_sym_LT, - STATE(192), 1, - sym_array_ref, - STATE(1025), 1, - sym_ns_qualified_name, - STATE(1955), 1, - sym_namespace, - ACTIONS(712), 35, + ACTIONS(642), 30, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, - anon_sym_while, anon_sym_in, + anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, + anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, anon_sym_PIPE, @@ -48714,8 +47041,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_POUND, + [24789] = 7, + ACTIONS(658), 1, + sym_concatenating_space, + ACTIONS(684), 1, + anon_sym_LBRACK, + ACTIONS(1245), 1, + anon_sym_LPAREN2, + ACTIONS(656), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + ACTIONS(696), 7, anon_sym_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -48723,112 +47060,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_CARET_EQ, - [27144] = 21, - ACTIONS(39), 1, - sym_identifier, - ACTIONS(63), 1, - anon_sym_getline, - ACTIONS(79), 1, - aux_sym_number_token1, - ACTIONS(486), 1, - aux_sym_number_token2, - ACTIONS(488), 1, - anon_sym_DQUOTE, - ACTIONS(554), 1, + ACTIONS(654), 10, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_while, + anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, + anon_sym_GT_GT, + anon_sym_POUND, + ACTIONS(642), 21, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_CARET, + anon_sym_STAR_STAR, + anon_sym_STAR, anon_sym_SLASH, - ACTIONS(556), 1, - anon_sym_BANG, - ACTIONS(560), 1, - anon_sym_DOLLAR, - ACTIONS(562), 1, - anon_sym_AT, - ACTIONS(1315), 1, - anon_sym_LPAREN, - STATE(592), 1, - sym_ns_qualified_name, - STATE(603), 1, - sym_array_ref, - STATE(619), 1, - sym_field_ref, - STATE(737), 1, - aux_sym_exp_list_repeat1, - STATE(1309), 1, - sym__binary_in, - STATE(2063), 1, - sym_namespace, - ACTIONS(71), 2, + anon_sym_PERCENT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(558), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(608), 2, - sym__print_args, - sym_exp_list, - STATE(1354), 9, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_string_concat, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - STATE(1410), 10, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_regex, - sym_regex_constant, - sym_indirect_func_call, - [27228] = 21, - ACTIONS(123), 1, - aux_sym_number_token1, - ACTIONS(286), 1, - aux_sym_number_token2, - ACTIONS(288), 1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [24847] = 19, + ACTIONS(81), 1, anon_sym_DQUOTE, - ACTIONS(362), 1, + ACTIONS(336), 1, sym_identifier, - ACTIONS(376), 1, + ACTIONS(354), 1, anon_sym_getline, - ACTIONS(382), 1, + ACTIONS(594), 1, + anon_sym_LPAREN, + ACTIONS(596), 1, anon_sym_SLASH, - ACTIONS(386), 1, - anon_sym_BANG, - ACTIONS(390), 1, + ACTIONS(600), 1, anon_sym_DOLLAR, - ACTIONS(392), 1, + ACTIONS(602), 1, anon_sym_AT, - ACTIONS(1301), 1, - anon_sym_LPAREN, - STATE(744), 1, + ACTIONS(975), 1, + sym__if_else_separator, + STATE(672), 1, sym_ns_qualified_name, - STATE(745), 1, - aux_sym_exp_list_repeat1, - STATE(1022), 1, + STATE(740), 1, sym_array_ref, - STATE(1121), 1, + STATE(950), 1, sym_field_ref, - STATE(1373), 1, + STATE(1305), 1, sym__binary_in, - STATE(1955), 1, + STATE(2068), 1, sym_namespace, - ACTIONS(384), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(388), 2, + ACTIONS(79), 2, + aux_sym_number_token1, + aux_sym_number_token2, + ACTIONS(598), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(689), 2, - sym__print_args, - sym_exp_list, - STATE(1470), 9, + ACTIONS(362), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + ACTIONS(973), 4, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_while, + STATE(1461), 9, sym_ternary_exp, sym_binary_exp, sym_unary_exp, @@ -48838,7 +47145,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_string, sym_func_call, - STATE(1512), 10, + STATE(1556), 10, sym__getline_exp, sym_getline_input, sym_getline_file, @@ -48849,12 +47156,25 @@ static const uint16_t ts_small_parse_table[] = { sym_regex, sym_regex_constant, sym_indirect_func_call, - [27312] = 3, - ACTIONS(830), 1, + [24929] = 6, + ACTIONS(684), 1, + anon_sym_LBRACK, + ACTIONS(1245), 1, + anon_sym_LPAREN2, + ACTIONS(1257), 1, sym_concatenating_space, - ACTIONS(872), 1, - sym_regex_flags, - ACTIONS(826), 39, + ACTIONS(1253), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1255), 7, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + ACTIONS(642), 30, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -48884,134 +47204,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, anon_sym_POUND, - [27360] = 2, - ACTIONS(1327), 1, - sym__if_else_separator, - ACTIONS(1325), 40, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, + [24984] = 18, + ACTIONS(171), 1, + anon_sym_DQUOTE, + ACTIONS(270), 1, + sym_identifier, + ACTIONS(288), 1, anon_sym_getline, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, + ACTIONS(608), 1, + anon_sym_LPAREN, + ACTIONS(610), 1, anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(614), 1, anon_sym_DOLLAR, + ACTIONS(616), 1, anon_sym_AT, - sym_identifier, + STATE(720), 1, + sym_ns_qualified_name, + STATE(991), 1, + sym_array_ref, + STATE(1194), 1, + sym_field_ref, + STATE(1385), 1, + sym__binary_in, + STATE(1956), 1, + sym_namespace, + ACTIONS(169), 2, aux_sym_number_token1, aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [27406] = 2, - ACTIONS(1331), 1, - sym__if_else_separator, - ACTIONS(1329), 40, + ACTIONS(612), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(296), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + ACTIONS(977), 4, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, anon_sym_while, - anon_sym_do, - anon_sym_for, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - anon_sym_getline, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_AT, + STATE(1476), 9, + sym_ternary_exp, + sym_binary_exp, + sym_unary_exp, + sym_string_concat, + sym_grouping, + sym__primitive, + sym_number, + sym_string, + sym_func_call, + STATE(1568), 10, + sym__getline_exp, + sym_getline_input, + sym_getline_file, + sym__exp, + sym_update_exp, + sym_assignment_exp, + sym_piped_io_exp, + sym_regex, + sym_regex_constant, + sym_indirect_func_call, + [25063] = 7, + ACTIONS(1259), 1, sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [27452] = 8, - ACTIONS(650), 1, - anon_sym_LBRACK, - ACTIONS(652), 1, - anon_sym_COLON_COLON, - ACTIONS(658), 1, - sym__if_else_separator, - ACTIONS(1211), 1, - anon_sym_LPAREN2, - ACTIONS(1335), 1, + ACTIONS(1261), 1, + anon_sym_LT, + STATE(166), 1, + sym_array_ref, + STATE(755), 1, + sym_ns_qualified_name, + STATE(2068), 1, + sym_namespace, + ACTIONS(728), 2, sym_concatenating_space, - ACTIONS(1231), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1333), 7, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - ACTIONS(644), 27, + sym__if_else_separator, + ACTIONS(726), 35, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, anon_sym_while, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, anon_sym_PIPE, @@ -49032,21 +47307,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [27510] = 5, - ACTIONS(882), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + [25120] = 4, + ACTIONS(648), 1, + anon_sym_LBRACK, + ACTIONS(1247), 1, + anon_sym_LT, + ACTIONS(690), 2, sym_concatenating_space, sym__if_else_separator, - ACTIONS(1295), 2, - anon_sym_CARET, - anon_sym_STAR_STAR, - ACTIONS(1299), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1297), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(880), 32, + ACTIONS(688), 38, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -49055,67 +47333,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_case, anon_sym_default, - anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, anon_sym_PIPE, anon_sym_PIPE_AMP, anon_sym_QMARK, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_POUND, - [27562] = 7, - ACTIONS(852), 2, - sym_concatenating_space, - sym__if_else_separator, - ACTIONS(1295), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(1299), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1305), 2, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(1297), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1293), 6, - anon_sym_LT, - anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(840), 24, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, + anon_sym_TILDE, + anon_sym_BANG_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_PLUS, @@ -49128,20 +47363,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT_EQ, anon_sym_CARET_EQ, anon_sym_POUND, - [27618] = 7, - ACTIONS(650), 1, + [25171] = 6, + ACTIONS(648), 1, anon_sym_LBRACK, ACTIONS(652), 1, - anon_sym_COLON_COLON, - ACTIONS(1211), 1, - anon_sym_LPAREN2, - ACTIONS(658), 2, - sym_concatenating_space, sym__if_else_separator, - ACTIONS(1237), 2, + ACTIONS(1231), 1, + sym_concatenating_space, + ACTIONS(1227), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1337), 7, + ACTIONS(1229), 7, anon_sym_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -49149,13 +47381,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_CARET_EQ, - ACTIONS(644), 27, + ACTIONS(642), 30, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, - anon_sym_while, anon_sym_in, + anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -49177,21 +47411,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [27674] = 5, - ACTIONS(794), 2, + anon_sym_POUND, + [25226] = 3, + ACTIONS(834), 1, + sym_regex_flags, + ACTIONS(836), 2, sym_concatenating_space, sym__if_else_separator, - ACTIONS(1295), 2, + ACTIONS(832), 39, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_QMARK, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(1299), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1297), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(792), 32, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_POUND, + [25275] = 3, + ACTIONS(828), 1, + sym_regex_flags, + ACTIONS(830), 2, + sym_concatenating_space, + sym__if_else_separator, + ACTIONS(826), 39, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -49206,6 +47479,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PIPE_AMP, anon_sym_QMARK, + anon_sym_CARET, + anon_sym_STAR_STAR, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, @@ -49224,48 +47504,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT_EQ, anon_sym_CARET_EQ, anon_sym_POUND, - [27726] = 21, - ACTIONS(1269), 1, + [25324] = 18, + ACTIONS(171), 1, + anon_sym_DQUOTE, + ACTIONS(270), 1, sym_identifier, - ACTIONS(1271), 1, - anon_sym_LPAREN, - ACTIONS(1273), 1, + ACTIONS(288), 1, anon_sym_getline, - ACTIONS(1275), 1, + ACTIONS(608), 1, + anon_sym_LPAREN, + ACTIONS(610), 1, anon_sym_SLASH, - ACTIONS(1279), 1, - anon_sym_BANG, - ACTIONS(1283), 1, + ACTIONS(614), 1, anon_sym_DOLLAR, - ACTIONS(1285), 1, + ACTIONS(616), 1, anon_sym_AT, - ACTIONS(1287), 1, - aux_sym_number_token1, - ACTIONS(1289), 1, - aux_sym_number_token2, - ACTIONS(1291), 1, - anon_sym_DQUOTE, - STATE(761), 1, - aux_sym_exp_list_repeat1, - STATE(1067), 1, + STATE(720), 1, sym_ns_qualified_name, - STATE(1137), 1, + STATE(991), 1, sym_array_ref, - STATE(1231), 1, + STATE(1194), 1, sym_field_ref, - STATE(1502), 1, + STATE(1385), 1, sym__binary_in, - STATE(2075), 1, + STATE(1956), 1, sym_namespace, - STATE(2081), 1, - sym_exp_list, - ACTIONS(1277), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1281), 2, + ACTIONS(169), 2, + aux_sym_number_token1, + aux_sym_number_token2, + ACTIONS(612), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1500), 9, + ACTIONS(296), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + ACTIONS(973), 4, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_while, + STATE(1476), 9, sym_ternary_exp, sym_binary_exp, sym_unary_exp, @@ -49275,7 +47554,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_string, sym_func_call, - STATE(1577), 10, + STATE(1569), 10, sym__getline_exp, sym_getline_input, sym_getline_file, @@ -49286,51 +47565,65 @@ static const uint16_t ts_small_parse_table[] = { sym_regex, sym_regex_constant, sym_indirect_func_call, - [27809] = 12, - ACTIONS(866), 1, + [25403] = 5, + ACTIONS(648), 1, + anon_sym_LBRACK, + ACTIONS(652), 2, sym_concatenating_space, - ACTIONS(1339), 1, + sym__if_else_separator, + ACTIONS(1241), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1243), 7, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + ACTIONS(642), 30, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, anon_sym_in, - ACTIONS(1345), 1, - anon_sym_QMARK, - ACTIONS(1355), 1, - anon_sym_AMP_AMP, - ACTIONS(1357), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1343), 2, + anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, anon_sym_PIPE, anon_sym_PIPE_AMP, - ACTIONS(1347), 2, + anon_sym_QMARK, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(1351), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1353), 2, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(1349), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1341), 6, - anon_sym_LT, - anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(854), 18, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - anon_sym_GT_GT, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_POUND, + [25456] = 6, + ACTIONS(652), 1, + sym_concatenating_space, + ACTIONS(684), 1, + anon_sym_LBRACK, + ACTIONS(1245), 1, + anon_sym_LPAREN2, + ACTIONS(1249), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + ACTIONS(1251), 7, anon_sym_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -49338,36 +47631,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_CARET_EQ, - anon_sym_POUND, - [27874] = 5, - ACTIONS(1069), 1, - sym_identifier, - STATE(2075), 1, - sym_namespace, - STATE(296), 2, - sym_array_ref, - sym_ns_qualified_name, - ACTIONS(712), 11, + ACTIONS(642), 30, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, anon_sym_in, + anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, anon_sym_LT, anon_sym_GT, + anon_sym_GT_GT, anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_QMARK, anon_sym_CARET, + anon_sym_STAR_STAR, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_PLUS, anon_sym_DASH, - anon_sym_EQ, - ACTIONS(714), 25, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_POUND, + [25511] = 5, + ACTIONS(650), 1, + anon_sym_COLON_COLON, + ACTIONS(684), 1, + anon_sym_LBRACK, + ACTIONS(690), 1, sym_concatenating_space, + ACTIONS(1263), 1, + anon_sym_LT, + ACTIONS(688), 38, anon_sym_COMMA, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COLON, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_PIPE, anon_sym_PIPE_AMP, anon_sym_QMARK, + anon_sym_CARET, anon_sym_STAR_STAR, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, @@ -49378,42 +47702,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_CARET_EQ, - anon_sym_RBRACK, - [27925] = 7, - ACTIONS(852), 1, + anon_sym_POUND, + [25564] = 9, + ACTIONS(1265), 1, + anon_sym_in, + ACTIONS(1277), 1, + anon_sym_AMP_AMP, + ACTIONS(778), 2, sym_concatenating_space, - ACTIONS(1347), 2, + sym__if_else_separator, + ACTIONS(1269), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(1351), 2, + ACTIONS(1273), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1353), 2, + ACTIONS(1275), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(1349), 3, + ACTIONS(1271), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1341), 6, + ACTIONS(1267), 6, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(840), 24, + ACTIONS(776), 22, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, - anon_sym_in, anon_sym_RBRACE, anon_sym_case, anon_sym_default, @@ -49421,7 +47750,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PIPE_AMP, anon_sym_QMARK, - anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -49433,93 +47761,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT_EQ, anon_sym_CARET_EQ, anon_sym_POUND, - [27980] = 7, - ACTIONS(650), 1, - anon_sym_LBRACK, - ACTIONS(658), 1, - sym__if_else_separator, - ACTIONS(1211), 1, - anon_sym_LPAREN2, - ACTIONS(1335), 1, + [25624] = 5, + ACTIONS(874), 2, sym_concatenating_space, - ACTIONS(1231), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1333), 7, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - ACTIONS(644), 27, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_while, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, + sym__if_else_separator, + ACTIONS(1269), 2, anon_sym_CARET, anon_sym_STAR_STAR, + ACTIONS(1273), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1271), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [28035] = 6, - ACTIONS(650), 1, - anon_sym_LBRACK, - ACTIONS(1211), 1, - anon_sym_LPAREN2, - ACTIONS(658), 2, - sym_concatenating_space, - sym__if_else_separator, - ACTIONS(1237), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1337), 7, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - ACTIONS(644), 27, + ACTIONS(872), 32, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, - anon_sym_while, anon_sym_in, + anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, anon_sym_PIPE, anon_sym_PIPE_AMP, anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, @@ -49528,20 +47798,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [28088] = 5, - ACTIONS(794), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_POUND, + [25676] = 5, + ACTIONS(778), 2, sym_concatenating_space, - ACTIONS(1347), 2, + sym__if_else_separator, + ACTIONS(1269), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(1351), 2, + ACTIONS(1273), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1349), 3, + ACTIONS(1271), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(792), 32, + ACTIONS(776), 32, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -49574,19 +47855,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT_EQ, anon_sym_CARET_EQ, anon_sym_POUND, - [28139] = 7, + [25728] = 5, ACTIONS(652), 1, - anon_sym_COLON_COLON, - ACTIONS(658), 1, sym_concatenating_space, - ACTIONS(688), 1, + ACTIONS(684), 1, anon_sym_LBRACK, - ACTIONS(1241), 1, - anon_sym_LPAREN2, - ACTIONS(1255), 2, + ACTIONS(1249), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1359), 7, + ACTIONS(1251), 7, anon_sym_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -49594,13 +47871,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_CARET_EQ, - ACTIONS(644), 27, + ACTIONS(642), 30, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, - anon_sym_while, anon_sym_in, + anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -49622,27 +47901,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [28194] = 3, - ACTIONS(794), 1, + anon_sym_POUND, + [25780] = 7, + ACTIONS(728), 1, sym_concatenating_space, - ACTIONS(1347), 2, - anon_sym_CARET, - anon_sym_STAR_STAR, - ACTIONS(792), 37, + ACTIONS(1279), 1, + sym_identifier, + ACTIONS(1281), 1, + anon_sym_LT, + STATE(209), 1, + sym_array_ref, + STATE(978), 1, + sym_ns_qualified_name, + STATE(1956), 1, + sym_namespace, + ACTIONS(726), 35, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, + anon_sym_while, anon_sym_in, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, anon_sym_PIPE, anon_sym_PIPE_AMP, anon_sym_QMARK, + anon_sym_CARET, + anon_sym_STAR_STAR, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -49665,18 +47951,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_CARET_EQ, - anon_sym_POUND, - [28241] = 4, - ACTIONS(794), 1, + [25836] = 3, + ACTIONS(778), 2, sym_concatenating_space, - ACTIONS(1347), 2, + sym__if_else_separator, + ACTIONS(1269), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(1349), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(792), 34, + ACTIONS(776), 37, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -49691,6 +47973,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PIPE_AMP, anon_sym_QMARK, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PLUS, anon_sym_DASH, anon_sym_LT_EQ, @@ -49711,45 +47996,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT_EQ, anon_sym_CARET_EQ, anon_sym_POUND, - [28290] = 6, - ACTIONS(794), 1, + [25884] = 5, + ACTIONS(684), 1, + anon_sym_LBRACK, + ACTIONS(1257), 1, sym_concatenating_space, - ACTIONS(1347), 2, - anon_sym_CARET, - anon_sym_STAR_STAR, - ACTIONS(1351), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1349), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1341), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(792), 26, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(1253), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + ACTIONS(1255), 7, anon_sym_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -49757,38 +48012,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_CARET_EQ, - anon_sym_POUND, - [28343] = 7, - ACTIONS(1361), 1, - sym_identifier, - ACTIONS(1363), 1, - anon_sym_LT, - STATE(296), 1, - sym_array_ref, - STATE(1163), 1, - sym_ns_qualified_name, - STATE(2075), 1, - sym_namespace, - ACTIONS(712), 10, + ACTIONS(642), 30, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, anon_sym_in, + anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, + anon_sym_LT, anon_sym_GT, + anon_sym_GT_GT, anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_QMARK, anon_sym_CARET, + anon_sym_STAR_STAR, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_PLUS, anon_sym_DASH, - anon_sym_EQ, - ACTIONS(714), 25, - sym_concatenating_space, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, @@ -49797,52 +48042,104 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_POUND, + [25936] = 21, + ACTIONS(137), 1, + sym_identifier, + ACTIONS(153), 1, + anon_sym_getline, + ACTIONS(169), 1, + aux_sym_number_token1, + ACTIONS(306), 1, + aux_sym_number_token2, + ACTIONS(308), 1, + anon_sym_DQUOTE, + ACTIONS(438), 1, + anon_sym_SLASH, + ACTIONS(440), 1, + anon_sym_BANG, + ACTIONS(444), 1, + anon_sym_DOLLAR, + ACTIONS(446), 1, + anon_sym_AT, + ACTIONS(1283), 1, + anon_sym_LPAREN, + STATE(597), 1, + sym_ns_qualified_name, + STATE(614), 1, + sym_array_ref, + STATE(705), 1, + sym_field_ref, + STATE(718), 1, + aux_sym_exp_list_repeat1, + STATE(1385), 1, + sym__binary_in, + STATE(1956), 1, + sym_namespace, + ACTIONS(161), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(442), 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_CARET_EQ, - anon_sym_RBRACK, - [28398] = 8, - ACTIONS(794), 1, + STATE(659), 2, + sym__print_args, + sym_exp_list, + STATE(1420), 9, + sym_ternary_exp, + sym_binary_exp, + sym_unary_exp, + sym_string_concat, + sym_grouping, + sym__primitive, + sym_number, + sym_string, + sym_func_call, + STATE(1434), 10, + sym__getline_exp, + sym_getline_input, + sym_getline_file, + sym__exp, + sym_update_exp, + sym_assignment_exp, + sym_piped_io_exp, + sym_regex, + sym_regex_constant, + sym_indirect_func_call, + [26020] = 4, + ACTIONS(778), 2, sym_concatenating_space, - ACTIONS(1339), 1, - anon_sym_in, - ACTIONS(1347), 2, + sym__if_else_separator, + ACTIONS(1269), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(1351), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1353), 2, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(1349), 3, + ACTIONS(1271), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1341), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(792), 23, + ACTIONS(776), 34, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, + anon_sym_in, anon_sym_RBRACE, anon_sym_case, anon_sym_default, + anon_sym_LT, + anon_sym_GT, anon_sym_GT_GT, anon_sym_PIPE, anon_sym_PIPE_AMP, anon_sym_QMARK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_PLUS, @@ -49855,38 +48152,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT_EQ, anon_sym_CARET_EQ, anon_sym_POUND, - [28455] = 9, - ACTIONS(794), 1, + [26070] = 21, + ACTIONS(1285), 1, + sym_identifier, + ACTIONS(1287), 1, + anon_sym_LPAREN, + ACTIONS(1289), 1, + anon_sym_getline, + ACTIONS(1291), 1, + anon_sym_SLASH, + ACTIONS(1295), 1, + anon_sym_BANG, + ACTIONS(1299), 1, + anon_sym_DOLLAR, + ACTIONS(1301), 1, + anon_sym_AT, + ACTIONS(1303), 1, + aux_sym_number_token1, + ACTIONS(1305), 1, + aux_sym_number_token2, + ACTIONS(1307), 1, + anon_sym_DQUOTE, + STATE(772), 1, + aux_sym_exp_list_repeat1, + STATE(1093), 1, + sym_ns_qualified_name, + STATE(1142), 1, + sym_array_ref, + STATE(1251), 1, + sym_field_ref, + STATE(1510), 1, + sym__binary_in, + STATE(2080), 1, + sym_namespace, + ACTIONS(1293), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1297), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1978), 2, + sym__print_args, + sym_exp_list, + STATE(1505), 9, + sym_ternary_exp, + sym_binary_exp, + sym_unary_exp, + sym_string_concat, + sym_grouping, + sym__primitive, + sym_number, + sym_string, + sym_func_call, + STATE(1591), 10, + sym__getline_exp, + sym_getline_input, + sym_getline_file, + sym__exp, + sym_update_exp, + sym_assignment_exp, + sym_piped_io_exp, + sym_regex, + sym_regex_constant, + sym_indirect_func_call, + [26154] = 6, + ACTIONS(778), 2, sym_concatenating_space, - ACTIONS(1339), 1, - anon_sym_in, - ACTIONS(1355), 1, - anon_sym_AMP_AMP, - ACTIONS(1347), 2, + sym__if_else_separator, + ACTIONS(1269), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(1351), 2, + ACTIONS(1273), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1353), 2, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(1349), 3, + ACTIONS(1271), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1341), 6, + ACTIONS(1267), 6, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(792), 22, + ACTIONS(776), 26, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, + anon_sym_in, anon_sym_RBRACE, anon_sym_case, anon_sym_default, @@ -49894,6 +48249,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PIPE_AMP, anon_sym_QMARK, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -49905,35 +48263,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT_EQ, anon_sym_CARET_EQ, anon_sym_POUND, - [28514] = 7, - ACTIONS(870), 1, + [26208] = 8, + ACTIONS(1265), 1, + anon_sym_in, + ACTIONS(778), 2, sym_concatenating_space, - ACTIONS(1347), 2, + sym__if_else_separator, + ACTIONS(1269), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(1351), 2, + ACTIONS(1273), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1353), 2, + ACTIONS(1275), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(1349), 3, + ACTIONS(1271), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1341), 6, + ACTIONS(1267), 6, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(868), 24, + ACTIONS(776), 23, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, - anon_sym_in, anon_sym_RBRACE, anon_sym_case, anon_sym_default, @@ -49953,100 +48313,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT_EQ, anon_sym_CARET_EQ, anon_sym_POUND, - [28569] = 11, - ACTIONS(878), 1, + [26266] = 8, + ACTIONS(648), 1, + anon_sym_LBRACK, + ACTIONS(650), 1, + anon_sym_COLON_COLON, + ACTIONS(652), 1, + sym__if_else_separator, + ACTIONS(1225), 1, + anon_sym_LPAREN2, + ACTIONS(1311), 1, sym_concatenating_space, - ACTIONS(1339), 1, + ACTIONS(1227), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1309), 7, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + ACTIONS(642), 27, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_while, anon_sym_in, - ACTIONS(1345), 1, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, anon_sym_QMARK, - ACTIONS(1355), 1, - anon_sym_AMP_AMP, - ACTIONS(1357), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1347), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(1351), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1353), 2, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(1349), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1341), 6, - anon_sym_LT, - anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(876), 20, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_POUND, - [28632] = 21, - ACTIONS(1269), 1, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [26324] = 21, + ACTIONS(1285), 1, sym_identifier, - ACTIONS(1271), 1, + ACTIONS(1287), 1, anon_sym_LPAREN, - ACTIONS(1273), 1, + ACTIONS(1289), 1, anon_sym_getline, - ACTIONS(1275), 1, + ACTIONS(1291), 1, anon_sym_SLASH, - ACTIONS(1279), 1, + ACTIONS(1295), 1, anon_sym_BANG, - ACTIONS(1283), 1, + ACTIONS(1299), 1, anon_sym_DOLLAR, - ACTIONS(1285), 1, + ACTIONS(1301), 1, anon_sym_AT, - ACTIONS(1287), 1, + ACTIONS(1303), 1, aux_sym_number_token1, - ACTIONS(1289), 1, + ACTIONS(1305), 1, aux_sym_number_token2, - ACTIONS(1291), 1, + ACTIONS(1307), 1, anon_sym_DQUOTE, - STATE(761), 1, + STATE(772), 1, aux_sym_exp_list_repeat1, - STATE(1067), 1, + STATE(1093), 1, sym_ns_qualified_name, - STATE(1137), 1, + STATE(1142), 1, sym_array_ref, - STATE(1231), 1, + STATE(1251), 1, sym_field_ref, - STATE(1502), 1, + STATE(1510), 1, sym__binary_in, - STATE(1950), 1, - sym_exp_list, - STATE(2075), 1, + STATE(2080), 1, sym_namespace, - ACTIONS(1277), 2, + ACTIONS(1293), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1281), 2, + ACTIONS(1297), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1500), 9, + STATE(1979), 2, + sym__print_args, + sym_exp_list, + STATE(1505), 9, sym_ternary_exp, sym_binary_exp, sym_unary_exp, @@ -50056,7 +48415,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_string, sym_func_call, - STATE(1599), 10, + STATE(1595), 10, sym__getline_exp, sym_getline_input, sym_getline_file, @@ -50067,48 +48426,49 @@ static const uint16_t ts_small_parse_table[] = { sym_regex, sym_regex_constant, sym_indirect_func_call, - [28715] = 21, - ACTIONS(1269), 1, + [26408] = 21, + ACTIONS(169), 1, + aux_sym_number_token1, + ACTIONS(270), 1, sym_identifier, - ACTIONS(1271), 1, - anon_sym_LPAREN, - ACTIONS(1273), 1, + ACTIONS(288), 1, anon_sym_getline, - ACTIONS(1275), 1, + ACTIONS(294), 1, anon_sym_SLASH, - ACTIONS(1279), 1, + ACTIONS(298), 1, anon_sym_BANG, - ACTIONS(1283), 1, + ACTIONS(302), 1, anon_sym_DOLLAR, - ACTIONS(1285), 1, + ACTIONS(304), 1, anon_sym_AT, - ACTIONS(1287), 1, - aux_sym_number_token1, - ACTIONS(1289), 1, + ACTIONS(306), 1, aux_sym_number_token2, - ACTIONS(1291), 1, + ACTIONS(308), 1, anon_sym_DQUOTE, - STATE(761), 1, - aux_sym_exp_list_repeat1, - STATE(1067), 1, + ACTIONS(1283), 1, + anon_sym_LPAREN, + STATE(720), 1, sym_ns_qualified_name, - STATE(1137), 1, + STATE(721), 1, + aux_sym_exp_list_repeat1, + STATE(991), 1, sym_array_ref, - STATE(1231), 1, + STATE(1194), 1, sym_field_ref, - STATE(1502), 1, + STATE(1385), 1, sym__binary_in, - STATE(1940), 1, - sym_exp_list, - STATE(2075), 1, + STATE(1956), 1, sym_namespace, - ACTIONS(1277), 2, + ACTIONS(296), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1281), 2, + ACTIONS(300), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1500), 9, + STATE(659), 2, + sym__print_args, + sym_exp_list, + STATE(1476), 9, sym_ternary_exp, sym_binary_exp, sym_unary_exp, @@ -50118,7 +48478,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_string, sym_func_call, - STATE(1585), 10, + STATE(1535), 10, sym__getline_exp, sym_getline_input, sym_getline_file, @@ -50129,214 +48489,197 @@ static const uint16_t ts_small_parse_table[] = { sym_regex, sym_regex_constant, sym_indirect_func_call, - [28798] = 21, - ACTIONS(1269), 1, - sym_identifier, - ACTIONS(1271), 1, - anon_sym_LPAREN, - ACTIONS(1273), 1, - anon_sym_getline, - ACTIONS(1275), 1, - anon_sym_SLASH, - ACTIONS(1279), 1, - anon_sym_BANG, - ACTIONS(1283), 1, - anon_sym_DOLLAR, - ACTIONS(1285), 1, - anon_sym_AT, - ACTIONS(1287), 1, - aux_sym_number_token1, - ACTIONS(1289), 1, - aux_sym_number_token2, - ACTIONS(1291), 1, - anon_sym_DQUOTE, - STATE(761), 1, - aux_sym_exp_list_repeat1, - STATE(1067), 1, - sym_ns_qualified_name, - STATE(1137), 1, - sym_array_ref, - STATE(1231), 1, - sym_field_ref, - STATE(1502), 1, - sym__binary_in, - STATE(1963), 1, - sym_exp_list, - STATE(2075), 1, - sym_namespace, - ACTIONS(1277), 2, + [26492] = 7, + ACTIONS(882), 2, + sym_concatenating_space, + sym__if_else_separator, + ACTIONS(1269), 2, + anon_sym_CARET, + anon_sym_STAR_STAR, + ACTIONS(1273), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1281), 2, + ACTIONS(1275), 2, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(1271), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1267), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(880), 24, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1500), 9, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_string_concat, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - STATE(1587), 10, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_regex, - sym_regex_constant, - sym_indirect_func_call, - [28881] = 21, - ACTIONS(1269), 1, - sym_identifier, - ACTIONS(1271), 1, - anon_sym_LPAREN, - ACTIONS(1273), 1, - anon_sym_getline, - ACTIONS(1275), 1, - anon_sym_SLASH, - ACTIONS(1279), 1, - anon_sym_BANG, - ACTIONS(1283), 1, - anon_sym_DOLLAR, - ACTIONS(1285), 1, - anon_sym_AT, - ACTIONS(1287), 1, - aux_sym_number_token1, - ACTIONS(1289), 1, - aux_sym_number_token2, - ACTIONS(1291), 1, - anon_sym_DQUOTE, - STATE(761), 1, - aux_sym_exp_list_repeat1, - STATE(1067), 1, - sym_ns_qualified_name, - STATE(1137), 1, - sym_array_ref, - STATE(1231), 1, - sym_field_ref, - STATE(1502), 1, - sym__binary_in, - STATE(2034), 1, - sym_exp_list, - STATE(2075), 1, - sym_namespace, - ACTIONS(1277), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_POUND, + [26548] = 11, + ACTIONS(1265), 1, + anon_sym_in, + ACTIONS(1277), 1, + anon_sym_AMP_AMP, + ACTIONS(1313), 1, + anon_sym_QMARK, + ACTIONS(1315), 1, + anon_sym_PIPE_PIPE, + ACTIONS(878), 2, + sym_concatenating_space, + sym__if_else_separator, + ACTIONS(1269), 2, + anon_sym_CARET, + anon_sym_STAR_STAR, + ACTIONS(1273), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1281), 2, + ACTIONS(1275), 2, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(1271), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1267), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(876), 20, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1500), 9, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_string_concat, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - STATE(1589), 10, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_regex, - sym_regex_constant, - sym_indirect_func_call, - [28964] = 1, - ACTIONS(1329), 40, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_POUND, + [26612] = 4, + ACTIONS(684), 1, + anon_sym_LBRACK, + ACTIONS(690), 1, + sym_concatenating_space, + ACTIONS(1263), 1, + anon_sym_LT, + ACTIONS(688), 38, + anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, + anon_sym_in, anon_sym_RBRACE, anon_sym_case, anon_sym_default, - anon_sym_getline, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, anon_sym_GT, anon_sym_GT_GT, anon_sym_PIPE, anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_CARET, + anon_sym_STAR_STAR, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PLUS, anon_sym_DASH, - anon_sym_BANG, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_POUND, + [26662] = 21, + ACTIONS(79), 1, aux_sym_number_token1, + ACTIONS(328), 1, aux_sym_number_token2, + ACTIONS(330), 1, anon_sym_DQUOTE, - anon_sym_POUND, - [29007] = 21, - ACTIONS(1269), 1, + ACTIONS(336), 1, sym_identifier, - ACTIONS(1271), 1, - anon_sym_LPAREN, - ACTIONS(1273), 1, + ACTIONS(354), 1, anon_sym_getline, - ACTIONS(1275), 1, + ACTIONS(360), 1, anon_sym_SLASH, - ACTIONS(1279), 1, + ACTIONS(364), 1, anon_sym_BANG, - ACTIONS(1283), 1, + ACTIONS(368), 1, anon_sym_DOLLAR, - ACTIONS(1285), 1, + ACTIONS(370), 1, anon_sym_AT, - ACTIONS(1287), 1, - aux_sym_number_token1, - ACTIONS(1289), 1, - aux_sym_number_token2, - ACTIONS(1291), 1, - anon_sym_DQUOTE, - STATE(761), 1, - aux_sym_exp_list_repeat1, - STATE(1067), 1, + ACTIONS(1317), 1, + anon_sym_LPAREN, + STATE(672), 1, sym_ns_qualified_name, - STATE(1137), 1, + STATE(735), 1, + aux_sym_exp_list_repeat1, + STATE(740), 1, sym_array_ref, - STATE(1231), 1, + STATE(950), 1, sym_field_ref, - STATE(1502), 1, + STATE(1305), 1, sym__binary_in, - STATE(2051), 1, - sym_exp_list, - STATE(2075), 1, + STATE(2068), 1, sym_namespace, - ACTIONS(1277), 2, + ACTIONS(362), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1281), 2, + ACTIONS(366), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1500), 9, + STATE(629), 2, + sym__print_args, + sym_exp_list, + STATE(1461), 9, sym_ternary_exp, sym_binary_exp, sym_unary_exp, @@ -50346,7 +48689,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_string, sym_func_call, - STATE(1581), 10, + STATE(1482), 10, sym__getline_exp, sym_getline_input, sym_getline_file, @@ -50357,8 +48700,105 @@ static const uint16_t ts_small_parse_table[] = { sym_regex, sym_regex_constant, sym_indirect_func_call, - [29090] = 1, - ACTIONS(1317), 40, + [26746] = 7, + ACTIONS(870), 2, + sym_concatenating_space, + sym__if_else_separator, + ACTIONS(1269), 2, + anon_sym_CARET, + anon_sym_STAR_STAR, + ACTIONS(1273), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1275), 2, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(1271), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1267), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(868), 24, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_POUND, + [26802] = 4, + ACTIONS(652), 2, + sym_concatenating_space, + sym__if_else_separator, + ACTIONS(1241), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1243), 7, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + ACTIONS(642), 30, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_CARET, + anon_sym_STAR_STAR, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_POUND, + [26852] = 2, + ACTIONS(1321), 1, + sym__if_else_separator, + ACTIONS(1319), 40, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, @@ -50399,48 +48839,49 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [29133] = 21, - ACTIONS(1269), 1, + [26898] = 21, + ACTIONS(85), 1, sym_identifier, - ACTIONS(1271), 1, - anon_sym_LPAREN, - ACTIONS(1273), 1, + ACTIONS(111), 1, anon_sym_getline, - ACTIONS(1275), 1, + ACTIONS(117), 1, anon_sym_SLASH, - ACTIONS(1279), 1, + ACTIONS(121), 1, anon_sym_BANG, - ACTIONS(1283), 1, + ACTIONS(125), 1, anon_sym_DOLLAR, - ACTIONS(1285), 1, + ACTIONS(127), 1, anon_sym_AT, - ACTIONS(1287), 1, + ACTIONS(129), 1, aux_sym_number_token1, - ACTIONS(1289), 1, + ACTIONS(131), 1, aux_sym_number_token2, - ACTIONS(1291), 1, + ACTIONS(133), 1, anon_sym_DQUOTE, - STATE(761), 1, - aux_sym_exp_list_repeat1, - STATE(1067), 1, + ACTIONS(1283), 1, + anon_sym_LPAREN, + STATE(244), 1, sym_ns_qualified_name, - STATE(1137), 1, + STATE(268), 1, sym_array_ref, - STATE(1231), 1, + STATE(274), 1, sym_field_ref, - STATE(1502), 1, + STATE(426), 1, sym__binary_in, - STATE(1969), 1, - sym_exp_list, - STATE(2075), 1, + STATE(771), 1, + aux_sym_exp_list_repeat1, + STATE(1956), 1, sym_namespace, - ACTIONS(1277), 2, + ACTIONS(119), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1281), 2, + ACTIONS(123), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1500), 9, + STATE(659), 2, + sym__print_args, + sym_exp_list, + STATE(427), 9, sym_ternary_exp, sym_binary_exp, sym_unary_exp, @@ -50450,7 +48891,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_string, sym_func_call, - STATE(1580), 10, + STATE(473), 10, sym__getline_exp, sym_getline_input, sym_getline_file, @@ -50461,48 +48902,49 @@ static const uint16_t ts_small_parse_table[] = { sym_regex, sym_regex_constant, sym_indirect_func_call, - [29216] = 21, - ACTIONS(1269), 1, + [26982] = 21, + ACTIONS(1285), 1, sym_identifier, - ACTIONS(1271), 1, + ACTIONS(1287), 1, anon_sym_LPAREN, - ACTIONS(1273), 1, + ACTIONS(1289), 1, anon_sym_getline, - ACTIONS(1275), 1, + ACTIONS(1291), 1, anon_sym_SLASH, - ACTIONS(1279), 1, + ACTIONS(1295), 1, anon_sym_BANG, - ACTIONS(1283), 1, + ACTIONS(1299), 1, anon_sym_DOLLAR, - ACTIONS(1285), 1, + ACTIONS(1301), 1, anon_sym_AT, - ACTIONS(1287), 1, + ACTIONS(1303), 1, aux_sym_number_token1, - ACTIONS(1289), 1, + ACTIONS(1305), 1, aux_sym_number_token2, - ACTIONS(1291), 1, + ACTIONS(1307), 1, anon_sym_DQUOTE, - STATE(761), 1, + STATE(772), 1, aux_sym_exp_list_repeat1, - STATE(1067), 1, + STATE(1093), 1, sym_ns_qualified_name, - STATE(1137), 1, + STATE(1142), 1, sym_array_ref, - STATE(1231), 1, + STATE(1251), 1, sym_field_ref, - STATE(1502), 1, + STATE(1510), 1, sym__binary_in, - STATE(1908), 1, - sym_exp_list, - STATE(2075), 1, + STATE(2080), 1, sym_namespace, - ACTIONS(1277), 2, + ACTIONS(1293), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1281), 2, + ACTIONS(1297), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1500), 9, + STATE(1989), 2, + sym__print_args, + sym_exp_list, + STATE(1505), 9, sym_ternary_exp, sym_binary_exp, sym_unary_exp, @@ -50512,7 +48954,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_string, sym_func_call, - STATE(1584), 10, + STATE(1591), 10, sym__getline_exp, sym_getline_input, sym_getline_file, @@ -50523,234 +48965,185 @@ static const uint16_t ts_small_parse_table[] = { sym_regex, sym_regex_constant, sym_indirect_func_call, - [29299] = 21, - ACTIONS(1269), 1, - sym_identifier, - ACTIONS(1271), 1, - anon_sym_LPAREN, - ACTIONS(1273), 1, - anon_sym_getline, - ACTIONS(1275), 1, + [27066] = 5, + ACTIONS(652), 1, + sym__if_else_separator, + ACTIONS(1231), 1, + sym_concatenating_space, + ACTIONS(1227), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1229), 7, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + ACTIONS(642), 30, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_CARET, + anon_sym_STAR_STAR, + anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1279), 1, - anon_sym_BANG, - ACTIONS(1283), 1, - anon_sym_DOLLAR, - ACTIONS(1285), 1, - anon_sym_AT, - ACTIONS(1287), 1, - aux_sym_number_token1, - ACTIONS(1289), 1, - aux_sym_number_token2, - ACTIONS(1291), 1, - anon_sym_DQUOTE, - STATE(761), 1, - aux_sym_exp_list_repeat1, - STATE(1067), 1, - sym_ns_qualified_name, - STATE(1137), 1, - sym_array_ref, - STATE(1231), 1, - sym_field_ref, - STATE(1502), 1, - sym__binary_in, - STATE(1977), 1, - sym_exp_list, - STATE(2075), 1, - sym_namespace, - ACTIONS(1277), 2, + anon_sym_PERCENT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1281), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1500), 9, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_string_concat, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - STATE(1594), 10, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_regex, - sym_regex_constant, - sym_indirect_func_call, - [29382] = 21, - ACTIONS(1269), 1, - sym_identifier, - ACTIONS(1271), 1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_POUND, + [27118] = 2, + ACTIONS(1325), 1, + sym__if_else_separator, + ACTIONS(1323), 40, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_if, anon_sym_LPAREN, - ACTIONS(1273), 1, + anon_sym_while, + anon_sym_do, + anon_sym_for, + sym_break_statement, + sym_continue_statement, + anon_sym_delete, + anon_sym_exit, + anon_sym_return, + anon_sym_switch, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, anon_sym_getline, - ACTIONS(1275), 1, + sym_next_statement, + sym_nextfile_statement, + anon_sym_print, + anon_sym_printf, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, anon_sym_SLASH, - ACTIONS(1279), 1, - anon_sym_BANG, - ACTIONS(1283), 1, - anon_sym_DOLLAR, - ACTIONS(1285), 1, - anon_sym_AT, - ACTIONS(1287), 1, - aux_sym_number_token1, - ACTIONS(1289), 1, - aux_sym_number_token2, - ACTIONS(1291), 1, - anon_sym_DQUOTE, - STATE(761), 1, - aux_sym_exp_list_repeat1, - STATE(1067), 1, - sym_ns_qualified_name, - STATE(1137), 1, - sym_array_ref, - STATE(1231), 1, - sym_field_ref, - STATE(1502), 1, - sym__binary_in, - STATE(1982), 1, - sym_exp_list, - STATE(2075), 1, - sym_namespace, - ACTIONS(1277), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1281), 2, + anon_sym_BANG, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1500), 9, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_string_concat, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - STATE(1600), 10, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_regex, - sym_regex_constant, - sym_indirect_func_call, - [29465] = 21, - ACTIONS(1269), 1, - sym_identifier, - ACTIONS(1271), 1, - anon_sym_LPAREN, - ACTIONS(1273), 1, - anon_sym_getline, - ACTIONS(1275), 1, - anon_sym_SLASH, - ACTIONS(1279), 1, - anon_sym_BANG, - ACTIONS(1283), 1, anon_sym_DOLLAR, - ACTIONS(1285), 1, anon_sym_AT, - ACTIONS(1287), 1, + sym_identifier, aux_sym_number_token1, - ACTIONS(1289), 1, aux_sym_number_token2, - ACTIONS(1291), 1, anon_sym_DQUOTE, - STATE(761), 1, - aux_sym_exp_list_repeat1, - STATE(1067), 1, - sym_ns_qualified_name, - STATE(1137), 1, - sym_array_ref, - STATE(1231), 1, - sym_field_ref, - STATE(1502), 1, - sym__binary_in, - STATE(1916), 1, - sym_exp_list, - STATE(2075), 1, - sym_namespace, - ACTIONS(1277), 2, + anon_sym_POUND, + [27164] = 3, + ACTIONS(830), 1, + sym_concatenating_space, + ACTIONS(866), 1, + sym_regex_flags, + ACTIONS(826), 39, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_CARET, + anon_sym_STAR_STAR, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1281), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1500), 9, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_string_concat, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - STATE(1579), 10, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_regex, - sym_regex_constant, - sym_indirect_func_call, - [29548] = 21, - ACTIONS(1269), 1, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_POUND, + [27212] = 21, + ACTIONS(530), 1, sym_identifier, - ACTIONS(1271), 1, - anon_sym_LPAREN, - ACTIONS(1273), 1, + ACTIONS(544), 1, anon_sym_getline, - ACTIONS(1275), 1, + ACTIONS(550), 1, anon_sym_SLASH, - ACTIONS(1279), 1, + ACTIONS(554), 1, anon_sym_BANG, - ACTIONS(1283), 1, + ACTIONS(558), 1, anon_sym_DOLLAR, - ACTIONS(1285), 1, + ACTIONS(560), 1, anon_sym_AT, - ACTIONS(1287), 1, + ACTIONS(562), 1, aux_sym_number_token1, - ACTIONS(1289), 1, + ACTIONS(564), 1, aux_sym_number_token2, - ACTIONS(1291), 1, + ACTIONS(566), 1, anon_sym_DQUOTE, - STATE(761), 1, - aux_sym_exp_list_repeat1, - STATE(1067), 1, + ACTIONS(1317), 1, + anon_sym_LPAREN, + STATE(200), 1, sym_ns_qualified_name, - STATE(1137), 1, + STATE(219), 1, sym_array_ref, - STATE(1231), 1, + STATE(258), 1, sym_field_ref, - STATE(1502), 1, + STATE(373), 1, sym__binary_in, - STATE(1988), 1, - sym_exp_list, - STATE(2075), 1, + STATE(766), 1, + aux_sym_exp_list_repeat1, + STATE(2068), 1, sym_namespace, - ACTIONS(1277), 2, + ACTIONS(552), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1281), 2, + ACTIONS(556), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1500), 9, + STATE(629), 2, + sym__print_args, + sym_exp_list, + STATE(359), 9, sym_ternary_exp, sym_binary_exp, sym_unary_exp, @@ -50760,7 +49153,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_string, sym_func_call, - STATE(1597), 10, + STATE(447), 10, sym__getline_exp, sym_getline_input, sym_getline_file, @@ -50771,48 +49164,49 @@ static const uint16_t ts_small_parse_table[] = { sym_regex, sym_regex_constant, sym_indirect_func_call, - [29631] = 21, - ACTIONS(1269), 1, + [27296] = 21, + ACTIONS(39), 1, sym_identifier, - ACTIONS(1271), 1, - anon_sym_LPAREN, - ACTIONS(1273), 1, + ACTIONS(63), 1, anon_sym_getline, - ACTIONS(1275), 1, + ACTIONS(79), 1, + aux_sym_number_token1, + ACTIONS(318), 1, anon_sym_SLASH, - ACTIONS(1279), 1, + ACTIONS(320), 1, anon_sym_BANG, - ACTIONS(1283), 1, + ACTIONS(324), 1, anon_sym_DOLLAR, - ACTIONS(1285), 1, + ACTIONS(326), 1, anon_sym_AT, - ACTIONS(1287), 1, - aux_sym_number_token1, - ACTIONS(1289), 1, + ACTIONS(328), 1, aux_sym_number_token2, - ACTIONS(1291), 1, + ACTIONS(330), 1, anon_sym_DQUOTE, - ACTIONS(1365), 1, - anon_sym_RPAREN, - STATE(1067), 1, + ACTIONS(1317), 1, + anon_sym_LPAREN, + STATE(590), 1, sym_ns_qualified_name, - STATE(1137), 1, + STATE(601), 1, sym_array_ref, - STATE(1231), 1, + STATE(632), 1, sym_field_ref, - STATE(1502), 1, + STATE(722), 1, + aux_sym_exp_list_repeat1, + STATE(1305), 1, sym__binary_in, - STATE(1964), 1, - sym_args, - STATE(2075), 1, + STATE(2068), 1, sym_namespace, - ACTIONS(1277), 2, + ACTIONS(71), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1281), 2, + ACTIONS(322), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1500), 9, + STATE(629), 2, + sym__print_args, + sym_exp_list, + STATE(1371), 9, sym_ternary_exp, sym_binary_exp, sym_unary_exp, @@ -50822,7 +49216,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_string, sym_func_call, - STATE(1573), 10, + STATE(1423), 10, sym__getline_exp, sym_getline_input, sym_getline_file, @@ -50833,48 +49227,236 @@ static const uint16_t ts_small_parse_table[] = { sym_regex, sym_regex_constant, sym_indirect_func_call, - [29714] = 21, - ACTIONS(1269), 1, + [27380] = 12, + ACTIONS(1265), 1, + anon_sym_in, + ACTIONS(1277), 1, + anon_sym_AMP_AMP, + ACTIONS(1313), 1, + anon_sym_QMARK, + ACTIONS(1315), 1, + anon_sym_PIPE_PIPE, + ACTIONS(864), 2, + sym_concatenating_space, + sym__if_else_separator, + ACTIONS(1269), 2, + anon_sym_CARET, + anon_sym_STAR_STAR, + ACTIONS(1273), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1275), 2, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(1327), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(1271), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1267), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(848), 18, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, + anon_sym_GT_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_POUND, + [27446] = 3, + ACTIONS(836), 1, + sym_concatenating_space, + ACTIONS(846), 1, + sym_regex_flags, + ACTIONS(832), 39, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_CARET, + anon_sym_STAR_STAR, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_POUND, + [27494] = 2, + ACTIONS(1331), 1, + sym__if_else_separator, + ACTIONS(1329), 40, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_if, + anon_sym_LPAREN, + anon_sym_while, + anon_sym_do, + anon_sym_for, + sym_break_statement, + sym_continue_statement, + anon_sym_delete, + anon_sym_exit, + anon_sym_return, + anon_sym_switch, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, + anon_sym_getline, + sym_next_statement, + sym_nextfile_statement, + anon_sym_print, + anon_sym_printf, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_DOLLAR, + anon_sym_AT, sym_identifier, - ACTIONS(1271), 1, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DQUOTE, + anon_sym_POUND, + [27540] = 2, + ACTIONS(1335), 1, + sym__if_else_separator, + ACTIONS(1333), 40, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_if, anon_sym_LPAREN, - ACTIONS(1273), 1, + anon_sym_while, + anon_sym_do, + anon_sym_for, + sym_break_statement, + sym_continue_statement, + anon_sym_delete, + anon_sym_exit, + anon_sym_return, + anon_sym_switch, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, anon_sym_getline, - ACTIONS(1275), 1, + sym_next_statement, + sym_nextfile_statement, + anon_sym_print, + anon_sym_printf, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, anon_sym_SLASH, - ACTIONS(1279), 1, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_BANG, - ACTIONS(1283), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_DOLLAR, - ACTIONS(1285), 1, anon_sym_AT, - ACTIONS(1287), 1, + sym_identifier, aux_sym_number_token1, - ACTIONS(1289), 1, aux_sym_number_token2, + anon_sym_DQUOTE, + anon_sym_POUND, + [27586] = 21, + ACTIONS(1285), 1, + sym_identifier, + ACTIONS(1287), 1, + anon_sym_LPAREN, + ACTIONS(1289), 1, + anon_sym_getline, ACTIONS(1291), 1, + anon_sym_SLASH, + ACTIONS(1295), 1, + anon_sym_BANG, + ACTIONS(1299), 1, + anon_sym_DOLLAR, + ACTIONS(1301), 1, + anon_sym_AT, + ACTIONS(1303), 1, + aux_sym_number_token1, + ACTIONS(1305), 1, + aux_sym_number_token2, + ACTIONS(1307), 1, anon_sym_DQUOTE, - STATE(761), 1, + STATE(772), 1, aux_sym_exp_list_repeat1, - STATE(1067), 1, + STATE(1093), 1, sym_ns_qualified_name, - STATE(1137), 1, + STATE(1142), 1, sym_array_ref, - STATE(1231), 1, + STATE(1251), 1, sym_field_ref, - STATE(1502), 1, + STATE(1510), 1, sym__binary_in, - STATE(1994), 1, - sym_exp_list, - STATE(2075), 1, + STATE(2080), 1, sym_namespace, - ACTIONS(1277), 2, + ACTIONS(1293), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1281), 2, + ACTIONS(1297), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1500), 9, + STATE(1988), 2, + sym__print_args, + sym_exp_list, + STATE(1505), 9, sym_ternary_exp, sym_binary_exp, sym_unary_exp, @@ -50884,7 +49466,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_string, sym_func_call, - STATE(1582), 10, + STATE(1595), 10, sym__getline_exp, sym_getline_input, sym_getline_file, @@ -50895,48 +49477,97 @@ static const uint16_t ts_small_parse_table[] = { sym_regex, sym_regex_constant, sym_indirect_func_call, - [29797] = 21, - ACTIONS(1269), 1, + [27670] = 7, + ACTIONS(648), 1, + anon_sym_LBRACK, + ACTIONS(650), 1, + anon_sym_COLON_COLON, + ACTIONS(1225), 1, + anon_sym_LPAREN2, + ACTIONS(652), 2, + sym_concatenating_space, + sym__if_else_separator, + ACTIONS(1241), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1337), 7, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + ACTIONS(642), 27, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_while, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_CARET, + anon_sym_STAR_STAR, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [27726] = 21, + ACTIONS(1285), 1, sym_identifier, - ACTIONS(1271), 1, + ACTIONS(1287), 1, anon_sym_LPAREN, - ACTIONS(1273), 1, + ACTIONS(1289), 1, anon_sym_getline, - ACTIONS(1275), 1, + ACTIONS(1291), 1, anon_sym_SLASH, - ACTIONS(1279), 1, + ACTIONS(1295), 1, anon_sym_BANG, - ACTIONS(1283), 1, + ACTIONS(1299), 1, anon_sym_DOLLAR, - ACTIONS(1285), 1, + ACTIONS(1301), 1, anon_sym_AT, - ACTIONS(1287), 1, + ACTIONS(1303), 1, aux_sym_number_token1, - ACTIONS(1289), 1, + ACTIONS(1305), 1, aux_sym_number_token2, - ACTIONS(1291), 1, + ACTIONS(1307), 1, anon_sym_DQUOTE, - STATE(761), 1, + STATE(772), 1, aux_sym_exp_list_repeat1, - STATE(1067), 1, + STATE(1093), 1, sym_ns_qualified_name, - STATE(1137), 1, + STATE(1142), 1, sym_array_ref, - STATE(1231), 1, + STATE(1251), 1, sym_field_ref, - STATE(1502), 1, + STATE(1510), 1, sym__binary_in, - STATE(1926), 1, + STATE(2000), 1, sym_exp_list, - STATE(2075), 1, + STATE(2080), 1, sym_namespace, - ACTIONS(1277), 2, + ACTIONS(1293), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1281), 2, + ACTIONS(1297), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1500), 9, + STATE(1505), 9, sym_ternary_exp, sym_binary_exp, sym_unary_exp, @@ -50946,7 +49577,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_string, sym_func_call, - STATE(1596), 10, + STATE(1579), 10, sym__getline_exp, sym_getline_input, sym_getline_file, @@ -50957,30 +49588,27 @@ static const uint16_t ts_small_parse_table[] = { sym_regex, sym_regex_constant, sym_indirect_func_call, - [29880] = 5, - ACTIONS(650), 1, - anon_sym_LBRACK, - ACTIONS(652), 1, - anon_sym_COLON_COLON, - ACTIONS(1367), 1, - anon_sym_LT, - ACTIONS(680), 2, + [27809] = 3, + ACTIONS(778), 1, sym_concatenating_space, - sym__if_else_separator, - ACTIONS(678), 35, + ACTIONS(1339), 2, + anon_sym_CARET, + anon_sym_STAR_STAR, + ACTIONS(776), 37, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, - anon_sym_while, anon_sym_in, + anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, + anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, anon_sym_PIPE, anon_sym_PIPE_AMP, anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -51003,48 +49631,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_CARET_EQ, - [29931] = 21, - ACTIONS(1269), 1, + anon_sym_POUND, + [27856] = 21, + ACTIONS(1285), 1, sym_identifier, - ACTIONS(1271), 1, + ACTIONS(1287), 1, anon_sym_LPAREN, - ACTIONS(1273), 1, + ACTIONS(1289), 1, anon_sym_getline, - ACTIONS(1275), 1, + ACTIONS(1291), 1, anon_sym_SLASH, - ACTIONS(1279), 1, + ACTIONS(1295), 1, anon_sym_BANG, - ACTIONS(1283), 1, + ACTIONS(1299), 1, anon_sym_DOLLAR, - ACTIONS(1285), 1, + ACTIONS(1301), 1, anon_sym_AT, - ACTIONS(1287), 1, + ACTIONS(1303), 1, aux_sym_number_token1, - ACTIONS(1289), 1, + ACTIONS(1305), 1, aux_sym_number_token2, - ACTIONS(1291), 1, + ACTIONS(1307), 1, anon_sym_DQUOTE, - ACTIONS(1369), 1, - anon_sym_RPAREN, - STATE(1067), 1, + STATE(772), 1, + aux_sym_exp_list_repeat1, + STATE(1093), 1, sym_ns_qualified_name, - STATE(1137), 1, + STATE(1142), 1, sym_array_ref, - STATE(1231), 1, + STATE(1251), 1, sym_field_ref, - STATE(1502), 1, + STATE(1510), 1, sym__binary_in, - STATE(1970), 1, - sym_args, - STATE(2075), 1, + STATE(1963), 1, + sym_exp_list, + STATE(2080), 1, sym_namespace, - ACTIONS(1277), 2, + ACTIONS(1293), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1281), 2, + ACTIONS(1297), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1500), 9, + STATE(1505), 9, sym_ternary_exp, sym_binary_exp, sym_unary_exp, @@ -51054,7 +49683,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_string, sym_func_call, - STATE(1573), 10, + STATE(1598), 10, sym__getline_exp, sym_getline_input, sym_getline_file, @@ -51065,48 +49694,48 @@ static const uint16_t ts_small_parse_table[] = { sym_regex, sym_regex_constant, sym_indirect_func_call, - [30014] = 21, - ACTIONS(1269), 1, + [27939] = 21, + ACTIONS(1285), 1, sym_identifier, - ACTIONS(1271), 1, + ACTIONS(1287), 1, anon_sym_LPAREN, - ACTIONS(1273), 1, + ACTIONS(1289), 1, anon_sym_getline, - ACTIONS(1275), 1, + ACTIONS(1291), 1, anon_sym_SLASH, - ACTIONS(1279), 1, + ACTIONS(1295), 1, anon_sym_BANG, - ACTIONS(1283), 1, + ACTIONS(1299), 1, anon_sym_DOLLAR, - ACTIONS(1285), 1, + ACTIONS(1301), 1, anon_sym_AT, - ACTIONS(1287), 1, + ACTIONS(1303), 1, aux_sym_number_token1, - ACTIONS(1289), 1, + ACTIONS(1305), 1, aux_sym_number_token2, - ACTIONS(1291), 1, + ACTIONS(1307), 1, anon_sym_DQUOTE, - STATE(761), 1, + STATE(772), 1, aux_sym_exp_list_repeat1, - STATE(1067), 1, + STATE(1093), 1, sym_ns_qualified_name, - STATE(1137), 1, + STATE(1142), 1, sym_array_ref, - STATE(1231), 1, + STATE(1251), 1, sym_field_ref, - STATE(1502), 1, + STATE(1510), 1, sym__binary_in, - STATE(2003), 1, - sym_exp_list, - STATE(2075), 1, + STATE(2080), 1, sym_namespace, - ACTIONS(1277), 2, + STATE(2095), 1, + sym_exp_list, + ACTIONS(1293), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1281), 2, + ACTIONS(1297), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1500), 9, + STATE(1505), 9, sym_ternary_exp, sym_binary_exp, sym_unary_exp, @@ -51116,7 +49745,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_string, sym_func_call, - STATE(1586), 10, + STATE(1592), 10, sym__getline_exp, sym_getline_input, sym_getline_file, @@ -51127,48 +49756,48 @@ static const uint16_t ts_small_parse_table[] = { sym_regex, sym_regex_constant, sym_indirect_func_call, - [30097] = 21, - ACTIONS(1269), 1, + [28022] = 21, + ACTIONS(1285), 1, sym_identifier, - ACTIONS(1271), 1, + ACTIONS(1287), 1, anon_sym_LPAREN, - ACTIONS(1273), 1, + ACTIONS(1289), 1, anon_sym_getline, - ACTIONS(1275), 1, + ACTIONS(1291), 1, anon_sym_SLASH, - ACTIONS(1279), 1, + ACTIONS(1295), 1, anon_sym_BANG, - ACTIONS(1283), 1, + ACTIONS(1299), 1, anon_sym_DOLLAR, - ACTIONS(1285), 1, + ACTIONS(1301), 1, anon_sym_AT, - ACTIONS(1287), 1, + ACTIONS(1303), 1, aux_sym_number_token1, - ACTIONS(1289), 1, + ACTIONS(1305), 1, aux_sym_number_token2, - ACTIONS(1291), 1, + ACTIONS(1307), 1, anon_sym_DQUOTE, - STATE(761), 1, + STATE(772), 1, aux_sym_exp_list_repeat1, - STATE(1067), 1, + STATE(1093), 1, sym_ns_qualified_name, - STATE(1137), 1, + STATE(1142), 1, sym_array_ref, - STATE(1231), 1, + STATE(1251), 1, sym_field_ref, - STATE(1502), 1, + STATE(1510), 1, sym__binary_in, - STATE(1922), 1, - sym_exp_list, - STATE(2075), 1, + STATE(2080), 1, sym_namespace, - ACTIONS(1277), 2, + STATE(2101), 1, + sym_exp_list, + ACTIONS(1293), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1281), 2, + ACTIONS(1297), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1500), 9, + STATE(1505), 9, sym_ternary_exp, sym_binary_exp, sym_unary_exp, @@ -51178,7 +49807,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_string, sym_func_call, - STATE(1599), 10, + STATE(1576), 10, sym__getline_exp, sym_getline_input, sym_getline_file, @@ -51189,48 +49818,48 @@ static const uint16_t ts_small_parse_table[] = { sym_regex, sym_regex_constant, sym_indirect_func_call, - [30180] = 21, - ACTIONS(1269), 1, + [28105] = 21, + ACTIONS(1285), 1, sym_identifier, - ACTIONS(1271), 1, + ACTIONS(1287), 1, anon_sym_LPAREN, - ACTIONS(1273), 1, + ACTIONS(1289), 1, anon_sym_getline, - ACTIONS(1275), 1, + ACTIONS(1291), 1, anon_sym_SLASH, - ACTIONS(1279), 1, + ACTIONS(1295), 1, anon_sym_BANG, - ACTIONS(1283), 1, + ACTIONS(1299), 1, anon_sym_DOLLAR, - ACTIONS(1285), 1, + ACTIONS(1301), 1, anon_sym_AT, - ACTIONS(1287), 1, + ACTIONS(1303), 1, aux_sym_number_token1, - ACTIONS(1289), 1, + ACTIONS(1305), 1, aux_sym_number_token2, - ACTIONS(1291), 1, + ACTIONS(1307), 1, anon_sym_DQUOTE, - ACTIONS(1371), 1, - anon_sym_RPAREN, - STATE(1067), 1, + STATE(772), 1, + aux_sym_exp_list_repeat1, + STATE(1093), 1, sym_ns_qualified_name, - STATE(1137), 1, + STATE(1142), 1, sym_array_ref, - STATE(1231), 1, + STATE(1251), 1, sym_field_ref, - STATE(1502), 1, + STATE(1510), 1, sym__binary_in, - STATE(1974), 1, - sym_args, - STATE(2075), 1, + STATE(2009), 1, + sym_exp_list, + STATE(2080), 1, sym_namespace, - ACTIONS(1277), 2, + ACTIONS(1293), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1281), 2, + ACTIONS(1297), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1500), 9, + STATE(1505), 9, sym_ternary_exp, sym_binary_exp, sym_unary_exp, @@ -51240,7 +49869,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_string, sym_func_call, - STATE(1573), 10, + STATE(1587), 10, sym__getline_exp, sym_getline_input, sym_getline_file, @@ -51251,48 +49880,48 @@ static const uint16_t ts_small_parse_table[] = { sym_regex, sym_regex_constant, sym_indirect_func_call, - [30263] = 21, - ACTIONS(1269), 1, + [28188] = 21, + ACTIONS(1285), 1, sym_identifier, - ACTIONS(1271), 1, + ACTIONS(1287), 1, anon_sym_LPAREN, - ACTIONS(1273), 1, + ACTIONS(1289), 1, anon_sym_getline, - ACTIONS(1275), 1, + ACTIONS(1291), 1, anon_sym_SLASH, - ACTIONS(1279), 1, + ACTIONS(1295), 1, anon_sym_BANG, - ACTIONS(1283), 1, + ACTIONS(1299), 1, anon_sym_DOLLAR, - ACTIONS(1285), 1, + ACTIONS(1301), 1, anon_sym_AT, - ACTIONS(1287), 1, + ACTIONS(1303), 1, aux_sym_number_token1, - ACTIONS(1289), 1, + ACTIONS(1305), 1, aux_sym_number_token2, - ACTIONS(1291), 1, + ACTIONS(1307), 1, anon_sym_DQUOTE, - ACTIONS(1373), 1, - anon_sym_RPAREN, - STATE(1067), 1, + STATE(772), 1, + aux_sym_exp_list_repeat1, + STATE(1093), 1, sym_ns_qualified_name, - STATE(1137), 1, + STATE(1142), 1, sym_array_ref, - STATE(1231), 1, + STATE(1251), 1, sym_field_ref, - STATE(1502), 1, + STATE(1510), 1, sym__binary_in, - STATE(1978), 1, - sym_args, - STATE(2075), 1, + STATE(1951), 1, + sym_exp_list, + STATE(2080), 1, sym_namespace, - ACTIONS(1277), 2, + ACTIONS(1293), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1281), 2, + ACTIONS(1297), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1500), 9, + STATE(1505), 9, sym_ternary_exp, sym_binary_exp, sym_unary_exp, @@ -51302,7 +49931,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_string, sym_func_call, - STATE(1573), 10, + STATE(1574), 10, sym__getline_exp, sym_getline_input, sym_getline_file, @@ -51313,48 +49942,48 @@ static const uint16_t ts_small_parse_table[] = { sym_regex, sym_regex_constant, sym_indirect_func_call, - [30346] = 21, - ACTIONS(1269), 1, + [28271] = 21, + ACTIONS(1285), 1, sym_identifier, - ACTIONS(1271), 1, + ACTIONS(1287), 1, anon_sym_LPAREN, - ACTIONS(1273), 1, + ACTIONS(1289), 1, anon_sym_getline, - ACTIONS(1275), 1, + ACTIONS(1291), 1, anon_sym_SLASH, - ACTIONS(1279), 1, + ACTIONS(1295), 1, anon_sym_BANG, - ACTIONS(1283), 1, + ACTIONS(1299), 1, anon_sym_DOLLAR, - ACTIONS(1285), 1, + ACTIONS(1301), 1, anon_sym_AT, - ACTIONS(1287), 1, + ACTIONS(1303), 1, aux_sym_number_token1, - ACTIONS(1289), 1, + ACTIONS(1305), 1, aux_sym_number_token2, - ACTIONS(1291), 1, + ACTIONS(1307), 1, anon_sym_DQUOTE, - STATE(761), 1, + STATE(772), 1, aux_sym_exp_list_repeat1, - STATE(1067), 1, + STATE(1093), 1, sym_ns_qualified_name, - STATE(1137), 1, + STATE(1142), 1, sym_array_ref, - STATE(1231), 1, + STATE(1251), 1, sym_field_ref, - STATE(1502), 1, + STATE(1510), 1, sym__binary_in, - STATE(2012), 1, + STATE(1939), 1, sym_exp_list, - STATE(2075), 1, + STATE(2080), 1, sym_namespace, - ACTIONS(1277), 2, + ACTIONS(1293), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1281), 2, + ACTIONS(1297), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1500), 9, + STATE(1505), 9, sym_ternary_exp, sym_binary_exp, sym_unary_exp, @@ -51375,96 +50004,48 @@ static const uint16_t ts_small_parse_table[] = { sym_regex, sym_regex_constant, sym_indirect_func_call, - [30429] = 7, - ACTIONS(652), 1, - anon_sym_COLON_COLON, - ACTIONS(688), 1, - anon_sym_LBRACK, - ACTIONS(1241), 1, - anon_sym_LPAREN2, - ACTIONS(1377), 1, - sym_concatenating_space, - ACTIONS(1247), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1375), 7, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - ACTIONS(644), 27, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_while, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [30484] = 21, - ACTIONS(1269), 1, + [28354] = 21, + ACTIONS(1285), 1, sym_identifier, - ACTIONS(1271), 1, + ACTIONS(1287), 1, anon_sym_LPAREN, - ACTIONS(1273), 1, + ACTIONS(1289), 1, anon_sym_getline, - ACTIONS(1275), 1, + ACTIONS(1291), 1, anon_sym_SLASH, - ACTIONS(1279), 1, + ACTIONS(1295), 1, anon_sym_BANG, - ACTIONS(1283), 1, + ACTIONS(1299), 1, anon_sym_DOLLAR, - ACTIONS(1285), 1, + ACTIONS(1301), 1, anon_sym_AT, - ACTIONS(1287), 1, + ACTIONS(1303), 1, aux_sym_number_token1, - ACTIONS(1289), 1, + ACTIONS(1305), 1, aux_sym_number_token2, - ACTIONS(1291), 1, + ACTIONS(1307), 1, anon_sym_DQUOTE, - STATE(761), 1, + STATE(772), 1, aux_sym_exp_list_repeat1, - STATE(1067), 1, + STATE(1093), 1, sym_ns_qualified_name, - STATE(1137), 1, + STATE(1142), 1, sym_array_ref, - STATE(1231), 1, + STATE(1251), 1, sym_field_ref, - STATE(1502), 1, + STATE(1510), 1, sym__binary_in, - STATE(1918), 1, + STATE(2005), 1, sym_exp_list, - STATE(2075), 1, + STATE(2080), 1, sym_namespace, - ACTIONS(1277), 2, + ACTIONS(1293), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1281), 2, + ACTIONS(1297), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1500), 9, + STATE(1505), 9, sym_ternary_exp, sym_binary_exp, sym_unary_exp, @@ -51474,7 +50055,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_string, sym_func_call, - STATE(1578), 10, + STATE(1582), 10, sym__getline_exp, sym_getline_input, sym_getline_file, @@ -51485,13 +50066,51 @@ static const uint16_t ts_small_parse_table[] = { sym_regex, sym_regex_constant, sym_indirect_func_call, - [30567] = 4, - ACTIONS(658), 1, + [28437] = 12, + ACTIONS(864), 1, sym_concatenating_space, - ACTIONS(1255), 2, + ACTIONS(1341), 1, + anon_sym_in, + ACTIONS(1347), 1, + anon_sym_QMARK, + ACTIONS(1355), 1, + anon_sym_AMP_AMP, + ACTIONS(1357), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1339), 2, + anon_sym_CARET, + anon_sym_STAR_STAR, + ACTIONS(1345), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(1351), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1353), 2, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(1349), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1343), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(848), 18, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, + anon_sym_GT_GT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1257), 7, anon_sym_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -51499,28 +50118,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_CARET_EQ, - ACTIONS(644), 30, - anon_sym_COMMA, + anon_sym_POUND, + [28502] = 1, + ACTIONS(1333), 40, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, - anon_sym_in, + anon_sym_if, + anon_sym_LPAREN, + anon_sym_while, + anon_sym_do, + anon_sym_for, + sym_break_statement, + sym_continue_statement, + anon_sym_delete, + anon_sym_exit, + anon_sym_return, + anon_sym_switch, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_case, anon_sym_default, - anon_sym_LT, + anon_sym_getline, + sym_next_statement, + sym_nextfile_statement, + anon_sym_print, + anon_sym_printf, anon_sym_GT, anon_sym_GT_GT, anon_sym_PIPE, anon_sym_PIPE_AMP, - anon_sym_QMARK, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_DOLLAR, + anon_sym_AT, + sym_identifier, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DQUOTE, + anon_sym_POUND, + [28545] = 7, + ACTIONS(1359), 1, + sym_identifier, + ACTIONS(1361), 1, + anon_sym_LT, + STATE(300), 1, + sym_array_ref, + STATE(1139), 1, + sym_ns_qualified_name, + STATE(2080), 1, + sym_namespace, + ACTIONS(726), 10, + anon_sym_in, + anon_sym_GT, + anon_sym_PIPE, anon_sym_CARET, - anon_sym_STAR_STAR, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_PLUS, anon_sym_DASH, + anon_sym_EQ, + ACTIONS(728), 25, + sym_concatenating_space, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, @@ -51529,49 +50200,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_POUND, - [30616] = 21, - ACTIONS(1269), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_RBRACK, + [28600] = 21, + ACTIONS(1285), 1, sym_identifier, - ACTIONS(1271), 1, + ACTIONS(1287), 1, anon_sym_LPAREN, - ACTIONS(1273), 1, + ACTIONS(1289), 1, anon_sym_getline, - ACTIONS(1275), 1, + ACTIONS(1291), 1, anon_sym_SLASH, - ACTIONS(1279), 1, + ACTIONS(1295), 1, anon_sym_BANG, - ACTIONS(1283), 1, + ACTIONS(1299), 1, anon_sym_DOLLAR, - ACTIONS(1285), 1, + ACTIONS(1301), 1, anon_sym_AT, - ACTIONS(1287), 1, + ACTIONS(1303), 1, aux_sym_number_token1, - ACTIONS(1289), 1, + ACTIONS(1305), 1, aux_sym_number_token2, - ACTIONS(1291), 1, + ACTIONS(1307), 1, anon_sym_DQUOTE, - STATE(761), 1, - aux_sym_exp_list_repeat1, - STATE(1067), 1, + ACTIONS(1363), 1, + anon_sym_RPAREN, + STATE(1093), 1, sym_ns_qualified_name, - STATE(1137), 1, + STATE(1142), 1, sym_array_ref, - STATE(1231), 1, + STATE(1251), 1, sym_field_ref, - STATE(1502), 1, + STATE(1510), 1, sym__binary_in, - STATE(2027), 1, - sym_exp_list, - STATE(2075), 1, + STATE(2080), 1, sym_namespace, - ACTIONS(1277), 2, + STATE(2103), 1, + sym_args, + ACTIONS(1293), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1281), 2, + ACTIONS(1297), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1500), 9, + STATE(1505), 9, sym_ternary_exp, sym_binary_exp, sym_unary_exp, @@ -51581,7 +50260,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_string, sym_func_call, - STATE(1593), 10, + STATE(1573), 10, sym__getline_exp, sym_getline_input, sym_getline_file, @@ -51592,110 +50271,94 @@ static const uint16_t ts_small_parse_table[] = { sym_regex, sym_regex_constant, sym_indirect_func_call, - [30699] = 21, - ACTIONS(1269), 1, + [28683] = 5, + ACTIONS(1017), 1, sym_identifier, - ACTIONS(1271), 1, - anon_sym_LPAREN, - ACTIONS(1273), 1, - anon_sym_getline, - ACTIONS(1275), 1, - anon_sym_SLASH, - ACTIONS(1279), 1, - anon_sym_BANG, - ACTIONS(1283), 1, - anon_sym_DOLLAR, - ACTIONS(1285), 1, - anon_sym_AT, - ACTIONS(1287), 1, - aux_sym_number_token1, - ACTIONS(1289), 1, - aux_sym_number_token2, - ACTIONS(1291), 1, - anon_sym_DQUOTE, - ACTIONS(1379), 1, - anon_sym_RPAREN, - STATE(1067), 1, - sym_ns_qualified_name, - STATE(1137), 1, - sym_array_ref, - STATE(1231), 1, - sym_field_ref, - STATE(1502), 1, - sym__binary_in, - STATE(1983), 1, - sym_args, - STATE(2075), 1, + STATE(2080), 1, sym_namespace, - ACTIONS(1277), 2, + STATE(300), 2, + sym_array_ref, + sym_ns_qualified_name, + ACTIONS(726), 11, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1281), 2, + anon_sym_EQ, + ACTIONS(728), 25, + sym_concatenating_space, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1500), 9, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_string_concat, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - STATE(1573), 10, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_regex, - sym_regex_constant, - sym_indirect_func_call, - [30782] = 21, - ACTIONS(1269), 1, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_RBRACK, + [28734] = 21, + ACTIONS(1285), 1, sym_identifier, - ACTIONS(1271), 1, + ACTIONS(1287), 1, anon_sym_LPAREN, - ACTIONS(1273), 1, + ACTIONS(1289), 1, anon_sym_getline, - ACTIONS(1275), 1, + ACTIONS(1291), 1, anon_sym_SLASH, - ACTIONS(1279), 1, + ACTIONS(1295), 1, anon_sym_BANG, - ACTIONS(1283), 1, + ACTIONS(1299), 1, anon_sym_DOLLAR, - ACTIONS(1285), 1, + ACTIONS(1301), 1, anon_sym_AT, - ACTIONS(1287), 1, + ACTIONS(1303), 1, aux_sym_number_token1, - ACTIONS(1289), 1, + ACTIONS(1305), 1, aux_sym_number_token2, - ACTIONS(1291), 1, + ACTIONS(1307), 1, anon_sym_DQUOTE, - STATE(761), 1, + STATE(772), 1, aux_sym_exp_list_repeat1, - STATE(1067), 1, + STATE(1093), 1, sym_ns_qualified_name, - STATE(1137), 1, + STATE(1142), 1, sym_array_ref, - STATE(1231), 1, + STATE(1251), 1, sym_field_ref, - STATE(1502), 1, + STATE(1510), 1, sym__binary_in, - STATE(2033), 1, + STATE(1919), 1, sym_exp_list, - STATE(2075), 1, + STATE(2080), 1, sym_namespace, - ACTIONS(1277), 2, + ACTIONS(1293), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1281), 2, + ACTIONS(1297), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1500), 9, + STATE(1505), 9, sym_ternary_exp, sym_binary_exp, sym_unary_exp, @@ -51705,7 +50368,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_string, sym_func_call, - STATE(1583), 10, + STATE(1589), 10, sym__getline_exp, sym_getline_input, sym_getline_file, @@ -51716,70 +50379,96 @@ static const uint16_t ts_small_parse_table[] = { sym_regex, sym_regex_constant, sym_indirect_func_call, - [30865] = 21, - ACTIONS(1269), 1, - sym_identifier, - ACTIONS(1271), 1, + [28817] = 5, + ACTIONS(648), 1, + anon_sym_LBRACK, + ACTIONS(650), 1, + anon_sym_COLON_COLON, + ACTIONS(1365), 1, + anon_sym_LT, + ACTIONS(690), 2, + sym_concatenating_space, + sym__if_else_separator, + ACTIONS(688), 35, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_while, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_CARET, + anon_sym_STAR_STAR, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + [28868] = 1, + ACTIONS(1319), 40, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_if, anon_sym_LPAREN, - ACTIONS(1273), 1, + anon_sym_while, + anon_sym_do, + anon_sym_for, + sym_break_statement, + sym_continue_statement, + anon_sym_delete, + anon_sym_exit, + anon_sym_return, + anon_sym_switch, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, anon_sym_getline, - ACTIONS(1275), 1, + sym_next_statement, + sym_nextfile_statement, + anon_sym_print, + anon_sym_printf, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, anon_sym_SLASH, - ACTIONS(1279), 1, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_BANG, - ACTIONS(1283), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_DOLLAR, - ACTIONS(1285), 1, anon_sym_AT, - ACTIONS(1287), 1, + sym_identifier, aux_sym_number_token1, - ACTIONS(1289), 1, aux_sym_number_token2, - ACTIONS(1291), 1, anon_sym_DQUOTE, - STATE(761), 1, - aux_sym_exp_list_repeat1, - STATE(1067), 1, - sym_ns_qualified_name, - STATE(1137), 1, - sym_array_ref, - STATE(1231), 1, - sym_field_ref, - STATE(1502), 1, - sym__binary_in, - STATE(1909), 1, - sym_exp_list, - STATE(2075), 1, - sym_namespace, - ACTIONS(1277), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1281), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1500), 9, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_string_concat, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - STATE(1585), 10, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_regex, - sym_regex_constant, - sym_indirect_func_call, - [30948] = 1, - ACTIONS(1265), 40, + anon_sym_POUND, + [28911] = 1, + ACTIONS(1323), 40, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, @@ -51820,48 +50509,142 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [30991] = 21, - ACTIONS(1269), 1, + [28954] = 7, + ACTIONS(870), 1, + sym_concatenating_space, + ACTIONS(1339), 2, + anon_sym_CARET, + anon_sym_STAR_STAR, + ACTIONS(1351), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1353), 2, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(1349), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1343), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(868), 24, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_POUND, + [29009] = 5, + ACTIONS(778), 1, + sym_concatenating_space, + ACTIONS(1339), 2, + anon_sym_CARET, + anon_sym_STAR_STAR, + ACTIONS(1351), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1349), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(776), 32, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_POUND, + [29060] = 21, + ACTIONS(1285), 1, sym_identifier, - ACTIONS(1271), 1, + ACTIONS(1287), 1, anon_sym_LPAREN, - ACTIONS(1273), 1, + ACTIONS(1289), 1, anon_sym_getline, - ACTIONS(1275), 1, + ACTIONS(1291), 1, anon_sym_SLASH, - ACTIONS(1279), 1, + ACTIONS(1295), 1, anon_sym_BANG, - ACTIONS(1283), 1, + ACTIONS(1299), 1, anon_sym_DOLLAR, - ACTIONS(1285), 1, + ACTIONS(1301), 1, anon_sym_AT, - ACTIONS(1287), 1, + ACTIONS(1303), 1, aux_sym_number_token1, - ACTIONS(1289), 1, + ACTIONS(1305), 1, aux_sym_number_token2, - ACTIONS(1291), 1, + ACTIONS(1307), 1, anon_sym_DQUOTE, - STATE(761), 1, - aux_sym_exp_list_repeat1, - STATE(1067), 1, + ACTIONS(1367), 1, + anon_sym_RPAREN, + STATE(1093), 1, sym_ns_qualified_name, - STATE(1137), 1, + STATE(1142), 1, sym_array_ref, - STATE(1231), 1, + STATE(1251), 1, sym_field_ref, - STATE(1502), 1, + STATE(1510), 1, sym__binary_in, - STATE(2075), 1, + STATE(2080), 1, sym_namespace, - STATE(2099), 1, - sym_exp_list, - ACTIONS(1277), 2, + STATE(2087), 1, + sym_args, + ACTIONS(1293), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1281), 2, + ACTIONS(1297), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1500), 9, + STATE(1505), 9, sym_ternary_exp, sym_binary_exp, sym_unary_exp, @@ -51871,7 +50654,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_string, sym_func_call, - STATE(1590), 10, + STATE(1573), 10, sym__getline_exp, sym_getline_input, sym_getline_file, @@ -51882,48 +50665,48 @@ static const uint16_t ts_small_parse_table[] = { sym_regex, sym_regex_constant, sym_indirect_func_call, - [31074] = 21, - ACTIONS(1269), 1, + [29143] = 21, + ACTIONS(1285), 1, sym_identifier, - ACTIONS(1271), 1, + ACTIONS(1287), 1, anon_sym_LPAREN, - ACTIONS(1273), 1, + ACTIONS(1289), 1, anon_sym_getline, - ACTIONS(1275), 1, + ACTIONS(1291), 1, anon_sym_SLASH, - ACTIONS(1279), 1, + ACTIONS(1295), 1, anon_sym_BANG, - ACTIONS(1283), 1, + ACTIONS(1299), 1, anon_sym_DOLLAR, - ACTIONS(1285), 1, + ACTIONS(1301), 1, anon_sym_AT, - ACTIONS(1287), 1, + ACTIONS(1303), 1, aux_sym_number_token1, - ACTIONS(1289), 1, + ACTIONS(1305), 1, aux_sym_number_token2, - ACTIONS(1291), 1, + ACTIONS(1307), 1, anon_sym_DQUOTE, - STATE(761), 1, - aux_sym_exp_list_repeat1, - STATE(1067), 1, + ACTIONS(1369), 1, + anon_sym_RPAREN, + STATE(1093), 1, sym_ns_qualified_name, - STATE(1137), 1, + STATE(1142), 1, sym_array_ref, - STATE(1231), 1, + STATE(1251), 1, sym_field_ref, - STATE(1502), 1, + STATE(1510), 1, sym__binary_in, - STATE(2036), 1, - sym_exp_list, - STATE(2075), 1, + STATE(2060), 1, + sym_args, + STATE(2080), 1, sym_namespace, - ACTIONS(1277), 2, + ACTIONS(1293), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1281), 2, + ACTIONS(1297), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1500), 9, + STATE(1505), 9, sym_ternary_exp, sym_binary_exp, sym_unary_exp, @@ -51933,7 +50716,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_string, sym_func_call, - STATE(1576), 10, + STATE(1573), 10, sym__getline_exp, sym_getline_input, sym_getline_file, @@ -51944,90 +50727,110 @@ static const uint16_t ts_small_parse_table[] = { sym_regex, sym_regex_constant, sym_indirect_func_call, - [31157] = 1, - ACTIONS(1325), 40, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, + [29226] = 21, + ACTIONS(1285), 1, + sym_identifier, + ACTIONS(1287), 1, anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, + ACTIONS(1289), 1, anon_sym_getline, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, + ACTIONS(1291), 1, anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(1295), 1, anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(1299), 1, anon_sym_DOLLAR, + ACTIONS(1301), 1, anon_sym_AT, - sym_identifier, + ACTIONS(1303), 1, aux_sym_number_token1, + ACTIONS(1305), 1, aux_sym_number_token2, + ACTIONS(1307), 1, anon_sym_DQUOTE, - anon_sym_POUND, - [31200] = 21, - ACTIONS(1269), 1, + STATE(772), 1, + aux_sym_exp_list_repeat1, + STATE(1093), 1, + sym_ns_qualified_name, + STATE(1142), 1, + sym_array_ref, + STATE(1251), 1, + sym_field_ref, + STATE(1510), 1, + sym__binary_in, + STATE(2018), 1, + sym_exp_list, + STATE(2080), 1, + sym_namespace, + ACTIONS(1293), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1297), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1505), 9, + sym_ternary_exp, + sym_binary_exp, + sym_unary_exp, + sym_string_concat, + sym_grouping, + sym__primitive, + sym_number, + sym_string, + sym_func_call, + STATE(1594), 10, + sym__getline_exp, + sym_getline_input, + sym_getline_file, + sym__exp, + sym_update_exp, + sym_assignment_exp, + sym_piped_io_exp, + sym_regex, + sym_regex_constant, + sym_indirect_func_call, + [29309] = 21, + ACTIONS(1285), 1, sym_identifier, - ACTIONS(1271), 1, + ACTIONS(1287), 1, anon_sym_LPAREN, - ACTIONS(1273), 1, + ACTIONS(1289), 1, anon_sym_getline, - ACTIONS(1275), 1, + ACTIONS(1291), 1, anon_sym_SLASH, - ACTIONS(1279), 1, + ACTIONS(1295), 1, anon_sym_BANG, - ACTIONS(1283), 1, + ACTIONS(1299), 1, anon_sym_DOLLAR, - ACTIONS(1285), 1, + ACTIONS(1301), 1, anon_sym_AT, - ACTIONS(1287), 1, + ACTIONS(1303), 1, aux_sym_number_token1, - ACTIONS(1289), 1, + ACTIONS(1305), 1, aux_sym_number_token2, - ACTIONS(1291), 1, + ACTIONS(1307), 1, anon_sym_DQUOTE, - STATE(761), 1, - aux_sym_exp_list_repeat1, - STATE(1067), 1, + ACTIONS(1371), 1, + anon_sym_RPAREN, + STATE(1093), 1, sym_ns_qualified_name, - STATE(1137), 1, + STATE(1142), 1, sym_array_ref, - STATE(1231), 1, + STATE(1251), 1, sym_field_ref, - STATE(1502), 1, + STATE(1510), 1, sym__binary_in, - STATE(1984), 1, - sym_exp_list, - STATE(2075), 1, + STATE(2080), 1, sym_namespace, - ACTIONS(1277), 2, + STATE(2084), 1, + sym_args, + ACTIONS(1293), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1281), 2, + ACTIONS(1297), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1500), 9, + STATE(1505), 9, sym_ternary_exp, sym_binary_exp, sym_unary_exp, @@ -52037,7 +50840,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_string, sym_func_call, - STATE(1575), 10, + STATE(1573), 10, sym__getline_exp, sym_getline_input, sym_getline_file, @@ -52048,94 +50851,48 @@ static const uint16_t ts_small_parse_table[] = { sym_regex, sym_regex_constant, sym_indirect_func_call, - [31283] = 5, - ACTIONS(882), 1, - sym_concatenating_space, - ACTIONS(1347), 2, - anon_sym_CARET, - anon_sym_STAR_STAR, - ACTIONS(1351), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1349), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(880), 32, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_POUND, - [31334] = 21, - ACTIONS(1269), 1, + [29392] = 21, + ACTIONS(1285), 1, sym_identifier, - ACTIONS(1271), 1, + ACTIONS(1287), 1, anon_sym_LPAREN, - ACTIONS(1273), 1, + ACTIONS(1289), 1, anon_sym_getline, - ACTIONS(1275), 1, + ACTIONS(1291), 1, anon_sym_SLASH, - ACTIONS(1279), 1, + ACTIONS(1295), 1, anon_sym_BANG, - ACTIONS(1283), 1, + ACTIONS(1299), 1, anon_sym_DOLLAR, - ACTIONS(1285), 1, + ACTIONS(1301), 1, anon_sym_AT, - ACTIONS(1287), 1, + ACTIONS(1303), 1, aux_sym_number_token1, - ACTIONS(1289), 1, + ACTIONS(1305), 1, aux_sym_number_token2, - ACTIONS(1291), 1, + ACTIONS(1307), 1, anon_sym_DQUOTE, - ACTIONS(1381), 1, + ACTIONS(1373), 1, anon_sym_RPAREN, - STATE(1067), 1, + STATE(1093), 1, sym_ns_qualified_name, - STATE(1137), 1, + STATE(1142), 1, sym_array_ref, - STATE(1231), 1, + STATE(1251), 1, sym_field_ref, - STATE(1502), 1, + STATE(1510), 1, sym__binary_in, - STATE(1989), 1, + STATE(2045), 1, sym_args, - STATE(2075), 1, + STATE(2080), 1, sym_namespace, - ACTIONS(1277), 2, + ACTIONS(1293), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1281), 2, + ACTIONS(1297), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1500), 9, + STATE(1505), 9, sym_ternary_exp, sym_binary_exp, sym_unary_exp, @@ -52156,48 +50913,48 @@ static const uint16_t ts_small_parse_table[] = { sym_regex, sym_regex_constant, sym_indirect_func_call, - [31417] = 21, - ACTIONS(1269), 1, + [29475] = 21, + ACTIONS(1285), 1, sym_identifier, - ACTIONS(1271), 1, + ACTIONS(1287), 1, anon_sym_LPAREN, - ACTIONS(1273), 1, + ACTIONS(1289), 1, anon_sym_getline, - ACTIONS(1275), 1, + ACTIONS(1291), 1, anon_sym_SLASH, - ACTIONS(1279), 1, + ACTIONS(1295), 1, anon_sym_BANG, - ACTIONS(1283), 1, + ACTIONS(1299), 1, anon_sym_DOLLAR, - ACTIONS(1285), 1, + ACTIONS(1301), 1, anon_sym_AT, - ACTIONS(1287), 1, + ACTIONS(1303), 1, aux_sym_number_token1, - ACTIONS(1289), 1, + ACTIONS(1305), 1, aux_sym_number_token2, - ACTIONS(1291), 1, + ACTIONS(1307), 1, anon_sym_DQUOTE, - ACTIONS(1383), 1, - anon_sym_RPAREN, - STATE(1067), 1, + STATE(772), 1, + aux_sym_exp_list_repeat1, + STATE(1093), 1, sym_ns_qualified_name, - STATE(1137), 1, + STATE(1142), 1, sym_array_ref, - STATE(1231), 1, + STATE(1251), 1, sym_field_ref, - STATE(1502), 1, + STATE(1510), 1, sym__binary_in, - STATE(2006), 1, - sym_args, - STATE(2075), 1, + STATE(2014), 1, + sym_exp_list, + STATE(2080), 1, sym_namespace, - ACTIONS(1277), 2, + ACTIONS(1293), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1281), 2, + ACTIONS(1297), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1500), 9, + STATE(1505), 9, sym_ternary_exp, sym_binary_exp, sym_unary_exp, @@ -52207,7 +50964,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_string, sym_func_call, - STATE(1573), 10, + STATE(1600), 10, sym__getline_exp, sym_getline_input, sym_getline_file, @@ -52218,48 +50975,48 @@ static const uint16_t ts_small_parse_table[] = { sym_regex, sym_regex_constant, sym_indirect_func_call, - [31500] = 21, - ACTIONS(1269), 1, + [29558] = 21, + ACTIONS(1285), 1, sym_identifier, - ACTIONS(1271), 1, + ACTIONS(1287), 1, anon_sym_LPAREN, - ACTIONS(1273), 1, + ACTIONS(1289), 1, anon_sym_getline, - ACTIONS(1275), 1, + ACTIONS(1291), 1, anon_sym_SLASH, - ACTIONS(1279), 1, + ACTIONS(1295), 1, anon_sym_BANG, - ACTIONS(1283), 1, + ACTIONS(1299), 1, anon_sym_DOLLAR, - ACTIONS(1285), 1, + ACTIONS(1301), 1, anon_sym_AT, - ACTIONS(1287), 1, + ACTIONS(1303), 1, aux_sym_number_token1, - ACTIONS(1289), 1, + ACTIONS(1305), 1, aux_sym_number_token2, - ACTIONS(1291), 1, + ACTIONS(1307), 1, anon_sym_DQUOTE, - ACTIONS(1385), 1, + ACTIONS(1375), 1, anon_sym_RPAREN, - STATE(1067), 1, + STATE(1093), 1, sym_ns_qualified_name, - STATE(1137), 1, + STATE(1142), 1, sym_array_ref, - STATE(1231), 1, + STATE(1251), 1, sym_field_ref, - STATE(1502), 1, + STATE(1510), 1, sym__binary_in, - STATE(1995), 1, + STATE(2039), 1, sym_args, - STATE(2075), 1, + STATE(2080), 1, sym_namespace, - ACTIONS(1277), 2, + ACTIONS(1293), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1281), 2, + ACTIONS(1297), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1500), 9, + STATE(1505), 9, sym_ternary_exp, sym_binary_exp, sym_unary_exp, @@ -52280,48 +51037,188 @@ static const uint16_t ts_small_parse_table[] = { sym_regex, sym_regex_constant, sym_indirect_func_call, - [31583] = 21, - ACTIONS(1269), 1, + [29641] = 6, + ACTIONS(648), 1, + anon_sym_LBRACK, + ACTIONS(1225), 1, + anon_sym_LPAREN2, + ACTIONS(652), 2, + sym_concatenating_space, + sym__if_else_separator, + ACTIONS(1241), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1337), 7, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + ACTIONS(642), 27, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_while, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_CARET, + anon_sym_STAR_STAR, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [29694] = 4, + ACTIONS(778), 1, + sym_concatenating_space, + ACTIONS(1339), 2, + anon_sym_CARET, + anon_sym_STAR_STAR, + ACTIONS(1349), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(776), 34, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_POUND, + [29743] = 7, + ACTIONS(648), 1, + anon_sym_LBRACK, + ACTIONS(652), 1, + sym__if_else_separator, + ACTIONS(1225), 1, + anon_sym_LPAREN2, + ACTIONS(1311), 1, + sym_concatenating_space, + ACTIONS(1227), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1309), 7, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + ACTIONS(642), 27, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_while, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_CARET, + anon_sym_STAR_STAR, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [29798] = 21, + ACTIONS(1285), 1, sym_identifier, - ACTIONS(1271), 1, + ACTIONS(1287), 1, anon_sym_LPAREN, - ACTIONS(1273), 1, + ACTIONS(1289), 1, anon_sym_getline, - ACTIONS(1275), 1, + ACTIONS(1291), 1, anon_sym_SLASH, - ACTIONS(1279), 1, + ACTIONS(1295), 1, anon_sym_BANG, - ACTIONS(1283), 1, + ACTIONS(1299), 1, anon_sym_DOLLAR, - ACTIONS(1285), 1, + ACTIONS(1301), 1, anon_sym_AT, - ACTIONS(1287), 1, + ACTIONS(1303), 1, aux_sym_number_token1, - ACTIONS(1289), 1, + ACTIONS(1305), 1, aux_sym_number_token2, - ACTIONS(1291), 1, + ACTIONS(1307), 1, anon_sym_DQUOTE, - ACTIONS(1387), 1, - anon_sym_RPAREN, - STATE(1067), 1, + STATE(772), 1, + aux_sym_exp_list_repeat1, + STATE(1093), 1, sym_ns_qualified_name, - STATE(1137), 1, + STATE(1142), 1, sym_array_ref, - STATE(1231), 1, + STATE(1251), 1, sym_field_ref, - STATE(1502), 1, + STATE(1510), 1, sym__binary_in, - STATE(2075), 1, + STATE(2024), 1, + sym_exp_list, + STATE(2080), 1, sym_namespace, - STATE(2098), 1, - sym_args, - ACTIONS(1277), 2, + ACTIONS(1293), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1281), 2, + ACTIONS(1297), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1500), 9, + STATE(1505), 9, sym_ternary_exp, sym_binary_exp, sym_unary_exp, @@ -52331,7 +51228,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_string, sym_func_call, - STATE(1573), 10, + STATE(1593), 10, sym__getline_exp, sym_getline_input, sym_getline_file, @@ -52342,48 +51239,143 @@ static const uint16_t ts_small_parse_table[] = { sym_regex, sym_regex_constant, sym_indirect_func_call, - [31666] = 21, - ACTIONS(1269), 1, + [29881] = 6, + ACTIONS(778), 1, + sym_concatenating_space, + ACTIONS(1339), 2, + anon_sym_CARET, + anon_sym_STAR_STAR, + ACTIONS(1351), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1349), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1343), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(776), 26, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_POUND, + [29934] = 7, + ACTIONS(650), 1, + anon_sym_COLON_COLON, + ACTIONS(652), 1, + sym_concatenating_space, + ACTIONS(684), 1, + anon_sym_LBRACK, + ACTIONS(1245), 1, + anon_sym_LPAREN2, + ACTIONS(1249), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1377), 7, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + ACTIONS(642), 27, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_while, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_CARET, + anon_sym_STAR_STAR, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [29989] = 21, + ACTIONS(1285), 1, sym_identifier, - ACTIONS(1271), 1, + ACTIONS(1287), 1, anon_sym_LPAREN, - ACTIONS(1273), 1, + ACTIONS(1289), 1, anon_sym_getline, - ACTIONS(1275), 1, + ACTIONS(1291), 1, anon_sym_SLASH, - ACTIONS(1279), 1, + ACTIONS(1295), 1, anon_sym_BANG, - ACTIONS(1283), 1, + ACTIONS(1299), 1, anon_sym_DOLLAR, - ACTIONS(1285), 1, + ACTIONS(1301), 1, anon_sym_AT, - ACTIONS(1287), 1, + ACTIONS(1303), 1, aux_sym_number_token1, - ACTIONS(1289), 1, + ACTIONS(1305), 1, aux_sym_number_token2, - ACTIONS(1291), 1, + ACTIONS(1307), 1, anon_sym_DQUOTE, - STATE(761), 1, + STATE(772), 1, aux_sym_exp_list_repeat1, - STATE(1067), 1, + STATE(1093), 1, sym_ns_qualified_name, - STATE(1137), 1, + STATE(1142), 1, sym_array_ref, - STATE(1231), 1, + STATE(1251), 1, sym_field_ref, - STATE(1502), 1, + STATE(1510), 1, sym__binary_in, - STATE(2002), 1, + STATE(2032), 1, sym_exp_list, - STATE(2075), 1, + STATE(2080), 1, sym_namespace, - ACTIONS(1277), 2, + ACTIONS(1293), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1281), 2, + ACTIONS(1297), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1500), 9, + STATE(1505), 9, sym_ternary_exp, sym_binary_exp, sym_unary_exp, @@ -52393,7 +51385,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_string, sym_func_call, - STATE(1595), 10, + STATE(1584), 10, sym__getline_exp, sym_getline_input, sym_getline_file, @@ -52404,48 +51396,97 @@ static const uint16_t ts_small_parse_table[] = { sym_regex, sym_regex_constant, sym_indirect_func_call, - [31749] = 21, - ACTIONS(1269), 1, + [30072] = 8, + ACTIONS(778), 1, + sym_concatenating_space, + ACTIONS(1341), 1, + anon_sym_in, + ACTIONS(1339), 2, + anon_sym_CARET, + anon_sym_STAR_STAR, + ACTIONS(1351), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1353), 2, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(1349), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1343), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(776), 23, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_POUND, + [30129] = 21, + ACTIONS(1285), 1, sym_identifier, - ACTIONS(1271), 1, + ACTIONS(1287), 1, anon_sym_LPAREN, - ACTIONS(1273), 1, + ACTIONS(1289), 1, anon_sym_getline, - ACTIONS(1275), 1, + ACTIONS(1291), 1, anon_sym_SLASH, - ACTIONS(1279), 1, + ACTIONS(1295), 1, anon_sym_BANG, - ACTIONS(1283), 1, + ACTIONS(1299), 1, anon_sym_DOLLAR, - ACTIONS(1285), 1, + ACTIONS(1301), 1, anon_sym_AT, - ACTIONS(1287), 1, + ACTIONS(1303), 1, aux_sym_number_token1, - ACTIONS(1289), 1, + ACTIONS(1305), 1, aux_sym_number_token2, - ACTIONS(1291), 1, + ACTIONS(1307), 1, anon_sym_DQUOTE, - ACTIONS(1389), 1, - anon_sym_RPAREN, - STATE(1067), 1, + STATE(772), 1, + aux_sym_exp_list_repeat1, + STATE(1093), 1, sym_ns_qualified_name, - STATE(1137), 1, + STATE(1142), 1, sym_array_ref, - STATE(1231), 1, + STATE(1251), 1, sym_field_ref, - STATE(1502), 1, + STATE(1510), 1, sym__binary_in, - STATE(2075), 1, + STATE(1921), 1, + sym_exp_list, + STATE(2080), 1, sym_namespace, - STATE(2077), 1, - sym_args, - ACTIONS(1277), 2, + ACTIONS(1293), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1281), 2, + ACTIONS(1297), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1500), 9, + STATE(1505), 9, sym_ternary_exp, sym_binary_exp, sym_unary_exp, @@ -52455,7 +51496,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_string, sym_func_call, - STATE(1573), 10, + STATE(1580), 10, sym__getline_exp, sym_getline_input, sym_getline_file, @@ -52466,48 +51507,94 @@ static const uint16_t ts_small_parse_table[] = { sym_regex, sym_regex_constant, sym_indirect_func_call, - [31832] = 21, - ACTIONS(1269), 1, + [30212] = 5, + ACTIONS(874), 1, + sym_concatenating_space, + ACTIONS(1339), 2, + anon_sym_CARET, + anon_sym_STAR_STAR, + ACTIONS(1351), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1349), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(872), 32, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_POUND, + [30263] = 21, + ACTIONS(1285), 1, sym_identifier, - ACTIONS(1271), 1, + ACTIONS(1287), 1, anon_sym_LPAREN, - ACTIONS(1273), 1, + ACTIONS(1289), 1, anon_sym_getline, - ACTIONS(1275), 1, + ACTIONS(1291), 1, anon_sym_SLASH, - ACTIONS(1279), 1, + ACTIONS(1295), 1, anon_sym_BANG, - ACTIONS(1283), 1, + ACTIONS(1299), 1, anon_sym_DOLLAR, - ACTIONS(1285), 1, + ACTIONS(1301), 1, anon_sym_AT, - ACTIONS(1287), 1, + ACTIONS(1303), 1, aux_sym_number_token1, - ACTIONS(1289), 1, + ACTIONS(1305), 1, aux_sym_number_token2, - ACTIONS(1291), 1, + ACTIONS(1307), 1, anon_sym_DQUOTE, - ACTIONS(1391), 1, - anon_sym_RPAREN, - STATE(1067), 1, + STATE(772), 1, + aux_sym_exp_list_repeat1, + STATE(1093), 1, sym_ns_qualified_name, - STATE(1137), 1, + STATE(1142), 1, sym_array_ref, - STATE(1231), 1, + STATE(1251), 1, sym_field_ref, - STATE(1502), 1, + STATE(1510), 1, sym__binary_in, - STATE(1906), 1, - sym_args, - STATE(2075), 1, + STATE(1908), 1, + sym_exp_list, + STATE(2080), 1, sym_namespace, - ACTIONS(1277), 2, + ACTIONS(1293), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1281), 2, + ACTIONS(1297), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1500), 9, + STATE(1505), 9, sym_ternary_exp, sym_binary_exp, sym_unary_exp, @@ -52517,7 +51604,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_string, sym_func_call, - STATE(1573), 10, + STATE(1575), 10, sym__getline_exp, sym_getline_input, sym_getline_file, @@ -52528,48 +51615,48 @@ static const uint16_t ts_small_parse_table[] = { sym_regex, sym_regex_constant, sym_indirect_func_call, - [31915] = 21, - ACTIONS(1269), 1, + [30346] = 21, + ACTIONS(1285), 1, sym_identifier, - ACTIONS(1271), 1, + ACTIONS(1287), 1, anon_sym_LPAREN, - ACTIONS(1273), 1, + ACTIONS(1289), 1, anon_sym_getline, - ACTIONS(1275), 1, + ACTIONS(1291), 1, anon_sym_SLASH, - ACTIONS(1279), 1, + ACTIONS(1295), 1, anon_sym_BANG, - ACTIONS(1283), 1, + ACTIONS(1299), 1, anon_sym_DOLLAR, - ACTIONS(1285), 1, + ACTIONS(1301), 1, anon_sym_AT, - ACTIONS(1287), 1, + ACTIONS(1303), 1, aux_sym_number_token1, - ACTIONS(1289), 1, + ACTIONS(1305), 1, aux_sym_number_token2, - ACTIONS(1291), 1, + ACTIONS(1307), 1, anon_sym_DQUOTE, - STATE(761), 1, - aux_sym_exp_list_repeat1, - STATE(1067), 1, + ACTIONS(1379), 1, + anon_sym_RPAREN, + STATE(1093), 1, sym_ns_qualified_name, - STATE(1137), 1, + STATE(1142), 1, sym_array_ref, - STATE(1231), 1, + STATE(1251), 1, sym_field_ref, - STATE(1502), 1, + STATE(1510), 1, sym__binary_in, - STATE(2075), 1, + STATE(1983), 1, + sym_args, + STATE(2080), 1, sym_namespace, - STATE(2076), 1, - sym_exp_list, - ACTIONS(1277), 2, + ACTIONS(1293), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1281), 2, + ACTIONS(1297), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1500), 9, + STATE(1505), 9, sym_ternary_exp, sym_binary_exp, sym_unary_exp, @@ -52579,7 +51666,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_string, sym_func_call, - STATE(1592), 10, + STATE(1573), 10, sym__getline_exp, sym_getline_input, sym_getline_file, @@ -52590,93 +51677,48 @@ static const uint16_t ts_small_parse_table[] = { sym_regex, sym_regex_constant, sym_indirect_func_call, - [31998] = 4, - ACTIONS(1251), 1, - sym_concatenating_space, - ACTIONS(1247), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1249), 7, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - ACTIONS(644), 30, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_POUND, - [32047] = 21, - ACTIONS(1269), 1, + [30429] = 21, + ACTIONS(1285), 1, sym_identifier, - ACTIONS(1271), 1, + ACTIONS(1287), 1, anon_sym_LPAREN, - ACTIONS(1273), 1, + ACTIONS(1289), 1, anon_sym_getline, - ACTIONS(1275), 1, + ACTIONS(1291), 1, anon_sym_SLASH, - ACTIONS(1279), 1, + ACTIONS(1295), 1, anon_sym_BANG, - ACTIONS(1283), 1, + ACTIONS(1299), 1, anon_sym_DOLLAR, - ACTIONS(1285), 1, + ACTIONS(1301), 1, anon_sym_AT, - ACTIONS(1287), 1, + ACTIONS(1303), 1, aux_sym_number_token1, - ACTIONS(1289), 1, + ACTIONS(1305), 1, aux_sym_number_token2, - ACTIONS(1291), 1, + ACTIONS(1307), 1, anon_sym_DQUOTE, - STATE(761), 1, + STATE(772), 1, aux_sym_exp_list_repeat1, - STATE(1067), 1, + STATE(1093), 1, sym_ns_qualified_name, - STATE(1137), 1, + STATE(1142), 1, sym_array_ref, - STATE(1231), 1, + STATE(1251), 1, sym_field_ref, - STATE(1502), 1, + STATE(1510), 1, sym__binary_in, - STATE(1945), 1, - sym_exp_list, - STATE(2075), 1, + STATE(2080), 1, sym_namespace, - ACTIONS(1277), 2, + STATE(2086), 1, + sym_exp_list, + ACTIONS(1293), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1281), 2, + ACTIONS(1297), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1500), 9, + STATE(1505), 9, sym_ternary_exp, sym_binary_exp, sym_unary_exp, @@ -52697,48 +51739,48 @@ static const uint16_t ts_small_parse_table[] = { sym_regex, sym_regex_constant, sym_indirect_func_call, - [32130] = 21, - ACTIONS(1269), 1, + [30512] = 21, + ACTIONS(1285), 1, sym_identifier, - ACTIONS(1271), 1, + ACTIONS(1287), 1, anon_sym_LPAREN, - ACTIONS(1273), 1, + ACTIONS(1289), 1, anon_sym_getline, - ACTIONS(1275), 1, + ACTIONS(1291), 1, anon_sym_SLASH, - ACTIONS(1279), 1, + ACTIONS(1295), 1, anon_sym_BANG, - ACTIONS(1283), 1, + ACTIONS(1299), 1, anon_sym_DOLLAR, - ACTIONS(1285), 1, + ACTIONS(1301), 1, anon_sym_AT, - ACTIONS(1287), 1, + ACTIONS(1303), 1, aux_sym_number_token1, - ACTIONS(1289), 1, + ACTIONS(1305), 1, aux_sym_number_token2, - ACTIONS(1291), 1, + ACTIONS(1307), 1, anon_sym_DQUOTE, - ACTIONS(1393), 1, - anon_sym_RPAREN, - STATE(1067), 1, + STATE(772), 1, + aux_sym_exp_list_repeat1, + STATE(1093), 1, sym_ns_qualified_name, - STATE(1137), 1, + STATE(1142), 1, sym_array_ref, - STATE(1231), 1, + STATE(1251), 1, sym_field_ref, - STATE(1502), 1, + STATE(1510), 1, sym__binary_in, - STATE(2075), 1, + STATE(2010), 1, + sym_exp_list, + STATE(2080), 1, sym_namespace, - STATE(2090), 1, - sym_args, - ACTIONS(1277), 2, + ACTIONS(1293), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1281), 2, + ACTIONS(1297), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1500), 9, + STATE(1505), 9, sym_ternary_exp, sym_binary_exp, sym_unary_exp, @@ -52748,7 +51790,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_string, sym_func_call, - STATE(1573), 10, + STATE(1590), 10, sym__getline_exp, sym_getline_input, sym_getline_file, @@ -52759,48 +51801,98 @@ static const uint16_t ts_small_parse_table[] = { sym_regex, sym_regex_constant, sym_indirect_func_call, - [32213] = 21, - ACTIONS(1269), 1, + [30595] = 9, + ACTIONS(778), 1, + sym_concatenating_space, + ACTIONS(1341), 1, + anon_sym_in, + ACTIONS(1355), 1, + anon_sym_AMP_AMP, + ACTIONS(1339), 2, + anon_sym_CARET, + anon_sym_STAR_STAR, + ACTIONS(1351), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1353), 2, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(1349), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1343), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(776), 22, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_POUND, + [30654] = 21, + ACTIONS(1285), 1, sym_identifier, - ACTIONS(1271), 1, + ACTIONS(1287), 1, anon_sym_LPAREN, - ACTIONS(1273), 1, + ACTIONS(1289), 1, anon_sym_getline, - ACTIONS(1275), 1, + ACTIONS(1291), 1, anon_sym_SLASH, - ACTIONS(1279), 1, + ACTIONS(1295), 1, anon_sym_BANG, - ACTIONS(1283), 1, + ACTIONS(1299), 1, anon_sym_DOLLAR, - ACTIONS(1285), 1, + ACTIONS(1301), 1, anon_sym_AT, - ACTIONS(1287), 1, + ACTIONS(1303), 1, aux_sym_number_token1, - ACTIONS(1289), 1, + ACTIONS(1305), 1, aux_sym_number_token2, - ACTIONS(1291), 1, + ACTIONS(1307), 1, anon_sym_DQUOTE, - ACTIONS(1395), 1, + ACTIONS(1381), 1, anon_sym_RPAREN, - STATE(1067), 1, + STATE(1093), 1, sym_ns_qualified_name, - STATE(1137), 1, + STATE(1142), 1, sym_array_ref, - STATE(1231), 1, + STATE(1251), 1, sym_field_ref, - STATE(1502), 1, + STATE(1510), 1, sym__binary_in, - STATE(2013), 1, + STATE(1974), 1, sym_args, - STATE(2075), 1, + STATE(2080), 1, sym_namespace, - ACTIONS(1277), 2, + ACTIONS(1293), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1281), 2, + ACTIONS(1297), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1500), 9, + STATE(1505), 9, sym_ternary_exp, sym_binary_exp, sym_unary_exp, @@ -52821,48 +51913,93 @@ static const uint16_t ts_small_parse_table[] = { sym_regex, sym_regex_constant, sym_indirect_func_call, - [32296] = 21, - ACTIONS(1269), 1, + [30737] = 4, + ACTIONS(652), 1, + sym_concatenating_space, + ACTIONS(1249), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1251), 7, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + ACTIONS(642), 30, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_CARET, + anon_sym_STAR_STAR, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_POUND, + [30786] = 21, + ACTIONS(1285), 1, sym_identifier, - ACTIONS(1271), 1, + ACTIONS(1287), 1, anon_sym_LPAREN, - ACTIONS(1273), 1, + ACTIONS(1289), 1, anon_sym_getline, - ACTIONS(1275), 1, + ACTIONS(1291), 1, anon_sym_SLASH, - ACTIONS(1279), 1, + ACTIONS(1295), 1, anon_sym_BANG, - ACTIONS(1283), 1, + ACTIONS(1299), 1, anon_sym_DOLLAR, - ACTIONS(1285), 1, + ACTIONS(1301), 1, anon_sym_AT, - ACTIONS(1287), 1, + ACTIONS(1303), 1, aux_sym_number_token1, - ACTIONS(1289), 1, + ACTIONS(1305), 1, aux_sym_number_token2, - ACTIONS(1291), 1, + ACTIONS(1307), 1, anon_sym_DQUOTE, - STATE(761), 1, + STATE(772), 1, aux_sym_exp_list_repeat1, - STATE(1067), 1, + STATE(1093), 1, sym_ns_qualified_name, - STATE(1137), 1, + STATE(1142), 1, sym_array_ref, - STATE(1231), 1, + STATE(1251), 1, sym_field_ref, - STATE(1502), 1, + STATE(1510), 1, sym__binary_in, - STATE(1931), 1, + STATE(2038), 1, sym_exp_list, - STATE(2075), 1, + STATE(2080), 1, sym_namespace, - ACTIONS(1277), 2, + ACTIONS(1293), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1281), 2, + ACTIONS(1297), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1500), 9, + STATE(1505), 9, sym_ternary_exp, sym_binary_exp, sym_unary_exp, @@ -52872,7 +52009,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_string, sym_func_call, - STATE(1599), 10, + STATE(1577), 10, sym__getline_exp, sym_getline_input, sym_getline_file, @@ -52883,48 +52020,48 @@ static const uint16_t ts_small_parse_table[] = { sym_regex, sym_regex_constant, sym_indirect_func_call, - [32379] = 21, - ACTIONS(1269), 1, + [30869] = 21, + ACTIONS(1285), 1, sym_identifier, - ACTIONS(1271), 1, + ACTIONS(1287), 1, anon_sym_LPAREN, - ACTIONS(1273), 1, + ACTIONS(1289), 1, anon_sym_getline, - ACTIONS(1275), 1, + ACTIONS(1291), 1, anon_sym_SLASH, - ACTIONS(1279), 1, + ACTIONS(1295), 1, anon_sym_BANG, - ACTIONS(1283), 1, + ACTIONS(1299), 1, anon_sym_DOLLAR, - ACTIONS(1285), 1, + ACTIONS(1301), 1, anon_sym_AT, - ACTIONS(1287), 1, + ACTIONS(1303), 1, aux_sym_number_token1, - ACTIONS(1289), 1, + ACTIONS(1305), 1, aux_sym_number_token2, - ACTIONS(1291), 1, + ACTIONS(1307), 1, anon_sym_DQUOTE, - STATE(761), 1, + STATE(772), 1, aux_sym_exp_list_repeat1, - STATE(1067), 1, + STATE(1093), 1, sym_ns_qualified_name, - STATE(1137), 1, + STATE(1142), 1, sym_array_ref, - STATE(1231), 1, + STATE(1251), 1, sym_field_ref, - STATE(1502), 1, + STATE(1510), 1, sym__binary_in, - STATE(2017), 1, + STATE(1922), 1, sym_exp_list, - STATE(2075), 1, + STATE(2080), 1, sym_namespace, - ACTIONS(1277), 2, + ACTIONS(1293), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1281), 2, + ACTIONS(1297), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1500), 9, + STATE(1505), 9, sym_ternary_exp, sym_binary_exp, sym_unary_exp, @@ -52934,7 +52071,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_string, sym_func_call, - STATE(1577), 10, + STATE(1588), 10, sym__getline_exp, sym_getline_input, sym_getline_file, @@ -52945,48 +52082,48 @@ static const uint16_t ts_small_parse_table[] = { sym_regex, sym_regex_constant, sym_indirect_func_call, - [32462] = 21, - ACTIONS(1269), 1, + [30952] = 21, + ACTIONS(1285), 1, sym_identifier, - ACTIONS(1271), 1, + ACTIONS(1287), 1, anon_sym_LPAREN, - ACTIONS(1273), 1, + ACTIONS(1289), 1, anon_sym_getline, - ACTIONS(1275), 1, + ACTIONS(1291), 1, anon_sym_SLASH, - ACTIONS(1279), 1, + ACTIONS(1295), 1, anon_sym_BANG, - ACTIONS(1283), 1, + ACTIONS(1299), 1, anon_sym_DOLLAR, - ACTIONS(1285), 1, + ACTIONS(1301), 1, anon_sym_AT, - ACTIONS(1287), 1, + ACTIONS(1303), 1, aux_sym_number_token1, - ACTIONS(1289), 1, + ACTIONS(1305), 1, aux_sym_number_token2, - ACTIONS(1291), 1, + ACTIONS(1307), 1, anon_sym_DQUOTE, - STATE(761), 1, + STATE(772), 1, aux_sym_exp_list_repeat1, - STATE(1067), 1, + STATE(1093), 1, sym_ns_qualified_name, - STATE(1137), 1, + STATE(1142), 1, sym_array_ref, - STATE(1231), 1, + STATE(1251), 1, sym_field_ref, - STATE(1502), 1, + STATE(1510), 1, sym__binary_in, - STATE(1914), 1, + STATE(1915), 1, sym_exp_list, - STATE(2075), 1, + STATE(2080), 1, sym_namespace, - ACTIONS(1277), 2, + ACTIONS(1293), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1281), 2, + ACTIONS(1297), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1500), 9, + STATE(1505), 9, sym_ternary_exp, sym_binary_exp, sym_unary_exp, @@ -52996,7 +52133,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_string, sym_func_call, - STATE(1585), 10, + STATE(1574), 10, sym__getline_exp, sym_getline_input, sym_getline_file, @@ -53007,48 +52144,96 @@ static const uint16_t ts_small_parse_table[] = { sym_regex, sym_regex_constant, sym_indirect_func_call, - [32545] = 21, - ACTIONS(1269), 1, + [31035] = 7, + ACTIONS(882), 1, + sym_concatenating_space, + ACTIONS(1339), 2, + anon_sym_CARET, + anon_sym_STAR_STAR, + ACTIONS(1351), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1353), 2, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(1349), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1343), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(880), 24, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_POUND, + [31090] = 21, + ACTIONS(1285), 1, sym_identifier, - ACTIONS(1271), 1, + ACTIONS(1287), 1, anon_sym_LPAREN, - ACTIONS(1273), 1, + ACTIONS(1289), 1, anon_sym_getline, - ACTIONS(1275), 1, + ACTIONS(1291), 1, anon_sym_SLASH, - ACTIONS(1279), 1, + ACTIONS(1295), 1, anon_sym_BANG, - ACTIONS(1283), 1, + ACTIONS(1299), 1, anon_sym_DOLLAR, - ACTIONS(1285), 1, + ACTIONS(1301), 1, anon_sym_AT, - ACTIONS(1287), 1, + ACTIONS(1303), 1, aux_sym_number_token1, - ACTIONS(1289), 1, + ACTIONS(1305), 1, aux_sym_number_token2, - ACTIONS(1291), 1, + ACTIONS(1307), 1, anon_sym_DQUOTE, - STATE(761), 1, + STATE(772), 1, aux_sym_exp_list_repeat1, - STATE(1067), 1, + STATE(1093), 1, sym_ns_qualified_name, - STATE(1137), 1, + STATE(1142), 1, sym_array_ref, - STATE(1231), 1, + STATE(1251), 1, sym_field_ref, - STATE(1502), 1, + STATE(1510), 1, sym__binary_in, - STATE(1935), 1, + STATE(2058), 1, sym_exp_list, - STATE(2075), 1, + STATE(2080), 1, sym_namespace, - ACTIONS(1277), 2, + ACTIONS(1293), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1281), 2, + ACTIONS(1297), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1500), 9, + STATE(1505), 9, sym_ternary_exp, sym_binary_exp, sym_unary_exp, @@ -53058,7 +52243,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_string, sym_func_call, - STATE(1575), 10, + STATE(1585), 10, sym__getline_exp, sym_getline_input, sym_getline_file, @@ -53069,48 +52254,100 @@ static const uint16_t ts_small_parse_table[] = { sym_regex, sym_regex_constant, sym_indirect_func_call, - [32628] = 21, - ACTIONS(1269), 1, + [31173] = 11, + ACTIONS(878), 1, + sym_concatenating_space, + ACTIONS(1341), 1, + anon_sym_in, + ACTIONS(1347), 1, + anon_sym_QMARK, + ACTIONS(1355), 1, + anon_sym_AMP_AMP, + ACTIONS(1357), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1339), 2, + anon_sym_CARET, + anon_sym_STAR_STAR, + ACTIONS(1351), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1353), 2, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(1349), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1343), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(876), 20, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_POUND, + [31236] = 21, + ACTIONS(1285), 1, sym_identifier, - ACTIONS(1271), 1, + ACTIONS(1287), 1, anon_sym_LPAREN, - ACTIONS(1273), 1, + ACTIONS(1289), 1, anon_sym_getline, - ACTIONS(1275), 1, + ACTIONS(1291), 1, anon_sym_SLASH, - ACTIONS(1279), 1, + ACTIONS(1295), 1, anon_sym_BANG, - ACTIONS(1283), 1, + ACTIONS(1299), 1, anon_sym_DOLLAR, - ACTIONS(1285), 1, + ACTIONS(1301), 1, anon_sym_AT, - ACTIONS(1287), 1, + ACTIONS(1303), 1, aux_sym_number_token1, - ACTIONS(1289), 1, + ACTIONS(1305), 1, aux_sym_number_token2, - ACTIONS(1291), 1, + ACTIONS(1307), 1, anon_sym_DQUOTE, - ACTIONS(1397), 1, - anon_sym_RPAREN, - STATE(1067), 1, + STATE(772), 1, + aux_sym_exp_list_repeat1, + STATE(1093), 1, sym_ns_qualified_name, - STATE(1137), 1, + STATE(1142), 1, sym_array_ref, - STATE(1231), 1, + STATE(1251), 1, sym_field_ref, - STATE(1502), 1, + STATE(1510), 1, sym__binary_in, - STATE(2028), 1, - sym_args, - STATE(2075), 1, + STATE(1975), 1, + sym_exp_list, + STATE(2080), 1, sym_namespace, - ACTIONS(1277), 2, + ACTIONS(1293), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1281), 2, + ACTIONS(1297), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1500), 9, + STATE(1505), 9, sym_ternary_exp, sym_binary_exp, sym_unary_exp, @@ -53120,7 +52357,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_string, sym_func_call, - STATE(1573), 10, + STATE(1581), 10, sym__getline_exp, sym_getline_input, sym_getline_file, @@ -53131,48 +52368,138 @@ static const uint16_t ts_small_parse_table[] = { sym_regex, sym_regex_constant, sym_indirect_func_call, - [32711] = 21, - ACTIONS(1269), 1, - sym_identifier, - ACTIONS(1271), 1, + [31319] = 1, + ACTIONS(1329), 40, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_if, anon_sym_LPAREN, - ACTIONS(1273), 1, + anon_sym_while, + anon_sym_do, + anon_sym_for, + sym_break_statement, + sym_continue_statement, + anon_sym_delete, + anon_sym_exit, + anon_sym_return, + anon_sym_switch, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, anon_sym_getline, - ACTIONS(1275), 1, + sym_next_statement, + sym_nextfile_statement, + anon_sym_print, + anon_sym_printf, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, anon_sym_SLASH, - ACTIONS(1279), 1, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_BANG, - ACTIONS(1283), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_DOLLAR, - ACTIONS(1285), 1, anon_sym_AT, - ACTIONS(1287), 1, + sym_identifier, aux_sym_number_token1, - ACTIONS(1289), 1, aux_sym_number_token2, + anon_sym_DQUOTE, + anon_sym_POUND, + [31362] = 7, + ACTIONS(650), 1, + anon_sym_COLON_COLON, + ACTIONS(684), 1, + anon_sym_LBRACK, + ACTIONS(1245), 1, + anon_sym_LPAREN2, + ACTIONS(1385), 1, + sym_concatenating_space, + ACTIONS(1253), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1383), 7, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + ACTIONS(642), 27, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_while, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_CARET, + anon_sym_STAR_STAR, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [31417] = 21, + ACTIONS(1285), 1, + sym_identifier, + ACTIONS(1287), 1, + anon_sym_LPAREN, + ACTIONS(1289), 1, + anon_sym_getline, ACTIONS(1291), 1, + anon_sym_SLASH, + ACTIONS(1295), 1, + anon_sym_BANG, + ACTIONS(1299), 1, + anon_sym_DOLLAR, + ACTIONS(1301), 1, + anon_sym_AT, + ACTIONS(1303), 1, + aux_sym_number_token1, + ACTIONS(1305), 1, + aux_sym_number_token2, + ACTIONS(1307), 1, anon_sym_DQUOTE, - ACTIONS(1399), 1, - anon_sym_RPAREN, - STATE(1067), 1, + STATE(772), 1, + aux_sym_exp_list_repeat1, + STATE(1093), 1, sym_ns_qualified_name, - STATE(1137), 1, + STATE(1142), 1, sym_array_ref, - STATE(1231), 1, + STATE(1251), 1, sym_field_ref, - STATE(1502), 1, + STATE(1510), 1, sym__binary_in, - STATE(2037), 1, - sym_args, - STATE(2075), 1, + STATE(2056), 1, + sym_exp_list, + STATE(2080), 1, sym_namespace, - ACTIONS(1277), 2, + ACTIONS(1293), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1281), 2, + ACTIONS(1297), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1500), 9, + STATE(1505), 9, sym_ternary_exp, sym_binary_exp, sym_unary_exp, @@ -53182,7 +52509,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_string, sym_func_call, - STATE(1573), 10, + STATE(1583), 10, sym__getline_exp, sym_getline_input, sym_getline_file, @@ -53193,46 +52520,48 @@ static const uint16_t ts_small_parse_table[] = { sym_regex, sym_regex_constant, sym_indirect_func_call, - [32794] = 20, - ACTIONS(1401), 1, + [31500] = 21, + ACTIONS(1285), 1, sym_identifier, - ACTIONS(1404), 1, + ACTIONS(1287), 1, anon_sym_LPAREN, - ACTIONS(1407), 1, + ACTIONS(1289), 1, anon_sym_getline, - ACTIONS(1410), 1, + ACTIONS(1291), 1, anon_sym_SLASH, - ACTIONS(1416), 1, + ACTIONS(1295), 1, anon_sym_BANG, - ACTIONS(1422), 1, + ACTIONS(1299), 1, anon_sym_DOLLAR, - ACTIONS(1425), 1, + ACTIONS(1301), 1, anon_sym_AT, - ACTIONS(1428), 1, + ACTIONS(1303), 1, aux_sym_number_token1, - ACTIONS(1431), 1, + ACTIONS(1305), 1, aux_sym_number_token2, - ACTIONS(1434), 1, + ACTIONS(1307), 1, anon_sym_DQUOTE, - STATE(713), 1, + STATE(772), 1, aux_sym_exp_list_repeat1, - STATE(1067), 1, + STATE(1093), 1, sym_ns_qualified_name, - STATE(1137), 1, + STATE(1142), 1, sym_array_ref, - STATE(1231), 1, + STATE(1251), 1, sym_field_ref, - STATE(1502), 1, + STATE(1510), 1, sym__binary_in, - STATE(2075), 1, + STATE(1945), 1, + sym_exp_list, + STATE(2080), 1, sym_namespace, - ACTIONS(1413), 2, + ACTIONS(1293), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1419), 2, + ACTIONS(1297), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1500), 9, + STATE(1505), 9, sym_ternary_exp, sym_binary_exp, sym_unary_exp, @@ -53242,7 +52571,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_string, sym_func_call, - STATE(1602), 10, + STATE(1580), 10, sym__getline_exp, sym_getline_input, sym_getline_file, @@ -53253,46 +52582,48 @@ static const uint16_t ts_small_parse_table[] = { sym_regex, sym_regex_constant, sym_indirect_func_call, - [32874] = 20, - ACTIONS(1269), 1, + [31583] = 21, + ACTIONS(1285), 1, sym_identifier, - ACTIONS(1271), 1, + ACTIONS(1287), 1, anon_sym_LPAREN, - ACTIONS(1273), 1, + ACTIONS(1289), 1, anon_sym_getline, - ACTIONS(1275), 1, + ACTIONS(1291), 1, anon_sym_SLASH, - ACTIONS(1279), 1, + ACTIONS(1295), 1, anon_sym_BANG, - ACTIONS(1283), 1, + ACTIONS(1299), 1, anon_sym_DOLLAR, - ACTIONS(1285), 1, + ACTIONS(1301), 1, anon_sym_AT, - ACTIONS(1287), 1, + ACTIONS(1303), 1, aux_sym_number_token1, - ACTIONS(1289), 1, + ACTIONS(1305), 1, aux_sym_number_token2, - ACTIONS(1291), 1, + ACTIONS(1307), 1, anon_sym_DQUOTE, - ACTIONS(1437), 1, - anon_sym_RPAREN, - STATE(1067), 1, + STATE(772), 1, + aux_sym_exp_list_repeat1, + STATE(1093), 1, sym_ns_qualified_name, - STATE(1137), 1, + STATE(1142), 1, sym_array_ref, - STATE(1231), 1, + STATE(1251), 1, sym_field_ref, - STATE(1502), 1, + STATE(1510), 1, sym__binary_in, - STATE(2075), 1, + STATE(1927), 1, + sym_exp_list, + STATE(2080), 1, sym_namespace, - ACTIONS(1277), 2, + ACTIONS(1293), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1281), 2, + ACTIONS(1297), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1500), 9, + STATE(1505), 9, sym_ternary_exp, sym_binary_exp, sym_unary_exp, @@ -53302,7 +52633,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_string, sym_func_call, - STATE(1649), 10, + STATE(1574), 10, sym__getline_exp, sym_getline_input, sym_getline_file, @@ -53313,46 +52644,48 @@ static const uint16_t ts_small_parse_table[] = { sym_regex, sym_regex_constant, sym_indirect_func_call, - [32954] = 20, - ACTIONS(1271), 1, + [31666] = 21, + ACTIONS(1285), 1, + sym_identifier, + ACTIONS(1287), 1, anon_sym_LPAREN, - ACTIONS(1273), 1, + ACTIONS(1289), 1, anon_sym_getline, - ACTIONS(1275), 1, + ACTIONS(1291), 1, anon_sym_SLASH, - ACTIONS(1279), 1, + ACTIONS(1295), 1, anon_sym_BANG, - ACTIONS(1283), 1, + ACTIONS(1299), 1, anon_sym_DOLLAR, - ACTIONS(1285), 1, + ACTIONS(1301), 1, anon_sym_AT, - ACTIONS(1287), 1, + ACTIONS(1303), 1, aux_sym_number_token1, - ACTIONS(1289), 1, + ACTIONS(1305), 1, aux_sym_number_token2, - ACTIONS(1291), 1, + ACTIONS(1307), 1, anon_sym_DQUOTE, - ACTIONS(1439), 1, - sym_identifier, - ACTIONS(1441), 1, - anon_sym_SEMI, - STATE(1137), 1, + STATE(772), 1, + aux_sym_exp_list_repeat1, + STATE(1093), 1, + sym_ns_qualified_name, + STATE(1142), 1, sym_array_ref, - STATE(1231), 1, + STATE(1251), 1, sym_field_ref, - STATE(1293), 1, - sym_ns_qualified_name, - STATE(1502), 1, + STATE(1510), 1, sym__binary_in, - STATE(2075), 1, + STATE(1937), 1, + sym_exp_list, + STATE(2080), 1, sym_namespace, - ACTIONS(1277), 2, + ACTIONS(1293), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1281), 2, + ACTIONS(1297), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1500), 9, + STATE(1505), 9, sym_ternary_exp, sym_binary_exp, sym_unary_exp, @@ -53362,7 +52695,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_string, sym_func_call, - STATE(1675), 10, + STATE(1588), 10, sym__getline_exp, sym_getline_input, sym_getline_file, @@ -53373,96 +52706,48 @@ static const uint16_t ts_small_parse_table[] = { sym_regex, sym_regex_constant, sym_indirect_func_call, - [33034] = 10, - ACTIONS(642), 1, - anon_sym_COLON, - ACTIONS(652), 1, - anon_sym_COLON_COLON, - ACTIONS(732), 1, - anon_sym_EQ, - ACTIONS(908), 1, - anon_sym_LBRACK, - ACTIONS(1443), 1, - anon_sym_LPAREN2, - ACTIONS(910), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(654), 5, - sym_concatenating_space, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - ACTIONS(989), 6, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - ACTIONS(644), 9, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(658), 12, - anon_sym_in, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [33094] = 20, - ACTIONS(1269), 1, + [31749] = 21, + ACTIONS(1285), 1, sym_identifier, - ACTIONS(1271), 1, + ACTIONS(1287), 1, anon_sym_LPAREN, - ACTIONS(1273), 1, + ACTIONS(1289), 1, anon_sym_getline, - ACTIONS(1275), 1, + ACTIONS(1291), 1, anon_sym_SLASH, - ACTIONS(1279), 1, + ACTIONS(1295), 1, anon_sym_BANG, - ACTIONS(1283), 1, + ACTIONS(1299), 1, anon_sym_DOLLAR, - ACTIONS(1285), 1, + ACTIONS(1301), 1, anon_sym_AT, - ACTIONS(1287), 1, + ACTIONS(1303), 1, aux_sym_number_token1, - ACTIONS(1289), 1, + ACTIONS(1305), 1, aux_sym_number_token2, - ACTIONS(1291), 1, + ACTIONS(1307), 1, anon_sym_DQUOTE, - ACTIONS(1445), 1, + ACTIONS(1387), 1, anon_sym_RPAREN, - STATE(1067), 1, + STATE(1093), 1, sym_ns_qualified_name, - STATE(1137), 1, + STATE(1142), 1, sym_array_ref, - STATE(1231), 1, + STATE(1251), 1, sym_field_ref, - STATE(1502), 1, + STATE(1510), 1, sym__binary_in, - STATE(2075), 1, + STATE(2033), 1, + sym_args, + STATE(2080), 1, sym_namespace, - ACTIONS(1277), 2, + ACTIONS(1293), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1281), 2, + ACTIONS(1297), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1500), 9, + STATE(1505), 9, sym_ternary_exp, sym_binary_exp, sym_unary_exp, @@ -53472,7 +52757,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_string, sym_func_call, - STATE(1646), 10, + STATE(1573), 10, sym__getline_exp, sym_getline_input, sym_getline_file, @@ -53483,46 +52768,48 @@ static const uint16_t ts_small_parse_table[] = { sym_regex, sym_regex_constant, sym_indirect_func_call, - [33174] = 20, - ACTIONS(1269), 1, + [31832] = 21, + ACTIONS(1285), 1, sym_identifier, - ACTIONS(1271), 1, + ACTIONS(1287), 1, anon_sym_LPAREN, - ACTIONS(1273), 1, + ACTIONS(1289), 1, anon_sym_getline, - ACTIONS(1275), 1, + ACTIONS(1291), 1, anon_sym_SLASH, - ACTIONS(1279), 1, + ACTIONS(1295), 1, anon_sym_BANG, - ACTIONS(1283), 1, + ACTIONS(1299), 1, anon_sym_DOLLAR, - ACTIONS(1285), 1, + ACTIONS(1301), 1, anon_sym_AT, - ACTIONS(1287), 1, + ACTIONS(1303), 1, aux_sym_number_token1, - ACTIONS(1289), 1, + ACTIONS(1305), 1, aux_sym_number_token2, - ACTIONS(1291), 1, + ACTIONS(1307), 1, anon_sym_DQUOTE, - ACTIONS(1447), 1, - anon_sym_SEMI, - STATE(1067), 1, + STATE(772), 1, + aux_sym_exp_list_repeat1, + STATE(1093), 1, sym_ns_qualified_name, - STATE(1137), 1, + STATE(1142), 1, sym_array_ref, - STATE(1231), 1, + STATE(1251), 1, sym_field_ref, - STATE(1502), 1, + STATE(1510), 1, sym__binary_in, - STATE(2075), 1, + STATE(1981), 1, + sym_exp_list, + STATE(2080), 1, sym_namespace, - ACTIONS(1277), 2, + ACTIONS(1293), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1281), 2, + ACTIONS(1297), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1500), 9, + STATE(1505), 9, sym_ternary_exp, sym_binary_exp, sym_unary_exp, @@ -53532,7 +52819,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_string, sym_func_call, - STATE(1655), 10, + STATE(1586), 10, sym__getline_exp, sym_getline_input, sym_getline_file, @@ -53543,46 +52830,48 @@ static const uint16_t ts_small_parse_table[] = { sym_regex, sym_regex_constant, sym_indirect_func_call, - [33254] = 20, - ACTIONS(1269), 1, + [31915] = 21, + ACTIONS(1285), 1, sym_identifier, - ACTIONS(1271), 1, + ACTIONS(1287), 1, anon_sym_LPAREN, - ACTIONS(1273), 1, + ACTIONS(1289), 1, anon_sym_getline, - ACTIONS(1275), 1, + ACTIONS(1291), 1, anon_sym_SLASH, - ACTIONS(1279), 1, + ACTIONS(1295), 1, anon_sym_BANG, - ACTIONS(1283), 1, + ACTIONS(1299), 1, anon_sym_DOLLAR, - ACTIONS(1285), 1, + ACTIONS(1301), 1, anon_sym_AT, - ACTIONS(1287), 1, + ACTIONS(1303), 1, aux_sym_number_token1, - ACTIONS(1289), 1, + ACTIONS(1305), 1, aux_sym_number_token2, - ACTIONS(1291), 1, + ACTIONS(1307), 1, anon_sym_DQUOTE, - ACTIONS(1449), 1, - anon_sym_SEMI, - STATE(1067), 1, + ACTIONS(1389), 1, + anon_sym_RPAREN, + STATE(1093), 1, sym_ns_qualified_name, - STATE(1137), 1, + STATE(1142), 1, sym_array_ref, - STATE(1231), 1, + STATE(1251), 1, sym_field_ref, - STATE(1502), 1, + STATE(1510), 1, sym__binary_in, - STATE(2075), 1, + STATE(2001), 1, + sym_args, + STATE(2080), 1, sym_namespace, - ACTIONS(1277), 2, + ACTIONS(1293), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1281), 2, + ACTIONS(1297), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1500), 9, + STATE(1505), 9, sym_ternary_exp, sym_binary_exp, sym_unary_exp, @@ -53592,7 +52881,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_string, sym_func_call, - STATE(1644), 10, + STATE(1573), 10, sym__getline_exp, sym_getline_input, sym_getline_file, @@ -53603,46 +52892,48 @@ static const uint16_t ts_small_parse_table[] = { sym_regex, sym_regex_constant, sym_indirect_func_call, - [33334] = 20, - ACTIONS(1269), 1, + [31998] = 21, + ACTIONS(1285), 1, sym_identifier, - ACTIONS(1271), 1, + ACTIONS(1287), 1, anon_sym_LPAREN, - ACTIONS(1273), 1, + ACTIONS(1289), 1, anon_sym_getline, - ACTIONS(1275), 1, + ACTIONS(1291), 1, anon_sym_SLASH, - ACTIONS(1279), 1, + ACTIONS(1295), 1, anon_sym_BANG, - ACTIONS(1283), 1, + ACTIONS(1299), 1, anon_sym_DOLLAR, - ACTIONS(1285), 1, + ACTIONS(1301), 1, anon_sym_AT, - ACTIONS(1287), 1, + ACTIONS(1303), 1, aux_sym_number_token1, - ACTIONS(1289), 1, + ACTIONS(1305), 1, aux_sym_number_token2, - ACTIONS(1291), 1, + ACTIONS(1307), 1, anon_sym_DQUOTE, - ACTIONS(1451), 1, - anon_sym_RPAREN, - STATE(1067), 1, + STATE(772), 1, + aux_sym_exp_list_repeat1, + STATE(1093), 1, sym_ns_qualified_name, - STATE(1137), 1, + STATE(1142), 1, sym_array_ref, - STATE(1231), 1, + STATE(1251), 1, sym_field_ref, - STATE(1502), 1, + STATE(1510), 1, sym__binary_in, - STATE(2075), 1, + STATE(1909), 1, + sym_exp_list, + STATE(2080), 1, sym_namespace, - ACTIONS(1277), 2, + ACTIONS(1293), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1281), 2, + ACTIONS(1297), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1500), 9, + STATE(1505), 9, sym_ternary_exp, sym_binary_exp, sym_unary_exp, @@ -53652,7 +52943,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_string, sym_func_call, - STATE(1643), 10, + STATE(1597), 10, sym__getline_exp, sym_getline_input, sym_getline_file, @@ -53663,46 +52954,48 @@ static const uint16_t ts_small_parse_table[] = { sym_regex, sym_regex_constant, sym_indirect_func_call, - [33414] = 20, - ACTIONS(1269), 1, + [32081] = 21, + ACTIONS(1285), 1, sym_identifier, - ACTIONS(1271), 1, + ACTIONS(1287), 1, anon_sym_LPAREN, - ACTIONS(1273), 1, + ACTIONS(1289), 1, anon_sym_getline, - ACTIONS(1275), 1, + ACTIONS(1291), 1, anon_sym_SLASH, - ACTIONS(1279), 1, + ACTIONS(1295), 1, anon_sym_BANG, - ACTIONS(1283), 1, + ACTIONS(1299), 1, anon_sym_DOLLAR, - ACTIONS(1285), 1, + ACTIONS(1301), 1, anon_sym_AT, - ACTIONS(1287), 1, + ACTIONS(1303), 1, aux_sym_number_token1, - ACTIONS(1289), 1, + ACTIONS(1305), 1, aux_sym_number_token2, - ACTIONS(1291), 1, + ACTIONS(1307), 1, anon_sym_DQUOTE, - ACTIONS(1453), 1, + ACTIONS(1391), 1, anon_sym_RPAREN, - STATE(1067), 1, + STATE(1093), 1, sym_ns_qualified_name, - STATE(1137), 1, + STATE(1142), 1, sym_array_ref, - STATE(1231), 1, + STATE(1251), 1, sym_field_ref, - STATE(1502), 1, + STATE(1510), 1, sym__binary_in, - STATE(2075), 1, + STATE(2006), 1, + sym_args, + STATE(2080), 1, sym_namespace, - ACTIONS(1277), 2, + ACTIONS(1293), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1281), 2, + ACTIONS(1297), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1500), 9, + STATE(1505), 9, sym_ternary_exp, sym_binary_exp, sym_unary_exp, @@ -53712,7 +53005,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_string, sym_func_call, - STATE(1629), 10, + STATE(1573), 10, sym__getline_exp, sym_getline_input, sym_getline_file, @@ -53723,46 +53016,93 @@ static const uint16_t ts_small_parse_table[] = { sym_regex, sym_regex_constant, sym_indirect_func_call, - [33494] = 20, - ACTIONS(1269), 1, + [32164] = 4, + ACTIONS(1257), 1, + sym_concatenating_space, + ACTIONS(1253), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1255), 7, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + ACTIONS(642), 30, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_CARET, + anon_sym_STAR_STAR, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_POUND, + [32213] = 21, + ACTIONS(1285), 1, sym_identifier, - ACTIONS(1271), 1, + ACTIONS(1287), 1, anon_sym_LPAREN, - ACTIONS(1273), 1, + ACTIONS(1289), 1, anon_sym_getline, - ACTIONS(1275), 1, + ACTIONS(1291), 1, anon_sym_SLASH, - ACTIONS(1279), 1, + ACTIONS(1295), 1, anon_sym_BANG, - ACTIONS(1283), 1, + ACTIONS(1299), 1, anon_sym_DOLLAR, - ACTIONS(1285), 1, + ACTIONS(1301), 1, anon_sym_AT, - ACTIONS(1287), 1, + ACTIONS(1303), 1, aux_sym_number_token1, - ACTIONS(1289), 1, + ACTIONS(1305), 1, aux_sym_number_token2, - ACTIONS(1291), 1, + ACTIONS(1307), 1, anon_sym_DQUOTE, - ACTIONS(1455), 1, + ACTIONS(1393), 1, anon_sym_RPAREN, - STATE(1067), 1, + STATE(1093), 1, sym_ns_qualified_name, - STATE(1137), 1, + STATE(1142), 1, sym_array_ref, - STATE(1231), 1, + STATE(1251), 1, sym_field_ref, - STATE(1502), 1, + STATE(1510), 1, sym__binary_in, - STATE(2075), 1, + STATE(2025), 1, + sym_args, + STATE(2080), 1, sym_namespace, - ACTIONS(1277), 2, + ACTIONS(1293), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1281), 2, + ACTIONS(1297), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1500), 9, + STATE(1505), 9, sym_ternary_exp, sym_binary_exp, sym_unary_exp, @@ -53772,7 +53112,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_string, sym_func_call, - STATE(1635), 10, + STATE(1573), 10, sym__getline_exp, sym_getline_input, sym_getline_file, @@ -53783,46 +53123,48 @@ static const uint16_t ts_small_parse_table[] = { sym_regex, sym_regex_constant, sym_indirect_func_call, - [33574] = 20, - ACTIONS(1269), 1, + [32296] = 21, + ACTIONS(1285), 1, sym_identifier, - ACTIONS(1271), 1, + ACTIONS(1287), 1, anon_sym_LPAREN, - ACTIONS(1273), 1, + ACTIONS(1289), 1, anon_sym_getline, - ACTIONS(1275), 1, + ACTIONS(1291), 1, anon_sym_SLASH, - ACTIONS(1279), 1, + ACTIONS(1295), 1, anon_sym_BANG, - ACTIONS(1283), 1, + ACTIONS(1299), 1, anon_sym_DOLLAR, - ACTIONS(1285), 1, + ACTIONS(1301), 1, anon_sym_AT, - ACTIONS(1287), 1, + ACTIONS(1303), 1, aux_sym_number_token1, - ACTIONS(1289), 1, + ACTIONS(1305), 1, aux_sym_number_token2, - ACTIONS(1291), 1, + ACTIONS(1307), 1, anon_sym_DQUOTE, - ACTIONS(1457), 1, - anon_sym_RPAREN, - STATE(1067), 1, + STATE(772), 1, + aux_sym_exp_list_repeat1, + STATE(1093), 1, sym_ns_qualified_name, - STATE(1137), 1, + STATE(1142), 1, sym_array_ref, - STATE(1231), 1, + STATE(1251), 1, sym_field_ref, - STATE(1502), 1, + STATE(1510), 1, sym__binary_in, - STATE(2075), 1, + STATE(1933), 1, + sym_exp_list, + STATE(2080), 1, sym_namespace, - ACTIONS(1277), 2, + ACTIONS(1293), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1281), 2, + ACTIONS(1297), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1500), 9, + STATE(1505), 9, sym_ternary_exp, sym_binary_exp, sym_unary_exp, @@ -53832,7 +53174,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_string, sym_func_call, - STATE(1617), 10, + STATE(1575), 10, sym__getline_exp, sym_getline_input, sym_getline_file, @@ -53843,46 +53185,48 @@ static const uint16_t ts_small_parse_table[] = { sym_regex, sym_regex_constant, sym_indirect_func_call, - [33654] = 20, - ACTIONS(1269), 1, + [32379] = 21, + ACTIONS(1285), 1, sym_identifier, - ACTIONS(1271), 1, + ACTIONS(1287), 1, anon_sym_LPAREN, - ACTIONS(1273), 1, + ACTIONS(1289), 1, anon_sym_getline, - ACTIONS(1275), 1, + ACTIONS(1291), 1, anon_sym_SLASH, - ACTIONS(1279), 1, + ACTIONS(1295), 1, anon_sym_BANG, - ACTIONS(1283), 1, + ACTIONS(1299), 1, anon_sym_DOLLAR, - ACTIONS(1285), 1, + ACTIONS(1301), 1, anon_sym_AT, - ACTIONS(1287), 1, + ACTIONS(1303), 1, aux_sym_number_token1, - ACTIONS(1289), 1, + ACTIONS(1305), 1, aux_sym_number_token2, - ACTIONS(1291), 1, + ACTIONS(1307), 1, anon_sym_DQUOTE, - ACTIONS(1459), 1, - anon_sym_RPAREN, - STATE(1067), 1, + STATE(772), 1, + aux_sym_exp_list_repeat1, + STATE(1093), 1, sym_ns_qualified_name, - STATE(1137), 1, + STATE(1142), 1, sym_array_ref, - STATE(1231), 1, + STATE(1251), 1, sym_field_ref, - STATE(1502), 1, + STATE(1510), 1, sym__binary_in, - STATE(2075), 1, + STATE(2044), 1, + sym_exp_list, + STATE(2080), 1, sym_namespace, - ACTIONS(1277), 2, + ACTIONS(1293), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1281), 2, + ACTIONS(1297), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1500), 9, + STATE(1505), 9, sym_ternary_exp, sym_binary_exp, sym_unary_exp, @@ -53892,7 +53236,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_string, sym_func_call, - STATE(1608), 10, + STATE(1599), 10, sym__getline_exp, sym_getline_input, sym_getline_file, @@ -53903,46 +53247,48 @@ static const uint16_t ts_small_parse_table[] = { sym_regex, sym_regex_constant, sym_indirect_func_call, - [33734] = 20, - ACTIONS(1271), 1, + [32462] = 21, + ACTIONS(1285), 1, + sym_identifier, + ACTIONS(1287), 1, anon_sym_LPAREN, - ACTIONS(1273), 1, + ACTIONS(1289), 1, anon_sym_getline, - ACTIONS(1275), 1, + ACTIONS(1291), 1, anon_sym_SLASH, - ACTIONS(1279), 1, + ACTIONS(1295), 1, anon_sym_BANG, - ACTIONS(1283), 1, + ACTIONS(1299), 1, anon_sym_DOLLAR, - ACTIONS(1285), 1, + ACTIONS(1301), 1, anon_sym_AT, - ACTIONS(1287), 1, + ACTIONS(1303), 1, aux_sym_number_token1, - ACTIONS(1289), 1, + ACTIONS(1305), 1, aux_sym_number_token2, - ACTIONS(1291), 1, + ACTIONS(1307), 1, anon_sym_DQUOTE, - ACTIONS(1461), 1, - sym_identifier, - ACTIONS(1463), 1, - anon_sym_SEMI, - STATE(1137), 1, + STATE(772), 1, + aux_sym_exp_list_repeat1, + STATE(1093), 1, + sym_ns_qualified_name, + STATE(1142), 1, sym_array_ref, - STATE(1231), 1, + STATE(1251), 1, sym_field_ref, - STATE(1281), 1, - sym_ns_qualified_name, - STATE(1502), 1, + STATE(1510), 1, sym__binary_in, - STATE(2075), 1, + STATE(1916), 1, + sym_exp_list, + STATE(2080), 1, sym_namespace, - ACTIONS(1277), 2, + ACTIONS(1293), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1281), 2, + ACTIONS(1297), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1500), 9, + STATE(1505), 9, sym_ternary_exp, sym_binary_exp, sym_unary_exp, @@ -53952,7 +53298,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_string, sym_func_call, - STATE(1665), 10, + STATE(1589), 10, sym__getline_exp, sym_getline_input, sym_getline_file, @@ -53963,46 +53309,48 @@ static const uint16_t ts_small_parse_table[] = { sym_regex, sym_regex_constant, sym_indirect_func_call, - [33814] = 20, - ACTIONS(1269), 1, + [32545] = 21, + ACTIONS(1285), 1, sym_identifier, - ACTIONS(1271), 1, + ACTIONS(1287), 1, anon_sym_LPAREN, - ACTIONS(1273), 1, + ACTIONS(1289), 1, anon_sym_getline, - ACTIONS(1275), 1, + ACTIONS(1291), 1, anon_sym_SLASH, - ACTIONS(1279), 1, + ACTIONS(1295), 1, anon_sym_BANG, - ACTIONS(1283), 1, + ACTIONS(1299), 1, anon_sym_DOLLAR, - ACTIONS(1285), 1, + ACTIONS(1301), 1, anon_sym_AT, - ACTIONS(1287), 1, + ACTIONS(1303), 1, aux_sym_number_token1, - ACTIONS(1289), 1, + ACTIONS(1305), 1, aux_sym_number_token2, - ACTIONS(1291), 1, + ACTIONS(1307), 1, anon_sym_DQUOTE, - ACTIONS(1465), 1, - anon_sym_SEMI, - STATE(1067), 1, + ACTIONS(1395), 1, + anon_sym_RPAREN, + STATE(1093), 1, sym_ns_qualified_name, - STATE(1137), 1, + STATE(1142), 1, sym_array_ref, - STATE(1231), 1, + STATE(1251), 1, sym_field_ref, - STATE(1502), 1, + STATE(1510), 1, sym__binary_in, - STATE(2075), 1, + STATE(2011), 1, + sym_args, + STATE(2080), 1, sym_namespace, - ACTIONS(1277), 2, + ACTIONS(1293), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1281), 2, + ACTIONS(1297), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1500), 9, + STATE(1505), 9, sym_ternary_exp, sym_binary_exp, sym_unary_exp, @@ -54012,7 +53360,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_string, sym_func_call, - STATE(1664), 10, + STATE(1573), 10, sym__getline_exp, sym_getline_input, sym_getline_file, @@ -54023,46 +53371,48 @@ static const uint16_t ts_small_parse_table[] = { sym_regex, sym_regex_constant, sym_indirect_func_call, - [33894] = 20, - ACTIONS(1269), 1, + [32628] = 21, + ACTIONS(1285), 1, sym_identifier, - ACTIONS(1271), 1, + ACTIONS(1287), 1, anon_sym_LPAREN, - ACTIONS(1273), 1, + ACTIONS(1289), 1, anon_sym_getline, - ACTIONS(1275), 1, + ACTIONS(1291), 1, anon_sym_SLASH, - ACTIONS(1279), 1, + ACTIONS(1295), 1, anon_sym_BANG, - ACTIONS(1283), 1, + ACTIONS(1299), 1, anon_sym_DOLLAR, - ACTIONS(1285), 1, + ACTIONS(1301), 1, anon_sym_AT, - ACTIONS(1287), 1, + ACTIONS(1303), 1, aux_sym_number_token1, - ACTIONS(1289), 1, + ACTIONS(1305), 1, aux_sym_number_token2, - ACTIONS(1291), 1, + ACTIONS(1307), 1, anon_sym_DQUOTE, - ACTIONS(1467), 1, + ACTIONS(1397), 1, anon_sym_RPAREN, - STATE(1067), 1, + STATE(1093), 1, sym_ns_qualified_name, - STATE(1137), 1, + STATE(1142), 1, sym_array_ref, - STATE(1231), 1, + STATE(1251), 1, sym_field_ref, - STATE(1502), 1, + STATE(1510), 1, sym__binary_in, - STATE(2075), 1, + STATE(1977), 1, + sym_args, + STATE(2080), 1, sym_namespace, - ACTIONS(1277), 2, + ACTIONS(1293), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1281), 2, + ACTIONS(1297), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1500), 9, + STATE(1505), 9, sym_ternary_exp, sym_binary_exp, sym_unary_exp, @@ -54072,7 +53422,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_string, sym_func_call, - STATE(1638), 10, + STATE(1573), 10, sym__getline_exp, sym_getline_input, sym_getline_file, @@ -54083,46 +53433,48 @@ static const uint16_t ts_small_parse_table[] = { sym_regex, sym_regex_constant, sym_indirect_func_call, - [33974] = 20, - ACTIONS(1269), 1, + [32711] = 21, + ACTIONS(1285), 1, sym_identifier, - ACTIONS(1271), 1, + ACTIONS(1287), 1, anon_sym_LPAREN, - ACTIONS(1273), 1, + ACTIONS(1289), 1, anon_sym_getline, - ACTIONS(1275), 1, + ACTIONS(1291), 1, anon_sym_SLASH, - ACTIONS(1279), 1, + ACTIONS(1295), 1, anon_sym_BANG, - ACTIONS(1283), 1, + ACTIONS(1299), 1, anon_sym_DOLLAR, - ACTIONS(1285), 1, + ACTIONS(1301), 1, anon_sym_AT, - ACTIONS(1287), 1, + ACTIONS(1303), 1, aux_sym_number_token1, - ACTIONS(1289), 1, + ACTIONS(1305), 1, aux_sym_number_token2, - ACTIONS(1291), 1, + ACTIONS(1307), 1, anon_sym_DQUOTE, - ACTIONS(1469), 1, - anon_sym_SEMI, - STATE(1067), 1, + ACTIONS(1399), 1, + anon_sym_RPAREN, + STATE(1093), 1, sym_ns_qualified_name, - STATE(1137), 1, + STATE(1142), 1, sym_array_ref, - STATE(1231), 1, + STATE(1251), 1, sym_field_ref, - STATE(1502), 1, + STATE(1510), 1, sym__binary_in, - STATE(2075), 1, + STATE(2015), 1, + sym_args, + STATE(2080), 1, sym_namespace, - ACTIONS(1277), 2, + ACTIONS(1293), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1281), 2, + ACTIONS(1297), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1500), 9, + STATE(1505), 9, sym_ternary_exp, sym_binary_exp, sym_unary_exp, @@ -54132,7 +53484,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_string, sym_func_call, - STATE(1640), 10, + STATE(1573), 10, sym__getline_exp, sym_getline_input, sym_getline_file, @@ -54143,46 +53495,46 @@ static const uint16_t ts_small_parse_table[] = { sym_regex, sym_regex_constant, sym_indirect_func_call, - [34054] = 20, - ACTIONS(1269), 1, + [32794] = 20, + ACTIONS(1285), 1, sym_identifier, - ACTIONS(1271), 1, + ACTIONS(1287), 1, anon_sym_LPAREN, - ACTIONS(1273), 1, + ACTIONS(1289), 1, anon_sym_getline, - ACTIONS(1275), 1, + ACTIONS(1291), 1, anon_sym_SLASH, - ACTIONS(1279), 1, + ACTIONS(1295), 1, anon_sym_BANG, - ACTIONS(1283), 1, + ACTIONS(1299), 1, anon_sym_DOLLAR, - ACTIONS(1285), 1, + ACTIONS(1301), 1, anon_sym_AT, - ACTIONS(1287), 1, + ACTIONS(1303), 1, aux_sym_number_token1, - ACTIONS(1289), 1, + ACTIONS(1305), 1, aux_sym_number_token2, - ACTIONS(1291), 1, + ACTIONS(1307), 1, anon_sym_DQUOTE, - ACTIONS(1471), 1, + ACTIONS(1401), 1, anon_sym_RPAREN, - STATE(1067), 1, + STATE(1093), 1, sym_ns_qualified_name, - STATE(1137), 1, + STATE(1142), 1, sym_array_ref, - STATE(1231), 1, + STATE(1251), 1, sym_field_ref, - STATE(1502), 1, + STATE(1510), 1, sym__binary_in, - STATE(2075), 1, + STATE(2080), 1, sym_namespace, - ACTIONS(1277), 2, + ACTIONS(1293), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1281), 2, + ACTIONS(1297), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1500), 9, + STATE(1505), 9, sym_ternary_exp, sym_binary_exp, sym_unary_exp, @@ -54192,7 +53544,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_string, sym_func_call, - STATE(1669), 10, + STATE(1676), 10, sym__getline_exp, sym_getline_input, sym_getline_file, @@ -54203,46 +53555,46 @@ static const uint16_t ts_small_parse_table[] = { sym_regex, sym_regex_constant, sym_indirect_func_call, - [34134] = 20, - ACTIONS(1269), 1, - sym_identifier, - ACTIONS(1271), 1, + [32874] = 20, + ACTIONS(1287), 1, anon_sym_LPAREN, - ACTIONS(1273), 1, + ACTIONS(1289), 1, anon_sym_getline, - ACTIONS(1275), 1, + ACTIONS(1291), 1, anon_sym_SLASH, - ACTIONS(1279), 1, + ACTIONS(1295), 1, anon_sym_BANG, - ACTIONS(1283), 1, + ACTIONS(1299), 1, anon_sym_DOLLAR, - ACTIONS(1285), 1, + ACTIONS(1301), 1, anon_sym_AT, - ACTIONS(1287), 1, + ACTIONS(1303), 1, aux_sym_number_token1, - ACTIONS(1289), 1, + ACTIONS(1305), 1, aux_sym_number_token2, - ACTIONS(1291), 1, + ACTIONS(1307), 1, anon_sym_DQUOTE, - ACTIONS(1473), 1, + ACTIONS(1403), 1, + sym_identifier, + ACTIONS(1405), 1, anon_sym_SEMI, - STATE(1067), 1, - sym_ns_qualified_name, - STATE(1137), 1, + STATE(1142), 1, sym_array_ref, - STATE(1231), 1, + STATE(1251), 1, sym_field_ref, - STATE(1502), 1, + STATE(1284), 1, + sym_ns_qualified_name, + STATE(1510), 1, sym__binary_in, - STATE(2075), 1, + STATE(2080), 1, sym_namespace, - ACTIONS(1277), 2, + ACTIONS(1293), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1281), 2, + ACTIONS(1297), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1500), 9, + STATE(1505), 9, sym_ternary_exp, sym_binary_exp, sym_unary_exp, @@ -54252,7 +53604,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_string, sym_func_call, - STATE(1659), 10, + STATE(1656), 10, sym__getline_exp, sym_getline_input, sym_getline_file, @@ -54263,46 +53615,46 @@ static const uint16_t ts_small_parse_table[] = { sym_regex, sym_regex_constant, sym_indirect_func_call, - [34214] = 20, - ACTIONS(1269), 1, + [32954] = 20, + ACTIONS(1285), 1, sym_identifier, - ACTIONS(1271), 1, + ACTIONS(1287), 1, anon_sym_LPAREN, - ACTIONS(1273), 1, + ACTIONS(1289), 1, anon_sym_getline, - ACTIONS(1275), 1, + ACTIONS(1291), 1, anon_sym_SLASH, - ACTIONS(1279), 1, + ACTIONS(1295), 1, anon_sym_BANG, - ACTIONS(1283), 1, + ACTIONS(1299), 1, anon_sym_DOLLAR, - ACTIONS(1285), 1, + ACTIONS(1301), 1, anon_sym_AT, - ACTIONS(1287), 1, + ACTIONS(1303), 1, aux_sym_number_token1, - ACTIONS(1289), 1, + ACTIONS(1305), 1, aux_sym_number_token2, - ACTIONS(1291), 1, + ACTIONS(1307), 1, anon_sym_DQUOTE, - ACTIONS(1475), 1, + ACTIONS(1407), 1, anon_sym_RPAREN, - STATE(1067), 1, + STATE(1093), 1, sym_ns_qualified_name, - STATE(1137), 1, + STATE(1142), 1, sym_array_ref, - STATE(1231), 1, + STATE(1251), 1, sym_field_ref, - STATE(1502), 1, + STATE(1510), 1, sym__binary_in, - STATE(2075), 1, + STATE(2080), 1, sym_namespace, - ACTIONS(1277), 2, + ACTIONS(1293), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1281), 2, + ACTIONS(1297), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1500), 9, + STATE(1505), 9, sym_ternary_exp, sym_binary_exp, sym_unary_exp, @@ -54312,7 +53664,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_string, sym_func_call, - STATE(1637), 10, + STATE(1647), 10, sym__getline_exp, sym_getline_input, sym_getline_file, @@ -54323,95 +53675,46 @@ static const uint16_t ts_small_parse_table[] = { sym_regex, sym_regex_constant, sym_indirect_func_call, - [34294] = 9, - ACTIONS(652), 1, - anon_sym_COLON_COLON, - ACTIONS(732), 1, - anon_sym_EQ, - ACTIONS(908), 1, - anon_sym_LBRACK, - ACTIONS(1443), 1, - anon_sym_LPAREN2, - ACTIONS(1477), 1, - sym_concatenating_space, - ACTIONS(910), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(989), 6, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - ACTIONS(644), 10, - anon_sym_COLON, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(658), 16, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_in, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_RBRACK, - [34352] = 20, - ACTIONS(85), 1, - sym_identifier, - ACTIONS(107), 1, - anon_sym_getline, - ACTIONS(123), 1, - aux_sym_number_token1, - ACTIONS(272), 1, + [33034] = 20, + ACTIONS(1285), 1, + sym_identifier, + ACTIONS(1287), 1, anon_sym_LPAREN, - ACTIONS(276), 1, + ACTIONS(1289), 1, + anon_sym_getline, + ACTIONS(1291), 1, anon_sym_SLASH, - ACTIONS(278), 1, + ACTIONS(1295), 1, anon_sym_BANG, - ACTIONS(282), 1, + ACTIONS(1299), 1, anon_sym_DOLLAR, - ACTIONS(284), 1, + ACTIONS(1301), 1, anon_sym_AT, - ACTIONS(286), 1, + ACTIONS(1303), 1, + aux_sym_number_token1, + ACTIONS(1305), 1, aux_sym_number_token2, - ACTIONS(288), 1, + ACTIONS(1307), 1, anon_sym_DQUOTE, - STATE(607), 1, + ACTIONS(1409), 1, + anon_sym_RPAREN, + STATE(1093), 1, sym_ns_qualified_name, - STATE(610), 1, + STATE(1142), 1, sym_array_ref, - STATE(703), 1, + STATE(1251), 1, sym_field_ref, - STATE(713), 1, - aux_sym_exp_list_repeat1, - STATE(1373), 1, + STATE(1510), 1, sym__binary_in, - STATE(1955), 1, + STATE(2080), 1, sym_namespace, - ACTIONS(115), 2, + ACTIONS(1293), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(280), 2, + ACTIONS(1297), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1421), 9, + STATE(1505), 9, sym_ternary_exp, sym_binary_exp, sym_unary_exp, @@ -54421,7 +53724,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_string, sym_func_call, - STATE(1435), 10, + STATE(1624), 10, sym__getline_exp, sym_getline_input, sym_getline_file, @@ -54432,46 +53735,46 @@ static const uint16_t ts_small_parse_table[] = { sym_regex, sym_regex_constant, sym_indirect_func_call, - [34432] = 20, - ACTIONS(1269), 1, + [33114] = 20, + ACTIONS(1411), 1, sym_identifier, - ACTIONS(1271), 1, + ACTIONS(1414), 1, anon_sym_LPAREN, - ACTIONS(1273), 1, + ACTIONS(1417), 1, anon_sym_getline, - ACTIONS(1275), 1, + ACTIONS(1420), 1, anon_sym_SLASH, - ACTIONS(1279), 1, + ACTIONS(1426), 1, anon_sym_BANG, - ACTIONS(1283), 1, + ACTIONS(1432), 1, anon_sym_DOLLAR, - ACTIONS(1285), 1, + ACTIONS(1435), 1, anon_sym_AT, - ACTIONS(1287), 1, + ACTIONS(1438), 1, aux_sym_number_token1, - ACTIONS(1289), 1, + ACTIONS(1441), 1, aux_sym_number_token2, - ACTIONS(1291), 1, + ACTIONS(1444), 1, anon_sym_DQUOTE, - ACTIONS(1479), 1, - anon_sym_RPAREN, - STATE(1067), 1, + STATE(717), 1, + aux_sym_exp_list_repeat1, + STATE(1093), 1, sym_ns_qualified_name, - STATE(1137), 1, + STATE(1142), 1, sym_array_ref, - STATE(1231), 1, + STATE(1251), 1, sym_field_ref, - STATE(1502), 1, + STATE(1510), 1, sym__binary_in, - STATE(2075), 1, + STATE(2080), 1, sym_namespace, - ACTIONS(1277), 2, + ACTIONS(1423), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1281), 2, + ACTIONS(1429), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1500), 9, + STATE(1505), 9, sym_ternary_exp, sym_binary_exp, sym_unary_exp, @@ -54481,7 +53784,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_string, sym_func_call, - STATE(1625), 10, + STATE(1674), 10, sym__getline_exp, sym_getline_input, sym_getline_file, @@ -54492,46 +53795,46 @@ static const uint16_t ts_small_parse_table[] = { sym_regex, sym_regex_constant, sym_indirect_func_call, - [34512] = 20, - ACTIONS(1269), 1, + [33194] = 20, + ACTIONS(137), 1, sym_identifier, - ACTIONS(1271), 1, - anon_sym_LPAREN, - ACTIONS(1273), 1, + ACTIONS(153), 1, anon_sym_getline, - ACTIONS(1275), 1, + ACTIONS(169), 1, + aux_sym_number_token1, + ACTIONS(306), 1, + aux_sym_number_token2, + ACTIONS(308), 1, + anon_sym_DQUOTE, + ACTIONS(434), 1, + anon_sym_LPAREN, + ACTIONS(438), 1, anon_sym_SLASH, - ACTIONS(1279), 1, + ACTIONS(440), 1, anon_sym_BANG, - ACTIONS(1283), 1, + ACTIONS(444), 1, anon_sym_DOLLAR, - ACTIONS(1285), 1, + ACTIONS(446), 1, anon_sym_AT, - ACTIONS(1287), 1, - aux_sym_number_token1, - ACTIONS(1289), 1, - aux_sym_number_token2, - ACTIONS(1291), 1, - anon_sym_DQUOTE, - ACTIONS(1481), 1, - anon_sym_SEMI, - STATE(1067), 1, + STATE(597), 1, sym_ns_qualified_name, - STATE(1137), 1, + STATE(614), 1, sym_array_ref, - STATE(1231), 1, + STATE(705), 1, sym_field_ref, - STATE(1502), 1, + STATE(717), 1, + aux_sym_exp_list_repeat1, + STATE(1385), 1, sym__binary_in, - STATE(2075), 1, + STATE(1956), 1, sym_namespace, - ACTIONS(1277), 2, + ACTIONS(161), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1281), 2, + ACTIONS(442), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1500), 9, + STATE(1420), 9, sym_ternary_exp, sym_binary_exp, sym_unary_exp, @@ -54541,7 +53844,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_string, sym_func_call, - STATE(1650), 10, + STATE(1436), 10, sym__getline_exp, sym_getline_input, sym_getline_file, @@ -54552,46 +53855,46 @@ static const uint16_t ts_small_parse_table[] = { sym_regex, sym_regex_constant, sym_indirect_func_call, - [34592] = 20, - ACTIONS(1269), 1, + [33274] = 20, + ACTIONS(1285), 1, sym_identifier, - ACTIONS(1271), 1, + ACTIONS(1287), 1, anon_sym_LPAREN, - ACTIONS(1273), 1, + ACTIONS(1289), 1, anon_sym_getline, - ACTIONS(1275), 1, + ACTIONS(1291), 1, anon_sym_SLASH, - ACTIONS(1279), 1, + ACTIONS(1295), 1, anon_sym_BANG, - ACTIONS(1283), 1, + ACTIONS(1299), 1, anon_sym_DOLLAR, - ACTIONS(1285), 1, + ACTIONS(1301), 1, anon_sym_AT, - ACTIONS(1287), 1, + ACTIONS(1303), 1, aux_sym_number_token1, - ACTIONS(1289), 1, + ACTIONS(1305), 1, aux_sym_number_token2, - ACTIONS(1291), 1, + ACTIONS(1307), 1, anon_sym_DQUOTE, - ACTIONS(1483), 1, + ACTIONS(1447), 1, anon_sym_RPAREN, - STATE(1067), 1, + STATE(1093), 1, sym_ns_qualified_name, - STATE(1137), 1, + STATE(1142), 1, sym_array_ref, - STATE(1231), 1, + STATE(1251), 1, sym_field_ref, - STATE(1502), 1, + STATE(1510), 1, sym__binary_in, - STATE(2075), 1, + STATE(2080), 1, sym_namespace, - ACTIONS(1277), 2, + ACTIONS(1293), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1281), 2, + ACTIONS(1297), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1500), 9, + STATE(1505), 9, sym_ternary_exp, sym_binary_exp, sym_unary_exp, @@ -54601,7 +53904,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_string, sym_func_call, - STATE(1624), 10, + STATE(1666), 10, sym__getline_exp, sym_getline_input, sym_getline_file, @@ -54612,46 +53915,92 @@ static const uint16_t ts_small_parse_table[] = { sym_regex, sym_regex_constant, sym_indirect_func_call, - [34672] = 20, - ACTIONS(39), 1, - sym_identifier, - ACTIONS(63), 1, - anon_sym_getline, - ACTIONS(79), 1, + [33354] = 6, + ACTIONS(684), 1, + anon_sym_LBRACK, + ACTIONS(1245), 1, + anon_sym_LPAREN2, + ACTIONS(1385), 1, + sym_concatenating_space, + ACTIONS(1253), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1383), 7, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + ACTIONS(642), 27, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_while, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_CARET, + anon_sym_STAR_STAR, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [33406] = 20, + ACTIONS(169), 1, aux_sym_number_token1, - ACTIONS(486), 1, - aux_sym_number_token2, - ACTIONS(488), 1, - anon_sym_DQUOTE, - ACTIONS(552), 1, + ACTIONS(270), 1, + sym_identifier, + ACTIONS(276), 1, anon_sym_LPAREN, - ACTIONS(554), 1, + ACTIONS(288), 1, + anon_sym_getline, + ACTIONS(294), 1, anon_sym_SLASH, - ACTIONS(556), 1, + ACTIONS(298), 1, anon_sym_BANG, - ACTIONS(560), 1, + ACTIONS(302), 1, anon_sym_DOLLAR, - ACTIONS(562), 1, + ACTIONS(304), 1, anon_sym_AT, - STATE(592), 1, + ACTIONS(306), 1, + aux_sym_number_token2, + ACTIONS(308), 1, + anon_sym_DQUOTE, + STATE(717), 1, + aux_sym_exp_list_repeat1, + STATE(720), 1, sym_ns_qualified_name, - STATE(603), 1, + STATE(991), 1, sym_array_ref, - STATE(619), 1, + STATE(1194), 1, sym_field_ref, - STATE(713), 1, - aux_sym_exp_list_repeat1, - STATE(1309), 1, + STATE(1385), 1, sym__binary_in, - STATE(2063), 1, + STATE(1956), 1, sym_namespace, - ACTIONS(71), 2, + ACTIONS(296), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(558), 2, + ACTIONS(300), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1354), 9, + STATE(1476), 9, sym_ternary_exp, sym_binary_exp, sym_unary_exp, @@ -54661,7 +54010,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_string, sym_func_call, - STATE(1407), 10, + STATE(1529), 10, sym__getline_exp, sym_getline_input, sym_getline_file, @@ -54672,46 +54021,46 @@ static const uint16_t ts_small_parse_table[] = { sym_regex, sym_regex_constant, sym_indirect_func_call, - [34752] = 20, - ACTIONS(298), 1, + [33486] = 20, + ACTIONS(39), 1, sym_identifier, - ACTIONS(304), 1, + ACTIONS(63), 1, + anon_sym_getline, + ACTIONS(79), 1, + aux_sym_number_token1, + ACTIONS(312), 1, anon_sym_LPAREN, ACTIONS(318), 1, - anon_sym_getline, - ACTIONS(324), 1, anon_sym_SLASH, - ACTIONS(328), 1, + ACTIONS(320), 1, anon_sym_BANG, - ACTIONS(332), 1, + ACTIONS(324), 1, anon_sym_DOLLAR, - ACTIONS(334), 1, + ACTIONS(326), 1, anon_sym_AT, - ACTIONS(336), 1, - aux_sym_number_token1, - ACTIONS(338), 1, + ACTIONS(328), 1, aux_sym_number_token2, - ACTIONS(340), 1, + ACTIONS(330), 1, anon_sym_DQUOTE, - STATE(196), 1, + STATE(590), 1, sym_ns_qualified_name, - STATE(240), 1, + STATE(601), 1, sym_array_ref, - STATE(256), 1, + STATE(632), 1, sym_field_ref, - STATE(369), 1, - sym__binary_in, - STATE(713), 1, + STATE(717), 1, aux_sym_exp_list_repeat1, - STATE(2063), 1, + STATE(1305), 1, + sym__binary_in, + STATE(2068), 1, sym_namespace, - ACTIONS(326), 2, + ACTIONS(71), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(330), 2, + ACTIONS(322), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(375), 9, + STATE(1371), 9, sym_ternary_exp, sym_binary_exp, sym_unary_exp, @@ -54721,7 +54070,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_string, sym_func_call, - STATE(412), 10, + STATE(1424), 10, sym__getline_exp, sym_getline_input, sym_getline_file, @@ -54732,46 +54081,46 @@ static const uint16_t ts_small_parse_table[] = { sym_regex, sym_regex_constant, sym_indirect_func_call, - [34832] = 20, - ACTIONS(127), 1, + [33566] = 20, + ACTIONS(1285), 1, sym_identifier, - ACTIONS(131), 1, + ACTIONS(1287), 1, anon_sym_LPAREN, - ACTIONS(147), 1, + ACTIONS(1289), 1, anon_sym_getline, - ACTIONS(153), 1, + ACTIONS(1291), 1, anon_sym_SLASH, - ACTIONS(157), 1, + ACTIONS(1295), 1, anon_sym_BANG, - ACTIONS(161), 1, + ACTIONS(1299), 1, anon_sym_DOLLAR, - ACTIONS(163), 1, + ACTIONS(1301), 1, anon_sym_AT, - ACTIONS(165), 1, + ACTIONS(1303), 1, aux_sym_number_token1, - ACTIONS(167), 1, + ACTIONS(1305), 1, aux_sym_number_token2, - ACTIONS(169), 1, + ACTIONS(1307), 1, anon_sym_DQUOTE, - STATE(221), 1, + ACTIONS(1449), 1, + anon_sym_SEMI, + STATE(1093), 1, sym_ns_qualified_name, - STATE(253), 1, + STATE(1142), 1, sym_array_ref, - STATE(272), 1, + STATE(1251), 1, sym_field_ref, - STATE(446), 1, + STATE(1510), 1, sym__binary_in, - STATE(713), 1, - aux_sym_exp_list_repeat1, - STATE(1955), 1, + STATE(2080), 1, sym_namespace, - ACTIONS(155), 2, + ACTIONS(1293), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(159), 2, + ACTIONS(1297), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(447), 9, + STATE(1505), 9, sym_ternary_exp, sym_binary_exp, sym_unary_exp, @@ -54781,7 +54130,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_string, sym_func_call, - STATE(466), 10, + STATE(1627), 10, sym__getline_exp, sym_getline_input, sym_getline_file, @@ -54792,90 +54141,46 @@ static const uint16_t ts_small_parse_table[] = { sym_regex, sym_regex_constant, sym_indirect_func_call, - [34912] = 4, - ACTIONS(1491), 1, - sym__if_else_separator, - ACTIONS(1487), 2, - anon_sym_GT, - anon_sym_GT_GT, - ACTIONS(1489), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(1485), 34, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_getline, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [34960] = 20, - ACTIONS(1269), 1, + [33646] = 20, + ACTIONS(1285), 1, sym_identifier, - ACTIONS(1271), 1, + ACTIONS(1287), 1, anon_sym_LPAREN, - ACTIONS(1273), 1, + ACTIONS(1289), 1, anon_sym_getline, - ACTIONS(1275), 1, + ACTIONS(1291), 1, anon_sym_SLASH, - ACTIONS(1279), 1, + ACTIONS(1295), 1, anon_sym_BANG, - ACTIONS(1283), 1, + ACTIONS(1299), 1, anon_sym_DOLLAR, - ACTIONS(1285), 1, + ACTIONS(1301), 1, anon_sym_AT, - ACTIONS(1287), 1, + ACTIONS(1303), 1, aux_sym_number_token1, - ACTIONS(1289), 1, + ACTIONS(1305), 1, aux_sym_number_token2, - ACTIONS(1291), 1, + ACTIONS(1307), 1, anon_sym_DQUOTE, - ACTIONS(1493), 1, + ACTIONS(1451), 1, anon_sym_RPAREN, - STATE(1067), 1, + STATE(1093), 1, sym_ns_qualified_name, - STATE(1137), 1, + STATE(1142), 1, sym_array_ref, - STATE(1231), 1, + STATE(1251), 1, sym_field_ref, - STATE(1502), 1, + STATE(1510), 1, sym__binary_in, - STATE(2075), 1, + STATE(2080), 1, sym_namespace, - ACTIONS(1277), 2, + ACTIONS(1293), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1281), 2, + ACTIONS(1297), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1500), 9, + STATE(1505), 9, sym_ternary_exp, sym_binary_exp, sym_unary_exp, @@ -54885,7 +54190,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_string, sym_func_call, - STATE(1618), 10, + STATE(1620), 10, sym__getline_exp, sym_getline_input, sym_getline_file, @@ -54896,134 +54201,48 @@ static const uint16_t ts_small_parse_table[] = { sym_regex, sym_regex_constant, sym_indirect_func_call, - [35040] = 4, + [33726] = 10, ACTIONS(650), 1, - anon_sym_LBRACK, - ACTIONS(1367), 1, - anon_sym_LT, - ACTIONS(680), 2, - sym_concatenating_space, - sym__if_else_separator, - ACTIONS(678), 35, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_while, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + anon_sym_COLON_COLON, + ACTIONS(654), 1, + anon_sym_COLON, + ACTIONS(696), 1, anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - [35088] = 6, - ACTIONS(658), 1, - sym_concatenating_space, - ACTIONS(688), 1, + ACTIONS(908), 1, anon_sym_LBRACK, - ACTIONS(1241), 1, + ACTIONS(1453), 1, anon_sym_LPAREN2, - ACTIONS(1255), 2, + ACTIONS(906), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1359), 7, - anon_sym_EQ, + ACTIONS(658), 5, + sym_concatenating_space, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, + ACTIONS(983), 6, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_CARET_EQ, - ACTIONS(644), 27, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_while, - anon_sym_in, + ACTIONS(642), 9, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, anon_sym_CARET, - anon_sym_STAR_STAR, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_PLUS, anon_sym_DASH, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [35140] = 6, - ACTIONS(688), 1, - anon_sym_LBRACK, - ACTIONS(1241), 1, - anon_sym_LPAREN2, - ACTIONS(1377), 1, - sym_concatenating_space, - ACTIONS(1247), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1375), 7, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - ACTIONS(644), 27, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_while, + ACTIONS(652), 12, anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, anon_sym_PIPE_AMP, anon_sym_QMARK, - anon_sym_CARET, anon_sym_STAR_STAR, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, @@ -55032,106 +54251,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [35192] = 20, - ACTIONS(123), 1, - aux_sym_number_token1, - ACTIONS(286), 1, - aux_sym_number_token2, - ACTIONS(288), 1, - anon_sym_DQUOTE, - ACTIONS(362), 1, - sym_identifier, - ACTIONS(366), 1, - anon_sym_LPAREN, - ACTIONS(376), 1, - anon_sym_getline, - ACTIONS(382), 1, - anon_sym_SLASH, - ACTIONS(386), 1, - anon_sym_BANG, - ACTIONS(390), 1, - anon_sym_DOLLAR, - ACTIONS(392), 1, - anon_sym_AT, - STATE(713), 1, - aux_sym_exp_list_repeat1, - STATE(744), 1, - sym_ns_qualified_name, - STATE(1022), 1, - sym_array_ref, - STATE(1121), 1, - sym_field_ref, - STATE(1373), 1, - sym__binary_in, - STATE(1955), 1, - sym_namespace, - ACTIONS(384), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(388), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1470), 9, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_string_concat, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - STATE(1538), 10, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_regex, - sym_regex_constant, - sym_indirect_func_call, - [35272] = 20, - ACTIONS(1269), 1, - sym_identifier, - ACTIONS(1271), 1, + [33786] = 20, + ACTIONS(1287), 1, anon_sym_LPAREN, - ACTIONS(1273), 1, + ACTIONS(1289), 1, anon_sym_getline, - ACTIONS(1275), 1, + ACTIONS(1291), 1, anon_sym_SLASH, - ACTIONS(1279), 1, + ACTIONS(1295), 1, anon_sym_BANG, - ACTIONS(1283), 1, + ACTIONS(1299), 1, anon_sym_DOLLAR, - ACTIONS(1285), 1, + ACTIONS(1301), 1, anon_sym_AT, - ACTIONS(1287), 1, + ACTIONS(1303), 1, aux_sym_number_token1, - ACTIONS(1289), 1, + ACTIONS(1305), 1, aux_sym_number_token2, - ACTIONS(1291), 1, + ACTIONS(1307), 1, anon_sym_DQUOTE, - ACTIONS(1495), 1, - anon_sym_RPAREN, - STATE(1067), 1, - sym_ns_qualified_name, - STATE(1137), 1, + ACTIONS(1455), 1, + sym_identifier, + ACTIONS(1457), 1, + anon_sym_SEMI, + STATE(1142), 1, sym_array_ref, - STATE(1231), 1, + STATE(1251), 1, sym_field_ref, - STATE(1502), 1, + STATE(1292), 1, + sym_ns_qualified_name, + STATE(1510), 1, sym__binary_in, - STATE(2075), 1, + STATE(2080), 1, sym_namespace, - ACTIONS(1277), 2, + ACTIONS(1293), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1281), 2, + ACTIONS(1297), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1500), 9, + STATE(1505), 9, sym_ternary_exp, sym_binary_exp, sym_unary_exp, @@ -55141,7 +54300,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_string, sym_func_call, - STATE(1610), 10, + STATE(1623), 10, sym__getline_exp, sym_getline_input, sym_getline_file, @@ -55152,46 +54311,46 @@ static const uint16_t ts_small_parse_table[] = { sym_regex, sym_regex_constant, sym_indirect_func_call, - [35352] = 20, - ACTIONS(1269), 1, + [33866] = 20, + ACTIONS(1285), 1, sym_identifier, - ACTIONS(1271), 1, + ACTIONS(1287), 1, anon_sym_LPAREN, - ACTIONS(1273), 1, + ACTIONS(1289), 1, anon_sym_getline, - ACTIONS(1275), 1, + ACTIONS(1291), 1, anon_sym_SLASH, - ACTIONS(1279), 1, + ACTIONS(1295), 1, anon_sym_BANG, - ACTIONS(1283), 1, + ACTIONS(1299), 1, anon_sym_DOLLAR, - ACTIONS(1285), 1, + ACTIONS(1301), 1, anon_sym_AT, - ACTIONS(1287), 1, + ACTIONS(1303), 1, aux_sym_number_token1, - ACTIONS(1289), 1, + ACTIONS(1305), 1, aux_sym_number_token2, - ACTIONS(1291), 1, + ACTIONS(1307), 1, anon_sym_DQUOTE, - ACTIONS(1497), 1, - anon_sym_RPAREN, - STATE(1067), 1, + ACTIONS(1459), 1, + anon_sym_SEMI, + STATE(1093), 1, sym_ns_qualified_name, - STATE(1137), 1, + STATE(1142), 1, sym_array_ref, - STATE(1231), 1, + STATE(1251), 1, sym_field_ref, - STATE(1502), 1, + STATE(1510), 1, sym__binary_in, - STATE(2075), 1, + STATE(2080), 1, sym_namespace, - ACTIONS(1277), 2, + ACTIONS(1293), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1281), 2, + ACTIONS(1297), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1500), 9, + STATE(1505), 9, sym_ternary_exp, sym_binary_exp, sym_unary_exp, @@ -55201,7 +54360,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_string, sym_func_call, - STATE(1619), 10, + STATE(1615), 10, sym__getline_exp, sym_getline_input, sym_getline_file, @@ -55212,132 +54371,46 @@ static const uint16_t ts_small_parse_table[] = { sym_regex, sym_regex_constant, sym_indirect_func_call, - [35432] = 3, - ACTIONS(828), 1, - sym_regex_flags, - ACTIONS(830), 2, - sym_concatenating_space, - sym__if_else_separator, - ACTIONS(826), 36, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_while, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - [35478] = 3, - ACTIONS(834), 1, - sym_regex_flags, - ACTIONS(836), 2, - sym_concatenating_space, - sym__if_else_separator, - ACTIONS(832), 36, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_while, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - [35524] = 20, - ACTIONS(1269), 1, + [33946] = 20, + ACTIONS(1285), 1, sym_identifier, - ACTIONS(1271), 1, + ACTIONS(1287), 1, anon_sym_LPAREN, - ACTIONS(1273), 1, + ACTIONS(1289), 1, anon_sym_getline, - ACTIONS(1275), 1, + ACTIONS(1291), 1, anon_sym_SLASH, - ACTIONS(1279), 1, + ACTIONS(1295), 1, anon_sym_BANG, - ACTIONS(1283), 1, + ACTIONS(1299), 1, anon_sym_DOLLAR, - ACTIONS(1285), 1, + ACTIONS(1301), 1, anon_sym_AT, - ACTIONS(1287), 1, + ACTIONS(1303), 1, aux_sym_number_token1, - ACTIONS(1289), 1, + ACTIONS(1305), 1, aux_sym_number_token2, - ACTIONS(1291), 1, + ACTIONS(1307), 1, anon_sym_DQUOTE, - ACTIONS(1499), 1, + ACTIONS(1461), 1, anon_sym_SEMI, - STATE(1067), 1, + STATE(1093), 1, sym_ns_qualified_name, - STATE(1137), 1, + STATE(1142), 1, sym_array_ref, - STATE(1231), 1, + STATE(1251), 1, sym_field_ref, - STATE(1502), 1, + STATE(1510), 1, sym__binary_in, - STATE(2075), 1, + STATE(2080), 1, sym_namespace, - ACTIONS(1277), 2, + ACTIONS(1293), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1281), 2, + ACTIONS(1297), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1500), 9, + STATE(1505), 9, sym_ternary_exp, sym_binary_exp, sym_unary_exp, @@ -55347,7 +54420,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_string, sym_func_call, - STATE(1627), 10, + STATE(1608), 10, sym__getline_exp, sym_getline_input, sym_getline_file, @@ -55358,46 +54431,46 @@ static const uint16_t ts_small_parse_table[] = { sym_regex, sym_regex_constant, sym_indirect_func_call, - [35604] = 20, - ACTIONS(1269), 1, + [34026] = 20, + ACTIONS(1285), 1, sym_identifier, - ACTIONS(1271), 1, + ACTIONS(1287), 1, anon_sym_LPAREN, - ACTIONS(1273), 1, + ACTIONS(1289), 1, anon_sym_getline, - ACTIONS(1275), 1, + ACTIONS(1291), 1, anon_sym_SLASH, - ACTIONS(1279), 1, + ACTIONS(1295), 1, anon_sym_BANG, - ACTIONS(1283), 1, + ACTIONS(1299), 1, anon_sym_DOLLAR, - ACTIONS(1285), 1, + ACTIONS(1301), 1, anon_sym_AT, - ACTIONS(1287), 1, + ACTIONS(1303), 1, aux_sym_number_token1, - ACTIONS(1289), 1, + ACTIONS(1305), 1, aux_sym_number_token2, - ACTIONS(1291), 1, + ACTIONS(1307), 1, anon_sym_DQUOTE, - ACTIONS(1501), 1, - anon_sym_SEMI, - STATE(1067), 1, + ACTIONS(1463), 1, + anon_sym_RPAREN, + STATE(1093), 1, sym_ns_qualified_name, - STATE(1137), 1, + STATE(1142), 1, sym_array_ref, - STATE(1231), 1, + STATE(1251), 1, sym_field_ref, - STATE(1502), 1, + STATE(1510), 1, sym__binary_in, - STATE(2075), 1, + STATE(2080), 1, sym_namespace, - ACTIONS(1277), 2, + ACTIONS(1293), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1281), 2, + ACTIONS(1297), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1500), 9, + STATE(1505), 9, sym_ternary_exp, sym_binary_exp, sym_unary_exp, @@ -55407,7 +54480,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_string, sym_func_call, - STATE(1614), 10, + STATE(1663), 10, sym__getline_exp, sym_getline_input, sym_getline_file, @@ -55418,46 +54491,46 @@ static const uint16_t ts_small_parse_table[] = { sym_regex, sym_regex_constant, sym_indirect_func_call, - [35684] = 20, - ACTIONS(1269), 1, + [34106] = 20, + ACTIONS(1285), 1, sym_identifier, - ACTIONS(1271), 1, + ACTIONS(1287), 1, anon_sym_LPAREN, - ACTIONS(1273), 1, + ACTIONS(1289), 1, anon_sym_getline, - ACTIONS(1275), 1, + ACTIONS(1291), 1, anon_sym_SLASH, - ACTIONS(1279), 1, + ACTIONS(1295), 1, anon_sym_BANG, - ACTIONS(1283), 1, + ACTIONS(1299), 1, anon_sym_DOLLAR, - ACTIONS(1285), 1, + ACTIONS(1301), 1, anon_sym_AT, - ACTIONS(1287), 1, + ACTIONS(1303), 1, aux_sym_number_token1, - ACTIONS(1289), 1, + ACTIONS(1305), 1, aux_sym_number_token2, - ACTIONS(1291), 1, + ACTIONS(1307), 1, anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_RPAREN, - STATE(1067), 1, + ACTIONS(1465), 1, + anon_sym_SEMI, + STATE(1093), 1, sym_ns_qualified_name, - STATE(1137), 1, + STATE(1142), 1, sym_array_ref, - STATE(1231), 1, + STATE(1251), 1, sym_field_ref, - STATE(1502), 1, + STATE(1510), 1, sym__binary_in, - STATE(2075), 1, + STATE(2080), 1, sym_namespace, - ACTIONS(1277), 2, + ACTIONS(1293), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1281), 2, + ACTIONS(1297), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1500), 9, + STATE(1505), 9, sym_ternary_exp, sym_binary_exp, sym_unary_exp, @@ -55467,7 +54540,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_string, sym_func_call, - STATE(1612), 10, + STATE(1610), 10, sym__getline_exp, sym_getline_input, sym_getline_file, @@ -55478,14 +54551,14 @@ static const uint16_t ts_small_parse_table[] = { sym_regex, sym_regex_constant, sym_indirect_func_call, - [35764] = 4, - ACTIONS(652), 1, + [34186] = 4, + ACTIONS(650), 1, anon_sym_COLON_COLON, - ACTIONS(999), 1, + ACTIONS(1009), 1, anon_sym_LBRACK, - ACTIONS(1507), 1, + ACTIONS(1469), 1, sym__if_else_separator, - ACTIONS(1505), 36, + ACTIONS(1467), 36, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, @@ -55522,46 +54595,94 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [35812] = 20, - ACTIONS(1269), 1, + [34234] = 8, + ACTIONS(650), 1, + anon_sym_COLON_COLON, + ACTIONS(908), 1, + anon_sym_LBRACK, + ACTIONS(1453), 1, + anon_sym_LPAREN2, + ACTIONS(1473), 1, + anon_sym_EQ, + ACTIONS(1471), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1475), 6, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + ACTIONS(642), 10, + anon_sym_COLON, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(652), 17, + sym_concatenating_space, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_in, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_RBRACK, + [34290] = 20, + ACTIONS(1285), 1, sym_identifier, - ACTIONS(1271), 1, + ACTIONS(1287), 1, anon_sym_LPAREN, - ACTIONS(1273), 1, + ACTIONS(1289), 1, anon_sym_getline, - ACTIONS(1275), 1, + ACTIONS(1291), 1, anon_sym_SLASH, - ACTIONS(1279), 1, + ACTIONS(1295), 1, anon_sym_BANG, - ACTIONS(1283), 1, + ACTIONS(1299), 1, anon_sym_DOLLAR, - ACTIONS(1285), 1, + ACTIONS(1301), 1, anon_sym_AT, - ACTIONS(1287), 1, + ACTIONS(1303), 1, aux_sym_number_token1, - ACTIONS(1289), 1, + ACTIONS(1305), 1, aux_sym_number_token2, - ACTIONS(1291), 1, + ACTIONS(1307), 1, anon_sym_DQUOTE, - ACTIONS(1509), 1, - anon_sym_SEMI, - STATE(1067), 1, + ACTIONS(1477), 1, + anon_sym_RPAREN, + STATE(1093), 1, sym_ns_qualified_name, - STATE(1137), 1, + STATE(1142), 1, sym_array_ref, - STATE(1231), 1, + STATE(1251), 1, sym_field_ref, - STATE(1502), 1, + STATE(1510), 1, sym__binary_in, - STATE(2075), 1, + STATE(2080), 1, sym_namespace, - ACTIONS(1277), 2, + ACTIONS(1293), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1281), 2, + ACTIONS(1297), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1500), 9, + STATE(1505), 9, sym_ternary_exp, sym_binary_exp, sym_unary_exp, @@ -55571,7 +54692,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_string, sym_func_call, - STATE(1609), 10, + STATE(1613), 10, sym__getline_exp, sym_getline_input, sym_getline_file, @@ -55582,46 +54703,46 @@ static const uint16_t ts_small_parse_table[] = { sym_regex, sym_regex_constant, sym_indirect_func_call, - [35892] = 20, - ACTIONS(1269), 1, + [34370] = 20, + ACTIONS(1285), 1, sym_identifier, - ACTIONS(1271), 1, + ACTIONS(1287), 1, anon_sym_LPAREN, - ACTIONS(1273), 1, + ACTIONS(1289), 1, anon_sym_getline, - ACTIONS(1275), 1, + ACTIONS(1291), 1, anon_sym_SLASH, - ACTIONS(1279), 1, + ACTIONS(1295), 1, anon_sym_BANG, - ACTIONS(1283), 1, + ACTIONS(1299), 1, anon_sym_DOLLAR, - ACTIONS(1285), 1, + ACTIONS(1301), 1, anon_sym_AT, - ACTIONS(1287), 1, + ACTIONS(1303), 1, aux_sym_number_token1, - ACTIONS(1289), 1, + ACTIONS(1305), 1, aux_sym_number_token2, - ACTIONS(1291), 1, + ACTIONS(1307), 1, anon_sym_DQUOTE, - ACTIONS(1511), 1, + ACTIONS(1479), 1, anon_sym_RPAREN, - STATE(1067), 1, + STATE(1093), 1, sym_ns_qualified_name, - STATE(1137), 1, + STATE(1142), 1, sym_array_ref, - STATE(1231), 1, + STATE(1251), 1, sym_field_ref, - STATE(1502), 1, + STATE(1510), 1, sym__binary_in, - STATE(2075), 1, + STATE(2080), 1, sym_namespace, - ACTIONS(1277), 2, + ACTIONS(1293), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1281), 2, + ACTIONS(1297), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1500), 9, + STATE(1505), 9, sym_ternary_exp, sym_binary_exp, sym_unary_exp, @@ -55631,7 +54752,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_string, sym_func_call, - STATE(1607), 10, + STATE(1612), 10, sym__getline_exp, sym_getline_input, sym_getline_file, @@ -55642,46 +54763,106 @@ static const uint16_t ts_small_parse_table[] = { sym_regex, sym_regex_constant, sym_indirect_func_call, - [35972] = 20, - ACTIONS(1269), 1, + [34450] = 20, + ACTIONS(79), 1, + aux_sym_number_token1, + ACTIONS(328), 1, + aux_sym_number_token2, + ACTIONS(330), 1, + anon_sym_DQUOTE, + ACTIONS(336), 1, sym_identifier, - ACTIONS(1271), 1, + ACTIONS(342), 1, anon_sym_LPAREN, - ACTIONS(1273), 1, + ACTIONS(354), 1, anon_sym_getline, - ACTIONS(1275), 1, + ACTIONS(360), 1, anon_sym_SLASH, - ACTIONS(1279), 1, + ACTIONS(364), 1, anon_sym_BANG, - ACTIONS(1283), 1, + ACTIONS(368), 1, anon_sym_DOLLAR, - ACTIONS(1285), 1, + ACTIONS(370), 1, anon_sym_AT, + STATE(672), 1, + sym_ns_qualified_name, + STATE(717), 1, + aux_sym_exp_list_repeat1, + STATE(740), 1, + sym_array_ref, + STATE(950), 1, + sym_field_ref, + STATE(1305), 1, + sym__binary_in, + STATE(2068), 1, + sym_namespace, + ACTIONS(362), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(366), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1461), 9, + sym_ternary_exp, + sym_binary_exp, + sym_unary_exp, + sym_string_concat, + sym_grouping, + sym__primitive, + sym_number, + sym_string, + sym_func_call, + STATE(1481), 10, + sym__getline_exp, + sym_getline_input, + sym_getline_file, + sym__exp, + sym_update_exp, + sym_assignment_exp, + sym_piped_io_exp, + sym_regex, + sym_regex_constant, + sym_indirect_func_call, + [34530] = 20, + ACTIONS(1285), 1, + sym_identifier, ACTIONS(1287), 1, - aux_sym_number_token1, + anon_sym_LPAREN, ACTIONS(1289), 1, - aux_sym_number_token2, + anon_sym_getline, ACTIONS(1291), 1, + anon_sym_SLASH, + ACTIONS(1295), 1, + anon_sym_BANG, + ACTIONS(1299), 1, + anon_sym_DOLLAR, + ACTIONS(1301), 1, + anon_sym_AT, + ACTIONS(1303), 1, + aux_sym_number_token1, + ACTIONS(1305), 1, + aux_sym_number_token2, + ACTIONS(1307), 1, anon_sym_DQUOTE, - ACTIONS(1513), 1, + ACTIONS(1481), 1, anon_sym_RPAREN, - STATE(1067), 1, + STATE(1093), 1, sym_ns_qualified_name, - STATE(1137), 1, + STATE(1142), 1, sym_array_ref, - STATE(1231), 1, + STATE(1251), 1, sym_field_ref, - STATE(1502), 1, + STATE(1510), 1, sym__binary_in, - STATE(2075), 1, + STATE(2080), 1, sym_namespace, - ACTIONS(1277), 2, + ACTIONS(1293), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1281), 2, + ACTIONS(1297), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1500), 9, + STATE(1505), 9, sym_ternary_exp, sym_binary_exp, sym_unary_exp, @@ -55691,7 +54872,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_string, sym_func_call, - STATE(1606), 10, + STATE(1617), 10, sym__getline_exp, sym_getline_input, sym_getline_file, @@ -55702,46 +54883,46 @@ static const uint16_t ts_small_parse_table[] = { sym_regex, sym_regex_constant, sym_indirect_func_call, - [36052] = 20, - ACTIONS(1269), 1, + [34610] = 20, + ACTIONS(1285), 1, sym_identifier, - ACTIONS(1271), 1, + ACTIONS(1287), 1, anon_sym_LPAREN, - ACTIONS(1273), 1, + ACTIONS(1289), 1, anon_sym_getline, - ACTIONS(1275), 1, + ACTIONS(1291), 1, anon_sym_SLASH, - ACTIONS(1279), 1, + ACTIONS(1295), 1, anon_sym_BANG, - ACTIONS(1283), 1, + ACTIONS(1299), 1, anon_sym_DOLLAR, - ACTIONS(1285), 1, + ACTIONS(1301), 1, anon_sym_AT, - ACTIONS(1287), 1, + ACTIONS(1303), 1, aux_sym_number_token1, - ACTIONS(1289), 1, + ACTIONS(1305), 1, aux_sym_number_token2, - ACTIONS(1291), 1, + ACTIONS(1307), 1, anon_sym_DQUOTE, - ACTIONS(1515), 1, + ACTIONS(1483), 1, anon_sym_RPAREN, - STATE(1067), 1, + STATE(1093), 1, sym_ns_qualified_name, - STATE(1137), 1, + STATE(1142), 1, sym_array_ref, - STATE(1231), 1, + STATE(1251), 1, sym_field_ref, - STATE(1502), 1, + STATE(1510), 1, sym__binary_in, - STATE(2075), 1, + STATE(2080), 1, sym_namespace, - ACTIONS(1277), 2, + ACTIONS(1293), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1281), 2, + ACTIONS(1297), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1500), 9, + STATE(1505), 9, sym_ternary_exp, sym_binary_exp, sym_unary_exp, @@ -55751,7 +54932,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_string, sym_func_call, - STATE(1605), 10, + STATE(1611), 10, sym__getline_exp, sym_getline_input, sym_getline_file, @@ -55762,16 +54943,17 @@ static const uint16_t ts_small_parse_table[] = { sym_regex, sym_regex_constant, sym_indirect_func_call, - [36132] = 5, - ACTIONS(650), 1, - anon_sym_LBRACK, - ACTIONS(658), 2, + [34690] = 6, + ACTIONS(652), 1, sym_concatenating_space, - sym__if_else_separator, - ACTIONS(1237), 2, + ACTIONS(684), 1, + anon_sym_LBRACK, + ACTIONS(1245), 1, + anon_sym_LPAREN2, + ACTIONS(1249), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1337), 7, + ACTIONS(1377), 7, anon_sym_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -55779,7 +54961,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_CARET_EQ, - ACTIONS(644), 27, + ACTIONS(642), 27, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -55807,22 +54989,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [36182] = 5, - ACTIONS(652), 1, + [34742] = 9, + ACTIONS(650), 1, anon_sym_COLON_COLON, - ACTIONS(680), 1, - sym_concatenating_space, - ACTIONS(688), 1, + ACTIONS(696), 1, + anon_sym_EQ, + ACTIONS(908), 1, anon_sym_LBRACK, - ACTIONS(1517), 1, + ACTIONS(1453), 1, + anon_sym_LPAREN2, + ACTIONS(1485), 1, + sym_concatenating_space, + ACTIONS(906), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(983), 6, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + ACTIONS(642), 10, + anon_sym_COLON, anon_sym_LT, - ACTIONS(678), 35, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(652), 16, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_in, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_RBRACK, + [34800] = 6, + ACTIONS(648), 1, + anon_sym_LBRACK, + ACTIONS(652), 1, + sym__if_else_separator, + ACTIONS(1311), 1, + sym_concatenating_space, + ACTIONS(1227), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1309), 7, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + ACTIONS(642), 27, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, anon_sym_while, anon_sym_in, + anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, anon_sym_PIPE, @@ -55843,55 +55084,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - [36232] = 20, - ACTIONS(1269), 1, + [34852] = 20, + ACTIONS(1285), 1, sym_identifier, - ACTIONS(1271), 1, + ACTIONS(1287), 1, anon_sym_LPAREN, - ACTIONS(1273), 1, + ACTIONS(1289), 1, anon_sym_getline, - ACTIONS(1275), 1, + ACTIONS(1291), 1, anon_sym_SLASH, - ACTIONS(1279), 1, + ACTIONS(1295), 1, anon_sym_BANG, - ACTIONS(1283), 1, + ACTIONS(1299), 1, anon_sym_DOLLAR, - ACTIONS(1285), 1, + ACTIONS(1301), 1, anon_sym_AT, - ACTIONS(1287), 1, + ACTIONS(1303), 1, aux_sym_number_token1, - ACTIONS(1289), 1, + ACTIONS(1305), 1, aux_sym_number_token2, - ACTIONS(1291), 1, + ACTIONS(1307), 1, anon_sym_DQUOTE, - ACTIONS(1519), 1, + ACTIONS(1487), 1, anon_sym_RPAREN, - STATE(1067), 1, + STATE(1093), 1, sym_ns_qualified_name, - STATE(1137), 1, + STATE(1142), 1, sym_array_ref, - STATE(1231), 1, + STATE(1251), 1, sym_field_ref, - STATE(1502), 1, + STATE(1510), 1, sym__binary_in, - STATE(2075), 1, + STATE(2080), 1, sym_namespace, - ACTIONS(1277), 2, + ACTIONS(1293), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1281), 2, + ACTIONS(1297), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1500), 9, + STATE(1505), 9, sym_ternary_exp, sym_binary_exp, sym_unary_exp, @@ -55901,7 +55133,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_string, sym_func_call, - STATE(1603), 10, + STATE(1616), 10, sym__getline_exp, sym_getline_input, sym_getline_file, @@ -55912,166 +55144,91 @@ static const uint16_t ts_small_parse_table[] = { sym_regex, sym_regex_constant, sym_indirect_func_call, - [36312] = 20, - ACTIONS(1269), 1, - sym_identifier, - ACTIONS(1271), 1, - anon_sym_LPAREN, - ACTIONS(1273), 1, - anon_sym_getline, - ACTIONS(1275), 1, - anon_sym_SLASH, - ACTIONS(1279), 1, - anon_sym_BANG, - ACTIONS(1283), 1, - anon_sym_DOLLAR, - ACTIONS(1285), 1, - anon_sym_AT, - ACTIONS(1287), 1, - aux_sym_number_token1, - ACTIONS(1289), 1, - aux_sym_number_token2, - ACTIONS(1291), 1, - anon_sym_DQUOTE, - STATE(713), 1, - aux_sym_exp_list_repeat1, - STATE(1067), 1, - sym_ns_qualified_name, - STATE(1137), 1, - sym_array_ref, - STATE(1231), 1, - sym_field_ref, - STATE(1502), 1, - sym__binary_in, - STATE(2075), 1, - sym_namespace, - ACTIONS(1277), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1281), 2, + [34932] = 5, + ACTIONS(648), 1, + anon_sym_LBRACK, + ACTIONS(652), 2, + sym_concatenating_space, + sym__if_else_separator, + ACTIONS(1241), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1500), 9, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_string_concat, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - STATE(1572), 10, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_regex, - sym_regex_constant, - sym_indirect_func_call, - [36392] = 20, - ACTIONS(1271), 1, - anon_sym_LPAREN, - ACTIONS(1273), 1, - anon_sym_getline, - ACTIONS(1275), 1, - anon_sym_SLASH, - ACTIONS(1279), 1, - anon_sym_BANG, - ACTIONS(1283), 1, - anon_sym_DOLLAR, - ACTIONS(1285), 1, - anon_sym_AT, - ACTIONS(1287), 1, - aux_sym_number_token1, - ACTIONS(1289), 1, - aux_sym_number_token2, - ACTIONS(1291), 1, - anon_sym_DQUOTE, - ACTIONS(1521), 1, - sym_identifier, - ACTIONS(1523), 1, + ACTIONS(1337), 7, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + ACTIONS(642), 27, + anon_sym_COMMA, anon_sym_SEMI, - STATE(1137), 1, - sym_array_ref, - STATE(1231), 1, - sym_field_ref, - STATE(1291), 1, - sym_ns_qualified_name, - STATE(1502), 1, - sym__binary_in, - STATE(2075), 1, - sym_namespace, - ACTIONS(1277), 2, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_while, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_CARET, + anon_sym_STAR_STAR, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1281), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1500), 9, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_string_concat, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - STATE(1642), 10, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_regex, - sym_regex_constant, - sym_indirect_func_call, - [36472] = 20, - ACTIONS(1269), 1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [34982] = 20, + ACTIONS(1285), 1, sym_identifier, - ACTIONS(1271), 1, + ACTIONS(1287), 1, anon_sym_LPAREN, - ACTIONS(1273), 1, + ACTIONS(1289), 1, anon_sym_getline, - ACTIONS(1275), 1, + ACTIONS(1291), 1, anon_sym_SLASH, - ACTIONS(1279), 1, + ACTIONS(1295), 1, anon_sym_BANG, - ACTIONS(1283), 1, + ACTIONS(1299), 1, anon_sym_DOLLAR, - ACTIONS(1285), 1, + ACTIONS(1301), 1, anon_sym_AT, - ACTIONS(1287), 1, + ACTIONS(1303), 1, aux_sym_number_token1, - ACTIONS(1289), 1, + ACTIONS(1305), 1, aux_sym_number_token2, - ACTIONS(1291), 1, + ACTIONS(1307), 1, anon_sym_DQUOTE, - ACTIONS(1525), 1, - anon_sym_RPAREN, - STATE(1067), 1, + ACTIONS(1489), 1, + anon_sym_SEMI, + STATE(1093), 1, sym_ns_qualified_name, - STATE(1137), 1, + STATE(1142), 1, sym_array_ref, - STATE(1231), 1, + STATE(1251), 1, sym_field_ref, - STATE(1502), 1, + STATE(1510), 1, sym__binary_in, - STATE(2075), 1, + STATE(2080), 1, sym_namespace, - ACTIONS(1277), 2, + ACTIONS(1293), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1281), 2, + ACTIONS(1297), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1500), 9, + STATE(1505), 9, sym_ternary_exp, sym_binary_exp, sym_unary_exp, @@ -56081,7 +55238,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_string, sym_func_call, - STATE(1633), 10, + STATE(1625), 10, sym__getline_exp, sym_getline_input, sym_getline_file, @@ -56092,46 +55249,46 @@ static const uint16_t ts_small_parse_table[] = { sym_regex, sym_regex_constant, sym_indirect_func_call, - [36552] = 20, - ACTIONS(1271), 1, + [35062] = 20, + ACTIONS(1285), 1, + sym_identifier, + ACTIONS(1287), 1, anon_sym_LPAREN, - ACTIONS(1273), 1, + ACTIONS(1289), 1, anon_sym_getline, - ACTIONS(1275), 1, + ACTIONS(1291), 1, anon_sym_SLASH, - ACTIONS(1279), 1, + ACTIONS(1295), 1, anon_sym_BANG, - ACTIONS(1283), 1, + ACTIONS(1299), 1, anon_sym_DOLLAR, - ACTIONS(1285), 1, + ACTIONS(1301), 1, anon_sym_AT, - ACTIONS(1287), 1, + ACTIONS(1303), 1, aux_sym_number_token1, - ACTIONS(1289), 1, + ACTIONS(1305), 1, aux_sym_number_token2, - ACTIONS(1291), 1, + ACTIONS(1307), 1, anon_sym_DQUOTE, - ACTIONS(1527), 1, - sym_identifier, - ACTIONS(1529), 1, + ACTIONS(1491), 1, anon_sym_SEMI, - STATE(1137), 1, + STATE(1093), 1, + sym_ns_qualified_name, + STATE(1142), 1, sym_array_ref, - STATE(1231), 1, + STATE(1251), 1, sym_field_ref, - STATE(1286), 1, - sym_ns_qualified_name, - STATE(1502), 1, + STATE(1510), 1, sym__binary_in, - STATE(2075), 1, + STATE(2080), 1, sym_namespace, - ACTIONS(1277), 2, + ACTIONS(1293), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1281), 2, + ACTIONS(1297), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1500), 9, + STATE(1505), 9, sym_ternary_exp, sym_binary_exp, sym_unary_exp, @@ -56141,7 +55298,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_string, sym_func_call, - STATE(1660), 10, + STATE(1635), 10, sym__getline_exp, sym_getline_input, sym_getline_file, @@ -56152,46 +55309,46 @@ static const uint16_t ts_small_parse_table[] = { sym_regex, sym_regex_constant, sym_indirect_func_call, - [36632] = 20, - ACTIONS(1269), 1, + [35142] = 20, + ACTIONS(1285), 1, sym_identifier, - ACTIONS(1271), 1, + ACTIONS(1287), 1, anon_sym_LPAREN, - ACTIONS(1273), 1, + ACTIONS(1289), 1, anon_sym_getline, - ACTIONS(1275), 1, + ACTIONS(1291), 1, anon_sym_SLASH, - ACTIONS(1279), 1, + ACTIONS(1295), 1, anon_sym_BANG, - ACTIONS(1283), 1, + ACTIONS(1299), 1, anon_sym_DOLLAR, - ACTIONS(1285), 1, + ACTIONS(1301), 1, anon_sym_AT, - ACTIONS(1287), 1, + ACTIONS(1303), 1, aux_sym_number_token1, - ACTIONS(1289), 1, + ACTIONS(1305), 1, aux_sym_number_token2, - ACTIONS(1291), 1, + ACTIONS(1307), 1, anon_sym_DQUOTE, - ACTIONS(1531), 1, - anon_sym_SEMI, - STATE(1067), 1, + ACTIONS(1493), 1, + anon_sym_RPAREN, + STATE(1093), 1, sym_ns_qualified_name, - STATE(1137), 1, + STATE(1142), 1, sym_array_ref, - STATE(1231), 1, + STATE(1251), 1, sym_field_ref, - STATE(1502), 1, + STATE(1510), 1, sym__binary_in, - STATE(2075), 1, + STATE(2080), 1, sym_namespace, - ACTIONS(1277), 2, + ACTIONS(1293), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1281), 2, + ACTIONS(1297), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1500), 9, + STATE(1505), 9, sym_ternary_exp, sym_binary_exp, sym_unary_exp, @@ -56201,7 +55358,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_string, sym_func_call, - STATE(1666), 10, + STATE(1664), 10, sym__getline_exp, sym_getline_input, sym_getline_file, @@ -56212,46 +55369,46 @@ static const uint16_t ts_small_parse_table[] = { sym_regex, sym_regex_constant, sym_indirect_func_call, - [36712] = 20, - ACTIONS(1269), 1, + [35222] = 20, + ACTIONS(1285), 1, sym_identifier, - ACTIONS(1271), 1, + ACTIONS(1287), 1, anon_sym_LPAREN, - ACTIONS(1273), 1, + ACTIONS(1289), 1, anon_sym_getline, - ACTIONS(1275), 1, + ACTIONS(1291), 1, anon_sym_SLASH, - ACTIONS(1279), 1, + ACTIONS(1295), 1, anon_sym_BANG, - ACTIONS(1283), 1, + ACTIONS(1299), 1, anon_sym_DOLLAR, - ACTIONS(1285), 1, + ACTIONS(1301), 1, anon_sym_AT, - ACTIONS(1287), 1, + ACTIONS(1303), 1, aux_sym_number_token1, - ACTIONS(1289), 1, + ACTIONS(1305), 1, aux_sym_number_token2, - ACTIONS(1291), 1, + ACTIONS(1307), 1, anon_sym_DQUOTE, - ACTIONS(1533), 1, - anon_sym_SEMI, - STATE(1067), 1, + ACTIONS(1495), 1, + anon_sym_RPAREN, + STATE(1093), 1, sym_ns_qualified_name, - STATE(1137), 1, + STATE(1142), 1, sym_array_ref, - STATE(1231), 1, + STATE(1251), 1, sym_field_ref, - STATE(1502), 1, + STATE(1510), 1, sym__binary_in, - STATE(2075), 1, + STATE(2080), 1, sym_namespace, - ACTIONS(1277), 2, + ACTIONS(1293), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1281), 2, + ACTIONS(1297), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1500), 9, + STATE(1505), 9, sym_ternary_exp, sym_binary_exp, sym_unary_exp, @@ -56261,7 +55418,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_string, sym_func_call, - STATE(1671), 10, + STATE(1668), 10, sym__getline_exp, sym_getline_input, sym_getline_file, @@ -56272,46 +55429,132 @@ static const uint16_t ts_small_parse_table[] = { sym_regex, sym_regex_constant, sym_indirect_func_call, - [36792] = 20, - ACTIONS(1269), 1, + [35302] = 3, + ACTIONS(828), 1, + sym_regex_flags, + ACTIONS(830), 2, + sym_concatenating_space, + sym__if_else_separator, + ACTIONS(826), 36, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_while, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_CARET, + anon_sym_STAR_STAR, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + [35348] = 3, + ACTIONS(834), 1, + sym_regex_flags, + ACTIONS(836), 2, + sym_concatenating_space, + sym__if_else_separator, + ACTIONS(832), 36, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_while, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_CARET, + anon_sym_STAR_STAR, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + [35394] = 20, + ACTIONS(1285), 1, sym_identifier, - ACTIONS(1271), 1, + ACTIONS(1287), 1, anon_sym_LPAREN, - ACTIONS(1273), 1, + ACTIONS(1289), 1, anon_sym_getline, - ACTIONS(1275), 1, + ACTIONS(1291), 1, anon_sym_SLASH, - ACTIONS(1279), 1, + ACTIONS(1295), 1, anon_sym_BANG, - ACTIONS(1283), 1, + ACTIONS(1299), 1, anon_sym_DOLLAR, - ACTIONS(1285), 1, + ACTIONS(1301), 1, anon_sym_AT, - ACTIONS(1287), 1, + ACTIONS(1303), 1, aux_sym_number_token1, - ACTIONS(1289), 1, + ACTIONS(1305), 1, aux_sym_number_token2, - ACTIONS(1291), 1, + ACTIONS(1307), 1, anon_sym_DQUOTE, - ACTIONS(1535), 1, + ACTIONS(1497), 1, anon_sym_RPAREN, - STATE(1067), 1, + STATE(1093), 1, sym_ns_qualified_name, - STATE(1137), 1, + STATE(1142), 1, sym_array_ref, - STATE(1231), 1, + STATE(1251), 1, sym_field_ref, - STATE(1502), 1, + STATE(1510), 1, sym__binary_in, - STATE(2075), 1, + STATE(2080), 1, sym_namespace, - ACTIONS(1277), 2, + ACTIONS(1293), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1281), 2, + ACTIONS(1297), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1500), 9, + STATE(1505), 9, sym_ternary_exp, sym_binary_exp, sym_unary_exp, @@ -56321,7 +55564,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_string, sym_func_call, - STATE(1639), 10, + STATE(1671), 10, sym__getline_exp, sym_getline_input, sym_getline_file, @@ -56332,46 +55575,46 @@ static const uint16_t ts_small_parse_table[] = { sym_regex, sym_regex_constant, sym_indirect_func_call, - [36872] = 20, - ACTIONS(1269), 1, + [35474] = 20, + ACTIONS(1285), 1, sym_identifier, - ACTIONS(1271), 1, + ACTIONS(1287), 1, anon_sym_LPAREN, - ACTIONS(1273), 1, + ACTIONS(1289), 1, anon_sym_getline, - ACTIONS(1275), 1, + ACTIONS(1291), 1, anon_sym_SLASH, - ACTIONS(1279), 1, + ACTIONS(1295), 1, anon_sym_BANG, - ACTIONS(1283), 1, + ACTIONS(1299), 1, anon_sym_DOLLAR, - ACTIONS(1285), 1, + ACTIONS(1301), 1, anon_sym_AT, - ACTIONS(1287), 1, + ACTIONS(1303), 1, aux_sym_number_token1, - ACTIONS(1289), 1, + ACTIONS(1305), 1, aux_sym_number_token2, - ACTIONS(1291), 1, + ACTIONS(1307), 1, anon_sym_DQUOTE, - ACTIONS(1537), 1, - anon_sym_SEMI, - STATE(1067), 1, + ACTIONS(1499), 1, + anon_sym_RPAREN, + STATE(1093), 1, sym_ns_qualified_name, - STATE(1137), 1, + STATE(1142), 1, sym_array_ref, - STATE(1231), 1, + STATE(1251), 1, sym_field_ref, - STATE(1502), 1, + STATE(1510), 1, sym__binary_in, - STATE(2075), 1, + STATE(2080), 1, sym_namespace, - ACTIONS(1277), 2, + ACTIONS(1293), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1281), 2, + ACTIONS(1297), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1500), 9, + STATE(1505), 9, sym_ternary_exp, sym_binary_exp, sym_unary_exp, @@ -56381,7 +55624,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_string, sym_func_call, - STATE(1653), 10, + STATE(1604), 10, sym__getline_exp, sym_getline_input, sym_getline_file, @@ -56392,94 +55635,46 @@ static const uint16_t ts_small_parse_table[] = { sym_regex, sym_regex_constant, sym_indirect_func_call, - [36952] = 8, - ACTIONS(652), 1, - anon_sym_COLON_COLON, - ACTIONS(908), 1, - anon_sym_LBRACK, - ACTIONS(1443), 1, - anon_sym_LPAREN2, - ACTIONS(1541), 1, - anon_sym_EQ, - ACTIONS(1539), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1543), 6, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - ACTIONS(644), 10, - anon_sym_COLON, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(658), 17, - sym_concatenating_space, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_in, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_RBRACK, - [37008] = 20, - ACTIONS(1271), 1, + [35554] = 20, + ACTIONS(1285), 1, + sym_identifier, + ACTIONS(1287), 1, anon_sym_LPAREN, - ACTIONS(1273), 1, + ACTIONS(1289), 1, anon_sym_getline, - ACTIONS(1275), 1, + ACTIONS(1291), 1, anon_sym_SLASH, - ACTIONS(1279), 1, + ACTIONS(1295), 1, anon_sym_BANG, - ACTIONS(1283), 1, + ACTIONS(1299), 1, anon_sym_DOLLAR, - ACTIONS(1285), 1, + ACTIONS(1301), 1, anon_sym_AT, - ACTIONS(1287), 1, + ACTIONS(1303), 1, aux_sym_number_token1, - ACTIONS(1289), 1, + ACTIONS(1305), 1, aux_sym_number_token2, - ACTIONS(1291), 1, + ACTIONS(1307), 1, anon_sym_DQUOTE, - ACTIONS(1545), 1, - sym_identifier, - ACTIONS(1547), 1, - anon_sym_SEMI, - STATE(1137), 1, + ACTIONS(1501), 1, + anon_sym_RPAREN, + STATE(1093), 1, + sym_ns_qualified_name, + STATE(1142), 1, sym_array_ref, - STATE(1231), 1, + STATE(1251), 1, sym_field_ref, - STATE(1294), 1, - sym_ns_qualified_name, - STATE(1502), 1, + STATE(1510), 1, sym__binary_in, - STATE(2075), 1, + STATE(2080), 1, sym_namespace, - ACTIONS(1277), 2, + ACTIONS(1293), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1281), 2, + ACTIONS(1297), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1500), 9, + STATE(1505), 9, sym_ternary_exp, sym_binary_exp, sym_unary_exp, @@ -56489,7 +55684,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_string, sym_func_call, - STATE(1628), 10, + STATE(1651), 10, sym__getline_exp, sym_getline_input, sym_getline_file, @@ -56500,46 +55695,46 @@ static const uint16_t ts_small_parse_table[] = { sym_regex, sym_regex_constant, sym_indirect_func_call, - [37088] = 20, - ACTIONS(79), 1, - aux_sym_number_token1, - ACTIONS(450), 1, + [35634] = 20, + ACTIONS(1285), 1, sym_identifier, - ACTIONS(456), 1, + ACTIONS(1287), 1, anon_sym_LPAREN, - ACTIONS(468), 1, + ACTIONS(1289), 1, anon_sym_getline, - ACTIONS(474), 1, + ACTIONS(1291), 1, anon_sym_SLASH, - ACTIONS(478), 1, + ACTIONS(1295), 1, anon_sym_BANG, - ACTIONS(482), 1, + ACTIONS(1299), 1, anon_sym_DOLLAR, - ACTIONS(484), 1, + ACTIONS(1301), 1, anon_sym_AT, - ACTIONS(486), 1, + ACTIONS(1303), 1, + aux_sym_number_token1, + ACTIONS(1305), 1, aux_sym_number_token2, - ACTIONS(488), 1, + ACTIONS(1307), 1, anon_sym_DQUOTE, - STATE(647), 1, + ACTIONS(1503), 1, + anon_sym_RPAREN, + STATE(1093), 1, sym_ns_qualified_name, - STATE(713), 1, - aux_sym_exp_list_repeat1, - STATE(774), 1, + STATE(1142), 1, sym_array_ref, - STATE(995), 1, + STATE(1251), 1, sym_field_ref, - STATE(1309), 1, + STATE(1510), 1, sym__binary_in, - STATE(2063), 1, + STATE(2080), 1, sym_namespace, - ACTIONS(476), 2, + ACTIONS(1293), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(480), 2, + ACTIONS(1297), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1441), 9, + STATE(1505), 9, sym_ternary_exp, sym_binary_exp, sym_unary_exp, @@ -56549,7 +55744,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_string, sym_func_call, - STATE(1493), 10, + STATE(1649), 10, sym__getline_exp, sym_getline_input, sym_getline_file, @@ -56560,46 +55755,46 @@ static const uint16_t ts_small_parse_table[] = { sym_regex, sym_regex_constant, sym_indirect_func_call, - [37168] = 20, - ACTIONS(1269), 1, + [35714] = 20, + ACTIONS(1285), 1, sym_identifier, - ACTIONS(1271), 1, + ACTIONS(1287), 1, anon_sym_LPAREN, - ACTIONS(1273), 1, + ACTIONS(1289), 1, anon_sym_getline, - ACTIONS(1275), 1, + ACTIONS(1291), 1, anon_sym_SLASH, - ACTIONS(1279), 1, + ACTIONS(1295), 1, anon_sym_BANG, - ACTIONS(1283), 1, + ACTIONS(1299), 1, anon_sym_DOLLAR, - ACTIONS(1285), 1, + ACTIONS(1301), 1, anon_sym_AT, - ACTIONS(1287), 1, + ACTIONS(1303), 1, aux_sym_number_token1, - ACTIONS(1289), 1, + ACTIONS(1305), 1, aux_sym_number_token2, - ACTIONS(1291), 1, + ACTIONS(1307), 1, anon_sym_DQUOTE, - ACTIONS(1549), 1, + ACTIONS(1505), 1, anon_sym_RPAREN, - STATE(1067), 1, + STATE(1093), 1, sym_ns_qualified_name, - STATE(1137), 1, + STATE(1142), 1, sym_array_ref, - STATE(1231), 1, + STATE(1251), 1, sym_field_ref, - STATE(1502), 1, + STATE(1510), 1, sym__binary_in, - STATE(2075), 1, + STATE(2080), 1, sym_namespace, - ACTIONS(1277), 2, + ACTIONS(1293), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1281), 2, + ACTIONS(1297), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1500), 9, + STATE(1505), 9, sym_ternary_exp, sym_binary_exp, sym_unary_exp, @@ -56609,7 +55804,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_string, sym_func_call, - STATE(1626), 10, + STATE(1648), 10, sym__getline_exp, sym_getline_input, sym_getline_file, @@ -56620,46 +55815,46 @@ static const uint16_t ts_small_parse_table[] = { sym_regex, sym_regex_constant, sym_indirect_func_call, - [37248] = 20, - ACTIONS(1271), 1, + [35794] = 20, + ACTIONS(1285), 1, + sym_identifier, + ACTIONS(1287), 1, anon_sym_LPAREN, - ACTIONS(1273), 1, + ACTIONS(1289), 1, anon_sym_getline, - ACTIONS(1275), 1, + ACTIONS(1291), 1, anon_sym_SLASH, - ACTIONS(1279), 1, + ACTIONS(1295), 1, anon_sym_BANG, - ACTIONS(1283), 1, + ACTIONS(1299), 1, anon_sym_DOLLAR, - ACTIONS(1285), 1, + ACTIONS(1301), 1, anon_sym_AT, - ACTIONS(1287), 1, + ACTIONS(1303), 1, aux_sym_number_token1, - ACTIONS(1289), 1, + ACTIONS(1305), 1, aux_sym_number_token2, - ACTIONS(1291), 1, + ACTIONS(1307), 1, anon_sym_DQUOTE, - ACTIONS(1551), 1, - sym_identifier, - ACTIONS(1553), 1, + ACTIONS(1507), 1, anon_sym_SEMI, - STATE(1137), 1, + STATE(1093), 1, + sym_ns_qualified_name, + STATE(1142), 1, sym_array_ref, - STATE(1231), 1, + STATE(1251), 1, sym_field_ref, - STATE(1296), 1, - sym_ns_qualified_name, - STATE(1502), 1, + STATE(1510), 1, sym__binary_in, - STATE(2075), 1, + STATE(2080), 1, sym_namespace, - ACTIONS(1277), 2, + ACTIONS(1293), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1281), 2, + ACTIONS(1297), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1500), 9, + STATE(1505), 9, sym_ternary_exp, sym_binary_exp, sym_unary_exp, @@ -56669,7 +55864,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_string, sym_func_call, - STATE(1623), 10, + STATE(1602), 10, sym__getline_exp, sym_getline_input, sym_getline_file, @@ -56680,32 +55875,21 @@ static const uint16_t ts_small_parse_table[] = { sym_regex, sym_regex_constant, sym_indirect_func_call, - [37328] = 6, - ACTIONS(650), 1, + [35874] = 4, + ACTIONS(648), 1, anon_sym_LBRACK, - ACTIONS(658), 1, - sym__if_else_separator, - ACTIONS(1335), 1, + ACTIONS(1365), 1, + anon_sym_LT, + ACTIONS(690), 2, sym_concatenating_space, - ACTIONS(1231), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1333), 7, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - ACTIONS(644), 27, + sym__if_else_separator, + ACTIONS(688), 35, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, anon_sym_while, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, anon_sym_PIPE, @@ -56726,46 +55910,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [37380] = 20, - ACTIONS(1269), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + [35922] = 20, + ACTIONS(1285), 1, sym_identifier, - ACTIONS(1271), 1, + ACTIONS(1287), 1, anon_sym_LPAREN, - ACTIONS(1273), 1, + ACTIONS(1289), 1, anon_sym_getline, - ACTIONS(1275), 1, + ACTIONS(1291), 1, anon_sym_SLASH, - ACTIONS(1279), 1, + ACTIONS(1295), 1, anon_sym_BANG, - ACTIONS(1283), 1, + ACTIONS(1299), 1, anon_sym_DOLLAR, - ACTIONS(1285), 1, + ACTIONS(1301), 1, anon_sym_AT, - ACTIONS(1287), 1, + ACTIONS(1303), 1, aux_sym_number_token1, - ACTIONS(1289), 1, + ACTIONS(1305), 1, aux_sym_number_token2, - ACTIONS(1291), 1, + ACTIONS(1307), 1, anon_sym_DQUOTE, - ACTIONS(1555), 1, + ACTIONS(1509), 1, anon_sym_RPAREN, - STATE(1067), 1, + STATE(1093), 1, sym_ns_qualified_name, - STATE(1137), 1, + STATE(1142), 1, sym_array_ref, - STATE(1231), 1, + STATE(1251), 1, sym_field_ref, - STATE(1502), 1, + STATE(1510), 1, sym__binary_in, - STATE(2075), 1, + STATE(2080), 1, sym_namespace, - ACTIONS(1277), 2, + ACTIONS(1293), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1281), 2, + ACTIONS(1297), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1500), 9, + STATE(1505), 9, sym_ternary_exp, sym_binary_exp, sym_unary_exp, @@ -56775,7 +55968,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_string, sym_func_call, - STATE(1645), 10, + STATE(1675), 10, sym__getline_exp, sym_getline_input, sym_getline_file, @@ -56786,500 +55979,391 @@ static const uint16_t ts_small_parse_table[] = { sym_regex, sym_regex_constant, sym_indirect_func_call, - [37460] = 18, - ACTIONS(282), 1, - anon_sym_DOLLAR, - ACTIONS(1557), 1, + [36002] = 20, + ACTIONS(1285), 1, sym_identifier, - ACTIONS(1559), 1, + ACTIONS(1287), 1, anon_sym_LPAREN, - ACTIONS(1561), 1, + ACTIONS(1289), 1, anon_sym_getline, - ACTIONS(1563), 1, + ACTIONS(1291), 1, anon_sym_SLASH, - ACTIONS(1567), 1, + ACTIONS(1295), 1, anon_sym_BANG, - ACTIONS(1571), 1, + ACTIONS(1299), 1, + anon_sym_DOLLAR, + ACTIONS(1301), 1, anon_sym_AT, - ACTIONS(1573), 1, + ACTIONS(1303), 1, aux_sym_number_token1, - ACTIONS(1575), 1, + ACTIONS(1305), 1, aux_sym_number_token2, - ACTIONS(1577), 1, + ACTIONS(1307), 1, anon_sym_DQUOTE, - STATE(181), 1, + ACTIONS(1511), 1, + anon_sym_RPAREN, + STATE(1093), 1, sym_ns_qualified_name, - STATE(208), 1, + STATE(1142), 1, sym_array_ref, - STATE(235), 1, - sym__binary_in, - STATE(236), 1, + STATE(1251), 1, sym_field_ref, - STATE(1955), 1, + STATE(1510), 1, + sym__binary_in, + STATE(2080), 1, sym_namespace, - ACTIONS(1565), 2, + ACTIONS(1293), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1569), 2, + ACTIONS(1297), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(242), 19, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, + STATE(1505), 9, sym_ternary_exp, sym_binary_exp, sym_unary_exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, sym_string_concat, - sym_regex, - sym_regex_constant, sym_grouping, sym__primitive, sym_number, sym_string, sym_func_call, - sym_indirect_func_call, - [37535] = 18, - ACTIONS(282), 1, - anon_sym_DOLLAR, - ACTIONS(1557), 1, - sym_identifier, - ACTIONS(1559), 1, - anon_sym_LPAREN, - ACTIONS(1561), 1, - anon_sym_getline, - ACTIONS(1563), 1, - anon_sym_SLASH, - ACTIONS(1567), 1, - anon_sym_BANG, - ACTIONS(1571), 1, - anon_sym_AT, - ACTIONS(1573), 1, - aux_sym_number_token1, - ACTIONS(1575), 1, - aux_sym_number_token2, - ACTIONS(1577), 1, - anon_sym_DQUOTE, - STATE(181), 1, - sym_ns_qualified_name, - STATE(208), 1, - sym_array_ref, - STATE(235), 1, - sym__binary_in, - STATE(236), 1, - sym_field_ref, - STATE(1955), 1, - sym_namespace, - ACTIONS(1565), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1569), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(646), 19, + STATE(1662), 10, sym__getline_exp, sym_getline_input, sym_getline_file, sym__exp, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, sym_update_exp, sym_assignment_exp, sym_piped_io_exp, - sym_string_concat, sym_regex, sym_regex_constant, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, sym_indirect_func_call, - [37610] = 18, - ACTIONS(304), 1, + [36082] = 20, + ACTIONS(1285), 1, + sym_identifier, + ACTIONS(1287), 1, anon_sym_LPAREN, - ACTIONS(328), 1, + ACTIONS(1289), 1, + anon_sym_getline, + ACTIONS(1291), 1, + anon_sym_SLASH, + ACTIONS(1295), 1, anon_sym_BANG, - ACTIONS(332), 1, + ACTIONS(1299), 1, anon_sym_DOLLAR, - ACTIONS(336), 1, + ACTIONS(1301), 1, + anon_sym_AT, + ACTIONS(1303), 1, aux_sym_number_token1, - ACTIONS(338), 1, + ACTIONS(1305), 1, aux_sym_number_token2, - ACTIONS(340), 1, + ACTIONS(1307), 1, anon_sym_DQUOTE, - ACTIONS(1579), 1, - sym_identifier, - ACTIONS(1581), 1, - anon_sym_getline, - ACTIONS(1583), 1, - anon_sym_SLASH, - ACTIONS(1587), 1, - anon_sym_AT, - STATE(203), 1, + ACTIONS(1513), 1, + anon_sym_RPAREN, + STATE(1093), 1, sym_ns_qualified_name, - STATE(225), 1, + STATE(1142), 1, sym_array_ref, - STATE(262), 1, + STATE(1251), 1, sym_field_ref, - STATE(369), 1, + STATE(1510), 1, sym__binary_in, - STATE(2063), 1, + STATE(2080), 1, sym_namespace, - ACTIONS(326), 2, + ACTIONS(1293), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1585), 2, + ACTIONS(1297), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(378), 19, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, + STATE(1505), 9, sym_ternary_exp, sym_binary_exp, sym_unary_exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, sym_string_concat, - sym_regex, - sym_regex_constant, sym_grouping, sym__primitive, sym_number, sym_string, sym_func_call, - sym_indirect_func_call, - [37685] = 18, - ACTIONS(304), 1, - anon_sym_LPAREN, - ACTIONS(328), 1, - anon_sym_BANG, - ACTIONS(332), 1, - anon_sym_DOLLAR, - ACTIONS(336), 1, - aux_sym_number_token1, - ACTIONS(338), 1, - aux_sym_number_token2, - ACTIONS(340), 1, - anon_sym_DQUOTE, - ACTIONS(1579), 1, - sym_identifier, - ACTIONS(1581), 1, - anon_sym_getline, - ACTIONS(1583), 1, - anon_sym_SLASH, - ACTIONS(1587), 1, - anon_sym_AT, - STATE(203), 1, - sym_ns_qualified_name, - STATE(225), 1, - sym_array_ref, - STATE(262), 1, - sym_field_ref, - STATE(369), 1, - sym__binary_in, - STATE(2063), 1, - sym_namespace, - ACTIONS(326), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1585), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(365), 19, + STATE(1646), 10, sym__getline_exp, sym_getline_input, sym_getline_file, sym__exp, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, sym_update_exp, sym_assignment_exp, sym_piped_io_exp, - sym_string_concat, sym_regex, sym_regex_constant, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, sym_indirect_func_call, - [37760] = 18, - ACTIONS(304), 1, - anon_sym_LPAREN, - ACTIONS(328), 1, - anon_sym_BANG, - ACTIONS(332), 1, - anon_sym_DOLLAR, - ACTIONS(336), 1, - aux_sym_number_token1, - ACTIONS(338), 1, - aux_sym_number_token2, - ACTIONS(340), 1, - anon_sym_DQUOTE, - ACTIONS(1579), 1, + [36162] = 5, + ACTIONS(650), 1, + anon_sym_COLON_COLON, + ACTIONS(684), 1, + anon_sym_LBRACK, + ACTIONS(690), 1, + sym_concatenating_space, + ACTIONS(1515), 1, + anon_sym_LT, + ACTIONS(688), 35, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_while, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_CARET, + anon_sym_STAR_STAR, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + [36212] = 20, + ACTIONS(1285), 1, sym_identifier, - ACTIONS(1581), 1, + ACTIONS(1287), 1, + anon_sym_LPAREN, + ACTIONS(1289), 1, anon_sym_getline, - ACTIONS(1583), 1, + ACTIONS(1291), 1, anon_sym_SLASH, - ACTIONS(1587), 1, + ACTIONS(1295), 1, + anon_sym_BANG, + ACTIONS(1299), 1, + anon_sym_DOLLAR, + ACTIONS(1301), 1, anon_sym_AT, - STATE(203), 1, + ACTIONS(1303), 1, + aux_sym_number_token1, + ACTIONS(1305), 1, + aux_sym_number_token2, + ACTIONS(1307), 1, + anon_sym_DQUOTE, + ACTIONS(1517), 1, + anon_sym_RPAREN, + STATE(1093), 1, sym_ns_qualified_name, - STATE(225), 1, + STATE(1142), 1, sym_array_ref, - STATE(262), 1, + STATE(1251), 1, sym_field_ref, - STATE(369), 1, + STATE(1510), 1, sym__binary_in, - STATE(2063), 1, + STATE(2080), 1, sym_namespace, - ACTIONS(326), 2, + ACTIONS(1293), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1585), 2, + ACTIONS(1297), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(357), 19, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, + STATE(1505), 9, sym_ternary_exp, sym_binary_exp, sym_unary_exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, sym_string_concat, - sym_regex, - sym_regex_constant, sym_grouping, sym__primitive, sym_number, sym_string, sym_func_call, + STATE(1659), 10, + sym__getline_exp, + sym_getline_input, + sym_getline_file, + sym__exp, + sym_update_exp, + sym_assignment_exp, + sym_piped_io_exp, + sym_regex, + sym_regex_constant, sym_indirect_func_call, - [37835] = 18, - ACTIONS(304), 1, + [36292] = 20, + ACTIONS(1285), 1, + sym_identifier, + ACTIONS(1287), 1, anon_sym_LPAREN, - ACTIONS(328), 1, + ACTIONS(1289), 1, + anon_sym_getline, + ACTIONS(1291), 1, + anon_sym_SLASH, + ACTIONS(1295), 1, anon_sym_BANG, - ACTIONS(332), 1, + ACTIONS(1299), 1, anon_sym_DOLLAR, - ACTIONS(336), 1, + ACTIONS(1301), 1, + anon_sym_AT, + ACTIONS(1303), 1, aux_sym_number_token1, - ACTIONS(338), 1, + ACTIONS(1305), 1, aux_sym_number_token2, - ACTIONS(340), 1, + ACTIONS(1307), 1, anon_sym_DQUOTE, - ACTIONS(1579), 1, - sym_identifier, - ACTIONS(1581), 1, - anon_sym_getline, - ACTIONS(1583), 1, - anon_sym_SLASH, - ACTIONS(1587), 1, - anon_sym_AT, - STATE(203), 1, + ACTIONS(1519), 1, + anon_sym_SEMI, + STATE(1093), 1, sym_ns_qualified_name, - STATE(225), 1, + STATE(1142), 1, sym_array_ref, - STATE(262), 1, + STATE(1251), 1, sym_field_ref, - STATE(369), 1, + STATE(1510), 1, sym__binary_in, - STATE(2063), 1, + STATE(2080), 1, sym_namespace, - ACTIONS(326), 2, + ACTIONS(1293), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1585), 2, + ACTIONS(1297), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(354), 19, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, + STATE(1505), 9, sym_ternary_exp, sym_binary_exp, sym_unary_exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, sym_string_concat, - sym_regex, - sym_regex_constant, sym_grouping, sym__primitive, sym_number, sym_string, sym_func_call, + STATE(1640), 10, + sym__getline_exp, + sym_getline_input, + sym_getline_file, + sym__exp, + sym_update_exp, + sym_assignment_exp, + sym_piped_io_exp, + sym_regex, + sym_regex_constant, sym_indirect_func_call, - [37910] = 18, - ACTIONS(304), 1, + [36372] = 20, + ACTIONS(1285), 1, + sym_identifier, + ACTIONS(1287), 1, anon_sym_LPAREN, - ACTIONS(328), 1, + ACTIONS(1289), 1, + anon_sym_getline, + ACTIONS(1291), 1, + anon_sym_SLASH, + ACTIONS(1295), 1, anon_sym_BANG, - ACTIONS(332), 1, + ACTIONS(1299), 1, anon_sym_DOLLAR, - ACTIONS(336), 1, + ACTIONS(1301), 1, + anon_sym_AT, + ACTIONS(1303), 1, aux_sym_number_token1, - ACTIONS(338), 1, + ACTIONS(1305), 1, aux_sym_number_token2, - ACTIONS(340), 1, + ACTIONS(1307), 1, anon_sym_DQUOTE, - ACTIONS(1579), 1, - sym_identifier, - ACTIONS(1581), 1, - anon_sym_getline, - ACTIONS(1583), 1, - anon_sym_SLASH, - ACTIONS(1587), 1, - anon_sym_AT, - STATE(203), 1, + ACTIONS(1521), 1, + anon_sym_RPAREN, + STATE(1093), 1, sym_ns_qualified_name, - STATE(225), 1, + STATE(1142), 1, sym_array_ref, - STATE(262), 1, + STATE(1251), 1, sym_field_ref, - STATE(369), 1, + STATE(1510), 1, sym__binary_in, - STATE(2063), 1, + STATE(2080), 1, sym_namespace, - ACTIONS(326), 2, + ACTIONS(1293), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1585), 2, + ACTIONS(1297), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(353), 19, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, + STATE(1505), 9, sym_ternary_exp, sym_binary_exp, sym_unary_exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, sym_string_concat, - sym_regex, - sym_regex_constant, sym_grouping, sym__primitive, sym_number, sym_string, sym_func_call, - sym_indirect_func_call, - [37985] = 18, - ACTIONS(79), 1, - aux_sym_number_token1, - ACTIONS(486), 1, - aux_sym_number_token2, - ACTIONS(488), 1, - anon_sym_DQUOTE, - ACTIONS(552), 1, - anon_sym_LPAREN, - ACTIONS(556), 1, - anon_sym_BANG, - ACTIONS(560), 1, - anon_sym_DOLLAR, - ACTIONS(1589), 1, - sym_identifier, - ACTIONS(1591), 1, - anon_sym_getline, - ACTIONS(1593), 1, - anon_sym_SLASH, - ACTIONS(1597), 1, - anon_sym_AT, - STATE(593), 1, - sym_ns_qualified_name, - STATE(606), 1, - sym_array_ref, - STATE(628), 1, - sym_field_ref, - STATE(1309), 1, - sym__binary_in, - STATE(2063), 1, - sym_namespace, - ACTIONS(71), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1595), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1366), 19, + STATE(1609), 10, sym__getline_exp, sym_getline_input, sym_getline_file, sym__exp, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, sym_update_exp, sym_assignment_exp, sym_piped_io_exp, - sym_string_concat, sym_regex, sym_regex_constant, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, sym_indirect_func_call, - [38060] = 19, - ACTIONS(123), 1, - aux_sym_number_token1, - ACTIONS(286), 1, - aux_sym_number_token2, - ACTIONS(288), 1, - anon_sym_DQUOTE, - ACTIONS(362), 1, + [36452] = 20, + ACTIONS(1285), 1, sym_identifier, - ACTIONS(366), 1, + ACTIONS(1287), 1, anon_sym_LPAREN, - ACTIONS(376), 1, + ACTIONS(1289), 1, anon_sym_getline, - ACTIONS(382), 1, + ACTIONS(1291), 1, anon_sym_SLASH, - ACTIONS(386), 1, + ACTIONS(1295), 1, anon_sym_BANG, - ACTIONS(390), 1, + ACTIONS(1299), 1, anon_sym_DOLLAR, - ACTIONS(392), 1, + ACTIONS(1301), 1, anon_sym_AT, - STATE(744), 1, + ACTIONS(1303), 1, + aux_sym_number_token1, + ACTIONS(1305), 1, + aux_sym_number_token2, + ACTIONS(1307), 1, + anon_sym_DQUOTE, + ACTIONS(1523), 1, + anon_sym_SEMI, + STATE(1093), 1, sym_ns_qualified_name, - STATE(1022), 1, + STATE(1142), 1, sym_array_ref, - STATE(1121), 1, + STATE(1251), 1, sym_field_ref, - STATE(1373), 1, + STATE(1510), 1, sym__binary_in, - STATE(1955), 1, + STATE(2080), 1, sym_namespace, - ACTIONS(384), 2, + ACTIONS(1293), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(388), 2, + ACTIONS(1297), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1470), 9, + STATE(1505), 9, sym_ternary_exp, sym_binary_exp, sym_unary_exp, @@ -57289,7 +56373,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_string, sym_func_call, - STATE(1423), 10, + STATE(1628), 10, sym__getline_exp, sym_getline_input, sym_getline_file, @@ -57300,500 +56384,510 @@ static const uint16_t ts_small_parse_table[] = { sym_regex, sym_regex_constant, sym_indirect_func_call, - [38137] = 18, - ACTIONS(79), 1, - aux_sym_number_token1, - ACTIONS(486), 1, - aux_sym_number_token2, - ACTIONS(488), 1, - anon_sym_DQUOTE, - ACTIONS(552), 1, - anon_sym_LPAREN, - ACTIONS(556), 1, - anon_sym_BANG, - ACTIONS(560), 1, - anon_sym_DOLLAR, - ACTIONS(1589), 1, + [36532] = 20, + ACTIONS(1285), 1, sym_identifier, - ACTIONS(1591), 1, + ACTIONS(1287), 1, + anon_sym_LPAREN, + ACTIONS(1289), 1, anon_sym_getline, - ACTIONS(1593), 1, + ACTIONS(1291), 1, anon_sym_SLASH, - ACTIONS(1597), 1, + ACTIONS(1295), 1, + anon_sym_BANG, + ACTIONS(1299), 1, + anon_sym_DOLLAR, + ACTIONS(1301), 1, anon_sym_AT, - STATE(593), 1, + ACTIONS(1303), 1, + aux_sym_number_token1, + ACTIONS(1305), 1, + aux_sym_number_token2, + ACTIONS(1307), 1, + anon_sym_DQUOTE, + ACTIONS(1525), 1, + anon_sym_SEMI, + STATE(1093), 1, sym_ns_qualified_name, - STATE(606), 1, + STATE(1142), 1, sym_array_ref, - STATE(628), 1, + STATE(1251), 1, sym_field_ref, - STATE(1309), 1, + STATE(1510), 1, sym__binary_in, - STATE(2063), 1, + STATE(2080), 1, sym_namespace, - ACTIONS(71), 2, + ACTIONS(1293), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1595), 2, + ACTIONS(1297), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1374), 19, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, + STATE(1505), 9, sym_ternary_exp, sym_binary_exp, sym_unary_exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, sym_string_concat, - sym_regex, - sym_regex_constant, sym_grouping, sym__primitive, sym_number, sym_string, sym_func_call, + STATE(1655), 10, + sym__getline_exp, + sym_getline_input, + sym_getline_file, + sym__exp, + sym_update_exp, + sym_assignment_exp, + sym_piped_io_exp, + sym_regex, + sym_regex_constant, sym_indirect_func_call, - [38212] = 18, - ACTIONS(79), 1, - aux_sym_number_token1, - ACTIONS(486), 1, - aux_sym_number_token2, - ACTIONS(488), 1, - anon_sym_DQUOTE, - ACTIONS(552), 1, + [36612] = 20, + ACTIONS(1287), 1, anon_sym_LPAREN, - ACTIONS(556), 1, - anon_sym_BANG, - ACTIONS(560), 1, - anon_sym_DOLLAR, - ACTIONS(1589), 1, - sym_identifier, - ACTIONS(1591), 1, + ACTIONS(1289), 1, anon_sym_getline, - ACTIONS(1593), 1, + ACTIONS(1291), 1, anon_sym_SLASH, - ACTIONS(1597), 1, + ACTIONS(1295), 1, + anon_sym_BANG, + ACTIONS(1299), 1, + anon_sym_DOLLAR, + ACTIONS(1301), 1, anon_sym_AT, - STATE(593), 1, - sym_ns_qualified_name, - STATE(606), 1, + ACTIONS(1303), 1, + aux_sym_number_token1, + ACTIONS(1305), 1, + aux_sym_number_token2, + ACTIONS(1307), 1, + anon_sym_DQUOTE, + ACTIONS(1527), 1, + sym_identifier, + ACTIONS(1529), 1, + anon_sym_SEMI, + STATE(1142), 1, sym_array_ref, - STATE(628), 1, + STATE(1251), 1, sym_field_ref, - STATE(1309), 1, + STATE(1291), 1, + sym_ns_qualified_name, + STATE(1510), 1, sym__binary_in, - STATE(2063), 1, + STATE(2080), 1, sym_namespace, - ACTIONS(71), 2, + ACTIONS(1293), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1595), 2, + ACTIONS(1297), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1314), 19, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, + STATE(1505), 9, sym_ternary_exp, sym_binary_exp, sym_unary_exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, sym_string_concat, - sym_regex, - sym_regex_constant, sym_grouping, sym__primitive, sym_number, sym_string, sym_func_call, + STATE(1626), 10, + sym__getline_exp, + sym_getline_input, + sym_getline_file, + sym__exp, + sym_update_exp, + sym_assignment_exp, + sym_piped_io_exp, + sym_regex, + sym_regex_constant, sym_indirect_func_call, - [38287] = 18, - ACTIONS(304), 1, + [36692] = 20, + ACTIONS(530), 1, + sym_identifier, + ACTIONS(534), 1, anon_sym_LPAREN, - ACTIONS(328), 1, + ACTIONS(544), 1, + anon_sym_getline, + ACTIONS(550), 1, + anon_sym_SLASH, + ACTIONS(554), 1, anon_sym_BANG, - ACTIONS(332), 1, + ACTIONS(558), 1, anon_sym_DOLLAR, - ACTIONS(336), 1, + ACTIONS(560), 1, + anon_sym_AT, + ACTIONS(562), 1, aux_sym_number_token1, - ACTIONS(338), 1, + ACTIONS(564), 1, aux_sym_number_token2, - ACTIONS(340), 1, + ACTIONS(566), 1, anon_sym_DQUOTE, - ACTIONS(1579), 1, - sym_identifier, - ACTIONS(1581), 1, - anon_sym_getline, - ACTIONS(1583), 1, - anon_sym_SLASH, - ACTIONS(1587), 1, - anon_sym_AT, - STATE(203), 1, + STATE(200), 1, sym_ns_qualified_name, - STATE(225), 1, + STATE(219), 1, sym_array_ref, - STATE(262), 1, + STATE(258), 1, sym_field_ref, - STATE(369), 1, + STATE(373), 1, sym__binary_in, - STATE(2063), 1, + STATE(717), 1, + aux_sym_exp_list_repeat1, + STATE(2068), 1, sym_namespace, - ACTIONS(326), 2, + ACTIONS(552), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1585), 2, + ACTIONS(556), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(387), 19, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, + STATE(359), 9, sym_ternary_exp, sym_binary_exp, sym_unary_exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, sym_string_concat, - sym_regex, - sym_regex_constant, sym_grouping, sym__primitive, sym_number, sym_string, sym_func_call, + STATE(403), 10, + sym__getline_exp, + sym_getline_input, + sym_getline_file, + sym__exp, + sym_update_exp, + sym_assignment_exp, + sym_piped_io_exp, + sym_regex, + sym_regex_constant, sym_indirect_func_call, - [38362] = 18, - ACTIONS(79), 1, - aux_sym_number_token1, - ACTIONS(486), 1, - aux_sym_number_token2, - ACTIONS(488), 1, - anon_sym_DQUOTE, - ACTIONS(552), 1, - anon_sym_LPAREN, - ACTIONS(556), 1, - anon_sym_BANG, - ACTIONS(560), 1, - anon_sym_DOLLAR, - ACTIONS(1589), 1, + [36772] = 20, + ACTIONS(1285), 1, sym_identifier, - ACTIONS(1591), 1, + ACTIONS(1287), 1, + anon_sym_LPAREN, + ACTIONS(1289), 1, anon_sym_getline, - ACTIONS(1593), 1, + ACTIONS(1291), 1, anon_sym_SLASH, - ACTIONS(1597), 1, + ACTIONS(1295), 1, + anon_sym_BANG, + ACTIONS(1299), 1, + anon_sym_DOLLAR, + ACTIONS(1301), 1, anon_sym_AT, - STATE(593), 1, + ACTIONS(1303), 1, + aux_sym_number_token1, + ACTIONS(1305), 1, + aux_sym_number_token2, + ACTIONS(1307), 1, + anon_sym_DQUOTE, + ACTIONS(1531), 1, + anon_sym_RPAREN, + STATE(1093), 1, sym_ns_qualified_name, - STATE(606), 1, + STATE(1142), 1, sym_array_ref, - STATE(628), 1, + STATE(1251), 1, sym_field_ref, - STATE(1309), 1, + STATE(1510), 1, sym__binary_in, - STATE(2063), 1, + STATE(2080), 1, sym_namespace, - ACTIONS(71), 2, + ACTIONS(1293), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1595), 2, + ACTIONS(1297), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1376), 19, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, + STATE(1505), 9, sym_ternary_exp, sym_binary_exp, sym_unary_exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, sym_string_concat, - sym_regex, - sym_regex_constant, sym_grouping, sym__primitive, sym_number, sym_string, sym_func_call, + STATE(1606), 10, + sym__getline_exp, + sym_getline_input, + sym_getline_file, + sym__exp, + sym_update_exp, + sym_assignment_exp, + sym_piped_io_exp, + sym_regex, + sym_regex_constant, sym_indirect_func_call, - [38437] = 18, - ACTIONS(79), 1, - aux_sym_number_token1, - ACTIONS(486), 1, - aux_sym_number_token2, - ACTIONS(488), 1, - anon_sym_DQUOTE, - ACTIONS(552), 1, - anon_sym_LPAREN, - ACTIONS(556), 1, - anon_sym_BANG, - ACTIONS(560), 1, - anon_sym_DOLLAR, - ACTIONS(1589), 1, + [36852] = 20, + ACTIONS(1285), 1, sym_identifier, - ACTIONS(1591), 1, + ACTIONS(1287), 1, + anon_sym_LPAREN, + ACTIONS(1289), 1, anon_sym_getline, - ACTIONS(1593), 1, + ACTIONS(1291), 1, anon_sym_SLASH, - ACTIONS(1597), 1, + ACTIONS(1295), 1, + anon_sym_BANG, + ACTIONS(1299), 1, + anon_sym_DOLLAR, + ACTIONS(1301), 1, anon_sym_AT, - STATE(593), 1, + ACTIONS(1303), 1, + aux_sym_number_token1, + ACTIONS(1305), 1, + aux_sym_number_token2, + ACTIONS(1307), 1, + anon_sym_DQUOTE, + ACTIONS(1533), 1, + anon_sym_SEMI, + STATE(1093), 1, sym_ns_qualified_name, - STATE(606), 1, + STATE(1142), 1, sym_array_ref, - STATE(628), 1, + STATE(1251), 1, sym_field_ref, - STATE(1309), 1, + STATE(1510), 1, sym__binary_in, - STATE(2063), 1, + STATE(2080), 1, sym_namespace, - ACTIONS(71), 2, + ACTIONS(1293), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1595), 2, + ACTIONS(1297), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1380), 19, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, + STATE(1505), 9, sym_ternary_exp, sym_binary_exp, sym_unary_exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, sym_string_concat, - sym_regex, - sym_regex_constant, sym_grouping, sym__primitive, sym_number, sym_string, sym_func_call, + STATE(1645), 10, + sym__getline_exp, + sym_getline_input, + sym_getline_file, + sym__exp, + sym_update_exp, + sym_assignment_exp, + sym_piped_io_exp, + sym_regex, + sym_regex_constant, sym_indirect_func_call, - [38512] = 18, - ACTIONS(304), 1, + [36932] = 20, + ACTIONS(1285), 1, + sym_identifier, + ACTIONS(1287), 1, anon_sym_LPAREN, - ACTIONS(328), 1, + ACTIONS(1289), 1, + anon_sym_getline, + ACTIONS(1291), 1, + anon_sym_SLASH, + ACTIONS(1295), 1, anon_sym_BANG, - ACTIONS(332), 1, + ACTIONS(1299), 1, anon_sym_DOLLAR, - ACTIONS(336), 1, + ACTIONS(1301), 1, + anon_sym_AT, + ACTIONS(1303), 1, aux_sym_number_token1, - ACTIONS(338), 1, + ACTIONS(1305), 1, aux_sym_number_token2, - ACTIONS(340), 1, + ACTIONS(1307), 1, anon_sym_DQUOTE, - ACTIONS(1579), 1, - sym_identifier, - ACTIONS(1581), 1, - anon_sym_getline, - ACTIONS(1583), 1, - anon_sym_SLASH, - ACTIONS(1587), 1, - anon_sym_AT, - STATE(203), 1, + ACTIONS(1535), 1, + anon_sym_SEMI, + STATE(1093), 1, sym_ns_qualified_name, - STATE(225), 1, + STATE(1142), 1, sym_array_ref, - STATE(262), 1, + STATE(1251), 1, sym_field_ref, - STATE(369), 1, + STATE(1510), 1, sym__binary_in, - STATE(2063), 1, + STATE(2080), 1, sym_namespace, - ACTIONS(326), 2, + ACTIONS(1293), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1585), 2, + ACTIONS(1297), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(381), 19, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, + STATE(1505), 9, sym_ternary_exp, sym_binary_exp, sym_unary_exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, sym_string_concat, - sym_regex, - sym_regex_constant, sym_grouping, sym__primitive, sym_number, sym_string, sym_func_call, + STATE(1607), 10, + sym__getline_exp, + sym_getline_input, + sym_getline_file, + sym__exp, + sym_update_exp, + sym_assignment_exp, + sym_piped_io_exp, + sym_regex, + sym_regex_constant, sym_indirect_func_call, - [38587] = 18, - ACTIONS(11), 1, + [37012] = 4, + ACTIONS(1543), 1, + sym__if_else_separator, + ACTIONS(1539), 2, + anon_sym_GT, + anon_sym_GT_GT, + ACTIONS(1541), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(1537), 34, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_if, anon_sym_LPAREN, - ACTIONS(21), 1, + anon_sym_while, + anon_sym_do, + anon_sym_for, + sym_break_statement, + sym_continue_statement, + anon_sym_delete, + anon_sym_exit, + anon_sym_return, + anon_sym_switch, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_getline, + sym_next_statement, + sym_nextfile_statement, + anon_sym_print, + anon_sym_printf, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_BANG, - ACTIONS(25), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_DOLLAR, - ACTIONS(29), 1, + anon_sym_AT, + sym_identifier, aux_sym_number_token1, - ACTIONS(31), 1, aux_sym_number_token2, - ACTIONS(33), 1, anon_sym_DQUOTE, - ACTIONS(1599), 1, + anon_sym_POUND, + [37060] = 20, + ACTIONS(85), 1, sym_identifier, - ACTIONS(1601), 1, + ACTIONS(89), 1, + anon_sym_LPAREN, + ACTIONS(111), 1, anon_sym_getline, - ACTIONS(1603), 1, + ACTIONS(117), 1, anon_sym_SLASH, - ACTIONS(1607), 1, + ACTIONS(121), 1, + anon_sym_BANG, + ACTIONS(125), 1, + anon_sym_DOLLAR, + ACTIONS(127), 1, anon_sym_AT, - STATE(445), 1, + ACTIONS(129), 1, + aux_sym_number_token1, + ACTIONS(131), 1, + aux_sym_number_token2, + ACTIONS(133), 1, + anon_sym_DQUOTE, + STATE(244), 1, sym_ns_qualified_name, - STATE(474), 1, + STATE(268), 1, sym_array_ref, - STATE(480), 1, + STATE(274), 1, sym_field_ref, - STATE(556), 1, + STATE(426), 1, sym__binary_in, - STATE(2075), 1, + STATE(717), 1, + aux_sym_exp_list_repeat1, + STATE(1956), 1, sym_namespace, - ACTIONS(19), 2, + ACTIONS(119), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1605), 2, + ACTIONS(123), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(535), 19, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, + STATE(427), 9, sym_ternary_exp, sym_binary_exp, sym_unary_exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, sym_string_concat, - sym_regex, - sym_regex_constant, sym_grouping, sym__primitive, sym_number, sym_string, sym_func_call, - sym_indirect_func_call, - [38662] = 18, - ACTIONS(123), 1, - aux_sym_number_token1, - ACTIONS(286), 1, - aux_sym_number_token2, - ACTIONS(288), 1, - anon_sym_DQUOTE, - ACTIONS(366), 1, - anon_sym_LPAREN, - ACTIONS(386), 1, - anon_sym_BANG, - ACTIONS(390), 1, - anon_sym_DOLLAR, - ACTIONS(1609), 1, - sym_identifier, - ACTIONS(1611), 1, - anon_sym_getline, - ACTIONS(1613), 1, - anon_sym_SLASH, - ACTIONS(1617), 1, - anon_sym_AT, - STATE(743), 1, - sym_ns_qualified_name, - STATE(998), 1, - sym_array_ref, - STATE(1165), 1, - sym_field_ref, - STATE(1373), 1, - sym__binary_in, - STATE(1955), 1, - sym_namespace, - ACTIONS(384), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1615), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1475), 19, + STATE(462), 10, sym__getline_exp, sym_getline_input, sym_getline_file, sym__exp, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, sym_update_exp, sym_assignment_exp, sym_piped_io_exp, - sym_string_concat, sym_regex, sym_regex_constant, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, sym_indirect_func_call, - [38737] = 19, - ACTIONS(123), 1, - aux_sym_number_token1, - ACTIONS(286), 1, - aux_sym_number_token2, - ACTIONS(288), 1, - anon_sym_DQUOTE, - ACTIONS(362), 1, + [37140] = 20, + ACTIONS(1285), 1, sym_identifier, - ACTIONS(366), 1, + ACTIONS(1287), 1, anon_sym_LPAREN, - ACTIONS(376), 1, + ACTIONS(1289), 1, anon_sym_getline, - ACTIONS(382), 1, + ACTIONS(1291), 1, anon_sym_SLASH, - ACTIONS(386), 1, + ACTIONS(1295), 1, anon_sym_BANG, - ACTIONS(390), 1, + ACTIONS(1299), 1, anon_sym_DOLLAR, - ACTIONS(392), 1, + ACTIONS(1301), 1, anon_sym_AT, - STATE(744), 1, + ACTIONS(1303), 1, + aux_sym_number_token1, + ACTIONS(1305), 1, + aux_sym_number_token2, + ACTIONS(1307), 1, + anon_sym_DQUOTE, + STATE(717), 1, + aux_sym_exp_list_repeat1, + STATE(1093), 1, sym_ns_qualified_name, - STATE(1022), 1, + STATE(1142), 1, sym_array_ref, - STATE(1121), 1, + STATE(1251), 1, sym_field_ref, - STATE(1373), 1, + STATE(1510), 1, sym__binary_in, - STATE(1955), 1, + STATE(2080), 1, sym_namespace, - ACTIONS(384), 2, + ACTIONS(1293), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(388), 2, + ACTIONS(1297), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1470), 9, + STATE(1505), 9, sym_ternary_exp, sym_binary_exp, sym_unary_exp, @@ -57803,7 +56897,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_string, sym_func_call, - STATE(1503), 10, + STATE(1572), 10, sym__getline_exp, sym_getline_input, sym_getline_file, @@ -57814,215 +56908,166 @@ static const uint16_t ts_small_parse_table[] = { sym_regex, sym_regex_constant, sym_indirect_func_call, - [38814] = 18, - ACTIONS(25), 1, - anon_sym_DOLLAR, - ACTIONS(1619), 1, - sym_identifier, - ACTIONS(1621), 1, + [37220] = 20, + ACTIONS(1287), 1, anon_sym_LPAREN, - ACTIONS(1623), 1, + ACTIONS(1289), 1, anon_sym_getline, - ACTIONS(1625), 1, + ACTIONS(1291), 1, anon_sym_SLASH, - ACTIONS(1629), 1, + ACTIONS(1295), 1, anon_sym_BANG, - ACTIONS(1633), 1, + ACTIONS(1299), 1, + anon_sym_DOLLAR, + ACTIONS(1301), 1, anon_sym_AT, - ACTIONS(1635), 1, + ACTIONS(1303), 1, aux_sym_number_token1, - ACTIONS(1637), 1, + ACTIONS(1305), 1, aux_sym_number_token2, - ACTIONS(1639), 1, + ACTIONS(1307), 1, anon_sym_DQUOTE, - STATE(293), 1, - sym_ns_qualified_name, - STATE(302), 1, + ACTIONS(1545), 1, + sym_identifier, + ACTIONS(1547), 1, + anon_sym_SEMI, + STATE(1142), 1, sym_array_ref, - STATE(331), 1, - sym__binary_in, - STATE(334), 1, + STATE(1251), 1, sym_field_ref, - STATE(2075), 1, + STATE(1297), 1, + sym_ns_qualified_name, + STATE(1510), 1, + sym__binary_in, + STATE(2080), 1, sym_namespace, - ACTIONS(1627), 2, + ACTIONS(1293), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1631), 2, + ACTIONS(1297), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(330), 19, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, + STATE(1505), 9, sym_ternary_exp, sym_binary_exp, sym_unary_exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, sym_string_concat, - sym_regex, - sym_regex_constant, sym_grouping, sym__primitive, sym_number, sym_string, sym_func_call, - sym_indirect_func_call, - [38889] = 18, - ACTIONS(390), 1, - anon_sym_DOLLAR, - ACTIONS(1557), 1, - sym_identifier, - ACTIONS(1573), 1, - aux_sym_number_token1, - ACTIONS(1575), 1, - aux_sym_number_token2, - ACTIONS(1577), 1, - anon_sym_DQUOTE, - ACTIONS(1641), 1, - anon_sym_LPAREN, - ACTIONS(1643), 1, - anon_sym_getline, - ACTIONS(1645), 1, - anon_sym_SLASH, - ACTIONS(1649), 1, - anon_sym_BANG, - ACTIONS(1653), 1, - anon_sym_AT, - STATE(181), 1, - sym_ns_qualified_name, - STATE(208), 1, - sym_array_ref, - STATE(235), 1, - sym__binary_in, - STATE(236), 1, - sym_field_ref, - STATE(1955), 1, - sym_namespace, - ACTIONS(1647), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1651), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(230), 19, + STATE(1644), 10, sym__getline_exp, sym_getline_input, sym_getline_file, sym__exp, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, sym_update_exp, sym_assignment_exp, sym_piped_io_exp, - sym_string_concat, sym_regex, sym_regex_constant, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, sym_indirect_func_call, - [38964] = 18, - ACTIONS(79), 1, - aux_sym_number_token1, - ACTIONS(486), 1, - aux_sym_number_token2, - ACTIONS(488), 1, - anon_sym_DQUOTE, - ACTIONS(552), 1, + [37300] = 20, + ACTIONS(1287), 1, anon_sym_LPAREN, - ACTIONS(556), 1, - anon_sym_BANG, - ACTIONS(560), 1, - anon_sym_DOLLAR, - ACTIONS(1589), 1, - sym_identifier, - ACTIONS(1591), 1, + ACTIONS(1289), 1, anon_sym_getline, - ACTIONS(1593), 1, + ACTIONS(1291), 1, anon_sym_SLASH, - ACTIONS(1597), 1, + ACTIONS(1295), 1, + anon_sym_BANG, + ACTIONS(1299), 1, + anon_sym_DOLLAR, + ACTIONS(1301), 1, anon_sym_AT, - STATE(593), 1, - sym_ns_qualified_name, - STATE(606), 1, + ACTIONS(1303), 1, + aux_sym_number_token1, + ACTIONS(1305), 1, + aux_sym_number_token2, + ACTIONS(1307), 1, + anon_sym_DQUOTE, + ACTIONS(1549), 1, + sym_identifier, + ACTIONS(1551), 1, + anon_sym_SEMI, + STATE(1142), 1, sym_array_ref, - STATE(628), 1, + STATE(1251), 1, sym_field_ref, - STATE(1309), 1, + STATE(1281), 1, + sym_ns_qualified_name, + STATE(1510), 1, sym__binary_in, - STATE(2063), 1, + STATE(2080), 1, sym_namespace, - ACTIONS(71), 2, + ACTIONS(1293), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1595), 2, + ACTIONS(1297), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1357), 19, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, + STATE(1505), 9, sym_ternary_exp, sym_binary_exp, sym_unary_exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, sym_string_concat, - sym_regex, - sym_regex_constant, sym_grouping, sym__primitive, sym_number, sym_string, sym_func_call, + STATE(1660), 10, + sym__getline_exp, + sym_getline_input, + sym_getline_file, + sym__exp, + sym_update_exp, + sym_assignment_exp, + sym_piped_io_exp, + sym_regex, + sym_regex_constant, sym_indirect_func_call, - [39039] = 19, - ACTIONS(304), 1, + [37380] = 20, + ACTIONS(1287), 1, anon_sym_LPAREN, - ACTIONS(328), 1, + ACTIONS(1289), 1, + anon_sym_getline, + ACTIONS(1291), 1, + anon_sym_SLASH, + ACTIONS(1295), 1, anon_sym_BANG, - ACTIONS(332), 1, + ACTIONS(1299), 1, anon_sym_DOLLAR, - ACTIONS(336), 1, + ACTIONS(1301), 1, + anon_sym_AT, + ACTIONS(1303), 1, aux_sym_number_token1, - ACTIONS(338), 1, + ACTIONS(1305), 1, aux_sym_number_token2, - ACTIONS(340), 1, + ACTIONS(1307), 1, anon_sym_DQUOTE, - ACTIONS(1273), 1, - anon_sym_getline, - ACTIONS(1275), 1, - anon_sym_SLASH, - ACTIONS(1285), 1, - anon_sym_AT, - ACTIONS(1655), 1, + ACTIONS(1553), 1, sym_identifier, - STATE(179), 1, + ACTIONS(1555), 1, + anon_sym_SEMI, + STATE(1142), 1, sym_array_ref, - STATE(189), 1, + STATE(1251), 1, sym_field_ref, - STATE(211), 1, + STATE(1290), 1, sym_ns_qualified_name, - STATE(369), 1, + STATE(1510), 1, sym__binary_in, - STATE(2063), 1, + STATE(2080), 1, sym_namespace, - ACTIONS(326), 2, + ACTIONS(1293), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1281), 2, + ACTIONS(1297), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(390), 9, + STATE(1505), 9, sym_ternary_exp, sym_binary_exp, sym_unary_exp, @@ -58032,7 +57077,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_string, sym_func_call, - STATE(1686), 10, + STATE(1669), 10, sym__getline_exp, sym_getline_input, sym_getline_file, @@ -58043,44 +57088,91 @@ static const uint16_t ts_small_parse_table[] = { sym_regex, sym_regex_constant, sym_indirect_func_call, - [39116] = 18, - ACTIONS(79), 1, + [37460] = 8, + ACTIONS(696), 1, + anon_sym_EQ, + ACTIONS(908), 1, + anon_sym_LBRACK, + ACTIONS(1453), 1, + anon_sym_LPAREN2, + ACTIONS(906), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(658), 6, + sym_concatenating_space, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(983), 6, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + ACTIONS(642), 9, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(652), 12, + anon_sym_in, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [37515] = 18, + ACTIONS(169), 1, aux_sym_number_token1, - ACTIONS(486), 1, + ACTIONS(306), 1, aux_sym_number_token2, - ACTIONS(488), 1, + ACTIONS(308), 1, anon_sym_DQUOTE, - ACTIONS(552), 1, + ACTIONS(434), 1, anon_sym_LPAREN, - ACTIONS(556), 1, + ACTIONS(440), 1, anon_sym_BANG, - ACTIONS(560), 1, + ACTIONS(444), 1, anon_sym_DOLLAR, - ACTIONS(1589), 1, + ACTIONS(1557), 1, sym_identifier, - ACTIONS(1591), 1, + ACTIONS(1559), 1, anon_sym_getline, - ACTIONS(1593), 1, + ACTIONS(1561), 1, anon_sym_SLASH, - ACTIONS(1597), 1, + ACTIONS(1565), 1, anon_sym_AT, - STATE(593), 1, - sym_ns_qualified_name, STATE(606), 1, + sym_ns_qualified_name, + STATE(611), 1, sym_array_ref, - STATE(628), 1, + STATE(686), 1, sym_field_ref, - STATE(1309), 1, + STATE(1385), 1, sym__binary_in, - STATE(2063), 1, + STATE(1956), 1, sym_namespace, - ACTIONS(71), 2, + ACTIONS(161), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1595), 2, + ACTIONS(1563), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1355), 19, + STATE(1413), 19, sym__getline_exp, sym_getline_input, sym_getline_file, @@ -58100,101 +57192,102 @@ static const uint16_t ts_small_parse_table[] = { sym_string, sym_func_call, sym_indirect_func_call, - [39191] = 18, - ACTIONS(79), 1, + [37590] = 19, + ACTIONS(169), 1, aux_sym_number_token1, - ACTIONS(486), 1, - aux_sym_number_token2, - ACTIONS(488), 1, - anon_sym_DQUOTE, - ACTIONS(552), 1, - anon_sym_LPAREN, - ACTIONS(556), 1, - anon_sym_BANG, - ACTIONS(560), 1, - anon_sym_DOLLAR, - ACTIONS(1589), 1, + ACTIONS(270), 1, sym_identifier, - ACTIONS(1591), 1, + ACTIONS(276), 1, + anon_sym_LPAREN, + ACTIONS(288), 1, anon_sym_getline, - ACTIONS(1593), 1, + ACTIONS(294), 1, anon_sym_SLASH, - ACTIONS(1597), 1, + ACTIONS(298), 1, + anon_sym_BANG, + ACTIONS(302), 1, + anon_sym_DOLLAR, + ACTIONS(304), 1, anon_sym_AT, - STATE(593), 1, + ACTIONS(306), 1, + aux_sym_number_token2, + ACTIONS(308), 1, + anon_sym_DQUOTE, + STATE(720), 1, sym_ns_qualified_name, - STATE(606), 1, + STATE(991), 1, sym_array_ref, - STATE(628), 1, + STATE(1194), 1, sym_field_ref, - STATE(1309), 1, + STATE(1385), 1, sym__binary_in, - STATE(2063), 1, + STATE(1956), 1, sym_namespace, - ACTIONS(71), 2, + ACTIONS(296), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1595), 2, + ACTIONS(300), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1353), 19, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, + STATE(1476), 9, sym_ternary_exp, sym_binary_exp, sym_unary_exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, sym_string_concat, - sym_regex, - sym_regex_constant, sym_grouping, sym__primitive, sym_number, sym_string, sym_func_call, + STATE(1509), 10, + sym__getline_exp, + sym_getline_input, + sym_getline_file, + sym__exp, + sym_update_exp, + sym_assignment_exp, + sym_piped_io_exp, + sym_regex, + sym_regex_constant, sym_indirect_func_call, - [39266] = 18, - ACTIONS(390), 1, + [37667] = 18, + ACTIONS(534), 1, + anon_sym_LPAREN, + ACTIONS(554), 1, + anon_sym_BANG, + ACTIONS(558), 1, anon_sym_DOLLAR, - ACTIONS(1557), 1, - sym_identifier, - ACTIONS(1573), 1, + ACTIONS(562), 1, aux_sym_number_token1, - ACTIONS(1575), 1, + ACTIONS(564), 1, aux_sym_number_token2, - ACTIONS(1577), 1, + ACTIONS(566), 1, anon_sym_DQUOTE, - ACTIONS(1641), 1, - anon_sym_LPAREN, - ACTIONS(1643), 1, + ACTIONS(1567), 1, + sym_identifier, + ACTIONS(1569), 1, anon_sym_getline, - ACTIONS(1645), 1, + ACTIONS(1571), 1, anon_sym_SLASH, - ACTIONS(1649), 1, - anon_sym_BANG, - ACTIONS(1653), 1, + ACTIONS(1575), 1, anon_sym_AT, - STATE(181), 1, + STATE(191), 1, sym_ns_qualified_name, - STATE(208), 1, + STATE(238), 1, sym_array_ref, - STATE(235), 1, - sym__binary_in, - STATE(236), 1, + STATE(264), 1, sym_field_ref, - STATE(1955), 1, + STATE(373), 1, + sym__binary_in, + STATE(2068), 1, sym_namespace, - ACTIONS(1647), 2, + ACTIONS(552), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1651), 2, + ACTIONS(1573), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(242), 19, + STATE(400), 19, sym__getline_exp, sym_getline_input, sym_getline_file, @@ -58214,255 +57307,158 @@ static const uint16_t ts_small_parse_table[] = { sym_string, sym_func_call, sym_indirect_func_call, - [39341] = 19, - ACTIONS(1269), 1, - sym_identifier, - ACTIONS(1271), 1, + [37742] = 18, + ACTIONS(534), 1, anon_sym_LPAREN, - ACTIONS(1273), 1, - anon_sym_getline, - ACTIONS(1275), 1, - anon_sym_SLASH, - ACTIONS(1279), 1, + ACTIONS(554), 1, anon_sym_BANG, - ACTIONS(1283), 1, + ACTIONS(558), 1, anon_sym_DOLLAR, - ACTIONS(1285), 1, - anon_sym_AT, - ACTIONS(1287), 1, + ACTIONS(562), 1, aux_sym_number_token1, - ACTIONS(1289), 1, + ACTIONS(564), 1, aux_sym_number_token2, - ACTIONS(1291), 1, + ACTIONS(566), 1, anon_sym_DQUOTE, - STATE(1067), 1, + ACTIONS(1567), 1, + sym_identifier, + ACTIONS(1569), 1, + anon_sym_getline, + ACTIONS(1571), 1, + anon_sym_SLASH, + ACTIONS(1575), 1, + anon_sym_AT, + STATE(191), 1, sym_ns_qualified_name, - STATE(1137), 1, + STATE(238), 1, sym_array_ref, - STATE(1231), 1, + STATE(264), 1, sym_field_ref, - STATE(1502), 1, + STATE(373), 1, sym__binary_in, - STATE(2075), 1, + STATE(2068), 1, sym_namespace, - ACTIONS(1277), 2, + ACTIONS(552), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1281), 2, + ACTIONS(1573), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1500), 9, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_string_concat, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - STATE(1661), 10, + STATE(357), 19, sym__getline_exp, sym_getline_input, sym_getline_file, sym__exp, + sym_ternary_exp, + sym_binary_exp, + sym_unary_exp, sym_update_exp, sym_assignment_exp, sym_piped_io_exp, + sym_string_concat, sym_regex, sym_regex_constant, + sym_grouping, + sym__primitive, + sym_number, + sym_string, + sym_func_call, sym_indirect_func_call, - [39418] = 18, - ACTIONS(304), 1, + [37817] = 18, + ACTIONS(534), 1, anon_sym_LPAREN, - ACTIONS(328), 1, + ACTIONS(554), 1, anon_sym_BANG, - ACTIONS(332), 1, + ACTIONS(558), 1, anon_sym_DOLLAR, - ACTIONS(336), 1, + ACTIONS(562), 1, aux_sym_number_token1, - ACTIONS(338), 1, + ACTIONS(564), 1, aux_sym_number_token2, - ACTIONS(340), 1, + ACTIONS(566), 1, anon_sym_DQUOTE, - ACTIONS(1579), 1, + ACTIONS(1567), 1, sym_identifier, - ACTIONS(1581), 1, + ACTIONS(1569), 1, anon_sym_getline, - ACTIONS(1583), 1, + ACTIONS(1571), 1, anon_sym_SLASH, - ACTIONS(1587), 1, + ACTIONS(1575), 1, anon_sym_AT, - STATE(203), 1, + STATE(191), 1, sym_ns_qualified_name, - STATE(225), 1, + STATE(238), 1, sym_array_ref, - STATE(262), 1, + STATE(264), 1, sym_field_ref, - STATE(369), 1, + STATE(373), 1, sym__binary_in, - STATE(2063), 1, + STATE(2068), 1, sym_namespace, - ACTIONS(326), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1585), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(373), 19, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_string_concat, - sym_regex, - sym_regex_constant, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - sym_indirect_func_call, - [39493] = 11, - ACTIONS(1657), 1, - anon_sym_in, - ACTIONS(1661), 1, - anon_sym_QMARK, - ACTIONS(1671), 1, - anon_sym_AMP_AMP, - ACTIONS(1673), 1, - anon_sym_PIPE_PIPE, - ACTIONS(878), 2, - sym_concatenating_space, - sym__if_else_separator, - ACTIONS(1663), 2, - anon_sym_CARET, - anon_sym_STAR_STAR, - ACTIONS(1667), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1669), 2, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(1665), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1659), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(876), 17, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_while, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - [39554] = 7, - ACTIONS(870), 2, - sym_concatenating_space, - sym__if_else_separator, - ACTIONS(1663), 2, - anon_sym_CARET, - anon_sym_STAR_STAR, - ACTIONS(1667), 2, + ACTIONS(552), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1669), 2, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(1665), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1659), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(868), 21, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_while, - anon_sym_in, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - [39607] = 18, - ACTIONS(482), 1, - anon_sym_DOLLAR, - ACTIONS(1675), 1, - sym_identifier, - ACTIONS(1677), 1, + ACTIONS(1573), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(355), 19, + sym__getline_exp, + sym_getline_input, + sym_getline_file, + sym__exp, + sym_ternary_exp, + sym_binary_exp, + sym_unary_exp, + sym_update_exp, + sym_assignment_exp, + sym_piped_io_exp, + sym_string_concat, + sym_regex, + sym_regex_constant, + sym_grouping, + sym__primitive, + sym_number, + sym_string, + sym_func_call, + sym_indirect_func_call, + [37892] = 18, + ACTIONS(534), 1, anon_sym_LPAREN, - ACTIONS(1679), 1, - anon_sym_getline, - ACTIONS(1681), 1, - anon_sym_SLASH, - ACTIONS(1685), 1, + ACTIONS(554), 1, anon_sym_BANG, - ACTIONS(1689), 1, - anon_sym_AT, - ACTIONS(1691), 1, + ACTIONS(558), 1, + anon_sym_DOLLAR, + ACTIONS(562), 1, aux_sym_number_token1, - ACTIONS(1693), 1, + ACTIONS(564), 1, aux_sym_number_token2, - ACTIONS(1695), 1, + ACTIONS(566), 1, anon_sym_DQUOTE, - STATE(163), 1, + ACTIONS(1567), 1, + sym_identifier, + ACTIONS(1569), 1, + anon_sym_getline, + ACTIONS(1571), 1, + anon_sym_SLASH, + ACTIONS(1575), 1, + anon_sym_AT, + STATE(191), 1, sym_ns_qualified_name, - STATE(169), 1, + STATE(238), 1, sym_array_ref, - STATE(200), 1, - sym__binary_in, - STATE(202), 1, + STATE(264), 1, sym_field_ref, - STATE(2063), 1, + STATE(373), 1, + sym__binary_in, + STATE(2068), 1, sym_namespace, - ACTIONS(1683), 2, + ACTIONS(552), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1687), 2, + ACTIONS(1573), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(803), 19, + STATE(358), 19, sym__getline_exp, sym_getline_input, sym_getline_file, @@ -58482,44 +57478,44 @@ static const uint16_t ts_small_parse_table[] = { sym_string, sym_func_call, sym_indirect_func_call, - [39682] = 18, - ACTIONS(482), 1, - anon_sym_DOLLAR, - ACTIONS(1675), 1, - sym_identifier, - ACTIONS(1677), 1, + [37967] = 18, + ACTIONS(534), 1, anon_sym_LPAREN, - ACTIONS(1679), 1, - anon_sym_getline, - ACTIONS(1681), 1, - anon_sym_SLASH, - ACTIONS(1685), 1, + ACTIONS(554), 1, anon_sym_BANG, - ACTIONS(1689), 1, - anon_sym_AT, - ACTIONS(1691), 1, + ACTIONS(558), 1, + anon_sym_DOLLAR, + ACTIONS(562), 1, aux_sym_number_token1, - ACTIONS(1693), 1, + ACTIONS(564), 1, aux_sym_number_token2, - ACTIONS(1695), 1, + ACTIONS(566), 1, anon_sym_DQUOTE, - STATE(163), 1, + ACTIONS(1567), 1, + sym_identifier, + ACTIONS(1569), 1, + anon_sym_getline, + ACTIONS(1571), 1, + anon_sym_SLASH, + ACTIONS(1575), 1, + anon_sym_AT, + STATE(191), 1, sym_ns_qualified_name, - STATE(169), 1, + STATE(238), 1, sym_array_ref, - STATE(200), 1, - sym__binary_in, - STATE(202), 1, + STATE(264), 1, sym_field_ref, - STATE(2063), 1, + STATE(373), 1, + sym__binary_in, + STATE(2068), 1, sym_namespace, - ACTIONS(1683), 2, + ACTIONS(552), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1687), 2, + ACTIONS(1573), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(804), 19, + STATE(363), 19, sym__getline_exp, sym_getline_input, sym_getline_file, @@ -58539,92 +57535,101 @@ static const uint16_t ts_small_parse_table[] = { sym_string, sym_func_call, sym_indirect_func_call, - [39757] = 9, - ACTIONS(1657), 1, - anon_sym_in, - ACTIONS(1671), 1, - anon_sym_AMP_AMP, - ACTIONS(794), 2, - sym_concatenating_space, - sym__if_else_separator, - ACTIONS(1663), 2, - anon_sym_CARET, - anon_sym_STAR_STAR, - ACTIONS(1667), 2, + [38042] = 18, + ACTIONS(534), 1, + anon_sym_LPAREN, + ACTIONS(554), 1, + anon_sym_BANG, + ACTIONS(558), 1, + anon_sym_DOLLAR, + ACTIONS(562), 1, + aux_sym_number_token1, + ACTIONS(564), 1, + aux_sym_number_token2, + ACTIONS(566), 1, + anon_sym_DQUOTE, + ACTIONS(1567), 1, + sym_identifier, + ACTIONS(1569), 1, + anon_sym_getline, + ACTIONS(1571), 1, + anon_sym_SLASH, + ACTIONS(1575), 1, + anon_sym_AT, + STATE(191), 1, + sym_ns_qualified_name, + STATE(238), 1, + sym_array_ref, + STATE(264), 1, + sym_field_ref, + STATE(373), 1, + sym__binary_in, + STATE(2068), 1, + sym_namespace, + ACTIONS(552), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1669), 2, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(1665), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1659), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(792), 19, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_while, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_PIPE_PIPE, + ACTIONS(1573), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - [39814] = 18, - ACTIONS(304), 1, + STATE(364), 19, + sym__getline_exp, + sym_getline_input, + sym_getline_file, + sym__exp, + sym_ternary_exp, + sym_binary_exp, + sym_unary_exp, + sym_update_exp, + sym_assignment_exp, + sym_piped_io_exp, + sym_string_concat, + sym_regex, + sym_regex_constant, + sym_grouping, + sym__primitive, + sym_number, + sym_string, + sym_func_call, + sym_indirect_func_call, + [38117] = 18, + ACTIONS(534), 1, anon_sym_LPAREN, - ACTIONS(328), 1, + ACTIONS(554), 1, anon_sym_BANG, - ACTIONS(332), 1, + ACTIONS(558), 1, anon_sym_DOLLAR, - ACTIONS(336), 1, + ACTIONS(562), 1, aux_sym_number_token1, - ACTIONS(338), 1, + ACTIONS(564), 1, aux_sym_number_token2, - ACTIONS(340), 1, + ACTIONS(566), 1, anon_sym_DQUOTE, - ACTIONS(1579), 1, + ACTIONS(1567), 1, sym_identifier, - ACTIONS(1581), 1, + ACTIONS(1569), 1, anon_sym_getline, - ACTIONS(1583), 1, + ACTIONS(1571), 1, anon_sym_SLASH, - ACTIONS(1587), 1, + ACTIONS(1575), 1, anon_sym_AT, - STATE(203), 1, + STATE(191), 1, sym_ns_qualified_name, - STATE(225), 1, + STATE(238), 1, sym_array_ref, - STATE(262), 1, + STATE(264), 1, sym_field_ref, - STATE(369), 1, + STATE(373), 1, sym__binary_in, - STATE(2063), 1, + STATE(2068), 1, sym_namespace, - ACTIONS(326), 2, + ACTIONS(552), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1585), 2, + ACTIONS(1573), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(359), 19, + STATE(380), 19, sym__getline_exp, sym_getline_input, sym_getline_file, @@ -58644,44 +57649,44 @@ static const uint16_t ts_small_parse_table[] = { sym_string, sym_func_call, sym_indirect_func_call, - [39889] = 18, - ACTIONS(79), 1, - aux_sym_number_token1, - ACTIONS(486), 1, - aux_sym_number_token2, - ACTIONS(488), 1, - anon_sym_DQUOTE, - ACTIONS(552), 1, + [38192] = 18, + ACTIONS(534), 1, anon_sym_LPAREN, - ACTIONS(556), 1, + ACTIONS(554), 1, anon_sym_BANG, - ACTIONS(560), 1, + ACTIONS(558), 1, anon_sym_DOLLAR, - ACTIONS(1589), 1, + ACTIONS(562), 1, + aux_sym_number_token1, + ACTIONS(564), 1, + aux_sym_number_token2, + ACTIONS(566), 1, + anon_sym_DQUOTE, + ACTIONS(1567), 1, sym_identifier, - ACTIONS(1591), 1, + ACTIONS(1569), 1, anon_sym_getline, - ACTIONS(1593), 1, + ACTIONS(1571), 1, anon_sym_SLASH, - ACTIONS(1597), 1, + ACTIONS(1575), 1, anon_sym_AT, - STATE(593), 1, + STATE(191), 1, sym_ns_qualified_name, - STATE(606), 1, + STATE(238), 1, sym_array_ref, - STATE(628), 1, + STATE(264), 1, sym_field_ref, - STATE(1309), 1, + STATE(373), 1, sym__binary_in, - STATE(2063), 1, + STATE(2068), 1, sym_namespace, - ACTIONS(71), 2, + ACTIONS(552), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1595), 2, + ACTIONS(1573), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1349), 19, + STATE(362), 19, sym__getline_exp, sym_getline_input, sym_getline_file, @@ -58701,44 +57706,102 @@ static const uint16_t ts_small_parse_table[] = { sym_string, sym_func_call, sym_indirect_func_call, - [39964] = 18, - ACTIONS(79), 1, + [38267] = 19, + ACTIONS(1285), 1, + sym_identifier, + ACTIONS(1287), 1, + anon_sym_LPAREN, + ACTIONS(1289), 1, + anon_sym_getline, + ACTIONS(1291), 1, + anon_sym_SLASH, + ACTIONS(1295), 1, + anon_sym_BANG, + ACTIONS(1299), 1, + anon_sym_DOLLAR, + ACTIONS(1301), 1, + anon_sym_AT, + ACTIONS(1303), 1, aux_sym_number_token1, - ACTIONS(486), 1, + ACTIONS(1305), 1, aux_sym_number_token2, - ACTIONS(488), 1, + ACTIONS(1307), 1, anon_sym_DQUOTE, - ACTIONS(552), 1, + STATE(1093), 1, + sym_ns_qualified_name, + STATE(1142), 1, + sym_array_ref, + STATE(1251), 1, + sym_field_ref, + STATE(1510), 1, + sym__binary_in, + STATE(2080), 1, + sym_namespace, + ACTIONS(1293), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1297), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1505), 9, + sym_ternary_exp, + sym_binary_exp, + sym_unary_exp, + sym_string_concat, + sym_grouping, + sym__primitive, + sym_number, + sym_string, + sym_func_call, + STATE(1654), 10, + sym__getline_exp, + sym_getline_input, + sym_getline_file, + sym__exp, + sym_update_exp, + sym_assignment_exp, + sym_piped_io_exp, + sym_regex, + sym_regex_constant, + sym_indirect_func_call, + [38344] = 18, + ACTIONS(79), 1, + aux_sym_number_token1, + ACTIONS(312), 1, anon_sym_LPAREN, - ACTIONS(556), 1, + ACTIONS(320), 1, anon_sym_BANG, - ACTIONS(560), 1, + ACTIONS(324), 1, anon_sym_DOLLAR, - ACTIONS(1589), 1, + ACTIONS(328), 1, + aux_sym_number_token2, + ACTIONS(330), 1, + anon_sym_DQUOTE, + ACTIONS(1577), 1, sym_identifier, - ACTIONS(1591), 1, + ACTIONS(1579), 1, anon_sym_getline, - ACTIONS(1593), 1, + ACTIONS(1581), 1, anon_sym_SLASH, - ACTIONS(1597), 1, + ACTIONS(1585), 1, anon_sym_AT, - STATE(593), 1, + STATE(591), 1, sym_ns_qualified_name, - STATE(606), 1, + STATE(605), 1, sym_array_ref, STATE(628), 1, sym_field_ref, - STATE(1309), 1, + STATE(1305), 1, sym__binary_in, - STATE(2063), 1, + STATE(2068), 1, sym_namespace, ACTIONS(71), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1595), 2, + ACTIONS(1583), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1343), 19, + STATE(1374), 19, sym__getline_exp, sym_getline_input, sym_getline_file, @@ -58758,44 +57821,44 @@ static const uint16_t ts_small_parse_table[] = { sym_string, sym_func_call, sym_indirect_func_call, - [40039] = 19, - ACTIONS(1269), 1, + [38419] = 19, + ACTIONS(169), 1, + aux_sym_number_token1, + ACTIONS(270), 1, sym_identifier, - ACTIONS(1271), 1, + ACTIONS(276), 1, anon_sym_LPAREN, - ACTIONS(1273), 1, + ACTIONS(288), 1, anon_sym_getline, - ACTIONS(1275), 1, + ACTIONS(294), 1, anon_sym_SLASH, - ACTIONS(1279), 1, + ACTIONS(298), 1, anon_sym_BANG, - ACTIONS(1283), 1, + ACTIONS(302), 1, anon_sym_DOLLAR, - ACTIONS(1285), 1, + ACTIONS(304), 1, anon_sym_AT, - ACTIONS(1287), 1, - aux_sym_number_token1, - ACTIONS(1289), 1, + ACTIONS(306), 1, aux_sym_number_token2, - ACTIONS(1291), 1, + ACTIONS(308), 1, anon_sym_DQUOTE, - STATE(1067), 1, + STATE(720), 1, sym_ns_qualified_name, - STATE(1137), 1, + STATE(991), 1, sym_array_ref, - STATE(1231), 1, + STATE(1194), 1, sym_field_ref, - STATE(1502), 1, + STATE(1385), 1, sym__binary_in, - STATE(2075), 1, + STATE(1956), 1, sym_namespace, - ACTIONS(1277), 2, + ACTIONS(296), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1281), 2, + ACTIONS(300), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1500), 9, + STATE(1476), 9, sym_ternary_exp, sym_binary_exp, sym_unary_exp, @@ -58805,7 +57868,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_string, sym_func_call, - STATE(1641), 10, + STATE(1412), 10, sym__getline_exp, sym_getline_input, sym_getline_file, @@ -58816,44 +57879,44 @@ static const uint16_t ts_small_parse_table[] = { sym_regex, sym_regex_constant, sym_indirect_func_call, - [40116] = 18, - ACTIONS(123), 1, + [38496] = 18, + ACTIONS(79), 1, aux_sym_number_token1, - ACTIONS(272), 1, + ACTIONS(312), 1, anon_sym_LPAREN, - ACTIONS(278), 1, + ACTIONS(320), 1, anon_sym_BANG, - ACTIONS(282), 1, + ACTIONS(324), 1, anon_sym_DOLLAR, - ACTIONS(286), 1, + ACTIONS(328), 1, aux_sym_number_token2, - ACTIONS(288), 1, + ACTIONS(330), 1, anon_sym_DQUOTE, - ACTIONS(1697), 1, + ACTIONS(1577), 1, sym_identifier, - ACTIONS(1699), 1, + ACTIONS(1579), 1, anon_sym_getline, - ACTIONS(1701), 1, + ACTIONS(1581), 1, anon_sym_SLASH, - ACTIONS(1705), 1, + ACTIONS(1585), 1, anon_sym_AT, - STATE(598), 1, + STATE(591), 1, sym_ns_qualified_name, - STATE(622), 1, + STATE(605), 1, sym_array_ref, - STATE(684), 1, + STATE(628), 1, sym_field_ref, - STATE(1373), 1, + STATE(1305), 1, sym__binary_in, - STATE(1955), 1, + STATE(2068), 1, sym_namespace, - ACTIONS(115), 2, + ACTIONS(71), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1703), 2, + ACTIONS(1583), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1359), 19, + STATE(1307), 19, sym__getline_exp, sym_getline_input, sym_getline_file, @@ -58873,44 +57936,44 @@ static const uint16_t ts_small_parse_table[] = { sym_string, sym_func_call, sym_indirect_func_call, - [40191] = 18, - ACTIONS(123), 1, - aux_sym_number_token1, - ACTIONS(272), 1, + [38571] = 18, + ACTIONS(11), 1, anon_sym_LPAREN, - ACTIONS(278), 1, + ACTIONS(21), 1, anon_sym_BANG, - ACTIONS(282), 1, + ACTIONS(25), 1, anon_sym_DOLLAR, - ACTIONS(286), 1, + ACTIONS(29), 1, + aux_sym_number_token1, + ACTIONS(31), 1, aux_sym_number_token2, - ACTIONS(288), 1, + ACTIONS(33), 1, anon_sym_DQUOTE, - ACTIONS(1697), 1, + ACTIONS(1587), 1, sym_identifier, - ACTIONS(1699), 1, + ACTIONS(1589), 1, anon_sym_getline, - ACTIONS(1701), 1, + ACTIONS(1591), 1, anon_sym_SLASH, - ACTIONS(1705), 1, + ACTIONS(1595), 1, anon_sym_AT, - STATE(598), 1, + STATE(425), 1, sym_ns_qualified_name, - STATE(622), 1, + STATE(467), 1, sym_array_ref, - STATE(684), 1, + STATE(490), 1, sym_field_ref, - STATE(1373), 1, + STATE(539), 1, sym__binary_in, - STATE(1955), 1, + STATE(2080), 1, sym_namespace, - ACTIONS(115), 2, + ACTIONS(19), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1703), 2, + ACTIONS(1593), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1396), 19, + STATE(565), 19, sym__getline_exp, sym_getline_input, sym_getline_file, @@ -58930,44 +57993,44 @@ static const uint16_t ts_small_parse_table[] = { sym_string, sym_func_call, sym_indirect_func_call, - [40266] = 18, - ACTIONS(123), 1, + [38646] = 18, + ACTIONS(79), 1, aux_sym_number_token1, - ACTIONS(272), 1, + ACTIONS(312), 1, anon_sym_LPAREN, - ACTIONS(278), 1, + ACTIONS(320), 1, anon_sym_BANG, - ACTIONS(282), 1, + ACTIONS(324), 1, anon_sym_DOLLAR, - ACTIONS(286), 1, + ACTIONS(328), 1, aux_sym_number_token2, - ACTIONS(288), 1, + ACTIONS(330), 1, anon_sym_DQUOTE, - ACTIONS(1697), 1, + ACTIONS(1577), 1, sym_identifier, - ACTIONS(1699), 1, + ACTIONS(1579), 1, anon_sym_getline, - ACTIONS(1701), 1, + ACTIONS(1581), 1, anon_sym_SLASH, - ACTIONS(1705), 1, + ACTIONS(1585), 1, anon_sym_AT, - STATE(598), 1, + STATE(591), 1, sym_ns_qualified_name, - STATE(622), 1, + STATE(605), 1, sym_array_ref, - STATE(684), 1, + STATE(628), 1, sym_field_ref, - STATE(1373), 1, + STATE(1305), 1, sym__binary_in, - STATE(1955), 1, + STATE(2068), 1, sym_namespace, - ACTIONS(115), 2, + ACTIONS(71), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1703), 2, + ACTIONS(1583), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1344), 19, + STATE(1373), 19, sym__getline_exp, sym_getline_input, sym_getline_file, @@ -58987,44 +58050,44 @@ static const uint16_t ts_small_parse_table[] = { sym_string, sym_func_call, sym_indirect_func_call, - [40341] = 19, - ACTIONS(123), 1, - aux_sym_number_token1, - ACTIONS(286), 1, - aux_sym_number_token2, - ACTIONS(288), 1, - anon_sym_DQUOTE, - ACTIONS(362), 1, + [38721] = 19, + ACTIONS(1285), 1, sym_identifier, - ACTIONS(366), 1, + ACTIONS(1287), 1, anon_sym_LPAREN, - ACTIONS(376), 1, + ACTIONS(1289), 1, anon_sym_getline, - ACTIONS(382), 1, + ACTIONS(1291), 1, anon_sym_SLASH, - ACTIONS(386), 1, + ACTIONS(1295), 1, anon_sym_BANG, - ACTIONS(390), 1, + ACTIONS(1299), 1, anon_sym_DOLLAR, - ACTIONS(392), 1, + ACTIONS(1301), 1, anon_sym_AT, - STATE(744), 1, + ACTIONS(1303), 1, + aux_sym_number_token1, + ACTIONS(1305), 1, + aux_sym_number_token2, + ACTIONS(1307), 1, + anon_sym_DQUOTE, + STATE(1093), 1, sym_ns_qualified_name, - STATE(1022), 1, + STATE(1142), 1, sym_array_ref, - STATE(1121), 1, + STATE(1251), 1, sym_field_ref, - STATE(1373), 1, + STATE(1510), 1, sym__binary_in, - STATE(1955), 1, + STATE(2080), 1, sym_namespace, - ACTIONS(384), 2, + ACTIONS(1293), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(388), 2, + ACTIONS(1297), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1470), 9, + STATE(1505), 9, sym_ternary_exp, sym_binary_exp, sym_unary_exp, @@ -59034,7 +58097,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_string, sym_func_call, - STATE(1399), 10, + STATE(1670), 10, sym__getline_exp, sym_getline_input, sym_getline_file, @@ -59045,44 +58108,44 @@ static const uint16_t ts_small_parse_table[] = { sym_regex, sym_regex_constant, sym_indirect_func_call, - [40418] = 18, - ACTIONS(482), 1, + [38798] = 18, + ACTIONS(79), 1, + aux_sym_number_token1, + ACTIONS(312), 1, + anon_sym_LPAREN, + ACTIONS(320), 1, + anon_sym_BANG, + ACTIONS(324), 1, anon_sym_DOLLAR, - ACTIONS(1675), 1, + ACTIONS(328), 1, + aux_sym_number_token2, + ACTIONS(330), 1, + anon_sym_DQUOTE, + ACTIONS(1577), 1, sym_identifier, - ACTIONS(1677), 1, - anon_sym_LPAREN, - ACTIONS(1679), 1, + ACTIONS(1579), 1, anon_sym_getline, - ACTIONS(1681), 1, + ACTIONS(1581), 1, anon_sym_SLASH, - ACTIONS(1685), 1, - anon_sym_BANG, - ACTIONS(1689), 1, + ACTIONS(1585), 1, anon_sym_AT, - ACTIONS(1691), 1, - aux_sym_number_token1, - ACTIONS(1693), 1, - aux_sym_number_token2, - ACTIONS(1695), 1, - anon_sym_DQUOTE, - STATE(163), 1, + STATE(591), 1, sym_ns_qualified_name, - STATE(169), 1, + STATE(605), 1, sym_array_ref, - STATE(200), 1, - sym__binary_in, - STATE(202), 1, + STATE(628), 1, sym_field_ref, - STATE(2063), 1, + STATE(1305), 1, + sym__binary_in, + STATE(2068), 1, sym_namespace, - ACTIONS(1683), 2, + ACTIONS(71), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1687), 2, + ACTIONS(1583), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(183), 19, + STATE(1372), 19, sym__getline_exp, sym_getline_input, sym_getline_file, @@ -59102,44 +58165,44 @@ static const uint16_t ts_small_parse_table[] = { sym_string, sym_func_call, sym_indirect_func_call, - [40493] = 18, - ACTIONS(482), 1, + [38873] = 18, + ACTIONS(302), 1, anon_sym_DOLLAR, - ACTIONS(1675), 1, + ACTIONS(1597), 1, sym_identifier, - ACTIONS(1677), 1, + ACTIONS(1599), 1, anon_sym_LPAREN, - ACTIONS(1679), 1, + ACTIONS(1601), 1, anon_sym_getline, - ACTIONS(1681), 1, + ACTIONS(1603), 1, anon_sym_SLASH, - ACTIONS(1685), 1, + ACTIONS(1607), 1, anon_sym_BANG, - ACTIONS(1689), 1, + ACTIONS(1611), 1, anon_sym_AT, - ACTIONS(1691), 1, + ACTIONS(1613), 1, aux_sym_number_token1, - ACTIONS(1693), 1, + ACTIONS(1615), 1, aux_sym_number_token2, - ACTIONS(1695), 1, + ACTIONS(1617), 1, anon_sym_DQUOTE, - STATE(163), 1, + STATE(165), 1, sym_ns_qualified_name, - STATE(169), 1, + STATE(216), 1, sym_array_ref, - STATE(200), 1, - sym__binary_in, - STATE(202), 1, + STATE(233), 1, sym_field_ref, - STATE(2063), 1, + STATE(234), 1, + sym__binary_in, + STATE(1956), 1, sym_namespace, - ACTIONS(1683), 2, + ACTIONS(1605), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1687), 2, + ACTIONS(1609), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(197), 19, + STATE(231), 19, sym__getline_exp, sym_getline_input, sym_getline_file, @@ -59159,44 +58222,102 @@ static const uint16_t ts_small_parse_table[] = { sym_string, sym_func_call, sym_indirect_func_call, - [40568] = 18, - ACTIONS(161), 1, - anon_sym_DOLLAR, - ACTIONS(1557), 1, + [38948] = 19, + ACTIONS(1285), 1, sym_identifier, - ACTIONS(1573), 1, + ACTIONS(1287), 1, + anon_sym_LPAREN, + ACTIONS(1289), 1, + anon_sym_getline, + ACTIONS(1291), 1, + anon_sym_SLASH, + ACTIONS(1295), 1, + anon_sym_BANG, + ACTIONS(1299), 1, + anon_sym_DOLLAR, + ACTIONS(1301), 1, + anon_sym_AT, + ACTIONS(1303), 1, aux_sym_number_token1, - ACTIONS(1575), 1, + ACTIONS(1305), 1, aux_sym_number_token2, - ACTIONS(1577), 1, + ACTIONS(1307), 1, anon_sym_DQUOTE, - ACTIONS(1707), 1, + STATE(1093), 1, + sym_ns_qualified_name, + STATE(1142), 1, + sym_array_ref, + STATE(1251), 1, + sym_field_ref, + STATE(1510), 1, + sym__binary_in, + STATE(2080), 1, + sym_namespace, + ACTIONS(1293), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1297), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1505), 9, + sym_ternary_exp, + sym_binary_exp, + sym_unary_exp, + sym_string_concat, + sym_grouping, + sym__primitive, + sym_number, + sym_string, + sym_func_call, + STATE(1601), 10, + sym__getline_exp, + sym_getline_input, + sym_getline_file, + sym__exp, + sym_update_exp, + sym_assignment_exp, + sym_piped_io_exp, + sym_regex, + sym_regex_constant, + sym_indirect_func_call, + [39025] = 18, + ACTIONS(89), 1, anon_sym_LPAREN, - ACTIONS(1709), 1, + ACTIONS(121), 1, + anon_sym_BANG, + ACTIONS(125), 1, + anon_sym_DOLLAR, + ACTIONS(129), 1, + aux_sym_number_token1, + ACTIONS(131), 1, + aux_sym_number_token2, + ACTIONS(133), 1, + anon_sym_DQUOTE, + ACTIONS(1619), 1, + sym_identifier, + ACTIONS(1621), 1, anon_sym_getline, - ACTIONS(1711), 1, + ACTIONS(1623), 1, anon_sym_SLASH, - ACTIONS(1715), 1, - anon_sym_BANG, - ACTIONS(1719), 1, + ACTIONS(1627), 1, anon_sym_AT, - STATE(181), 1, + STATE(247), 1, sym_ns_qualified_name, - STATE(208), 1, + STATE(263), 1, sym_array_ref, - STATE(235), 1, - sym__binary_in, - STATE(236), 1, + STATE(279), 1, sym_field_ref, - STATE(1955), 1, + STATE(426), 1, + sym__binary_in, + STATE(1956), 1, sym_namespace, - ACTIONS(1713), 2, + ACTIONS(119), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1717), 2, + ACTIONS(1625), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(278), 19, + STATE(421), 19, sym__getline_exp, sym_getline_input, sym_getline_file, @@ -59216,44 +58337,101 @@ static const uint16_t ts_small_parse_table[] = { sym_string, sym_func_call, sym_indirect_func_call, - [40643] = 18, - ACTIONS(131), 1, + [39100] = 18, + ACTIONS(89), 1, anon_sym_LPAREN, - ACTIONS(157), 1, + ACTIONS(121), 1, anon_sym_BANG, - ACTIONS(161), 1, + ACTIONS(125), 1, anon_sym_DOLLAR, - ACTIONS(165), 1, + ACTIONS(129), 1, aux_sym_number_token1, - ACTIONS(167), 1, + ACTIONS(131), 1, aux_sym_number_token2, - ACTIONS(169), 1, + ACTIONS(133), 1, anon_sym_DQUOTE, - ACTIONS(1721), 1, + ACTIONS(1619), 1, sym_identifier, - ACTIONS(1723), 1, + ACTIONS(1621), 1, anon_sym_getline, - ACTIONS(1725), 1, + ACTIONS(1623), 1, anon_sym_SLASH, - ACTIONS(1729), 1, + ACTIONS(1627), 1, anon_sym_AT, - STATE(250), 1, + STATE(247), 1, sym_ns_qualified_name, - STATE(268), 1, + STATE(263), 1, sym_array_ref, - STATE(276), 1, + STATE(279), 1, sym_field_ref, - STATE(446), 1, + STATE(426), 1, + sym__binary_in, + STATE(1956), 1, + sym_namespace, + ACTIONS(119), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1625), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(420), 19, + sym__getline_exp, + sym_getline_input, + sym_getline_file, + sym__exp, + sym_ternary_exp, + sym_binary_exp, + sym_unary_exp, + sym_update_exp, + sym_assignment_exp, + sym_piped_io_exp, + sym_string_concat, + sym_regex, + sym_regex_constant, + sym_grouping, + sym__primitive, + sym_number, + sym_string, + sym_func_call, + sym_indirect_func_call, + [39175] = 18, + ACTIONS(25), 1, + anon_sym_DOLLAR, + ACTIONS(1629), 1, + sym_identifier, + ACTIONS(1631), 1, + anon_sym_LPAREN, + ACTIONS(1633), 1, + anon_sym_getline, + ACTIONS(1635), 1, + anon_sym_SLASH, + ACTIONS(1639), 1, + anon_sym_BANG, + ACTIONS(1643), 1, + anon_sym_AT, + ACTIONS(1645), 1, + aux_sym_number_token1, + ACTIONS(1647), 1, + aux_sym_number_token2, + ACTIONS(1649), 1, + anon_sym_DQUOTE, + STATE(288), 1, + sym_ns_qualified_name, + STATE(308), 1, + sym_array_ref, + STATE(328), 1, sym__binary_in, - STATE(1955), 1, + STATE(331), 1, + sym_field_ref, + STATE(2080), 1, sym_namespace, - ACTIONS(155), 2, + ACTIONS(1637), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1727), 2, + ACTIONS(1641), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(431), 19, + STATE(349), 19, sym__getline_exp, sym_getline_input, sym_getline_file, @@ -59273,48 +58451,47 @@ static const uint16_t ts_small_parse_table[] = { sym_string, sym_func_call, sym_indirect_func_call, - [40718] = 12, - ACTIONS(1657), 1, + [39250] = 11, + ACTIONS(1651), 1, anon_sym_in, - ACTIONS(1661), 1, + ACTIONS(1655), 1, anon_sym_QMARK, - ACTIONS(1671), 1, + ACTIONS(1665), 1, anon_sym_AMP_AMP, - ACTIONS(1673), 1, + ACTIONS(1667), 1, anon_sym_PIPE_PIPE, - ACTIONS(866), 2, + ACTIONS(878), 2, sym_concatenating_space, sym__if_else_separator, - ACTIONS(1309), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(1663), 2, + ACTIONS(1657), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(1667), 2, + ACTIONS(1661), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1669), 2, + ACTIONS(1663), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(1665), 3, + ACTIONS(1659), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1659), 6, + ACTIONS(1653), 6, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(854), 15, + ACTIONS(876), 17, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, anon_sym_while, anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_EQ, @@ -59324,102 +58501,101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_CARET_EQ, - [40781] = 19, - ACTIONS(39), 1, - sym_identifier, - ACTIONS(63), 1, - anon_sym_getline, + [39311] = 18, ACTIONS(79), 1, aux_sym_number_token1, - ACTIONS(486), 1, - aux_sym_number_token2, - ACTIONS(488), 1, - anon_sym_DQUOTE, - ACTIONS(552), 1, + ACTIONS(312), 1, anon_sym_LPAREN, - ACTIONS(554), 1, - anon_sym_SLASH, - ACTIONS(556), 1, + ACTIONS(320), 1, anon_sym_BANG, - ACTIONS(560), 1, + ACTIONS(324), 1, anon_sym_DOLLAR, - ACTIONS(562), 1, + ACTIONS(328), 1, + aux_sym_number_token2, + ACTIONS(330), 1, + anon_sym_DQUOTE, + ACTIONS(1577), 1, + sym_identifier, + ACTIONS(1579), 1, + anon_sym_getline, + ACTIONS(1581), 1, + anon_sym_SLASH, + ACTIONS(1585), 1, anon_sym_AT, - STATE(592), 1, + STATE(591), 1, sym_ns_qualified_name, - STATE(603), 1, + STATE(605), 1, sym_array_ref, - STATE(619), 1, + STATE(628), 1, sym_field_ref, - STATE(1309), 1, + STATE(1305), 1, sym__binary_in, - STATE(2063), 1, + STATE(2068), 1, sym_namespace, ACTIONS(71), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(558), 2, + ACTIONS(1583), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1354), 9, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_string_concat, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - STATE(1365), 10, + STATE(1377), 19, sym__getline_exp, sym_getline_input, sym_getline_file, sym__exp, + sym_ternary_exp, + sym_binary_exp, + sym_unary_exp, sym_update_exp, sym_assignment_exp, sym_piped_io_exp, + sym_string_concat, sym_regex, sym_regex_constant, + sym_grouping, + sym__primitive, + sym_number, + sym_string, + sym_func_call, sym_indirect_func_call, - [40858] = 19, - ACTIONS(39), 1, + [39386] = 19, + ACTIONS(1285), 1, sym_identifier, - ACTIONS(63), 1, - anon_sym_getline, - ACTIONS(79), 1, - aux_sym_number_token1, - ACTIONS(486), 1, - aux_sym_number_token2, - ACTIONS(488), 1, - anon_sym_DQUOTE, - ACTIONS(552), 1, + ACTIONS(1287), 1, anon_sym_LPAREN, - ACTIONS(554), 1, + ACTIONS(1289), 1, + anon_sym_getline, + ACTIONS(1291), 1, anon_sym_SLASH, - ACTIONS(556), 1, + ACTIONS(1295), 1, anon_sym_BANG, - ACTIONS(560), 1, + ACTIONS(1299), 1, anon_sym_DOLLAR, - ACTIONS(562), 1, + ACTIONS(1301), 1, anon_sym_AT, - STATE(592), 1, + ACTIONS(1303), 1, + aux_sym_number_token1, + ACTIONS(1305), 1, + aux_sym_number_token2, + ACTIONS(1307), 1, + anon_sym_DQUOTE, + STATE(1093), 1, sym_ns_qualified_name, - STATE(603), 1, + STATE(1142), 1, sym_array_ref, - STATE(619), 1, + STATE(1251), 1, sym_field_ref, - STATE(1309), 1, + STATE(1510), 1, sym__binary_in, - STATE(2063), 1, + STATE(2080), 1, sym_namespace, - ACTIONS(71), 2, + ACTIONS(1293), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(558), 2, + ACTIONS(1297), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1354), 9, + STATE(1505), 9, sym_ternary_exp, sym_binary_exp, sym_unary_exp, @@ -59429,7 +58605,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_string, sym_func_call, - STATE(1402), 10, + STATE(1665), 10, sym__getline_exp, sym_getline_input, sym_getline_file, @@ -59440,91 +58616,101 @@ static const uint16_t ts_small_parse_table[] = { sym_regex, sym_regex_constant, sym_indirect_func_call, - [40935] = 8, - ACTIONS(1657), 1, - anon_sym_in, - ACTIONS(794), 2, - sym_concatenating_space, - sym__if_else_separator, - ACTIONS(1663), 2, - anon_sym_CARET, - anon_sym_STAR_STAR, - ACTIONS(1667), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1669), 2, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(1665), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1659), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(792), 20, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_while, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - [40990] = 19, - ACTIONS(39), 1, + [39463] = 18, + ACTIONS(324), 1, + anon_sym_DOLLAR, + ACTIONS(1669), 1, sym_identifier, - ACTIONS(63), 1, + ACTIONS(1671), 1, + anon_sym_LPAREN, + ACTIONS(1673), 1, anon_sym_getline, - ACTIONS(79), 1, + ACTIONS(1675), 1, + anon_sym_SLASH, + ACTIONS(1679), 1, + anon_sym_BANG, + ACTIONS(1683), 1, + anon_sym_AT, + ACTIONS(1685), 1, aux_sym_number_token1, - ACTIONS(486), 1, + ACTIONS(1687), 1, aux_sym_number_token2, - ACTIONS(488), 1, + ACTIONS(1689), 1, anon_sym_DQUOTE, - ACTIONS(552), 1, + STATE(164), 1, + sym_ns_qualified_name, + STATE(176), 1, + sym_array_ref, + STATE(192), 1, + sym_field_ref, + STATE(194), 1, + sym__binary_in, + STATE(2068), 1, + sym_namespace, + ACTIONS(1677), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1681), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(199), 19, + sym__getline_exp, + sym_getline_input, + sym_getline_file, + sym__exp, + sym_ternary_exp, + sym_binary_exp, + sym_unary_exp, + sym_update_exp, + sym_assignment_exp, + sym_piped_io_exp, + sym_string_concat, + sym_regex, + sym_regex_constant, + sym_grouping, + sym__primitive, + sym_number, + sym_string, + sym_func_call, + sym_indirect_func_call, + [39538] = 19, + ACTIONS(534), 1, anon_sym_LPAREN, ACTIONS(554), 1, - anon_sym_SLASH, - ACTIONS(556), 1, anon_sym_BANG, - ACTIONS(560), 1, + ACTIONS(558), 1, anon_sym_DOLLAR, ACTIONS(562), 1, + aux_sym_number_token1, + ACTIONS(564), 1, + aux_sym_number_token2, + ACTIONS(566), 1, + anon_sym_DQUOTE, + ACTIONS(1289), 1, + anon_sym_getline, + ACTIONS(1291), 1, + anon_sym_SLASH, + ACTIONS(1301), 1, anon_sym_AT, - STATE(592), 1, - sym_ns_qualified_name, - STATE(603), 1, + ACTIONS(1691), 1, + sym_identifier, + STATE(168), 1, sym_array_ref, - STATE(619), 1, + STATE(213), 1, sym_field_ref, - STATE(1309), 1, + STATE(214), 1, + sym_ns_qualified_name, + STATE(373), 1, sym__binary_in, - STATE(2063), 1, + STATE(2068), 1, sym_namespace, - ACTIONS(71), 2, + ACTIONS(552), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(558), 2, + ACTIONS(1297), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1354), 9, + STATE(383), 9, sym_ternary_exp, sym_binary_exp, sym_unary_exp, @@ -59534,7 +58720,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_string, sym_func_call, - STATE(1386), 10, + STATE(1683), 10, sym__getline_exp, sym_getline_input, sym_getline_file, @@ -59545,44 +58731,44 @@ static const uint16_t ts_small_parse_table[] = { sym_regex, sym_regex_constant, sym_indirect_func_call, - [41067] = 18, - ACTIONS(161), 1, - anon_sym_DOLLAR, - ACTIONS(1557), 1, - sym_identifier, - ACTIONS(1573), 1, + [39615] = 18, + ACTIONS(79), 1, aux_sym_number_token1, - ACTIONS(1575), 1, + ACTIONS(312), 1, + anon_sym_LPAREN, + ACTIONS(320), 1, + anon_sym_BANG, + ACTIONS(324), 1, + anon_sym_DOLLAR, + ACTIONS(328), 1, aux_sym_number_token2, - ACTIONS(1577), 1, + ACTIONS(330), 1, anon_sym_DQUOTE, - ACTIONS(1707), 1, - anon_sym_LPAREN, - ACTIONS(1709), 1, + ACTIONS(1577), 1, + sym_identifier, + ACTIONS(1579), 1, anon_sym_getline, - ACTIONS(1711), 1, + ACTIONS(1581), 1, anon_sym_SLASH, - ACTIONS(1715), 1, - anon_sym_BANG, - ACTIONS(1719), 1, + ACTIONS(1585), 1, anon_sym_AT, - STATE(181), 1, + STATE(591), 1, sym_ns_qualified_name, - STATE(208), 1, + STATE(605), 1, sym_array_ref, - STATE(235), 1, - sym__binary_in, - STATE(236), 1, + STATE(628), 1, sym_field_ref, - STATE(1955), 1, + STATE(1305), 1, + sym__binary_in, + STATE(2068), 1, sym_namespace, - ACTIONS(1713), 2, + ACTIONS(71), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1717), 2, + ACTIONS(1583), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(275), 19, + STATE(1376), 19, sym__getline_exp, sym_getline_input, sym_getline_file, @@ -59602,101 +58788,102 @@ static const uint16_t ts_small_parse_table[] = { sym_string, sym_func_call, sym_indirect_func_call, - [41142] = 18, - ACTIONS(79), 1, - aux_sym_number_token1, - ACTIONS(486), 1, - aux_sym_number_token2, - ACTIONS(488), 1, - anon_sym_DQUOTE, - ACTIONS(552), 1, - anon_sym_LPAREN, - ACTIONS(556), 1, - anon_sym_BANG, - ACTIONS(560), 1, - anon_sym_DOLLAR, - ACTIONS(1589), 1, + [39690] = 19, + ACTIONS(85), 1, sym_identifier, - ACTIONS(1591), 1, + ACTIONS(89), 1, + anon_sym_LPAREN, + ACTIONS(111), 1, anon_sym_getline, - ACTIONS(1593), 1, + ACTIONS(117), 1, anon_sym_SLASH, - ACTIONS(1597), 1, + ACTIONS(121), 1, + anon_sym_BANG, + ACTIONS(125), 1, + anon_sym_DOLLAR, + ACTIONS(127), 1, anon_sym_AT, - STATE(593), 1, + ACTIONS(129), 1, + aux_sym_number_token1, + ACTIONS(131), 1, + aux_sym_number_token2, + ACTIONS(133), 1, + anon_sym_DQUOTE, + STATE(244), 1, sym_ns_qualified_name, - STATE(606), 1, + STATE(268), 1, sym_array_ref, - STATE(628), 1, + STATE(274), 1, sym_field_ref, - STATE(1309), 1, + STATE(426), 1, sym__binary_in, - STATE(2063), 1, + STATE(1956), 1, sym_namespace, - ACTIONS(71), 2, + ACTIONS(119), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1595), 2, + ACTIONS(123), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1326), 19, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, + STATE(427), 9, sym_ternary_exp, sym_binary_exp, sym_unary_exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, sym_string_concat, - sym_regex, - sym_regex_constant, sym_grouping, sym__primitive, sym_number, sym_string, sym_func_call, + STATE(475), 10, + sym__getline_exp, + sym_getline_input, + sym_getline_file, + sym__exp, + sym_update_exp, + sym_assignment_exp, + sym_piped_io_exp, + sym_regex, + sym_regex_constant, sym_indirect_func_call, - [41217] = 18, - ACTIONS(79), 1, - aux_sym_number_token1, - ACTIONS(486), 1, - aux_sym_number_token2, - ACTIONS(488), 1, - anon_sym_DQUOTE, - ACTIONS(552), 1, + [39767] = 18, + ACTIONS(534), 1, anon_sym_LPAREN, - ACTIONS(556), 1, + ACTIONS(554), 1, anon_sym_BANG, - ACTIONS(560), 1, + ACTIONS(558), 1, anon_sym_DOLLAR, - ACTIONS(1589), 1, + ACTIONS(562), 1, + aux_sym_number_token1, + ACTIONS(564), 1, + aux_sym_number_token2, + ACTIONS(566), 1, + anon_sym_DQUOTE, + ACTIONS(1567), 1, sym_identifier, - ACTIONS(1591), 1, + ACTIONS(1569), 1, anon_sym_getline, - ACTIONS(1593), 1, + ACTIONS(1571), 1, anon_sym_SLASH, - ACTIONS(1597), 1, + ACTIONS(1575), 1, anon_sym_AT, - STATE(593), 1, + STATE(191), 1, sym_ns_qualified_name, - STATE(606), 1, + STATE(238), 1, sym_array_ref, - STATE(628), 1, + STATE(264), 1, sym_field_ref, - STATE(1309), 1, + STATE(373), 1, sym__binary_in, - STATE(2063), 1, + STATE(2068), 1, sym_namespace, - ACTIONS(71), 2, + ACTIONS(552), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1595), 2, + ACTIONS(1573), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1350), 19, + STATE(377), 19, sym__getline_exp, sym_getline_input, sym_getline_file, @@ -59716,28 +58903,31 @@ static const uint16_t ts_small_parse_table[] = { sym_string, sym_func_call, sym_indirect_func_call, - [41292] = 6, - ACTIONS(794), 2, + [39842] = 7, + ACTIONS(882), 2, sym_concatenating_space, sym__if_else_separator, - ACTIONS(1663), 2, + ACTIONS(1657), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(1667), 2, + ACTIONS(1661), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1665), 3, + ACTIONS(1663), 2, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(1659), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1659), 6, + ACTIONS(1653), 6, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(792), 23, + ACTIONS(880), 21, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -59748,8 +58938,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PIPE_AMP, anon_sym_QMARK, - anon_sym_TILDE, - anon_sym_BANG_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_PLUS, @@ -59761,44 +58949,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_CARET_EQ, - [41343] = 18, - ACTIONS(79), 1, + [39895] = 18, + ACTIONS(368), 1, + anon_sym_DOLLAR, + ACTIONS(1669), 1, + sym_identifier, + ACTIONS(1685), 1, aux_sym_number_token1, - ACTIONS(486), 1, + ACTIONS(1687), 1, aux_sym_number_token2, - ACTIONS(488), 1, + ACTIONS(1689), 1, anon_sym_DQUOTE, - ACTIONS(552), 1, + ACTIONS(1693), 1, anon_sym_LPAREN, - ACTIONS(556), 1, - anon_sym_BANG, - ACTIONS(560), 1, - anon_sym_DOLLAR, - ACTIONS(1589), 1, - sym_identifier, - ACTIONS(1591), 1, + ACTIONS(1695), 1, anon_sym_getline, - ACTIONS(1593), 1, + ACTIONS(1697), 1, anon_sym_SLASH, - ACTIONS(1597), 1, + ACTIONS(1701), 1, + anon_sym_BANG, + ACTIONS(1705), 1, anon_sym_AT, - STATE(593), 1, + STATE(164), 1, sym_ns_qualified_name, - STATE(606), 1, + STATE(176), 1, sym_array_ref, - STATE(628), 1, + STATE(192), 1, sym_field_ref, - STATE(1309), 1, + STATE(194), 1, sym__binary_in, - STATE(2063), 1, + STATE(2068), 1, sym_namespace, - ACTIONS(71), 2, + ACTIONS(1699), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1595), 2, + ACTIONS(1703), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1332), 19, + STATE(800), 19, sym__getline_exp, sym_getline_input, sym_getline_file, @@ -59818,44 +59006,149 @@ static const uint16_t ts_small_parse_table[] = { sym_string, sym_func_call, sym_indirect_func_call, - [41418] = 18, - ACTIONS(390), 1, + [39970] = 18, + ACTIONS(368), 1, anon_sym_DOLLAR, - ACTIONS(1557), 1, + ACTIONS(1669), 1, sym_identifier, - ACTIONS(1573), 1, + ACTIONS(1685), 1, aux_sym_number_token1, - ACTIONS(1575), 1, + ACTIONS(1687), 1, aux_sym_number_token2, - ACTIONS(1577), 1, + ACTIONS(1689), 1, anon_sym_DQUOTE, - ACTIONS(1641), 1, + ACTIONS(1693), 1, anon_sym_LPAREN, - ACTIONS(1643), 1, + ACTIONS(1695), 1, anon_sym_getline, - ACTIONS(1645), 1, + ACTIONS(1697), 1, anon_sym_SLASH, - ACTIONS(1649), 1, + ACTIONS(1701), 1, anon_sym_BANG, - ACTIONS(1653), 1, + ACTIONS(1705), 1, anon_sym_AT, - STATE(181), 1, + STATE(164), 1, sym_ns_qualified_name, - STATE(208), 1, + STATE(176), 1, sym_array_ref, - STATE(235), 1, + STATE(192), 1, + sym_field_ref, + STATE(194), 1, sym__binary_in, - STATE(236), 1, + STATE(2068), 1, + sym_namespace, + ACTIONS(1699), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1703), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(808), 19, + sym__getline_exp, + sym_getline_input, + sym_getline_file, + sym__exp, + sym_ternary_exp, + sym_binary_exp, + sym_unary_exp, + sym_update_exp, + sym_assignment_exp, + sym_piped_io_exp, + sym_string_concat, + sym_regex, + sym_regex_constant, + sym_grouping, + sym__primitive, + sym_number, + sym_string, + sym_func_call, + sym_indirect_func_call, + [40045] = 9, + ACTIONS(1651), 1, + anon_sym_in, + ACTIONS(1665), 1, + anon_sym_AMP_AMP, + ACTIONS(778), 2, + sym_concatenating_space, + sym__if_else_separator, + ACTIONS(1657), 2, + anon_sym_CARET, + anon_sym_STAR_STAR, + ACTIONS(1661), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1663), 2, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(1659), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1653), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(776), 19, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_while, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + [40102] = 18, + ACTIONS(324), 1, + anon_sym_DOLLAR, + ACTIONS(1669), 1, + sym_identifier, + ACTIONS(1671), 1, + anon_sym_LPAREN, + ACTIONS(1673), 1, + anon_sym_getline, + ACTIONS(1675), 1, + anon_sym_SLASH, + ACTIONS(1679), 1, + anon_sym_BANG, + ACTIONS(1683), 1, + anon_sym_AT, + ACTIONS(1685), 1, + aux_sym_number_token1, + ACTIONS(1687), 1, + aux_sym_number_token2, + ACTIONS(1689), 1, + anon_sym_DQUOTE, + STATE(164), 1, + sym_ns_qualified_name, + STATE(176), 1, + sym_array_ref, + STATE(192), 1, sym_field_ref, - STATE(1955), 1, + STATE(194), 1, + sym__binary_in, + STATE(2068), 1, sym_namespace, - ACTIONS(1647), 2, + ACTIONS(1677), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1651), 2, + ACTIONS(1681), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(229), 19, + STATE(609), 19, sym__getline_exp, sym_getline_input, sym_getline_file, @@ -59875,44 +59168,44 @@ static const uint16_t ts_small_parse_table[] = { sym_string, sym_func_call, sym_indirect_func_call, - [41493] = 18, - ACTIONS(1271), 1, + [40177] = 18, + ACTIONS(534), 1, anon_sym_LPAREN, - ACTIONS(1279), 1, + ACTIONS(554), 1, anon_sym_BANG, - ACTIONS(1283), 1, + ACTIONS(558), 1, anon_sym_DOLLAR, - ACTIONS(1287), 1, + ACTIONS(562), 1, aux_sym_number_token1, - ACTIONS(1289), 1, + ACTIONS(564), 1, aux_sym_number_token2, - ACTIONS(1291), 1, + ACTIONS(566), 1, anon_sym_DQUOTE, - ACTIONS(1731), 1, + ACTIONS(1567), 1, sym_identifier, - ACTIONS(1733), 1, + ACTIONS(1569), 1, anon_sym_getline, - ACTIONS(1735), 1, + ACTIONS(1571), 1, anon_sym_SLASH, - ACTIONS(1739), 1, + ACTIONS(1575), 1, anon_sym_AT, - STATE(1000), 1, + STATE(191), 1, sym_ns_qualified_name, - STATE(1168), 1, + STATE(238), 1, sym_array_ref, - STATE(1235), 1, + STATE(264), 1, sym_field_ref, - STATE(1502), 1, + STATE(373), 1, sym__binary_in, - STATE(2075), 1, + STATE(2068), 1, sym_namespace, - ACTIONS(1277), 2, + ACTIONS(552), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1737), 2, + ACTIONS(1573), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1529), 19, + STATE(389), 19, sym__getline_exp, sym_getline_input, sym_getline_file, @@ -59932,44 +59225,44 @@ static const uint16_t ts_small_parse_table[] = { sym_string, sym_func_call, sym_indirect_func_call, - [41568] = 18, - ACTIONS(131), 1, + [40252] = 18, + ACTIONS(11), 1, anon_sym_LPAREN, - ACTIONS(157), 1, + ACTIONS(21), 1, anon_sym_BANG, - ACTIONS(161), 1, + ACTIONS(25), 1, anon_sym_DOLLAR, - ACTIONS(165), 1, + ACTIONS(29), 1, aux_sym_number_token1, - ACTIONS(167), 1, + ACTIONS(31), 1, aux_sym_number_token2, - ACTIONS(169), 1, + ACTIONS(33), 1, anon_sym_DQUOTE, - ACTIONS(1721), 1, + ACTIONS(1587), 1, sym_identifier, - ACTIONS(1723), 1, + ACTIONS(1589), 1, anon_sym_getline, - ACTIONS(1725), 1, + ACTIONS(1591), 1, anon_sym_SLASH, - ACTIONS(1729), 1, + ACTIONS(1595), 1, anon_sym_AT, - STATE(250), 1, + STATE(425), 1, sym_ns_qualified_name, - STATE(268), 1, + STATE(467), 1, sym_array_ref, - STATE(276), 1, + STATE(490), 1, sym_field_ref, - STATE(446), 1, + STATE(539), 1, sym__binary_in, - STATE(1955), 1, + STATE(2080), 1, sym_namespace, - ACTIONS(155), 2, + ACTIONS(19), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1727), 2, + ACTIONS(1593), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(428), 19, + STATE(551), 19, sym__getline_exp, sym_getline_input, sym_getline_file, @@ -59989,44 +59282,44 @@ static const uint16_t ts_small_parse_table[] = { sym_string, sym_func_call, sym_indirect_func_call, - [41643] = 19, - ACTIONS(85), 1, + [40327] = 19, + ACTIONS(1285), 1, sym_identifier, - ACTIONS(107), 1, - anon_sym_getline, - ACTIONS(123), 1, - aux_sym_number_token1, - ACTIONS(272), 1, + ACTIONS(1287), 1, anon_sym_LPAREN, - ACTIONS(276), 1, + ACTIONS(1289), 1, + anon_sym_getline, + ACTIONS(1291), 1, anon_sym_SLASH, - ACTIONS(278), 1, + ACTIONS(1295), 1, anon_sym_BANG, - ACTIONS(282), 1, + ACTIONS(1299), 1, anon_sym_DOLLAR, - ACTIONS(284), 1, + ACTIONS(1301), 1, anon_sym_AT, - ACTIONS(286), 1, + ACTIONS(1303), 1, + aux_sym_number_token1, + ACTIONS(1305), 1, aux_sym_number_token2, - ACTIONS(288), 1, + ACTIONS(1307), 1, anon_sym_DQUOTE, - STATE(607), 1, + STATE(1093), 1, sym_ns_qualified_name, - STATE(610), 1, + STATE(1142), 1, sym_array_ref, - STATE(703), 1, + STATE(1251), 1, sym_field_ref, - STATE(1373), 1, + STATE(1510), 1, sym__binary_in, - STATE(1955), 1, + STATE(2080), 1, sym_namespace, - ACTIONS(115), 2, + ACTIONS(1293), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(280), 2, + ACTIONS(1297), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1421), 9, + STATE(1505), 9, sym_ternary_exp, sym_binary_exp, sym_unary_exp, @@ -60036,7 +59329,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_string, sym_func_call, - STATE(1489), 10, + STATE(1661), 10, sym__getline_exp, sym_getline_input, sym_getline_file, @@ -60047,101 +59340,102 @@ static const uint16_t ts_small_parse_table[] = { sym_regex, sym_regex_constant, sym_indirect_func_call, - [41720] = 18, - ACTIONS(332), 1, - anon_sym_DOLLAR, - ACTIONS(1675), 1, + [40404] = 19, + ACTIONS(1285), 1, sym_identifier, - ACTIONS(1691), 1, - aux_sym_number_token1, - ACTIONS(1693), 1, - aux_sym_number_token2, - ACTIONS(1695), 1, - anon_sym_DQUOTE, - ACTIONS(1741), 1, + ACTIONS(1287), 1, anon_sym_LPAREN, - ACTIONS(1743), 1, + ACTIONS(1289), 1, anon_sym_getline, - ACTIONS(1745), 1, + ACTIONS(1291), 1, anon_sym_SLASH, - ACTIONS(1749), 1, + ACTIONS(1295), 1, anon_sym_BANG, - ACTIONS(1753), 1, + ACTIONS(1299), 1, + anon_sym_DOLLAR, + ACTIONS(1301), 1, anon_sym_AT, - STATE(163), 1, + ACTIONS(1303), 1, + aux_sym_number_token1, + ACTIONS(1305), 1, + aux_sym_number_token2, + ACTIONS(1307), 1, + anon_sym_DQUOTE, + STATE(1093), 1, sym_ns_qualified_name, - STATE(169), 1, + STATE(1142), 1, sym_array_ref, - STATE(200), 1, - sym__binary_in, - STATE(202), 1, + STATE(1251), 1, sym_field_ref, - STATE(2063), 1, + STATE(1510), 1, + sym__binary_in, + STATE(2080), 1, sym_namespace, - ACTIONS(1747), 2, + ACTIONS(1293), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1751), 2, + ACTIONS(1297), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(251), 19, + STATE(1505), 9, + sym_ternary_exp, + sym_binary_exp, + sym_unary_exp, + sym_string_concat, + sym_grouping, + sym__primitive, + sym_number, + sym_string, + sym_func_call, + STATE(1672), 10, sym__getline_exp, sym_getline_input, sym_getline_file, sym__exp, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, sym_update_exp, sym_assignment_exp, sym_piped_io_exp, - sym_string_concat, sym_regex, sym_regex_constant, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, sym_indirect_func_call, - [41795] = 18, - ACTIONS(332), 1, + [40481] = 18, + ACTIONS(444), 1, anon_sym_DOLLAR, - ACTIONS(1675), 1, + ACTIONS(1597), 1, sym_identifier, - ACTIONS(1691), 1, + ACTIONS(1613), 1, aux_sym_number_token1, - ACTIONS(1693), 1, + ACTIONS(1615), 1, aux_sym_number_token2, - ACTIONS(1695), 1, + ACTIONS(1617), 1, anon_sym_DQUOTE, - ACTIONS(1741), 1, + ACTIONS(1707), 1, anon_sym_LPAREN, - ACTIONS(1743), 1, + ACTIONS(1709), 1, anon_sym_getline, - ACTIONS(1745), 1, + ACTIONS(1711), 1, anon_sym_SLASH, - ACTIONS(1749), 1, + ACTIONS(1715), 1, anon_sym_BANG, - ACTIONS(1753), 1, + ACTIONS(1719), 1, anon_sym_AT, - STATE(163), 1, + STATE(165), 1, sym_ns_qualified_name, - STATE(169), 1, + STATE(216), 1, sym_array_ref, - STATE(200), 1, - sym__binary_in, - STATE(202), 1, + STATE(233), 1, sym_field_ref, - STATE(2063), 1, + STATE(234), 1, + sym__binary_in, + STATE(1956), 1, sym_namespace, - ACTIONS(1747), 2, + ACTIONS(1713), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1751), 2, + ACTIONS(1717), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(263), 19, + STATE(679), 19, sym__getline_exp, sym_getline_input, sym_getline_file, @@ -60161,101 +59455,102 @@ static const uint16_t ts_small_parse_table[] = { sym_string, sym_func_call, sym_indirect_func_call, - [41870] = 18, - ACTIONS(332), 1, - anon_sym_DOLLAR, - ACTIONS(1675), 1, + [40556] = 19, + ACTIONS(1285), 1, sym_identifier, - ACTIONS(1691), 1, - aux_sym_number_token1, - ACTIONS(1693), 1, - aux_sym_number_token2, - ACTIONS(1695), 1, - anon_sym_DQUOTE, - ACTIONS(1741), 1, + ACTIONS(1287), 1, anon_sym_LPAREN, - ACTIONS(1743), 1, + ACTIONS(1289), 1, anon_sym_getline, - ACTIONS(1745), 1, + ACTIONS(1291), 1, anon_sym_SLASH, - ACTIONS(1749), 1, + ACTIONS(1295), 1, anon_sym_BANG, - ACTIONS(1753), 1, + ACTIONS(1299), 1, + anon_sym_DOLLAR, + ACTIONS(1301), 1, anon_sym_AT, - STATE(163), 1, + ACTIONS(1303), 1, + aux_sym_number_token1, + ACTIONS(1305), 1, + aux_sym_number_token2, + ACTIONS(1307), 1, + anon_sym_DQUOTE, + STATE(1093), 1, sym_ns_qualified_name, - STATE(169), 1, + STATE(1142), 1, sym_array_ref, - STATE(200), 1, - sym__binary_in, - STATE(202), 1, + STATE(1251), 1, sym_field_ref, - STATE(2063), 1, + STATE(1510), 1, + sym__binary_in, + STATE(2080), 1, sym_namespace, - ACTIONS(1747), 2, + ACTIONS(1293), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1751), 2, + ACTIONS(1297), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(201), 19, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, + STATE(1505), 9, sym_ternary_exp, sym_binary_exp, sym_unary_exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, sym_string_concat, - sym_regex, - sym_regex_constant, sym_grouping, sym__primitive, sym_number, sym_string, sym_func_call, + STATE(1622), 10, + sym__getline_exp, + sym_getline_input, + sym_getline_file, + sym__exp, + sym_update_exp, + sym_assignment_exp, + sym_piped_io_exp, + sym_regex, + sym_regex_constant, sym_indirect_func_call, - [41945] = 18, - ACTIONS(332), 1, - anon_sym_DOLLAR, - ACTIONS(1675), 1, - sym_identifier, - ACTIONS(1691), 1, + [40633] = 18, + ACTIONS(79), 1, aux_sym_number_token1, - ACTIONS(1693), 1, + ACTIONS(312), 1, + anon_sym_LPAREN, + ACTIONS(320), 1, + anon_sym_BANG, + ACTIONS(324), 1, + anon_sym_DOLLAR, + ACTIONS(328), 1, aux_sym_number_token2, - ACTIONS(1695), 1, + ACTIONS(330), 1, anon_sym_DQUOTE, - ACTIONS(1741), 1, - anon_sym_LPAREN, - ACTIONS(1743), 1, + ACTIONS(1577), 1, + sym_identifier, + ACTIONS(1579), 1, anon_sym_getline, - ACTIONS(1745), 1, + ACTIONS(1581), 1, anon_sym_SLASH, - ACTIONS(1749), 1, - anon_sym_BANG, - ACTIONS(1753), 1, + ACTIONS(1585), 1, anon_sym_AT, - STATE(163), 1, + STATE(591), 1, sym_ns_qualified_name, - STATE(169), 1, + STATE(605), 1, sym_array_ref, - STATE(200), 1, - sym__binary_in, - STATE(202), 1, + STATE(628), 1, sym_field_ref, - STATE(2063), 1, + STATE(1305), 1, + sym__binary_in, + STATE(2068), 1, sym_namespace, - ACTIONS(1747), 2, + ACTIONS(71), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1751), 2, + ACTIONS(1583), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(258), 19, + STATE(1378), 19, sym__getline_exp, sym_getline_input, sym_getline_file, @@ -60275,101 +59570,102 @@ static const uint16_t ts_small_parse_table[] = { sym_string, sym_func_call, sym_indirect_func_call, - [42020] = 18, - ACTIONS(332), 1, - anon_sym_DOLLAR, - ACTIONS(1675), 1, + [40708] = 19, + ACTIONS(1285), 1, sym_identifier, - ACTIONS(1691), 1, - aux_sym_number_token1, - ACTIONS(1693), 1, - aux_sym_number_token2, - ACTIONS(1695), 1, - anon_sym_DQUOTE, - ACTIONS(1741), 1, + ACTIONS(1287), 1, anon_sym_LPAREN, - ACTIONS(1743), 1, + ACTIONS(1289), 1, anon_sym_getline, - ACTIONS(1745), 1, + ACTIONS(1291), 1, anon_sym_SLASH, - ACTIONS(1749), 1, + ACTIONS(1295), 1, anon_sym_BANG, - ACTIONS(1753), 1, + ACTIONS(1299), 1, + anon_sym_DOLLAR, + ACTIONS(1301), 1, anon_sym_AT, - STATE(163), 1, + ACTIONS(1303), 1, + aux_sym_number_token1, + ACTIONS(1305), 1, + aux_sym_number_token2, + ACTIONS(1307), 1, + anon_sym_DQUOTE, + STATE(1093), 1, sym_ns_qualified_name, - STATE(169), 1, + STATE(1142), 1, sym_array_ref, - STATE(200), 1, - sym__binary_in, - STATE(202), 1, + STATE(1251), 1, sym_field_ref, - STATE(2063), 1, + STATE(1510), 1, + sym__binary_in, + STATE(2080), 1, sym_namespace, - ACTIONS(1747), 2, + ACTIONS(1293), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1751), 2, + ACTIONS(1297), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(255), 19, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, + STATE(1505), 9, sym_ternary_exp, sym_binary_exp, sym_unary_exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, sym_string_concat, - sym_regex, - sym_regex_constant, sym_grouping, sym__primitive, sym_number, sym_string, sym_func_call, + STATE(1657), 10, + sym__getline_exp, + sym_getline_input, + sym_getline_file, + sym__exp, + sym_update_exp, + sym_assignment_exp, + sym_piped_io_exp, + sym_regex, + sym_regex_constant, sym_indirect_func_call, - [42095] = 18, - ACTIONS(332), 1, + [40785] = 18, + ACTIONS(302), 1, anon_sym_DOLLAR, - ACTIONS(1675), 1, + ACTIONS(1597), 1, sym_identifier, - ACTIONS(1691), 1, - aux_sym_number_token1, - ACTIONS(1693), 1, - aux_sym_number_token2, - ACTIONS(1695), 1, - anon_sym_DQUOTE, - ACTIONS(1741), 1, + ACTIONS(1599), 1, anon_sym_LPAREN, - ACTIONS(1743), 1, + ACTIONS(1601), 1, anon_sym_getline, - ACTIONS(1745), 1, + ACTIONS(1603), 1, anon_sym_SLASH, - ACTIONS(1749), 1, + ACTIONS(1607), 1, anon_sym_BANG, - ACTIONS(1753), 1, + ACTIONS(1611), 1, anon_sym_AT, - STATE(163), 1, + ACTIONS(1613), 1, + aux_sym_number_token1, + ACTIONS(1615), 1, + aux_sym_number_token2, + ACTIONS(1617), 1, + anon_sym_DQUOTE, + STATE(165), 1, sym_ns_qualified_name, - STATE(169), 1, + STATE(216), 1, sym_array_ref, - STATE(200), 1, - sym__binary_in, - STATE(202), 1, + STATE(233), 1, sym_field_ref, - STATE(2063), 1, + STATE(234), 1, + sym__binary_in, + STATE(1956), 1, sym_namespace, - ACTIONS(1747), 2, + ACTIONS(1605), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1751), 2, + ACTIONS(1609), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(261), 19, + STATE(241), 19, sym__getline_exp, sym_getline_input, sym_getline_file, @@ -60389,44 +59685,44 @@ static const uint16_t ts_small_parse_table[] = { sym_string, sym_func_call, sym_indirect_func_call, - [42170] = 18, - ACTIONS(332), 1, + [40860] = 18, + ACTIONS(444), 1, anon_sym_DOLLAR, - ACTIONS(1675), 1, + ACTIONS(1597), 1, sym_identifier, - ACTIONS(1691), 1, + ACTIONS(1613), 1, aux_sym_number_token1, - ACTIONS(1693), 1, + ACTIONS(1615), 1, aux_sym_number_token2, - ACTIONS(1695), 1, + ACTIONS(1617), 1, anon_sym_DQUOTE, - ACTIONS(1741), 1, + ACTIONS(1707), 1, anon_sym_LPAREN, - ACTIONS(1743), 1, + ACTIONS(1709), 1, anon_sym_getline, - ACTIONS(1745), 1, + ACTIONS(1711), 1, anon_sym_SLASH, - ACTIONS(1749), 1, + ACTIONS(1715), 1, anon_sym_BANG, - ACTIONS(1753), 1, + ACTIONS(1719), 1, anon_sym_AT, - STATE(163), 1, + STATE(165), 1, sym_ns_qualified_name, - STATE(169), 1, + STATE(216), 1, sym_array_ref, - STATE(200), 1, - sym__binary_in, - STATE(202), 1, + STATE(233), 1, sym_field_ref, - STATE(2063), 1, + STATE(234), 1, + sym__binary_in, + STATE(1956), 1, sym_namespace, - ACTIONS(1747), 2, + ACTIONS(1713), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1751), 2, + ACTIONS(1717), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(265), 19, + STATE(237), 19, sym__getline_exp, sym_getline_input, sym_getline_file, @@ -60446,101 +59742,102 @@ static const uint16_t ts_small_parse_table[] = { sym_string, sym_func_call, sym_indirect_func_call, - [42245] = 18, - ACTIONS(332), 1, - anon_sym_DOLLAR, - ACTIONS(1675), 1, + [40935] = 19, + ACTIONS(5), 1, sym_identifier, - ACTIONS(1691), 1, - aux_sym_number_token1, - ACTIONS(1693), 1, - aux_sym_number_token2, - ACTIONS(1695), 1, - anon_sym_DQUOTE, - ACTIONS(1741), 1, + ACTIONS(11), 1, anon_sym_LPAREN, - ACTIONS(1743), 1, + ACTIONS(15), 1, anon_sym_getline, - ACTIONS(1745), 1, + ACTIONS(17), 1, anon_sym_SLASH, - ACTIONS(1749), 1, + ACTIONS(21), 1, anon_sym_BANG, - ACTIONS(1753), 1, + ACTIONS(25), 1, + anon_sym_DOLLAR, + ACTIONS(29), 1, + aux_sym_number_token1, + ACTIONS(31), 1, + aux_sym_number_token2, + ACTIONS(33), 1, + anon_sym_DQUOTE, + ACTIONS(1721), 1, anon_sym_AT, - STATE(163), 1, + STATE(433), 1, sym_ns_qualified_name, - STATE(169), 1, + STATE(459), 1, sym_array_ref, - STATE(200), 1, - sym__binary_in, - STATE(202), 1, + STATE(495), 1, sym_field_ref, - STATE(2063), 1, + STATE(539), 1, + sym__binary_in, + STATE(2080), 1, sym_namespace, - ACTIONS(1747), 2, + ACTIONS(19), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1751), 2, + ACTIONS(23), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(269), 19, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, + STATE(538), 9, sym_ternary_exp, sym_binary_exp, sym_unary_exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, sym_string_concat, - sym_regex, - sym_regex_constant, sym_grouping, sym__primitive, sym_number, sym_string, sym_func_call, + STATE(570), 10, + sym__getline_exp, + sym_getline_input, + sym_getline_file, + sym__exp, + sym_update_exp, + sym_assignment_exp, + sym_piped_io_exp, + sym_regex, + sym_regex_constant, sym_indirect_func_call, - [42320] = 18, - ACTIONS(161), 1, + [41012] = 18, + ACTIONS(89), 1, + anon_sym_LPAREN, + ACTIONS(121), 1, + anon_sym_BANG, + ACTIONS(125), 1, anon_sym_DOLLAR, - ACTIONS(1557), 1, - sym_identifier, - ACTIONS(1573), 1, + ACTIONS(129), 1, aux_sym_number_token1, - ACTIONS(1575), 1, + ACTIONS(131), 1, aux_sym_number_token2, - ACTIONS(1577), 1, + ACTIONS(133), 1, anon_sym_DQUOTE, - ACTIONS(1707), 1, - anon_sym_LPAREN, - ACTIONS(1709), 1, + ACTIONS(1619), 1, + sym_identifier, + ACTIONS(1621), 1, anon_sym_getline, - ACTIONS(1711), 1, + ACTIONS(1623), 1, anon_sym_SLASH, - ACTIONS(1715), 1, - anon_sym_BANG, - ACTIONS(1719), 1, + ACTIONS(1627), 1, anon_sym_AT, - STATE(181), 1, + STATE(247), 1, sym_ns_qualified_name, - STATE(208), 1, + STATE(263), 1, sym_array_ref, - STATE(235), 1, - sym__binary_in, - STATE(236), 1, + STATE(279), 1, sym_field_ref, - STATE(1955), 1, + STATE(426), 1, + sym__binary_in, + STATE(1956), 1, sym_namespace, - ACTIONS(1713), 2, + ACTIONS(119), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1717), 2, + ACTIONS(1625), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(277), 19, + STATE(419), 19, sym__getline_exp, sym_getline_input, sym_getline_file, @@ -60560,44 +59857,44 @@ static const uint16_t ts_small_parse_table[] = { sym_string, sym_func_call, sym_indirect_func_call, - [42395] = 18, - ACTIONS(161), 1, + [41087] = 18, + ACTIONS(89), 1, + anon_sym_LPAREN, + ACTIONS(121), 1, + anon_sym_BANG, + ACTIONS(125), 1, anon_sym_DOLLAR, - ACTIONS(1557), 1, - sym_identifier, - ACTIONS(1573), 1, + ACTIONS(129), 1, aux_sym_number_token1, - ACTIONS(1575), 1, + ACTIONS(131), 1, aux_sym_number_token2, - ACTIONS(1577), 1, + ACTIONS(133), 1, anon_sym_DQUOTE, - ACTIONS(1707), 1, - anon_sym_LPAREN, - ACTIONS(1709), 1, + ACTIONS(1619), 1, + sym_identifier, + ACTIONS(1621), 1, anon_sym_getline, - ACTIONS(1711), 1, + ACTIONS(1623), 1, anon_sym_SLASH, - ACTIONS(1715), 1, - anon_sym_BANG, - ACTIONS(1719), 1, + ACTIONS(1627), 1, anon_sym_AT, - STATE(181), 1, + STATE(247), 1, sym_ns_qualified_name, - STATE(208), 1, + STATE(263), 1, sym_array_ref, - STATE(235), 1, - sym__binary_in, - STATE(236), 1, + STATE(279), 1, sym_field_ref, - STATE(1955), 1, + STATE(426), 1, + sym__binary_in, + STATE(1956), 1, sym_namespace, - ACTIONS(1713), 2, + ACTIONS(119), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1717), 2, + ACTIONS(1625), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(281), 19, + STATE(408), 19, sym__getline_exp, sym_getline_input, sym_getline_file, @@ -60617,44 +59914,44 @@ static const uint16_t ts_small_parse_table[] = { sym_string, sym_func_call, sym_indirect_func_call, - [42470] = 18, - ACTIONS(131), 1, + [41162] = 18, + ACTIONS(89), 1, anon_sym_LPAREN, - ACTIONS(157), 1, + ACTIONS(121), 1, anon_sym_BANG, - ACTIONS(161), 1, + ACTIONS(125), 1, anon_sym_DOLLAR, - ACTIONS(165), 1, + ACTIONS(129), 1, aux_sym_number_token1, - ACTIONS(167), 1, + ACTIONS(131), 1, aux_sym_number_token2, - ACTIONS(169), 1, + ACTIONS(133), 1, anon_sym_DQUOTE, - ACTIONS(1721), 1, + ACTIONS(1619), 1, sym_identifier, - ACTIONS(1723), 1, + ACTIONS(1621), 1, anon_sym_getline, - ACTIONS(1725), 1, + ACTIONS(1623), 1, anon_sym_SLASH, - ACTIONS(1729), 1, + ACTIONS(1627), 1, anon_sym_AT, - STATE(250), 1, + STATE(247), 1, sym_ns_qualified_name, - STATE(268), 1, + STATE(263), 1, sym_array_ref, - STATE(276), 1, + STATE(279), 1, sym_field_ref, - STATE(446), 1, + STATE(426), 1, sym__binary_in, - STATE(1955), 1, + STATE(1956), 1, sym_namespace, - ACTIONS(155), 2, + ACTIONS(119), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1727), 2, + ACTIONS(1625), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(405), 19, + STATE(409), 19, sym__getline_exp, sym_getline_input, sym_getline_file, @@ -60674,44 +59971,44 @@ static const uint16_t ts_small_parse_table[] = { sym_string, sym_func_call, sym_indirect_func_call, - [42545] = 18, - ACTIONS(161), 1, + [41237] = 18, + ACTIONS(89), 1, + anon_sym_LPAREN, + ACTIONS(121), 1, + anon_sym_BANG, + ACTIONS(125), 1, anon_sym_DOLLAR, - ACTIONS(1557), 1, - sym_identifier, - ACTIONS(1573), 1, + ACTIONS(129), 1, aux_sym_number_token1, - ACTIONS(1575), 1, + ACTIONS(131), 1, aux_sym_number_token2, - ACTIONS(1577), 1, + ACTIONS(133), 1, anon_sym_DQUOTE, - ACTIONS(1707), 1, - anon_sym_LPAREN, - ACTIONS(1709), 1, + ACTIONS(1619), 1, + sym_identifier, + ACTIONS(1621), 1, anon_sym_getline, - ACTIONS(1711), 1, + ACTIONS(1623), 1, anon_sym_SLASH, - ACTIONS(1715), 1, - anon_sym_BANG, - ACTIONS(1719), 1, + ACTIONS(1627), 1, anon_sym_AT, - STATE(181), 1, + STATE(247), 1, sym_ns_qualified_name, - STATE(208), 1, + STATE(263), 1, sym_array_ref, - STATE(235), 1, - sym__binary_in, - STATE(236), 1, + STATE(279), 1, sym_field_ref, - STATE(1955), 1, + STATE(426), 1, + sym__binary_in, + STATE(1956), 1, sym_namespace, - ACTIONS(1713), 2, + ACTIONS(119), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1717), 2, + ACTIONS(1625), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(282), 19, + STATE(410), 19, sym__getline_exp, sym_getline_input, sym_getline_file, @@ -60731,80 +60028,42 @@ static const uint16_t ts_small_parse_table[] = { sym_string, sym_func_call, sym_indirect_func_call, - [42620] = 4, - ACTIONS(794), 2, + [41312] = 8, + ACTIONS(1651), 1, + anon_sym_in, + ACTIONS(778), 2, sym_concatenating_space, sym__if_else_separator, - ACTIONS(1663), 2, + ACTIONS(1657), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(1665), 3, + ACTIONS(1661), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1663), 2, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(1659), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(792), 31, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_while, - anon_sym_in, + ACTIONS(1653), 6, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - [42667] = 3, - ACTIONS(794), 2, - sym_concatenating_space, - sym__if_else_separator, - ACTIONS(1663), 2, - anon_sym_CARET, - anon_sym_STAR_STAR, - ACTIONS(792), 34, + ACTIONS(776), 20, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, anon_sym_while, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, anon_sym_GT_GT, anon_sym_PIPE, anon_sym_PIPE_AMP, anon_sym_QMARK, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_PLUS, @@ -60816,44 +60075,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_CARET_EQ, - [42712] = 18, - ACTIONS(161), 1, + [41367] = 18, + ACTIONS(324), 1, anon_sym_DOLLAR, - ACTIONS(1557), 1, + ACTIONS(1669), 1, sym_identifier, - ACTIONS(1573), 1, - aux_sym_number_token1, - ACTIONS(1575), 1, - aux_sym_number_token2, - ACTIONS(1577), 1, - anon_sym_DQUOTE, - ACTIONS(1707), 1, + ACTIONS(1671), 1, anon_sym_LPAREN, - ACTIONS(1709), 1, + ACTIONS(1673), 1, anon_sym_getline, - ACTIONS(1711), 1, + ACTIONS(1675), 1, anon_sym_SLASH, - ACTIONS(1715), 1, + ACTIONS(1679), 1, anon_sym_BANG, - ACTIONS(1719), 1, + ACTIONS(1683), 1, anon_sym_AT, - STATE(181), 1, + ACTIONS(1685), 1, + aux_sym_number_token1, + ACTIONS(1687), 1, + aux_sym_number_token2, + ACTIONS(1689), 1, + anon_sym_DQUOTE, + STATE(164), 1, sym_ns_qualified_name, - STATE(208), 1, + STATE(176), 1, sym_array_ref, - STATE(235), 1, - sym__binary_in, - STATE(236), 1, + STATE(192), 1, sym_field_ref, - STATE(1955), 1, + STATE(194), 1, + sym__binary_in, + STATE(2068), 1, sym_namespace, - ACTIONS(1713), 2, + ACTIONS(1677), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1717), 2, + ACTIONS(1681), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(271), 19, + STATE(203), 19, sym__getline_exp, sym_getline_input, sym_getline_file, @@ -60873,44 +60132,101 @@ static const uint16_t ts_small_parse_table[] = { sym_string, sym_func_call, sym_indirect_func_call, - [42787] = 18, - ACTIONS(161), 1, + [41442] = 18, + ACTIONS(89), 1, + anon_sym_LPAREN, + ACTIONS(121), 1, + anon_sym_BANG, + ACTIONS(125), 1, anon_sym_DOLLAR, - ACTIONS(1557), 1, - sym_identifier, - ACTIONS(1573), 1, + ACTIONS(129), 1, aux_sym_number_token1, - ACTIONS(1575), 1, + ACTIONS(131), 1, aux_sym_number_token2, - ACTIONS(1577), 1, + ACTIONS(133), 1, anon_sym_DQUOTE, - ACTIONS(1707), 1, - anon_sym_LPAREN, - ACTIONS(1709), 1, + ACTIONS(1619), 1, + sym_identifier, + ACTIONS(1621), 1, anon_sym_getline, - ACTIONS(1711), 1, + ACTIONS(1623), 1, anon_sym_SLASH, - ACTIONS(1715), 1, + ACTIONS(1627), 1, + anon_sym_AT, + STATE(247), 1, + sym_ns_qualified_name, + STATE(263), 1, + sym_array_ref, + STATE(279), 1, + sym_field_ref, + STATE(426), 1, + sym__binary_in, + STATE(1956), 1, + sym_namespace, + ACTIONS(119), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1625), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(411), 19, + sym__getline_exp, + sym_getline_input, + sym_getline_file, + sym__exp, + sym_ternary_exp, + sym_binary_exp, + sym_unary_exp, + sym_update_exp, + sym_assignment_exp, + sym_piped_io_exp, + sym_string_concat, + sym_regex, + sym_regex_constant, + sym_grouping, + sym__primitive, + sym_number, + sym_string, + sym_func_call, + sym_indirect_func_call, + [41517] = 18, + ACTIONS(89), 1, + anon_sym_LPAREN, + ACTIONS(121), 1, anon_sym_BANG, - ACTIONS(1719), 1, + ACTIONS(125), 1, + anon_sym_DOLLAR, + ACTIONS(129), 1, + aux_sym_number_token1, + ACTIONS(131), 1, + aux_sym_number_token2, + ACTIONS(133), 1, + anon_sym_DQUOTE, + ACTIONS(1619), 1, + sym_identifier, + ACTIONS(1621), 1, + anon_sym_getline, + ACTIONS(1623), 1, + anon_sym_SLASH, + ACTIONS(1627), 1, anon_sym_AT, - STATE(181), 1, + STATE(247), 1, sym_ns_qualified_name, - STATE(208), 1, + STATE(263), 1, sym_array_ref, - STATE(235), 1, - sym__binary_in, - STATE(236), 1, + STATE(279), 1, sym_field_ref, - STATE(1955), 1, + STATE(426), 1, + sym__binary_in, + STATE(1956), 1, sym_namespace, - ACTIONS(1713), 2, + ACTIONS(119), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1717), 2, + ACTIONS(1625), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(280), 19, + STATE(422), 19, sym__getline_exp, sym_getline_input, sym_getline_file, @@ -60930,44 +60246,44 @@ static const uint16_t ts_small_parse_table[] = { sym_string, sym_func_call, sym_indirect_func_call, - [42862] = 18, - ACTIONS(161), 1, + [41592] = 18, + ACTIONS(89), 1, + anon_sym_LPAREN, + ACTIONS(121), 1, + anon_sym_BANG, + ACTIONS(125), 1, anon_sym_DOLLAR, - ACTIONS(1557), 1, - sym_identifier, - ACTIONS(1573), 1, + ACTIONS(129), 1, aux_sym_number_token1, - ACTIONS(1575), 1, + ACTIONS(131), 1, aux_sym_number_token2, - ACTIONS(1577), 1, + ACTIONS(133), 1, anon_sym_DQUOTE, - ACTIONS(1707), 1, - anon_sym_LPAREN, - ACTIONS(1709), 1, + ACTIONS(1619), 1, + sym_identifier, + ACTIONS(1621), 1, anon_sym_getline, - ACTIONS(1711), 1, + ACTIONS(1623), 1, anon_sym_SLASH, - ACTIONS(1715), 1, - anon_sym_BANG, - ACTIONS(1719), 1, + ACTIONS(1627), 1, anon_sym_AT, - STATE(181), 1, + STATE(247), 1, sym_ns_qualified_name, - STATE(208), 1, + STATE(263), 1, sym_array_ref, - STATE(235), 1, - sym__binary_in, - STATE(236), 1, + STATE(279), 1, sym_field_ref, - STATE(1955), 1, + STATE(426), 1, + sym__binary_in, + STATE(1956), 1, sym_namespace, - ACTIONS(1713), 2, + ACTIONS(119), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1717), 2, + ACTIONS(1625), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(238), 19, + STATE(431), 19, sym__getline_exp, sym_getline_input, sym_getline_file, @@ -60987,44 +60303,89 @@ static const uint16_t ts_small_parse_table[] = { sym_string, sym_func_call, sym_indirect_func_call, - [42937] = 18, - ACTIONS(161), 1, + [41667] = 6, + ACTIONS(778), 2, + sym_concatenating_space, + sym__if_else_separator, + ACTIONS(1657), 2, + anon_sym_CARET, + anon_sym_STAR_STAR, + ACTIONS(1661), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1659), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1653), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(776), 23, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_while, + anon_sym_in, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + [41718] = 18, + ACTIONS(89), 1, + anon_sym_LPAREN, + ACTIONS(121), 1, + anon_sym_BANG, + ACTIONS(125), 1, anon_sym_DOLLAR, - ACTIONS(1557), 1, - sym_identifier, - ACTIONS(1573), 1, + ACTIONS(129), 1, aux_sym_number_token1, - ACTIONS(1575), 1, + ACTIONS(131), 1, aux_sym_number_token2, - ACTIONS(1577), 1, + ACTIONS(133), 1, anon_sym_DQUOTE, - ACTIONS(1707), 1, - anon_sym_LPAREN, - ACTIONS(1709), 1, + ACTIONS(1619), 1, + sym_identifier, + ACTIONS(1621), 1, anon_sym_getline, - ACTIONS(1711), 1, + ACTIONS(1623), 1, anon_sym_SLASH, - ACTIONS(1715), 1, - anon_sym_BANG, - ACTIONS(1719), 1, + ACTIONS(1627), 1, anon_sym_AT, - STATE(181), 1, + STATE(247), 1, sym_ns_qualified_name, - STATE(208), 1, + STATE(263), 1, sym_array_ref, - STATE(235), 1, - sym__binary_in, - STATE(236), 1, + STATE(279), 1, sym_field_ref, - STATE(1955), 1, + STATE(426), 1, + sym__binary_in, + STATE(1956), 1, sym_namespace, - ACTIONS(1713), 2, + ACTIONS(119), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1717), 2, + ACTIONS(1625), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(279), 19, + STATE(446), 19, sym__getline_exp, sym_getline_input, sym_getline_file, @@ -61044,101 +60405,102 @@ static const uint16_t ts_small_parse_table[] = { sym_string, sym_func_call, sym_indirect_func_call, - [43012] = 18, - ACTIONS(161), 1, - anon_sym_DOLLAR, - ACTIONS(1557), 1, + [41793] = 19, + ACTIONS(1285), 1, sym_identifier, - ACTIONS(1573), 1, - aux_sym_number_token1, - ACTIONS(1575), 1, - aux_sym_number_token2, - ACTIONS(1577), 1, - anon_sym_DQUOTE, - ACTIONS(1707), 1, + ACTIONS(1287), 1, anon_sym_LPAREN, - ACTIONS(1709), 1, + ACTIONS(1289), 1, anon_sym_getline, - ACTIONS(1711), 1, + ACTIONS(1291), 1, anon_sym_SLASH, - ACTIONS(1715), 1, + ACTIONS(1295), 1, anon_sym_BANG, - ACTIONS(1719), 1, + ACTIONS(1299), 1, + anon_sym_DOLLAR, + ACTIONS(1301), 1, anon_sym_AT, - STATE(181), 1, + ACTIONS(1303), 1, + aux_sym_number_token1, + ACTIONS(1305), 1, + aux_sym_number_token2, + ACTIONS(1307), 1, + anon_sym_DQUOTE, + STATE(1093), 1, sym_ns_qualified_name, - STATE(208), 1, + STATE(1142), 1, sym_array_ref, - STATE(235), 1, - sym__binary_in, - STATE(236), 1, + STATE(1251), 1, sym_field_ref, - STATE(1955), 1, + STATE(1510), 1, + sym__binary_in, + STATE(2080), 1, sym_namespace, - ACTIONS(1713), 2, + ACTIONS(1293), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1717), 2, + ACTIONS(1297), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(274), 19, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, + STATE(1505), 9, sym_ternary_exp, sym_binary_exp, sym_unary_exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, sym_string_concat, - sym_regex, - sym_regex_constant, sym_grouping, sym__primitive, sym_number, sym_string, sym_func_call, + STATE(1621), 10, + sym__getline_exp, + sym_getline_input, + sym_getline_file, + sym__exp, + sym_update_exp, + sym_assignment_exp, + sym_piped_io_exp, + sym_regex, + sym_regex_constant, sym_indirect_func_call, - [43087] = 19, + [41870] = 19, ACTIONS(85), 1, sym_identifier, - ACTIONS(107), 1, - anon_sym_getline, - ACTIONS(123), 1, - aux_sym_number_token1, - ACTIONS(272), 1, + ACTIONS(89), 1, anon_sym_LPAREN, - ACTIONS(276), 1, + ACTIONS(111), 1, + anon_sym_getline, + ACTIONS(117), 1, anon_sym_SLASH, - ACTIONS(278), 1, + ACTIONS(121), 1, anon_sym_BANG, - ACTIONS(282), 1, + ACTIONS(125), 1, anon_sym_DOLLAR, - ACTIONS(284), 1, + ACTIONS(127), 1, anon_sym_AT, - ACTIONS(286), 1, + ACTIONS(129), 1, + aux_sym_number_token1, + ACTIONS(131), 1, aux_sym_number_token2, - ACTIONS(288), 1, + ACTIONS(133), 1, anon_sym_DQUOTE, - STATE(607), 1, + STATE(244), 1, sym_ns_qualified_name, - STATE(610), 1, + STATE(268), 1, sym_array_ref, - STATE(703), 1, + STATE(274), 1, sym_field_ref, - STATE(1373), 1, + STATE(426), 1, sym__binary_in, - STATE(1955), 1, + STATE(1956), 1, sym_namespace, - ACTIONS(115), 2, + ACTIONS(119), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(280), 2, + ACTIONS(123), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1421), 9, + STATE(427), 9, sym_ternary_exp, sym_binary_exp, sym_unary_exp, @@ -61148,7 +60510,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_string, sym_func_call, - STATE(1484), 10, + STATE(463), 10, sym__getline_exp, sym_getline_input, sym_getline_file, @@ -61159,44 +60521,44 @@ static const uint16_t ts_small_parse_table[] = { sym_regex, sym_regex_constant, sym_indirect_func_call, - [43164] = 18, - ACTIONS(1271), 1, + [41947] = 18, + ACTIONS(89), 1, anon_sym_LPAREN, - ACTIONS(1279), 1, + ACTIONS(121), 1, anon_sym_BANG, - ACTIONS(1283), 1, + ACTIONS(125), 1, anon_sym_DOLLAR, - ACTIONS(1287), 1, + ACTIONS(129), 1, aux_sym_number_token1, - ACTIONS(1289), 1, + ACTIONS(131), 1, aux_sym_number_token2, - ACTIONS(1291), 1, + ACTIONS(133), 1, anon_sym_DQUOTE, - ACTIONS(1731), 1, + ACTIONS(1619), 1, sym_identifier, - ACTIONS(1733), 1, + ACTIONS(1621), 1, anon_sym_getline, - ACTIONS(1735), 1, + ACTIONS(1623), 1, anon_sym_SLASH, - ACTIONS(1739), 1, + ACTIONS(1627), 1, anon_sym_AT, - STATE(1000), 1, + STATE(247), 1, sym_ns_qualified_name, - STATE(1168), 1, + STATE(263), 1, sym_array_ref, - STATE(1235), 1, + STATE(279), 1, sym_field_ref, - STATE(1502), 1, + STATE(426), 1, sym__binary_in, - STATE(2075), 1, + STATE(1956), 1, sym_namespace, - ACTIONS(1277), 2, + ACTIONS(119), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1737), 2, + ACTIONS(1625), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1521), 19, + STATE(445), 19, sym__getline_exp, sym_getline_input, sym_getline_file, @@ -61216,101 +60578,102 @@ static const uint16_t ts_small_parse_table[] = { sym_string, sym_func_call, sym_indirect_func_call, - [43239] = 18, - ACTIONS(1271), 1, + [42022] = 19, + ACTIONS(89), 1, anon_sym_LPAREN, - ACTIONS(1279), 1, + ACTIONS(121), 1, anon_sym_BANG, - ACTIONS(1283), 1, + ACTIONS(125), 1, anon_sym_DOLLAR, - ACTIONS(1287), 1, + ACTIONS(129), 1, aux_sym_number_token1, - ACTIONS(1289), 1, + ACTIONS(131), 1, aux_sym_number_token2, - ACTIONS(1291), 1, + ACTIONS(133), 1, anon_sym_DQUOTE, - ACTIONS(1731), 1, - sym_identifier, - ACTIONS(1733), 1, + ACTIONS(1289), 1, anon_sym_getline, - ACTIONS(1735), 1, + ACTIONS(1291), 1, anon_sym_SLASH, - ACTIONS(1739), 1, + ACTIONS(1301), 1, anon_sym_AT, - STATE(1000), 1, - sym_ns_qualified_name, - STATE(1168), 1, + ACTIONS(1723), 1, + sym_identifier, + STATE(208), 1, sym_array_ref, - STATE(1235), 1, + STATE(246), 1, + sym_ns_qualified_name, + STATE(249), 1, sym_field_ref, - STATE(1502), 1, + STATE(426), 1, sym__binary_in, - STATE(2075), 1, + STATE(1956), 1, sym_namespace, - ACTIONS(1277), 2, + ACTIONS(119), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1737), 2, + ACTIONS(1297), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1539), 19, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, + STATE(455), 9, sym_ternary_exp, sym_binary_exp, sym_unary_exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, sym_string_concat, - sym_regex, - sym_regex_constant, sym_grouping, sym__primitive, sym_number, sym_string, sym_func_call, + STATE(1686), 10, + sym__getline_exp, + sym_getline_input, + sym_getline_file, + sym__exp, + sym_update_exp, + sym_assignment_exp, + sym_piped_io_exp, + sym_regex, + sym_regex_constant, sym_indirect_func_call, - [43314] = 18, - ACTIONS(123), 1, + [42099] = 18, + ACTIONS(558), 1, + anon_sym_DOLLAR, + ACTIONS(1669), 1, + sym_identifier, + ACTIONS(1685), 1, aux_sym_number_token1, - ACTIONS(286), 1, + ACTIONS(1687), 1, aux_sym_number_token2, - ACTIONS(288), 1, + ACTIONS(1689), 1, anon_sym_DQUOTE, - ACTIONS(366), 1, + ACTIONS(1725), 1, anon_sym_LPAREN, - ACTIONS(386), 1, - anon_sym_BANG, - ACTIONS(390), 1, - anon_sym_DOLLAR, - ACTIONS(1609), 1, - sym_identifier, - ACTIONS(1611), 1, + ACTIONS(1727), 1, anon_sym_getline, - ACTIONS(1613), 1, + ACTIONS(1729), 1, anon_sym_SLASH, - ACTIONS(1617), 1, + ACTIONS(1733), 1, + anon_sym_BANG, + ACTIONS(1737), 1, anon_sym_AT, - STATE(743), 1, + STATE(164), 1, sym_ns_qualified_name, - STATE(998), 1, + STATE(176), 1, sym_array_ref, - STATE(1165), 1, + STATE(192), 1, sym_field_ref, - STATE(1373), 1, + STATE(194), 1, sym__binary_in, - STATE(1955), 1, + STATE(2068), 1, sym_namespace, - ACTIONS(384), 2, + ACTIONS(1731), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1615), 2, + ACTIONS(1735), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1487), 19, + STATE(257), 19, sym__getline_exp, sym_getline_input, sym_getline_file, @@ -61330,44 +60693,44 @@ static const uint16_t ts_small_parse_table[] = { sym_string, sym_func_call, sym_indirect_func_call, - [43389] = 18, - ACTIONS(123), 1, + [42174] = 18, + ACTIONS(558), 1, + anon_sym_DOLLAR, + ACTIONS(1669), 1, + sym_identifier, + ACTIONS(1685), 1, aux_sym_number_token1, - ACTIONS(286), 1, + ACTIONS(1687), 1, aux_sym_number_token2, - ACTIONS(288), 1, + ACTIONS(1689), 1, anon_sym_DQUOTE, - ACTIONS(366), 1, + ACTIONS(1725), 1, anon_sym_LPAREN, - ACTIONS(386), 1, - anon_sym_BANG, - ACTIONS(390), 1, - anon_sym_DOLLAR, - ACTIONS(1609), 1, - sym_identifier, - ACTIONS(1611), 1, + ACTIONS(1727), 1, anon_sym_getline, - ACTIONS(1613), 1, + ACTIONS(1729), 1, anon_sym_SLASH, - ACTIONS(1617), 1, + ACTIONS(1733), 1, + anon_sym_BANG, + ACTIONS(1737), 1, anon_sym_AT, - STATE(743), 1, + STATE(164), 1, sym_ns_qualified_name, - STATE(998), 1, + STATE(176), 1, sym_array_ref, - STATE(1165), 1, + STATE(192), 1, sym_field_ref, - STATE(1373), 1, + STATE(194), 1, sym__binary_in, - STATE(1955), 1, + STATE(2068), 1, sym_namespace, - ACTIONS(384), 2, + ACTIONS(1731), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1615), 2, + ACTIONS(1735), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1490), 19, + STATE(251), 19, sym__getline_exp, sym_getline_input, sym_getline_file, @@ -61387,44 +60750,44 @@ static const uint16_t ts_small_parse_table[] = { sym_string, sym_func_call, sym_indirect_func_call, - [43464] = 18, - ACTIONS(25), 1, + [42249] = 18, + ACTIONS(558), 1, anon_sym_DOLLAR, - ACTIONS(1619), 1, + ACTIONS(1669), 1, sym_identifier, - ACTIONS(1621), 1, + ACTIONS(1685), 1, + aux_sym_number_token1, + ACTIONS(1687), 1, + aux_sym_number_token2, + ACTIONS(1689), 1, + anon_sym_DQUOTE, + ACTIONS(1725), 1, anon_sym_LPAREN, - ACTIONS(1623), 1, + ACTIONS(1727), 1, anon_sym_getline, - ACTIONS(1625), 1, + ACTIONS(1729), 1, anon_sym_SLASH, - ACTIONS(1629), 1, + ACTIONS(1733), 1, anon_sym_BANG, - ACTIONS(1633), 1, + ACTIONS(1737), 1, anon_sym_AT, - ACTIONS(1635), 1, - aux_sym_number_token1, - ACTIONS(1637), 1, - aux_sym_number_token2, - ACTIONS(1639), 1, - anon_sym_DQUOTE, - STATE(293), 1, + STATE(164), 1, sym_ns_qualified_name, - STATE(302), 1, + STATE(176), 1, sym_array_ref, - STATE(331), 1, - sym__binary_in, - STATE(334), 1, + STATE(192), 1, sym_field_ref, - STATE(2075), 1, + STATE(194), 1, + sym__binary_in, + STATE(2068), 1, sym_namespace, - ACTIONS(1627), 2, + ACTIONS(1731), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1631), 2, + ACTIONS(1735), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(319), 19, + STATE(196), 19, sym__getline_exp, sym_getline_input, sym_getline_file, @@ -61444,44 +60807,44 @@ static const uint16_t ts_small_parse_table[] = { sym_string, sym_func_call, sym_indirect_func_call, - [43539] = 18, - ACTIONS(1283), 1, + [42324] = 18, + ACTIONS(558), 1, anon_sym_DOLLAR, - ACTIONS(1619), 1, + ACTIONS(1669), 1, sym_identifier, - ACTIONS(1635), 1, + ACTIONS(1685), 1, aux_sym_number_token1, - ACTIONS(1637), 1, + ACTIONS(1687), 1, aux_sym_number_token2, - ACTIONS(1639), 1, + ACTIONS(1689), 1, anon_sym_DQUOTE, - ACTIONS(1755), 1, + ACTIONS(1725), 1, anon_sym_LPAREN, - ACTIONS(1757), 1, + ACTIONS(1727), 1, anon_sym_getline, - ACTIONS(1759), 1, + ACTIONS(1729), 1, anon_sym_SLASH, - ACTIONS(1763), 1, + ACTIONS(1733), 1, anon_sym_BANG, - ACTIONS(1767), 1, + ACTIONS(1737), 1, anon_sym_AT, - STATE(293), 1, + STATE(164), 1, sym_ns_qualified_name, - STATE(302), 1, + STATE(176), 1, sym_array_ref, - STATE(331), 1, - sym__binary_in, - STATE(334), 1, + STATE(192), 1, sym_field_ref, - STATE(2075), 1, + STATE(194), 1, + sym__binary_in, + STATE(2068), 1, sym_namespace, - ACTIONS(1761), 2, + ACTIONS(1731), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1765), 2, + ACTIONS(1735), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1232), 19, + STATE(265), 19, sym__getline_exp, sym_getline_input, sym_getline_file, @@ -61501,102 +60864,101 @@ static const uint16_t ts_small_parse_table[] = { sym_string, sym_func_call, sym_indirect_func_call, - [43614] = 19, - ACTIONS(39), 1, + [42399] = 18, + ACTIONS(558), 1, + anon_sym_DOLLAR, + ACTIONS(1669), 1, sym_identifier, - ACTIONS(63), 1, - anon_sym_getline, - ACTIONS(79), 1, + ACTIONS(1685), 1, aux_sym_number_token1, - ACTIONS(486), 1, + ACTIONS(1687), 1, aux_sym_number_token2, - ACTIONS(488), 1, + ACTIONS(1689), 1, anon_sym_DQUOTE, - ACTIONS(552), 1, + ACTIONS(1725), 1, anon_sym_LPAREN, - ACTIONS(554), 1, + ACTIONS(1727), 1, + anon_sym_getline, + ACTIONS(1729), 1, anon_sym_SLASH, - ACTIONS(556), 1, + ACTIONS(1733), 1, anon_sym_BANG, - ACTIONS(560), 1, - anon_sym_DOLLAR, - ACTIONS(562), 1, + ACTIONS(1737), 1, anon_sym_AT, - STATE(592), 1, + STATE(164), 1, sym_ns_qualified_name, - STATE(603), 1, + STATE(176), 1, sym_array_ref, - STATE(619), 1, + STATE(192), 1, sym_field_ref, - STATE(1309), 1, + STATE(194), 1, sym__binary_in, - STATE(2063), 1, + STATE(2068), 1, sym_namespace, - ACTIONS(71), 2, + ACTIONS(1731), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(558), 2, + ACTIONS(1735), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1354), 9, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_string_concat, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - STATE(1463), 10, + STATE(252), 19, sym__getline_exp, sym_getline_input, sym_getline_file, sym__exp, + sym_ternary_exp, + sym_binary_exp, + sym_unary_exp, sym_update_exp, sym_assignment_exp, sym_piped_io_exp, + sym_string_concat, sym_regex, sym_regex_constant, + sym_grouping, + sym__primitive, + sym_number, + sym_string, + sym_func_call, sym_indirect_func_call, - [43691] = 18, - ACTIONS(123), 1, + [42474] = 18, + ACTIONS(558), 1, + anon_sym_DOLLAR, + ACTIONS(1669), 1, + sym_identifier, + ACTIONS(1685), 1, aux_sym_number_token1, - ACTIONS(286), 1, + ACTIONS(1687), 1, aux_sym_number_token2, - ACTIONS(288), 1, + ACTIONS(1689), 1, anon_sym_DQUOTE, - ACTIONS(366), 1, + ACTIONS(1725), 1, anon_sym_LPAREN, - ACTIONS(386), 1, - anon_sym_BANG, - ACTIONS(390), 1, - anon_sym_DOLLAR, - ACTIONS(1609), 1, - sym_identifier, - ACTIONS(1611), 1, + ACTIONS(1727), 1, anon_sym_getline, - ACTIONS(1613), 1, + ACTIONS(1729), 1, anon_sym_SLASH, - ACTIONS(1617), 1, + ACTIONS(1733), 1, + anon_sym_BANG, + ACTIONS(1737), 1, anon_sym_AT, - STATE(743), 1, + STATE(164), 1, sym_ns_qualified_name, - STATE(998), 1, + STATE(176), 1, sym_array_ref, - STATE(1165), 1, + STATE(192), 1, sym_field_ref, - STATE(1373), 1, + STATE(194), 1, sym__binary_in, - STATE(1955), 1, + STATE(2068), 1, sym_namespace, - ACTIONS(384), 2, + ACTIONS(1731), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1615), 2, + ACTIONS(1735), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1496), 19, + STATE(266), 19, sym__getline_exp, sym_getline_input, sym_getline_file, @@ -61616,44 +60978,44 @@ static const uint16_t ts_small_parse_table[] = { sym_string, sym_func_call, sym_indirect_func_call, - [43766] = 18, - ACTIONS(332), 1, + [42549] = 18, + ACTIONS(558), 1, anon_sym_DOLLAR, - ACTIONS(1675), 1, + ACTIONS(1669), 1, sym_identifier, - ACTIONS(1691), 1, + ACTIONS(1685), 1, aux_sym_number_token1, - ACTIONS(1693), 1, + ACTIONS(1687), 1, aux_sym_number_token2, - ACTIONS(1695), 1, + ACTIONS(1689), 1, anon_sym_DQUOTE, - ACTIONS(1741), 1, + ACTIONS(1725), 1, anon_sym_LPAREN, - ACTIONS(1743), 1, + ACTIONS(1727), 1, anon_sym_getline, - ACTIONS(1745), 1, + ACTIONS(1729), 1, anon_sym_SLASH, - ACTIONS(1749), 1, + ACTIONS(1733), 1, anon_sym_BANG, - ACTIONS(1753), 1, + ACTIONS(1737), 1, anon_sym_AT, - STATE(163), 1, + STATE(164), 1, sym_ns_qualified_name, - STATE(169), 1, + STATE(176), 1, sym_array_ref, - STATE(200), 1, - sym__binary_in, - STATE(202), 1, + STATE(192), 1, sym_field_ref, - STATE(2063), 1, + STATE(194), 1, + sym__binary_in, + STATE(2068), 1, sym_namespace, - ACTIONS(1747), 2, + ACTIONS(1731), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1751), 2, + ACTIONS(1735), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(254), 19, + STATE(260), 19, sym__getline_exp, sym_getline_input, sym_getline_file, @@ -61673,44 +61035,44 @@ static const uint16_t ts_small_parse_table[] = { sym_string, sym_func_call, sym_indirect_func_call, - [43841] = 18, - ACTIONS(123), 1, + [42624] = 18, + ACTIONS(558), 1, + anon_sym_DOLLAR, + ACTIONS(1669), 1, + sym_identifier, + ACTIONS(1685), 1, aux_sym_number_token1, - ACTIONS(286), 1, + ACTIONS(1687), 1, aux_sym_number_token2, - ACTIONS(288), 1, + ACTIONS(1689), 1, anon_sym_DQUOTE, - ACTIONS(366), 1, + ACTIONS(1725), 1, anon_sym_LPAREN, - ACTIONS(386), 1, - anon_sym_BANG, - ACTIONS(390), 1, - anon_sym_DOLLAR, - ACTIONS(1609), 1, - sym_identifier, - ACTIONS(1611), 1, + ACTIONS(1727), 1, anon_sym_getline, - ACTIONS(1613), 1, + ACTIONS(1729), 1, anon_sym_SLASH, - ACTIONS(1617), 1, + ACTIONS(1733), 1, + anon_sym_BANG, + ACTIONS(1737), 1, anon_sym_AT, - STATE(743), 1, + STATE(164), 1, sym_ns_qualified_name, - STATE(998), 1, + STATE(176), 1, sym_array_ref, - STATE(1165), 1, + STATE(192), 1, sym_field_ref, - STATE(1373), 1, + STATE(194), 1, sym__binary_in, - STATE(1955), 1, + STATE(2068), 1, sym_namespace, - ACTIONS(384), 2, + ACTIONS(1731), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1615), 2, + ACTIONS(1735), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1465), 19, + STATE(259), 19, sym__getline_exp, sym_getline_input, sym_getline_file, @@ -61730,202 +61092,160 @@ static const uint16_t ts_small_parse_table[] = { sym_string, sym_func_call, sym_indirect_func_call, - [43916] = 18, - ACTIONS(25), 1, - anon_sym_DOLLAR, - ACTIONS(1619), 1, + [42699] = 19, + ACTIONS(1285), 1, sym_identifier, - ACTIONS(1621), 1, + ACTIONS(1287), 1, anon_sym_LPAREN, - ACTIONS(1623), 1, + ACTIONS(1289), 1, anon_sym_getline, - ACTIONS(1625), 1, + ACTIONS(1291), 1, anon_sym_SLASH, - ACTIONS(1629), 1, + ACTIONS(1295), 1, anon_sym_BANG, - ACTIONS(1633), 1, + ACTIONS(1299), 1, + anon_sym_DOLLAR, + ACTIONS(1301), 1, anon_sym_AT, - ACTIONS(1635), 1, + ACTIONS(1303), 1, aux_sym_number_token1, - ACTIONS(1637), 1, + ACTIONS(1305), 1, aux_sym_number_token2, - ACTIONS(1639), 1, + ACTIONS(1307), 1, anon_sym_DQUOTE, - STATE(293), 1, + STATE(1093), 1, sym_ns_qualified_name, - STATE(302), 1, + STATE(1142), 1, sym_array_ref, - STATE(331), 1, - sym__binary_in, - STATE(334), 1, + STATE(1251), 1, sym_field_ref, - STATE(2075), 1, + STATE(1510), 1, + sym__binary_in, + STATE(2080), 1, sym_namespace, - ACTIONS(1627), 2, + ACTIONS(1293), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1631), 2, + ACTIONS(1297), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(489), 19, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, + STATE(1505), 9, sym_ternary_exp, sym_binary_exp, sym_unary_exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, sym_string_concat, - sym_regex, - sym_regex_constant, sym_grouping, sym__primitive, sym_number, sym_string, sym_func_call, + STATE(1637), 10, + sym__getline_exp, + sym_getline_input, + sym_getline_file, + sym__exp, + sym_update_exp, + sym_assignment_exp, + sym_piped_io_exp, + sym_regex, + sym_regex_constant, sym_indirect_func_call, - [43991] = 18, - ACTIONS(123), 1, - aux_sym_number_token1, - ACTIONS(286), 1, - aux_sym_number_token2, - ACTIONS(288), 1, - anon_sym_DQUOTE, - ACTIONS(366), 1, - anon_sym_LPAREN, - ACTIONS(386), 1, - anon_sym_BANG, - ACTIONS(390), 1, - anon_sym_DOLLAR, - ACTIONS(1609), 1, + [42776] = 19, + ACTIONS(85), 1, sym_identifier, - ACTIONS(1611), 1, + ACTIONS(89), 1, + anon_sym_LPAREN, + ACTIONS(111), 1, anon_sym_getline, - ACTIONS(1613), 1, + ACTIONS(117), 1, anon_sym_SLASH, - ACTIONS(1617), 1, + ACTIONS(121), 1, + anon_sym_BANG, + ACTIONS(125), 1, + anon_sym_DOLLAR, + ACTIONS(127), 1, anon_sym_AT, - STATE(743), 1, + ACTIONS(129), 1, + aux_sym_number_token1, + ACTIONS(131), 1, + aux_sym_number_token2, + ACTIONS(133), 1, + anon_sym_DQUOTE, + STATE(244), 1, sym_ns_qualified_name, - STATE(998), 1, + STATE(268), 1, sym_array_ref, - STATE(1165), 1, + STATE(274), 1, sym_field_ref, - STATE(1373), 1, + STATE(426), 1, sym__binary_in, - STATE(1955), 1, + STATE(1956), 1, sym_namespace, - ACTIONS(384), 2, + ACTIONS(119), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1615), 2, + ACTIONS(123), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1477), 19, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, + STATE(427), 9, sym_ternary_exp, sym_binary_exp, sym_unary_exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, sym_string_concat, - sym_regex, - sym_regex_constant, sym_grouping, sym__primitive, sym_number, sym_string, sym_func_call, + STATE(471), 10, + sym__getline_exp, + sym_getline_input, + sym_getline_file, + sym__exp, + sym_update_exp, + sym_assignment_exp, + sym_piped_io_exp, + sym_regex, + sym_regex_constant, sym_indirect_func_call, - [44066] = 5, - ACTIONS(794), 2, - sym_concatenating_space, - sym__if_else_separator, - ACTIONS(1663), 2, - anon_sym_CARET, - anon_sym_STAR_STAR, - ACTIONS(1667), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1665), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(792), 29, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_while, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - [44115] = 18, - ACTIONS(123), 1, - aux_sym_number_token1, - ACTIONS(286), 1, - aux_sym_number_token2, - ACTIONS(288), 1, - anon_sym_DQUOTE, - ACTIONS(366), 1, + [42853] = 18, + ACTIONS(89), 1, anon_sym_LPAREN, - ACTIONS(386), 1, + ACTIONS(121), 1, anon_sym_BANG, - ACTIONS(390), 1, + ACTIONS(125), 1, anon_sym_DOLLAR, - ACTIONS(1609), 1, + ACTIONS(129), 1, + aux_sym_number_token1, + ACTIONS(131), 1, + aux_sym_number_token2, + ACTIONS(133), 1, + anon_sym_DQUOTE, + ACTIONS(1619), 1, sym_identifier, - ACTIONS(1611), 1, + ACTIONS(1621), 1, anon_sym_getline, - ACTIONS(1613), 1, + ACTIONS(1623), 1, anon_sym_SLASH, - ACTIONS(1617), 1, + ACTIONS(1627), 1, anon_sym_AT, - STATE(743), 1, + STATE(247), 1, sym_ns_qualified_name, - STATE(998), 1, + STATE(263), 1, sym_array_ref, - STATE(1165), 1, + STATE(279), 1, sym_field_ref, - STATE(1373), 1, + STATE(426), 1, sym__binary_in, - STATE(1955), 1, + STATE(1956), 1, sym_namespace, - ACTIONS(384), 2, + ACTIONS(119), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1615), 2, + ACTIONS(1625), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1479), 19, + STATE(453), 19, sym__getline_exp, sym_getline_input, sym_getline_file, @@ -61945,44 +61265,44 @@ static const uint16_t ts_small_parse_table[] = { sym_string, sym_func_call, sym_indirect_func_call, - [44190] = 18, - ACTIONS(332), 1, + [42928] = 18, + ACTIONS(324), 1, anon_sym_DOLLAR, - ACTIONS(1675), 1, + ACTIONS(1669), 1, sym_identifier, - ACTIONS(1691), 1, - aux_sym_number_token1, - ACTIONS(1693), 1, - aux_sym_number_token2, - ACTIONS(1695), 1, - anon_sym_DQUOTE, - ACTIONS(1741), 1, + ACTIONS(1671), 1, anon_sym_LPAREN, - ACTIONS(1743), 1, + ACTIONS(1673), 1, anon_sym_getline, - ACTIONS(1745), 1, + ACTIONS(1675), 1, anon_sym_SLASH, - ACTIONS(1749), 1, + ACTIONS(1679), 1, anon_sym_BANG, - ACTIONS(1753), 1, + ACTIONS(1683), 1, anon_sym_AT, - STATE(163), 1, + ACTIONS(1685), 1, + aux_sym_number_token1, + ACTIONS(1687), 1, + aux_sym_number_token2, + ACTIONS(1689), 1, + anon_sym_DQUOTE, + STATE(164), 1, sym_ns_qualified_name, - STATE(169), 1, + STATE(176), 1, sym_array_ref, - STATE(200), 1, - sym__binary_in, - STATE(202), 1, + STATE(192), 1, sym_field_ref, - STATE(2063), 1, + STATE(194), 1, + sym__binary_in, + STATE(2068), 1, sym_namespace, - ACTIONS(1747), 2, + ACTIONS(1677), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1751), 2, + ACTIONS(1681), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(266), 19, + STATE(201), 19, sym__getline_exp, sym_getline_input, sym_getline_file, @@ -62002,41 +61322,80 @@ static const uint16_t ts_small_parse_table[] = { sym_string, sym_func_call, sym_indirect_func_call, - [44265] = 7, - ACTIONS(852), 2, + [43003] = 4, + ACTIONS(778), 2, sym_concatenating_space, sym__if_else_separator, - ACTIONS(1663), 2, + ACTIONS(1657), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(1667), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1669), 2, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(1665), 3, + ACTIONS(1659), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1659), 6, + ACTIONS(776), 31, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_while, + anon_sym_in, anon_sym_LT, anon_sym_GT, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(840), 21, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + [43050] = 3, + ACTIONS(778), 2, + sym_concatenating_space, + sym__if_else_separator, + ACTIONS(1657), 2, + anon_sym_CARET, + anon_sym_STAR_STAR, + ACTIONS(776), 34, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, anon_sym_while, anon_sym_in, + anon_sym_LT, + anon_sym_GT, anon_sym_GT_GT, anon_sym_PIPE, anon_sym_PIPE_AMP, anon_sym_QMARK, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_PLUS, @@ -62048,101 +61407,160 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_CARET_EQ, - [44318] = 18, - ACTIONS(123), 1, - aux_sym_number_token1, - ACTIONS(286), 1, - aux_sym_number_token2, - ACTIONS(288), 1, - anon_sym_DQUOTE, - ACTIONS(366), 1, - anon_sym_LPAREN, - ACTIONS(386), 1, - anon_sym_BANG, - ACTIONS(390), 1, - anon_sym_DOLLAR, - ACTIONS(1609), 1, + [43095] = 19, + ACTIONS(1285), 1, sym_identifier, - ACTIONS(1611), 1, + ACTIONS(1287), 1, + anon_sym_LPAREN, + ACTIONS(1289), 1, anon_sym_getline, - ACTIONS(1613), 1, + ACTIONS(1291), 1, anon_sym_SLASH, - ACTIONS(1617), 1, + ACTIONS(1295), 1, + anon_sym_BANG, + ACTIONS(1299), 1, + anon_sym_DOLLAR, + ACTIONS(1301), 1, anon_sym_AT, - STATE(743), 1, + ACTIONS(1303), 1, + aux_sym_number_token1, + ACTIONS(1305), 1, + aux_sym_number_token2, + ACTIONS(1307), 1, + anon_sym_DQUOTE, + STATE(1093), 1, sym_ns_qualified_name, - STATE(998), 1, + STATE(1142), 1, sym_array_ref, - STATE(1165), 1, + STATE(1251), 1, sym_field_ref, - STATE(1373), 1, + STATE(1510), 1, sym__binary_in, - STATE(1955), 1, + STATE(2080), 1, sym_namespace, - ACTIONS(384), 2, + ACTIONS(1293), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1615), 2, + ACTIONS(1297), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1381), 19, + STATE(1505), 9, + sym_ternary_exp, + sym_binary_exp, + sym_unary_exp, + sym_string_concat, + sym_grouping, + sym__primitive, + sym_number, + sym_string, + sym_func_call, + STATE(1650), 10, sym__getline_exp, sym_getline_input, sym_getline_file, sym__exp, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, sym_update_exp, sym_assignment_exp, sym_piped_io_exp, - sym_string_concat, sym_regex, sym_regex_constant, + sym_indirect_func_call, + [43172] = 19, + ACTIONS(1285), 1, + sym_identifier, + ACTIONS(1287), 1, + anon_sym_LPAREN, + ACTIONS(1289), 1, + anon_sym_getline, + ACTIONS(1291), 1, + anon_sym_SLASH, + ACTIONS(1295), 1, + anon_sym_BANG, + ACTIONS(1299), 1, + anon_sym_DOLLAR, + ACTIONS(1301), 1, + anon_sym_AT, + ACTIONS(1303), 1, + aux_sym_number_token1, + ACTIONS(1305), 1, + aux_sym_number_token2, + ACTIONS(1307), 1, + anon_sym_DQUOTE, + STATE(1093), 1, + sym_ns_qualified_name, + STATE(1142), 1, + sym_array_ref, + STATE(1251), 1, + sym_field_ref, + STATE(1510), 1, + sym__binary_in, + STATE(2080), 1, + sym_namespace, + ACTIONS(1293), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1297), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1505), 9, + sym_ternary_exp, + sym_binary_exp, + sym_unary_exp, + sym_string_concat, sym_grouping, sym__primitive, sym_number, sym_string, sym_func_call, + STATE(1658), 10, + sym__getline_exp, + sym_getline_input, + sym_getline_file, + sym__exp, + sym_update_exp, + sym_assignment_exp, + sym_piped_io_exp, + sym_regex, + sym_regex_constant, sym_indirect_func_call, - [44393] = 18, - ACTIONS(123), 1, + [43249] = 18, + ACTIONS(79), 1, aux_sym_number_token1, - ACTIONS(286), 1, - aux_sym_number_token2, - ACTIONS(288), 1, - anon_sym_DQUOTE, - ACTIONS(366), 1, + ACTIONS(312), 1, anon_sym_LPAREN, - ACTIONS(386), 1, + ACTIONS(320), 1, anon_sym_BANG, - ACTIONS(390), 1, + ACTIONS(324), 1, anon_sym_DOLLAR, - ACTIONS(1609), 1, + ACTIONS(328), 1, + aux_sym_number_token2, + ACTIONS(330), 1, + anon_sym_DQUOTE, + ACTIONS(1577), 1, sym_identifier, - ACTIONS(1611), 1, + ACTIONS(1579), 1, anon_sym_getline, - ACTIONS(1613), 1, + ACTIONS(1581), 1, anon_sym_SLASH, - ACTIONS(1617), 1, + ACTIONS(1585), 1, anon_sym_AT, - STATE(743), 1, + STATE(591), 1, sym_ns_qualified_name, - STATE(998), 1, + STATE(605), 1, sym_array_ref, - STATE(1165), 1, + STATE(628), 1, sym_field_ref, - STATE(1373), 1, + STATE(1305), 1, sym__binary_in, - STATE(1955), 1, + STATE(2068), 1, sym_namespace, - ACTIONS(384), 2, + ACTIONS(71), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1615), 2, + ACTIONS(1583), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1482), 19, + STATE(1366), 19, sym__getline_exp, sym_getline_input, sym_getline_file, @@ -62162,101 +61580,160 @@ static const uint16_t ts_small_parse_table[] = { sym_string, sym_func_call, sym_indirect_func_call, - [44468] = 18, - ACTIONS(123), 1, - aux_sym_number_token1, - ACTIONS(286), 1, - aux_sym_number_token2, - ACTIONS(288), 1, - anon_sym_DQUOTE, - ACTIONS(366), 1, - anon_sym_LPAREN, - ACTIONS(386), 1, - anon_sym_BANG, - ACTIONS(390), 1, - anon_sym_DOLLAR, - ACTIONS(1609), 1, + [43324] = 19, + ACTIONS(1285), 1, sym_identifier, - ACTIONS(1611), 1, + ACTIONS(1287), 1, + anon_sym_LPAREN, + ACTIONS(1289), 1, anon_sym_getline, - ACTIONS(1613), 1, + ACTIONS(1291), 1, anon_sym_SLASH, - ACTIONS(1617), 1, + ACTIONS(1295), 1, + anon_sym_BANG, + ACTIONS(1299), 1, + anon_sym_DOLLAR, + ACTIONS(1301), 1, anon_sym_AT, - STATE(743), 1, + ACTIONS(1303), 1, + aux_sym_number_token1, + ACTIONS(1305), 1, + aux_sym_number_token2, + ACTIONS(1307), 1, + anon_sym_DQUOTE, + STATE(1093), 1, sym_ns_qualified_name, - STATE(998), 1, + STATE(1142), 1, sym_array_ref, - STATE(1165), 1, + STATE(1251), 1, sym_field_ref, - STATE(1373), 1, + STATE(1510), 1, sym__binary_in, - STATE(1955), 1, + STATE(2080), 1, sym_namespace, - ACTIONS(384), 2, + ACTIONS(1293), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1615), 2, + ACTIONS(1297), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1485), 19, + STATE(1505), 9, + sym_ternary_exp, + sym_binary_exp, + sym_unary_exp, + sym_string_concat, + sym_grouping, + sym__primitive, + sym_number, + sym_string, + sym_func_call, + STATE(1638), 10, sym__getline_exp, sym_getline_input, sym_getline_file, sym__exp, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, sym_update_exp, sym_assignment_exp, sym_piped_io_exp, - sym_string_concat, sym_regex, sym_regex_constant, + sym_indirect_func_call, + [43401] = 19, + ACTIONS(1285), 1, + sym_identifier, + ACTIONS(1287), 1, + anon_sym_LPAREN, + ACTIONS(1289), 1, + anon_sym_getline, + ACTIONS(1291), 1, + anon_sym_SLASH, + ACTIONS(1295), 1, + anon_sym_BANG, + ACTIONS(1299), 1, + anon_sym_DOLLAR, + ACTIONS(1301), 1, + anon_sym_AT, + ACTIONS(1303), 1, + aux_sym_number_token1, + ACTIONS(1305), 1, + aux_sym_number_token2, + ACTIONS(1307), 1, + anon_sym_DQUOTE, + STATE(1093), 1, + sym_ns_qualified_name, + STATE(1142), 1, + sym_array_ref, + STATE(1251), 1, + sym_field_ref, + STATE(1510), 1, + sym__binary_in, + STATE(2080), 1, + sym_namespace, + ACTIONS(1293), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1297), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1505), 9, + sym_ternary_exp, + sym_binary_exp, + sym_unary_exp, + sym_string_concat, sym_grouping, sym__primitive, sym_number, sym_string, sym_func_call, + STATE(1632), 10, + sym__getline_exp, + sym_getline_input, + sym_getline_file, + sym__exp, + sym_update_exp, + sym_assignment_exp, + sym_piped_io_exp, + sym_regex, + sym_regex_constant, sym_indirect_func_call, - [44543] = 19, - ACTIONS(123), 1, - aux_sym_number_token1, - ACTIONS(286), 1, - aux_sym_number_token2, - ACTIONS(288), 1, - anon_sym_DQUOTE, - ACTIONS(366), 1, + [43478] = 19, + ACTIONS(1285), 1, + sym_identifier, + ACTIONS(1287), 1, anon_sym_LPAREN, - ACTIONS(386), 1, - anon_sym_BANG, - ACTIONS(390), 1, - anon_sym_DOLLAR, - ACTIONS(1273), 1, + ACTIONS(1289), 1, anon_sym_getline, - ACTIONS(1275), 1, + ACTIONS(1291), 1, anon_sym_SLASH, - ACTIONS(1285), 1, + ACTIONS(1295), 1, + anon_sym_BANG, + ACTIONS(1299), 1, + anon_sym_DOLLAR, + ACTIONS(1301), 1, anon_sym_AT, - ACTIONS(1769), 1, - sym_identifier, - STATE(186), 1, + ACTIONS(1303), 1, + aux_sym_number_token1, + ACTIONS(1305), 1, + aux_sym_number_token2, + ACTIONS(1307), 1, + anon_sym_DQUOTE, + STATE(1093), 1, + sym_ns_qualified_name, + STATE(1142), 1, sym_array_ref, - STATE(220), 1, + STATE(1251), 1, sym_field_ref, - STATE(590), 1, - sym_ns_qualified_name, - STATE(1373), 1, + STATE(1510), 1, sym__binary_in, - STATE(1955), 1, + STATE(2080), 1, sym_namespace, - ACTIONS(384), 2, + ACTIONS(1293), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1281), 2, + ACTIONS(1297), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1378), 9, + STATE(1505), 9, sym_ternary_exp, sym_binary_exp, sym_unary_exp, @@ -62266,7 +61743,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_string, sym_func_call, - STATE(1684), 10, + STATE(1605), 10, sym__getline_exp, sym_getline_input, sym_getline_file, @@ -62277,44 +61754,44 @@ static const uint16_t ts_small_parse_table[] = { sym_regex, sym_regex_constant, sym_indirect_func_call, - [44620] = 18, - ACTIONS(482), 1, + [43555] = 18, + ACTIONS(25), 1, anon_sym_DOLLAR, - ACTIONS(1675), 1, + ACTIONS(1629), 1, sym_identifier, - ACTIONS(1677), 1, + ACTIONS(1631), 1, anon_sym_LPAREN, - ACTIONS(1679), 1, + ACTIONS(1633), 1, anon_sym_getline, - ACTIONS(1681), 1, + ACTIONS(1635), 1, anon_sym_SLASH, - ACTIONS(1685), 1, + ACTIONS(1639), 1, anon_sym_BANG, - ACTIONS(1689), 1, + ACTIONS(1643), 1, anon_sym_AT, - ACTIONS(1691), 1, + ACTIONS(1645), 1, aux_sym_number_token1, - ACTIONS(1693), 1, + ACTIONS(1647), 1, aux_sym_number_token2, - ACTIONS(1695), 1, + ACTIONS(1649), 1, anon_sym_DQUOTE, - STATE(163), 1, + STATE(288), 1, sym_ns_qualified_name, - STATE(169), 1, + STATE(308), 1, sym_array_ref, - STATE(200), 1, + STATE(328), 1, sym__binary_in, - STATE(202), 1, + STATE(331), 1, sym_field_ref, - STATE(2063), 1, + STATE(2080), 1, sym_namespace, - ACTIONS(1683), 2, + ACTIONS(1637), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1687), 2, + ACTIONS(1641), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(807), 19, + STATE(497), 19, sym__getline_exp, sym_getline_input, sym_getline_file, @@ -62334,44 +61811,44 @@ static const uint16_t ts_small_parse_table[] = { sym_string, sym_func_call, sym_indirect_func_call, - [44695] = 18, - ACTIONS(482), 1, + [43630] = 18, + ACTIONS(25), 1, anon_sym_DOLLAR, - ACTIONS(1675), 1, + ACTIONS(1629), 1, sym_identifier, - ACTIONS(1677), 1, + ACTIONS(1631), 1, anon_sym_LPAREN, - ACTIONS(1679), 1, + ACTIONS(1633), 1, anon_sym_getline, - ACTIONS(1681), 1, + ACTIONS(1635), 1, anon_sym_SLASH, - ACTIONS(1685), 1, + ACTIONS(1639), 1, anon_sym_BANG, - ACTIONS(1689), 1, + ACTIONS(1643), 1, anon_sym_AT, - ACTIONS(1691), 1, + ACTIONS(1645), 1, aux_sym_number_token1, - ACTIONS(1693), 1, + ACTIONS(1647), 1, aux_sym_number_token2, - ACTIONS(1695), 1, + ACTIONS(1649), 1, anon_sym_DQUOTE, - STATE(163), 1, + STATE(288), 1, sym_ns_qualified_name, - STATE(169), 1, + STATE(308), 1, sym_array_ref, - STATE(200), 1, + STATE(328), 1, sym__binary_in, - STATE(202), 1, + STATE(331), 1, sym_field_ref, - STATE(2063), 1, + STATE(2080), 1, sym_namespace, - ACTIONS(1683), 2, + ACTIONS(1637), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1687), 2, + ACTIONS(1641), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(823), 19, + STATE(486), 19, sym__getline_exp, sym_getline_input, sym_getline_file, @@ -62391,102 +61868,216 @@ static const uint16_t ts_small_parse_table[] = { sym_string, sym_func_call, sym_indirect_func_call, - [44770] = 19, - ACTIONS(39), 1, - sym_identifier, - ACTIONS(63), 1, - anon_sym_getline, - ACTIONS(79), 1, + [43705] = 18, + ACTIONS(11), 1, + anon_sym_LPAREN, + ACTIONS(21), 1, + anon_sym_BANG, + ACTIONS(25), 1, + anon_sym_DOLLAR, + ACTIONS(29), 1, aux_sym_number_token1, - ACTIONS(486), 1, + ACTIONS(31), 1, aux_sym_number_token2, - ACTIONS(488), 1, + ACTIONS(33), 1, anon_sym_DQUOTE, - ACTIONS(552), 1, - anon_sym_LPAREN, - ACTIONS(554), 1, + ACTIONS(1587), 1, + sym_identifier, + ACTIONS(1589), 1, + anon_sym_getline, + ACTIONS(1591), 1, anon_sym_SLASH, - ACTIONS(556), 1, - anon_sym_BANG, - ACTIONS(560), 1, - anon_sym_DOLLAR, - ACTIONS(562), 1, + ACTIONS(1595), 1, anon_sym_AT, - STATE(592), 1, + STATE(425), 1, sym_ns_qualified_name, - STATE(603), 1, + STATE(467), 1, sym_array_ref, - STATE(619), 1, + STATE(490), 1, sym_field_ref, - STATE(1309), 1, + STATE(539), 1, sym__binary_in, - STATE(2063), 1, + STATE(2080), 1, sym_namespace, - ACTIONS(71), 2, + ACTIONS(19), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(558), 2, + ACTIONS(1593), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1354), 9, + STATE(555), 19, + sym__getline_exp, + sym_getline_input, + sym_getline_file, + sym__exp, sym_ternary_exp, sym_binary_exp, sym_unary_exp, + sym_update_exp, + sym_assignment_exp, + sym_piped_io_exp, sym_string_concat, + sym_regex, + sym_regex_constant, sym_grouping, sym__primitive, sym_number, sym_string, sym_func_call, - STATE(1461), 10, + sym_indirect_func_call, + [43780] = 18, + ACTIONS(368), 1, + anon_sym_DOLLAR, + ACTIONS(1669), 1, + sym_identifier, + ACTIONS(1685), 1, + aux_sym_number_token1, + ACTIONS(1687), 1, + aux_sym_number_token2, + ACTIONS(1689), 1, + anon_sym_DQUOTE, + ACTIONS(1693), 1, + anon_sym_LPAREN, + ACTIONS(1695), 1, + anon_sym_getline, + ACTIONS(1697), 1, + anon_sym_SLASH, + ACTIONS(1701), 1, + anon_sym_BANG, + ACTIONS(1705), 1, + anon_sym_AT, + STATE(164), 1, + sym_ns_qualified_name, + STATE(176), 1, + sym_array_ref, + STATE(192), 1, + sym_field_ref, + STATE(194), 1, + sym__binary_in, + STATE(2068), 1, + sym_namespace, + ACTIONS(1699), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1703), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(916), 19, sym__getline_exp, sym_getline_input, sym_getline_file, sym__exp, + sym_ternary_exp, + sym_binary_exp, + sym_unary_exp, sym_update_exp, sym_assignment_exp, sym_piped_io_exp, + sym_string_concat, sym_regex, sym_regex_constant, + sym_grouping, + sym__primitive, + sym_number, + sym_string, + sym_func_call, sym_indirect_func_call, - [44847] = 18, - ACTIONS(25), 1, - anon_sym_DOLLAR, - ACTIONS(1619), 1, + [43855] = 19, + ACTIONS(1285), 1, sym_identifier, - ACTIONS(1621), 1, + ACTIONS(1287), 1, anon_sym_LPAREN, - ACTIONS(1623), 1, + ACTIONS(1289), 1, anon_sym_getline, - ACTIONS(1625), 1, + ACTIONS(1291), 1, anon_sym_SLASH, - ACTIONS(1629), 1, + ACTIONS(1295), 1, anon_sym_BANG, - ACTIONS(1633), 1, + ACTIONS(1299), 1, + anon_sym_DOLLAR, + ACTIONS(1301), 1, anon_sym_AT, - ACTIONS(1635), 1, + ACTIONS(1303), 1, aux_sym_number_token1, - ACTIONS(1637), 1, + ACTIONS(1305), 1, aux_sym_number_token2, - ACTIONS(1639), 1, + ACTIONS(1307), 1, anon_sym_DQUOTE, - STATE(293), 1, + STATE(1093), 1, sym_ns_qualified_name, - STATE(302), 1, + STATE(1142), 1, sym_array_ref, - STATE(331), 1, + STATE(1251), 1, + sym_field_ref, + STATE(1510), 1, sym__binary_in, - STATE(334), 1, + STATE(2080), 1, + sym_namespace, + ACTIONS(1293), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1297), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1505), 9, + sym_ternary_exp, + sym_binary_exp, + sym_unary_exp, + sym_string_concat, + sym_grouping, + sym__primitive, + sym_number, + sym_string, + sym_func_call, + STATE(1631), 10, + sym__getline_exp, + sym_getline_input, + sym_getline_file, + sym__exp, + sym_update_exp, + sym_assignment_exp, + sym_piped_io_exp, + sym_regex, + sym_regex_constant, + sym_indirect_func_call, + [43932] = 18, + ACTIONS(79), 1, + aux_sym_number_token1, + ACTIONS(312), 1, + anon_sym_LPAREN, + ACTIONS(320), 1, + anon_sym_BANG, + ACTIONS(324), 1, + anon_sym_DOLLAR, + ACTIONS(328), 1, + aux_sym_number_token2, + ACTIONS(330), 1, + anon_sym_DQUOTE, + ACTIONS(1577), 1, + sym_identifier, + ACTIONS(1579), 1, + anon_sym_getline, + ACTIONS(1581), 1, + anon_sym_SLASH, + ACTIONS(1585), 1, + anon_sym_AT, + STATE(591), 1, + sym_ns_qualified_name, + STATE(605), 1, + sym_array_ref, + STATE(628), 1, sym_field_ref, - STATE(2075), 1, + STATE(1305), 1, + sym__binary_in, + STATE(2068), 1, sym_namespace, - ACTIONS(1627), 2, + ACTIONS(71), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1631), 2, + ACTIONS(1583), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(341), 19, + STATE(1380), 19, sym__getline_exp, sym_getline_input, sym_getline_file, @@ -62506,73 +62097,74 @@ static const uint16_t ts_small_parse_table[] = { sym_string, sym_func_call, sym_indirect_func_call, - [44922] = 18, - ACTIONS(123), 1, - aux_sym_number_token1, - ACTIONS(272), 1, + [44007] = 19, + ACTIONS(1285), 1, + sym_identifier, + ACTIONS(1287), 1, anon_sym_LPAREN, - ACTIONS(278), 1, + ACTIONS(1289), 1, + anon_sym_getline, + ACTIONS(1291), 1, + anon_sym_SLASH, + ACTIONS(1295), 1, anon_sym_BANG, - ACTIONS(282), 1, + ACTIONS(1299), 1, anon_sym_DOLLAR, - ACTIONS(286), 1, + ACTIONS(1301), 1, + anon_sym_AT, + ACTIONS(1303), 1, + aux_sym_number_token1, + ACTIONS(1305), 1, aux_sym_number_token2, - ACTIONS(288), 1, + ACTIONS(1307), 1, anon_sym_DQUOTE, - ACTIONS(1697), 1, - sym_identifier, - ACTIONS(1699), 1, - anon_sym_getline, - ACTIONS(1701), 1, - anon_sym_SLASH, - ACTIONS(1705), 1, - anon_sym_AT, - STATE(598), 1, + STATE(1093), 1, sym_ns_qualified_name, - STATE(622), 1, + STATE(1142), 1, sym_array_ref, - STATE(684), 1, + STATE(1251), 1, sym_field_ref, - STATE(1373), 1, + STATE(1510), 1, sym__binary_in, - STATE(1955), 1, + STATE(2080), 1, sym_namespace, - ACTIONS(115), 2, + ACTIONS(1293), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1703), 2, + ACTIONS(1297), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1405), 19, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, + STATE(1505), 9, sym_ternary_exp, sym_binary_exp, sym_unary_exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, sym_string_concat, - sym_regex, - sym_regex_constant, sym_grouping, sym__primitive, sym_number, sym_string, sym_func_call, + STATE(1629), 10, + sym__getline_exp, + sym_getline_input, + sym_getline_file, + sym__exp, + sym_update_exp, + sym_assignment_exp, + sym_piped_io_exp, + sym_regex, + sym_regex_constant, sym_indirect_func_call, - [44997] = 18, - ACTIONS(161), 1, + [44084] = 18, + ACTIONS(444), 1, anon_sym_DOLLAR, - ACTIONS(1557), 1, + ACTIONS(1597), 1, sym_identifier, - ACTIONS(1573), 1, + ACTIONS(1613), 1, aux_sym_number_token1, - ACTIONS(1575), 1, + ACTIONS(1615), 1, aux_sym_number_token2, - ACTIONS(1577), 1, + ACTIONS(1617), 1, anon_sym_DQUOTE, ACTIONS(1707), 1, anon_sym_LPAREN, @@ -62584,15 +62176,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, ACTIONS(1719), 1, anon_sym_AT, - STATE(181), 1, + STATE(165), 1, sym_ns_qualified_name, - STATE(208), 1, + STATE(216), 1, sym_array_ref, - STATE(235), 1, - sym__binary_in, - STATE(236), 1, + STATE(233), 1, sym_field_ref, - STATE(1955), 1, + STATE(234), 1, + sym__binary_in, + STATE(1956), 1, sym_namespace, ACTIONS(1713), 2, anon_sym_PLUS, @@ -62600,7 +62192,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1717), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(230), 19, + STATE(241), 19, sym__getline_exp, sym_getline_input, sym_getline_file, @@ -62620,44 +62212,44 @@ static const uint16_t ts_small_parse_table[] = { sym_string, sym_func_call, sym_indirect_func_call, - [45072] = 18, - ACTIONS(390), 1, + [44159] = 18, + ACTIONS(558), 1, anon_sym_DOLLAR, - ACTIONS(1557), 1, + ACTIONS(1669), 1, sym_identifier, - ACTIONS(1573), 1, + ACTIONS(1685), 1, aux_sym_number_token1, - ACTIONS(1575), 1, + ACTIONS(1687), 1, aux_sym_number_token2, - ACTIONS(1577), 1, + ACTIONS(1689), 1, anon_sym_DQUOTE, - ACTIONS(1641), 1, + ACTIONS(1725), 1, anon_sym_LPAREN, - ACTIONS(1643), 1, + ACTIONS(1727), 1, anon_sym_getline, - ACTIONS(1645), 1, + ACTIONS(1729), 1, anon_sym_SLASH, - ACTIONS(1649), 1, + ACTIONS(1733), 1, anon_sym_BANG, - ACTIONS(1653), 1, + ACTIONS(1737), 1, anon_sym_AT, - STATE(181), 1, + STATE(164), 1, sym_ns_qualified_name, - STATE(208), 1, + STATE(176), 1, sym_array_ref, - STATE(235), 1, - sym__binary_in, - STATE(236), 1, + STATE(192), 1, sym_field_ref, - STATE(1955), 1, + STATE(194), 1, + sym__binary_in, + STATE(2068), 1, sym_namespace, - ACTIONS(1647), 2, + ACTIONS(1731), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1651), 2, + ACTIONS(1735), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1156), 19, + STATE(269), 19, sym__getline_exp, sym_getline_input, sym_getline_file, @@ -62677,44 +62269,44 @@ static const uint16_t ts_small_parse_table[] = { sym_string, sym_func_call, sym_indirect_func_call, - [45147] = 19, + [44234] = 19, ACTIONS(85), 1, sym_identifier, - ACTIONS(107), 1, - anon_sym_getline, - ACTIONS(123), 1, - aux_sym_number_token1, - ACTIONS(272), 1, + ACTIONS(89), 1, anon_sym_LPAREN, - ACTIONS(276), 1, + ACTIONS(111), 1, + anon_sym_getline, + ACTIONS(117), 1, anon_sym_SLASH, - ACTIONS(278), 1, + ACTIONS(121), 1, anon_sym_BANG, - ACTIONS(282), 1, + ACTIONS(125), 1, anon_sym_DOLLAR, - ACTIONS(284), 1, + ACTIONS(127), 1, anon_sym_AT, - ACTIONS(286), 1, + ACTIONS(129), 1, + aux_sym_number_token1, + ACTIONS(131), 1, aux_sym_number_token2, - ACTIONS(288), 1, + ACTIONS(133), 1, anon_sym_DQUOTE, - STATE(607), 1, + STATE(244), 1, sym_ns_qualified_name, - STATE(610), 1, + STATE(268), 1, sym_array_ref, - STATE(703), 1, + STATE(274), 1, sym_field_ref, - STATE(1373), 1, + STATE(426), 1, sym__binary_in, - STATE(1955), 1, + STATE(1956), 1, sym_namespace, - ACTIONS(115), 2, + ACTIONS(119), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(280), 2, + ACTIONS(123), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1421), 9, + STATE(427), 9, sym_ternary_exp, sym_binary_exp, sym_unary_exp, @@ -62724,7 +62316,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_string, sym_func_call, - STATE(1404), 10, + STATE(476), 10, sym__getline_exp, sym_getline_input, sym_getline_file, @@ -62735,44 +62327,86 @@ static const uint16_t ts_small_parse_table[] = { sym_regex, sym_regex_constant, sym_indirect_func_call, - [45224] = 18, - ACTIONS(25), 1, - anon_sym_DOLLAR, - ACTIONS(1619), 1, - sym_identifier, - ACTIONS(1621), 1, + [44311] = 3, + ACTIONS(1739), 2, + anon_sym_GT, + anon_sym_GT_GT, + ACTIONS(1741), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(1537), 34, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_if, anon_sym_LPAREN, - ACTIONS(1623), 1, + anon_sym_while, + anon_sym_do, + anon_sym_for, + sym_break_statement, + sym_continue_statement, + anon_sym_delete, + anon_sym_exit, + anon_sym_return, + anon_sym_switch, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_getline, - ACTIONS(1625), 1, + sym_next_statement, + sym_nextfile_statement, + anon_sym_print, + anon_sym_printf, anon_sym_SLASH, - ACTIONS(1629), 1, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_BANG, - ACTIONS(1633), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(1635), 1, + sym_identifier, aux_sym_number_token1, - ACTIONS(1637), 1, aux_sym_number_token2, - ACTIONS(1639), 1, anon_sym_DQUOTE, - STATE(293), 1, + anon_sym_POUND, + [44356] = 18, + ACTIONS(79), 1, + aux_sym_number_token1, + ACTIONS(312), 1, + anon_sym_LPAREN, + ACTIONS(320), 1, + anon_sym_BANG, + ACTIONS(324), 1, + anon_sym_DOLLAR, + ACTIONS(328), 1, + aux_sym_number_token2, + ACTIONS(330), 1, + anon_sym_DQUOTE, + ACTIONS(1577), 1, + sym_identifier, + ACTIONS(1579), 1, + anon_sym_getline, + ACTIONS(1581), 1, + anon_sym_SLASH, + ACTIONS(1585), 1, + anon_sym_AT, + STATE(591), 1, sym_ns_qualified_name, - STATE(302), 1, + STATE(605), 1, sym_array_ref, - STATE(331), 1, - sym__binary_in, - STATE(334), 1, + STATE(628), 1, sym_field_ref, - STATE(2075), 1, + STATE(1305), 1, + sym__binary_in, + STATE(2068), 1, sym_namespace, - ACTIONS(1627), 2, + ACTIONS(71), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1631), 2, + ACTIONS(1583), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(488), 19, + STATE(1381), 19, sym__getline_exp, sym_getline_input, sym_getline_file, @@ -62792,101 +62426,146 @@ static const uint16_t ts_small_parse_table[] = { sym_string, sym_func_call, sym_indirect_func_call, - [45299] = 18, - ACTIONS(482), 1, - anon_sym_DOLLAR, - ACTIONS(1675), 1, + [44431] = 5, + ACTIONS(778), 2, + sym_concatenating_space, + sym__if_else_separator, + ACTIONS(1657), 2, + anon_sym_CARET, + anon_sym_STAR_STAR, + ACTIONS(1661), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1659), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(776), 29, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_while, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + [44480] = 19, + ACTIONS(137), 1, sym_identifier, - ACTIONS(1677), 1, - anon_sym_LPAREN, - ACTIONS(1679), 1, + ACTIONS(153), 1, anon_sym_getline, - ACTIONS(1681), 1, - anon_sym_SLASH, - ACTIONS(1685), 1, - anon_sym_BANG, - ACTIONS(1689), 1, - anon_sym_AT, - ACTIONS(1691), 1, + ACTIONS(169), 1, aux_sym_number_token1, - ACTIONS(1693), 1, + ACTIONS(306), 1, aux_sym_number_token2, - ACTIONS(1695), 1, + ACTIONS(308), 1, anon_sym_DQUOTE, - STATE(163), 1, + ACTIONS(434), 1, + anon_sym_LPAREN, + ACTIONS(438), 1, + anon_sym_SLASH, + ACTIONS(440), 1, + anon_sym_BANG, + ACTIONS(444), 1, + anon_sym_DOLLAR, + ACTIONS(446), 1, + anon_sym_AT, + STATE(597), 1, sym_ns_qualified_name, - STATE(169), 1, + STATE(614), 1, sym_array_ref, - STATE(200), 1, - sym__binary_in, - STATE(202), 1, + STATE(705), 1, sym_field_ref, - STATE(2063), 1, + STATE(1385), 1, + sym__binary_in, + STATE(1956), 1, sym_namespace, - ACTIONS(1683), 2, + ACTIONS(161), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1687), 2, + ACTIONS(442), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(990), 19, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, + STATE(1420), 9, sym_ternary_exp, sym_binary_exp, sym_unary_exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, sym_string_concat, - sym_regex, - sym_regex_constant, sym_grouping, sym__primitive, sym_number, sym_string, sym_func_call, + STATE(1416), 10, + sym__getline_exp, + sym_getline_input, + sym_getline_file, + sym__exp, + sym_update_exp, + sym_assignment_exp, + sym_piped_io_exp, + sym_regex, + sym_regex_constant, sym_indirect_func_call, - [45374] = 18, - ACTIONS(482), 1, + [44557] = 18, + ACTIONS(558), 1, anon_sym_DOLLAR, - ACTIONS(1675), 1, + ACTIONS(1669), 1, sym_identifier, - ACTIONS(1677), 1, + ACTIONS(1685), 1, + aux_sym_number_token1, + ACTIONS(1687), 1, + aux_sym_number_token2, + ACTIONS(1689), 1, + anon_sym_DQUOTE, + ACTIONS(1725), 1, anon_sym_LPAREN, - ACTIONS(1679), 1, + ACTIONS(1727), 1, anon_sym_getline, - ACTIONS(1681), 1, + ACTIONS(1729), 1, anon_sym_SLASH, - ACTIONS(1685), 1, + ACTIONS(1733), 1, anon_sym_BANG, - ACTIONS(1689), 1, + ACTIONS(1737), 1, anon_sym_AT, - ACTIONS(1691), 1, - aux_sym_number_token1, - ACTIONS(1693), 1, - aux_sym_number_token2, - ACTIONS(1695), 1, - anon_sym_DQUOTE, - STATE(163), 1, + STATE(164), 1, sym_ns_qualified_name, - STATE(169), 1, + STATE(176), 1, sym_array_ref, - STATE(200), 1, - sym__binary_in, - STATE(202), 1, + STATE(192), 1, sym_field_ref, - STATE(2063), 1, + STATE(194), 1, + sym__binary_in, + STATE(2068), 1, sym_namespace, - ACTIONS(1683), 2, + ACTIONS(1731), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1687), 2, + ACTIONS(1735), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(828), 19, + STATE(267), 19, sym__getline_exp, sym_getline_input, sym_getline_file, @@ -62906,101 +62585,206 @@ static const uint16_t ts_small_parse_table[] = { sym_string, sym_func_call, sym_indirect_func_call, - [45449] = 18, - ACTIONS(79), 1, - aux_sym_number_token1, - ACTIONS(486), 1, - aux_sym_number_token2, - ACTIONS(488), 1, - anon_sym_DQUOTE, - ACTIONS(552), 1, - anon_sym_LPAREN, - ACTIONS(556), 1, - anon_sym_BANG, - ACTIONS(560), 1, - anon_sym_DOLLAR, - ACTIONS(1589), 1, + [44632] = 7, + ACTIONS(870), 2, + sym_concatenating_space, + sym__if_else_separator, + ACTIONS(1657), 2, + anon_sym_CARET, + anon_sym_STAR_STAR, + ACTIONS(1661), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1663), 2, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(1659), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1653), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(868), 21, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_while, + anon_sym_in, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + [44685] = 19, + ACTIONS(1285), 1, sym_identifier, - ACTIONS(1591), 1, + ACTIONS(1287), 1, + anon_sym_LPAREN, + ACTIONS(1289), 1, anon_sym_getline, - ACTIONS(1593), 1, + ACTIONS(1291), 1, anon_sym_SLASH, - ACTIONS(1597), 1, + ACTIONS(1295), 1, + anon_sym_BANG, + ACTIONS(1299), 1, + anon_sym_DOLLAR, + ACTIONS(1301), 1, anon_sym_AT, - STATE(593), 1, + ACTIONS(1303), 1, + aux_sym_number_token1, + ACTIONS(1305), 1, + aux_sym_number_token2, + ACTIONS(1307), 1, + anon_sym_DQUOTE, + STATE(1093), 1, sym_ns_qualified_name, - STATE(606), 1, + STATE(1142), 1, sym_array_ref, - STATE(628), 1, + STATE(1251), 1, sym_field_ref, - STATE(1309), 1, + STATE(1510), 1, sym__binary_in, - STATE(2063), 1, + STATE(2080), 1, sym_namespace, - ACTIONS(71), 2, + ACTIONS(1293), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1595), 2, + ACTIONS(1297), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1340), 19, + STATE(1505), 9, + sym_ternary_exp, + sym_binary_exp, + sym_unary_exp, + sym_string_concat, + sym_grouping, + sym__primitive, + sym_number, + sym_string, + sym_func_call, + STATE(1578), 10, sym__getline_exp, sym_getline_input, sym_getline_file, sym__exp, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, sym_update_exp, sym_assignment_exp, sym_piped_io_exp, - sym_string_concat, sym_regex, sym_regex_constant, + sym_indirect_func_call, + [44762] = 19, + ACTIONS(1285), 1, + sym_identifier, + ACTIONS(1287), 1, + anon_sym_LPAREN, + ACTIONS(1289), 1, + anon_sym_getline, + ACTIONS(1291), 1, + anon_sym_SLASH, + ACTIONS(1295), 1, + anon_sym_BANG, + ACTIONS(1299), 1, + anon_sym_DOLLAR, + ACTIONS(1301), 1, + anon_sym_AT, + ACTIONS(1303), 1, + aux_sym_number_token1, + ACTIONS(1305), 1, + aux_sym_number_token2, + ACTIONS(1307), 1, + anon_sym_DQUOTE, + STATE(1093), 1, + sym_ns_qualified_name, + STATE(1142), 1, + sym_array_ref, + STATE(1251), 1, + sym_field_ref, + STATE(1510), 1, + sym__binary_in, + STATE(2080), 1, + sym_namespace, + ACTIONS(1293), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1297), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1505), 9, + sym_ternary_exp, + sym_binary_exp, + sym_unary_exp, + sym_string_concat, sym_grouping, sym__primitive, sym_number, sym_string, sym_func_call, + STATE(1565), 10, + sym__getline_exp, + sym_getline_input, + sym_getline_file, + sym__exp, + sym_update_exp, + sym_assignment_exp, + sym_piped_io_exp, + sym_regex, + sym_regex_constant, sym_indirect_func_call, - [45524] = 18, - ACTIONS(123), 1, - aux_sym_number_token1, - ACTIONS(272), 1, - anon_sym_LPAREN, - ACTIONS(278), 1, - anon_sym_BANG, - ACTIONS(282), 1, + [44839] = 18, + ACTIONS(444), 1, anon_sym_DOLLAR, - ACTIONS(286), 1, + ACTIONS(1597), 1, + sym_identifier, + ACTIONS(1613), 1, + aux_sym_number_token1, + ACTIONS(1615), 1, aux_sym_number_token2, - ACTIONS(288), 1, + ACTIONS(1617), 1, anon_sym_DQUOTE, - ACTIONS(1697), 1, - sym_identifier, - ACTIONS(1699), 1, + ACTIONS(1707), 1, + anon_sym_LPAREN, + ACTIONS(1709), 1, anon_sym_getline, - ACTIONS(1701), 1, + ACTIONS(1711), 1, anon_sym_SLASH, - ACTIONS(1705), 1, + ACTIONS(1715), 1, + anon_sym_BANG, + ACTIONS(1719), 1, anon_sym_AT, - STATE(598), 1, + STATE(165), 1, sym_ns_qualified_name, - STATE(622), 1, + STATE(216), 1, sym_array_ref, - STATE(684), 1, + STATE(233), 1, sym_field_ref, - STATE(1373), 1, + STATE(234), 1, sym__binary_in, - STATE(1955), 1, + STATE(1956), 1, sym_namespace, - ACTIONS(115), 2, + ACTIONS(1713), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1703), 2, + ACTIONS(1717), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1363), 19, + STATE(231), 19, sym__getline_exp, sym_getline_input, sym_getline_file, @@ -63020,101 +62804,102 @@ static const uint16_t ts_small_parse_table[] = { sym_string, sym_func_call, sym_indirect_func_call, - [45599] = 18, - ACTIONS(25), 1, - anon_sym_DOLLAR, - ACTIONS(1619), 1, + [44914] = 19, + ACTIONS(5), 1, sym_identifier, - ACTIONS(1621), 1, + ACTIONS(11), 1, anon_sym_LPAREN, - ACTIONS(1623), 1, + ACTIONS(15), 1, anon_sym_getline, - ACTIONS(1625), 1, + ACTIONS(17), 1, anon_sym_SLASH, - ACTIONS(1629), 1, + ACTIONS(21), 1, anon_sym_BANG, - ACTIONS(1633), 1, - anon_sym_AT, - ACTIONS(1635), 1, + ACTIONS(25), 1, + anon_sym_DOLLAR, + ACTIONS(29), 1, aux_sym_number_token1, - ACTIONS(1637), 1, + ACTIONS(31), 1, aux_sym_number_token2, - ACTIONS(1639), 1, + ACTIONS(33), 1, anon_sym_DQUOTE, - STATE(293), 1, + ACTIONS(1721), 1, + anon_sym_AT, + STATE(433), 1, sym_ns_qualified_name, - STATE(302), 1, + STATE(459), 1, sym_array_ref, - STATE(331), 1, - sym__binary_in, - STATE(334), 1, + STATE(495), 1, sym_field_ref, - STATE(2075), 1, + STATE(539), 1, + sym__binary_in, + STATE(2080), 1, sym_namespace, - ACTIONS(1627), 2, + ACTIONS(19), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1631), 2, + ACTIONS(23), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(490), 19, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, + STATE(538), 9, sym_ternary_exp, sym_binary_exp, sym_unary_exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, sym_string_concat, - sym_regex, - sym_regex_constant, sym_grouping, sym__primitive, sym_number, sym_string, sym_func_call, + STATE(574), 10, + sym__getline_exp, + sym_getline_input, + sym_getline_file, + sym__exp, + sym_update_exp, + sym_assignment_exp, + sym_piped_io_exp, + sym_regex, + sym_regex_constant, sym_indirect_func_call, - [45674] = 18, - ACTIONS(482), 1, + [44991] = 18, + ACTIONS(324), 1, anon_sym_DOLLAR, - ACTIONS(1675), 1, + ACTIONS(1669), 1, sym_identifier, - ACTIONS(1677), 1, + ACTIONS(1671), 1, anon_sym_LPAREN, - ACTIONS(1679), 1, + ACTIONS(1673), 1, anon_sym_getline, - ACTIONS(1681), 1, + ACTIONS(1675), 1, anon_sym_SLASH, - ACTIONS(1685), 1, + ACTIONS(1679), 1, anon_sym_BANG, - ACTIONS(1689), 1, + ACTIONS(1683), 1, anon_sym_AT, - ACTIONS(1691), 1, + ACTIONS(1685), 1, aux_sym_number_token1, - ACTIONS(1693), 1, + ACTIONS(1687), 1, aux_sym_number_token2, - ACTIONS(1695), 1, + ACTIONS(1689), 1, anon_sym_DQUOTE, - STATE(163), 1, + STATE(164), 1, sym_ns_qualified_name, - STATE(169), 1, + STATE(176), 1, sym_array_ref, - STATE(200), 1, - sym__binary_in, - STATE(202), 1, + STATE(192), 1, sym_field_ref, - STATE(2063), 1, + STATE(194), 1, + sym__binary_in, + STATE(2068), 1, sym_namespace, - ACTIONS(1683), 2, + ACTIONS(1677), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1687), 2, + ACTIONS(1681), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(198), 19, + STATE(624), 19, sym__getline_exp, sym_getline_input, sym_getline_file, @@ -63134,44 +62919,44 @@ static const uint16_t ts_small_parse_table[] = { sym_string, sym_func_call, sym_indirect_func_call, - [45749] = 18, - ACTIONS(11), 1, - anon_sym_LPAREN, - ACTIONS(21), 1, - anon_sym_BANG, - ACTIONS(25), 1, + [45066] = 18, + ACTIONS(324), 1, anon_sym_DOLLAR, - ACTIONS(29), 1, - aux_sym_number_token1, - ACTIONS(31), 1, - aux_sym_number_token2, - ACTIONS(33), 1, - anon_sym_DQUOTE, - ACTIONS(1599), 1, + ACTIONS(1669), 1, sym_identifier, - ACTIONS(1601), 1, + ACTIONS(1671), 1, + anon_sym_LPAREN, + ACTIONS(1673), 1, anon_sym_getline, - ACTIONS(1603), 1, + ACTIONS(1675), 1, anon_sym_SLASH, - ACTIONS(1607), 1, + ACTIONS(1679), 1, + anon_sym_BANG, + ACTIONS(1683), 1, anon_sym_AT, - STATE(445), 1, + ACTIONS(1685), 1, + aux_sym_number_token1, + ACTIONS(1687), 1, + aux_sym_number_token2, + ACTIONS(1689), 1, + anon_sym_DQUOTE, + STATE(164), 1, sym_ns_qualified_name, - STATE(474), 1, + STATE(176), 1, sym_array_ref, - STATE(480), 1, + STATE(192), 1, sym_field_ref, - STATE(556), 1, + STATE(194), 1, sym__binary_in, - STATE(2075), 1, + STATE(2068), 1, sym_namespace, - ACTIONS(19), 2, + ACTIONS(1677), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1605), 2, + ACTIONS(1681), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(544), 19, + STATE(623), 19, sym__getline_exp, sym_getline_input, sym_getline_file, @@ -63191,86 +62976,44 @@ static const uint16_t ts_small_parse_table[] = { sym_string, sym_func_call, sym_indirect_func_call, - [45824] = 3, - ACTIONS(1771), 2, - anon_sym_GT, - anon_sym_GT_GT, - ACTIONS(1773), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(1485), 34, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, + [45141] = 19, + ACTIONS(1287), 1, anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, + ACTIONS(1289), 1, anon_sym_getline, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(1291), 1, + anon_sym_SLASH, + ACTIONS(1295), 1, anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(1299), 1, anon_sym_DOLLAR, + ACTIONS(1301), 1, anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [45869] = 19, - ACTIONS(79), 1, + ACTIONS(1303), 1, aux_sym_number_token1, - ACTIONS(456), 1, - anon_sym_LPAREN, - ACTIONS(478), 1, - anon_sym_BANG, - ACTIONS(482), 1, - anon_sym_DOLLAR, - ACTIONS(486), 1, + ACTIONS(1305), 1, aux_sym_number_token2, - ACTIONS(488), 1, + ACTIONS(1307), 1, anon_sym_DQUOTE, - ACTIONS(1273), 1, - anon_sym_getline, - ACTIONS(1275), 1, - anon_sym_SLASH, - ACTIONS(1285), 1, - anon_sym_AT, - ACTIONS(1775), 1, + ACTIONS(1743), 1, sym_identifier, - STATE(179), 1, + STATE(301), 1, sym_array_ref, - STATE(189), 1, + STATE(346), 1, sym_field_ref, - STATE(587), 1, + STATE(776), 1, sym_ns_qualified_name, - STATE(1309), 1, + STATE(1510), 1, sym__binary_in, - STATE(2063), 1, + STATE(2080), 1, sym_namespace, - ACTIONS(476), 2, + ACTIONS(1293), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1281), 2, + ACTIONS(1297), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1313), 9, + STATE(1515), 9, sym_ternary_exp, sym_binary_exp, sym_unary_exp, @@ -63280,7 +63023,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_string, sym_func_call, - STATE(1680), 10, + STATE(1684), 10, sym__getline_exp, sym_getline_input, sym_getline_file, @@ -63291,44 +63034,44 @@ static const uint16_t ts_small_parse_table[] = { sym_regex, sym_regex_constant, sym_indirect_func_call, - [45946] = 19, - ACTIONS(39), 1, + [45218] = 19, + ACTIONS(1285), 1, sym_identifier, - ACTIONS(63), 1, - anon_sym_getline, - ACTIONS(79), 1, - aux_sym_number_token1, - ACTIONS(486), 1, - aux_sym_number_token2, - ACTIONS(488), 1, - anon_sym_DQUOTE, - ACTIONS(552), 1, + ACTIONS(1287), 1, anon_sym_LPAREN, - ACTIONS(554), 1, + ACTIONS(1289), 1, + anon_sym_getline, + ACTIONS(1291), 1, anon_sym_SLASH, - ACTIONS(556), 1, + ACTIONS(1295), 1, anon_sym_BANG, - ACTIONS(560), 1, + ACTIONS(1299), 1, anon_sym_DOLLAR, - ACTIONS(562), 1, + ACTIONS(1301), 1, anon_sym_AT, - STATE(592), 1, + ACTIONS(1303), 1, + aux_sym_number_token1, + ACTIONS(1305), 1, + aux_sym_number_token2, + ACTIONS(1307), 1, + anon_sym_DQUOTE, + STATE(1093), 1, sym_ns_qualified_name, - STATE(603), 1, + STATE(1142), 1, sym_array_ref, - STATE(619), 1, + STATE(1251), 1, sym_field_ref, - STATE(1309), 1, + STATE(1510), 1, sym__binary_in, - STATE(2063), 1, + STATE(2080), 1, sym_namespace, - ACTIONS(71), 2, + ACTIONS(1293), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(558), 2, + ACTIONS(1297), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1354), 9, + STATE(1505), 9, sym_ternary_exp, sym_binary_exp, sym_unary_exp, @@ -63338,7 +63081,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_string, sym_func_call, - STATE(1368), 10, + STATE(1564), 10, sym__getline_exp, sym_getline_input, sym_getline_file, @@ -63349,44 +63092,44 @@ static const uint16_t ts_small_parse_table[] = { sym_regex, sym_regex_constant, sym_indirect_func_call, - [46023] = 18, - ACTIONS(79), 1, - aux_sym_number_token1, - ACTIONS(486), 1, - aux_sym_number_token2, - ACTIONS(488), 1, - anon_sym_DQUOTE, - ACTIONS(552), 1, - anon_sym_LPAREN, - ACTIONS(556), 1, - anon_sym_BANG, - ACTIONS(560), 1, + [45295] = 18, + ACTIONS(302), 1, anon_sym_DOLLAR, - ACTIONS(1589), 1, + ACTIONS(1597), 1, sym_identifier, - ACTIONS(1591), 1, + ACTIONS(1599), 1, + anon_sym_LPAREN, + ACTIONS(1601), 1, anon_sym_getline, - ACTIONS(1593), 1, + ACTIONS(1603), 1, anon_sym_SLASH, - ACTIONS(1597), 1, + ACTIONS(1607), 1, + anon_sym_BANG, + ACTIONS(1611), 1, anon_sym_AT, - STATE(593), 1, + ACTIONS(1613), 1, + aux_sym_number_token1, + ACTIONS(1615), 1, + aux_sym_number_token2, + ACTIONS(1617), 1, + anon_sym_DQUOTE, + STATE(165), 1, sym_ns_qualified_name, - STATE(606), 1, + STATE(216), 1, sym_array_ref, - STATE(628), 1, + STATE(233), 1, sym_field_ref, - STATE(1309), 1, + STATE(234), 1, sym__binary_in, - STATE(2063), 1, + STATE(1956), 1, sym_namespace, - ACTIONS(71), 2, + ACTIONS(1605), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1595), 2, + ACTIONS(1609), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1316), 19, + STATE(1141), 19, sym__getline_exp, sym_getline_input, sym_getline_file, @@ -63406,44 +63149,44 @@ static const uint16_t ts_small_parse_table[] = { sym_string, sym_func_call, sym_indirect_func_call, - [46098] = 18, - ACTIONS(79), 1, - aux_sym_number_token1, - ACTIONS(456), 1, - anon_sym_LPAREN, - ACTIONS(478), 1, - anon_sym_BANG, - ACTIONS(482), 1, + [45370] = 18, + ACTIONS(125), 1, anon_sym_DOLLAR, - ACTIONS(486), 1, + ACTIONS(1597), 1, + sym_identifier, + ACTIONS(1613), 1, + aux_sym_number_token1, + ACTIONS(1615), 1, aux_sym_number_token2, - ACTIONS(488), 1, + ACTIONS(1617), 1, anon_sym_DQUOTE, - ACTIONS(1777), 1, - sym_identifier, - ACTIONS(1779), 1, + ACTIONS(1745), 1, + anon_sym_LPAREN, + ACTIONS(1747), 1, anon_sym_getline, - ACTIONS(1781), 1, + ACTIONS(1749), 1, anon_sym_SLASH, - ACTIONS(1785), 1, + ACTIONS(1753), 1, + anon_sym_BANG, + ACTIONS(1757), 1, anon_sym_AT, - STATE(648), 1, + STATE(165), 1, sym_ns_qualified_name, - STATE(758), 1, + STATE(216), 1, sym_array_ref, - STATE(992), 1, + STATE(233), 1, sym_field_ref, - STATE(1309), 1, + STATE(234), 1, sym__binary_in, - STATE(2063), 1, + STATE(1956), 1, sym_namespace, - ACTIONS(476), 2, + ACTIONS(1751), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1783), 2, + ACTIONS(1755), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1456), 19, + STATE(231), 19, sym__getline_exp, sym_getline_input, sym_getline_file, @@ -63463,44 +63206,44 @@ static const uint16_t ts_small_parse_table[] = { sym_string, sym_func_call, sym_indirect_func_call, - [46173] = 18, - ACTIONS(79), 1, + [45445] = 18, + ACTIONS(169), 1, aux_sym_number_token1, - ACTIONS(456), 1, + ACTIONS(306), 1, + aux_sym_number_token2, + ACTIONS(308), 1, + anon_sym_DQUOTE, + ACTIONS(434), 1, anon_sym_LPAREN, - ACTIONS(478), 1, + ACTIONS(440), 1, anon_sym_BANG, - ACTIONS(482), 1, + ACTIONS(444), 1, anon_sym_DOLLAR, - ACTIONS(486), 1, - aux_sym_number_token2, - ACTIONS(488), 1, - anon_sym_DQUOTE, - ACTIONS(1777), 1, + ACTIONS(1557), 1, sym_identifier, - ACTIONS(1779), 1, + ACTIONS(1559), 1, anon_sym_getline, - ACTIONS(1781), 1, + ACTIONS(1561), 1, anon_sym_SLASH, - ACTIONS(1785), 1, + ACTIONS(1565), 1, anon_sym_AT, - STATE(648), 1, + STATE(606), 1, sym_ns_qualified_name, - STATE(758), 1, + STATE(611), 1, sym_array_ref, - STATE(992), 1, + STATE(686), 1, sym_field_ref, - STATE(1309), 1, + STATE(1385), 1, sym__binary_in, - STATE(2063), 1, + STATE(1956), 1, sym_namespace, - ACTIONS(476), 2, + ACTIONS(161), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1783), 2, + ACTIONS(1563), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1455), 19, + STATE(1357), 19, sym__getline_exp, sym_getline_input, sym_getline_file, @@ -63520,44 +63263,44 @@ static const uint16_t ts_small_parse_table[] = { sym_string, sym_func_call, sym_indirect_func_call, - [46248] = 18, - ACTIONS(79), 1, - aux_sym_number_token1, - ACTIONS(456), 1, - anon_sym_LPAREN, - ACTIONS(478), 1, - anon_sym_BANG, - ACTIONS(482), 1, + [45520] = 18, + ACTIONS(25), 1, anon_sym_DOLLAR, - ACTIONS(486), 1, - aux_sym_number_token2, - ACTIONS(488), 1, - anon_sym_DQUOTE, - ACTIONS(1777), 1, + ACTIONS(1629), 1, sym_identifier, - ACTIONS(1779), 1, + ACTIONS(1631), 1, + anon_sym_LPAREN, + ACTIONS(1633), 1, anon_sym_getline, - ACTIONS(1781), 1, + ACTIONS(1635), 1, anon_sym_SLASH, - ACTIONS(1785), 1, + ACTIONS(1639), 1, + anon_sym_BANG, + ACTIONS(1643), 1, anon_sym_AT, - STATE(648), 1, + ACTIONS(1645), 1, + aux_sym_number_token1, + ACTIONS(1647), 1, + aux_sym_number_token2, + ACTIONS(1649), 1, + anon_sym_DQUOTE, + STATE(288), 1, sym_ns_qualified_name, - STATE(758), 1, + STATE(308), 1, sym_array_ref, - STATE(992), 1, - sym_field_ref, - STATE(1309), 1, + STATE(328), 1, sym__binary_in, - STATE(2063), 1, + STATE(331), 1, + sym_field_ref, + STATE(2080), 1, sym_namespace, - ACTIONS(476), 2, + ACTIONS(1637), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1783), 2, + ACTIONS(1641), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1314), 19, + STATE(484), 19, sym__getline_exp, sym_getline_input, sym_getline_file, @@ -63577,101 +63320,160 @@ static const uint16_t ts_small_parse_table[] = { sym_string, sym_func_call, sym_indirect_func_call, - [46323] = 18, - ACTIONS(79), 1, + [45595] = 19, + ACTIONS(169), 1, aux_sym_number_token1, - ACTIONS(456), 1, + ACTIONS(270), 1, + sym_identifier, + ACTIONS(276), 1, anon_sym_LPAREN, - ACTIONS(478), 1, + ACTIONS(288), 1, + anon_sym_getline, + ACTIONS(294), 1, + anon_sym_SLASH, + ACTIONS(298), 1, anon_sym_BANG, - ACTIONS(482), 1, + ACTIONS(302), 1, anon_sym_DOLLAR, - ACTIONS(486), 1, + ACTIONS(304), 1, + anon_sym_AT, + ACTIONS(306), 1, aux_sym_number_token2, - ACTIONS(488), 1, + ACTIONS(308), 1, anon_sym_DQUOTE, - ACTIONS(1777), 1, - sym_identifier, - ACTIONS(1779), 1, - anon_sym_getline, - ACTIONS(1781), 1, - anon_sym_SLASH, - ACTIONS(1785), 1, - anon_sym_AT, - STATE(648), 1, + STATE(720), 1, sym_ns_qualified_name, - STATE(758), 1, + STATE(991), 1, sym_array_ref, - STATE(992), 1, + STATE(1194), 1, sym_field_ref, - STATE(1309), 1, + STATE(1385), 1, sym__binary_in, - STATE(2063), 1, + STATE(1956), 1, sym_namespace, - ACTIONS(476), 2, + ACTIONS(296), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1783), 2, + ACTIONS(300), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1454), 19, + STATE(1476), 9, + sym_ternary_exp, + sym_binary_exp, + sym_unary_exp, + sym_string_concat, + sym_grouping, + sym__primitive, + sym_number, + sym_string, + sym_func_call, + STATE(1395), 10, sym__getline_exp, sym_getline_input, sym_getline_file, sym__exp, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, sym_update_exp, sym_assignment_exp, sym_piped_io_exp, - sym_string_concat, sym_regex, sym_regex_constant, + sym_indirect_func_call, + [45672] = 19, + ACTIONS(79), 1, + aux_sym_number_token1, + ACTIONS(328), 1, + aux_sym_number_token2, + ACTIONS(330), 1, + anon_sym_DQUOTE, + ACTIONS(336), 1, + sym_identifier, + ACTIONS(342), 1, + anon_sym_LPAREN, + ACTIONS(354), 1, + anon_sym_getline, + ACTIONS(360), 1, + anon_sym_SLASH, + ACTIONS(364), 1, + anon_sym_BANG, + ACTIONS(368), 1, + anon_sym_DOLLAR, + ACTIONS(370), 1, + anon_sym_AT, + STATE(672), 1, + sym_ns_qualified_name, + STATE(740), 1, + sym_array_ref, + STATE(950), 1, + sym_field_ref, + STATE(1305), 1, + sym__binary_in, + STATE(2068), 1, + sym_namespace, + ACTIONS(362), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(366), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1461), 9, + sym_ternary_exp, + sym_binary_exp, + sym_unary_exp, + sym_string_concat, sym_grouping, sym__primitive, sym_number, sym_string, sym_func_call, + STATE(1552), 10, + sym__getline_exp, + sym_getline_input, + sym_getline_file, + sym__exp, + sym_update_exp, + sym_assignment_exp, + sym_piped_io_exp, + sym_regex, + sym_regex_constant, sym_indirect_func_call, - [46398] = 18, - ACTIONS(79), 1, - aux_sym_number_token1, - ACTIONS(456), 1, - anon_sym_LPAREN, - ACTIONS(478), 1, - anon_sym_BANG, - ACTIONS(482), 1, + [45749] = 18, + ACTIONS(368), 1, anon_sym_DOLLAR, - ACTIONS(486), 1, + ACTIONS(1669), 1, + sym_identifier, + ACTIONS(1685), 1, + aux_sym_number_token1, + ACTIONS(1687), 1, aux_sym_number_token2, - ACTIONS(488), 1, + ACTIONS(1689), 1, anon_sym_DQUOTE, - ACTIONS(1777), 1, - sym_identifier, - ACTIONS(1779), 1, + ACTIONS(1693), 1, + anon_sym_LPAREN, + ACTIONS(1695), 1, anon_sym_getline, - ACTIONS(1781), 1, + ACTIONS(1697), 1, anon_sym_SLASH, - ACTIONS(1785), 1, + ACTIONS(1701), 1, + anon_sym_BANG, + ACTIONS(1705), 1, anon_sym_AT, - STATE(648), 1, + STATE(164), 1, sym_ns_qualified_name, - STATE(758), 1, + STATE(176), 1, sym_array_ref, - STATE(992), 1, + STATE(192), 1, sym_field_ref, - STATE(1309), 1, + STATE(194), 1, sym__binary_in, - STATE(2063), 1, + STATE(2068), 1, sym_namespace, - ACTIONS(476), 2, + ACTIONS(1699), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1783), 2, + ACTIONS(1703), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1453), 19, + STATE(811), 19, sym__getline_exp, sym_getline_input, sym_getline_file, @@ -63691,101 +63493,146 @@ static const uint16_t ts_small_parse_table[] = { sym_string, sym_func_call, sym_indirect_func_call, - [46473] = 18, + [45824] = 5, + ACTIONS(650), 1, + anon_sym_COLON_COLON, + ACTIONS(908), 1, + anon_sym_LBRACK, + ACTIONS(1759), 1, + anon_sym_LT, + ACTIONS(688), 10, + anon_sym_COLON, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ, + ACTIONS(690), 25, + sym_concatenating_space, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_in, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_RBRACK, + [45873] = 19, ACTIONS(79), 1, aux_sym_number_token1, - ACTIONS(456), 1, - anon_sym_LPAREN, - ACTIONS(478), 1, - anon_sym_BANG, - ACTIONS(482), 1, - anon_sym_DOLLAR, - ACTIONS(486), 1, + ACTIONS(328), 1, aux_sym_number_token2, - ACTIONS(488), 1, + ACTIONS(330), 1, anon_sym_DQUOTE, - ACTIONS(1777), 1, + ACTIONS(336), 1, sym_identifier, - ACTIONS(1779), 1, + ACTIONS(342), 1, + anon_sym_LPAREN, + ACTIONS(354), 1, anon_sym_getline, - ACTIONS(1781), 1, + ACTIONS(360), 1, anon_sym_SLASH, - ACTIONS(1785), 1, + ACTIONS(364), 1, + anon_sym_BANG, + ACTIONS(368), 1, + anon_sym_DOLLAR, + ACTIONS(370), 1, anon_sym_AT, - STATE(648), 1, + STATE(672), 1, sym_ns_qualified_name, - STATE(758), 1, + STATE(740), 1, sym_array_ref, - STATE(992), 1, + STATE(950), 1, sym_field_ref, - STATE(1309), 1, + STATE(1305), 1, sym__binary_in, - STATE(2063), 1, + STATE(2068), 1, sym_namespace, - ACTIONS(476), 2, + ACTIONS(362), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1783), 2, + ACTIONS(366), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1452), 19, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, + STATE(1461), 9, sym_ternary_exp, sym_binary_exp, sym_unary_exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, sym_string_concat, - sym_regex, - sym_regex_constant, sym_grouping, sym__primitive, sym_number, sym_string, sym_func_call, + STATE(1550), 10, + sym__getline_exp, + sym_getline_input, + sym_getline_file, + sym__exp, + sym_update_exp, + sym_assignment_exp, + sym_piped_io_exp, + sym_regex, + sym_regex_constant, sym_indirect_func_call, - [46548] = 18, - ACTIONS(79), 1, + [45950] = 18, + ACTIONS(169), 1, aux_sym_number_token1, - ACTIONS(456), 1, + ACTIONS(306), 1, + aux_sym_number_token2, + ACTIONS(308), 1, + anon_sym_DQUOTE, + ACTIONS(434), 1, anon_sym_LPAREN, - ACTIONS(478), 1, + ACTIONS(440), 1, anon_sym_BANG, - ACTIONS(482), 1, + ACTIONS(444), 1, anon_sym_DOLLAR, - ACTIONS(486), 1, - aux_sym_number_token2, - ACTIONS(488), 1, - anon_sym_DQUOTE, - ACTIONS(1777), 1, + ACTIONS(1557), 1, sym_identifier, - ACTIONS(1779), 1, + ACTIONS(1559), 1, anon_sym_getline, - ACTIONS(1781), 1, + ACTIONS(1561), 1, anon_sym_SLASH, - ACTIONS(1785), 1, + ACTIONS(1565), 1, anon_sym_AT, - STATE(648), 1, + STATE(606), 1, sym_ns_qualified_name, - STATE(758), 1, + STATE(611), 1, sym_array_ref, - STATE(992), 1, + STATE(686), 1, sym_field_ref, - STATE(1309), 1, + STATE(1385), 1, sym__binary_in, - STATE(2063), 1, + STATE(1956), 1, sym_namespace, - ACTIONS(476), 2, + ACTIONS(161), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1783), 2, + ACTIONS(1563), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1451), 19, + STATE(1390), 19, sym__getline_exp, sym_getline_input, sym_getline_file, @@ -63805,44 +63652,44 @@ static const uint16_t ts_small_parse_table[] = { sym_string, sym_func_call, sym_indirect_func_call, - [46623] = 18, - ACTIONS(79), 1, - aux_sym_number_token1, - ACTIONS(456), 1, + [46025] = 18, + ACTIONS(1287), 1, anon_sym_LPAREN, - ACTIONS(478), 1, + ACTIONS(1295), 1, anon_sym_BANG, - ACTIONS(482), 1, + ACTIONS(1299), 1, anon_sym_DOLLAR, - ACTIONS(486), 1, + ACTIONS(1303), 1, + aux_sym_number_token1, + ACTIONS(1305), 1, aux_sym_number_token2, - ACTIONS(488), 1, + ACTIONS(1307), 1, anon_sym_DQUOTE, - ACTIONS(1777), 1, + ACTIONS(1761), 1, sym_identifier, - ACTIONS(1779), 1, + ACTIONS(1763), 1, anon_sym_getline, - ACTIONS(1781), 1, + ACTIONS(1765), 1, anon_sym_SLASH, - ACTIONS(1785), 1, + ACTIONS(1769), 1, anon_sym_AT, - STATE(648), 1, + STATE(960), 1, sym_ns_qualified_name, - STATE(758), 1, + STATE(1161), 1, sym_array_ref, - STATE(992), 1, + STATE(1240), 1, sym_field_ref, - STATE(1309), 1, + STATE(1510), 1, sym__binary_in, - STATE(2063), 1, + STATE(2080), 1, sym_namespace, - ACTIONS(476), 2, + ACTIONS(1293), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1783), 2, + ACTIONS(1767), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1450), 19, + STATE(1503), 19, sym__getline_exp, sym_getline_input, sym_getline_file, @@ -63862,158 +63709,218 @@ static const uint16_t ts_small_parse_table[] = { sym_string, sym_func_call, sym_indirect_func_call, - [46698] = 18, - ACTIONS(482), 1, - anon_sym_DOLLAR, - ACTIONS(1675), 1, + [46100] = 19, + ACTIONS(39), 1, sym_identifier, - ACTIONS(1677), 1, - anon_sym_LPAREN, - ACTIONS(1679), 1, + ACTIONS(63), 1, anon_sym_getline, - ACTIONS(1681), 1, + ACTIONS(79), 1, + aux_sym_number_token1, + ACTIONS(312), 1, + anon_sym_LPAREN, + ACTIONS(318), 1, anon_sym_SLASH, - ACTIONS(1685), 1, + ACTIONS(320), 1, anon_sym_BANG, - ACTIONS(1689), 1, + ACTIONS(324), 1, + anon_sym_DOLLAR, + ACTIONS(326), 1, anon_sym_AT, - ACTIONS(1691), 1, - aux_sym_number_token1, - ACTIONS(1693), 1, + ACTIONS(328), 1, aux_sym_number_token2, - ACTIONS(1695), 1, + ACTIONS(330), 1, anon_sym_DQUOTE, - STATE(163), 1, + STATE(590), 1, sym_ns_qualified_name, - STATE(169), 1, + STATE(601), 1, sym_array_ref, - STATE(200), 1, - sym__binary_in, - STATE(202), 1, + STATE(632), 1, sym_field_ref, - STATE(2063), 1, + STATE(1305), 1, + sym__binary_in, + STATE(2068), 1, sym_namespace, - ACTIONS(1683), 2, + ACTIONS(71), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1687), 2, + ACTIONS(322), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(846), 19, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, + STATE(1371), 9, sym_ternary_exp, sym_binary_exp, sym_unary_exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, sym_string_concat, - sym_regex, - sym_regex_constant, sym_grouping, sym__primitive, sym_number, sym_string, sym_func_call, + STATE(1453), 10, + sym__getline_exp, + sym_getline_input, + sym_getline_file, + sym__exp, + sym_update_exp, + sym_assignment_exp, + sym_piped_io_exp, + sym_regex, + sym_regex_constant, sym_indirect_func_call, - [46773] = 18, - ACTIONS(25), 1, - anon_sym_DOLLAR, - ACTIONS(1619), 1, + [46177] = 19, + ACTIONS(1285), 1, sym_identifier, - ACTIONS(1621), 1, + ACTIONS(1287), 1, anon_sym_LPAREN, - ACTIONS(1623), 1, + ACTIONS(1289), 1, anon_sym_getline, - ACTIONS(1625), 1, + ACTIONS(1291), 1, anon_sym_SLASH, - ACTIONS(1629), 1, + ACTIONS(1295), 1, anon_sym_BANG, - ACTIONS(1633), 1, + ACTIONS(1299), 1, + anon_sym_DOLLAR, + ACTIONS(1301), 1, anon_sym_AT, - ACTIONS(1635), 1, + ACTIONS(1303), 1, aux_sym_number_token1, - ACTIONS(1637), 1, + ACTIONS(1305), 1, aux_sym_number_token2, - ACTIONS(1639), 1, + ACTIONS(1307), 1, anon_sym_DQUOTE, - STATE(293), 1, + STATE(1093), 1, sym_ns_qualified_name, - STATE(302), 1, + STATE(1142), 1, sym_array_ref, - STATE(331), 1, - sym__binary_in, - STATE(334), 1, + STATE(1251), 1, sym_field_ref, - STATE(2075), 1, + STATE(1510), 1, + sym__binary_in, + STATE(2080), 1, sym_namespace, - ACTIONS(1627), 2, + ACTIONS(1293), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1631), 2, + ACTIONS(1297), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(497), 19, + STATE(1505), 9, + sym_ternary_exp, + sym_binary_exp, + sym_unary_exp, + sym_string_concat, + sym_grouping, + sym__primitive, + sym_number, + sym_string, + sym_func_call, + STATE(1636), 10, sym__getline_exp, sym_getline_input, sym_getline_file, sym__exp, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, sym_update_exp, sym_assignment_exp, sym_piped_io_exp, - sym_string_concat, sym_regex, sym_regex_constant, + sym_indirect_func_call, + [46254] = 19, + ACTIONS(79), 1, + aux_sym_number_token1, + ACTIONS(328), 1, + aux_sym_number_token2, + ACTIONS(330), 1, + anon_sym_DQUOTE, + ACTIONS(342), 1, + anon_sym_LPAREN, + ACTIONS(364), 1, + anon_sym_BANG, + ACTIONS(368), 1, + anon_sym_DOLLAR, + ACTIONS(1289), 1, + anon_sym_getline, + ACTIONS(1291), 1, + anon_sym_SLASH, + ACTIONS(1301), 1, + anon_sym_AT, + ACTIONS(1771), 1, + sym_identifier, + STATE(168), 1, + sym_array_ref, + STATE(213), 1, + sym_field_ref, + STATE(585), 1, + sym_ns_qualified_name, + STATE(1305), 1, + sym__binary_in, + STATE(2068), 1, + sym_namespace, + ACTIONS(362), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1297), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1304), 9, + sym_ternary_exp, + sym_binary_exp, + sym_unary_exp, + sym_string_concat, sym_grouping, sym__primitive, sym_number, sym_string, sym_func_call, + STATE(1688), 10, + sym__getline_exp, + sym_getline_input, + sym_getline_file, + sym__exp, + sym_update_exp, + sym_assignment_exp, + sym_piped_io_exp, + sym_regex, + sym_regex_constant, sym_indirect_func_call, - [46848] = 18, - ACTIONS(161), 1, + [46331] = 18, + ACTIONS(1287), 1, + anon_sym_LPAREN, + ACTIONS(1295), 1, + anon_sym_BANG, + ACTIONS(1299), 1, anon_sym_DOLLAR, - ACTIONS(1557), 1, - sym_identifier, - ACTIONS(1573), 1, + ACTIONS(1303), 1, aux_sym_number_token1, - ACTIONS(1575), 1, + ACTIONS(1305), 1, aux_sym_number_token2, - ACTIONS(1577), 1, + ACTIONS(1307), 1, anon_sym_DQUOTE, - ACTIONS(1707), 1, - anon_sym_LPAREN, - ACTIONS(1709), 1, + ACTIONS(1761), 1, + sym_identifier, + ACTIONS(1763), 1, anon_sym_getline, - ACTIONS(1711), 1, + ACTIONS(1765), 1, anon_sym_SLASH, - ACTIONS(1715), 1, - anon_sym_BANG, - ACTIONS(1719), 1, + ACTIONS(1769), 1, anon_sym_AT, - STATE(181), 1, + STATE(960), 1, sym_ns_qualified_name, - STATE(208), 1, + STATE(1161), 1, sym_array_ref, - STATE(235), 1, - sym__binary_in, - STATE(236), 1, + STATE(1240), 1, sym_field_ref, - STATE(1955), 1, + STATE(1510), 1, + sym__binary_in, + STATE(2080), 1, sym_namespace, - ACTIONS(1713), 2, + ACTIONS(1293), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1717), 2, + ACTIONS(1767), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(242), 19, + STATE(1500), 19, sym__getline_exp, sym_getline_input, sym_getline_file, @@ -64033,101 +63940,102 @@ static const uint16_t ts_small_parse_table[] = { sym_string, sym_func_call, sym_indirect_func_call, - [46923] = 18, - ACTIONS(25), 1, - anon_sym_DOLLAR, - ACTIONS(1619), 1, - sym_identifier, - ACTIONS(1621), 1, + [46406] = 19, + ACTIONS(169), 1, + aux_sym_number_token1, + ACTIONS(306), 1, + aux_sym_number_token2, + ACTIONS(308), 1, + anon_sym_DQUOTE, + ACTIONS(434), 1, anon_sym_LPAREN, - ACTIONS(1623), 1, + ACTIONS(440), 1, + anon_sym_BANG, + ACTIONS(444), 1, + anon_sym_DOLLAR, + ACTIONS(1289), 1, anon_sym_getline, - ACTIONS(1625), 1, + ACTIONS(1291), 1, anon_sym_SLASH, - ACTIONS(1629), 1, - anon_sym_BANG, - ACTIONS(1633), 1, + ACTIONS(1301), 1, anon_sym_AT, - ACTIONS(1635), 1, - aux_sym_number_token1, - ACTIONS(1637), 1, - aux_sym_number_token2, - ACTIONS(1639), 1, - anon_sym_DQUOTE, - STATE(293), 1, - sym_ns_qualified_name, - STATE(302), 1, + ACTIONS(1773), 1, + sym_identifier, + STATE(208), 1, sym_array_ref, - STATE(331), 1, - sym__binary_in, - STATE(334), 1, + STATE(249), 1, sym_field_ref, - STATE(2075), 1, + STATE(595), 1, + sym_ns_qualified_name, + STATE(1385), 1, + sym__binary_in, + STATE(1956), 1, sym_namespace, - ACTIONS(1627), 2, + ACTIONS(161), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1631), 2, + ACTIONS(1297), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(496), 19, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, + STATE(1389), 9, sym_ternary_exp, sym_binary_exp, sym_unary_exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, sym_string_concat, - sym_regex, - sym_regex_constant, sym_grouping, sym__primitive, sym_number, sym_string, sym_func_call, + STATE(1678), 10, + sym__getline_exp, + sym_getline_input, + sym_getline_file, + sym__exp, + sym_update_exp, + sym_assignment_exp, + sym_piped_io_exp, + sym_regex, + sym_regex_constant, sym_indirect_func_call, - [46998] = 18, - ACTIONS(25), 1, + [46483] = 18, + ACTIONS(79), 1, + aux_sym_number_token1, + ACTIONS(328), 1, + aux_sym_number_token2, + ACTIONS(330), 1, + anon_sym_DQUOTE, + ACTIONS(342), 1, + anon_sym_LPAREN, + ACTIONS(364), 1, + anon_sym_BANG, + ACTIONS(368), 1, anon_sym_DOLLAR, - ACTIONS(1619), 1, + ACTIONS(1775), 1, sym_identifier, - ACTIONS(1621), 1, - anon_sym_LPAREN, - ACTIONS(1623), 1, + ACTIONS(1777), 1, anon_sym_getline, - ACTIONS(1625), 1, + ACTIONS(1779), 1, anon_sym_SLASH, - ACTIONS(1629), 1, - anon_sym_BANG, - ACTIONS(1633), 1, + ACTIONS(1783), 1, anon_sym_AT, - ACTIONS(1635), 1, - aux_sym_number_token1, - ACTIONS(1637), 1, - aux_sym_number_token2, - ACTIONS(1639), 1, - anon_sym_DQUOTE, - STATE(293), 1, + STATE(670), 1, sym_ns_qualified_name, - STATE(302), 1, + STATE(742), 1, sym_array_ref, - STATE(331), 1, - sym__binary_in, - STATE(334), 1, + STATE(946), 1, sym_field_ref, - STATE(2075), 1, + STATE(1305), 1, + sym__binary_in, + STATE(2068), 1, sym_namespace, - ACTIONS(1627), 2, + ACTIONS(362), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1631), 2, + ACTIONS(1781), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(483), 19, + STATE(1437), 19, sym__getline_exp, sym_getline_input, sym_getline_file, @@ -64147,44 +64055,44 @@ static const uint16_t ts_small_parse_table[] = { sym_string, sym_func_call, sym_indirect_func_call, - [47073] = 18, - ACTIONS(482), 1, + [46558] = 18, + ACTIONS(79), 1, + aux_sym_number_token1, + ACTIONS(328), 1, + aux_sym_number_token2, + ACTIONS(330), 1, + anon_sym_DQUOTE, + ACTIONS(342), 1, + anon_sym_LPAREN, + ACTIONS(364), 1, + anon_sym_BANG, + ACTIONS(368), 1, anon_sym_DOLLAR, - ACTIONS(1675), 1, + ACTIONS(1775), 1, sym_identifier, - ACTIONS(1677), 1, - anon_sym_LPAREN, - ACTIONS(1679), 1, + ACTIONS(1777), 1, anon_sym_getline, - ACTIONS(1681), 1, + ACTIONS(1779), 1, anon_sym_SLASH, - ACTIONS(1685), 1, - anon_sym_BANG, - ACTIONS(1689), 1, + ACTIONS(1783), 1, anon_sym_AT, - ACTIONS(1691), 1, - aux_sym_number_token1, - ACTIONS(1693), 1, - aux_sym_number_token2, - ACTIONS(1695), 1, - anon_sym_DQUOTE, - STATE(163), 1, + STATE(670), 1, sym_ns_qualified_name, - STATE(169), 1, + STATE(742), 1, sym_array_ref, - STATE(200), 1, - sym__binary_in, - STATE(202), 1, + STATE(946), 1, sym_field_ref, - STATE(2063), 1, + STATE(1305), 1, + sym__binary_in, + STATE(2068), 1, sym_namespace, - ACTIONS(1683), 2, + ACTIONS(362), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1687), 2, + ACTIONS(1781), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(847), 19, + STATE(1445), 19, sym__getline_exp, sym_getline_input, sym_getline_file, @@ -64204,44 +64112,44 @@ static const uint16_t ts_small_parse_table[] = { sym_string, sym_func_call, sym_indirect_func_call, - [47148] = 18, - ACTIONS(482), 1, + [46633] = 18, + ACTIONS(79), 1, + aux_sym_number_token1, + ACTIONS(328), 1, + aux_sym_number_token2, + ACTIONS(330), 1, + anon_sym_DQUOTE, + ACTIONS(342), 1, + anon_sym_LPAREN, + ACTIONS(364), 1, + anon_sym_BANG, + ACTIONS(368), 1, anon_sym_DOLLAR, - ACTIONS(1675), 1, + ACTIONS(1775), 1, sym_identifier, - ACTIONS(1677), 1, - anon_sym_LPAREN, - ACTIONS(1679), 1, + ACTIONS(1777), 1, anon_sym_getline, - ACTIONS(1681), 1, + ACTIONS(1779), 1, anon_sym_SLASH, - ACTIONS(1685), 1, - anon_sym_BANG, - ACTIONS(1689), 1, + ACTIONS(1783), 1, anon_sym_AT, - ACTIONS(1691), 1, - aux_sym_number_token1, - ACTIONS(1693), 1, - aux_sym_number_token2, - ACTIONS(1695), 1, - anon_sym_DQUOTE, - STATE(163), 1, + STATE(670), 1, sym_ns_qualified_name, - STATE(169), 1, + STATE(742), 1, sym_array_ref, - STATE(200), 1, - sym__binary_in, - STATE(202), 1, + STATE(946), 1, sym_field_ref, - STATE(2063), 1, + STATE(1305), 1, + sym__binary_in, + STATE(2068), 1, sym_namespace, - ACTIONS(1683), 2, + ACTIONS(362), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1687), 2, + ACTIONS(1781), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(201), 19, + STATE(1307), 19, sym__getline_exp, sym_getline_input, sym_getline_file, @@ -64261,44 +64169,44 @@ static const uint16_t ts_small_parse_table[] = { sym_string, sym_func_call, sym_indirect_func_call, - [47223] = 18, - ACTIONS(25), 1, + [46708] = 18, + ACTIONS(79), 1, + aux_sym_number_token1, + ACTIONS(328), 1, + aux_sym_number_token2, + ACTIONS(330), 1, + anon_sym_DQUOTE, + ACTIONS(342), 1, + anon_sym_LPAREN, + ACTIONS(364), 1, + anon_sym_BANG, + ACTIONS(368), 1, anon_sym_DOLLAR, - ACTIONS(1619), 1, + ACTIONS(1775), 1, sym_identifier, - ACTIONS(1621), 1, - anon_sym_LPAREN, - ACTIONS(1623), 1, + ACTIONS(1777), 1, anon_sym_getline, - ACTIONS(1625), 1, + ACTIONS(1779), 1, anon_sym_SLASH, - ACTIONS(1629), 1, - anon_sym_BANG, - ACTIONS(1633), 1, + ACTIONS(1783), 1, anon_sym_AT, - ACTIONS(1635), 1, - aux_sym_number_token1, - ACTIONS(1637), 1, - aux_sym_number_token2, - ACTIONS(1639), 1, - anon_sym_DQUOTE, - STATE(293), 1, + STATE(670), 1, sym_ns_qualified_name, - STATE(302), 1, + STATE(742), 1, sym_array_ref, - STATE(331), 1, - sym__binary_in, - STATE(334), 1, + STATE(946), 1, sym_field_ref, - STATE(2075), 1, + STATE(1305), 1, + sym__binary_in, + STATE(2068), 1, sym_namespace, - ACTIONS(1627), 2, + ACTIONS(362), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1631), 2, + ACTIONS(1781), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(484), 19, + STATE(1443), 19, sym__getline_exp, sym_getline_input, sym_getline_file, @@ -64318,44 +64226,44 @@ static const uint16_t ts_small_parse_table[] = { sym_string, sym_func_call, sym_indirect_func_call, - [47298] = 18, - ACTIONS(25), 1, + [46783] = 18, + ACTIONS(79), 1, + aux_sym_number_token1, + ACTIONS(328), 1, + aux_sym_number_token2, + ACTIONS(330), 1, + anon_sym_DQUOTE, + ACTIONS(342), 1, + anon_sym_LPAREN, + ACTIONS(364), 1, + anon_sym_BANG, + ACTIONS(368), 1, anon_sym_DOLLAR, - ACTIONS(1619), 1, + ACTIONS(1775), 1, sym_identifier, - ACTIONS(1621), 1, - anon_sym_LPAREN, - ACTIONS(1623), 1, + ACTIONS(1777), 1, anon_sym_getline, - ACTIONS(1625), 1, + ACTIONS(1779), 1, anon_sym_SLASH, - ACTIONS(1629), 1, - anon_sym_BANG, - ACTIONS(1633), 1, + ACTIONS(1783), 1, anon_sym_AT, - ACTIONS(1635), 1, - aux_sym_number_token1, - ACTIONS(1637), 1, - aux_sym_number_token2, - ACTIONS(1639), 1, - anon_sym_DQUOTE, - STATE(293), 1, + STATE(670), 1, sym_ns_qualified_name, - STATE(302), 1, + STATE(742), 1, sym_array_ref, - STATE(331), 1, - sym__binary_in, - STATE(334), 1, + STATE(946), 1, sym_field_ref, - STATE(2075), 1, + STATE(1305), 1, + sym__binary_in, + STATE(2068), 1, sym_namespace, - ACTIONS(1627), 2, + ACTIONS(362), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1631), 2, + ACTIONS(1781), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(485), 19, + STATE(1450), 19, sym__getline_exp, sym_getline_input, sym_getline_file, @@ -64375,44 +64283,44 @@ static const uint16_t ts_small_parse_table[] = { sym_string, sym_func_call, sym_indirect_func_call, - [47373] = 18, - ACTIONS(25), 1, + [46858] = 18, + ACTIONS(79), 1, + aux_sym_number_token1, + ACTIONS(328), 1, + aux_sym_number_token2, + ACTIONS(330), 1, + anon_sym_DQUOTE, + ACTIONS(342), 1, + anon_sym_LPAREN, + ACTIONS(364), 1, + anon_sym_BANG, + ACTIONS(368), 1, anon_sym_DOLLAR, - ACTIONS(1619), 1, + ACTIONS(1775), 1, sym_identifier, - ACTIONS(1621), 1, - anon_sym_LPAREN, - ACTIONS(1623), 1, + ACTIONS(1777), 1, anon_sym_getline, - ACTIONS(1625), 1, + ACTIONS(1779), 1, anon_sym_SLASH, - ACTIONS(1629), 1, - anon_sym_BANG, - ACTIONS(1633), 1, + ACTIONS(1783), 1, anon_sym_AT, - ACTIONS(1635), 1, - aux_sym_number_token1, - ACTIONS(1637), 1, - aux_sym_number_token2, - ACTIONS(1639), 1, - anon_sym_DQUOTE, - STATE(293), 1, + STATE(670), 1, sym_ns_qualified_name, - STATE(302), 1, + STATE(742), 1, sym_array_ref, - STATE(331), 1, - sym__binary_in, - STATE(334), 1, + STATE(946), 1, sym_field_ref, - STATE(2075), 1, + STATE(1305), 1, + sym__binary_in, + STATE(2068), 1, sym_namespace, - ACTIONS(1627), 2, + ACTIONS(362), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1631), 2, + ACTIONS(1781), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(314), 19, + STATE(1451), 19, sym__getline_exp, sym_getline_input, sym_getline_file, @@ -64432,44 +64340,44 @@ static const uint16_t ts_small_parse_table[] = { sym_string, sym_func_call, sym_indirect_func_call, - [47448] = 18, - ACTIONS(482), 1, + [46933] = 18, + ACTIONS(79), 1, + aux_sym_number_token1, + ACTIONS(328), 1, + aux_sym_number_token2, + ACTIONS(330), 1, + anon_sym_DQUOTE, + ACTIONS(342), 1, + anon_sym_LPAREN, + ACTIONS(364), 1, + anon_sym_BANG, + ACTIONS(368), 1, anon_sym_DOLLAR, - ACTIONS(1675), 1, + ACTIONS(1775), 1, sym_identifier, - ACTIONS(1677), 1, - anon_sym_LPAREN, - ACTIONS(1679), 1, + ACTIONS(1777), 1, anon_sym_getline, - ACTIONS(1681), 1, + ACTIONS(1779), 1, anon_sym_SLASH, - ACTIONS(1685), 1, - anon_sym_BANG, - ACTIONS(1689), 1, + ACTIONS(1783), 1, anon_sym_AT, - ACTIONS(1691), 1, - aux_sym_number_token1, - ACTIONS(1693), 1, - aux_sym_number_token2, - ACTIONS(1695), 1, - anon_sym_DQUOTE, - STATE(163), 1, + STATE(670), 1, sym_ns_qualified_name, - STATE(169), 1, + STATE(742), 1, sym_array_ref, - STATE(200), 1, - sym__binary_in, - STATE(202), 1, + STATE(946), 1, sym_field_ref, - STATE(2063), 1, + STATE(1305), 1, + sym__binary_in, + STATE(2068), 1, sym_namespace, - ACTIONS(1683), 2, + ACTIONS(362), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1687), 2, + ACTIONS(1781), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(866), 19, + STATE(1452), 19, sym__getline_exp, sym_getline_input, sym_getline_file, @@ -64489,44 +64397,44 @@ static const uint16_t ts_small_parse_table[] = { sym_string, sym_func_call, sym_indirect_func_call, - [47523] = 18, - ACTIONS(482), 1, + [47008] = 18, + ACTIONS(79), 1, + aux_sym_number_token1, + ACTIONS(328), 1, + aux_sym_number_token2, + ACTIONS(330), 1, + anon_sym_DQUOTE, + ACTIONS(342), 1, + anon_sym_LPAREN, + ACTIONS(364), 1, + anon_sym_BANG, + ACTIONS(368), 1, anon_sym_DOLLAR, - ACTIONS(1675), 1, + ACTIONS(1775), 1, sym_identifier, - ACTIONS(1677), 1, - anon_sym_LPAREN, - ACTIONS(1679), 1, + ACTIONS(1777), 1, anon_sym_getline, - ACTIONS(1681), 1, + ACTIONS(1779), 1, anon_sym_SLASH, - ACTIONS(1685), 1, - anon_sym_BANG, - ACTIONS(1689), 1, + ACTIONS(1783), 1, anon_sym_AT, - ACTIONS(1691), 1, - aux_sym_number_token1, - ACTIONS(1693), 1, - aux_sym_number_token2, - ACTIONS(1695), 1, - anon_sym_DQUOTE, - STATE(163), 1, + STATE(670), 1, sym_ns_qualified_name, - STATE(169), 1, + STATE(742), 1, sym_array_ref, - STATE(200), 1, - sym__binary_in, - STATE(202), 1, + STATE(946), 1, sym_field_ref, - STATE(2063), 1, + STATE(1305), 1, + sym__binary_in, + STATE(2068), 1, sym_namespace, - ACTIONS(1683), 2, + ACTIONS(362), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1687), 2, + ACTIONS(1781), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(869), 19, + STATE(1456), 19, sym__getline_exp, sym_getline_input, sym_getline_file, @@ -64546,44 +64454,44 @@ static const uint16_t ts_small_parse_table[] = { sym_string, sym_func_call, sym_indirect_func_call, - [47598] = 18, - ACTIONS(25), 1, - anon_sym_DOLLAR, - ACTIONS(1619), 1, - sym_identifier, - ACTIONS(1621), 1, + [47083] = 18, + ACTIONS(1287), 1, anon_sym_LPAREN, - ACTIONS(1623), 1, - anon_sym_getline, - ACTIONS(1625), 1, - anon_sym_SLASH, - ACTIONS(1629), 1, + ACTIONS(1295), 1, anon_sym_BANG, - ACTIONS(1633), 1, - anon_sym_AT, - ACTIONS(1635), 1, + ACTIONS(1299), 1, + anon_sym_DOLLAR, + ACTIONS(1303), 1, aux_sym_number_token1, - ACTIONS(1637), 1, + ACTIONS(1305), 1, aux_sym_number_token2, - ACTIONS(1639), 1, + ACTIONS(1307), 1, anon_sym_DQUOTE, - STATE(293), 1, + ACTIONS(1761), 1, + sym_identifier, + ACTIONS(1763), 1, + anon_sym_getline, + ACTIONS(1765), 1, + anon_sym_SLASH, + ACTIONS(1769), 1, + anon_sym_AT, + STATE(960), 1, sym_ns_qualified_name, - STATE(302), 1, + STATE(1161), 1, sym_array_ref, - STATE(331), 1, - sym__binary_in, - STATE(334), 1, + STATE(1240), 1, sym_field_ref, - STATE(2075), 1, + STATE(1510), 1, + sym__binary_in, + STATE(2080), 1, sym_namespace, - ACTIONS(1627), 2, + ACTIONS(1293), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1631), 2, + ACTIONS(1767), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(487), 19, + STATE(1528), 19, sym__getline_exp, sym_getline_input, sym_getline_file, @@ -64603,44 +64511,44 @@ static const uint16_t ts_small_parse_table[] = { sym_string, sym_func_call, sym_indirect_func_call, - [47673] = 19, - ACTIONS(1269), 1, + [47158] = 19, + ACTIONS(39), 1, sym_identifier, - ACTIONS(1271), 1, - anon_sym_LPAREN, - ACTIONS(1273), 1, + ACTIONS(63), 1, anon_sym_getline, - ACTIONS(1275), 1, + ACTIONS(79), 1, + aux_sym_number_token1, + ACTIONS(312), 1, + anon_sym_LPAREN, + ACTIONS(318), 1, anon_sym_SLASH, - ACTIONS(1279), 1, + ACTIONS(320), 1, anon_sym_BANG, - ACTIONS(1283), 1, + ACTIONS(324), 1, anon_sym_DOLLAR, - ACTIONS(1285), 1, + ACTIONS(326), 1, anon_sym_AT, - ACTIONS(1287), 1, - aux_sym_number_token1, - ACTIONS(1289), 1, + ACTIONS(328), 1, aux_sym_number_token2, - ACTIONS(1291), 1, + ACTIONS(330), 1, anon_sym_DQUOTE, - STATE(1067), 1, + STATE(590), 1, sym_ns_qualified_name, - STATE(1137), 1, + STATE(601), 1, sym_array_ref, - STATE(1231), 1, + STATE(632), 1, sym_field_ref, - STATE(1502), 1, + STATE(1305), 1, sym__binary_in, - STATE(2075), 1, + STATE(2068), 1, sym_namespace, - ACTIONS(1277), 2, + ACTIONS(71), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1281), 2, + ACTIONS(322), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1500), 9, + STATE(1371), 9, sym_ternary_exp, sym_binary_exp, sym_unary_exp, @@ -64650,7 +64558,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_string, sym_func_call, - STATE(1622), 10, + STATE(1439), 10, sym__getline_exp, sym_getline_input, sym_getline_file, @@ -64661,218 +64569,272 @@ static const uint16_t ts_small_parse_table[] = { sym_regex, sym_regex_constant, sym_indirect_func_call, - [47750] = 19, - ACTIONS(85), 1, + [47235] = 18, + ACTIONS(125), 1, + anon_sym_DOLLAR, + ACTIONS(1597), 1, sym_identifier, - ACTIONS(107), 1, - anon_sym_getline, - ACTIONS(123), 1, + ACTIONS(1613), 1, aux_sym_number_token1, - ACTIONS(272), 1, + ACTIONS(1615), 1, + aux_sym_number_token2, + ACTIONS(1617), 1, + anon_sym_DQUOTE, + ACTIONS(1745), 1, anon_sym_LPAREN, - ACTIONS(276), 1, + ACTIONS(1747), 1, + anon_sym_getline, + ACTIONS(1749), 1, anon_sym_SLASH, - ACTIONS(278), 1, + ACTIONS(1753), 1, anon_sym_BANG, - ACTIONS(282), 1, - anon_sym_DOLLAR, - ACTIONS(284), 1, + ACTIONS(1757), 1, anon_sym_AT, - ACTIONS(286), 1, - aux_sym_number_token2, - ACTIONS(288), 1, - anon_sym_DQUOTE, - STATE(607), 1, + STATE(165), 1, sym_ns_qualified_name, - STATE(610), 1, + STATE(216), 1, sym_array_ref, - STATE(703), 1, + STATE(233), 1, sym_field_ref, - STATE(1373), 1, + STATE(234), 1, sym__binary_in, - STATE(1955), 1, + STATE(1956), 1, sym_namespace, - ACTIONS(115), 2, + ACTIONS(1751), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(280), 2, + ACTIONS(1755), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1421), 9, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_string_concat, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - STATE(1423), 10, + STATE(241), 19, sym__getline_exp, sym_getline_input, sym_getline_file, sym__exp, + sym_ternary_exp, + sym_binary_exp, + sym_unary_exp, sym_update_exp, sym_assignment_exp, sym_piped_io_exp, + sym_string_concat, sym_regex, sym_regex_constant, + sym_grouping, + sym__primitive, + sym_number, + sym_string, + sym_func_call, sym_indirect_func_call, - [47827] = 19, - ACTIONS(85), 1, - sym_identifier, - ACTIONS(107), 1, - anon_sym_getline, - ACTIONS(123), 1, + [47310] = 18, + ACTIONS(169), 1, aux_sym_number_token1, - ACTIONS(272), 1, - anon_sym_LPAREN, ACTIONS(276), 1, - anon_sym_SLASH, - ACTIONS(278), 1, + anon_sym_LPAREN, + ACTIONS(298), 1, anon_sym_BANG, - ACTIONS(282), 1, + ACTIONS(302), 1, anon_sym_DOLLAR, - ACTIONS(284), 1, - anon_sym_AT, - ACTIONS(286), 1, + ACTIONS(306), 1, aux_sym_number_token2, - ACTIONS(288), 1, + ACTIONS(308), 1, anon_sym_DQUOTE, - STATE(607), 1, + ACTIONS(1785), 1, + sym_identifier, + ACTIONS(1787), 1, + anon_sym_getline, + ACTIONS(1789), 1, + anon_sym_SLASH, + ACTIONS(1793), 1, + anon_sym_AT, + STATE(738), 1, sym_ns_qualified_name, - STATE(610), 1, + STATE(955), 1, sym_array_ref, - STATE(703), 1, + STATE(1159), 1, sym_field_ref, - STATE(1373), 1, + STATE(1385), 1, sym__binary_in, - STATE(1955), 1, + STATE(1956), 1, sym_namespace, - ACTIONS(115), 2, + ACTIONS(296), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(280), 2, + ACTIONS(1791), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1421), 9, + STATE(1479), 19, + sym__getline_exp, + sym_getline_input, + sym_getline_file, + sym__exp, sym_ternary_exp, sym_binary_exp, sym_unary_exp, + sym_update_exp, + sym_assignment_exp, + sym_piped_io_exp, sym_string_concat, + sym_regex, + sym_regex_constant, sym_grouping, sym__primitive, sym_number, sym_string, sym_func_call, - STATE(1426), 10, + sym_indirect_func_call, + [47385] = 18, + ACTIONS(11), 1, + anon_sym_LPAREN, + ACTIONS(21), 1, + anon_sym_BANG, + ACTIONS(25), 1, + anon_sym_DOLLAR, + ACTIONS(29), 1, + aux_sym_number_token1, + ACTIONS(31), 1, + aux_sym_number_token2, + ACTIONS(33), 1, + anon_sym_DQUOTE, + ACTIONS(1587), 1, + sym_identifier, + ACTIONS(1589), 1, + anon_sym_getline, + ACTIONS(1591), 1, + anon_sym_SLASH, + ACTIONS(1595), 1, + anon_sym_AT, + STATE(425), 1, + sym_ns_qualified_name, + STATE(467), 1, + sym_array_ref, + STATE(490), 1, + sym_field_ref, + STATE(539), 1, + sym__binary_in, + STATE(2080), 1, + sym_namespace, + ACTIONS(19), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1593), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(550), 19, sym__getline_exp, sym_getline_input, sym_getline_file, sym__exp, + sym_ternary_exp, + sym_binary_exp, + sym_unary_exp, sym_update_exp, sym_assignment_exp, sym_piped_io_exp, + sym_string_concat, sym_regex, sym_regex_constant, + sym_grouping, + sym__primitive, + sym_number, + sym_string, + sym_func_call, sym_indirect_func_call, - [47904] = 19, - ACTIONS(85), 1, + [47460] = 18, + ACTIONS(368), 1, + anon_sym_DOLLAR, + ACTIONS(1669), 1, sym_identifier, - ACTIONS(107), 1, - anon_sym_getline, - ACTIONS(123), 1, + ACTIONS(1685), 1, aux_sym_number_token1, - ACTIONS(272), 1, + ACTIONS(1687), 1, + aux_sym_number_token2, + ACTIONS(1689), 1, + anon_sym_DQUOTE, + ACTIONS(1693), 1, anon_sym_LPAREN, - ACTIONS(276), 1, + ACTIONS(1695), 1, + anon_sym_getline, + ACTIONS(1697), 1, anon_sym_SLASH, - ACTIONS(278), 1, + ACTIONS(1701), 1, anon_sym_BANG, - ACTIONS(282), 1, - anon_sym_DOLLAR, - ACTIONS(284), 1, + ACTIONS(1705), 1, anon_sym_AT, - ACTIONS(286), 1, - aux_sym_number_token2, - ACTIONS(288), 1, - anon_sym_DQUOTE, - STATE(607), 1, + STATE(164), 1, sym_ns_qualified_name, - STATE(610), 1, + STATE(176), 1, sym_array_ref, - STATE(703), 1, + STATE(192), 1, sym_field_ref, - STATE(1373), 1, + STATE(194), 1, sym__binary_in, - STATE(1955), 1, + STATE(2068), 1, sym_namespace, - ACTIONS(115), 2, + ACTIONS(1699), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(280), 2, + ACTIONS(1703), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1421), 9, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_string_concat, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - STATE(1399), 10, + STATE(828), 19, sym__getline_exp, sym_getline_input, sym_getline_file, sym__exp, + sym_ternary_exp, + sym_binary_exp, + sym_unary_exp, sym_update_exp, sym_assignment_exp, sym_piped_io_exp, + sym_string_concat, sym_regex, sym_regex_constant, + sym_grouping, + sym__primitive, + sym_number, + sym_string, + sym_func_call, sym_indirect_func_call, - [47981] = 19, - ACTIONS(5), 1, + [47535] = 19, + ACTIONS(530), 1, sym_identifier, - ACTIONS(11), 1, + ACTIONS(534), 1, anon_sym_LPAREN, - ACTIONS(15), 1, + ACTIONS(544), 1, anon_sym_getline, - ACTIONS(17), 1, + ACTIONS(550), 1, anon_sym_SLASH, - ACTIONS(21), 1, + ACTIONS(554), 1, anon_sym_BANG, - ACTIONS(25), 1, + ACTIONS(558), 1, anon_sym_DOLLAR, - ACTIONS(29), 1, + ACTIONS(560), 1, + anon_sym_AT, + ACTIONS(562), 1, aux_sym_number_token1, - ACTIONS(31), 1, + ACTIONS(564), 1, aux_sym_number_token2, - ACTIONS(33), 1, + ACTIONS(566), 1, anon_sym_DQUOTE, - ACTIONS(1787), 1, - anon_sym_AT, - STATE(419), 1, + STATE(200), 1, sym_ns_qualified_name, - STATE(469), 1, + STATE(219), 1, sym_array_ref, - STATE(486), 1, + STATE(258), 1, sym_field_ref, - STATE(556), 1, + STATE(373), 1, sym__binary_in, - STATE(2075), 1, + STATE(2068), 1, sym_namespace, - ACTIONS(19), 2, + ACTIONS(552), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(23), 2, + ACTIONS(556), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(559), 9, + STATE(359), 9, sym_ternary_exp, sym_binary_exp, sym_unary_exp, @@ -64882,7 +64844,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_string, sym_func_call, - STATE(582), 10, + STATE(494), 10, sym__getline_exp, sym_getline_input, sym_getline_file, @@ -64893,44 +64855,44 @@ static const uint16_t ts_small_parse_table[] = { sym_regex, sym_regex_constant, sym_indirect_func_call, - [48058] = 19, - ACTIONS(11), 1, + [47612] = 19, + ACTIONS(530), 1, + sym_identifier, + ACTIONS(534), 1, anon_sym_LPAREN, - ACTIONS(21), 1, + ACTIONS(544), 1, + anon_sym_getline, + ACTIONS(550), 1, + anon_sym_SLASH, + ACTIONS(554), 1, anon_sym_BANG, - ACTIONS(25), 1, + ACTIONS(558), 1, anon_sym_DOLLAR, - ACTIONS(29), 1, + ACTIONS(560), 1, + anon_sym_AT, + ACTIONS(562), 1, aux_sym_number_token1, - ACTIONS(31), 1, + ACTIONS(564), 1, aux_sym_number_token2, - ACTIONS(33), 1, + ACTIONS(566), 1, anon_sym_DQUOTE, - ACTIONS(1273), 1, - anon_sym_getline, - ACTIONS(1275), 1, - anon_sym_SLASH, - ACTIONS(1285), 1, - anon_sym_AT, - ACTIONS(1789), 1, - sym_identifier, - STATE(306), 1, + STATE(200), 1, + sym_ns_qualified_name, + STATE(219), 1, sym_array_ref, - STATE(328), 1, + STATE(258), 1, sym_field_ref, - STATE(413), 1, - sym_ns_qualified_name, - STATE(556), 1, + STATE(373), 1, sym__binary_in, - STATE(2075), 1, + STATE(2068), 1, sym_namespace, - ACTIONS(19), 2, + ACTIONS(552), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1281), 2, + ACTIONS(556), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(562), 9, + STATE(359), 9, sym_ternary_exp, sym_binary_exp, sym_unary_exp, @@ -64940,7 +64902,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_string, sym_func_call, - STATE(1691), 10, + STATE(493), 10, sym__getline_exp, sym_getline_input, sym_getline_file, @@ -64951,44 +64913,44 @@ static const uint16_t ts_small_parse_table[] = { sym_regex, sym_regex_constant, sym_indirect_func_call, - [48135] = 18, - ACTIONS(390), 1, + [47689] = 18, + ACTIONS(125), 1, anon_sym_DOLLAR, - ACTIONS(1557), 1, + ACTIONS(1597), 1, sym_identifier, - ACTIONS(1573), 1, + ACTIONS(1613), 1, aux_sym_number_token1, - ACTIONS(1575), 1, + ACTIONS(1615), 1, aux_sym_number_token2, - ACTIONS(1577), 1, + ACTIONS(1617), 1, anon_sym_DQUOTE, - ACTIONS(1641), 1, + ACTIONS(1745), 1, anon_sym_LPAREN, - ACTIONS(1643), 1, + ACTIONS(1747), 1, anon_sym_getline, - ACTIONS(1645), 1, + ACTIONS(1749), 1, anon_sym_SLASH, - ACTIONS(1649), 1, + ACTIONS(1753), 1, anon_sym_BANG, - ACTIONS(1653), 1, + ACTIONS(1757), 1, anon_sym_AT, - STATE(181), 1, + STATE(165), 1, sym_ns_qualified_name, - STATE(208), 1, + STATE(216), 1, sym_array_ref, - STATE(235), 1, - sym__binary_in, - STATE(236), 1, + STATE(233), 1, sym_field_ref, - STATE(1955), 1, + STATE(234), 1, + sym__binary_in, + STATE(1956), 1, sym_namespace, - ACTIONS(1647), 2, + ACTIONS(1751), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1651), 2, + ACTIONS(1755), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1126), 19, + STATE(278), 19, sym__getline_exp, sym_getline_input, sym_getline_file, @@ -65008,44 +64970,88 @@ static const uint16_t ts_small_parse_table[] = { sym_string, sym_func_call, sym_indirect_func_call, - [48210] = 18, - ACTIONS(79), 1, - aux_sym_number_token1, - ACTIONS(456), 1, - anon_sym_LPAREN, - ACTIONS(478), 1, - anon_sym_BANG, - ACTIONS(482), 1, + [47764] = 5, + ACTIONS(874), 2, + sym_concatenating_space, + sym__if_else_separator, + ACTIONS(1657), 2, + anon_sym_CARET, + anon_sym_STAR_STAR, + ACTIONS(1661), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1659), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(872), 29, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_while, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + [47813] = 18, + ACTIONS(368), 1, anon_sym_DOLLAR, - ACTIONS(486), 1, + ACTIONS(1669), 1, + sym_identifier, + ACTIONS(1685), 1, + aux_sym_number_token1, + ACTIONS(1687), 1, aux_sym_number_token2, - ACTIONS(488), 1, + ACTIONS(1689), 1, anon_sym_DQUOTE, - ACTIONS(1777), 1, - sym_identifier, - ACTIONS(1779), 1, + ACTIONS(1693), 1, + anon_sym_LPAREN, + ACTIONS(1695), 1, anon_sym_getline, - ACTIONS(1781), 1, + ACTIONS(1697), 1, anon_sym_SLASH, - ACTIONS(1785), 1, + ACTIONS(1701), 1, + anon_sym_BANG, + ACTIONS(1705), 1, anon_sym_AT, - STATE(648), 1, + STATE(164), 1, sym_ns_qualified_name, - STATE(758), 1, + STATE(176), 1, sym_array_ref, - STATE(992), 1, + STATE(192), 1, sym_field_ref, - STATE(1309), 1, + STATE(194), 1, sym__binary_in, - STATE(2063), 1, + STATE(2068), 1, sym_namespace, - ACTIONS(476), 2, + ACTIONS(1699), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1783), 2, + ACTIONS(1703), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1449), 19, + STATE(833), 19, sym__getline_exp, sym_getline_input, sym_getline_file, @@ -65065,44 +65071,44 @@ static const uint16_t ts_small_parse_table[] = { sym_string, sym_func_call, sym_indirect_func_call, - [48285] = 18, - ACTIONS(11), 1, - anon_sym_LPAREN, - ACTIONS(21), 1, - anon_sym_BANG, - ACTIONS(25), 1, + [47888] = 18, + ACTIONS(368), 1, anon_sym_DOLLAR, - ACTIONS(29), 1, + ACTIONS(1669), 1, + sym_identifier, + ACTIONS(1685), 1, aux_sym_number_token1, - ACTIONS(31), 1, + ACTIONS(1687), 1, aux_sym_number_token2, - ACTIONS(33), 1, + ACTIONS(1689), 1, anon_sym_DQUOTE, - ACTIONS(1599), 1, - sym_identifier, - ACTIONS(1601), 1, + ACTIONS(1693), 1, + anon_sym_LPAREN, + ACTIONS(1695), 1, anon_sym_getline, - ACTIONS(1603), 1, + ACTIONS(1697), 1, anon_sym_SLASH, - ACTIONS(1607), 1, + ACTIONS(1701), 1, + anon_sym_BANG, + ACTIONS(1705), 1, anon_sym_AT, - STATE(445), 1, + STATE(164), 1, sym_ns_qualified_name, - STATE(474), 1, + STATE(176), 1, sym_array_ref, - STATE(480), 1, + STATE(192), 1, sym_field_ref, - STATE(556), 1, + STATE(194), 1, sym__binary_in, - STATE(2075), 1, + STATE(2068), 1, sym_namespace, - ACTIONS(19), 2, + ACTIONS(1699), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1605), 2, + ACTIONS(1703), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(550), 19, + STATE(851), 19, sym__getline_exp, sym_getline_input, sym_getline_file, @@ -65122,44 +65128,44 @@ static const uint16_t ts_small_parse_table[] = { sym_string, sym_func_call, sym_indirect_func_call, - [48360] = 18, - ACTIONS(11), 1, + [47963] = 18, + ACTIONS(1287), 1, anon_sym_LPAREN, - ACTIONS(21), 1, + ACTIONS(1295), 1, anon_sym_BANG, - ACTIONS(25), 1, + ACTIONS(1299), 1, anon_sym_DOLLAR, - ACTIONS(29), 1, + ACTIONS(1303), 1, aux_sym_number_token1, - ACTIONS(31), 1, + ACTIONS(1305), 1, aux_sym_number_token2, - ACTIONS(33), 1, + ACTIONS(1307), 1, anon_sym_DQUOTE, - ACTIONS(1599), 1, + ACTIONS(1761), 1, sym_identifier, - ACTIONS(1601), 1, + ACTIONS(1763), 1, anon_sym_getline, - ACTIONS(1603), 1, + ACTIONS(1765), 1, anon_sym_SLASH, - ACTIONS(1607), 1, + ACTIONS(1769), 1, anon_sym_AT, - STATE(445), 1, + STATE(960), 1, sym_ns_qualified_name, - STATE(474), 1, + STATE(1161), 1, sym_array_ref, - STATE(480), 1, + STATE(1240), 1, sym_field_ref, - STATE(556), 1, + STATE(1510), 1, sym__binary_in, - STATE(2075), 1, + STATE(2080), 1, sym_namespace, - ACTIONS(19), 2, + ACTIONS(1293), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1605), 2, + ACTIONS(1767), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(555), 19, + STATE(1504), 19, sym__getline_exp, sym_getline_input, sym_getline_file, @@ -65179,15 +65185,9 @@ static const uint16_t ts_small_parse_table[] = { sym_string, sym_func_call, sym_indirect_func_call, - [48435] = 19, - ACTIONS(5), 1, - sym_identifier, + [48038] = 18, ACTIONS(11), 1, anon_sym_LPAREN, - ACTIONS(15), 1, - anon_sym_getline, - ACTIONS(17), 1, - anon_sym_SLASH, ACTIONS(21), 1, anon_sym_BANG, ACTIONS(25), 1, @@ -65198,83 +65198,88 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, ACTIONS(33), 1, anon_sym_DQUOTE, - ACTIONS(1787), 1, + ACTIONS(1587), 1, + sym_identifier, + ACTIONS(1589), 1, + anon_sym_getline, + ACTIONS(1591), 1, + anon_sym_SLASH, + ACTIONS(1595), 1, anon_sym_AT, - STATE(419), 1, + STATE(425), 1, sym_ns_qualified_name, - STATE(469), 1, + STATE(467), 1, sym_array_ref, - STATE(486), 1, + STATE(490), 1, sym_field_ref, - STATE(556), 1, + STATE(539), 1, sym__binary_in, - STATE(2075), 1, + STATE(2080), 1, sym_namespace, ACTIONS(19), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(23), 2, + ACTIONS(1593), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(559), 9, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_string_concat, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - STATE(577), 10, + STATE(561), 19, sym__getline_exp, sym_getline_input, sym_getline_file, sym__exp, + sym_ternary_exp, + sym_binary_exp, + sym_unary_exp, sym_update_exp, sym_assignment_exp, sym_piped_io_exp, + sym_string_concat, sym_regex, sym_regex_constant, + sym_grouping, + sym__primitive, + sym_number, + sym_string, + sym_func_call, sym_indirect_func_call, - [48512] = 18, - ACTIONS(131), 1, - anon_sym_LPAREN, - ACTIONS(157), 1, - anon_sym_BANG, - ACTIONS(161), 1, + [48113] = 18, + ACTIONS(25), 1, anon_sym_DOLLAR, - ACTIONS(165), 1, - aux_sym_number_token1, - ACTIONS(167), 1, - aux_sym_number_token2, - ACTIONS(169), 1, - anon_sym_DQUOTE, - ACTIONS(1721), 1, + ACTIONS(1629), 1, sym_identifier, - ACTIONS(1723), 1, + ACTIONS(1631), 1, + anon_sym_LPAREN, + ACTIONS(1633), 1, anon_sym_getline, - ACTIONS(1725), 1, + ACTIONS(1635), 1, anon_sym_SLASH, - ACTIONS(1729), 1, + ACTIONS(1639), 1, + anon_sym_BANG, + ACTIONS(1643), 1, anon_sym_AT, - STATE(250), 1, + ACTIONS(1645), 1, + aux_sym_number_token1, + ACTIONS(1647), 1, + aux_sym_number_token2, + ACTIONS(1649), 1, + anon_sym_DQUOTE, + STATE(288), 1, sym_ns_qualified_name, - STATE(268), 1, + STATE(308), 1, sym_array_ref, - STATE(276), 1, - sym_field_ref, - STATE(446), 1, + STATE(328), 1, sym__binary_in, - STATE(1955), 1, + STATE(331), 1, + sym_field_ref, + STATE(2080), 1, sym_namespace, - ACTIONS(155), 2, + ACTIONS(1637), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1727), 2, + ACTIONS(1641), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(416), 19, + STATE(338), 19, sym__getline_exp, sym_getline_input, sym_getline_file, @@ -65294,44 +65299,44 @@ static const uint16_t ts_small_parse_table[] = { sym_string, sym_func_call, sym_indirect_func_call, - [48587] = 18, - ACTIONS(131), 1, - anon_sym_LPAREN, - ACTIONS(157), 1, - anon_sym_BANG, - ACTIONS(161), 1, + [48188] = 18, + ACTIONS(368), 1, anon_sym_DOLLAR, - ACTIONS(165), 1, + ACTIONS(1669), 1, + sym_identifier, + ACTIONS(1685), 1, aux_sym_number_token1, - ACTIONS(167), 1, + ACTIONS(1687), 1, aux_sym_number_token2, - ACTIONS(169), 1, + ACTIONS(1689), 1, anon_sym_DQUOTE, - ACTIONS(1721), 1, - sym_identifier, - ACTIONS(1723), 1, + ACTIONS(1693), 1, + anon_sym_LPAREN, + ACTIONS(1695), 1, anon_sym_getline, - ACTIONS(1725), 1, + ACTIONS(1697), 1, anon_sym_SLASH, - ACTIONS(1729), 1, + ACTIONS(1701), 1, + anon_sym_BANG, + ACTIONS(1705), 1, anon_sym_AT, - STATE(250), 1, + STATE(164), 1, sym_ns_qualified_name, - STATE(268), 1, + STATE(176), 1, sym_array_ref, - STATE(276), 1, + STATE(192), 1, sym_field_ref, - STATE(446), 1, + STATE(194), 1, sym__binary_in, - STATE(1955), 1, + STATE(2068), 1, sym_namespace, - ACTIONS(155), 2, + ACTIONS(1699), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1727), 2, + ACTIONS(1703), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(417), 19, + STATE(852), 19, sym__getline_exp, sym_getline_input, sym_getline_file, @@ -65351,44 +65356,44 @@ static const uint16_t ts_small_parse_table[] = { sym_string, sym_func_call, sym_indirect_func_call, - [48662] = 18, - ACTIONS(79), 1, - aux_sym_number_token1, - ACTIONS(456), 1, - anon_sym_LPAREN, - ACTIONS(478), 1, - anon_sym_BANG, - ACTIONS(482), 1, + [48263] = 18, + ACTIONS(368), 1, anon_sym_DOLLAR, - ACTIONS(486), 1, + ACTIONS(1669), 1, + sym_identifier, + ACTIONS(1685), 1, + aux_sym_number_token1, + ACTIONS(1687), 1, aux_sym_number_token2, - ACTIONS(488), 1, + ACTIONS(1689), 1, anon_sym_DQUOTE, - ACTIONS(1777), 1, - sym_identifier, - ACTIONS(1779), 1, + ACTIONS(1693), 1, + anon_sym_LPAREN, + ACTIONS(1695), 1, anon_sym_getline, - ACTIONS(1781), 1, + ACTIONS(1697), 1, anon_sym_SLASH, - ACTIONS(1785), 1, + ACTIONS(1701), 1, + anon_sym_BANG, + ACTIONS(1705), 1, anon_sym_AT, - STATE(648), 1, + STATE(164), 1, sym_ns_qualified_name, - STATE(758), 1, + STATE(176), 1, sym_array_ref, - STATE(992), 1, + STATE(192), 1, sym_field_ref, - STATE(1309), 1, + STATE(194), 1, sym__binary_in, - STATE(2063), 1, + STATE(2068), 1, sym_namespace, - ACTIONS(476), 2, + ACTIONS(1699), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1783), 2, + ACTIONS(1703), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1437), 19, + STATE(196), 19, sym__getline_exp, sym_getline_input, sym_getline_file, @@ -65408,44 +65413,44 @@ static const uint16_t ts_small_parse_table[] = { sym_string, sym_func_call, sym_indirect_func_call, - [48737] = 18, - ACTIONS(1271), 1, - anon_sym_LPAREN, - ACTIONS(1279), 1, - anon_sym_BANG, - ACTIONS(1283), 1, + [48338] = 18, + ACTIONS(368), 1, anon_sym_DOLLAR, - ACTIONS(1287), 1, + ACTIONS(1669), 1, + sym_identifier, + ACTIONS(1685), 1, aux_sym_number_token1, - ACTIONS(1289), 1, + ACTIONS(1687), 1, aux_sym_number_token2, - ACTIONS(1291), 1, + ACTIONS(1689), 1, anon_sym_DQUOTE, - ACTIONS(1731), 1, - sym_identifier, - ACTIONS(1733), 1, + ACTIONS(1693), 1, + anon_sym_LPAREN, + ACTIONS(1695), 1, anon_sym_getline, - ACTIONS(1735), 1, + ACTIONS(1697), 1, anon_sym_SLASH, - ACTIONS(1739), 1, + ACTIONS(1701), 1, + anon_sym_BANG, + ACTIONS(1705), 1, anon_sym_AT, - STATE(1000), 1, + STATE(164), 1, sym_ns_qualified_name, - STATE(1168), 1, + STATE(176), 1, sym_array_ref, - STATE(1235), 1, + STATE(192), 1, sym_field_ref, - STATE(1502), 1, + STATE(194), 1, sym__binary_in, - STATE(2075), 1, + STATE(2068), 1, sym_namespace, - ACTIONS(1277), 2, + ACTIONS(1699), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1737), 2, + ACTIONS(1703), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1541), 19, + STATE(871), 19, sym__getline_exp, sym_getline_input, sym_getline_file, @@ -65465,44 +65470,44 @@ static const uint16_t ts_small_parse_table[] = { sym_string, sym_func_call, sym_indirect_func_call, - [48812] = 18, - ACTIONS(390), 1, + [48413] = 18, + ACTIONS(368), 1, anon_sym_DOLLAR, - ACTIONS(1557), 1, + ACTIONS(1669), 1, sym_identifier, - ACTIONS(1573), 1, + ACTIONS(1685), 1, aux_sym_number_token1, - ACTIONS(1575), 1, + ACTIONS(1687), 1, aux_sym_number_token2, - ACTIONS(1577), 1, + ACTIONS(1689), 1, anon_sym_DQUOTE, - ACTIONS(1641), 1, + ACTIONS(1693), 1, anon_sym_LPAREN, - ACTIONS(1643), 1, + ACTIONS(1695), 1, anon_sym_getline, - ACTIONS(1645), 1, + ACTIONS(1697), 1, anon_sym_SLASH, - ACTIONS(1649), 1, + ACTIONS(1701), 1, anon_sym_BANG, - ACTIONS(1653), 1, + ACTIONS(1705), 1, anon_sym_AT, - STATE(181), 1, + STATE(164), 1, sym_ns_qualified_name, - STATE(208), 1, + STATE(176), 1, sym_array_ref, - STATE(235), 1, - sym__binary_in, - STATE(236), 1, + STATE(192), 1, sym_field_ref, - STATE(1955), 1, + STATE(194), 1, + sym__binary_in, + STATE(2068), 1, sym_namespace, - ACTIONS(1647), 2, + ACTIONS(1699), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1651), 2, + ACTIONS(1703), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1127), 19, + STATE(874), 19, sym__getline_exp, sym_getline_input, sym_getline_file, @@ -65522,44 +65527,44 @@ static const uint16_t ts_small_parse_table[] = { sym_string, sym_func_call, sym_indirect_func_call, - [48887] = 19, - ACTIONS(5), 1, + [48488] = 19, + ACTIONS(137), 1, sym_identifier, - ACTIONS(11), 1, - anon_sym_LPAREN, - ACTIONS(15), 1, + ACTIONS(153), 1, anon_sym_getline, - ACTIONS(17), 1, - anon_sym_SLASH, - ACTIONS(21), 1, - anon_sym_BANG, - ACTIONS(25), 1, - anon_sym_DOLLAR, - ACTIONS(29), 1, + ACTIONS(169), 1, aux_sym_number_token1, - ACTIONS(31), 1, + ACTIONS(306), 1, aux_sym_number_token2, - ACTIONS(33), 1, + ACTIONS(308), 1, anon_sym_DQUOTE, - ACTIONS(1787), 1, + ACTIONS(434), 1, + anon_sym_LPAREN, + ACTIONS(438), 1, + anon_sym_SLASH, + ACTIONS(440), 1, + anon_sym_BANG, + ACTIONS(444), 1, + anon_sym_DOLLAR, + ACTIONS(446), 1, anon_sym_AT, - STATE(419), 1, + STATE(597), 1, sym_ns_qualified_name, - STATE(469), 1, + STATE(614), 1, sym_array_ref, - STATE(486), 1, + STATE(705), 1, sym_field_ref, - STATE(556), 1, + STATE(1385), 1, sym__binary_in, - STATE(2075), 1, + STATE(1956), 1, sym_namespace, - ACTIONS(19), 2, + ACTIONS(161), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(23), 2, + ACTIONS(442), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(559), 9, + STATE(1420), 9, sym_ternary_exp, sym_binary_exp, sym_unary_exp, @@ -65569,7 +65574,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_string, sym_func_call, - STATE(583), 10, + STATE(1412), 10, sym__getline_exp, sym_getline_input, sym_getline_file, @@ -65580,44 +65585,44 @@ static const uint16_t ts_small_parse_table[] = { sym_regex, sym_regex_constant, sym_indirect_func_call, - [48964] = 18, - ACTIONS(11), 1, - anon_sym_LPAREN, - ACTIONS(21), 1, - anon_sym_BANG, - ACTIONS(25), 1, - anon_sym_DOLLAR, - ACTIONS(29), 1, + [48565] = 18, + ACTIONS(79), 1, aux_sym_number_token1, - ACTIONS(31), 1, + ACTIONS(328), 1, aux_sym_number_token2, - ACTIONS(33), 1, + ACTIONS(330), 1, anon_sym_DQUOTE, - ACTIONS(1599), 1, + ACTIONS(342), 1, + anon_sym_LPAREN, + ACTIONS(364), 1, + anon_sym_BANG, + ACTIONS(368), 1, + anon_sym_DOLLAR, + ACTIONS(1775), 1, sym_identifier, - ACTIONS(1601), 1, + ACTIONS(1777), 1, anon_sym_getline, - ACTIONS(1603), 1, + ACTIONS(1779), 1, anon_sym_SLASH, - ACTIONS(1607), 1, + ACTIONS(1783), 1, anon_sym_AT, - STATE(445), 1, + STATE(670), 1, sym_ns_qualified_name, - STATE(474), 1, + STATE(742), 1, sym_array_ref, - STATE(480), 1, + STATE(946), 1, sym_field_ref, - STATE(556), 1, + STATE(1305), 1, sym__binary_in, - STATE(2075), 1, + STATE(2068), 1, sym_namespace, - ACTIONS(19), 2, + ACTIONS(362), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1605), 2, + ACTIONS(1781), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(540), 19, + STATE(1462), 19, sym__getline_exp, sym_getline_input, sym_getline_file, @@ -65637,44 +65642,44 @@ static const uint16_t ts_small_parse_table[] = { sym_string, sym_func_call, sym_indirect_func_call, - [49039] = 18, - ACTIONS(11), 1, + [48640] = 18, + ACTIONS(534), 1, anon_sym_LPAREN, - ACTIONS(21), 1, + ACTIONS(554), 1, anon_sym_BANG, - ACTIONS(25), 1, + ACTIONS(558), 1, anon_sym_DOLLAR, - ACTIONS(29), 1, + ACTIONS(562), 1, aux_sym_number_token1, - ACTIONS(31), 1, + ACTIONS(564), 1, aux_sym_number_token2, - ACTIONS(33), 1, + ACTIONS(566), 1, anon_sym_DQUOTE, - ACTIONS(1599), 1, + ACTIONS(1567), 1, sym_identifier, - ACTIONS(1601), 1, + ACTIONS(1569), 1, anon_sym_getline, - ACTIONS(1603), 1, + ACTIONS(1571), 1, anon_sym_SLASH, - ACTIONS(1607), 1, + ACTIONS(1575), 1, anon_sym_AT, - STATE(445), 1, + STATE(191), 1, sym_ns_qualified_name, - STATE(474), 1, + STATE(238), 1, sym_array_ref, - STATE(480), 1, + STATE(264), 1, sym_field_ref, - STATE(556), 1, + STATE(373), 1, sym__binary_in, - STATE(2075), 1, + STATE(2068), 1, sym_namespace, - ACTIONS(19), 2, + ACTIONS(552), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1605), 2, + ACTIONS(1573), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(534), 19, + STATE(375), 19, sym__getline_exp, sym_getline_input, sym_getline_file, @@ -65694,44 +65699,44 @@ static const uint16_t ts_small_parse_table[] = { sym_string, sym_func_call, sym_indirect_func_call, - [49114] = 18, - ACTIONS(123), 1, - aux_sym_number_token1, - ACTIONS(286), 1, - aux_sym_number_token2, - ACTIONS(288), 1, - anon_sym_DQUOTE, - ACTIONS(366), 1, + [48715] = 18, + ACTIONS(1287), 1, anon_sym_LPAREN, - ACTIONS(386), 1, + ACTIONS(1295), 1, anon_sym_BANG, - ACTIONS(390), 1, + ACTIONS(1299), 1, anon_sym_DOLLAR, - ACTIONS(1609), 1, + ACTIONS(1303), 1, + aux_sym_number_token1, + ACTIONS(1305), 1, + aux_sym_number_token2, + ACTIONS(1307), 1, + anon_sym_DQUOTE, + ACTIONS(1761), 1, sym_identifier, - ACTIONS(1611), 1, + ACTIONS(1763), 1, anon_sym_getline, - ACTIONS(1613), 1, + ACTIONS(1765), 1, anon_sym_SLASH, - ACTIONS(1617), 1, + ACTIONS(1769), 1, anon_sym_AT, - STATE(743), 1, + STATE(960), 1, sym_ns_qualified_name, - STATE(998), 1, + STATE(1161), 1, sym_array_ref, - STATE(1165), 1, + STATE(1240), 1, sym_field_ref, - STATE(1373), 1, + STATE(1510), 1, sym__binary_in, - STATE(1955), 1, + STATE(2080), 1, sym_namespace, - ACTIONS(384), 2, + ACTIONS(1293), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1615), 2, + ACTIONS(1767), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1359), 19, + STATE(1532), 19, sym__getline_exp, sym_getline_input, sym_getline_file, @@ -65751,102 +65756,101 @@ static const uint16_t ts_small_parse_table[] = { sym_string, sym_func_call, sym_indirect_func_call, - [49189] = 19, - ACTIONS(1269), 1, - sym_identifier, - ACTIONS(1271), 1, + [48790] = 18, + ACTIONS(1287), 1, anon_sym_LPAREN, - ACTIONS(1273), 1, - anon_sym_getline, - ACTIONS(1275), 1, - anon_sym_SLASH, - ACTIONS(1279), 1, + ACTIONS(1295), 1, anon_sym_BANG, - ACTIONS(1283), 1, + ACTIONS(1299), 1, anon_sym_DOLLAR, - ACTIONS(1285), 1, - anon_sym_AT, - ACTIONS(1287), 1, + ACTIONS(1303), 1, aux_sym_number_token1, - ACTIONS(1289), 1, + ACTIONS(1305), 1, aux_sym_number_token2, - ACTIONS(1291), 1, + ACTIONS(1307), 1, anon_sym_DQUOTE, - STATE(1067), 1, + ACTIONS(1761), 1, + sym_identifier, + ACTIONS(1763), 1, + anon_sym_getline, + ACTIONS(1765), 1, + anon_sym_SLASH, + ACTIONS(1769), 1, + anon_sym_AT, + STATE(960), 1, sym_ns_qualified_name, - STATE(1137), 1, + STATE(1161), 1, sym_array_ref, - STATE(1231), 1, + STATE(1240), 1, sym_field_ref, - STATE(1502), 1, + STATE(1510), 1, sym__binary_in, - STATE(2075), 1, + STATE(2080), 1, sym_namespace, - ACTIONS(1277), 2, + ACTIONS(1293), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1281), 2, + ACTIONS(1767), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1500), 9, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_string_concat, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - STATE(1647), 10, + STATE(1533), 19, sym__getline_exp, sym_getline_input, sym_getline_file, sym__exp, + sym_ternary_exp, + sym_binary_exp, + sym_unary_exp, sym_update_exp, sym_assignment_exp, sym_piped_io_exp, + sym_string_concat, sym_regex, sym_regex_constant, + sym_grouping, + sym__primitive, + sym_number, + sym_string, + sym_func_call, sym_indirect_func_call, - [49266] = 19, - ACTIONS(1269), 1, + [48865] = 19, + ACTIONS(169), 1, + aux_sym_number_token1, + ACTIONS(270), 1, sym_identifier, - ACTIONS(1271), 1, + ACTIONS(276), 1, anon_sym_LPAREN, - ACTIONS(1273), 1, + ACTIONS(288), 1, anon_sym_getline, - ACTIONS(1275), 1, + ACTIONS(294), 1, anon_sym_SLASH, - ACTIONS(1279), 1, + ACTIONS(298), 1, anon_sym_BANG, - ACTIONS(1283), 1, + ACTIONS(302), 1, anon_sym_DOLLAR, - ACTIONS(1285), 1, + ACTIONS(304), 1, anon_sym_AT, - ACTIONS(1287), 1, - aux_sym_number_token1, - ACTIONS(1289), 1, + ACTIONS(306), 1, aux_sym_number_token2, - ACTIONS(1291), 1, + ACTIONS(308), 1, anon_sym_DQUOTE, - STATE(1067), 1, + STATE(720), 1, sym_ns_qualified_name, - STATE(1137), 1, + STATE(991), 1, sym_array_ref, - STATE(1231), 1, + STATE(1194), 1, sym_field_ref, - STATE(1502), 1, + STATE(1385), 1, sym__binary_in, - STATE(2075), 1, + STATE(1956), 1, sym_namespace, - ACTIONS(1277), 2, + ACTIONS(296), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1281), 2, + ACTIONS(300), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1500), 9, + STATE(1476), 9, sym_ternary_exp, sym_binary_exp, sym_unary_exp, @@ -65856,7 +65860,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_string, sym_func_call, - STATE(1601), 10, + STATE(1416), 10, sym__getline_exp, sym_getline_input, sym_getline_file, @@ -65867,44 +65871,44 @@ static const uint16_t ts_small_parse_table[] = { sym_regex, sym_regex_constant, sym_indirect_func_call, - [49343] = 18, - ACTIONS(11), 1, - anon_sym_LPAREN, - ACTIONS(21), 1, - anon_sym_BANG, - ACTIONS(25), 1, + [48942] = 18, + ACTIONS(558), 1, anon_sym_DOLLAR, - ACTIONS(29), 1, + ACTIONS(1669), 1, + sym_identifier, + ACTIONS(1685), 1, aux_sym_number_token1, - ACTIONS(31), 1, + ACTIONS(1687), 1, aux_sym_number_token2, - ACTIONS(33), 1, + ACTIONS(1689), 1, anon_sym_DQUOTE, - ACTIONS(1599), 1, - sym_identifier, - ACTIONS(1601), 1, + ACTIONS(1725), 1, + anon_sym_LPAREN, + ACTIONS(1727), 1, anon_sym_getline, - ACTIONS(1603), 1, + ACTIONS(1729), 1, anon_sym_SLASH, - ACTIONS(1607), 1, + ACTIONS(1733), 1, + anon_sym_BANG, + ACTIONS(1737), 1, anon_sym_AT, - STATE(445), 1, + STATE(164), 1, sym_ns_qualified_name, - STATE(474), 1, + STATE(176), 1, sym_array_ref, - STATE(480), 1, + STATE(192), 1, sym_field_ref, - STATE(556), 1, + STATE(194), 1, sym__binary_in, - STATE(2075), 1, + STATE(2068), 1, sym_namespace, - ACTIONS(19), 2, + ACTIONS(1731), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1605), 2, + ACTIONS(1735), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(533), 19, + STATE(262), 19, sym__getline_exp, sym_getline_input, sym_getline_file, @@ -65924,102 +65928,44 @@ static const uint16_t ts_small_parse_table[] = { sym_string, sym_func_call, sym_indirect_func_call, - [49418] = 19, - ACTIONS(1269), 1, - sym_identifier, - ACTIONS(1271), 1, - anon_sym_LPAREN, - ACTIONS(1273), 1, - anon_sym_getline, - ACTIONS(1275), 1, - anon_sym_SLASH, - ACTIONS(1279), 1, - anon_sym_BANG, - ACTIONS(1283), 1, - anon_sym_DOLLAR, - ACTIONS(1285), 1, - anon_sym_AT, - ACTIONS(1287), 1, + [49017] = 18, + ACTIONS(79), 1, aux_sym_number_token1, - ACTIONS(1289), 1, + ACTIONS(328), 1, aux_sym_number_token2, - ACTIONS(1291), 1, + ACTIONS(330), 1, anon_sym_DQUOTE, - STATE(1067), 1, - sym_ns_qualified_name, - STATE(1137), 1, - sym_array_ref, - STATE(1231), 1, - sym_field_ref, - STATE(1502), 1, - sym__binary_in, - STATE(2075), 1, - sym_namespace, - ACTIONS(1277), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1281), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1500), 9, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_string_concat, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - STATE(1621), 10, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_regex, - sym_regex_constant, - sym_indirect_func_call, - [49495] = 18, - ACTIONS(11), 1, + ACTIONS(342), 1, anon_sym_LPAREN, - ACTIONS(21), 1, + ACTIONS(364), 1, anon_sym_BANG, - ACTIONS(25), 1, + ACTIONS(368), 1, anon_sym_DOLLAR, - ACTIONS(29), 1, - aux_sym_number_token1, - ACTIONS(31), 1, - aux_sym_number_token2, - ACTIONS(33), 1, - anon_sym_DQUOTE, - ACTIONS(1599), 1, + ACTIONS(1775), 1, sym_identifier, - ACTIONS(1601), 1, + ACTIONS(1777), 1, anon_sym_getline, - ACTIONS(1603), 1, + ACTIONS(1779), 1, anon_sym_SLASH, - ACTIONS(1607), 1, + ACTIONS(1783), 1, anon_sym_AT, - STATE(445), 1, + STATE(670), 1, sym_ns_qualified_name, - STATE(474), 1, + STATE(742), 1, sym_array_ref, - STATE(480), 1, + STATE(946), 1, sym_field_ref, - STATE(556), 1, + STATE(1305), 1, sym__binary_in, - STATE(2075), 1, + STATE(2068), 1, sym_namespace, - ACTIONS(19), 2, + ACTIONS(362), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1605), 2, + ACTIONS(1781), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(525), 19, + STATE(1448), 19, sym__getline_exp, sym_getline_input, sym_getline_file, @@ -66039,215 +65985,218 @@ static const uint16_t ts_small_parse_table[] = { sym_string, sym_func_call, sym_indirect_func_call, - [49570] = 18, - ACTIONS(11), 1, + [49092] = 19, + ACTIONS(1285), 1, + sym_identifier, + ACTIONS(1287), 1, anon_sym_LPAREN, - ACTIONS(21), 1, + ACTIONS(1289), 1, + anon_sym_getline, + ACTIONS(1291), 1, + anon_sym_SLASH, + ACTIONS(1295), 1, anon_sym_BANG, - ACTIONS(25), 1, + ACTIONS(1299), 1, anon_sym_DOLLAR, - ACTIONS(29), 1, + ACTIONS(1301), 1, + anon_sym_AT, + ACTIONS(1303), 1, aux_sym_number_token1, - ACTIONS(31), 1, + ACTIONS(1305), 1, aux_sym_number_token2, - ACTIONS(33), 1, + ACTIONS(1307), 1, anon_sym_DQUOTE, - ACTIONS(1599), 1, - sym_identifier, - ACTIONS(1601), 1, - anon_sym_getline, - ACTIONS(1603), 1, - anon_sym_SLASH, - ACTIONS(1607), 1, - anon_sym_AT, - STATE(445), 1, + STATE(1093), 1, sym_ns_qualified_name, - STATE(474), 1, + STATE(1142), 1, sym_array_ref, - STATE(480), 1, + STATE(1251), 1, sym_field_ref, - STATE(556), 1, + STATE(1510), 1, sym__binary_in, - STATE(2075), 1, + STATE(2080), 1, sym_namespace, - ACTIONS(19), 2, + ACTIONS(1293), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1605), 2, + ACTIONS(1297), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(531), 19, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, + STATE(1505), 9, sym_ternary_exp, sym_binary_exp, sym_unary_exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, sym_string_concat, - sym_regex, - sym_regex_constant, sym_grouping, sym__primitive, sym_number, sym_string, sym_func_call, + STATE(1559), 10, + sym__getline_exp, + sym_getline_input, + sym_getline_file, + sym__exp, + sym_update_exp, + sym_assignment_exp, + sym_piped_io_exp, + sym_regex, + sym_regex_constant, sym_indirect_func_call, - [49645] = 18, - ACTIONS(390), 1, - anon_sym_DOLLAR, - ACTIONS(1557), 1, + [49169] = 19, + ACTIONS(137), 1, sym_identifier, - ACTIONS(1573), 1, + ACTIONS(153), 1, + anon_sym_getline, + ACTIONS(169), 1, aux_sym_number_token1, - ACTIONS(1575), 1, + ACTIONS(306), 1, aux_sym_number_token2, - ACTIONS(1577), 1, + ACTIONS(308), 1, anon_sym_DQUOTE, - ACTIONS(1641), 1, + ACTIONS(434), 1, anon_sym_LPAREN, - ACTIONS(1643), 1, - anon_sym_getline, - ACTIONS(1645), 1, + ACTIONS(438), 1, anon_sym_SLASH, - ACTIONS(1649), 1, + ACTIONS(440), 1, anon_sym_BANG, - ACTIONS(1653), 1, + ACTIONS(444), 1, + anon_sym_DOLLAR, + ACTIONS(446), 1, anon_sym_AT, - STATE(181), 1, + STATE(597), 1, sym_ns_qualified_name, - STATE(208), 1, + STATE(614), 1, sym_array_ref, - STATE(235), 1, - sym__binary_in, - STATE(236), 1, + STATE(705), 1, sym_field_ref, - STATE(1955), 1, + STATE(1385), 1, + sym__binary_in, + STATE(1956), 1, sym_namespace, - ACTIONS(1647), 2, + ACTIONS(161), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1651), 2, + ACTIONS(442), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1130), 19, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, + STATE(1420), 9, sym_ternary_exp, sym_binary_exp, sym_unary_exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, sym_string_concat, - sym_regex, - sym_regex_constant, sym_grouping, sym__primitive, sym_number, sym_string, sym_func_call, + STATE(1432), 10, + sym__getline_exp, + sym_getline_input, + sym_getline_file, + sym__exp, + sym_update_exp, + sym_assignment_exp, + sym_piped_io_exp, + sym_regex, + sym_regex_constant, sym_indirect_func_call, - [49720] = 18, - ACTIONS(390), 1, - anon_sym_DOLLAR, - ACTIONS(1557), 1, + [49246] = 19, + ACTIONS(137), 1, sym_identifier, - ACTIONS(1573), 1, + ACTIONS(153), 1, + anon_sym_getline, + ACTIONS(169), 1, aux_sym_number_token1, - ACTIONS(1575), 1, + ACTIONS(306), 1, aux_sym_number_token2, - ACTIONS(1577), 1, + ACTIONS(308), 1, anon_sym_DQUOTE, - ACTIONS(1641), 1, + ACTIONS(434), 1, anon_sym_LPAREN, - ACTIONS(1643), 1, - anon_sym_getline, - ACTIONS(1645), 1, + ACTIONS(438), 1, anon_sym_SLASH, - ACTIONS(1649), 1, + ACTIONS(440), 1, anon_sym_BANG, - ACTIONS(1653), 1, + ACTIONS(444), 1, + anon_sym_DOLLAR, + ACTIONS(446), 1, anon_sym_AT, - STATE(181), 1, + STATE(597), 1, sym_ns_qualified_name, - STATE(208), 1, + STATE(614), 1, sym_array_ref, - STATE(235), 1, - sym__binary_in, - STATE(236), 1, + STATE(705), 1, sym_field_ref, - STATE(1955), 1, + STATE(1385), 1, + sym__binary_in, + STATE(1956), 1, sym_namespace, - ACTIONS(1647), 2, + ACTIONS(161), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1651), 2, + ACTIONS(442), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1131), 19, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, + STATE(1420), 9, sym_ternary_exp, sym_binary_exp, sym_unary_exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, sym_string_concat, - sym_regex, - sym_regex_constant, sym_grouping, sym__primitive, sym_number, sym_string, sym_func_call, + STATE(1395), 10, + sym__getline_exp, + sym_getline_input, + sym_getline_file, + sym__exp, + sym_update_exp, + sym_assignment_exp, + sym_piped_io_exp, + sym_regex, + sym_regex_constant, sym_indirect_func_call, - [49795] = 18, - ACTIONS(390), 1, + [49323] = 18, + ACTIONS(89), 1, + anon_sym_LPAREN, + ACTIONS(121), 1, + anon_sym_BANG, + ACTIONS(125), 1, anon_sym_DOLLAR, - ACTIONS(1557), 1, - sym_identifier, - ACTIONS(1573), 1, + ACTIONS(129), 1, aux_sym_number_token1, - ACTIONS(1575), 1, + ACTIONS(131), 1, aux_sym_number_token2, - ACTIONS(1577), 1, + ACTIONS(133), 1, anon_sym_DQUOTE, - ACTIONS(1641), 1, - anon_sym_LPAREN, - ACTIONS(1643), 1, + ACTIONS(1619), 1, + sym_identifier, + ACTIONS(1621), 1, anon_sym_getline, - ACTIONS(1645), 1, + ACTIONS(1623), 1, anon_sym_SLASH, - ACTIONS(1649), 1, - anon_sym_BANG, - ACTIONS(1653), 1, + ACTIONS(1627), 1, anon_sym_AT, - STATE(181), 1, + STATE(247), 1, sym_ns_qualified_name, - STATE(208), 1, + STATE(263), 1, sym_array_ref, - STATE(235), 1, - sym__binary_in, - STATE(236), 1, + STATE(279), 1, sym_field_ref, - STATE(1955), 1, + STATE(426), 1, + sym__binary_in, + STATE(1956), 1, sym_namespace, - ACTIONS(1647), 2, + ACTIONS(119), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1651), 2, + ACTIONS(1625), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1132), 19, + STATE(456), 19, sym__getline_exp, sym_getline_input, sym_getline_file, @@ -66267,44 +66216,44 @@ static const uint16_t ts_small_parse_table[] = { sym_string, sym_func_call, sym_indirect_func_call, - [49870] = 18, - ACTIONS(390), 1, + [49398] = 18, + ACTIONS(89), 1, + anon_sym_LPAREN, + ACTIONS(121), 1, + anon_sym_BANG, + ACTIONS(125), 1, anon_sym_DOLLAR, - ACTIONS(1557), 1, - sym_identifier, - ACTIONS(1573), 1, + ACTIONS(129), 1, aux_sym_number_token1, - ACTIONS(1575), 1, + ACTIONS(131), 1, aux_sym_number_token2, - ACTIONS(1577), 1, + ACTIONS(133), 1, anon_sym_DQUOTE, - ACTIONS(1641), 1, - anon_sym_LPAREN, - ACTIONS(1643), 1, + ACTIONS(1619), 1, + sym_identifier, + ACTIONS(1621), 1, anon_sym_getline, - ACTIONS(1645), 1, + ACTIONS(1623), 1, anon_sym_SLASH, - ACTIONS(1649), 1, - anon_sym_BANG, - ACTIONS(1653), 1, + ACTIONS(1627), 1, anon_sym_AT, - STATE(181), 1, + STATE(247), 1, sym_ns_qualified_name, - STATE(208), 1, + STATE(263), 1, sym_array_ref, - STATE(235), 1, - sym__binary_in, - STATE(236), 1, + STATE(279), 1, sym_field_ref, - STATE(1955), 1, + STATE(426), 1, + sym__binary_in, + STATE(1956), 1, sym_namespace, - ACTIONS(1647), 2, + ACTIONS(119), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1651), 2, + ACTIONS(1625), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1133), 19, + STATE(405), 19, sym__getline_exp, sym_getline_input, sym_getline_file, @@ -66324,44 +66273,44 @@ static const uint16_t ts_small_parse_table[] = { sym_string, sym_func_call, sym_indirect_func_call, - [49945] = 18, - ACTIONS(390), 1, - anon_sym_DOLLAR, - ACTIONS(1557), 1, - sym_identifier, - ACTIONS(1573), 1, + [49473] = 18, + ACTIONS(169), 1, aux_sym_number_token1, - ACTIONS(1575), 1, + ACTIONS(276), 1, + anon_sym_LPAREN, + ACTIONS(298), 1, + anon_sym_BANG, + ACTIONS(302), 1, + anon_sym_DOLLAR, + ACTIONS(306), 1, aux_sym_number_token2, - ACTIONS(1577), 1, + ACTIONS(308), 1, anon_sym_DQUOTE, - ACTIONS(1641), 1, - anon_sym_LPAREN, - ACTIONS(1643), 1, + ACTIONS(1785), 1, + sym_identifier, + ACTIONS(1787), 1, anon_sym_getline, - ACTIONS(1645), 1, + ACTIONS(1789), 1, anon_sym_SLASH, - ACTIONS(1649), 1, - anon_sym_BANG, - ACTIONS(1653), 1, + ACTIONS(1793), 1, anon_sym_AT, - STATE(181), 1, + STATE(738), 1, sym_ns_qualified_name, - STATE(208), 1, + STATE(955), 1, sym_array_ref, - STATE(235), 1, - sym__binary_in, - STATE(236), 1, + STATE(1159), 1, sym_field_ref, - STATE(1955), 1, + STATE(1385), 1, + sym__binary_in, + STATE(1956), 1, sym_namespace, - ACTIONS(1647), 2, + ACTIONS(296), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1651), 2, + ACTIONS(1791), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1134), 19, + STATE(1357), 19, sym__getline_exp, sym_getline_input, sym_getline_file, @@ -66381,44 +66330,44 @@ static const uint16_t ts_small_parse_table[] = { sym_string, sym_func_call, sym_indirect_func_call, - [50020] = 18, - ACTIONS(123), 1, - aux_sym_number_token1, - ACTIONS(286), 1, - aux_sym_number_token2, - ACTIONS(288), 1, - anon_sym_DQUOTE, - ACTIONS(366), 1, - anon_sym_LPAREN, - ACTIONS(386), 1, - anon_sym_BANG, - ACTIONS(390), 1, + [49548] = 18, + ACTIONS(302), 1, anon_sym_DOLLAR, - ACTIONS(1609), 1, + ACTIONS(1597), 1, sym_identifier, - ACTIONS(1611), 1, + ACTIONS(1599), 1, + anon_sym_LPAREN, + ACTIONS(1601), 1, anon_sym_getline, - ACTIONS(1613), 1, + ACTIONS(1603), 1, anon_sym_SLASH, - ACTIONS(1617), 1, + ACTIONS(1607), 1, + anon_sym_BANG, + ACTIONS(1611), 1, anon_sym_AT, - STATE(743), 1, + ACTIONS(1613), 1, + aux_sym_number_token1, + ACTIONS(1615), 1, + aux_sym_number_token2, + ACTIONS(1617), 1, + anon_sym_DQUOTE, + STATE(165), 1, sym_ns_qualified_name, - STATE(998), 1, + STATE(216), 1, sym_array_ref, - STATE(1165), 1, + STATE(233), 1, sym_field_ref, - STATE(1373), 1, + STATE(234), 1, sym__binary_in, - STATE(1955), 1, + STATE(1956), 1, sym_namespace, - ACTIONS(384), 2, + ACTIONS(1605), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1615), 2, + ACTIONS(1609), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1473), 19, + STATE(1150), 19, sym__getline_exp, sym_getline_input, sym_getline_file, @@ -66438,101 +66387,102 @@ static const uint16_t ts_small_parse_table[] = { sym_string, sym_func_call, sym_indirect_func_call, - [50095] = 18, - ACTIONS(390), 1, - anon_sym_DOLLAR, - ACTIONS(1557), 1, - sym_identifier, - ACTIONS(1573), 1, + [49623] = 19, + ACTIONS(169), 1, aux_sym_number_token1, - ACTIONS(1575), 1, + ACTIONS(276), 1, + anon_sym_LPAREN, + ACTIONS(298), 1, + anon_sym_BANG, + ACTIONS(302), 1, + anon_sym_DOLLAR, + ACTIONS(306), 1, aux_sym_number_token2, - ACTIONS(1577), 1, + ACTIONS(308), 1, anon_sym_DQUOTE, - ACTIONS(1641), 1, - anon_sym_LPAREN, - ACTIONS(1643), 1, + ACTIONS(1289), 1, anon_sym_getline, - ACTIONS(1645), 1, + ACTIONS(1291), 1, anon_sym_SLASH, - ACTIONS(1649), 1, - anon_sym_BANG, - ACTIONS(1653), 1, + ACTIONS(1301), 1, anon_sym_AT, - STATE(181), 1, - sym_ns_qualified_name, + ACTIONS(1773), 1, + sym_identifier, STATE(208), 1, sym_array_ref, - STATE(235), 1, - sym__binary_in, - STATE(236), 1, + STATE(249), 1, sym_field_ref, - STATE(1955), 1, + STATE(595), 1, + sym_ns_qualified_name, + STATE(1385), 1, + sym__binary_in, + STATE(1956), 1, sym_namespace, - ACTIONS(1647), 2, + ACTIONS(296), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1651), 2, + ACTIONS(1297), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(238), 19, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, + STATE(1389), 9, sym_ternary_exp, sym_binary_exp, sym_unary_exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, sym_string_concat, - sym_regex, - sym_regex_constant, sym_grouping, sym__primitive, sym_number, sym_string, sym_func_call, + STATE(1680), 10, + sym__getline_exp, + sym_getline_input, + sym_getline_file, + sym__exp, + sym_update_exp, + sym_assignment_exp, + sym_piped_io_exp, + sym_regex, + sym_regex_constant, sym_indirect_func_call, - [50170] = 18, - ACTIONS(390), 1, + [49700] = 18, + ACTIONS(302), 1, anon_sym_DOLLAR, - ACTIONS(1557), 1, + ACTIONS(1597), 1, sym_identifier, - ACTIONS(1573), 1, - aux_sym_number_token1, - ACTIONS(1575), 1, - aux_sym_number_token2, - ACTIONS(1577), 1, - anon_sym_DQUOTE, - ACTIONS(1641), 1, + ACTIONS(1599), 1, anon_sym_LPAREN, - ACTIONS(1643), 1, + ACTIONS(1601), 1, anon_sym_getline, - ACTIONS(1645), 1, + ACTIONS(1603), 1, anon_sym_SLASH, - ACTIONS(1649), 1, + ACTIONS(1607), 1, anon_sym_BANG, - ACTIONS(1653), 1, + ACTIONS(1611), 1, anon_sym_AT, - STATE(181), 1, + ACTIONS(1613), 1, + aux_sym_number_token1, + ACTIONS(1615), 1, + aux_sym_number_token2, + ACTIONS(1617), 1, + anon_sym_DQUOTE, + STATE(165), 1, sym_ns_qualified_name, - STATE(208), 1, + STATE(216), 1, sym_array_ref, - STATE(235), 1, - sym__binary_in, - STATE(236), 1, + STATE(233), 1, sym_field_ref, - STATE(1955), 1, + STATE(234), 1, + sym__binary_in, + STATE(1956), 1, sym_namespace, - ACTIONS(1647), 2, + ACTIONS(1605), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1651), 2, + ACTIONS(1609), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1135), 19, + STATE(1151), 19, sym__getline_exp, sym_getline_input, sym_getline_file, @@ -66552,44 +66502,44 @@ static const uint16_t ts_small_parse_table[] = { sym_string, sym_func_call, sym_indirect_func_call, - [50245] = 18, - ACTIONS(123), 1, - aux_sym_number_token1, - ACTIONS(286), 1, - aux_sym_number_token2, - ACTIONS(288), 1, - anon_sym_DQUOTE, - ACTIONS(366), 1, + [49775] = 18, + ACTIONS(1287), 1, anon_sym_LPAREN, - ACTIONS(386), 1, + ACTIONS(1295), 1, anon_sym_BANG, - ACTIONS(390), 1, + ACTIONS(1299), 1, anon_sym_DOLLAR, - ACTIONS(1609), 1, + ACTIONS(1303), 1, + aux_sym_number_token1, + ACTIONS(1305), 1, + aux_sym_number_token2, + ACTIONS(1307), 1, + anon_sym_DQUOTE, + ACTIONS(1761), 1, sym_identifier, - ACTIONS(1611), 1, + ACTIONS(1763), 1, anon_sym_getline, - ACTIONS(1613), 1, + ACTIONS(1765), 1, anon_sym_SLASH, - ACTIONS(1617), 1, + ACTIONS(1769), 1, anon_sym_AT, - STATE(743), 1, + STATE(960), 1, sym_ns_qualified_name, - STATE(998), 1, + STATE(1161), 1, sym_array_ref, - STATE(1165), 1, + STATE(1240), 1, sym_field_ref, - STATE(1373), 1, + STATE(1510), 1, sym__binary_in, - STATE(1955), 1, + STATE(2080), 1, sym_namespace, - ACTIONS(384), 2, + ACTIONS(1293), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1615), 2, + ACTIONS(1767), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1344), 19, + STATE(1522), 19, sym__getline_exp, sym_getline_input, sym_getline_file, @@ -66609,44 +66559,44 @@ static const uint16_t ts_small_parse_table[] = { sym_string, sym_func_call, sym_indirect_func_call, - [50320] = 18, - ACTIONS(390), 1, - anon_sym_DOLLAR, - ACTIONS(1557), 1, - sym_identifier, - ACTIONS(1573), 1, + [49850] = 18, + ACTIONS(169), 1, aux_sym_number_token1, - ACTIONS(1575), 1, + ACTIONS(276), 1, + anon_sym_LPAREN, + ACTIONS(298), 1, + anon_sym_BANG, + ACTIONS(302), 1, + anon_sym_DOLLAR, + ACTIONS(306), 1, aux_sym_number_token2, - ACTIONS(1577), 1, + ACTIONS(308), 1, anon_sym_DQUOTE, - ACTIONS(1641), 1, - anon_sym_LPAREN, - ACTIONS(1643), 1, + ACTIONS(1785), 1, + sym_identifier, + ACTIONS(1787), 1, anon_sym_getline, - ACTIONS(1645), 1, + ACTIONS(1789), 1, anon_sym_SLASH, - ACTIONS(1649), 1, - anon_sym_BANG, - ACTIONS(1653), 1, + ACTIONS(1793), 1, anon_sym_AT, - STATE(181), 1, + STATE(738), 1, sym_ns_qualified_name, - STATE(208), 1, + STATE(955), 1, sym_array_ref, - STATE(235), 1, - sym__binary_in, - STATE(236), 1, + STATE(1159), 1, sym_field_ref, - STATE(1955), 1, + STATE(1385), 1, + sym__binary_in, + STATE(1956), 1, sym_namespace, - ACTIONS(1647), 2, + ACTIONS(296), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1651), 2, + ACTIONS(1791), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1136), 19, + STATE(1483), 19, sym__getline_exp, sym_getline_input, sym_getline_file, @@ -66666,102 +66616,144 @@ static const uint16_t ts_small_parse_table[] = { sym_string, sym_func_call, sym_indirect_func_call, - [50395] = 19, - ACTIONS(127), 1, - sym_identifier, - ACTIONS(131), 1, + [49925] = 18, + ACTIONS(169), 1, + aux_sym_number_token1, + ACTIONS(276), 1, anon_sym_LPAREN, - ACTIONS(147), 1, - anon_sym_getline, - ACTIONS(153), 1, - anon_sym_SLASH, - ACTIONS(157), 1, + ACTIONS(298), 1, anon_sym_BANG, - ACTIONS(161), 1, + ACTIONS(302), 1, anon_sym_DOLLAR, - ACTIONS(163), 1, - anon_sym_AT, - ACTIONS(165), 1, - aux_sym_number_token1, - ACTIONS(167), 1, + ACTIONS(306), 1, aux_sym_number_token2, - ACTIONS(169), 1, + ACTIONS(308), 1, anon_sym_DQUOTE, - STATE(221), 1, + ACTIONS(1785), 1, + sym_identifier, + ACTIONS(1787), 1, + anon_sym_getline, + ACTIONS(1789), 1, + anon_sym_SLASH, + ACTIONS(1793), 1, + anon_sym_AT, + STATE(738), 1, sym_ns_qualified_name, - STATE(253), 1, + STATE(955), 1, sym_array_ref, - STATE(272), 1, + STATE(1159), 1, sym_field_ref, - STATE(446), 1, + STATE(1385), 1, sym__binary_in, - STATE(1955), 1, + STATE(1956), 1, sym_namespace, - ACTIONS(155), 2, + ACTIONS(296), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(159), 2, + ACTIONS(1791), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(447), 9, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_string_concat, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - STATE(464), 10, + STATE(1484), 19, sym__getline_exp, sym_getline_input, sym_getline_file, sym__exp, + sym_ternary_exp, + sym_binary_exp, + sym_unary_exp, sym_update_exp, sym_assignment_exp, sym_piped_io_exp, + sym_string_concat, sym_regex, sym_regex_constant, + sym_grouping, + sym__primitive, + sym_number, + sym_string, + sym_func_call, sym_indirect_func_call, - [50472] = 18, - ACTIONS(123), 1, - aux_sym_number_token1, - ACTIONS(272), 1, + [50000] = 4, + ACTIONS(652), 2, + sym_concatenating_space, + sym__if_else_separator, + ACTIONS(1241), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1337), 7, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + ACTIONS(642), 27, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_while, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_CARET, + anon_sym_STAR_STAR, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [50047] = 18, + ACTIONS(1287), 1, anon_sym_LPAREN, - ACTIONS(278), 1, + ACTIONS(1295), 1, anon_sym_BANG, - ACTIONS(282), 1, + ACTIONS(1299), 1, anon_sym_DOLLAR, - ACTIONS(286), 1, + ACTIONS(1303), 1, + aux_sym_number_token1, + ACTIONS(1305), 1, aux_sym_number_token2, - ACTIONS(288), 1, + ACTIONS(1307), 1, anon_sym_DQUOTE, - ACTIONS(1697), 1, + ACTIONS(1761), 1, sym_identifier, - ACTIONS(1699), 1, + ACTIONS(1763), 1, anon_sym_getline, - ACTIONS(1701), 1, + ACTIONS(1765), 1, anon_sym_SLASH, - ACTIONS(1705), 1, + ACTIONS(1769), 1, anon_sym_AT, - STATE(598), 1, + STATE(960), 1, sym_ns_qualified_name, - STATE(622), 1, + STATE(1161), 1, sym_array_ref, - STATE(684), 1, + STATE(1240), 1, sym_field_ref, - STATE(1373), 1, + STATE(1510), 1, sym__binary_in, - STATE(1955), 1, + STATE(2080), 1, sym_namespace, - ACTIONS(115), 2, + ACTIONS(1293), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1703), 2, + ACTIONS(1767), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1416), 19, + STATE(1498), 19, sym__getline_exp, sym_getline_input, sym_getline_file, @@ -66781,44 +66773,44 @@ static const uint16_t ts_small_parse_table[] = { sym_string, sym_func_call, sym_indirect_func_call, - [50547] = 18, - ACTIONS(123), 1, + [50122] = 18, + ACTIONS(169), 1, aux_sym_number_token1, - ACTIONS(272), 1, + ACTIONS(276), 1, anon_sym_LPAREN, - ACTIONS(278), 1, + ACTIONS(298), 1, anon_sym_BANG, - ACTIONS(282), 1, + ACTIONS(302), 1, anon_sym_DOLLAR, - ACTIONS(286), 1, + ACTIONS(306), 1, aux_sym_number_token2, - ACTIONS(288), 1, + ACTIONS(308), 1, anon_sym_DQUOTE, - ACTIONS(1697), 1, + ACTIONS(1785), 1, sym_identifier, - ACTIONS(1699), 1, + ACTIONS(1787), 1, anon_sym_getline, - ACTIONS(1701), 1, + ACTIONS(1789), 1, anon_sym_SLASH, - ACTIONS(1705), 1, + ACTIONS(1793), 1, anon_sym_AT, - STATE(598), 1, + STATE(738), 1, sym_ns_qualified_name, - STATE(622), 1, + STATE(955), 1, sym_array_ref, - STATE(684), 1, + STATE(1159), 1, sym_field_ref, - STATE(1373), 1, + STATE(1385), 1, sym__binary_in, - STATE(1955), 1, + STATE(1956), 1, sym_namespace, - ACTIONS(115), 2, + ACTIONS(296), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1703), 2, + ACTIONS(1791), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1417), 19, + STATE(1386), 19, sym__getline_exp, sym_getline_input, sym_getline_file, @@ -66838,44 +66830,44 @@ static const uint16_t ts_small_parse_table[] = { sym_string, sym_func_call, sym_indirect_func_call, - [50622] = 18, - ACTIONS(11), 1, + [50197] = 18, + ACTIONS(169), 1, + aux_sym_number_token1, + ACTIONS(276), 1, anon_sym_LPAREN, - ACTIONS(21), 1, + ACTIONS(298), 1, anon_sym_BANG, - ACTIONS(25), 1, + ACTIONS(302), 1, anon_sym_DOLLAR, - ACTIONS(29), 1, - aux_sym_number_token1, - ACTIONS(31), 1, + ACTIONS(306), 1, aux_sym_number_token2, - ACTIONS(33), 1, + ACTIONS(308), 1, anon_sym_DQUOTE, - ACTIONS(1599), 1, + ACTIONS(1785), 1, sym_identifier, - ACTIONS(1601), 1, + ACTIONS(1787), 1, anon_sym_getline, - ACTIONS(1603), 1, + ACTIONS(1789), 1, anon_sym_SLASH, - ACTIONS(1607), 1, + ACTIONS(1793), 1, anon_sym_AT, - STATE(445), 1, + STATE(738), 1, sym_ns_qualified_name, - STATE(474), 1, + STATE(955), 1, sym_array_ref, - STATE(480), 1, + STATE(1159), 1, sym_field_ref, - STATE(556), 1, + STATE(1385), 1, sym__binary_in, - STATE(2075), 1, + STATE(1956), 1, sym_namespace, - ACTIONS(19), 2, + ACTIONS(296), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1605), 2, + ACTIONS(1791), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(532), 19, + STATE(1485), 19, sym__getline_exp, sym_getline_input, sym_getline_file, @@ -66895,44 +66887,88 @@ static const uint16_t ts_small_parse_table[] = { sym_string, sym_func_call, sym_indirect_func_call, - [50697] = 18, - ACTIONS(11), 1, + [50272] = 5, + ACTIONS(652), 1, + sym__if_else_separator, + ACTIONS(1311), 1, + sym_concatenating_space, + ACTIONS(1227), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1309), 7, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + ACTIONS(642), 27, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_while, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_CARET, + anon_sym_STAR_STAR, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [50321] = 18, + ACTIONS(169), 1, + aux_sym_number_token1, + ACTIONS(276), 1, anon_sym_LPAREN, - ACTIONS(21), 1, + ACTIONS(298), 1, anon_sym_BANG, - ACTIONS(25), 1, + ACTIONS(302), 1, anon_sym_DOLLAR, - ACTIONS(29), 1, - aux_sym_number_token1, - ACTIONS(31), 1, + ACTIONS(306), 1, aux_sym_number_token2, - ACTIONS(33), 1, + ACTIONS(308), 1, anon_sym_DQUOTE, - ACTIONS(1599), 1, + ACTIONS(1785), 1, sym_identifier, - ACTIONS(1601), 1, + ACTIONS(1787), 1, anon_sym_getline, - ACTIONS(1603), 1, + ACTIONS(1789), 1, anon_sym_SLASH, - ACTIONS(1607), 1, + ACTIONS(1793), 1, anon_sym_AT, - STATE(445), 1, + STATE(738), 1, sym_ns_qualified_name, - STATE(474), 1, + STATE(955), 1, sym_array_ref, - STATE(480), 1, + STATE(1159), 1, sym_field_ref, - STATE(556), 1, + STATE(1385), 1, sym__binary_in, - STATE(2075), 1, + STATE(1956), 1, sym_namespace, - ACTIONS(19), 2, + ACTIONS(296), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1605), 2, + ACTIONS(1791), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(536), 19, + STATE(1477), 19, sym__getline_exp, sym_getline_input, sym_getline_file, @@ -66952,44 +66988,44 @@ static const uint16_t ts_small_parse_table[] = { sym_string, sym_func_call, sym_indirect_func_call, - [50772] = 18, - ACTIONS(11), 1, + [50396] = 18, + ACTIONS(1287), 1, anon_sym_LPAREN, - ACTIONS(21), 1, + ACTIONS(1295), 1, anon_sym_BANG, - ACTIONS(25), 1, + ACTIONS(1299), 1, anon_sym_DOLLAR, - ACTIONS(29), 1, + ACTIONS(1303), 1, aux_sym_number_token1, - ACTIONS(31), 1, + ACTIONS(1305), 1, aux_sym_number_token2, - ACTIONS(33), 1, + ACTIONS(1307), 1, anon_sym_DQUOTE, - ACTIONS(1599), 1, + ACTIONS(1761), 1, sym_identifier, - ACTIONS(1601), 1, + ACTIONS(1763), 1, anon_sym_getline, - ACTIONS(1603), 1, + ACTIONS(1765), 1, anon_sym_SLASH, - ACTIONS(1607), 1, + ACTIONS(1769), 1, anon_sym_AT, - STATE(445), 1, + STATE(960), 1, sym_ns_qualified_name, - STATE(474), 1, + STATE(1161), 1, sym_array_ref, - STATE(480), 1, + STATE(1240), 1, sym_field_ref, - STATE(556), 1, + STATE(1510), 1, sym__binary_in, - STATE(2075), 1, + STATE(2080), 1, sym_namespace, - ACTIONS(19), 2, + ACTIONS(1293), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1605), 2, + ACTIONS(1767), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(527), 19, + STATE(1530), 19, sym__getline_exp, sym_getline_input, sym_getline_file, @@ -67009,44 +67045,44 @@ static const uint16_t ts_small_parse_table[] = { sym_string, sym_func_call, sym_indirect_func_call, - [50847] = 18, - ACTIONS(131), 1, + [50471] = 18, + ACTIONS(169), 1, + aux_sym_number_token1, + ACTIONS(276), 1, anon_sym_LPAREN, - ACTIONS(157), 1, + ACTIONS(298), 1, anon_sym_BANG, - ACTIONS(161), 1, + ACTIONS(302), 1, anon_sym_DOLLAR, - ACTIONS(165), 1, - aux_sym_number_token1, - ACTIONS(167), 1, + ACTIONS(306), 1, aux_sym_number_token2, - ACTIONS(169), 1, + ACTIONS(308), 1, anon_sym_DQUOTE, - ACTIONS(1721), 1, + ACTIONS(1785), 1, sym_identifier, - ACTIONS(1723), 1, + ACTIONS(1787), 1, anon_sym_getline, - ACTIONS(1725), 1, + ACTIONS(1789), 1, anon_sym_SLASH, - ACTIONS(1729), 1, + ACTIONS(1793), 1, anon_sym_AT, - STATE(250), 1, + STATE(738), 1, sym_ns_qualified_name, - STATE(268), 1, + STATE(955), 1, sym_array_ref, - STATE(276), 1, + STATE(1159), 1, sym_field_ref, - STATE(446), 1, + STATE(1385), 1, sym__binary_in, - STATE(1955), 1, + STATE(1956), 1, sym_namespace, - ACTIONS(155), 2, + ACTIONS(296), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1727), 2, + ACTIONS(1791), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(420), 19, + STATE(1486), 19, sym__getline_exp, sym_getline_input, sym_getline_file, @@ -67066,44 +67102,44 @@ static const uint16_t ts_small_parse_table[] = { sym_string, sym_func_call, sym_indirect_func_call, - [50922] = 18, - ACTIONS(1283), 1, - anon_sym_DOLLAR, - ACTIONS(1619), 1, - sym_identifier, - ACTIONS(1635), 1, + [50546] = 18, + ACTIONS(169), 1, aux_sym_number_token1, - ACTIONS(1637), 1, + ACTIONS(276), 1, + anon_sym_LPAREN, + ACTIONS(298), 1, + anon_sym_BANG, + ACTIONS(302), 1, + anon_sym_DOLLAR, + ACTIONS(306), 1, aux_sym_number_token2, - ACTIONS(1639), 1, + ACTIONS(308), 1, anon_sym_DQUOTE, - ACTIONS(1755), 1, - anon_sym_LPAREN, - ACTIONS(1757), 1, + ACTIONS(1785), 1, + sym_identifier, + ACTIONS(1787), 1, anon_sym_getline, - ACTIONS(1759), 1, + ACTIONS(1789), 1, anon_sym_SLASH, - ACTIONS(1763), 1, - anon_sym_BANG, - ACTIONS(1767), 1, + ACTIONS(1793), 1, anon_sym_AT, - STATE(293), 1, + STATE(738), 1, sym_ns_qualified_name, - STATE(302), 1, + STATE(955), 1, sym_array_ref, - STATE(331), 1, - sym__binary_in, - STATE(334), 1, + STATE(1159), 1, sym_field_ref, - STATE(2075), 1, + STATE(1385), 1, + sym__binary_in, + STATE(1956), 1, sym_namespace, - ACTIONS(1761), 2, + ACTIONS(296), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1765), 2, + ACTIONS(1791), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(319), 19, + STATE(1354), 19, sym__getline_exp, sym_getline_input, sym_getline_file, @@ -67123,44 +67159,88 @@ static const uint16_t ts_small_parse_table[] = { sym_string, sym_func_call, sym_indirect_func_call, - [50997] = 18, - ACTIONS(123), 1, + [50621] = 5, + ACTIONS(652), 1, + sym_concatenating_space, + ACTIONS(684), 1, + anon_sym_LBRACK, + ACTIONS(1249), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1377), 7, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + ACTIONS(642), 27, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_while, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_CARET, + anon_sym_STAR_STAR, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [50670] = 18, + ACTIONS(169), 1, aux_sym_number_token1, - ACTIONS(272), 1, + ACTIONS(276), 1, anon_sym_LPAREN, - ACTIONS(278), 1, + ACTIONS(298), 1, anon_sym_BANG, - ACTIONS(282), 1, + ACTIONS(302), 1, anon_sym_DOLLAR, - ACTIONS(286), 1, + ACTIONS(306), 1, aux_sym_number_token2, - ACTIONS(288), 1, + ACTIONS(308), 1, anon_sym_DQUOTE, - ACTIONS(1697), 1, + ACTIONS(1785), 1, sym_identifier, - ACTIONS(1699), 1, + ACTIONS(1787), 1, anon_sym_getline, - ACTIONS(1701), 1, + ACTIONS(1789), 1, anon_sym_SLASH, - ACTIONS(1705), 1, + ACTIONS(1793), 1, anon_sym_AT, - STATE(598), 1, + STATE(738), 1, sym_ns_qualified_name, - STATE(622), 1, + STATE(955), 1, sym_array_ref, - STATE(684), 1, + STATE(1159), 1, sym_field_ref, - STATE(1373), 1, + STATE(1385), 1, sym__binary_in, - STATE(1955), 1, + STATE(1956), 1, sym_namespace, - ACTIONS(115), 2, + ACTIONS(296), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1703), 2, + ACTIONS(1791), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1418), 19, + STATE(1487), 19, sym__getline_exp, sym_getline_input, sym_getline_file, @@ -67180,44 +67260,44 @@ static const uint16_t ts_small_parse_table[] = { sym_string, sym_func_call, sym_indirect_func_call, - [51072] = 18, - ACTIONS(123), 1, - aux_sym_number_token1, - ACTIONS(272), 1, - anon_sym_LPAREN, - ACTIONS(278), 1, - anon_sym_BANG, - ACTIONS(282), 1, + [50745] = 18, + ACTIONS(302), 1, anon_sym_DOLLAR, - ACTIONS(286), 1, - aux_sym_number_token2, - ACTIONS(288), 1, - anon_sym_DQUOTE, - ACTIONS(1697), 1, + ACTIONS(1597), 1, sym_identifier, - ACTIONS(1699), 1, + ACTIONS(1599), 1, + anon_sym_LPAREN, + ACTIONS(1601), 1, anon_sym_getline, - ACTIONS(1701), 1, + ACTIONS(1603), 1, anon_sym_SLASH, - ACTIONS(1705), 1, + ACTIONS(1607), 1, + anon_sym_BANG, + ACTIONS(1611), 1, anon_sym_AT, - STATE(598), 1, + ACTIONS(1613), 1, + aux_sym_number_token1, + ACTIONS(1615), 1, + aux_sym_number_token2, + ACTIONS(1617), 1, + anon_sym_DQUOTE, + STATE(165), 1, sym_ns_qualified_name, - STATE(622), 1, + STATE(216), 1, sym_array_ref, - STATE(684), 1, + STATE(233), 1, sym_field_ref, - STATE(1373), 1, + STATE(234), 1, sym__binary_in, - STATE(1955), 1, + STATE(1956), 1, sym_namespace, - ACTIONS(115), 2, + ACTIONS(1605), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1703), 2, + ACTIONS(1609), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1419), 19, + STATE(1152), 19, sym__getline_exp, sym_getline_input, sym_getline_file, @@ -67237,102 +67317,44 @@ static const uint16_t ts_small_parse_table[] = { sym_string, sym_func_call, sym_indirect_func_call, - [51147] = 19, - ACTIONS(1269), 1, + [50820] = 18, + ACTIONS(302), 1, + anon_sym_DOLLAR, + ACTIONS(1597), 1, sym_identifier, - ACTIONS(1271), 1, + ACTIONS(1599), 1, anon_sym_LPAREN, - ACTIONS(1273), 1, + ACTIONS(1601), 1, anon_sym_getline, - ACTIONS(1275), 1, + ACTIONS(1603), 1, anon_sym_SLASH, - ACTIONS(1279), 1, + ACTIONS(1607), 1, anon_sym_BANG, - ACTIONS(1283), 1, - anon_sym_DOLLAR, - ACTIONS(1285), 1, + ACTIONS(1611), 1, anon_sym_AT, - ACTIONS(1287), 1, - aux_sym_number_token1, - ACTIONS(1289), 1, - aux_sym_number_token2, - ACTIONS(1291), 1, - anon_sym_DQUOTE, - STATE(1067), 1, - sym_ns_qualified_name, - STATE(1137), 1, - sym_array_ref, - STATE(1231), 1, - sym_field_ref, - STATE(1502), 1, - sym__binary_in, - STATE(2075), 1, - sym_namespace, - ACTIONS(1277), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1281), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1500), 9, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_string_concat, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - STATE(1648), 10, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_regex, - sym_regex_constant, - sym_indirect_func_call, - [51224] = 18, - ACTIONS(131), 1, - anon_sym_LPAREN, - ACTIONS(157), 1, - anon_sym_BANG, - ACTIONS(161), 1, - anon_sym_DOLLAR, - ACTIONS(165), 1, + ACTIONS(1613), 1, aux_sym_number_token1, - ACTIONS(167), 1, + ACTIONS(1615), 1, aux_sym_number_token2, - ACTIONS(169), 1, + ACTIONS(1617), 1, anon_sym_DQUOTE, - ACTIONS(1721), 1, - sym_identifier, - ACTIONS(1723), 1, - anon_sym_getline, - ACTIONS(1725), 1, - anon_sym_SLASH, - ACTIONS(1729), 1, - anon_sym_AT, - STATE(250), 1, + STATE(165), 1, sym_ns_qualified_name, - STATE(268), 1, + STATE(216), 1, sym_array_ref, - STATE(276), 1, + STATE(233), 1, sym_field_ref, - STATE(446), 1, + STATE(234), 1, sym__binary_in, - STATE(1955), 1, + STATE(1956), 1, sym_namespace, - ACTIONS(155), 2, + ACTIONS(1605), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1727), 2, + ACTIONS(1609), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(421), 19, + STATE(1153), 19, sym__getline_exp, sym_getline_input, sym_getline_file, @@ -67352,44 +67374,44 @@ static const uint16_t ts_small_parse_table[] = { sym_string, sym_func_call, sym_indirect_func_call, - [51299] = 18, - ACTIONS(131), 1, + [50895] = 18, + ACTIONS(169), 1, + aux_sym_number_token1, + ACTIONS(276), 1, anon_sym_LPAREN, - ACTIONS(157), 1, + ACTIONS(298), 1, anon_sym_BANG, - ACTIONS(161), 1, + ACTIONS(302), 1, anon_sym_DOLLAR, - ACTIONS(165), 1, - aux_sym_number_token1, - ACTIONS(167), 1, + ACTIONS(306), 1, aux_sym_number_token2, - ACTIONS(169), 1, + ACTIONS(308), 1, anon_sym_DQUOTE, - ACTIONS(1721), 1, + ACTIONS(1785), 1, sym_identifier, - ACTIONS(1723), 1, + ACTIONS(1787), 1, anon_sym_getline, - ACTIONS(1725), 1, + ACTIONS(1789), 1, anon_sym_SLASH, - ACTIONS(1729), 1, + ACTIONS(1793), 1, anon_sym_AT, - STATE(250), 1, + STATE(738), 1, sym_ns_qualified_name, - STATE(268), 1, + STATE(955), 1, sym_array_ref, - STATE(276), 1, + STATE(1159), 1, sym_field_ref, - STATE(446), 1, + STATE(1385), 1, sym__binary_in, - STATE(1955), 1, + STATE(1956), 1, sym_namespace, - ACTIONS(155), 2, + ACTIONS(296), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1727), 2, + ACTIONS(1791), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(422), 19, + STATE(1488), 19, sym__getline_exp, sym_getline_input, sym_getline_file, @@ -67409,44 +67431,90 @@ static const uint16_t ts_small_parse_table[] = { sym_string, sym_func_call, sym_indirect_func_call, - [51374] = 18, - ACTIONS(131), 1, - anon_sym_LPAREN, - ACTIONS(157), 1, - anon_sym_BANG, - ACTIONS(161), 1, + [50970] = 7, + ACTIONS(908), 1, + anon_sym_LBRACK, + ACTIONS(1453), 1, + anon_sym_LPAREN2, + ACTIONS(1473), 1, + anon_sym_EQ, + ACTIONS(1471), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1475), 6, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + ACTIONS(642), 9, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(652), 18, + sym_concatenating_space, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_in, + anon_sym_COLON, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_RBRACK, + [51023] = 18, + ACTIONS(302), 1, anon_sym_DOLLAR, - ACTIONS(165), 1, - aux_sym_number_token1, - ACTIONS(167), 1, - aux_sym_number_token2, - ACTIONS(169), 1, - anon_sym_DQUOTE, - ACTIONS(1721), 1, + ACTIONS(1597), 1, sym_identifier, - ACTIONS(1723), 1, + ACTIONS(1599), 1, + anon_sym_LPAREN, + ACTIONS(1601), 1, anon_sym_getline, - ACTIONS(1725), 1, + ACTIONS(1603), 1, anon_sym_SLASH, - ACTIONS(1729), 1, + ACTIONS(1607), 1, + anon_sym_BANG, + ACTIONS(1611), 1, anon_sym_AT, - STATE(250), 1, + ACTIONS(1613), 1, + aux_sym_number_token1, + ACTIONS(1615), 1, + aux_sym_number_token2, + ACTIONS(1617), 1, + anon_sym_DQUOTE, + STATE(165), 1, sym_ns_qualified_name, - STATE(268), 1, + STATE(216), 1, sym_array_ref, - STATE(276), 1, + STATE(233), 1, sym_field_ref, - STATE(446), 1, + STATE(234), 1, sym__binary_in, - STATE(1955), 1, + STATE(1956), 1, sym_namespace, - ACTIONS(155), 2, + ACTIONS(1605), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1727), 2, + ACTIONS(1609), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(423), 19, + STATE(1154), 19, sym__getline_exp, sym_getline_input, sym_getline_file, @@ -67466,102 +67534,44 @@ static const uint16_t ts_small_parse_table[] = { sym_string, sym_func_call, sym_indirect_func_call, - [51449] = 19, - ACTIONS(298), 1, + [51098] = 18, + ACTIONS(302), 1, + anon_sym_DOLLAR, + ACTIONS(1597), 1, sym_identifier, - ACTIONS(304), 1, + ACTIONS(1599), 1, anon_sym_LPAREN, - ACTIONS(318), 1, + ACTIONS(1601), 1, anon_sym_getline, - ACTIONS(324), 1, + ACTIONS(1603), 1, anon_sym_SLASH, - ACTIONS(328), 1, + ACTIONS(1607), 1, anon_sym_BANG, - ACTIONS(332), 1, - anon_sym_DOLLAR, - ACTIONS(334), 1, + ACTIONS(1611), 1, anon_sym_AT, - ACTIONS(336), 1, - aux_sym_number_token1, - ACTIONS(338), 1, - aux_sym_number_token2, - ACTIONS(340), 1, - anon_sym_DQUOTE, - STATE(196), 1, - sym_ns_qualified_name, - STATE(240), 1, - sym_array_ref, - STATE(256), 1, - sym_field_ref, - STATE(369), 1, - sym__binary_in, - STATE(2063), 1, - sym_namespace, - ACTIONS(326), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(330), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(375), 9, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_string_concat, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - STATE(452), 10, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_regex, - sym_regex_constant, - sym_indirect_func_call, - [51526] = 18, - ACTIONS(131), 1, - anon_sym_LPAREN, - ACTIONS(157), 1, - anon_sym_BANG, - ACTIONS(161), 1, - anon_sym_DOLLAR, - ACTIONS(165), 1, + ACTIONS(1613), 1, aux_sym_number_token1, - ACTIONS(167), 1, + ACTIONS(1615), 1, aux_sym_number_token2, - ACTIONS(169), 1, + ACTIONS(1617), 1, anon_sym_DQUOTE, - ACTIONS(1721), 1, - sym_identifier, - ACTIONS(1723), 1, - anon_sym_getline, - ACTIONS(1725), 1, - anon_sym_SLASH, - ACTIONS(1729), 1, - anon_sym_AT, - STATE(250), 1, + STATE(165), 1, sym_ns_qualified_name, - STATE(268), 1, + STATE(216), 1, sym_array_ref, - STATE(276), 1, + STATE(233), 1, sym_field_ref, - STATE(446), 1, + STATE(234), 1, sym__binary_in, - STATE(1955), 1, + STATE(1956), 1, sym_namespace, - ACTIONS(155), 2, + ACTIONS(1605), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1727), 2, + ACTIONS(1609), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(424), 19, + STATE(1155), 19, sym__getline_exp, sym_getline_input, sym_getline_file, @@ -67581,44 +67591,44 @@ static const uint16_t ts_small_parse_table[] = { sym_string, sym_func_call, sym_indirect_func_call, - [51601] = 18, - ACTIONS(131), 1, - anon_sym_LPAREN, - ACTIONS(157), 1, - anon_sym_BANG, - ACTIONS(161), 1, + [51173] = 18, + ACTIONS(302), 1, anon_sym_DOLLAR, - ACTIONS(165), 1, - aux_sym_number_token1, - ACTIONS(167), 1, - aux_sym_number_token2, - ACTIONS(169), 1, - anon_sym_DQUOTE, - ACTIONS(1721), 1, + ACTIONS(1597), 1, sym_identifier, - ACTIONS(1723), 1, + ACTIONS(1599), 1, + anon_sym_LPAREN, + ACTIONS(1601), 1, anon_sym_getline, - ACTIONS(1725), 1, + ACTIONS(1603), 1, anon_sym_SLASH, - ACTIONS(1729), 1, + ACTIONS(1607), 1, + anon_sym_BANG, + ACTIONS(1611), 1, anon_sym_AT, - STATE(250), 1, + ACTIONS(1613), 1, + aux_sym_number_token1, + ACTIONS(1615), 1, + aux_sym_number_token2, + ACTIONS(1617), 1, + anon_sym_DQUOTE, + STATE(165), 1, sym_ns_qualified_name, - STATE(268), 1, + STATE(216), 1, sym_array_ref, - STATE(276), 1, + STATE(233), 1, sym_field_ref, - STATE(446), 1, + STATE(234), 1, sym__binary_in, - STATE(1955), 1, + STATE(1956), 1, sym_namespace, - ACTIONS(155), 2, + ACTIONS(1605), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1727), 2, + ACTIONS(1609), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(425), 19, + STATE(1156), 19, sym__getline_exp, sym_getline_input, sym_getline_file, @@ -67638,44 +67648,44 @@ static const uint16_t ts_small_parse_table[] = { sym_string, sym_func_call, sym_indirect_func_call, - [51676] = 18, - ACTIONS(131), 1, - anon_sym_LPAREN, - ACTIONS(157), 1, - anon_sym_BANG, - ACTIONS(161), 1, + [51248] = 18, + ACTIONS(302), 1, anon_sym_DOLLAR, - ACTIONS(165), 1, - aux_sym_number_token1, - ACTIONS(167), 1, - aux_sym_number_token2, - ACTIONS(169), 1, - anon_sym_DQUOTE, - ACTIONS(1721), 1, + ACTIONS(1597), 1, sym_identifier, - ACTIONS(1723), 1, + ACTIONS(1599), 1, + anon_sym_LPAREN, + ACTIONS(1601), 1, anon_sym_getline, - ACTIONS(1725), 1, + ACTIONS(1603), 1, anon_sym_SLASH, - ACTIONS(1729), 1, + ACTIONS(1607), 1, + anon_sym_BANG, + ACTIONS(1611), 1, anon_sym_AT, - STATE(250), 1, + ACTIONS(1613), 1, + aux_sym_number_token1, + ACTIONS(1615), 1, + aux_sym_number_token2, + ACTIONS(1617), 1, + anon_sym_DQUOTE, + STATE(165), 1, sym_ns_qualified_name, - STATE(268), 1, + STATE(216), 1, sym_array_ref, - STATE(276), 1, + STATE(233), 1, sym_field_ref, - STATE(446), 1, + STATE(234), 1, sym__binary_in, - STATE(1955), 1, + STATE(1956), 1, sym_namespace, - ACTIONS(155), 2, + ACTIONS(1605), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1727), 2, + ACTIONS(1609), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(404), 19, + STATE(223), 19, sym__getline_exp, sym_getline_input, sym_getline_file, @@ -67695,44 +67705,44 @@ static const uint16_t ts_small_parse_table[] = { sym_string, sym_func_call, sym_indirect_func_call, - [51751] = 18, - ACTIONS(123), 1, + [51323] = 18, + ACTIONS(169), 1, aux_sym_number_token1, - ACTIONS(272), 1, + ACTIONS(276), 1, anon_sym_LPAREN, - ACTIONS(278), 1, + ACTIONS(298), 1, anon_sym_BANG, - ACTIONS(282), 1, + ACTIONS(302), 1, anon_sym_DOLLAR, - ACTIONS(286), 1, + ACTIONS(306), 1, aux_sym_number_token2, - ACTIONS(288), 1, + ACTIONS(308), 1, anon_sym_DQUOTE, - ACTIONS(1697), 1, + ACTIONS(1785), 1, sym_identifier, - ACTIONS(1699), 1, + ACTIONS(1787), 1, anon_sym_getline, - ACTIONS(1701), 1, + ACTIONS(1789), 1, anon_sym_SLASH, - ACTIONS(1705), 1, + ACTIONS(1793), 1, anon_sym_AT, - STATE(598), 1, + STATE(738), 1, sym_ns_qualified_name, - STATE(622), 1, + STATE(955), 1, sym_array_ref, - STATE(684), 1, + STATE(1159), 1, sym_field_ref, - STATE(1373), 1, + STATE(1385), 1, sym__binary_in, - STATE(1955), 1, + STATE(1956), 1, sym_namespace, - ACTIONS(115), 2, + ACTIONS(296), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1703), 2, + ACTIONS(1791), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1420), 19, + STATE(1490), 19, sym__getline_exp, sym_getline_input, sym_getline_file, @@ -67752,44 +67762,44 @@ static const uint16_t ts_small_parse_table[] = { sym_string, sym_func_call, sym_indirect_func_call, - [51826] = 18, - ACTIONS(131), 1, - anon_sym_LPAREN, - ACTIONS(157), 1, - anon_sym_BANG, - ACTIONS(161), 1, + [51398] = 18, + ACTIONS(324), 1, anon_sym_DOLLAR, - ACTIONS(165), 1, - aux_sym_number_token1, - ACTIONS(167), 1, - aux_sym_number_token2, - ACTIONS(169), 1, - anon_sym_DQUOTE, - ACTIONS(1721), 1, + ACTIONS(1669), 1, sym_identifier, - ACTIONS(1723), 1, + ACTIONS(1671), 1, + anon_sym_LPAREN, + ACTIONS(1673), 1, anon_sym_getline, - ACTIONS(1725), 1, + ACTIONS(1675), 1, anon_sym_SLASH, - ACTIONS(1729), 1, + ACTIONS(1679), 1, + anon_sym_BANG, + ACTIONS(1683), 1, anon_sym_AT, - STATE(250), 1, + ACTIONS(1685), 1, + aux_sym_number_token1, + ACTIONS(1687), 1, + aux_sym_number_token2, + ACTIONS(1689), 1, + anon_sym_DQUOTE, + STATE(164), 1, sym_ns_qualified_name, - STATE(268), 1, + STATE(176), 1, sym_array_ref, - STATE(276), 1, + STATE(192), 1, sym_field_ref, - STATE(446), 1, + STATE(194), 1, sym__binary_in, - STATE(1955), 1, + STATE(2068), 1, sym_namespace, - ACTIONS(155), 2, + ACTIONS(1677), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1727), 2, + ACTIONS(1681), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(426), 19, + STATE(608), 19, sym__getline_exp, sym_getline_input, sym_getline_file, @@ -67809,160 +67819,200 @@ static const uint16_t ts_small_parse_table[] = { sym_string, sym_func_call, sym_indirect_func_call, - [51901] = 19, - ACTIONS(127), 1, + [51473] = 18, + ACTIONS(1299), 1, + anon_sym_DOLLAR, + ACTIONS(1629), 1, sym_identifier, - ACTIONS(131), 1, + ACTIONS(1645), 1, + aux_sym_number_token1, + ACTIONS(1647), 1, + aux_sym_number_token2, + ACTIONS(1649), 1, + anon_sym_DQUOTE, + ACTIONS(1795), 1, anon_sym_LPAREN, - ACTIONS(147), 1, + ACTIONS(1797), 1, anon_sym_getline, - ACTIONS(153), 1, + ACTIONS(1799), 1, anon_sym_SLASH, - ACTIONS(157), 1, + ACTIONS(1803), 1, anon_sym_BANG, - ACTIONS(161), 1, - anon_sym_DOLLAR, - ACTIONS(163), 1, - anon_sym_AT, - ACTIONS(165), 1, - aux_sym_number_token1, - ACTIONS(167), 1, - aux_sym_number_token2, - ACTIONS(169), 1, - anon_sym_DQUOTE, - STATE(221), 1, + ACTIONS(1807), 1, + anon_sym_AT, + STATE(288), 1, sym_ns_qualified_name, - STATE(253), 1, + STATE(308), 1, sym_array_ref, - STATE(272), 1, - sym_field_ref, - STATE(446), 1, + STATE(328), 1, sym__binary_in, - STATE(1955), 1, + STATE(331), 1, + sym_field_ref, + STATE(2080), 1, sym_namespace, - ACTIONS(155), 2, + ACTIONS(1801), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(159), 2, + ACTIONS(1805), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(447), 9, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_string_concat, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - STATE(465), 10, + STATE(1248), 19, sym__getline_exp, sym_getline_input, sym_getline_file, sym__exp, + sym_ternary_exp, + sym_binary_exp, + sym_unary_exp, sym_update_exp, sym_assignment_exp, sym_piped_io_exp, + sym_string_concat, sym_regex, sym_regex_constant, + sym_grouping, + sym__primitive, + sym_number, + sym_string, + sym_func_call, sym_indirect_func_call, - [51978] = 19, - ACTIONS(131), 1, + [51548] = 3, + ACTIONS(1009), 1, + anon_sym_LBRACK, + ACTIONS(1469), 1, + sym__if_else_separator, + ACTIONS(1467), 36, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_if, anon_sym_LPAREN, - ACTIONS(157), 1, + anon_sym_while, + anon_sym_do, + anon_sym_for, + sym_break_statement, + sym_continue_statement, + anon_sym_delete, + anon_sym_exit, + anon_sym_return, + anon_sym_switch, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, + anon_sym_getline, + sym_next_statement, + sym_nextfile_statement, + anon_sym_print, + anon_sym_printf, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_BANG, - ACTIONS(161), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_DOLLAR, - ACTIONS(165), 1, + anon_sym_AT, + sym_identifier, aux_sym_number_token1, - ACTIONS(167), 1, aux_sym_number_token2, - ACTIONS(169), 1, anon_sym_DQUOTE, - ACTIONS(1273), 1, + anon_sym_POUND, + [51593] = 18, + ACTIONS(324), 1, + anon_sym_DOLLAR, + ACTIONS(1669), 1, + sym_identifier, + ACTIONS(1671), 1, + anon_sym_LPAREN, + ACTIONS(1673), 1, anon_sym_getline, - ACTIONS(1275), 1, + ACTIONS(1675), 1, anon_sym_SLASH, - ACTIONS(1285), 1, + ACTIONS(1679), 1, + anon_sym_BANG, + ACTIONS(1683), 1, anon_sym_AT, - ACTIONS(1791), 1, - sym_identifier, - STATE(186), 1, + ACTIONS(1685), 1, + aux_sym_number_token1, + ACTIONS(1687), 1, + aux_sym_number_token2, + ACTIONS(1689), 1, + anon_sym_DQUOTE, + STATE(164), 1, + sym_ns_qualified_name, + STATE(176), 1, sym_array_ref, - STATE(220), 1, + STATE(192), 1, sym_field_ref, - STATE(237), 1, - sym_ns_qualified_name, - STATE(446), 1, + STATE(194), 1, sym__binary_in, - STATE(1955), 1, + STATE(2068), 1, sym_namespace, - ACTIONS(155), 2, + ACTIONS(1677), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1281), 2, + ACTIONS(1681), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(429), 9, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_string_concat, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - STATE(1681), 10, + STATE(619), 19, sym__getline_exp, sym_getline_input, sym_getline_file, sym__exp, + sym_ternary_exp, + sym_binary_exp, + sym_unary_exp, sym_update_exp, sym_assignment_exp, sym_piped_io_exp, + sym_string_concat, sym_regex, sym_regex_constant, + sym_grouping, + sym__primitive, + sym_number, + sym_string, + sym_func_call, sym_indirect_func_call, - [52055] = 19, - ACTIONS(127), 1, + [51668] = 19, + ACTIONS(530), 1, sym_identifier, - ACTIONS(131), 1, + ACTIONS(534), 1, anon_sym_LPAREN, - ACTIONS(147), 1, + ACTIONS(544), 1, anon_sym_getline, - ACTIONS(153), 1, + ACTIONS(550), 1, anon_sym_SLASH, - ACTIONS(157), 1, + ACTIONS(554), 1, anon_sym_BANG, - ACTIONS(161), 1, + ACTIONS(558), 1, anon_sym_DOLLAR, - ACTIONS(163), 1, + ACTIONS(560), 1, anon_sym_AT, - ACTIONS(165), 1, + ACTIONS(562), 1, aux_sym_number_token1, - ACTIONS(167), 1, + ACTIONS(564), 1, aux_sym_number_token2, - ACTIONS(169), 1, + ACTIONS(566), 1, anon_sym_DQUOTE, - STATE(221), 1, + STATE(200), 1, sym_ns_qualified_name, - STATE(253), 1, + STATE(219), 1, sym_array_ref, - STATE(272), 1, + STATE(258), 1, sym_field_ref, - STATE(446), 1, + STATE(373), 1, sym__binary_in, - STATE(1955), 1, + STATE(2068), 1, sym_namespace, - ACTIONS(155), 2, + ACTIONS(552), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(159), 2, + ACTIONS(556), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(447), 9, + STATE(359), 9, sym_ternary_exp, sym_binary_exp, sym_unary_exp, @@ -67972,7 +68022,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_string, sym_func_call, - STATE(470), 10, + STATE(435), 10, sym__getline_exp, sym_getline_input, sym_getline_file, @@ -67983,276 +68033,272 @@ static const uint16_t ts_small_parse_table[] = { sym_regex, sym_regex_constant, sym_indirect_func_call, - [52132] = 19, - ACTIONS(1269), 1, + [51745] = 18, + ACTIONS(25), 1, + anon_sym_DOLLAR, + ACTIONS(1629), 1, sym_identifier, - ACTIONS(1271), 1, + ACTIONS(1631), 1, anon_sym_LPAREN, - ACTIONS(1273), 1, + ACTIONS(1633), 1, anon_sym_getline, - ACTIONS(1275), 1, + ACTIONS(1635), 1, anon_sym_SLASH, - ACTIONS(1279), 1, + ACTIONS(1639), 1, anon_sym_BANG, - ACTIONS(1283), 1, - anon_sym_DOLLAR, - ACTIONS(1285), 1, + ACTIONS(1643), 1, anon_sym_AT, - ACTIONS(1287), 1, + ACTIONS(1645), 1, aux_sym_number_token1, - ACTIONS(1289), 1, + ACTIONS(1647), 1, aux_sym_number_token2, - ACTIONS(1291), 1, + ACTIONS(1649), 1, anon_sym_DQUOTE, - STATE(1067), 1, + STATE(288), 1, sym_ns_qualified_name, - STATE(1137), 1, + STATE(308), 1, sym_array_ref, - STATE(1231), 1, - sym_field_ref, - STATE(1502), 1, + STATE(328), 1, sym__binary_in, - STATE(2075), 1, + STATE(331), 1, + sym_field_ref, + STATE(2080), 1, sym_namespace, - ACTIONS(1277), 2, + ACTIONS(1637), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1281), 2, + ACTIONS(1641), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1500), 9, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_string_concat, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - STATE(1673), 10, + STATE(337), 19, sym__getline_exp, sym_getline_input, sym_getline_file, sym__exp, + sym_ternary_exp, + sym_binary_exp, + sym_unary_exp, sym_update_exp, sym_assignment_exp, sym_piped_io_exp, + sym_string_concat, sym_regex, sym_regex_constant, + sym_grouping, + sym__primitive, + sym_number, + sym_string, + sym_func_call, sym_indirect_func_call, - [52209] = 19, - ACTIONS(1269), 1, + [51820] = 18, + ACTIONS(324), 1, + anon_sym_DOLLAR, + ACTIONS(1669), 1, sym_identifier, - ACTIONS(1271), 1, + ACTIONS(1671), 1, anon_sym_LPAREN, - ACTIONS(1273), 1, + ACTIONS(1673), 1, anon_sym_getline, - ACTIONS(1275), 1, + ACTIONS(1675), 1, anon_sym_SLASH, - ACTIONS(1279), 1, + ACTIONS(1679), 1, anon_sym_BANG, - ACTIONS(1283), 1, - anon_sym_DOLLAR, - ACTIONS(1285), 1, + ACTIONS(1683), 1, anon_sym_AT, - ACTIONS(1287), 1, + ACTIONS(1685), 1, aux_sym_number_token1, - ACTIONS(1289), 1, + ACTIONS(1687), 1, aux_sym_number_token2, - ACTIONS(1291), 1, + ACTIONS(1689), 1, anon_sym_DQUOTE, - STATE(1067), 1, + STATE(164), 1, sym_ns_qualified_name, - STATE(1137), 1, + STATE(176), 1, sym_array_ref, - STATE(1231), 1, + STATE(192), 1, sym_field_ref, - STATE(1502), 1, + STATE(194), 1, sym__binary_in, - STATE(2075), 1, + STATE(2068), 1, sym_namespace, - ACTIONS(1277), 2, + ACTIONS(1677), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1281), 2, + ACTIONS(1681), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1500), 9, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_string_concat, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - STATE(1676), 10, + STATE(618), 19, sym__getline_exp, sym_getline_input, sym_getline_file, sym__exp, + sym_ternary_exp, + sym_binary_exp, + sym_unary_exp, sym_update_exp, sym_assignment_exp, sym_piped_io_exp, + sym_string_concat, sym_regex, sym_regex_constant, + sym_grouping, + sym__primitive, + sym_number, + sym_string, + sym_func_call, sym_indirect_func_call, - [52286] = 19, - ACTIONS(298), 1, + [51895] = 18, + ACTIONS(444), 1, + anon_sym_DOLLAR, + ACTIONS(1597), 1, sym_identifier, - ACTIONS(304), 1, + ACTIONS(1613), 1, + aux_sym_number_token1, + ACTIONS(1615), 1, + aux_sym_number_token2, + ACTIONS(1617), 1, + anon_sym_DQUOTE, + ACTIONS(1707), 1, anon_sym_LPAREN, - ACTIONS(318), 1, + ACTIONS(1709), 1, anon_sym_getline, - ACTIONS(324), 1, + ACTIONS(1711), 1, anon_sym_SLASH, - ACTIONS(328), 1, + ACTIONS(1715), 1, anon_sym_BANG, - ACTIONS(332), 1, - anon_sym_DOLLAR, - ACTIONS(334), 1, + ACTIONS(1719), 1, anon_sym_AT, - ACTIONS(336), 1, - aux_sym_number_token1, - ACTIONS(338), 1, - aux_sym_number_token2, - ACTIONS(340), 1, - anon_sym_DQUOTE, - STATE(196), 1, + STATE(165), 1, sym_ns_qualified_name, - STATE(240), 1, + STATE(216), 1, sym_array_ref, - STATE(256), 1, + STATE(233), 1, sym_field_ref, - STATE(369), 1, + STATE(234), 1, sym__binary_in, - STATE(2063), 1, + STATE(1956), 1, sym_namespace, - ACTIONS(326), 2, + ACTIONS(1713), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(330), 2, + ACTIONS(1717), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(375), 9, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_string_concat, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - STATE(493), 10, + STATE(671), 19, sym__getline_exp, sym_getline_input, sym_getline_file, sym__exp, + sym_ternary_exp, + sym_binary_exp, + sym_unary_exp, sym_update_exp, sym_assignment_exp, sym_piped_io_exp, + sym_string_concat, sym_regex, sym_regex_constant, + sym_grouping, + sym__primitive, + sym_number, + sym_string, + sym_func_call, sym_indirect_func_call, - [52363] = 19, - ACTIONS(298), 1, + [51970] = 18, + ACTIONS(302), 1, + anon_sym_DOLLAR, + ACTIONS(1597), 1, sym_identifier, - ACTIONS(304), 1, + ACTIONS(1599), 1, anon_sym_LPAREN, - ACTIONS(318), 1, + ACTIONS(1601), 1, anon_sym_getline, - ACTIONS(324), 1, + ACTIONS(1603), 1, anon_sym_SLASH, - ACTIONS(328), 1, + ACTIONS(1607), 1, anon_sym_BANG, - ACTIONS(332), 1, - anon_sym_DOLLAR, - ACTIONS(334), 1, + ACTIONS(1611), 1, anon_sym_AT, - ACTIONS(336), 1, + ACTIONS(1613), 1, aux_sym_number_token1, - ACTIONS(338), 1, + ACTIONS(1615), 1, aux_sym_number_token2, - ACTIONS(340), 1, + ACTIONS(1617), 1, anon_sym_DQUOTE, - STATE(196), 1, + STATE(165), 1, sym_ns_qualified_name, - STATE(240), 1, + STATE(216), 1, sym_array_ref, - STATE(256), 1, + STATE(233), 1, sym_field_ref, - STATE(369), 1, + STATE(234), 1, sym__binary_in, - STATE(2063), 1, + STATE(1956), 1, sym_namespace, - ACTIONS(326), 2, + ACTIONS(1605), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(330), 2, + ACTIONS(1609), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(375), 9, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_string_concat, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - STATE(455), 10, + STATE(1157), 19, sym__getline_exp, sym_getline_input, sym_getline_file, sym__exp, + sym_ternary_exp, + sym_binary_exp, + sym_unary_exp, sym_update_exp, sym_assignment_exp, sym_piped_io_exp, + sym_string_concat, sym_regex, sym_regex_constant, + sym_grouping, + sym__primitive, + sym_number, + sym_string, + sym_func_call, sym_indirect_func_call, - [52440] = 19, - ACTIONS(298), 1, - sym_identifier, - ACTIONS(304), 1, + [52045] = 19, + ACTIONS(11), 1, anon_sym_LPAREN, - ACTIONS(318), 1, - anon_sym_getline, - ACTIONS(324), 1, - anon_sym_SLASH, - ACTIONS(328), 1, + ACTIONS(21), 1, anon_sym_BANG, - ACTIONS(332), 1, + ACTIONS(25), 1, anon_sym_DOLLAR, - ACTIONS(334), 1, - anon_sym_AT, - ACTIONS(336), 1, + ACTIONS(29), 1, aux_sym_number_token1, - ACTIONS(338), 1, + ACTIONS(31), 1, aux_sym_number_token2, - ACTIONS(340), 1, + ACTIONS(33), 1, anon_sym_DQUOTE, - STATE(196), 1, - sym_ns_qualified_name, - STATE(240), 1, + ACTIONS(1289), 1, + anon_sym_getline, + ACTIONS(1291), 1, + anon_sym_SLASH, + ACTIONS(1301), 1, + anon_sym_AT, + ACTIONS(1809), 1, + sym_identifier, + STATE(301), 1, sym_array_ref, - STATE(256), 1, + STATE(346), 1, sym_field_ref, - STATE(369), 1, + STATE(407), 1, + sym_ns_qualified_name, + STATE(539), 1, sym__binary_in, - STATE(2063), 1, + STATE(2080), 1, sym_namespace, - ACTIONS(326), 2, + ACTIONS(19), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(330), 2, + ACTIONS(1297), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(375), 9, + STATE(537), 9, sym_ternary_exp, sym_binary_exp, sym_unary_exp, @@ -68262,7 +68308,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_string, sym_func_call, - STATE(498), 10, + STATE(1693), 10, sym__getline_exp, sym_getline_input, sym_getline_file, @@ -68273,44 +68319,44 @@ static const uint16_t ts_small_parse_table[] = { sym_regex, sym_regex_constant, sym_indirect_func_call, - [52517] = 19, - ACTIONS(298), 1, + [52122] = 19, + ACTIONS(1285), 1, sym_identifier, - ACTIONS(304), 1, + ACTIONS(1287), 1, anon_sym_LPAREN, - ACTIONS(318), 1, + ACTIONS(1289), 1, anon_sym_getline, - ACTIONS(324), 1, + ACTIONS(1291), 1, anon_sym_SLASH, - ACTIONS(328), 1, + ACTIONS(1295), 1, anon_sym_BANG, - ACTIONS(332), 1, + ACTIONS(1299), 1, anon_sym_DOLLAR, - ACTIONS(334), 1, + ACTIONS(1301), 1, anon_sym_AT, - ACTIONS(336), 1, + ACTIONS(1303), 1, aux_sym_number_token1, - ACTIONS(338), 1, + ACTIONS(1305), 1, aux_sym_number_token2, - ACTIONS(340), 1, + ACTIONS(1307), 1, anon_sym_DQUOTE, - STATE(196), 1, + STATE(1093), 1, sym_ns_qualified_name, - STATE(240), 1, + STATE(1142), 1, sym_array_ref, - STATE(256), 1, + STATE(1251), 1, sym_field_ref, - STATE(369), 1, + STATE(1510), 1, sym__binary_in, - STATE(2063), 1, + STATE(2080), 1, sym_namespace, - ACTIONS(326), 2, + ACTIONS(1293), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(330), 2, + ACTIONS(1297), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(375), 9, + STATE(1505), 9, sym_ternary_exp, sym_binary_exp, sym_unary_exp, @@ -68320,7 +68366,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_string, sym_func_call, - STATE(457), 10, + STATE(1619), 10, sym__getline_exp, sym_getline_input, sym_getline_file, @@ -68331,86 +68377,44 @@ static const uint16_t ts_small_parse_table[] = { sym_regex, sym_regex_constant, sym_indirect_func_call, - [52594] = 3, - ACTIONS(652), 1, - anon_sym_COLON_COLON, - ACTIONS(1017), 1, - anon_sym_LBRACK, - ACTIONS(1505), 36, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, + [52199] = 18, + ACTIONS(324), 1, + anon_sym_DOLLAR, + ACTIONS(1669), 1, + sym_identifier, + ACTIONS(1671), 1, anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, + ACTIONS(1673), 1, anon_sym_getline, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, + ACTIONS(1675), 1, anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(1679), 1, anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, + ACTIONS(1683), 1, anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [52639] = 18, - ACTIONS(123), 1, + ACTIONS(1685), 1, aux_sym_number_token1, - ACTIONS(272), 1, - anon_sym_LPAREN, - ACTIONS(278), 1, - anon_sym_BANG, - ACTIONS(282), 1, - anon_sym_DOLLAR, - ACTIONS(286), 1, + ACTIONS(1687), 1, aux_sym_number_token2, - ACTIONS(288), 1, + ACTIONS(1689), 1, anon_sym_DQUOTE, - ACTIONS(1697), 1, - sym_identifier, - ACTIONS(1699), 1, - anon_sym_getline, - ACTIONS(1701), 1, - anon_sym_SLASH, - ACTIONS(1705), 1, - anon_sym_AT, - STATE(598), 1, + STATE(164), 1, sym_ns_qualified_name, - STATE(622), 1, + STATE(176), 1, sym_array_ref, - STATE(684), 1, + STATE(192), 1, sym_field_ref, - STATE(1373), 1, + STATE(194), 1, sym__binary_in, - STATE(1955), 1, + STATE(2068), 1, sym_namespace, - ACTIONS(115), 2, + ACTIONS(1677), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1703), 2, + ACTIONS(1681), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1414), 19, + STATE(616), 19, sym__getline_exp, sym_getline_input, sym_getline_file, @@ -68430,102 +68434,87 @@ static const uint16_t ts_small_parse_table[] = { sym_string, sym_func_call, sym_indirect_func_call, - [52714] = 19, - ACTIONS(1269), 1, - sym_identifier, - ACTIONS(1271), 1, - anon_sym_LPAREN, - ACTIONS(1273), 1, - anon_sym_getline, - ACTIONS(1275), 1, + [52274] = 4, + ACTIONS(684), 1, + anon_sym_LBRACK, + ACTIONS(690), 1, + sym_concatenating_space, + ACTIONS(1515), 1, + anon_sym_LT, + ACTIONS(688), 35, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_while, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_CARET, + anon_sym_STAR_STAR, + anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1279), 1, - anon_sym_BANG, - ACTIONS(1283), 1, - anon_sym_DOLLAR, - ACTIONS(1285), 1, - anon_sym_AT, - ACTIONS(1287), 1, - aux_sym_number_token1, - ACTIONS(1289), 1, - aux_sym_number_token2, - ACTIONS(1291), 1, - anon_sym_DQUOTE, - STATE(1067), 1, - sym_ns_qualified_name, - STATE(1137), 1, - sym_array_ref, - STATE(1231), 1, - sym_field_ref, - STATE(1502), 1, - sym__binary_in, - STATE(2075), 1, - sym_namespace, - ACTIONS(1277), 2, + anon_sym_PERCENT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1281), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1500), 9, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_string_concat, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - STATE(1674), 10, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_regex, - sym_regex_constant, - sym_indirect_func_call, - [52791] = 19, - ACTIONS(127), 1, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + [52321] = 19, + ACTIONS(5), 1, sym_identifier, - ACTIONS(131), 1, + ACTIONS(11), 1, anon_sym_LPAREN, - ACTIONS(147), 1, + ACTIONS(15), 1, anon_sym_getline, - ACTIONS(153), 1, + ACTIONS(17), 1, anon_sym_SLASH, - ACTIONS(157), 1, + ACTIONS(21), 1, anon_sym_BANG, - ACTIONS(161), 1, + ACTIONS(25), 1, anon_sym_DOLLAR, - ACTIONS(163), 1, - anon_sym_AT, - ACTIONS(165), 1, + ACTIONS(29), 1, aux_sym_number_token1, - ACTIONS(167), 1, + ACTIONS(31), 1, aux_sym_number_token2, - ACTIONS(169), 1, + ACTIONS(33), 1, anon_sym_DQUOTE, - STATE(221), 1, + ACTIONS(1721), 1, + anon_sym_AT, + STATE(433), 1, sym_ns_qualified_name, - STATE(253), 1, + STATE(459), 1, sym_array_ref, - STATE(272), 1, + STATE(495), 1, sym_field_ref, - STATE(446), 1, + STATE(539), 1, sym__binary_in, - STATE(1955), 1, + STATE(2080), 1, sym_namespace, - ACTIONS(155), 2, + ACTIONS(19), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(159), 2, + ACTIONS(23), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(447), 9, + STATE(538), 9, sym_ternary_exp, sym_binary_exp, sym_unary_exp, @@ -68535,7 +68524,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_string, sym_func_call, - STATE(502), 10, + STATE(573), 10, sym__getline_exp, sym_getline_input, sym_getline_file, @@ -68546,160 +68535,158 @@ static const uint16_t ts_small_parse_table[] = { sym_regex, sym_regex_constant, sym_indirect_func_call, - [52868] = 19, - ACTIONS(127), 1, - sym_identifier, - ACTIONS(131), 1, + [52398] = 18, + ACTIONS(79), 1, + aux_sym_number_token1, + ACTIONS(328), 1, + aux_sym_number_token2, + ACTIONS(330), 1, + anon_sym_DQUOTE, + ACTIONS(342), 1, anon_sym_LPAREN, - ACTIONS(147), 1, - anon_sym_getline, - ACTIONS(153), 1, - anon_sym_SLASH, - ACTIONS(157), 1, + ACTIONS(364), 1, anon_sym_BANG, - ACTIONS(161), 1, + ACTIONS(368), 1, anon_sym_DOLLAR, - ACTIONS(163), 1, + ACTIONS(1775), 1, + sym_identifier, + ACTIONS(1777), 1, + anon_sym_getline, + ACTIONS(1779), 1, + anon_sym_SLASH, + ACTIONS(1783), 1, anon_sym_AT, - ACTIONS(165), 1, - aux_sym_number_token1, - ACTIONS(167), 1, - aux_sym_number_token2, - ACTIONS(169), 1, - anon_sym_DQUOTE, - STATE(221), 1, + STATE(670), 1, sym_ns_qualified_name, - STATE(253), 1, + STATE(742), 1, sym_array_ref, - STATE(272), 1, + STATE(946), 1, sym_field_ref, - STATE(446), 1, + STATE(1305), 1, sym__binary_in, - STATE(1955), 1, - sym_namespace, - ACTIONS(155), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(159), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(447), 9, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_string_concat, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - STATE(500), 10, + STATE(2068), 1, + sym_namespace, + ACTIONS(362), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1781), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1447), 19, sym__getline_exp, sym_getline_input, sym_getline_file, sym__exp, + sym_ternary_exp, + sym_binary_exp, + sym_unary_exp, sym_update_exp, sym_assignment_exp, sym_piped_io_exp, + sym_string_concat, sym_regex, sym_regex_constant, + sym_grouping, + sym__primitive, + sym_number, + sym_string, + sym_func_call, sym_indirect_func_call, - [52945] = 19, - ACTIONS(5), 1, - sym_identifier, - ACTIONS(11), 1, + [52473] = 18, + ACTIONS(169), 1, + aux_sym_number_token1, + ACTIONS(276), 1, anon_sym_LPAREN, - ACTIONS(15), 1, - anon_sym_getline, - ACTIONS(17), 1, - anon_sym_SLASH, - ACTIONS(21), 1, + ACTIONS(298), 1, anon_sym_BANG, - ACTIONS(25), 1, + ACTIONS(302), 1, anon_sym_DOLLAR, - ACTIONS(29), 1, - aux_sym_number_token1, - ACTIONS(31), 1, + ACTIONS(306), 1, aux_sym_number_token2, - ACTIONS(33), 1, + ACTIONS(308), 1, anon_sym_DQUOTE, + ACTIONS(1785), 1, + sym_identifier, ACTIONS(1787), 1, + anon_sym_getline, + ACTIONS(1789), 1, + anon_sym_SLASH, + ACTIONS(1793), 1, anon_sym_AT, - STATE(419), 1, + STATE(738), 1, sym_ns_qualified_name, - STATE(469), 1, + STATE(955), 1, sym_array_ref, - STATE(486), 1, + STATE(1159), 1, sym_field_ref, - STATE(556), 1, + STATE(1385), 1, sym__binary_in, - STATE(2075), 1, + STATE(1956), 1, sym_namespace, - ACTIONS(19), 2, + ACTIONS(296), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(23), 2, + ACTIONS(1791), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(559), 9, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_string_concat, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - STATE(570), 10, + STATE(1493), 19, sym__getline_exp, sym_getline_input, sym_getline_file, sym__exp, + sym_ternary_exp, + sym_binary_exp, + sym_unary_exp, sym_update_exp, sym_assignment_exp, sym_piped_io_exp, + sym_string_concat, sym_regex, sym_regex_constant, + sym_grouping, + sym__primitive, + sym_number, + sym_string, + sym_func_call, sym_indirect_func_call, - [53022] = 19, - ACTIONS(1269), 1, + [52548] = 19, + ACTIONS(530), 1, sym_identifier, - ACTIONS(1271), 1, + ACTIONS(534), 1, anon_sym_LPAREN, - ACTIONS(1273), 1, + ACTIONS(544), 1, anon_sym_getline, - ACTIONS(1275), 1, + ACTIONS(550), 1, anon_sym_SLASH, - ACTIONS(1279), 1, + ACTIONS(554), 1, anon_sym_BANG, - ACTIONS(1283), 1, + ACTIONS(558), 1, anon_sym_DOLLAR, - ACTIONS(1285), 1, + ACTIONS(560), 1, anon_sym_AT, - ACTIONS(1287), 1, + ACTIONS(562), 1, aux_sym_number_token1, - ACTIONS(1289), 1, + ACTIONS(564), 1, aux_sym_number_token2, - ACTIONS(1291), 1, + ACTIONS(566), 1, anon_sym_DQUOTE, - STATE(1067), 1, + STATE(200), 1, sym_ns_qualified_name, - STATE(1137), 1, + STATE(219), 1, sym_array_ref, - STATE(1231), 1, + STATE(258), 1, sym_field_ref, - STATE(1502), 1, + STATE(373), 1, sym__binary_in, - STATE(2075), 1, + STATE(2068), 1, sym_namespace, - ACTIONS(1277), 2, + ACTIONS(552), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1281), 2, + ACTIONS(556), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1500), 9, + STATE(359), 9, sym_ternary_exp, sym_binary_exp, sym_unary_exp, @@ -68709,7 +68696,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_string, sym_func_call, - STATE(1553), 10, + STATE(432), 10, sym__getline_exp, sym_getline_input, sym_getline_file, @@ -68720,44 +68707,44 @@ static const uint16_t ts_small_parse_table[] = { sym_regex, sym_regex_constant, sym_indirect_func_call, - [53099] = 18, - ACTIONS(131), 1, + [52625] = 18, + ACTIONS(169), 1, + aux_sym_number_token1, + ACTIONS(276), 1, anon_sym_LPAREN, - ACTIONS(157), 1, + ACTIONS(298), 1, anon_sym_BANG, - ACTIONS(161), 1, + ACTIONS(302), 1, anon_sym_DOLLAR, - ACTIONS(165), 1, - aux_sym_number_token1, - ACTIONS(167), 1, + ACTIONS(306), 1, aux_sym_number_token2, - ACTIONS(169), 1, + ACTIONS(308), 1, anon_sym_DQUOTE, - ACTIONS(1721), 1, + ACTIONS(1785), 1, sym_identifier, - ACTIONS(1723), 1, + ACTIONS(1787), 1, anon_sym_getline, - ACTIONS(1725), 1, + ACTIONS(1789), 1, anon_sym_SLASH, - ACTIONS(1729), 1, + ACTIONS(1793), 1, anon_sym_AT, - STATE(250), 1, + STATE(738), 1, sym_ns_qualified_name, - STATE(268), 1, + STATE(955), 1, sym_array_ref, - STATE(276), 1, + STATE(1159), 1, sym_field_ref, - STATE(446), 1, + STATE(1385), 1, sym__binary_in, - STATE(1955), 1, + STATE(1956), 1, sym_namespace, - ACTIONS(155), 2, + ACTIONS(296), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1727), 2, + ACTIONS(1791), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(439), 19, + STATE(1492), 19, sym__getline_exp, sym_getline_input, sym_getline_file, @@ -68777,44 +68764,44 @@ static const uint16_t ts_small_parse_table[] = { sym_string, sym_func_call, sym_indirect_func_call, - [53174] = 19, - ACTIONS(79), 1, - aux_sym_number_token1, - ACTIONS(486), 1, - aux_sym_number_token2, - ACTIONS(488), 1, - anon_sym_DQUOTE, - ACTIONS(552), 1, + [52700] = 19, + ACTIONS(530), 1, + sym_identifier, + ACTIONS(534), 1, anon_sym_LPAREN, - ACTIONS(556), 1, - anon_sym_BANG, - ACTIONS(560), 1, - anon_sym_DOLLAR, - ACTIONS(1273), 1, + ACTIONS(544), 1, anon_sym_getline, - ACTIONS(1275), 1, + ACTIONS(550), 1, anon_sym_SLASH, - ACTIONS(1285), 1, + ACTIONS(554), 1, + anon_sym_BANG, + ACTIONS(558), 1, + anon_sym_DOLLAR, + ACTIONS(560), 1, anon_sym_AT, - ACTIONS(1775), 1, - sym_identifier, - STATE(179), 1, + ACTIONS(562), 1, + aux_sym_number_token1, + ACTIONS(564), 1, + aux_sym_number_token2, + ACTIONS(566), 1, + anon_sym_DQUOTE, + STATE(200), 1, + sym_ns_qualified_name, + STATE(219), 1, sym_array_ref, - STATE(189), 1, + STATE(258), 1, sym_field_ref, - STATE(587), 1, - sym_ns_qualified_name, - STATE(1309), 1, + STATE(373), 1, sym__binary_in, - STATE(2063), 1, + STATE(2068), 1, sym_namespace, - ACTIONS(71), 2, + ACTIONS(552), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1281), 2, + ACTIONS(556), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1313), 9, + STATE(359), 9, sym_ternary_exp, sym_binary_exp, sym_unary_exp, @@ -68824,7 +68811,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_string, sym_func_call, - STATE(1689), 10, + STATE(429), 10, sym__getline_exp, sym_getline_input, sym_getline_file, @@ -68835,44 +68822,44 @@ static const uint16_t ts_small_parse_table[] = { sym_regex, sym_regex_constant, sym_indirect_func_call, - [53251] = 19, - ACTIONS(1269), 1, + [52777] = 19, + ACTIONS(5), 1, sym_identifier, - ACTIONS(1271), 1, + ACTIONS(11), 1, anon_sym_LPAREN, - ACTIONS(1273), 1, + ACTIONS(15), 1, anon_sym_getline, - ACTIONS(1275), 1, + ACTIONS(17), 1, anon_sym_SLASH, - ACTIONS(1279), 1, + ACTIONS(21), 1, anon_sym_BANG, - ACTIONS(1283), 1, + ACTIONS(25), 1, anon_sym_DOLLAR, - ACTIONS(1285), 1, - anon_sym_AT, - ACTIONS(1287), 1, + ACTIONS(29), 1, aux_sym_number_token1, - ACTIONS(1289), 1, + ACTIONS(31), 1, aux_sym_number_token2, - ACTIONS(1291), 1, + ACTIONS(33), 1, anon_sym_DQUOTE, - STATE(1067), 1, + ACTIONS(1721), 1, + anon_sym_AT, + STATE(433), 1, sym_ns_qualified_name, - STATE(1137), 1, + STATE(459), 1, sym_array_ref, - STATE(1231), 1, + STATE(495), 1, sym_field_ref, - STATE(1502), 1, + STATE(539), 1, sym__binary_in, - STATE(2075), 1, + STATE(2080), 1, sym_namespace, - ACTIONS(1277), 2, + ACTIONS(19), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1281), 2, + ACTIONS(23), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1500), 9, + STATE(538), 9, sym_ternary_exp, sym_binary_exp, sym_unary_exp, @@ -68882,7 +68869,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_string, sym_func_call, - STATE(1630), 10, + STATE(584), 10, sym__getline_exp, sym_getline_input, sym_getline_file, @@ -68893,88 +68880,44 @@ static const uint16_t ts_small_parse_table[] = { sym_regex, sym_regex_constant, sym_indirect_func_call, - [53328] = 5, - ACTIONS(882), 2, - sym_concatenating_space, - sym__if_else_separator, - ACTIONS(1663), 2, - anon_sym_CARET, - anon_sym_STAR_STAR, - ACTIONS(1667), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1665), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(880), 29, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_while, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - [53377] = 18, - ACTIONS(123), 1, - aux_sym_number_token1, - ACTIONS(272), 1, - anon_sym_LPAREN, - ACTIONS(278), 1, - anon_sym_BANG, - ACTIONS(282), 1, + [52854] = 18, + ACTIONS(302), 1, anon_sym_DOLLAR, - ACTIONS(286), 1, - aux_sym_number_token2, - ACTIONS(288), 1, - anon_sym_DQUOTE, - ACTIONS(1697), 1, + ACTIONS(1597), 1, sym_identifier, - ACTIONS(1699), 1, + ACTIONS(1599), 1, + anon_sym_LPAREN, + ACTIONS(1601), 1, anon_sym_getline, - ACTIONS(1701), 1, + ACTIONS(1603), 1, anon_sym_SLASH, - ACTIONS(1705), 1, + ACTIONS(1607), 1, + anon_sym_BANG, + ACTIONS(1611), 1, anon_sym_AT, - STATE(598), 1, + ACTIONS(1613), 1, + aux_sym_number_token1, + ACTIONS(1615), 1, + aux_sym_number_token2, + ACTIONS(1617), 1, + anon_sym_DQUOTE, + STATE(165), 1, sym_ns_qualified_name, - STATE(622), 1, + STATE(216), 1, sym_array_ref, - STATE(684), 1, + STATE(233), 1, sym_field_ref, - STATE(1373), 1, + STATE(234), 1, sym__binary_in, - STATE(1955), 1, + STATE(1956), 1, sym_namespace, - ACTIONS(115), 2, + ACTIONS(1605), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1703), 2, + ACTIONS(1609), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1422), 19, + STATE(1158), 19, sym__getline_exp, sym_getline_input, sym_getline_file, @@ -68994,87 +68937,44 @@ static const uint16_t ts_small_parse_table[] = { sym_string, sym_func_call, sym_indirect_func_call, - [53452] = 4, - ACTIONS(658), 2, - sym_concatenating_space, - sym__if_else_separator, - ACTIONS(1237), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1337), 7, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - ACTIONS(644), 27, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_while, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [53499] = 18, - ACTIONS(304), 1, + [52929] = 18, + ACTIONS(11), 1, anon_sym_LPAREN, - ACTIONS(328), 1, + ACTIONS(21), 1, anon_sym_BANG, - ACTIONS(332), 1, + ACTIONS(25), 1, anon_sym_DOLLAR, - ACTIONS(336), 1, + ACTIONS(29), 1, aux_sym_number_token1, - ACTIONS(338), 1, + ACTIONS(31), 1, aux_sym_number_token2, - ACTIONS(340), 1, + ACTIONS(33), 1, anon_sym_DQUOTE, - ACTIONS(1579), 1, + ACTIONS(1587), 1, sym_identifier, - ACTIONS(1581), 1, + ACTIONS(1589), 1, anon_sym_getline, - ACTIONS(1583), 1, + ACTIONS(1591), 1, anon_sym_SLASH, - ACTIONS(1587), 1, + ACTIONS(1595), 1, anon_sym_AT, - STATE(203), 1, + STATE(425), 1, sym_ns_qualified_name, - STATE(225), 1, + STATE(467), 1, sym_array_ref, - STATE(262), 1, + STATE(490), 1, sym_field_ref, - STATE(369), 1, + STATE(539), 1, sym__binary_in, - STATE(2063), 1, + STATE(2080), 1, sym_namespace, - ACTIONS(326), 2, + ACTIONS(19), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1585), 2, + ACTIONS(1593), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(367), 19, + STATE(532), 19, sym__getline_exp, sym_getline_input, sym_getline_file, @@ -69094,7 +68994,7 @@ static const uint16_t ts_small_parse_table[] = { sym_string, sym_func_call, sym_indirect_func_call, - [53574] = 18, + [53004] = 18, ACTIONS(11), 1, anon_sym_LPAREN, ACTIONS(21), 1, @@ -69107,31 +69007,31 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, ACTIONS(33), 1, anon_sym_DQUOTE, - ACTIONS(1599), 1, + ACTIONS(1587), 1, sym_identifier, - ACTIONS(1601), 1, + ACTIONS(1589), 1, anon_sym_getline, - ACTIONS(1603), 1, + ACTIONS(1591), 1, anon_sym_SLASH, - ACTIONS(1607), 1, + ACTIONS(1595), 1, anon_sym_AT, - STATE(445), 1, + STATE(425), 1, sym_ns_qualified_name, - STATE(474), 1, + STATE(467), 1, sym_array_ref, - STATE(480), 1, + STATE(490), 1, sym_field_ref, - STATE(556), 1, + STATE(539), 1, sym__binary_in, - STATE(2075), 1, + STATE(2080), 1, sym_namespace, ACTIONS(19), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1605), 2, + ACTIONS(1593), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(541), 19, + STATE(531), 19, sym__getline_exp, sym_getline_input, sym_getline_file, @@ -69151,88 +69051,44 @@ static const uint16_t ts_small_parse_table[] = { sym_string, sym_func_call, sym_indirect_func_call, - [53649] = 5, - ACTIONS(658), 1, - sym__if_else_separator, - ACTIONS(1335), 1, - sym_concatenating_space, - ACTIONS(1231), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1333), 7, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - ACTIONS(644), 27, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_while, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [53698] = 19, - ACTIONS(123), 1, - aux_sym_number_token1, - ACTIONS(272), 1, + [53079] = 19, + ACTIONS(1285), 1, + sym_identifier, + ACTIONS(1287), 1, anon_sym_LPAREN, - ACTIONS(278), 1, + ACTIONS(1289), 1, + anon_sym_getline, + ACTIONS(1291), 1, + anon_sym_SLASH, + ACTIONS(1295), 1, anon_sym_BANG, - ACTIONS(282), 1, + ACTIONS(1299), 1, anon_sym_DOLLAR, - ACTIONS(286), 1, + ACTIONS(1301), 1, + anon_sym_AT, + ACTIONS(1303), 1, + aux_sym_number_token1, + ACTIONS(1305), 1, aux_sym_number_token2, - ACTIONS(288), 1, + ACTIONS(1307), 1, anon_sym_DQUOTE, - ACTIONS(1273), 1, - anon_sym_getline, - ACTIONS(1275), 1, - anon_sym_SLASH, - ACTIONS(1285), 1, - anon_sym_AT, - ACTIONS(1769), 1, - sym_identifier, - STATE(186), 1, + STATE(1093), 1, + sym_ns_qualified_name, + STATE(1142), 1, sym_array_ref, - STATE(220), 1, + STATE(1251), 1, sym_field_ref, - STATE(590), 1, - sym_ns_qualified_name, - STATE(1373), 1, + STATE(1510), 1, sym__binary_in, - STATE(1955), 1, + STATE(2080), 1, sym_namespace, - ACTIONS(115), 2, + ACTIONS(1293), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1281), 2, + ACTIONS(1297), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1378), 9, + STATE(1505), 9, sym_ternary_exp, sym_binary_exp, sym_unary_exp, @@ -69242,7 +69098,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_string, sym_func_call, - STATE(1683), 10, + STATE(1642), 10, sym__getline_exp, sym_getline_input, sym_getline_file, @@ -69253,57 +69109,72 @@ static const uint16_t ts_small_parse_table[] = { sym_regex, sym_regex_constant, sym_indirect_func_call, - [53775] = 3, - ACTIONS(836), 1, - sym_concatenating_space, - ACTIONS(874), 1, - sym_regex_flags, - ACTIONS(832), 36, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_while, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_STAR, + [53156] = 18, + ACTIONS(324), 1, + anon_sym_DOLLAR, + ACTIONS(1669), 1, + sym_identifier, + ACTIONS(1671), 1, + anon_sym_LPAREN, + ACTIONS(1673), 1, + anon_sym_getline, + ACTIONS(1675), 1, anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(1679), 1, + anon_sym_BANG, + ACTIONS(1683), 1, + anon_sym_AT, + ACTIONS(1685), 1, + aux_sym_number_token1, + ACTIONS(1687), 1, + aux_sym_number_token2, + ACTIONS(1689), 1, + anon_sym_DQUOTE, + STATE(164), 1, + sym_ns_qualified_name, + STATE(176), 1, + sym_array_ref, + STATE(192), 1, + sym_field_ref, + STATE(194), 1, + sym__binary_in, + STATE(2068), 1, + sym_namespace, + ACTIONS(1677), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(1681), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - [53820] = 5, - ACTIONS(658), 1, - sym_concatenating_space, - ACTIONS(688), 1, + STATE(613), 19, + sym__getline_exp, + sym_getline_input, + sym_getline_file, + sym__exp, + sym_ternary_exp, + sym_binary_exp, + sym_unary_exp, + sym_update_exp, + sym_assignment_exp, + sym_piped_io_exp, + sym_string_concat, + sym_regex, + sym_regex_constant, + sym_grouping, + sym__primitive, + sym_number, + sym_string, + sym_func_call, + sym_indirect_func_call, + [53231] = 5, + ACTIONS(684), 1, anon_sym_LBRACK, - ACTIONS(1255), 2, + ACTIONS(1385), 1, + sym_concatenating_space, + ACTIONS(1253), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1359), 7, + ACTIONS(1383), 7, anon_sym_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -69311,7 +69182,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_CARET_EQ, - ACTIONS(644), 27, + ACTIONS(642), 27, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -69326,100 +69197,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_CARET, anon_sym_STAR_STAR, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [53869] = 5, - ACTIONS(652), 1, - anon_sym_COLON_COLON, - ACTIONS(908), 1, - anon_sym_LBRACK, - ACTIONS(1793), 1, - anon_sym_LT, - ACTIONS(678), 10, - anon_sym_COLON, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ, - ACTIONS(680), 25, - sym_concatenating_space, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_in, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_RBRACK, - [53918] = 7, - ACTIONS(908), 1, - anon_sym_LBRACK, - ACTIONS(1443), 1, - anon_sym_LPAREN2, - ACTIONS(1541), 1, - anon_sym_EQ, - ACTIONS(1539), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1543), 6, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - ACTIONS(644), 9, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(658), 18, - sym_concatenating_space, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_in, - anon_sym_COLON, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_STAR_STAR, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, @@ -69428,45 +69210,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_RBRACK, - [53971] = 19, - ACTIONS(1269), 1, + [53280] = 19, + ACTIONS(1285), 1, sym_identifier, - ACTIONS(1271), 1, + ACTIONS(1287), 1, anon_sym_LPAREN, - ACTIONS(1273), 1, + ACTIONS(1289), 1, anon_sym_getline, - ACTIONS(1275), 1, + ACTIONS(1291), 1, anon_sym_SLASH, - ACTIONS(1279), 1, + ACTIONS(1295), 1, anon_sym_BANG, - ACTIONS(1283), 1, + ACTIONS(1299), 1, anon_sym_DOLLAR, - ACTIONS(1285), 1, + ACTIONS(1301), 1, anon_sym_AT, - ACTIONS(1287), 1, + ACTIONS(1303), 1, aux_sym_number_token1, - ACTIONS(1289), 1, + ACTIONS(1305), 1, aux_sym_number_token2, - ACTIONS(1291), 1, + ACTIONS(1307), 1, anon_sym_DQUOTE, - STATE(1067), 1, + STATE(1093), 1, sym_ns_qualified_name, - STATE(1137), 1, + STATE(1142), 1, sym_array_ref, - STATE(1231), 1, + STATE(1251), 1, sym_field_ref, - STATE(1502), 1, + STATE(1510), 1, sym__binary_in, - STATE(2075), 1, + STATE(2080), 1, sym_namespace, - ACTIONS(1277), 2, + ACTIONS(1293), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1281), 2, + ACTIONS(1297), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1500), 9, + STATE(1505), 9, sym_ternary_exp, sym_binary_exp, sym_unary_exp, @@ -69476,7 +69257,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_string, sym_func_call, - STATE(1591), 10, + STATE(1677), 10, sym__getline_exp, sym_getline_input, sym_getline_file, @@ -69487,218 +69268,272 @@ static const uint16_t ts_small_parse_table[] = { sym_regex, sym_regex_constant, sym_indirect_func_call, - [54048] = 19, - ACTIONS(1269), 1, - sym_identifier, - ACTIONS(1271), 1, + [53357] = 18, + ACTIONS(11), 1, anon_sym_LPAREN, - ACTIONS(1273), 1, - anon_sym_getline, - ACTIONS(1275), 1, - anon_sym_SLASH, - ACTIONS(1279), 1, + ACTIONS(21), 1, anon_sym_BANG, - ACTIONS(1283), 1, + ACTIONS(25), 1, anon_sym_DOLLAR, - ACTIONS(1285), 1, - anon_sym_AT, - ACTIONS(1287), 1, + ACTIONS(29), 1, aux_sym_number_token1, - ACTIONS(1289), 1, + ACTIONS(31), 1, aux_sym_number_token2, - ACTIONS(1291), 1, + ACTIONS(33), 1, anon_sym_DQUOTE, - STATE(1067), 1, + ACTIONS(1587), 1, + sym_identifier, + ACTIONS(1589), 1, + anon_sym_getline, + ACTIONS(1591), 1, + anon_sym_SLASH, + ACTIONS(1595), 1, + anon_sym_AT, + STATE(425), 1, sym_ns_qualified_name, - STATE(1137), 1, + STATE(467), 1, sym_array_ref, - STATE(1231), 1, + STATE(490), 1, sym_field_ref, - STATE(1502), 1, + STATE(539), 1, sym__binary_in, - STATE(2075), 1, + STATE(2080), 1, sym_namespace, - ACTIONS(1277), 2, + ACTIONS(19), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1281), 2, + ACTIONS(1593), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1500), 9, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_string_concat, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - STATE(1615), 10, + STATE(543), 19, sym__getline_exp, sym_getline_input, sym_getline_file, sym__exp, + sym_ternary_exp, + sym_binary_exp, + sym_unary_exp, sym_update_exp, sym_assignment_exp, sym_piped_io_exp, + sym_string_concat, sym_regex, sym_regex_constant, + sym_grouping, + sym__primitive, + sym_number, + sym_string, + sym_func_call, sym_indirect_func_call, - [54125] = 19, - ACTIONS(1269), 1, - sym_identifier, - ACTIONS(1271), 1, + [53432] = 18, + ACTIONS(11), 1, anon_sym_LPAREN, - ACTIONS(1273), 1, - anon_sym_getline, - ACTIONS(1275), 1, - anon_sym_SLASH, - ACTIONS(1279), 1, + ACTIONS(21), 1, anon_sym_BANG, - ACTIONS(1283), 1, + ACTIONS(25), 1, anon_sym_DOLLAR, - ACTIONS(1285), 1, - anon_sym_AT, - ACTIONS(1287), 1, + ACTIONS(29), 1, aux_sym_number_token1, - ACTIONS(1289), 1, + ACTIONS(31), 1, aux_sym_number_token2, - ACTIONS(1291), 1, + ACTIONS(33), 1, anon_sym_DQUOTE, - STATE(1067), 1, + ACTIONS(1587), 1, + sym_identifier, + ACTIONS(1589), 1, + anon_sym_getline, + ACTIONS(1591), 1, + anon_sym_SLASH, + ACTIONS(1595), 1, + anon_sym_AT, + STATE(425), 1, sym_ns_qualified_name, - STATE(1137), 1, + STATE(467), 1, sym_array_ref, - STATE(1231), 1, + STATE(490), 1, sym_field_ref, - STATE(1502), 1, + STATE(539), 1, sym__binary_in, - STATE(2075), 1, + STATE(2080), 1, sym_namespace, - ACTIONS(1277), 2, + ACTIONS(19), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1281), 2, + ACTIONS(1593), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1500), 9, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_string_concat, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - STATE(1616), 10, + STATE(548), 19, sym__getline_exp, sym_getline_input, sym_getline_file, sym__exp, + sym_ternary_exp, + sym_binary_exp, + sym_unary_exp, sym_update_exp, sym_assignment_exp, sym_piped_io_exp, + sym_string_concat, sym_regex, sym_regex_constant, + sym_grouping, + sym__primitive, + sym_number, + sym_string, + sym_func_call, sym_indirect_func_call, - [54202] = 19, - ACTIONS(1269), 1, - sym_identifier, - ACTIONS(1271), 1, + [53507] = 18, + ACTIONS(11), 1, anon_sym_LPAREN, - ACTIONS(1273), 1, - anon_sym_getline, - ACTIONS(1275), 1, - anon_sym_SLASH, - ACTIONS(1279), 1, + ACTIONS(21), 1, anon_sym_BANG, - ACTIONS(1283), 1, + ACTIONS(25), 1, anon_sym_DOLLAR, - ACTIONS(1285), 1, - anon_sym_AT, - ACTIONS(1287), 1, + ACTIONS(29), 1, aux_sym_number_token1, - ACTIONS(1289), 1, + ACTIONS(31), 1, aux_sym_number_token2, - ACTIONS(1291), 1, + ACTIONS(33), 1, anon_sym_DQUOTE, - STATE(1067), 1, + ACTIONS(1587), 1, + sym_identifier, + ACTIONS(1589), 1, + anon_sym_getline, + ACTIONS(1591), 1, + anon_sym_SLASH, + ACTIONS(1595), 1, + anon_sym_AT, + STATE(425), 1, sym_ns_qualified_name, - STATE(1137), 1, + STATE(467), 1, sym_array_ref, - STATE(1231), 1, + STATE(490), 1, sym_field_ref, - STATE(1502), 1, + STATE(539), 1, sym__binary_in, - STATE(2075), 1, + STATE(2080), 1, sym_namespace, - ACTIONS(1277), 2, + ACTIONS(19), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1281), 2, + ACTIONS(1593), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1500), 9, + STATE(527), 19, + sym__getline_exp, + sym_getline_input, + sym_getline_file, + sym__exp, sym_ternary_exp, sym_binary_exp, sym_unary_exp, + sym_update_exp, + sym_assignment_exp, + sym_piped_io_exp, sym_string_concat, + sym_regex, + sym_regex_constant, sym_grouping, sym__primitive, sym_number, sym_string, sym_func_call, - STATE(1667), 10, + sym_indirect_func_call, + [53582] = 18, + ACTIONS(169), 1, + aux_sym_number_token1, + ACTIONS(276), 1, + anon_sym_LPAREN, + ACTIONS(298), 1, + anon_sym_BANG, + ACTIONS(302), 1, + anon_sym_DOLLAR, + ACTIONS(306), 1, + aux_sym_number_token2, + ACTIONS(308), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + sym_identifier, + ACTIONS(1787), 1, + anon_sym_getline, + ACTIONS(1789), 1, + anon_sym_SLASH, + ACTIONS(1793), 1, + anon_sym_AT, + STATE(738), 1, + sym_ns_qualified_name, + STATE(955), 1, + sym_array_ref, + STATE(1159), 1, + sym_field_ref, + STATE(1385), 1, + sym__binary_in, + STATE(1956), 1, + sym_namespace, + ACTIONS(296), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1791), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1361), 19, sym__getline_exp, sym_getline_input, sym_getline_file, sym__exp, + sym_ternary_exp, + sym_binary_exp, + sym_unary_exp, sym_update_exp, sym_assignment_exp, sym_piped_io_exp, + sym_string_concat, sym_regex, sym_regex_constant, + sym_grouping, + sym__primitive, + sym_number, + sym_string, + sym_func_call, sym_indirect_func_call, - [54279] = 18, - ACTIONS(304), 1, + [53657] = 18, + ACTIONS(11), 1, anon_sym_LPAREN, - ACTIONS(328), 1, + ACTIONS(21), 1, anon_sym_BANG, - ACTIONS(332), 1, + ACTIONS(25), 1, anon_sym_DOLLAR, - ACTIONS(336), 1, + ACTIONS(29), 1, aux_sym_number_token1, - ACTIONS(338), 1, + ACTIONS(31), 1, aux_sym_number_token2, - ACTIONS(340), 1, + ACTIONS(33), 1, anon_sym_DQUOTE, - ACTIONS(1579), 1, + ACTIONS(1587), 1, sym_identifier, - ACTIONS(1581), 1, + ACTIONS(1589), 1, anon_sym_getline, - ACTIONS(1583), 1, + ACTIONS(1591), 1, anon_sym_SLASH, - ACTIONS(1587), 1, + ACTIONS(1595), 1, anon_sym_AT, - STATE(203), 1, + STATE(425), 1, sym_ns_qualified_name, - STATE(225), 1, + STATE(467), 1, sym_array_ref, - STATE(262), 1, + STATE(490), 1, sym_field_ref, - STATE(369), 1, + STATE(539), 1, sym__binary_in, - STATE(2063), 1, + STATE(2080), 1, sym_namespace, - ACTIONS(326), 2, + ACTIONS(19), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1585), 2, + ACTIONS(1593), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(374), 19, + STATE(546), 19, sym__getline_exp, sym_getline_input, sym_getline_file, @@ -69718,44 +69553,44 @@ static const uint16_t ts_small_parse_table[] = { sym_string, sym_func_call, sym_indirect_func_call, - [54354] = 18, - ACTIONS(11), 1, + [53732] = 18, + ACTIONS(534), 1, anon_sym_LPAREN, - ACTIONS(21), 1, + ACTIONS(554), 1, anon_sym_BANG, - ACTIONS(25), 1, + ACTIONS(558), 1, anon_sym_DOLLAR, - ACTIONS(29), 1, + ACTIONS(562), 1, aux_sym_number_token1, - ACTIONS(31), 1, + ACTIONS(564), 1, aux_sym_number_token2, - ACTIONS(33), 1, + ACTIONS(566), 1, anon_sym_DQUOTE, - ACTIONS(1599), 1, + ACTIONS(1567), 1, sym_identifier, - ACTIONS(1601), 1, + ACTIONS(1569), 1, anon_sym_getline, - ACTIONS(1603), 1, + ACTIONS(1571), 1, anon_sym_SLASH, - ACTIONS(1607), 1, + ACTIONS(1575), 1, anon_sym_AT, - STATE(445), 1, + STATE(191), 1, sym_ns_qualified_name, - STATE(474), 1, + STATE(238), 1, sym_array_ref, - STATE(480), 1, + STATE(264), 1, sym_field_ref, - STATE(556), 1, + STATE(373), 1, sym__binary_in, - STATE(2075), 1, + STATE(2068), 1, sym_namespace, - ACTIONS(19), 2, + ACTIONS(552), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1605), 2, + ACTIONS(1573), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(552), 19, + STATE(392), 19, sym__getline_exp, sym_getline_input, sym_getline_file, @@ -69775,44 +69610,44 @@ static const uint16_t ts_small_parse_table[] = { sym_string, sym_func_call, sym_indirect_func_call, - [54429] = 18, - ACTIONS(304), 1, + [53807] = 18, + ACTIONS(11), 1, anon_sym_LPAREN, - ACTIONS(328), 1, + ACTIONS(21), 1, anon_sym_BANG, - ACTIONS(332), 1, + ACTIONS(25), 1, anon_sym_DOLLAR, - ACTIONS(336), 1, + ACTIONS(29), 1, aux_sym_number_token1, - ACTIONS(338), 1, + ACTIONS(31), 1, aux_sym_number_token2, - ACTIONS(340), 1, + ACTIONS(33), 1, anon_sym_DQUOTE, - ACTIONS(1579), 1, + ACTIONS(1587), 1, sym_identifier, - ACTIONS(1581), 1, + ACTIONS(1589), 1, anon_sym_getline, - ACTIONS(1583), 1, + ACTIONS(1591), 1, anon_sym_SLASH, - ACTIONS(1587), 1, + ACTIONS(1595), 1, anon_sym_AT, - STATE(203), 1, + STATE(425), 1, sym_ns_qualified_name, - STATE(225), 1, + STATE(467), 1, sym_array_ref, - STATE(262), 1, + STATE(490), 1, sym_field_ref, - STATE(369), 1, + STATE(539), 1, sym__binary_in, - STATE(2063), 1, + STATE(2080), 1, sym_namespace, - ACTIONS(326), 2, + ACTIONS(19), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1585), 2, + ACTIONS(1593), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(382), 19, + STATE(526), 19, sym__getline_exp, sym_getline_input, sym_getline_file, @@ -69832,44 +69667,44 @@ static const uint16_t ts_small_parse_table[] = { sym_string, sym_func_call, sym_indirect_func_call, - [54504] = 19, - ACTIONS(1269), 1, + [53882] = 19, + ACTIONS(1285), 1, sym_identifier, - ACTIONS(1271), 1, + ACTIONS(1287), 1, anon_sym_LPAREN, - ACTIONS(1273), 1, + ACTIONS(1289), 1, anon_sym_getline, - ACTIONS(1275), 1, + ACTIONS(1291), 1, anon_sym_SLASH, - ACTIONS(1279), 1, + ACTIONS(1295), 1, anon_sym_BANG, - ACTIONS(1283), 1, + ACTIONS(1299), 1, anon_sym_DOLLAR, - ACTIONS(1285), 1, + ACTIONS(1301), 1, anon_sym_AT, - ACTIONS(1287), 1, + ACTIONS(1303), 1, aux_sym_number_token1, - ACTIONS(1289), 1, + ACTIONS(1305), 1, aux_sym_number_token2, - ACTIONS(1291), 1, + ACTIONS(1307), 1, anon_sym_DQUOTE, - STATE(1067), 1, + STATE(1093), 1, sym_ns_qualified_name, - STATE(1137), 1, + STATE(1142), 1, sym_array_ref, - STATE(1231), 1, + STATE(1251), 1, sym_field_ref, - STATE(1502), 1, + STATE(1510), 1, sym__binary_in, - STATE(2075), 1, + STATE(2080), 1, sym_namespace, - ACTIONS(1277), 2, + ACTIONS(1293), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1281), 2, + ACTIONS(1297), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1500), 9, + STATE(1505), 9, sym_ternary_exp, sym_binary_exp, sym_unary_exp, @@ -69879,7 +69714,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_string, sym_func_call, - STATE(1636), 10, + STATE(1641), 10, sym__getline_exp, sym_getline_input, sym_getline_file, @@ -69890,12 +69725,69 @@ static const uint16_t ts_small_parse_table[] = { sym_regex, sym_regex_constant, sym_indirect_func_call, - [54581] = 3, - ACTIONS(830), 1, + [53959] = 18, + ACTIONS(169), 1, + aux_sym_number_token1, + ACTIONS(306), 1, + aux_sym_number_token2, + ACTIONS(308), 1, + anon_sym_DQUOTE, + ACTIONS(434), 1, + anon_sym_LPAREN, + ACTIONS(440), 1, + anon_sym_BANG, + ACTIONS(444), 1, + anon_sym_DOLLAR, + ACTIONS(1557), 1, + sym_identifier, + ACTIONS(1559), 1, + anon_sym_getline, + ACTIONS(1561), 1, + anon_sym_SLASH, + ACTIONS(1565), 1, + anon_sym_AT, + STATE(606), 1, + sym_ns_qualified_name, + STATE(611), 1, + sym_array_ref, + STATE(686), 1, + sym_field_ref, + STATE(1385), 1, + sym__binary_in, + STATE(1956), 1, + sym_namespace, + ACTIONS(161), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1563), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1361), 19, + sym__getline_exp, + sym_getline_input, + sym_getline_file, + sym__exp, + sym_ternary_exp, + sym_binary_exp, + sym_unary_exp, + sym_update_exp, + sym_assignment_exp, + sym_piped_io_exp, + sym_string_concat, + sym_regex, + sym_regex_constant, + sym_grouping, + sym__primitive, + sym_number, + sym_string, + sym_func_call, + sym_indirect_func_call, + [54034] = 3, + ACTIONS(836), 1, sym_concatenating_space, - ACTIONS(872), 1, + ACTIONS(846), 1, sym_regex_flags, - ACTIONS(826), 36, + ACTIONS(832), 36, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -69932,508 +69824,772 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_CARET_EQ, - [54626] = 19, - ACTIONS(1269), 1, + [54079] = 19, + ACTIONS(79), 1, + aux_sym_number_token1, + ACTIONS(312), 1, + anon_sym_LPAREN, + ACTIONS(320), 1, + anon_sym_BANG, + ACTIONS(324), 1, + anon_sym_DOLLAR, + ACTIONS(328), 1, + aux_sym_number_token2, + ACTIONS(330), 1, + anon_sym_DQUOTE, + ACTIONS(1289), 1, + anon_sym_getline, + ACTIONS(1291), 1, + anon_sym_SLASH, + ACTIONS(1301), 1, + anon_sym_AT, + ACTIONS(1771), 1, sym_identifier, - ACTIONS(1271), 1, + STATE(168), 1, + sym_array_ref, + STATE(213), 1, + sym_field_ref, + STATE(585), 1, + sym_ns_qualified_name, + STATE(1305), 1, + sym__binary_in, + STATE(2068), 1, + sym_namespace, + ACTIONS(71), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1297), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1304), 9, + sym_ternary_exp, + sym_binary_exp, + sym_unary_exp, + sym_string_concat, + sym_grouping, + sym__primitive, + sym_number, + sym_string, + sym_func_call, + STATE(1689), 10, + sym__getline_exp, + sym_getline_input, + sym_getline_file, + sym__exp, + sym_update_exp, + sym_assignment_exp, + sym_piped_io_exp, + sym_regex, + sym_regex_constant, + sym_indirect_func_call, + [54156] = 18, + ACTIONS(368), 1, + anon_sym_DOLLAR, + ACTIONS(1669), 1, + sym_identifier, + ACTIONS(1685), 1, + aux_sym_number_token1, + ACTIONS(1687), 1, + aux_sym_number_token2, + ACTIONS(1689), 1, + anon_sym_DQUOTE, + ACTIONS(1693), 1, anon_sym_LPAREN, - ACTIONS(1273), 1, + ACTIONS(1695), 1, anon_sym_getline, - ACTIONS(1275), 1, + ACTIONS(1697), 1, anon_sym_SLASH, - ACTIONS(1279), 1, + ACTIONS(1701), 1, anon_sym_BANG, - ACTIONS(1283), 1, - anon_sym_DOLLAR, - ACTIONS(1285), 1, + ACTIONS(1705), 1, anon_sym_AT, + STATE(164), 1, + sym_ns_qualified_name, + STATE(176), 1, + sym_array_ref, + STATE(192), 1, + sym_field_ref, + STATE(194), 1, + sym__binary_in, + STATE(2068), 1, + sym_namespace, + ACTIONS(1699), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1703), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(201), 19, + sym__getline_exp, + sym_getline_input, + sym_getline_file, + sym__exp, + sym_ternary_exp, + sym_binary_exp, + sym_unary_exp, + sym_update_exp, + sym_assignment_exp, + sym_piped_io_exp, + sym_string_concat, + sym_regex, + sym_regex_constant, + sym_grouping, + sym__primitive, + sym_number, + sym_string, + sym_func_call, + sym_indirect_func_call, + [54231] = 19, + ACTIONS(1285), 1, + sym_identifier, ACTIONS(1287), 1, - aux_sym_number_token1, + anon_sym_LPAREN, ACTIONS(1289), 1, - aux_sym_number_token2, + anon_sym_getline, ACTIONS(1291), 1, + anon_sym_SLASH, + ACTIONS(1295), 1, + anon_sym_BANG, + ACTIONS(1299), 1, + anon_sym_DOLLAR, + ACTIONS(1301), 1, + anon_sym_AT, + ACTIONS(1303), 1, + aux_sym_number_token1, + ACTIONS(1305), 1, + aux_sym_number_token2, + ACTIONS(1307), 1, + anon_sym_DQUOTE, + STATE(1093), 1, + sym_ns_qualified_name, + STATE(1142), 1, + sym_array_ref, + STATE(1251), 1, + sym_field_ref, + STATE(1510), 1, + sym__binary_in, + STATE(2080), 1, + sym_namespace, + ACTIONS(1293), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1297), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1505), 9, + sym_ternary_exp, + sym_binary_exp, + sym_unary_exp, + sym_string_concat, + sym_grouping, + sym__primitive, + sym_number, + sym_string, + sym_func_call, + STATE(1560), 10, + sym__getline_exp, + sym_getline_input, + sym_getline_file, + sym__exp, + sym_update_exp, + sym_assignment_exp, + sym_piped_io_exp, + sym_regex, + sym_regex_constant, + sym_indirect_func_call, + [54308] = 18, + ACTIONS(11), 1, + anon_sym_LPAREN, + ACTIONS(21), 1, + anon_sym_BANG, + ACTIONS(25), 1, + anon_sym_DOLLAR, + ACTIONS(29), 1, + aux_sym_number_token1, + ACTIONS(31), 1, + aux_sym_number_token2, + ACTIONS(33), 1, + anon_sym_DQUOTE, + ACTIONS(1587), 1, + sym_identifier, + ACTIONS(1589), 1, + anon_sym_getline, + ACTIONS(1591), 1, + anon_sym_SLASH, + ACTIONS(1595), 1, + anon_sym_AT, + STATE(425), 1, + sym_ns_qualified_name, + STATE(467), 1, + sym_array_ref, + STATE(490), 1, + sym_field_ref, + STATE(539), 1, + sym__binary_in, + STATE(2080), 1, + sym_namespace, + ACTIONS(19), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1593), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(530), 19, + sym__getline_exp, + sym_getline_input, + sym_getline_file, + sym__exp, + sym_ternary_exp, + sym_binary_exp, + sym_unary_exp, + sym_update_exp, + sym_assignment_exp, + sym_piped_io_exp, + sym_string_concat, + sym_regex, + sym_regex_constant, + sym_grouping, + sym__primitive, + sym_number, + sym_string, + sym_func_call, + sym_indirect_func_call, + [54383] = 18, + ACTIONS(25), 1, + anon_sym_DOLLAR, + ACTIONS(1629), 1, + sym_identifier, + ACTIONS(1631), 1, + anon_sym_LPAREN, + ACTIONS(1633), 1, + anon_sym_getline, + ACTIONS(1635), 1, + anon_sym_SLASH, + ACTIONS(1639), 1, + anon_sym_BANG, + ACTIONS(1643), 1, + anon_sym_AT, + ACTIONS(1645), 1, + aux_sym_number_token1, + ACTIONS(1647), 1, + aux_sym_number_token2, + ACTIONS(1649), 1, anon_sym_DQUOTE, - STATE(1067), 1, + STATE(288), 1, sym_ns_qualified_name, - STATE(1137), 1, + STATE(308), 1, sym_array_ref, - STATE(1231), 1, - sym_field_ref, - STATE(1502), 1, + STATE(328), 1, sym__binary_in, - STATE(2075), 1, + STATE(331), 1, + sym_field_ref, + STATE(2080), 1, sym_namespace, - ACTIONS(1277), 2, + ACTIONS(1637), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1281), 2, + ACTIONS(1641), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1500), 9, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_string_concat, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - STATE(1604), 10, + STATE(487), 19, sym__getline_exp, sym_getline_input, sym_getline_file, sym__exp, + sym_ternary_exp, + sym_binary_exp, + sym_unary_exp, sym_update_exp, sym_assignment_exp, sym_piped_io_exp, + sym_string_concat, sym_regex, sym_regex_constant, + sym_grouping, + sym__primitive, + sym_number, + sym_string, + sym_func_call, sym_indirect_func_call, - [54703] = 19, - ACTIONS(1269), 1, + [54458] = 18, + ACTIONS(25), 1, + anon_sym_DOLLAR, + ACTIONS(1629), 1, sym_identifier, - ACTIONS(1271), 1, + ACTIONS(1631), 1, anon_sym_LPAREN, - ACTIONS(1273), 1, + ACTIONS(1633), 1, anon_sym_getline, - ACTIONS(1275), 1, + ACTIONS(1635), 1, anon_sym_SLASH, - ACTIONS(1279), 1, + ACTIONS(1639), 1, anon_sym_BANG, - ACTIONS(1283), 1, - anon_sym_DOLLAR, - ACTIONS(1285), 1, + ACTIONS(1643), 1, anon_sym_AT, - ACTIONS(1287), 1, + ACTIONS(1645), 1, aux_sym_number_token1, - ACTIONS(1289), 1, + ACTIONS(1647), 1, aux_sym_number_token2, - ACTIONS(1291), 1, + ACTIONS(1649), 1, anon_sym_DQUOTE, - STATE(1067), 1, + STATE(288), 1, sym_ns_qualified_name, - STATE(1137), 1, + STATE(308), 1, sym_array_ref, - STATE(1231), 1, - sym_field_ref, - STATE(1502), 1, + STATE(328), 1, sym__binary_in, - STATE(2075), 1, + STATE(331), 1, + sym_field_ref, + STATE(2080), 1, sym_namespace, - ACTIONS(1277), 2, + ACTIONS(1637), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1281), 2, + ACTIONS(1641), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1500), 9, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_string_concat, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - STATE(1652), 10, + STATE(491), 19, sym__getline_exp, sym_getline_input, sym_getline_file, sym__exp, + sym_ternary_exp, + sym_binary_exp, + sym_unary_exp, sym_update_exp, sym_assignment_exp, sym_piped_io_exp, + sym_string_concat, sym_regex, sym_regex_constant, + sym_grouping, + sym__primitive, + sym_number, + sym_string, + sym_func_call, sym_indirect_func_call, - [54780] = 19, - ACTIONS(1269), 1, + [54533] = 18, + ACTIONS(25), 1, + anon_sym_DOLLAR, + ACTIONS(1629), 1, sym_identifier, - ACTIONS(1271), 1, + ACTIONS(1631), 1, anon_sym_LPAREN, - ACTIONS(1273), 1, + ACTIONS(1633), 1, anon_sym_getline, - ACTIONS(1275), 1, + ACTIONS(1635), 1, anon_sym_SLASH, - ACTIONS(1279), 1, + ACTIONS(1639), 1, anon_sym_BANG, - ACTIONS(1283), 1, - anon_sym_DOLLAR, - ACTIONS(1285), 1, + ACTIONS(1643), 1, anon_sym_AT, - ACTIONS(1287), 1, + ACTIONS(1645), 1, aux_sym_number_token1, - ACTIONS(1289), 1, + ACTIONS(1647), 1, aux_sym_number_token2, - ACTIONS(1291), 1, + ACTIONS(1649), 1, anon_sym_DQUOTE, - STATE(1067), 1, + STATE(288), 1, sym_ns_qualified_name, - STATE(1137), 1, + STATE(308), 1, sym_array_ref, - STATE(1231), 1, - sym_field_ref, - STATE(1502), 1, + STATE(328), 1, sym__binary_in, - STATE(2075), 1, + STATE(331), 1, + sym_field_ref, + STATE(2080), 1, sym_namespace, - ACTIONS(1277), 2, + ACTIONS(1637), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1281), 2, + ACTIONS(1641), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1500), 9, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_string_concat, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - STATE(1611), 10, + STATE(489), 19, sym__getline_exp, sym_getline_input, sym_getline_file, sym__exp, + sym_ternary_exp, + sym_binary_exp, + sym_unary_exp, sym_update_exp, sym_assignment_exp, sym_piped_io_exp, + sym_string_concat, sym_regex, sym_regex_constant, + sym_grouping, + sym__primitive, + sym_number, + sym_string, + sym_func_call, sym_indirect_func_call, - [54857] = 19, - ACTIONS(1269), 1, - sym_identifier, - ACTIONS(1271), 1, + [54608] = 18, + ACTIONS(534), 1, anon_sym_LPAREN, - ACTIONS(1273), 1, - anon_sym_getline, - ACTIONS(1275), 1, - anon_sym_SLASH, - ACTIONS(1279), 1, + ACTIONS(554), 1, anon_sym_BANG, - ACTIONS(1283), 1, + ACTIONS(558), 1, anon_sym_DOLLAR, - ACTIONS(1285), 1, - anon_sym_AT, - ACTIONS(1287), 1, + ACTIONS(562), 1, aux_sym_number_token1, - ACTIONS(1289), 1, + ACTIONS(564), 1, aux_sym_number_token2, - ACTIONS(1291), 1, + ACTIONS(566), 1, anon_sym_DQUOTE, - STATE(1067), 1, + ACTIONS(1567), 1, + sym_identifier, + ACTIONS(1569), 1, + anon_sym_getline, + ACTIONS(1571), 1, + anon_sym_SLASH, + ACTIONS(1575), 1, + anon_sym_AT, + STATE(191), 1, sym_ns_qualified_name, - STATE(1137), 1, + STATE(238), 1, sym_array_ref, - STATE(1231), 1, + STATE(264), 1, sym_field_ref, - STATE(1502), 1, + STATE(373), 1, sym__binary_in, - STATE(2075), 1, + STATE(2068), 1, sym_namespace, - ACTIONS(1277), 2, + ACTIONS(552), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1281), 2, + ACTIONS(1573), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1500), 9, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_string_concat, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - STATE(1657), 10, + STATE(395), 19, sym__getline_exp, sym_getline_input, sym_getline_file, sym__exp, + sym_ternary_exp, + sym_binary_exp, + sym_unary_exp, sym_update_exp, sym_assignment_exp, sym_piped_io_exp, + sym_string_concat, sym_regex, sym_regex_constant, + sym_grouping, + sym__primitive, + sym_number, + sym_string, + sym_func_call, sym_indirect_func_call, - [54934] = 19, - ACTIONS(1269), 1, + [54683] = 18, + ACTIONS(558), 1, + anon_sym_DOLLAR, + ACTIONS(1669), 1, sym_identifier, - ACTIONS(1271), 1, + ACTIONS(1685), 1, + aux_sym_number_token1, + ACTIONS(1687), 1, + aux_sym_number_token2, + ACTIONS(1689), 1, + anon_sym_DQUOTE, + ACTIONS(1725), 1, anon_sym_LPAREN, - ACTIONS(1273), 1, + ACTIONS(1727), 1, anon_sym_getline, - ACTIONS(1275), 1, + ACTIONS(1729), 1, anon_sym_SLASH, - ACTIONS(1279), 1, + ACTIONS(1733), 1, anon_sym_BANG, - ACTIONS(1283), 1, - anon_sym_DOLLAR, - ACTIONS(1285), 1, + ACTIONS(1737), 1, anon_sym_AT, - ACTIONS(1287), 1, - aux_sym_number_token1, - ACTIONS(1289), 1, - aux_sym_number_token2, - ACTIONS(1291), 1, - anon_sym_DQUOTE, - STATE(1067), 1, + STATE(164), 1, sym_ns_qualified_name, - STATE(1137), 1, + STATE(176), 1, sym_array_ref, - STATE(1231), 1, + STATE(192), 1, sym_field_ref, - STATE(1502), 1, + STATE(194), 1, sym__binary_in, - STATE(2075), 1, + STATE(2068), 1, sym_namespace, - ACTIONS(1277), 2, + ACTIONS(1731), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1281), 2, + ACTIONS(1735), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1500), 9, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_string_concat, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - STATE(1654), 10, + STATE(199), 19, sym__getline_exp, sym_getline_input, sym_getline_file, sym__exp, + sym_ternary_exp, + sym_binary_exp, + sym_unary_exp, sym_update_exp, sym_assignment_exp, sym_piped_io_exp, + sym_string_concat, sym_regex, sym_regex_constant, + sym_grouping, + sym__primitive, + sym_number, + sym_string, + sym_func_call, sym_indirect_func_call, - [55011] = 19, - ACTIONS(1269), 1, - sym_identifier, - ACTIONS(1271), 1, + [54758] = 18, + ACTIONS(534), 1, anon_sym_LPAREN, - ACTIONS(1273), 1, - anon_sym_getline, - ACTIONS(1275), 1, - anon_sym_SLASH, - ACTIONS(1279), 1, + ACTIONS(554), 1, anon_sym_BANG, - ACTIONS(1283), 1, + ACTIONS(558), 1, anon_sym_DOLLAR, - ACTIONS(1285), 1, - anon_sym_AT, - ACTIONS(1287), 1, + ACTIONS(562), 1, aux_sym_number_token1, - ACTIONS(1289), 1, + ACTIONS(564), 1, aux_sym_number_token2, - ACTIONS(1291), 1, + ACTIONS(566), 1, anon_sym_DQUOTE, - STATE(1067), 1, + ACTIONS(1567), 1, + sym_identifier, + ACTIONS(1569), 1, + anon_sym_getline, + ACTIONS(1571), 1, + anon_sym_SLASH, + ACTIONS(1575), 1, + anon_sym_AT, + STATE(191), 1, sym_ns_qualified_name, - STATE(1137), 1, + STATE(238), 1, sym_array_ref, - STATE(1231), 1, + STATE(264), 1, sym_field_ref, - STATE(1502), 1, + STATE(373), 1, sym__binary_in, - STATE(2075), 1, + STATE(2068), 1, sym_namespace, - ACTIONS(1277), 2, + ACTIONS(552), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1281), 2, + ACTIONS(1573), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1500), 9, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_string_concat, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - STATE(1677), 10, + STATE(401), 19, sym__getline_exp, sym_getline_input, sym_getline_file, sym__exp, + sym_ternary_exp, + sym_binary_exp, + sym_unary_exp, sym_update_exp, sym_assignment_exp, sym_piped_io_exp, + sym_string_concat, sym_regex, sym_regex_constant, + sym_grouping, + sym__primitive, + sym_number, + sym_string, + sym_func_call, sym_indirect_func_call, - [55088] = 19, - ACTIONS(1269), 1, + [54833] = 18, + ACTIONS(25), 1, + anon_sym_DOLLAR, + ACTIONS(1629), 1, sym_identifier, - ACTIONS(1271), 1, + ACTIONS(1631), 1, anon_sym_LPAREN, - ACTIONS(1273), 1, + ACTIONS(1633), 1, anon_sym_getline, - ACTIONS(1275), 1, + ACTIONS(1635), 1, anon_sym_SLASH, - ACTIONS(1279), 1, + ACTIONS(1639), 1, anon_sym_BANG, - ACTIONS(1283), 1, - anon_sym_DOLLAR, - ACTIONS(1285), 1, + ACTIONS(1643), 1, anon_sym_AT, - ACTIONS(1287), 1, + ACTIONS(1645), 1, aux_sym_number_token1, - ACTIONS(1289), 1, + ACTIONS(1647), 1, aux_sym_number_token2, - ACTIONS(1291), 1, + ACTIONS(1649), 1, anon_sym_DQUOTE, - STATE(1067), 1, + STATE(288), 1, sym_ns_qualified_name, - STATE(1137), 1, + STATE(308), 1, sym_array_ref, - STATE(1231), 1, - sym_field_ref, - STATE(1502), 1, + STATE(328), 1, sym__binary_in, - STATE(2075), 1, + STATE(331), 1, + sym_field_ref, + STATE(2080), 1, sym_namespace, - ACTIONS(1277), 2, + ACTIONS(1637), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1281), 2, + ACTIONS(1641), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1500), 9, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_string_concat, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - STATE(1620), 10, + STATE(488), 19, sym__getline_exp, sym_getline_input, sym_getline_file, sym__exp, + sym_ternary_exp, + sym_binary_exp, + sym_unary_exp, sym_update_exp, sym_assignment_exp, sym_piped_io_exp, + sym_string_concat, sym_regex, sym_regex_constant, + sym_grouping, + sym__primitive, + sym_number, + sym_string, + sym_func_call, sym_indirect_func_call, - [55165] = 19, - ACTIONS(1269), 1, + [54908] = 3, + ACTIONS(830), 1, + sym_concatenating_space, + ACTIONS(866), 1, + sym_regex_flags, + ACTIONS(826), 36, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_while, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_CARET, + anon_sym_STAR_STAR, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + [54953] = 18, + ACTIONS(25), 1, + anon_sym_DOLLAR, + ACTIONS(1629), 1, sym_identifier, - ACTIONS(1271), 1, + ACTIONS(1631), 1, anon_sym_LPAREN, - ACTIONS(1273), 1, + ACTIONS(1633), 1, anon_sym_getline, - ACTIONS(1275), 1, + ACTIONS(1635), 1, anon_sym_SLASH, - ACTIONS(1279), 1, + ACTIONS(1639), 1, anon_sym_BANG, - ACTIONS(1283), 1, - anon_sym_DOLLAR, - ACTIONS(1285), 1, + ACTIONS(1643), 1, anon_sym_AT, - ACTIONS(1287), 1, + ACTIONS(1645), 1, aux_sym_number_token1, - ACTIONS(1289), 1, + ACTIONS(1647), 1, aux_sym_number_token2, - ACTIONS(1291), 1, + ACTIONS(1649), 1, anon_sym_DQUOTE, - STATE(1067), 1, + STATE(288), 1, sym_ns_qualified_name, - STATE(1137), 1, + STATE(308), 1, sym_array_ref, - STATE(1231), 1, - sym_field_ref, - STATE(1502), 1, + STATE(328), 1, sym__binary_in, - STATE(2075), 1, + STATE(331), 1, + sym_field_ref, + STATE(2080), 1, sym_namespace, - ACTIONS(1277), 2, + ACTIONS(1637), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1281), 2, + ACTIONS(1641), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1500), 9, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_string_concat, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - STATE(1672), 10, + STATE(480), 19, sym__getline_exp, sym_getline_input, sym_getline_file, sym__exp, + sym_ternary_exp, + sym_binary_exp, + sym_unary_exp, sym_update_exp, sym_assignment_exp, sym_piped_io_exp, + sym_string_concat, sym_regex, sym_regex_constant, + sym_grouping, + sym__primitive, + sym_number, + sym_string, + sym_func_call, sym_indirect_func_call, - [55242] = 19, - ACTIONS(1269), 1, + [55028] = 19, + ACTIONS(1285), 1, sym_identifier, - ACTIONS(1271), 1, + ACTIONS(1287), 1, anon_sym_LPAREN, - ACTIONS(1273), 1, + ACTIONS(1289), 1, anon_sym_getline, - ACTIONS(1275), 1, + ACTIONS(1291), 1, anon_sym_SLASH, - ACTIONS(1279), 1, + ACTIONS(1295), 1, anon_sym_BANG, - ACTIONS(1283), 1, + ACTIONS(1299), 1, anon_sym_DOLLAR, - ACTIONS(1285), 1, + ACTIONS(1301), 1, anon_sym_AT, - ACTIONS(1287), 1, + ACTIONS(1303), 1, aux_sym_number_token1, - ACTIONS(1289), 1, + ACTIONS(1305), 1, aux_sym_number_token2, - ACTIONS(1291), 1, + ACTIONS(1307), 1, anon_sym_DQUOTE, - STATE(1067), 1, + STATE(1093), 1, sym_ns_qualified_name, - STATE(1137), 1, + STATE(1142), 1, sym_array_ref, - STATE(1231), 1, + STATE(1251), 1, sym_field_ref, - STATE(1502), 1, + STATE(1510), 1, sym__binary_in, - STATE(2075), 1, + STATE(2080), 1, sym_namespace, - ACTIONS(1277), 2, + ACTIONS(1293), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1281), 2, + ACTIONS(1297), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1500), 9, + STATE(1505), 9, sym_ternary_exp, sym_binary_exp, sym_unary_exp, @@ -70443,7 +70599,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_string, sym_func_call, - STATE(1670), 10, + STATE(1673), 10, sym__getline_exp, sym_getline_input, sym_getline_file, @@ -70454,102 +70610,101 @@ static const uint16_t ts_small_parse_table[] = { sym_regex, sym_regex_constant, sym_indirect_func_call, - [55319] = 19, - ACTIONS(1269), 1, - sym_identifier, - ACTIONS(1271), 1, + [55105] = 18, + ACTIONS(169), 1, + aux_sym_number_token1, + ACTIONS(306), 1, + aux_sym_number_token2, + ACTIONS(308), 1, + anon_sym_DQUOTE, + ACTIONS(434), 1, anon_sym_LPAREN, - ACTIONS(1273), 1, - anon_sym_getline, - ACTIONS(1275), 1, - anon_sym_SLASH, - ACTIONS(1279), 1, + ACTIONS(440), 1, anon_sym_BANG, - ACTIONS(1283), 1, + ACTIONS(444), 1, anon_sym_DOLLAR, - ACTIONS(1285), 1, + ACTIONS(1557), 1, + sym_identifier, + ACTIONS(1559), 1, + anon_sym_getline, + ACTIONS(1561), 1, + anon_sym_SLASH, + ACTIONS(1565), 1, anon_sym_AT, - ACTIONS(1287), 1, - aux_sym_number_token1, - ACTIONS(1289), 1, - aux_sym_number_token2, - ACTIONS(1291), 1, - anon_sym_DQUOTE, - STATE(1067), 1, + STATE(606), 1, sym_ns_qualified_name, - STATE(1137), 1, + STATE(611), 1, sym_array_ref, - STATE(1231), 1, + STATE(686), 1, sym_field_ref, - STATE(1502), 1, + STATE(1385), 1, sym__binary_in, - STATE(2075), 1, + STATE(1956), 1, sym_namespace, - ACTIONS(1277), 2, + ACTIONS(161), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1281), 2, + ACTIONS(1563), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1500), 9, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_string_concat, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - STATE(1656), 10, + STATE(1399), 19, sym__getline_exp, sym_getline_input, sym_getline_file, sym__exp, + sym_ternary_exp, + sym_binary_exp, + sym_unary_exp, sym_update_exp, sym_assignment_exp, sym_piped_io_exp, + sym_string_concat, sym_regex, sym_regex_constant, + sym_grouping, + sym__primitive, + sym_number, + sym_string, + sym_func_call, sym_indirect_func_call, - [55396] = 19, - ACTIONS(1269), 1, + [55180] = 19, + ACTIONS(1285), 1, sym_identifier, - ACTIONS(1271), 1, + ACTIONS(1287), 1, anon_sym_LPAREN, - ACTIONS(1273), 1, + ACTIONS(1289), 1, anon_sym_getline, - ACTIONS(1275), 1, + ACTIONS(1291), 1, anon_sym_SLASH, - ACTIONS(1279), 1, + ACTIONS(1295), 1, anon_sym_BANG, - ACTIONS(1283), 1, + ACTIONS(1299), 1, anon_sym_DOLLAR, - ACTIONS(1285), 1, + ACTIONS(1301), 1, anon_sym_AT, - ACTIONS(1287), 1, + ACTIONS(1303), 1, aux_sym_number_token1, - ACTIONS(1289), 1, + ACTIONS(1305), 1, aux_sym_number_token2, - ACTIONS(1291), 1, + ACTIONS(1307), 1, anon_sym_DQUOTE, - STATE(1067), 1, + STATE(1093), 1, sym_ns_qualified_name, - STATE(1137), 1, + STATE(1142), 1, sym_array_ref, - STATE(1231), 1, + STATE(1251), 1, sym_field_ref, - STATE(1502), 1, + STATE(1510), 1, sym__binary_in, - STATE(2075), 1, + STATE(2080), 1, sym_namespace, - ACTIONS(1277), 2, + ACTIONS(1293), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1281), 2, + ACTIONS(1297), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1500), 9, + STATE(1505), 9, sym_ternary_exp, sym_binary_exp, sym_unary_exp, @@ -70559,7 +70714,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_string, sym_func_call, - STATE(1668), 10, + STATE(1667), 10, sym__getline_exp, sym_getline_input, sym_getline_file, @@ -70570,145 +70725,102 @@ static const uint16_t ts_small_parse_table[] = { sym_regex, sym_regex_constant, sym_indirect_func_call, - [55473] = 18, - ACTIONS(332), 1, - anon_sym_DOLLAR, - ACTIONS(1675), 1, + [55257] = 19, + ACTIONS(530), 1, sym_identifier, - ACTIONS(1691), 1, - aux_sym_number_token1, - ACTIONS(1693), 1, - aux_sym_number_token2, - ACTIONS(1695), 1, - anon_sym_DQUOTE, - ACTIONS(1741), 1, + ACTIONS(534), 1, anon_sym_LPAREN, - ACTIONS(1743), 1, + ACTIONS(544), 1, anon_sym_getline, - ACTIONS(1745), 1, + ACTIONS(550), 1, anon_sym_SLASH, - ACTIONS(1749), 1, + ACTIONS(554), 1, anon_sym_BANG, - ACTIONS(1753), 1, + ACTIONS(558), 1, + anon_sym_DOLLAR, + ACTIONS(560), 1, anon_sym_AT, - STATE(163), 1, + ACTIONS(562), 1, + aux_sym_number_token1, + ACTIONS(564), 1, + aux_sym_number_token2, + ACTIONS(566), 1, + anon_sym_DQUOTE, + STATE(200), 1, sym_ns_qualified_name, - STATE(169), 1, + STATE(219), 1, sym_array_ref, - STATE(200), 1, - sym__binary_in, - STATE(202), 1, + STATE(258), 1, sym_field_ref, - STATE(2063), 1, + STATE(373), 1, + sym__binary_in, + STATE(2068), 1, sym_namespace, - ACTIONS(1747), 2, + ACTIONS(552), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1751), 2, + ACTIONS(556), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(183), 19, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, + STATE(359), 9, sym_ternary_exp, sym_binary_exp, sym_unary_exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, sym_string_concat, - sym_regex, - sym_regex_constant, sym_grouping, sym__primitive, sym_number, sym_string, sym_func_call, + STATE(418), 10, + sym__getline_exp, + sym_getline_input, + sym_getline_file, + sym__exp, + sym_update_exp, + sym_assignment_exp, + sym_piped_io_exp, + sym_regex, + sym_regex_constant, sym_indirect_func_call, - [55548] = 5, - ACTIONS(688), 1, - anon_sym_LBRACK, - ACTIONS(1377), 1, - sym_concatenating_space, - ACTIONS(1247), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1375), 7, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - ACTIONS(644), 27, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_while, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [55597] = 19, - ACTIONS(1269), 1, + [55334] = 19, + ACTIONS(137), 1, sym_identifier, - ACTIONS(1271), 1, + ACTIONS(153), 1, + anon_sym_getline, + ACTIONS(169), 1, + aux_sym_number_token1, + ACTIONS(306), 1, + aux_sym_number_token2, + ACTIONS(308), 1, + anon_sym_DQUOTE, + ACTIONS(434), 1, anon_sym_LPAREN, - ACTIONS(1273), 1, - anon_sym_getline, - ACTIONS(1275), 1, + ACTIONS(438), 1, anon_sym_SLASH, - ACTIONS(1279), 1, + ACTIONS(440), 1, anon_sym_BANG, - ACTIONS(1283), 1, + ACTIONS(444), 1, anon_sym_DOLLAR, - ACTIONS(1285), 1, + ACTIONS(446), 1, anon_sym_AT, - ACTIONS(1287), 1, - aux_sym_number_token1, - ACTIONS(1289), 1, - aux_sym_number_token2, - ACTIONS(1291), 1, - anon_sym_DQUOTE, - STATE(1067), 1, + STATE(597), 1, sym_ns_qualified_name, - STATE(1137), 1, + STATE(614), 1, sym_array_ref, - STATE(1231), 1, + STATE(705), 1, sym_field_ref, - STATE(1502), 1, + STATE(1385), 1, sym__binary_in, - STATE(2075), 1, + STATE(1956), 1, sym_namespace, - ACTIONS(1277), 2, + ACTIONS(161), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1281), 2, + ACTIONS(442), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1500), 9, + STATE(1420), 9, sym_ternary_exp, sym_binary_exp, sym_unary_exp, @@ -70718,7 +70830,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_string, sym_func_call, - STATE(1662), 10, + STATE(1475), 10, sym__getline_exp, sym_getline_input, sym_getline_file, @@ -70729,44 +70841,44 @@ static const uint16_t ts_small_parse_table[] = { sym_regex, sym_regex_constant, sym_indirect_func_call, - [55674] = 19, - ACTIONS(1269), 1, + [55411] = 19, + ACTIONS(137), 1, sym_identifier, - ACTIONS(1271), 1, - anon_sym_LPAREN, - ACTIONS(1273), 1, + ACTIONS(153), 1, anon_sym_getline, - ACTIONS(1275), 1, + ACTIONS(169), 1, + aux_sym_number_token1, + ACTIONS(306), 1, + aux_sym_number_token2, + ACTIONS(308), 1, + anon_sym_DQUOTE, + ACTIONS(434), 1, + anon_sym_LPAREN, + ACTIONS(438), 1, anon_sym_SLASH, - ACTIONS(1279), 1, + ACTIONS(440), 1, anon_sym_BANG, - ACTIONS(1283), 1, + ACTIONS(444), 1, anon_sym_DOLLAR, - ACTIONS(1285), 1, + ACTIONS(446), 1, anon_sym_AT, - ACTIONS(1287), 1, - aux_sym_number_token1, - ACTIONS(1289), 1, - aux_sym_number_token2, - ACTIONS(1291), 1, - anon_sym_DQUOTE, - STATE(1067), 1, + STATE(597), 1, sym_ns_qualified_name, - STATE(1137), 1, + STATE(614), 1, sym_array_ref, - STATE(1231), 1, + STATE(705), 1, sym_field_ref, - STATE(1502), 1, + STATE(1385), 1, sym__binary_in, - STATE(2075), 1, + STATE(1956), 1, sym_namespace, - ACTIONS(1277), 2, + ACTIONS(161), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1281), 2, + ACTIONS(442), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1500), 9, + STATE(1420), 9, sym_ternary_exp, sym_binary_exp, sym_unary_exp, @@ -70776,7 +70888,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_string, sym_func_call, - STATE(1658), 10, + STATE(1474), 10, sym__getline_exp, sym_getline_input, sym_getline_file, @@ -70787,145 +70899,215 @@ static const uint16_t ts_small_parse_table[] = { sym_regex, sym_regex_constant, sym_indirect_func_call, - [55751] = 4, - ACTIONS(680), 1, - sym_concatenating_space, - ACTIONS(688), 1, - anon_sym_LBRACK, - ACTIONS(1517), 1, - anon_sym_LT, - ACTIONS(678), 35, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_while, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_STAR, + [55488] = 18, + ACTIONS(1287), 1, + anon_sym_LPAREN, + ACTIONS(1295), 1, + anon_sym_BANG, + ACTIONS(1299), 1, + anon_sym_DOLLAR, + ACTIONS(1303), 1, + aux_sym_number_token1, + ACTIONS(1305), 1, + aux_sym_number_token2, + ACTIONS(1307), 1, + anon_sym_DQUOTE, + ACTIONS(1761), 1, + sym_identifier, + ACTIONS(1763), 1, + anon_sym_getline, + ACTIONS(1765), 1, anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(1769), 1, + anon_sym_AT, + STATE(960), 1, + sym_ns_qualified_name, + STATE(1161), 1, + sym_array_ref, + STATE(1240), 1, + sym_field_ref, + STATE(1510), 1, + sym__binary_in, + STATE(2080), 1, + sym_namespace, + ACTIONS(1293), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(1767), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - [55798] = 19, - ACTIONS(1269), 1, + STATE(1507), 19, + sym__getline_exp, + sym_getline_input, + sym_getline_file, + sym__exp, + sym_ternary_exp, + sym_binary_exp, + sym_unary_exp, + sym_update_exp, + sym_assignment_exp, + sym_piped_io_exp, + sym_string_concat, + sym_regex, + sym_regex_constant, + sym_grouping, + sym__primitive, + sym_number, + sym_string, + sym_func_call, + sym_indirect_func_call, + [55563] = 18, + ACTIONS(25), 1, + anon_sym_DOLLAR, + ACTIONS(1629), 1, sym_identifier, - ACTIONS(1271), 1, + ACTIONS(1631), 1, anon_sym_LPAREN, - ACTIONS(1273), 1, + ACTIONS(1633), 1, anon_sym_getline, - ACTIONS(1275), 1, + ACTIONS(1635), 1, anon_sym_SLASH, - ACTIONS(1279), 1, + ACTIONS(1639), 1, anon_sym_BANG, - ACTIONS(1283), 1, - anon_sym_DOLLAR, - ACTIONS(1285), 1, + ACTIONS(1643), 1, anon_sym_AT, - ACTIONS(1287), 1, + ACTIONS(1645), 1, aux_sym_number_token1, - ACTIONS(1289), 1, + ACTIONS(1647), 1, aux_sym_number_token2, - ACTIONS(1291), 1, + ACTIONS(1649), 1, anon_sym_DQUOTE, - STATE(1067), 1, + STATE(288), 1, sym_ns_qualified_name, - STATE(1137), 1, + STATE(308), 1, sym_array_ref, - STATE(1231), 1, - sym_field_ref, - STATE(1502), 1, + STATE(328), 1, sym__binary_in, - STATE(2075), 1, + STATE(331), 1, + sym_field_ref, + STATE(2080), 1, sym_namespace, - ACTIONS(1277), 2, + ACTIONS(1637), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1281), 2, + ACTIONS(1641), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1500), 9, + STATE(348), 19, + sym__getline_exp, + sym_getline_input, + sym_getline_file, + sym__exp, sym_ternary_exp, sym_binary_exp, sym_unary_exp, + sym_update_exp, + sym_assignment_exp, + sym_piped_io_exp, sym_string_concat, + sym_regex, + sym_regex_constant, sym_grouping, sym__primitive, sym_number, sym_string, sym_func_call, - STATE(1632), 10, + sym_indirect_func_call, + [55638] = 18, + ACTIONS(79), 1, + aux_sym_number_token1, + ACTIONS(312), 1, + anon_sym_LPAREN, + ACTIONS(320), 1, + anon_sym_BANG, + ACTIONS(324), 1, + anon_sym_DOLLAR, + ACTIONS(328), 1, + aux_sym_number_token2, + ACTIONS(330), 1, + anon_sym_DQUOTE, + ACTIONS(1577), 1, + sym_identifier, + ACTIONS(1579), 1, + anon_sym_getline, + ACTIONS(1581), 1, + anon_sym_SLASH, + ACTIONS(1585), 1, + anon_sym_AT, + STATE(591), 1, + sym_ns_qualified_name, + STATE(605), 1, + sym_array_ref, + STATE(628), 1, + sym_field_ref, + STATE(1305), 1, + sym__binary_in, + STATE(2068), 1, + sym_namespace, + ACTIONS(71), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1583), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1318), 19, sym__getline_exp, sym_getline_input, sym_getline_file, sym__exp, + sym_ternary_exp, + sym_binary_exp, + sym_unary_exp, sym_update_exp, sym_assignment_exp, sym_piped_io_exp, + sym_string_concat, sym_regex, sym_regex_constant, + sym_grouping, + sym__primitive, + sym_number, + sym_string, + sym_func_call, sym_indirect_func_call, - [55875] = 18, - ACTIONS(25), 1, - anon_sym_DOLLAR, - ACTIONS(1619), 1, - sym_identifier, - ACTIONS(1621), 1, + [55713] = 18, + ACTIONS(534), 1, anon_sym_LPAREN, - ACTIONS(1623), 1, - anon_sym_getline, - ACTIONS(1625), 1, - anon_sym_SLASH, - ACTIONS(1629), 1, + ACTIONS(554), 1, anon_sym_BANG, - ACTIONS(1633), 1, - anon_sym_AT, - ACTIONS(1635), 1, + ACTIONS(558), 1, + anon_sym_DOLLAR, + ACTIONS(562), 1, aux_sym_number_token1, - ACTIONS(1637), 1, + ACTIONS(564), 1, aux_sym_number_token2, - ACTIONS(1639), 1, + ACTIONS(566), 1, anon_sym_DQUOTE, - STATE(293), 1, + ACTIONS(1567), 1, + sym_identifier, + ACTIONS(1569), 1, + anon_sym_getline, + ACTIONS(1571), 1, + anon_sym_SLASH, + ACTIONS(1575), 1, + anon_sym_AT, + STATE(191), 1, sym_ns_qualified_name, - STATE(302), 1, + STATE(238), 1, sym_array_ref, - STATE(331), 1, - sym__binary_in, - STATE(334), 1, + STATE(264), 1, sym_field_ref, - STATE(2075), 1, + STATE(373), 1, + sym__binary_in, + STATE(2068), 1, sym_namespace, - ACTIONS(1627), 2, + ACTIONS(552), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1631), 2, + ACTIONS(1573), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(495), 19, + STATE(397), 19, sym__getline_exp, sym_getline_input, sym_getline_file, @@ -70945,102 +71127,158 @@ static const uint16_t ts_small_parse_table[] = { sym_string, sym_func_call, sym_indirect_func_call, - [55950] = 19, - ACTIONS(127), 1, + [55788] = 18, + ACTIONS(558), 1, + anon_sym_DOLLAR, + ACTIONS(1669), 1, sym_identifier, - ACTIONS(131), 1, + ACTIONS(1685), 1, + aux_sym_number_token1, + ACTIONS(1687), 1, + aux_sym_number_token2, + ACTIONS(1689), 1, + anon_sym_DQUOTE, + ACTIONS(1725), 1, anon_sym_LPAREN, - ACTIONS(147), 1, + ACTIONS(1727), 1, anon_sym_getline, - ACTIONS(153), 1, + ACTIONS(1729), 1, anon_sym_SLASH, - ACTIONS(157), 1, + ACTIONS(1733), 1, anon_sym_BANG, - ACTIONS(161), 1, - anon_sym_DOLLAR, - ACTIONS(163), 1, + ACTIONS(1737), 1, anon_sym_AT, - ACTIONS(165), 1, - aux_sym_number_token1, - ACTIONS(167), 1, - aux_sym_number_token2, - ACTIONS(169), 1, - anon_sym_DQUOTE, - STATE(221), 1, + STATE(164), 1, sym_ns_qualified_name, - STATE(253), 1, + STATE(176), 1, sym_array_ref, - STATE(272), 1, + STATE(192), 1, sym_field_ref, - STATE(446), 1, + STATE(194), 1, sym__binary_in, - STATE(1955), 1, + STATE(2068), 1, sym_namespace, - ACTIONS(155), 2, + ACTIONS(1731), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(159), 2, + ACTIONS(1735), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(447), 9, + STATE(201), 19, + sym__getline_exp, + sym_getline_input, + sym_getline_file, + sym__exp, sym_ternary_exp, sym_binary_exp, sym_unary_exp, + sym_update_exp, + sym_assignment_exp, + sym_piped_io_exp, sym_string_concat, + sym_regex, + sym_regex_constant, sym_grouping, sym__primitive, sym_number, sym_string, sym_func_call, - STATE(461), 10, + sym_indirect_func_call, + [55863] = 18, + ACTIONS(125), 1, + anon_sym_DOLLAR, + ACTIONS(1597), 1, + sym_identifier, + ACTIONS(1613), 1, + aux_sym_number_token1, + ACTIONS(1615), 1, + aux_sym_number_token2, + ACTIONS(1617), 1, + anon_sym_DQUOTE, + ACTIONS(1745), 1, + anon_sym_LPAREN, + ACTIONS(1747), 1, + anon_sym_getline, + ACTIONS(1749), 1, + anon_sym_SLASH, + ACTIONS(1753), 1, + anon_sym_BANG, + ACTIONS(1757), 1, + anon_sym_AT, + STATE(165), 1, + sym_ns_qualified_name, + STATE(216), 1, + sym_array_ref, + STATE(233), 1, + sym_field_ref, + STATE(234), 1, + sym__binary_in, + STATE(1956), 1, + sym_namespace, + ACTIONS(1751), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1755), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(280), 19, sym__getline_exp, sym_getline_input, sym_getline_file, sym__exp, + sym_ternary_exp, + sym_binary_exp, + sym_unary_exp, sym_update_exp, sym_assignment_exp, sym_piped_io_exp, + sym_string_concat, sym_regex, sym_regex_constant, + sym_grouping, + sym__primitive, + sym_number, + sym_string, + sym_func_call, sym_indirect_func_call, - [56027] = 19, + [55938] = 19, ACTIONS(79), 1, aux_sym_number_token1, - ACTIONS(450), 1, + ACTIONS(328), 1, + aux_sym_number_token2, + ACTIONS(330), 1, + anon_sym_DQUOTE, + ACTIONS(336), 1, sym_identifier, - ACTIONS(456), 1, + ACTIONS(342), 1, anon_sym_LPAREN, - ACTIONS(468), 1, + ACTIONS(354), 1, anon_sym_getline, - ACTIONS(474), 1, + ACTIONS(360), 1, anon_sym_SLASH, - ACTIONS(478), 1, + ACTIONS(364), 1, anon_sym_BANG, - ACTIONS(482), 1, + ACTIONS(368), 1, anon_sym_DOLLAR, - ACTIONS(484), 1, + ACTIONS(370), 1, anon_sym_AT, - ACTIONS(486), 1, - aux_sym_number_token2, - ACTIONS(488), 1, - anon_sym_DQUOTE, - STATE(647), 1, + STATE(672), 1, sym_ns_qualified_name, - STATE(774), 1, + STATE(740), 1, sym_array_ref, - STATE(995), 1, + STATE(950), 1, sym_field_ref, - STATE(1309), 1, + STATE(1305), 1, sym__binary_in, - STATE(2063), 1, + STATE(2068), 1, sym_namespace, - ACTIONS(476), 2, + ACTIONS(362), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(480), 2, + ACTIONS(366), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1441), 9, + STATE(1461), 9, sym_ternary_exp, sym_binary_exp, sym_unary_exp, @@ -71050,7 +71288,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_string, sym_func_call, - STATE(1560), 10, + STATE(1351), 10, sym__getline_exp, sym_getline_input, sym_getline_file, @@ -71061,160 +71299,272 @@ static const uint16_t ts_small_parse_table[] = { sym_regex, sym_regex_constant, sym_indirect_func_call, - [56104] = 19, - ACTIONS(79), 1, - aux_sym_number_token1, - ACTIONS(450), 1, + [56015] = 18, + ACTIONS(125), 1, + anon_sym_DOLLAR, + ACTIONS(1597), 1, sym_identifier, - ACTIONS(456), 1, + ACTIONS(1613), 1, + aux_sym_number_token1, + ACTIONS(1615), 1, + aux_sym_number_token2, + ACTIONS(1617), 1, + anon_sym_DQUOTE, + ACTIONS(1745), 1, anon_sym_LPAREN, - ACTIONS(468), 1, + ACTIONS(1747), 1, anon_sym_getline, - ACTIONS(474), 1, + ACTIONS(1749), 1, anon_sym_SLASH, - ACTIONS(478), 1, + ACTIONS(1753), 1, anon_sym_BANG, - ACTIONS(482), 1, - anon_sym_DOLLAR, - ACTIONS(484), 1, + ACTIONS(1757), 1, anon_sym_AT, - ACTIONS(486), 1, - aux_sym_number_token2, - ACTIONS(488), 1, - anon_sym_DQUOTE, - STATE(647), 1, + STATE(165), 1, sym_ns_qualified_name, - STATE(774), 1, + STATE(216), 1, sym_array_ref, - STATE(995), 1, + STATE(233), 1, sym_field_ref, - STATE(1309), 1, + STATE(234), 1, sym__binary_in, - STATE(2063), 1, + STATE(1956), 1, sym_namespace, - ACTIONS(476), 2, + ACTIONS(1751), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(480), 2, + ACTIONS(1755), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1441), 9, + STATE(271), 19, + sym__getline_exp, + sym_getline_input, + sym_getline_file, + sym__exp, sym_ternary_exp, sym_binary_exp, sym_unary_exp, + sym_update_exp, + sym_assignment_exp, + sym_piped_io_exp, sym_string_concat, + sym_regex, + sym_regex_constant, sym_grouping, sym__primitive, sym_number, sym_string, sym_func_call, - STATE(1565), 10, + sym_indirect_func_call, + [56090] = 18, + ACTIONS(125), 1, + anon_sym_DOLLAR, + ACTIONS(1597), 1, + sym_identifier, + ACTIONS(1613), 1, + aux_sym_number_token1, + ACTIONS(1615), 1, + aux_sym_number_token2, + ACTIONS(1617), 1, + anon_sym_DQUOTE, + ACTIONS(1745), 1, + anon_sym_LPAREN, + ACTIONS(1747), 1, + anon_sym_getline, + ACTIONS(1749), 1, + anon_sym_SLASH, + ACTIONS(1753), 1, + anon_sym_BANG, + ACTIONS(1757), 1, + anon_sym_AT, + STATE(165), 1, + sym_ns_qualified_name, + STATE(216), 1, + sym_array_ref, + STATE(233), 1, + sym_field_ref, + STATE(234), 1, + sym__binary_in, + STATE(1956), 1, + sym_namespace, + ACTIONS(1751), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1755), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(223), 19, sym__getline_exp, sym_getline_input, sym_getline_file, sym__exp, + sym_ternary_exp, + sym_binary_exp, + sym_unary_exp, sym_update_exp, sym_assignment_exp, sym_piped_io_exp, + sym_string_concat, sym_regex, sym_regex_constant, + sym_grouping, + sym__primitive, + sym_number, + sym_string, + sym_func_call, sym_indirect_func_call, - [56181] = 19, - ACTIONS(1269), 1, - sym_identifier, - ACTIONS(1271), 1, + [56165] = 18, + ACTIONS(79), 1, + aux_sym_number_token1, + ACTIONS(328), 1, + aux_sym_number_token2, + ACTIONS(330), 1, + anon_sym_DQUOTE, + ACTIONS(342), 1, anon_sym_LPAREN, - ACTIONS(1273), 1, - anon_sym_getline, - ACTIONS(1275), 1, - anon_sym_SLASH, - ACTIONS(1279), 1, + ACTIONS(364), 1, anon_sym_BANG, - ACTIONS(1283), 1, + ACTIONS(368), 1, anon_sym_DOLLAR, - ACTIONS(1285), 1, + ACTIONS(1775), 1, + sym_identifier, + ACTIONS(1777), 1, + anon_sym_getline, + ACTIONS(1779), 1, + anon_sym_SLASH, + ACTIONS(1783), 1, anon_sym_AT, - ACTIONS(1287), 1, - aux_sym_number_token1, - ACTIONS(1289), 1, - aux_sym_number_token2, - ACTIONS(1291), 1, - anon_sym_DQUOTE, - STATE(1067), 1, + STATE(670), 1, sym_ns_qualified_name, - STATE(1137), 1, + STATE(742), 1, sym_array_ref, - STATE(1231), 1, + STATE(946), 1, sym_field_ref, - STATE(1502), 1, + STATE(1305), 1, sym__binary_in, - STATE(2075), 1, + STATE(2068), 1, sym_namespace, - ACTIONS(1277), 2, + ACTIONS(362), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1281), 2, + ACTIONS(1781), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1500), 9, + STATE(1318), 19, + sym__getline_exp, + sym_getline_input, + sym_getline_file, + sym__exp, sym_ternary_exp, sym_binary_exp, sym_unary_exp, + sym_update_exp, + sym_assignment_exp, + sym_piped_io_exp, sym_string_concat, + sym_regex, + sym_regex_constant, sym_grouping, sym__primitive, sym_number, sym_string, sym_func_call, - STATE(1631), 10, + sym_indirect_func_call, + [56240] = 18, + ACTIONS(125), 1, + anon_sym_DOLLAR, + ACTIONS(1597), 1, + sym_identifier, + ACTIONS(1613), 1, + aux_sym_number_token1, + ACTIONS(1615), 1, + aux_sym_number_token2, + ACTIONS(1617), 1, + anon_sym_DQUOTE, + ACTIONS(1745), 1, + anon_sym_LPAREN, + ACTIONS(1747), 1, + anon_sym_getline, + ACTIONS(1749), 1, + anon_sym_SLASH, + ACTIONS(1753), 1, + anon_sym_BANG, + ACTIONS(1757), 1, + anon_sym_AT, + STATE(165), 1, + sym_ns_qualified_name, + STATE(216), 1, + sym_array_ref, + STATE(233), 1, + sym_field_ref, + STATE(234), 1, + sym__binary_in, + STATE(1956), 1, + sym_namespace, + ACTIONS(1751), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1755), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(270), 19, sym__getline_exp, sym_getline_input, sym_getline_file, sym__exp, + sym_ternary_exp, + sym_binary_exp, + sym_unary_exp, sym_update_exp, sym_assignment_exp, sym_piped_io_exp, + sym_string_concat, sym_regex, sym_regex_constant, + sym_grouping, + sym__primitive, + sym_number, + sym_string, + sym_func_call, sym_indirect_func_call, - [56258] = 18, - ACTIONS(123), 1, + [56315] = 18, + ACTIONS(169), 1, aux_sym_number_token1, - ACTIONS(286), 1, + ACTIONS(306), 1, aux_sym_number_token2, - ACTIONS(288), 1, + ACTIONS(308), 1, anon_sym_DQUOTE, - ACTIONS(366), 1, + ACTIONS(434), 1, anon_sym_LPAREN, - ACTIONS(386), 1, + ACTIONS(440), 1, anon_sym_BANG, - ACTIONS(390), 1, + ACTIONS(444), 1, anon_sym_DOLLAR, - ACTIONS(1609), 1, + ACTIONS(1557), 1, sym_identifier, - ACTIONS(1611), 1, + ACTIONS(1559), 1, anon_sym_getline, - ACTIONS(1613), 1, + ACTIONS(1561), 1, anon_sym_SLASH, - ACTIONS(1617), 1, + ACTIONS(1565), 1, anon_sym_AT, - STATE(743), 1, + STATE(606), 1, sym_ns_qualified_name, - STATE(998), 1, + STATE(611), 1, sym_array_ref, - STATE(1165), 1, + STATE(686), 1, sym_field_ref, - STATE(1373), 1, + STATE(1385), 1, sym__binary_in, - STATE(1955), 1, + STATE(1956), 1, sym_namespace, - ACTIONS(384), 2, + ACTIONS(161), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1615), 2, + ACTIONS(1563), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1481), 19, + STATE(1354), 19, sym__getline_exp, sym_getline_input, sym_getline_file, @@ -71234,44 +71584,44 @@ static const uint16_t ts_small_parse_table[] = { sym_string, sym_func_call, sym_indirect_func_call, - [56333] = 18, - ACTIONS(11), 1, - anon_sym_LPAREN, - ACTIONS(21), 1, - anon_sym_BANG, - ACTIONS(25), 1, + [56390] = 18, + ACTIONS(125), 1, anon_sym_DOLLAR, - ACTIONS(29), 1, + ACTIONS(1597), 1, + sym_identifier, + ACTIONS(1613), 1, aux_sym_number_token1, - ACTIONS(31), 1, + ACTIONS(1615), 1, aux_sym_number_token2, - ACTIONS(33), 1, + ACTIONS(1617), 1, anon_sym_DQUOTE, - ACTIONS(1599), 1, - sym_identifier, - ACTIONS(1601), 1, + ACTIONS(1745), 1, + anon_sym_LPAREN, + ACTIONS(1747), 1, anon_sym_getline, - ACTIONS(1603), 1, + ACTIONS(1749), 1, anon_sym_SLASH, - ACTIONS(1607), 1, + ACTIONS(1753), 1, + anon_sym_BANG, + ACTIONS(1757), 1, anon_sym_AT, - STATE(445), 1, + STATE(165), 1, sym_ns_qualified_name, - STATE(474), 1, + STATE(216), 1, sym_array_ref, - STATE(480), 1, + STATE(233), 1, sym_field_ref, - STATE(556), 1, + STATE(234), 1, sym__binary_in, - STATE(2075), 1, + STATE(1956), 1, sym_namespace, - ACTIONS(19), 2, + ACTIONS(1751), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1605), 2, + ACTIONS(1755), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(537), 19, + STATE(277), 19, sym__getline_exp, sym_getline_input, sym_getline_file, @@ -71291,44 +71641,86 @@ static const uint16_t ts_small_parse_table[] = { sym_string, sym_func_call, sym_indirect_func_call, - [56408] = 18, - ACTIONS(332), 1, + [56465] = 3, + ACTIONS(650), 1, + anon_sym_COLON_COLON, + ACTIONS(1021), 1, + anon_sym_LBRACK, + ACTIONS(1467), 36, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_if, + anon_sym_LPAREN, + anon_sym_while, + anon_sym_do, + anon_sym_for, + sym_break_statement, + sym_continue_statement, + anon_sym_delete, + anon_sym_exit, + anon_sym_return, + anon_sym_switch, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, + anon_sym_getline, + sym_next_statement, + sym_nextfile_statement, + anon_sym_print, + anon_sym_printf, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_DOLLAR, + anon_sym_AT, + sym_identifier, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DQUOTE, + anon_sym_POUND, + [56510] = 18, + ACTIONS(125), 1, anon_sym_DOLLAR, - ACTIONS(1675), 1, + ACTIONS(1597), 1, sym_identifier, - ACTIONS(1691), 1, + ACTIONS(1613), 1, aux_sym_number_token1, - ACTIONS(1693), 1, + ACTIONS(1615), 1, aux_sym_number_token2, - ACTIONS(1695), 1, + ACTIONS(1617), 1, anon_sym_DQUOTE, - ACTIONS(1741), 1, + ACTIONS(1745), 1, anon_sym_LPAREN, - ACTIONS(1743), 1, + ACTIONS(1747), 1, anon_sym_getline, - ACTIONS(1745), 1, - anon_sym_SLASH, ACTIONS(1749), 1, - anon_sym_BANG, + anon_sym_SLASH, ACTIONS(1753), 1, + anon_sym_BANG, + ACTIONS(1757), 1, anon_sym_AT, - STATE(163), 1, + STATE(165), 1, sym_ns_qualified_name, - STATE(169), 1, + STATE(216), 1, sym_array_ref, - STATE(200), 1, - sym__binary_in, - STATE(202), 1, + STATE(233), 1, sym_field_ref, - STATE(2063), 1, + STATE(234), 1, + sym__binary_in, + STATE(1956), 1, sym_namespace, - ACTIONS(1747), 2, + ACTIONS(1751), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1751), 2, + ACTIONS(1755), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(197), 19, + STATE(275), 19, sym__getline_exp, sym_getline_input, sym_getline_file, @@ -71348,44 +71740,44 @@ static const uint16_t ts_small_parse_table[] = { sym_string, sym_func_call, sym_indirect_func_call, - [56483] = 18, - ACTIONS(161), 1, + [56585] = 18, + ACTIONS(125), 1, anon_sym_DOLLAR, - ACTIONS(1557), 1, + ACTIONS(1597), 1, sym_identifier, - ACTIONS(1573), 1, + ACTIONS(1613), 1, aux_sym_number_token1, - ACTIONS(1575), 1, + ACTIONS(1615), 1, aux_sym_number_token2, - ACTIONS(1577), 1, + ACTIONS(1617), 1, anon_sym_DQUOTE, - ACTIONS(1707), 1, + ACTIONS(1745), 1, anon_sym_LPAREN, - ACTIONS(1709), 1, + ACTIONS(1747), 1, anon_sym_getline, - ACTIONS(1711), 1, + ACTIONS(1749), 1, anon_sym_SLASH, - ACTIONS(1715), 1, + ACTIONS(1753), 1, anon_sym_BANG, - ACTIONS(1719), 1, + ACTIONS(1757), 1, anon_sym_AT, - STATE(181), 1, + STATE(165), 1, sym_ns_qualified_name, - STATE(208), 1, + STATE(216), 1, sym_array_ref, - STATE(235), 1, - sym__binary_in, - STATE(236), 1, + STATE(233), 1, sym_field_ref, - STATE(1955), 1, + STATE(234), 1, + sym__binary_in, + STATE(1956), 1, sym_namespace, - ACTIONS(1713), 2, + ACTIONS(1751), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1717), 2, + ACTIONS(1755), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(270), 19, + STATE(282), 19, sym__getline_exp, sym_getline_input, sym_getline_file, @@ -71405,44 +71797,44 @@ static const uint16_t ts_small_parse_table[] = { sym_string, sym_func_call, sym_indirect_func_call, - [56558] = 18, - ACTIONS(1271), 1, - anon_sym_LPAREN, - ACTIONS(1279), 1, - anon_sym_BANG, - ACTIONS(1283), 1, + [56660] = 18, + ACTIONS(125), 1, anon_sym_DOLLAR, - ACTIONS(1287), 1, + ACTIONS(1597), 1, + sym_identifier, + ACTIONS(1613), 1, aux_sym_number_token1, - ACTIONS(1289), 1, + ACTIONS(1615), 1, aux_sym_number_token2, - ACTIONS(1291), 1, + ACTIONS(1617), 1, anon_sym_DQUOTE, - ACTIONS(1731), 1, - sym_identifier, - ACTIONS(1733), 1, + ACTIONS(1745), 1, + anon_sym_LPAREN, + ACTIONS(1747), 1, anon_sym_getline, - ACTIONS(1735), 1, + ACTIONS(1749), 1, anon_sym_SLASH, - ACTIONS(1739), 1, + ACTIONS(1753), 1, + anon_sym_BANG, + ACTIONS(1757), 1, anon_sym_AT, - STATE(1000), 1, + STATE(165), 1, sym_ns_qualified_name, - STATE(1168), 1, + STATE(216), 1, sym_array_ref, - STATE(1235), 1, + STATE(233), 1, sym_field_ref, - STATE(1502), 1, + STATE(234), 1, sym__binary_in, - STATE(2075), 1, + STATE(1956), 1, sym_namespace, - ACTIONS(1277), 2, + ACTIONS(1751), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1737), 2, + ACTIONS(1755), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1542), 19, + STATE(281), 19, sym__getline_exp, sym_getline_input, sym_getline_file, @@ -71462,44 +71854,44 @@ static const uint16_t ts_small_parse_table[] = { sym_string, sym_func_call, sym_indirect_func_call, - [56633] = 18, - ACTIONS(304), 1, - anon_sym_LPAREN, - ACTIONS(328), 1, - anon_sym_BANG, - ACTIONS(332), 1, + [56735] = 18, + ACTIONS(558), 1, anon_sym_DOLLAR, - ACTIONS(336), 1, + ACTIONS(1669), 1, + sym_identifier, + ACTIONS(1685), 1, aux_sym_number_token1, - ACTIONS(338), 1, + ACTIONS(1687), 1, aux_sym_number_token2, - ACTIONS(340), 1, + ACTIONS(1689), 1, anon_sym_DQUOTE, - ACTIONS(1579), 1, - sym_identifier, - ACTIONS(1581), 1, + ACTIONS(1725), 1, + anon_sym_LPAREN, + ACTIONS(1727), 1, anon_sym_getline, - ACTIONS(1583), 1, + ACTIONS(1729), 1, anon_sym_SLASH, - ACTIONS(1587), 1, + ACTIONS(1733), 1, + anon_sym_BANG, + ACTIONS(1737), 1, anon_sym_AT, - STATE(203), 1, + STATE(164), 1, sym_ns_qualified_name, - STATE(225), 1, + STATE(176), 1, sym_array_ref, - STATE(262), 1, + STATE(192), 1, sym_field_ref, - STATE(369), 1, + STATE(194), 1, sym__binary_in, - STATE(2063), 1, + STATE(2068), 1, sym_namespace, - ACTIONS(326), 2, + ACTIONS(1731), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1585), 2, + ACTIONS(1735), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(379), 19, + STATE(203), 19, sym__getline_exp, sym_getline_input, sym_getline_file, @@ -71519,44 +71911,44 @@ static const uint16_t ts_small_parse_table[] = { sym_string, sym_func_call, sym_indirect_func_call, - [56708] = 18, - ACTIONS(282), 1, + [56810] = 18, + ACTIONS(324), 1, anon_sym_DOLLAR, - ACTIONS(1557), 1, + ACTIONS(1669), 1, sym_identifier, - ACTIONS(1559), 1, + ACTIONS(1671), 1, anon_sym_LPAREN, - ACTIONS(1561), 1, + ACTIONS(1673), 1, anon_sym_getline, - ACTIONS(1563), 1, + ACTIONS(1675), 1, anon_sym_SLASH, - ACTIONS(1567), 1, + ACTIONS(1679), 1, anon_sym_BANG, - ACTIONS(1571), 1, + ACTIONS(1683), 1, anon_sym_AT, - ACTIONS(1573), 1, + ACTIONS(1685), 1, aux_sym_number_token1, - ACTIONS(1575), 1, + ACTIONS(1687), 1, aux_sym_number_token2, - ACTIONS(1577), 1, + ACTIONS(1689), 1, anon_sym_DQUOTE, - STATE(181), 1, + STATE(164), 1, sym_ns_qualified_name, - STATE(208), 1, + STATE(176), 1, sym_array_ref, - STATE(235), 1, - sym__binary_in, - STATE(236), 1, + STATE(192), 1, sym_field_ref, - STATE(1955), 1, + STATE(194), 1, + sym__binary_in, + STATE(2068), 1, sym_namespace, - ACTIONS(1565), 2, + ACTIONS(1677), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1569), 2, + ACTIONS(1681), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(649), 19, + STATE(610), 19, sym__getline_exp, sym_getline_input, sym_getline_file, @@ -71576,44 +71968,44 @@ static const uint16_t ts_small_parse_table[] = { sym_string, sym_func_call, sym_indirect_func_call, - [56783] = 18, - ACTIONS(282), 1, - anon_sym_DOLLAR, - ACTIONS(1557), 1, - sym_identifier, - ACTIONS(1559), 1, + [56885] = 18, + ACTIONS(1287), 1, anon_sym_LPAREN, - ACTIONS(1561), 1, - anon_sym_getline, - ACTIONS(1563), 1, - anon_sym_SLASH, - ACTIONS(1567), 1, + ACTIONS(1295), 1, anon_sym_BANG, - ACTIONS(1571), 1, - anon_sym_AT, - ACTIONS(1573), 1, + ACTIONS(1299), 1, + anon_sym_DOLLAR, + ACTIONS(1303), 1, aux_sym_number_token1, - ACTIONS(1575), 1, + ACTIONS(1305), 1, aux_sym_number_token2, - ACTIONS(1577), 1, + ACTIONS(1307), 1, anon_sym_DQUOTE, - STATE(181), 1, + ACTIONS(1761), 1, + sym_identifier, + ACTIONS(1763), 1, + anon_sym_getline, + ACTIONS(1765), 1, + anon_sym_SLASH, + ACTIONS(1769), 1, + anon_sym_AT, + STATE(960), 1, sym_ns_qualified_name, - STATE(208), 1, + STATE(1161), 1, sym_array_ref, - STATE(235), 1, - sym__binary_in, - STATE(236), 1, + STATE(1240), 1, sym_field_ref, - STATE(1955), 1, + STATE(1510), 1, + sym__binary_in, + STATE(2080), 1, sym_namespace, - ACTIONS(1565), 2, + ACTIONS(1293), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1569), 2, + ACTIONS(1767), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(238), 19, + STATE(1511), 19, sym__getline_exp, sym_getline_input, sym_getline_file, @@ -71633,44 +72025,44 @@ static const uint16_t ts_small_parse_table[] = { sym_string, sym_func_call, sym_indirect_func_call, - [56858] = 18, - ACTIONS(282), 1, + [56960] = 18, + ACTIONS(324), 1, anon_sym_DOLLAR, - ACTIONS(1557), 1, + ACTIONS(1669), 1, sym_identifier, - ACTIONS(1559), 1, + ACTIONS(1671), 1, anon_sym_LPAREN, - ACTIONS(1561), 1, + ACTIONS(1673), 1, anon_sym_getline, - ACTIONS(1563), 1, + ACTIONS(1675), 1, anon_sym_SLASH, - ACTIONS(1567), 1, + ACTIONS(1679), 1, anon_sym_BANG, - ACTIONS(1571), 1, + ACTIONS(1683), 1, anon_sym_AT, - ACTIONS(1573), 1, + ACTIONS(1685), 1, aux_sym_number_token1, - ACTIONS(1575), 1, + ACTIONS(1687), 1, aux_sym_number_token2, - ACTIONS(1577), 1, + ACTIONS(1689), 1, anon_sym_DQUOTE, - STATE(181), 1, + STATE(164), 1, sym_ns_qualified_name, - STATE(208), 1, + STATE(176), 1, sym_array_ref, - STATE(235), 1, - sym__binary_in, - STATE(236), 1, + STATE(192), 1, sym_field_ref, - STATE(1955), 1, + STATE(194), 1, + sym__binary_in, + STATE(2068), 1, sym_namespace, - ACTIONS(1565), 2, + ACTIONS(1677), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1569), 2, + ACTIONS(1681), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(651), 19, + STATE(627), 19, sym__getline_exp, sym_getline_input, sym_getline_file, @@ -71690,158 +72082,102 @@ static const uint16_t ts_small_parse_table[] = { sym_string, sym_func_call, sym_indirect_func_call, - [56933] = 18, - ACTIONS(282), 1, - anon_sym_DOLLAR, - ACTIONS(1557), 1, + [57035] = 19, + ACTIONS(5), 1, sym_identifier, - ACTIONS(1559), 1, + ACTIONS(11), 1, anon_sym_LPAREN, - ACTIONS(1561), 1, + ACTIONS(15), 1, anon_sym_getline, - ACTIONS(1563), 1, + ACTIONS(17), 1, anon_sym_SLASH, - ACTIONS(1567), 1, + ACTIONS(21), 1, anon_sym_BANG, - ACTIONS(1571), 1, - anon_sym_AT, - ACTIONS(1573), 1, + ACTIONS(25), 1, + anon_sym_DOLLAR, + ACTIONS(29), 1, aux_sym_number_token1, - ACTIONS(1575), 1, + ACTIONS(31), 1, aux_sym_number_token2, - ACTIONS(1577), 1, + ACTIONS(33), 1, anon_sym_DQUOTE, - STATE(181), 1, + ACTIONS(1721), 1, + anon_sym_AT, + STATE(433), 1, sym_ns_qualified_name, - STATE(208), 1, + STATE(459), 1, sym_array_ref, - STATE(235), 1, - sym__binary_in, - STATE(236), 1, + STATE(495), 1, sym_field_ref, - STATE(1955), 1, + STATE(539), 1, + sym__binary_in, + STATE(2080), 1, sym_namespace, - ACTIONS(1565), 2, + ACTIONS(19), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1569), 2, + ACTIONS(23), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(652), 19, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, + STATE(538), 9, sym_ternary_exp, sym_binary_exp, sym_unary_exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, sym_string_concat, - sym_regex, - sym_regex_constant, sym_grouping, sym__primitive, sym_number, sym_string, sym_func_call, - sym_indirect_func_call, - [57008] = 18, - ACTIONS(282), 1, - anon_sym_DOLLAR, - ACTIONS(1557), 1, - sym_identifier, - ACTIONS(1559), 1, - anon_sym_LPAREN, - ACTIONS(1561), 1, - anon_sym_getline, - ACTIONS(1563), 1, - anon_sym_SLASH, - ACTIONS(1567), 1, - anon_sym_BANG, - ACTIONS(1571), 1, - anon_sym_AT, - ACTIONS(1573), 1, - aux_sym_number_token1, - ACTIONS(1575), 1, - aux_sym_number_token2, - ACTIONS(1577), 1, - anon_sym_DQUOTE, - STATE(181), 1, - sym_ns_qualified_name, - STATE(208), 1, - sym_array_ref, - STATE(235), 1, - sym__binary_in, - STATE(236), 1, - sym_field_ref, - STATE(1955), 1, - sym_namespace, - ACTIONS(1565), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1569), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(653), 19, + STATE(569), 10, sym__getline_exp, sym_getline_input, sym_getline_file, sym__exp, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, sym_update_exp, sym_assignment_exp, sym_piped_io_exp, - sym_string_concat, sym_regex, sym_regex_constant, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, sym_indirect_func_call, - [57083] = 18, - ACTIONS(1271), 1, - anon_sym_LPAREN, - ACTIONS(1279), 1, - anon_sym_BANG, - ACTIONS(1283), 1, + [57112] = 18, + ACTIONS(1299), 1, anon_sym_DOLLAR, - ACTIONS(1287), 1, + ACTIONS(1629), 1, + sym_identifier, + ACTIONS(1645), 1, aux_sym_number_token1, - ACTIONS(1289), 1, + ACTIONS(1647), 1, aux_sym_number_token2, - ACTIONS(1291), 1, + ACTIONS(1649), 1, anon_sym_DQUOTE, - ACTIONS(1731), 1, - sym_identifier, - ACTIONS(1733), 1, + ACTIONS(1795), 1, + anon_sym_LPAREN, + ACTIONS(1797), 1, anon_sym_getline, - ACTIONS(1735), 1, + ACTIONS(1799), 1, anon_sym_SLASH, - ACTIONS(1739), 1, + ACTIONS(1803), 1, + anon_sym_BANG, + ACTIONS(1807), 1, anon_sym_AT, - STATE(1000), 1, + STATE(288), 1, sym_ns_qualified_name, - STATE(1168), 1, + STATE(308), 1, sym_array_ref, - STATE(1235), 1, - sym_field_ref, - STATE(1502), 1, + STATE(328), 1, sym__binary_in, - STATE(2075), 1, + STATE(331), 1, + sym_field_ref, + STATE(2080), 1, sym_namespace, - ACTIONS(1277), 2, + ACTIONS(1801), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1737), 2, + ACTIONS(1805), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1524), 19, + STATE(349), 19, sym__getline_exp, sym_getline_input, sym_getline_file, @@ -71861,215 +72197,218 @@ static const uint16_t ts_small_parse_table[] = { sym_string, sym_func_call, sym_indirect_func_call, - [57158] = 18, - ACTIONS(282), 1, - anon_sym_DOLLAR, - ACTIONS(1557), 1, + [57187] = 19, + ACTIONS(1285), 1, sym_identifier, - ACTIONS(1559), 1, + ACTIONS(1287), 1, anon_sym_LPAREN, - ACTIONS(1561), 1, + ACTIONS(1289), 1, anon_sym_getline, - ACTIONS(1563), 1, + ACTIONS(1291), 1, anon_sym_SLASH, - ACTIONS(1567), 1, + ACTIONS(1295), 1, anon_sym_BANG, - ACTIONS(1571), 1, + ACTIONS(1299), 1, + anon_sym_DOLLAR, + ACTIONS(1301), 1, anon_sym_AT, - ACTIONS(1573), 1, + ACTIONS(1303), 1, aux_sym_number_token1, - ACTIONS(1575), 1, + ACTIONS(1305), 1, aux_sym_number_token2, - ACTIONS(1577), 1, + ACTIONS(1307), 1, anon_sym_DQUOTE, - STATE(181), 1, + STATE(1093), 1, sym_ns_qualified_name, - STATE(208), 1, + STATE(1142), 1, sym_array_ref, - STATE(235), 1, - sym__binary_in, - STATE(236), 1, + STATE(1251), 1, sym_field_ref, - STATE(1955), 1, + STATE(1510), 1, + sym__binary_in, + STATE(2080), 1, sym_namespace, - ACTIONS(1565), 2, + ACTIONS(1293), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1569), 2, + ACTIONS(1297), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(655), 19, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, + STATE(1505), 9, sym_ternary_exp, sym_binary_exp, sym_unary_exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, sym_string_concat, - sym_regex, - sym_regex_constant, sym_grouping, sym__primitive, sym_number, sym_string, sym_func_call, + STATE(1643), 10, + sym__getline_exp, + sym_getline_input, + sym_getline_file, + sym__exp, + sym_update_exp, + sym_assignment_exp, + sym_piped_io_exp, + sym_regex, + sym_regex_constant, sym_indirect_func_call, - [57233] = 18, - ACTIONS(282), 1, - anon_sym_DOLLAR, - ACTIONS(1557), 1, + [57264] = 19, + ACTIONS(85), 1, sym_identifier, - ACTIONS(1559), 1, + ACTIONS(89), 1, anon_sym_LPAREN, - ACTIONS(1561), 1, + ACTIONS(111), 1, anon_sym_getline, - ACTIONS(1563), 1, + ACTIONS(117), 1, anon_sym_SLASH, - ACTIONS(1567), 1, + ACTIONS(121), 1, anon_sym_BANG, - ACTIONS(1571), 1, + ACTIONS(125), 1, + anon_sym_DOLLAR, + ACTIONS(127), 1, anon_sym_AT, - ACTIONS(1573), 1, + ACTIONS(129), 1, aux_sym_number_token1, - ACTIONS(1575), 1, + ACTIONS(131), 1, aux_sym_number_token2, - ACTIONS(1577), 1, + ACTIONS(133), 1, anon_sym_DQUOTE, - STATE(181), 1, + STATE(244), 1, sym_ns_qualified_name, - STATE(208), 1, + STATE(268), 1, sym_array_ref, - STATE(235), 1, - sym__binary_in, - STATE(236), 1, + STATE(274), 1, sym_field_ref, - STATE(1955), 1, + STATE(426), 1, + sym__binary_in, + STATE(1956), 1, sym_namespace, - ACTIONS(1565), 2, + ACTIONS(119), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1569), 2, + ACTIONS(123), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(656), 19, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, + STATE(427), 9, sym_ternary_exp, sym_binary_exp, sym_unary_exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, sym_string_concat, - sym_regex, - sym_regex_constant, sym_grouping, sym__primitive, sym_number, sym_string, sym_func_call, + STATE(499), 10, + sym__getline_exp, + sym_getline_input, + sym_getline_file, + sym__exp, + sym_update_exp, + sym_assignment_exp, + sym_piped_io_exp, + sym_regex, + sym_regex_constant, sym_indirect_func_call, - [57308] = 18, - ACTIONS(282), 1, - anon_sym_DOLLAR, - ACTIONS(1557), 1, + [57341] = 19, + ACTIONS(85), 1, sym_identifier, - ACTIONS(1559), 1, + ACTIONS(89), 1, anon_sym_LPAREN, - ACTIONS(1561), 1, + ACTIONS(111), 1, anon_sym_getline, - ACTIONS(1563), 1, + ACTIONS(117), 1, anon_sym_SLASH, - ACTIONS(1567), 1, + ACTIONS(121), 1, anon_sym_BANG, - ACTIONS(1571), 1, + ACTIONS(125), 1, + anon_sym_DOLLAR, + ACTIONS(127), 1, anon_sym_AT, - ACTIONS(1573), 1, + ACTIONS(129), 1, aux_sym_number_token1, - ACTIONS(1575), 1, + ACTIONS(131), 1, aux_sym_number_token2, - ACTIONS(1577), 1, + ACTIONS(133), 1, anon_sym_DQUOTE, - STATE(181), 1, + STATE(244), 1, sym_ns_qualified_name, - STATE(208), 1, + STATE(268), 1, sym_array_ref, - STATE(235), 1, - sym__binary_in, - STATE(236), 1, + STATE(274), 1, sym_field_ref, - STATE(1955), 1, + STATE(426), 1, + sym__binary_in, + STATE(1956), 1, sym_namespace, - ACTIONS(1565), 2, + ACTIONS(119), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1569), 2, + ACTIONS(123), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(657), 19, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, + STATE(427), 9, sym_ternary_exp, sym_binary_exp, sym_unary_exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, sym_string_concat, - sym_regex, - sym_regex_constant, sym_grouping, sym__primitive, sym_number, sym_string, sym_func_call, + STATE(502), 10, + sym__getline_exp, + sym_getline_input, + sym_getline_file, + sym__exp, + sym_update_exp, + sym_assignment_exp, + sym_piped_io_exp, + sym_regex, + sym_regex_constant, sym_indirect_func_call, - [57383] = 18, - ACTIONS(123), 1, - aux_sym_number_token1, - ACTIONS(272), 1, + [57418] = 18, + ACTIONS(11), 1, anon_sym_LPAREN, - ACTIONS(278), 1, + ACTIONS(21), 1, anon_sym_BANG, - ACTIONS(282), 1, + ACTIONS(25), 1, anon_sym_DOLLAR, - ACTIONS(286), 1, + ACTIONS(29), 1, + aux_sym_number_token1, + ACTIONS(31), 1, aux_sym_number_token2, - ACTIONS(288), 1, + ACTIONS(33), 1, anon_sym_DQUOTE, - ACTIONS(1697), 1, + ACTIONS(1587), 1, sym_identifier, - ACTIONS(1699), 1, + ACTIONS(1589), 1, anon_sym_getline, - ACTIONS(1701), 1, + ACTIONS(1591), 1, anon_sym_SLASH, - ACTIONS(1705), 1, + ACTIONS(1595), 1, anon_sym_AT, - STATE(598), 1, + STATE(425), 1, sym_ns_qualified_name, - STATE(622), 1, + STATE(467), 1, sym_array_ref, - STATE(684), 1, + STATE(490), 1, sym_field_ref, - STATE(1373), 1, + STATE(539), 1, sym__binary_in, - STATE(1955), 1, + STATE(2080), 1, sym_namespace, - ACTIONS(115), 2, + ACTIONS(19), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1703), 2, + ACTIONS(1593), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1381), 19, + STATE(542), 19, sym__getline_exp, sym_getline_input, sym_getline_file, @@ -72089,44 +72428,44 @@ static const uint16_t ts_small_parse_table[] = { sym_string, sym_func_call, sym_indirect_func_call, - [57458] = 18, - ACTIONS(123), 1, - aux_sym_number_token1, - ACTIONS(272), 1, - anon_sym_LPAREN, - ACTIONS(278), 1, - anon_sym_BANG, - ACTIONS(282), 1, + [57493] = 18, + ACTIONS(444), 1, anon_sym_DOLLAR, - ACTIONS(286), 1, + ACTIONS(1597), 1, + sym_identifier, + ACTIONS(1613), 1, + aux_sym_number_token1, + ACTIONS(1615), 1, aux_sym_number_token2, - ACTIONS(288), 1, + ACTIONS(1617), 1, anon_sym_DQUOTE, - ACTIONS(1697), 1, - sym_identifier, - ACTIONS(1699), 1, + ACTIONS(1707), 1, + anon_sym_LPAREN, + ACTIONS(1709), 1, anon_sym_getline, - ACTIONS(1701), 1, + ACTIONS(1711), 1, anon_sym_SLASH, - ACTIONS(1705), 1, + ACTIONS(1715), 1, + anon_sym_BANG, + ACTIONS(1719), 1, anon_sym_AT, - STATE(598), 1, + STATE(165), 1, sym_ns_qualified_name, - STATE(622), 1, + STATE(216), 1, sym_array_ref, - STATE(684), 1, + STATE(233), 1, sym_field_ref, - STATE(1373), 1, + STATE(234), 1, sym__binary_in, - STATE(1955), 1, + STATE(1956), 1, sym_namespace, - ACTIONS(115), 2, + ACTIONS(1713), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1703), 2, + ACTIONS(1717), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1425), 19, + STATE(661), 19, sym__getline_exp, sym_getline_input, sym_getline_file, @@ -72146,44 +72485,44 @@ static const uint16_t ts_small_parse_table[] = { sym_string, sym_func_call, sym_indirect_func_call, - [57533] = 19, - ACTIONS(79), 1, - aux_sym_number_token1, - ACTIONS(450), 1, + [57568] = 19, + ACTIONS(1285), 1, sym_identifier, - ACTIONS(456), 1, + ACTIONS(1287), 1, anon_sym_LPAREN, - ACTIONS(468), 1, + ACTIONS(1289), 1, anon_sym_getline, - ACTIONS(474), 1, + ACTIONS(1291), 1, anon_sym_SLASH, - ACTIONS(478), 1, + ACTIONS(1295), 1, anon_sym_BANG, - ACTIONS(482), 1, + ACTIONS(1299), 1, anon_sym_DOLLAR, - ACTIONS(484), 1, + ACTIONS(1301), 1, anon_sym_AT, - ACTIONS(486), 1, + ACTIONS(1303), 1, + aux_sym_number_token1, + ACTIONS(1305), 1, aux_sym_number_token2, - ACTIONS(488), 1, + ACTIONS(1307), 1, anon_sym_DQUOTE, - STATE(647), 1, + STATE(1093), 1, sym_ns_qualified_name, - STATE(774), 1, + STATE(1142), 1, sym_array_ref, - STATE(995), 1, + STATE(1251), 1, sym_field_ref, - STATE(1309), 1, + STATE(1510), 1, sym__binary_in, - STATE(2063), 1, + STATE(2080), 1, sym_namespace, - ACTIONS(476), 2, + ACTIONS(1293), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(480), 2, + ACTIONS(1297), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1441), 9, + STATE(1505), 9, sym_ternary_exp, sym_binary_exp, sym_unary_exp, @@ -72193,7 +72532,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_string, sym_func_call, - STATE(1365), 10, + STATE(1630), 10, sym__getline_exp, sym_getline_input, sym_getline_file, @@ -72204,158 +72543,102 @@ static const uint16_t ts_small_parse_table[] = { sym_regex, sym_regex_constant, sym_indirect_func_call, - [57610] = 18, - ACTIONS(123), 1, - aux_sym_number_token1, - ACTIONS(272), 1, + [57645] = 19, + ACTIONS(1285), 1, + sym_identifier, + ACTIONS(1287), 1, anon_sym_LPAREN, - ACTIONS(278), 1, + ACTIONS(1289), 1, + anon_sym_getline, + ACTIONS(1291), 1, + anon_sym_SLASH, + ACTIONS(1295), 1, anon_sym_BANG, - ACTIONS(282), 1, + ACTIONS(1299), 1, anon_sym_DOLLAR, - ACTIONS(286), 1, + ACTIONS(1301), 1, + anon_sym_AT, + ACTIONS(1303), 1, + aux_sym_number_token1, + ACTIONS(1305), 1, aux_sym_number_token2, - ACTIONS(288), 1, + ACTIONS(1307), 1, anon_sym_DQUOTE, - ACTIONS(1697), 1, - sym_identifier, - ACTIONS(1699), 1, - anon_sym_getline, - ACTIONS(1701), 1, - anon_sym_SLASH, - ACTIONS(1705), 1, - anon_sym_AT, - STATE(598), 1, + STATE(1093), 1, sym_ns_qualified_name, - STATE(622), 1, + STATE(1142), 1, sym_array_ref, - STATE(684), 1, + STATE(1251), 1, sym_field_ref, - STATE(1373), 1, + STATE(1510), 1, sym__binary_in, - STATE(1955), 1, + STATE(2080), 1, sym_namespace, - ACTIONS(115), 2, + ACTIONS(1293), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1703), 2, + ACTIONS(1297), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1424), 19, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, + STATE(1505), 9, sym_ternary_exp, sym_binary_exp, sym_unary_exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, sym_string_concat, - sym_regex, - sym_regex_constant, sym_grouping, sym__primitive, sym_number, sym_string, sym_func_call, - sym_indirect_func_call, - [57685] = 18, - ACTIONS(282), 1, - anon_sym_DOLLAR, - ACTIONS(1557), 1, - sym_identifier, - ACTIONS(1559), 1, - anon_sym_LPAREN, - ACTIONS(1561), 1, - anon_sym_getline, - ACTIONS(1563), 1, - anon_sym_SLASH, - ACTIONS(1567), 1, - anon_sym_BANG, - ACTIONS(1571), 1, - anon_sym_AT, - ACTIONS(1573), 1, - aux_sym_number_token1, - ACTIONS(1575), 1, - aux_sym_number_token2, - ACTIONS(1577), 1, - anon_sym_DQUOTE, - STATE(181), 1, - sym_ns_qualified_name, - STATE(208), 1, - sym_array_ref, - STATE(235), 1, - sym__binary_in, - STATE(236), 1, - sym_field_ref, - STATE(1955), 1, - sym_namespace, - ACTIONS(1565), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1569), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(658), 19, + STATE(1633), 10, sym__getline_exp, sym_getline_input, sym_getline_file, sym__exp, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, sym_update_exp, sym_assignment_exp, sym_piped_io_exp, - sym_string_concat, sym_regex, sym_regex_constant, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, sym_indirect_func_call, - [57760] = 18, - ACTIONS(1283), 1, + [57722] = 18, + ACTIONS(125), 1, anon_sym_DOLLAR, - ACTIONS(1619), 1, + ACTIONS(1597), 1, sym_identifier, - ACTIONS(1635), 1, + ACTIONS(1613), 1, aux_sym_number_token1, - ACTIONS(1637), 1, + ACTIONS(1615), 1, aux_sym_number_token2, - ACTIONS(1639), 1, + ACTIONS(1617), 1, anon_sym_DQUOTE, - ACTIONS(1755), 1, + ACTIONS(1745), 1, anon_sym_LPAREN, - ACTIONS(1757), 1, + ACTIONS(1747), 1, anon_sym_getline, - ACTIONS(1759), 1, + ACTIONS(1749), 1, anon_sym_SLASH, - ACTIONS(1763), 1, + ACTIONS(1753), 1, anon_sym_BANG, - ACTIONS(1767), 1, + ACTIONS(1757), 1, anon_sym_AT, - STATE(293), 1, + STATE(165), 1, sym_ns_qualified_name, - STATE(302), 1, + STATE(216), 1, sym_array_ref, - STATE(331), 1, - sym__binary_in, - STATE(334), 1, + STATE(233), 1, sym_field_ref, - STATE(2075), 1, + STATE(234), 1, + sym__binary_in, + STATE(1956), 1, sym_namespace, - ACTIONS(1761), 2, + ACTIONS(1751), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1765), 2, + ACTIONS(1755), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(341), 19, + STATE(273), 19, sym__getline_exp, sym_getline_input, sym_getline_file, @@ -72375,44 +72658,44 @@ static const uint16_t ts_small_parse_table[] = { sym_string, sym_func_call, sym_indirect_func_call, - [57835] = 18, - ACTIONS(560), 1, - anon_sym_DOLLAR, - ACTIONS(1675), 1, - sym_identifier, - ACTIONS(1691), 1, + [57797] = 18, + ACTIONS(169), 1, aux_sym_number_token1, - ACTIONS(1693), 1, + ACTIONS(306), 1, aux_sym_number_token2, - ACTIONS(1695), 1, + ACTIONS(308), 1, anon_sym_DQUOTE, - ACTIONS(1795), 1, + ACTIONS(434), 1, anon_sym_LPAREN, - ACTIONS(1797), 1, + ACTIONS(440), 1, + anon_sym_BANG, + ACTIONS(444), 1, + anon_sym_DOLLAR, + ACTIONS(1557), 1, + sym_identifier, + ACTIONS(1559), 1, anon_sym_getline, - ACTIONS(1799), 1, + ACTIONS(1561), 1, anon_sym_SLASH, - ACTIONS(1803), 1, - anon_sym_BANG, - ACTIONS(1807), 1, + ACTIONS(1565), 1, anon_sym_AT, - STATE(163), 1, + STATE(606), 1, sym_ns_qualified_name, - STATE(169), 1, + STATE(611), 1, sym_array_ref, - STATE(200), 1, - sym__binary_in, - STATE(202), 1, + STATE(686), 1, sym_field_ref, - STATE(2063), 1, + STATE(1385), 1, + sym__binary_in, + STATE(1956), 1, sym_namespace, - ACTIONS(1801), 2, + ACTIONS(161), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1805), 2, + ACTIONS(1563), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(640), 19, + STATE(1414), 19, sym__getline_exp, sym_getline_input, sym_getline_file, @@ -72432,91 +72715,44 @@ static const uint16_t ts_small_parse_table[] = { sym_string, sym_func_call, sym_indirect_func_call, - [57910] = 8, - ACTIONS(732), 1, - anon_sym_EQ, - ACTIONS(908), 1, - anon_sym_LBRACK, - ACTIONS(1443), 1, - anon_sym_LPAREN2, - ACTIONS(910), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(654), 6, - sym_concatenating_space, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(989), 6, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - ACTIONS(644), 9, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(658), 12, - anon_sym_in, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [57965] = 19, - ACTIONS(123), 1, + [57872] = 19, + ACTIONS(79), 1, aux_sym_number_token1, - ACTIONS(286), 1, + ACTIONS(328), 1, aux_sym_number_token2, - ACTIONS(288), 1, + ACTIONS(330), 1, anon_sym_DQUOTE, - ACTIONS(362), 1, + ACTIONS(336), 1, sym_identifier, - ACTIONS(366), 1, + ACTIONS(342), 1, anon_sym_LPAREN, - ACTIONS(376), 1, + ACTIONS(354), 1, anon_sym_getline, - ACTIONS(382), 1, + ACTIONS(360), 1, anon_sym_SLASH, - ACTIONS(386), 1, + ACTIONS(364), 1, anon_sym_BANG, - ACTIONS(390), 1, + ACTIONS(368), 1, anon_sym_DOLLAR, - ACTIONS(392), 1, + ACTIONS(370), 1, anon_sym_AT, - STATE(744), 1, + STATE(672), 1, sym_ns_qualified_name, - STATE(1022), 1, + STATE(740), 1, sym_array_ref, - STATE(1121), 1, + STATE(950), 1, sym_field_ref, - STATE(1373), 1, + STATE(1305), 1, sym__binary_in, - STATE(1955), 1, + STATE(2068), 1, sym_namespace, - ACTIONS(384), 2, + ACTIONS(362), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(388), 2, + ACTIONS(366), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1470), 9, + STATE(1461), 9, sym_ternary_exp, sym_binary_exp, sym_unary_exp, @@ -72526,7 +72762,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_string, sym_func_call, - STATE(1569), 10, + STATE(1347), 10, sym__getline_exp, sym_getline_input, sym_getline_file, @@ -72537,102 +72773,158 @@ static const uint16_t ts_small_parse_table[] = { sym_regex, sym_regex_constant, sym_indirect_func_call, - [58042] = 19, - ACTIONS(123), 1, + [57949] = 18, + ACTIONS(79), 1, aux_sym_number_token1, - ACTIONS(286), 1, + ACTIONS(312), 1, + anon_sym_LPAREN, + ACTIONS(320), 1, + anon_sym_BANG, + ACTIONS(324), 1, + anon_sym_DOLLAR, + ACTIONS(328), 1, aux_sym_number_token2, - ACTIONS(288), 1, + ACTIONS(330), 1, anon_sym_DQUOTE, - ACTIONS(362), 1, + ACTIONS(1577), 1, sym_identifier, - ACTIONS(366), 1, - anon_sym_LPAREN, - ACTIONS(376), 1, + ACTIONS(1579), 1, anon_sym_getline, - ACTIONS(382), 1, + ACTIONS(1581), 1, anon_sym_SLASH, - ACTIONS(386), 1, - anon_sym_BANG, - ACTIONS(390), 1, - anon_sym_DOLLAR, - ACTIONS(392), 1, + ACTIONS(1585), 1, anon_sym_AT, - STATE(744), 1, + STATE(591), 1, sym_ns_qualified_name, - STATE(1022), 1, + STATE(605), 1, sym_array_ref, - STATE(1121), 1, + STATE(628), 1, sym_field_ref, - STATE(1373), 1, + STATE(1305), 1, sym__binary_in, - STATE(1955), 1, + STATE(2068), 1, sym_namespace, - ACTIONS(384), 2, + ACTIONS(71), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(388), 2, + ACTIONS(1583), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1470), 9, + STATE(1375), 19, + sym__getline_exp, + sym_getline_input, + sym_getline_file, + sym__exp, sym_ternary_exp, sym_binary_exp, sym_unary_exp, + sym_update_exp, + sym_assignment_exp, + sym_piped_io_exp, sym_string_concat, + sym_regex, + sym_regex_constant, sym_grouping, sym__primitive, sym_number, sym_string, sym_func_call, - STATE(1571), 10, + sym_indirect_func_call, + [58024] = 18, + ACTIONS(25), 1, + anon_sym_DOLLAR, + ACTIONS(1629), 1, + sym_identifier, + ACTIONS(1631), 1, + anon_sym_LPAREN, + ACTIONS(1633), 1, + anon_sym_getline, + ACTIONS(1635), 1, + anon_sym_SLASH, + ACTIONS(1639), 1, + anon_sym_BANG, + ACTIONS(1643), 1, + anon_sym_AT, + ACTIONS(1645), 1, + aux_sym_number_token1, + ACTIONS(1647), 1, + aux_sym_number_token2, + ACTIONS(1649), 1, + anon_sym_DQUOTE, + STATE(288), 1, + sym_ns_qualified_name, + STATE(308), 1, + sym_array_ref, + STATE(328), 1, + sym__binary_in, + STATE(331), 1, + sym_field_ref, + STATE(2080), 1, + sym_namespace, + ACTIONS(1637), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1641), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(496), 19, sym__getline_exp, sym_getline_input, sym_getline_file, sym__exp, + sym_ternary_exp, + sym_binary_exp, + sym_unary_exp, sym_update_exp, sym_assignment_exp, sym_piped_io_exp, + sym_string_concat, sym_regex, sym_regex_constant, + sym_grouping, + sym__primitive, + sym_number, + sym_string, + sym_func_call, sym_indirect_func_call, - [58119] = 18, - ACTIONS(1283), 1, + [58099] = 18, + ACTIONS(1287), 1, + anon_sym_LPAREN, + ACTIONS(1295), 1, + anon_sym_BANG, + ACTIONS(1299), 1, anon_sym_DOLLAR, - ACTIONS(1619), 1, - sym_identifier, - ACTIONS(1635), 1, + ACTIONS(1303), 1, aux_sym_number_token1, - ACTIONS(1637), 1, + ACTIONS(1305), 1, aux_sym_number_token2, - ACTIONS(1639), 1, + ACTIONS(1307), 1, anon_sym_DQUOTE, - ACTIONS(1755), 1, - anon_sym_LPAREN, - ACTIONS(1757), 1, + ACTIONS(1761), 1, + sym_identifier, + ACTIONS(1763), 1, anon_sym_getline, - ACTIONS(1759), 1, + ACTIONS(1765), 1, anon_sym_SLASH, - ACTIONS(1763), 1, - anon_sym_BANG, - ACTIONS(1767), 1, + ACTIONS(1769), 1, anon_sym_AT, - STATE(293), 1, + STATE(960), 1, sym_ns_qualified_name, - STATE(302), 1, + STATE(1161), 1, sym_array_ref, - STATE(331), 1, - sym__binary_in, - STATE(334), 1, + STATE(1240), 1, sym_field_ref, - STATE(2075), 1, + STATE(1510), 1, + sym__binary_in, + STATE(2080), 1, sym_namespace, - ACTIONS(1761), 2, + ACTIONS(1293), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1765), 2, + ACTIONS(1767), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1251), 19, + STATE(1526), 19, sym__getline_exp, sym_getline_input, sym_getline_file, @@ -72652,44 +72944,44 @@ static const uint16_t ts_small_parse_table[] = { sym_string, sym_func_call, sym_indirect_func_call, - [58194] = 18, - ACTIONS(1283), 1, + [58174] = 18, + ACTIONS(444), 1, anon_sym_DOLLAR, - ACTIONS(1619), 1, + ACTIONS(1597), 1, sym_identifier, - ACTIONS(1635), 1, + ACTIONS(1613), 1, aux_sym_number_token1, - ACTIONS(1637), 1, + ACTIONS(1615), 1, aux_sym_number_token2, - ACTIONS(1639), 1, + ACTIONS(1617), 1, anon_sym_DQUOTE, - ACTIONS(1755), 1, + ACTIONS(1707), 1, anon_sym_LPAREN, - ACTIONS(1757), 1, + ACTIONS(1709), 1, anon_sym_getline, - ACTIONS(1759), 1, + ACTIONS(1711), 1, anon_sym_SLASH, - ACTIONS(1763), 1, + ACTIONS(1715), 1, anon_sym_BANG, - ACTIONS(1767), 1, + ACTIONS(1719), 1, anon_sym_AT, - STATE(293), 1, + STATE(165), 1, sym_ns_qualified_name, - STATE(302), 1, + STATE(216), 1, sym_array_ref, - STATE(331), 1, - sym__binary_in, - STATE(334), 1, + STATE(233), 1, sym_field_ref, - STATE(2075), 1, + STATE(234), 1, + sym__binary_in, + STATE(1956), 1, sym_namespace, - ACTIONS(1761), 2, + ACTIONS(1713), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1765), 2, + ACTIONS(1717), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1253), 19, + STATE(662), 19, sym__getline_exp, sym_getline_input, sym_getline_file, @@ -72709,44 +73001,44 @@ static const uint16_t ts_small_parse_table[] = { sym_string, sym_func_call, sym_indirect_func_call, - [58269] = 18, - ACTIONS(304), 1, - anon_sym_LPAREN, - ACTIONS(328), 1, - anon_sym_BANG, - ACTIONS(332), 1, + [58249] = 18, + ACTIONS(25), 1, anon_sym_DOLLAR, - ACTIONS(336), 1, - aux_sym_number_token1, - ACTIONS(338), 1, - aux_sym_number_token2, - ACTIONS(340), 1, - anon_sym_DQUOTE, - ACTIONS(1579), 1, + ACTIONS(1629), 1, sym_identifier, - ACTIONS(1581), 1, + ACTIONS(1631), 1, + anon_sym_LPAREN, + ACTIONS(1633), 1, anon_sym_getline, - ACTIONS(1583), 1, + ACTIONS(1635), 1, anon_sym_SLASH, - ACTIONS(1587), 1, + ACTIONS(1639), 1, + anon_sym_BANG, + ACTIONS(1643), 1, anon_sym_AT, - STATE(203), 1, + ACTIONS(1645), 1, + aux_sym_number_token1, + ACTIONS(1647), 1, + aux_sym_number_token2, + ACTIONS(1649), 1, + anon_sym_DQUOTE, + STATE(288), 1, sym_ns_qualified_name, - STATE(225), 1, + STATE(308), 1, sym_array_ref, - STATE(262), 1, - sym_field_ref, - STATE(369), 1, + STATE(328), 1, sym__binary_in, - STATE(2063), 1, + STATE(331), 1, + sym_field_ref, + STATE(2080), 1, sym_namespace, - ACTIONS(326), 2, + ACTIONS(1637), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1585), 2, + ACTIONS(1641), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(376), 19, + STATE(481), 19, sym__getline_exp, sym_getline_input, sym_getline_file, @@ -72766,102 +73058,101 @@ static const uint16_t ts_small_parse_table[] = { sym_string, sym_func_call, sym_indirect_func_call, - [58344] = 19, - ACTIONS(123), 1, + [58324] = 18, + ACTIONS(444), 1, + anon_sym_DOLLAR, + ACTIONS(1597), 1, + sym_identifier, + ACTIONS(1613), 1, aux_sym_number_token1, - ACTIONS(286), 1, + ACTIONS(1615), 1, aux_sym_number_token2, - ACTIONS(288), 1, + ACTIONS(1617), 1, anon_sym_DQUOTE, - ACTIONS(362), 1, - sym_identifier, - ACTIONS(366), 1, + ACTIONS(1707), 1, anon_sym_LPAREN, - ACTIONS(376), 1, + ACTIONS(1709), 1, anon_sym_getline, - ACTIONS(382), 1, + ACTIONS(1711), 1, anon_sym_SLASH, - ACTIONS(386), 1, + ACTIONS(1715), 1, anon_sym_BANG, - ACTIONS(390), 1, - anon_sym_DOLLAR, - ACTIONS(392), 1, + ACTIONS(1719), 1, anon_sym_AT, - STATE(744), 1, + STATE(165), 1, sym_ns_qualified_name, - STATE(1022), 1, + STATE(216), 1, sym_array_ref, - STATE(1121), 1, + STATE(233), 1, sym_field_ref, - STATE(1373), 1, + STATE(234), 1, sym__binary_in, - STATE(1955), 1, + STATE(1956), 1, sym_namespace, - ACTIONS(384), 2, + ACTIONS(1713), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(388), 2, + ACTIONS(1717), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1470), 9, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_string_concat, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - STATE(1404), 10, + STATE(223), 19, sym__getline_exp, sym_getline_input, sym_getline_file, sym__exp, + sym_ternary_exp, + sym_binary_exp, + sym_unary_exp, sym_update_exp, sym_assignment_exp, sym_piped_io_exp, + sym_string_concat, sym_regex, sym_regex_constant, + sym_grouping, + sym__primitive, + sym_number, + sym_string, + sym_func_call, sym_indirect_func_call, - [58421] = 19, - ACTIONS(79), 1, - aux_sym_number_token1, - ACTIONS(450), 1, + [58399] = 19, + ACTIONS(1285), 1, sym_identifier, - ACTIONS(456), 1, + ACTIONS(1287), 1, anon_sym_LPAREN, - ACTIONS(468), 1, + ACTIONS(1289), 1, anon_sym_getline, - ACTIONS(474), 1, + ACTIONS(1291), 1, anon_sym_SLASH, - ACTIONS(478), 1, + ACTIONS(1295), 1, anon_sym_BANG, - ACTIONS(482), 1, + ACTIONS(1299), 1, anon_sym_DOLLAR, - ACTIONS(484), 1, + ACTIONS(1301), 1, anon_sym_AT, - ACTIONS(486), 1, + ACTIONS(1303), 1, + aux_sym_number_token1, + ACTIONS(1305), 1, aux_sym_number_token2, - ACTIONS(488), 1, + ACTIONS(1307), 1, anon_sym_DQUOTE, - STATE(647), 1, + STATE(1093), 1, sym_ns_qualified_name, - STATE(774), 1, + STATE(1142), 1, sym_array_ref, - STATE(995), 1, + STATE(1251), 1, sym_field_ref, - STATE(1309), 1, + STATE(1510), 1, sym__binary_in, - STATE(2063), 1, + STATE(2080), 1, sym_namespace, - ACTIONS(476), 2, + ACTIONS(1293), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(480), 2, + ACTIONS(1297), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1441), 9, + STATE(1505), 9, sym_ternary_exp, sym_binary_exp, sym_unary_exp, @@ -72871,7 +73162,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_string, sym_func_call, - STATE(1466), 10, + STATE(1639), 10, sym__getline_exp, sym_getline_input, sym_getline_file, @@ -72882,44 +73173,44 @@ static const uint16_t ts_small_parse_table[] = { sym_regex, sym_regex_constant, sym_indirect_func_call, - [58498] = 18, - ACTIONS(332), 1, + [58476] = 18, + ACTIONS(444), 1, anon_sym_DOLLAR, - ACTIONS(1675), 1, + ACTIONS(1597), 1, sym_identifier, - ACTIONS(1691), 1, + ACTIONS(1613), 1, aux_sym_number_token1, - ACTIONS(1693), 1, + ACTIONS(1615), 1, aux_sym_number_token2, - ACTIONS(1695), 1, + ACTIONS(1617), 1, anon_sym_DQUOTE, - ACTIONS(1741), 1, + ACTIONS(1707), 1, anon_sym_LPAREN, - ACTIONS(1743), 1, + ACTIONS(1709), 1, anon_sym_getline, - ACTIONS(1745), 1, + ACTIONS(1711), 1, anon_sym_SLASH, - ACTIONS(1749), 1, + ACTIONS(1715), 1, anon_sym_BANG, - ACTIONS(1753), 1, + ACTIONS(1719), 1, anon_sym_AT, - STATE(163), 1, + STATE(165), 1, sym_ns_qualified_name, - STATE(169), 1, + STATE(216), 1, sym_array_ref, - STATE(200), 1, - sym__binary_in, - STATE(202), 1, + STATE(233), 1, sym_field_ref, - STATE(2063), 1, + STATE(234), 1, + sym__binary_in, + STATE(1956), 1, sym_namespace, - ACTIONS(1747), 2, + ACTIONS(1713), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1751), 2, + ACTIONS(1717), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(267), 19, + STATE(644), 19, sym__getline_exp, sym_getline_input, sym_getline_file, @@ -72939,102 +73230,101 @@ static const uint16_t ts_small_parse_table[] = { sym_string, sym_func_call, sym_indirect_func_call, - [58573] = 19, - ACTIONS(79), 1, - aux_sym_number_token1, - ACTIONS(450), 1, + [58551] = 18, + ACTIONS(1299), 1, + anon_sym_DOLLAR, + ACTIONS(1629), 1, sym_identifier, - ACTIONS(456), 1, + ACTIONS(1645), 1, + aux_sym_number_token1, + ACTIONS(1647), 1, + aux_sym_number_token2, + ACTIONS(1649), 1, + anon_sym_DQUOTE, + ACTIONS(1795), 1, anon_sym_LPAREN, - ACTIONS(468), 1, + ACTIONS(1797), 1, anon_sym_getline, - ACTIONS(474), 1, + ACTIONS(1799), 1, anon_sym_SLASH, - ACTIONS(478), 1, + ACTIONS(1803), 1, anon_sym_BANG, - ACTIONS(482), 1, - anon_sym_DOLLAR, - ACTIONS(484), 1, + ACTIONS(1807), 1, anon_sym_AT, - ACTIONS(486), 1, - aux_sym_number_token2, - ACTIONS(488), 1, - anon_sym_DQUOTE, - STATE(647), 1, + STATE(288), 1, sym_ns_qualified_name, - STATE(774), 1, + STATE(308), 1, sym_array_ref, - STATE(995), 1, - sym_field_ref, - STATE(1309), 1, + STATE(328), 1, sym__binary_in, - STATE(2063), 1, + STATE(331), 1, + sym_field_ref, + STATE(2080), 1, sym_namespace, - ACTIONS(476), 2, + ACTIONS(1801), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(480), 2, + ACTIONS(1805), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1441), 9, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_string_concat, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - STATE(1386), 10, + STATE(337), 19, sym__getline_exp, sym_getline_input, sym_getline_file, sym__exp, + sym_ternary_exp, + sym_binary_exp, + sym_unary_exp, sym_update_exp, sym_assignment_exp, sym_piped_io_exp, + sym_string_concat, sym_regex, sym_regex_constant, + sym_grouping, + sym__primitive, + sym_number, + sym_string, + sym_func_call, sym_indirect_func_call, - [58650] = 18, - ACTIONS(131), 1, - anon_sym_LPAREN, - ACTIONS(157), 1, - anon_sym_BANG, - ACTIONS(161), 1, - anon_sym_DOLLAR, - ACTIONS(165), 1, + [58626] = 18, + ACTIONS(169), 1, aux_sym_number_token1, - ACTIONS(167), 1, + ACTIONS(306), 1, aux_sym_number_token2, - ACTIONS(169), 1, + ACTIONS(308), 1, anon_sym_DQUOTE, - ACTIONS(1721), 1, + ACTIONS(434), 1, + anon_sym_LPAREN, + ACTIONS(440), 1, + anon_sym_BANG, + ACTIONS(444), 1, + anon_sym_DOLLAR, + ACTIONS(1557), 1, sym_identifier, - ACTIONS(1723), 1, + ACTIONS(1559), 1, anon_sym_getline, - ACTIONS(1725), 1, + ACTIONS(1561), 1, anon_sym_SLASH, - ACTIONS(1729), 1, + ACTIONS(1565), 1, anon_sym_AT, - STATE(250), 1, + STATE(606), 1, sym_ns_qualified_name, - STATE(268), 1, + STATE(611), 1, sym_array_ref, - STATE(276), 1, + STATE(686), 1, sym_field_ref, - STATE(446), 1, + STATE(1385), 1, sym__binary_in, - STATE(1955), 1, + STATE(1956), 1, sym_namespace, - ACTIONS(155), 2, + ACTIONS(161), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1727), 2, + ACTIONS(1563), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(411), 19, + STATE(1409), 19, sym__getline_exp, sym_getline_input, sym_getline_file, @@ -73054,44 +73344,44 @@ static const uint16_t ts_small_parse_table[] = { sym_string, sym_func_call, sym_indirect_func_call, - [58725] = 18, - ACTIONS(560), 1, - anon_sym_DOLLAR, - ACTIONS(1675), 1, - sym_identifier, - ACTIONS(1691), 1, + [58701] = 18, + ACTIONS(169), 1, aux_sym_number_token1, - ACTIONS(1693), 1, + ACTIONS(306), 1, aux_sym_number_token2, - ACTIONS(1695), 1, + ACTIONS(308), 1, anon_sym_DQUOTE, - ACTIONS(1795), 1, + ACTIONS(434), 1, anon_sym_LPAREN, - ACTIONS(1797), 1, + ACTIONS(440), 1, + anon_sym_BANG, + ACTIONS(444), 1, + anon_sym_DOLLAR, + ACTIONS(1557), 1, + sym_identifier, + ACTIONS(1559), 1, anon_sym_getline, - ACTIONS(1799), 1, + ACTIONS(1561), 1, anon_sym_SLASH, - ACTIONS(1803), 1, - anon_sym_BANG, - ACTIONS(1807), 1, + ACTIONS(1565), 1, anon_sym_AT, - STATE(163), 1, + STATE(606), 1, sym_ns_qualified_name, - STATE(169), 1, + STATE(611), 1, sym_array_ref, - STATE(200), 1, - sym__binary_in, - STATE(202), 1, + STATE(686), 1, sym_field_ref, - STATE(2063), 1, + STATE(1385), 1, + sym__binary_in, + STATE(1956), 1, sym_namespace, - ACTIONS(1801), 2, + ACTIONS(161), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1805), 2, + ACTIONS(1563), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(642), 19, + STATE(1408), 19, sym__getline_exp, sym_getline_input, sym_getline_file, @@ -73111,44 +73401,102 @@ static const uint16_t ts_small_parse_table[] = { sym_string, sym_func_call, sym_indirect_func_call, - [58800] = 18, - ACTIONS(560), 1, - anon_sym_DOLLAR, - ACTIONS(1675), 1, - sym_identifier, - ACTIONS(1691), 1, + [58776] = 19, + ACTIONS(79), 1, aux_sym_number_token1, - ACTIONS(1693), 1, + ACTIONS(328), 1, aux_sym_number_token2, - ACTIONS(1695), 1, + ACTIONS(330), 1, anon_sym_DQUOTE, - ACTIONS(1795), 1, + ACTIONS(336), 1, + sym_identifier, + ACTIONS(342), 1, anon_sym_LPAREN, - ACTIONS(1797), 1, + ACTIONS(354), 1, anon_sym_getline, - ACTIONS(1799), 1, + ACTIONS(360), 1, anon_sym_SLASH, - ACTIONS(1803), 1, + ACTIONS(364), 1, anon_sym_BANG, - ACTIONS(1807), 1, + ACTIONS(368), 1, + anon_sym_DOLLAR, + ACTIONS(370), 1, anon_sym_AT, - STATE(163), 1, + STATE(672), 1, sym_ns_qualified_name, - STATE(169), 1, + STATE(740), 1, sym_array_ref, - STATE(200), 1, + STATE(950), 1, + sym_field_ref, + STATE(1305), 1, sym__binary_in, - STATE(202), 1, + STATE(2068), 1, + sym_namespace, + ACTIONS(362), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(366), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1461), 9, + sym_ternary_exp, + sym_binary_exp, + sym_unary_exp, + sym_string_concat, + sym_grouping, + sym__primitive, + sym_number, + sym_string, + sym_func_call, + STATE(1469), 10, + sym__getline_exp, + sym_getline_input, + sym_getline_file, + sym__exp, + sym_update_exp, + sym_assignment_exp, + sym_piped_io_exp, + sym_regex, + sym_regex_constant, + sym_indirect_func_call, + [58853] = 18, + ACTIONS(169), 1, + aux_sym_number_token1, + ACTIONS(306), 1, + aux_sym_number_token2, + ACTIONS(308), 1, + anon_sym_DQUOTE, + ACTIONS(434), 1, + anon_sym_LPAREN, + ACTIONS(440), 1, + anon_sym_BANG, + ACTIONS(444), 1, + anon_sym_DOLLAR, + ACTIONS(1557), 1, + sym_identifier, + ACTIONS(1559), 1, + anon_sym_getline, + ACTIONS(1561), 1, + anon_sym_SLASH, + ACTIONS(1565), 1, + anon_sym_AT, + STATE(606), 1, + sym_ns_qualified_name, + STATE(611), 1, + sym_array_ref, + STATE(686), 1, sym_field_ref, - STATE(2063), 1, + STATE(1385), 1, + sym__binary_in, + STATE(1956), 1, sym_namespace, - ACTIONS(1801), 2, + ACTIONS(161), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1805), 2, + ACTIONS(1563), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(198), 19, + STATE(1407), 19, sym__getline_exp, sym_getline_input, sym_getline_file, @@ -73168,148 +73516,102 @@ static const uint16_t ts_small_parse_table[] = { sym_string, sym_func_call, sym_indirect_func_call, - [58875] = 8, - ACTIONS(732), 1, - anon_sym_EQ, - ACTIONS(908), 1, - anon_sym_LBRACK, - ACTIONS(1443), 1, - anon_sym_LPAREN2, - ACTIONS(1477), 1, - sym_concatenating_space, - ACTIONS(910), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(989), 6, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - ACTIONS(644), 9, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(658), 17, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_in, - anon_sym_COLON, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_RBRACK, - [58930] = 18, + [58928] = 19, ACTIONS(79), 1, aux_sym_number_token1, - ACTIONS(456), 1, - anon_sym_LPAREN, - ACTIONS(478), 1, - anon_sym_BANG, - ACTIONS(482), 1, - anon_sym_DOLLAR, - ACTIONS(486), 1, + ACTIONS(328), 1, aux_sym_number_token2, - ACTIONS(488), 1, + ACTIONS(330), 1, anon_sym_DQUOTE, - ACTIONS(1777), 1, + ACTIONS(336), 1, sym_identifier, - ACTIONS(1779), 1, + ACTIONS(342), 1, + anon_sym_LPAREN, + ACTIONS(354), 1, anon_sym_getline, - ACTIONS(1781), 1, + ACTIONS(360), 1, anon_sym_SLASH, - ACTIONS(1785), 1, + ACTIONS(364), 1, + anon_sym_BANG, + ACTIONS(368), 1, + anon_sym_DOLLAR, + ACTIONS(370), 1, anon_sym_AT, - STATE(648), 1, + STATE(672), 1, sym_ns_qualified_name, - STATE(758), 1, + STATE(740), 1, sym_array_ref, - STATE(992), 1, + STATE(950), 1, sym_field_ref, - STATE(1309), 1, + STATE(1305), 1, sym__binary_in, - STATE(2063), 1, + STATE(2068), 1, sym_namespace, - ACTIONS(476), 2, + ACTIONS(362), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1783), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1458), 19, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, + ACTIONS(366), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1461), 9, sym_ternary_exp, sym_binary_exp, sym_unary_exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, sym_string_concat, - sym_regex, - sym_regex_constant, sym_grouping, sym__primitive, sym_number, sym_string, sym_func_call, + STATE(1344), 10, + sym__getline_exp, + sym_getline_input, + sym_getline_file, + sym__exp, + sym_update_exp, + sym_assignment_exp, + sym_piped_io_exp, + sym_regex, + sym_regex_constant, sym_indirect_func_call, [59005] = 18, - ACTIONS(123), 1, + ACTIONS(169), 1, aux_sym_number_token1, - ACTIONS(286), 1, + ACTIONS(306), 1, aux_sym_number_token2, - ACTIONS(288), 1, + ACTIONS(308), 1, anon_sym_DQUOTE, - ACTIONS(366), 1, + ACTIONS(434), 1, anon_sym_LPAREN, - ACTIONS(386), 1, + ACTIONS(440), 1, anon_sym_BANG, - ACTIONS(390), 1, + ACTIONS(444), 1, anon_sym_DOLLAR, - ACTIONS(1609), 1, + ACTIONS(1557), 1, sym_identifier, - ACTIONS(1611), 1, + ACTIONS(1559), 1, anon_sym_getline, - ACTIONS(1613), 1, + ACTIONS(1561), 1, anon_sym_SLASH, - ACTIONS(1617), 1, + ACTIONS(1565), 1, anon_sym_AT, - STATE(743), 1, + STATE(606), 1, sym_ns_qualified_name, - STATE(998), 1, + STATE(611), 1, sym_array_ref, - STATE(1165), 1, + STATE(686), 1, sym_field_ref, - STATE(1373), 1, + STATE(1385), 1, sym__binary_in, - STATE(1955), 1, + STATE(1956), 1, sym_namespace, - ACTIONS(384), 2, + ACTIONS(161), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1615), 2, + ACTIONS(1563), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1363), 19, + STATE(1406), 19, sym__getline_exp, sym_getline_input, sym_getline_file, @@ -73330,43 +73632,43 @@ static const uint16_t ts_small_parse_table[] = { sym_func_call, sym_indirect_func_call, [59080] = 18, - ACTIONS(1283), 1, + ACTIONS(1287), 1, + anon_sym_LPAREN, + ACTIONS(1295), 1, + anon_sym_BANG, + ACTIONS(1299), 1, anon_sym_DOLLAR, - ACTIONS(1619), 1, - sym_identifier, - ACTIONS(1635), 1, + ACTIONS(1303), 1, aux_sym_number_token1, - ACTIONS(1637), 1, + ACTIONS(1305), 1, aux_sym_number_token2, - ACTIONS(1639), 1, + ACTIONS(1307), 1, anon_sym_DQUOTE, - ACTIONS(1755), 1, - anon_sym_LPAREN, - ACTIONS(1757), 1, + ACTIONS(1761), 1, + sym_identifier, + ACTIONS(1763), 1, anon_sym_getline, - ACTIONS(1759), 1, + ACTIONS(1765), 1, anon_sym_SLASH, - ACTIONS(1763), 1, - anon_sym_BANG, - ACTIONS(1767), 1, + ACTIONS(1769), 1, anon_sym_AT, - STATE(293), 1, + STATE(960), 1, sym_ns_qualified_name, - STATE(302), 1, + STATE(1161), 1, sym_array_ref, - STATE(331), 1, - sym__binary_in, - STATE(334), 1, + STATE(1240), 1, sym_field_ref, - STATE(2075), 1, + STATE(1510), 1, + sym__binary_in, + STATE(2080), 1, sym_namespace, - ACTIONS(1761), 2, + ACTIONS(1293), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1765), 2, + ACTIONS(1767), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1255), 19, + STATE(1508), 19, sym__getline_exp, sym_getline_input, sym_getline_file, @@ -73387,43 +73689,43 @@ static const uint16_t ts_small_parse_table[] = { sym_func_call, sym_indirect_func_call, [59155] = 18, - ACTIONS(1283), 1, + ACTIONS(89), 1, + anon_sym_LPAREN, + ACTIONS(121), 1, + anon_sym_BANG, + ACTIONS(125), 1, anon_sym_DOLLAR, - ACTIONS(1619), 1, - sym_identifier, - ACTIONS(1635), 1, + ACTIONS(129), 1, aux_sym_number_token1, - ACTIONS(1637), 1, + ACTIONS(131), 1, aux_sym_number_token2, - ACTIONS(1639), 1, + ACTIONS(133), 1, anon_sym_DQUOTE, - ACTIONS(1755), 1, - anon_sym_LPAREN, - ACTIONS(1757), 1, + ACTIONS(1619), 1, + sym_identifier, + ACTIONS(1621), 1, anon_sym_getline, - ACTIONS(1759), 1, + ACTIONS(1623), 1, anon_sym_SLASH, - ACTIONS(1763), 1, - anon_sym_BANG, - ACTIONS(1767), 1, + ACTIONS(1627), 1, anon_sym_AT, - STATE(293), 1, + STATE(247), 1, sym_ns_qualified_name, - STATE(302), 1, + STATE(263), 1, sym_array_ref, - STATE(331), 1, - sym__binary_in, - STATE(334), 1, + STATE(279), 1, sym_field_ref, - STATE(2075), 1, + STATE(426), 1, + sym__binary_in, + STATE(1956), 1, sym_namespace, - ACTIONS(1761), 2, + ACTIONS(119), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1765), 2, + ACTIONS(1625), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1257), 19, + STATE(406), 19, sym__getline_exp, sym_getline_input, sym_getline_file, @@ -73444,43 +73746,43 @@ static const uint16_t ts_small_parse_table[] = { sym_func_call, sym_indirect_func_call, [59230] = 18, - ACTIONS(1283), 1, - anon_sym_DOLLAR, - ACTIONS(1619), 1, - sym_identifier, - ACTIONS(1635), 1, + ACTIONS(169), 1, aux_sym_number_token1, - ACTIONS(1637), 1, + ACTIONS(306), 1, aux_sym_number_token2, - ACTIONS(1639), 1, + ACTIONS(308), 1, anon_sym_DQUOTE, - ACTIONS(1755), 1, + ACTIONS(434), 1, anon_sym_LPAREN, - ACTIONS(1757), 1, + ACTIONS(440), 1, + anon_sym_BANG, + ACTIONS(444), 1, + anon_sym_DOLLAR, + ACTIONS(1557), 1, + sym_identifier, + ACTIONS(1559), 1, anon_sym_getline, - ACTIONS(1759), 1, + ACTIONS(1561), 1, anon_sym_SLASH, - ACTIONS(1763), 1, - anon_sym_BANG, - ACTIONS(1767), 1, + ACTIONS(1565), 1, anon_sym_AT, - STATE(293), 1, + STATE(606), 1, sym_ns_qualified_name, - STATE(302), 1, + STATE(611), 1, sym_array_ref, - STATE(331), 1, - sym__binary_in, - STATE(334), 1, + STATE(686), 1, sym_field_ref, - STATE(2075), 1, + STATE(1385), 1, + sym__binary_in, + STATE(1956), 1, sym_namespace, - ACTIONS(1761), 2, + ACTIONS(161), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1765), 2, + ACTIONS(1563), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1263), 19, + STATE(1405), 19, sym__getline_exp, sym_getline_input, sym_getline_file, @@ -73501,43 +73803,43 @@ static const uint16_t ts_small_parse_table[] = { sym_func_call, sym_indirect_func_call, [59305] = 18, - ACTIONS(1283), 1, + ACTIONS(368), 1, anon_sym_DOLLAR, - ACTIONS(1619), 1, + ACTIONS(1669), 1, sym_identifier, - ACTIONS(1635), 1, + ACTIONS(1685), 1, aux_sym_number_token1, - ACTIONS(1637), 1, + ACTIONS(1687), 1, aux_sym_number_token2, - ACTIONS(1639), 1, + ACTIONS(1689), 1, anon_sym_DQUOTE, - ACTIONS(1755), 1, + ACTIONS(1693), 1, anon_sym_LPAREN, - ACTIONS(1757), 1, + ACTIONS(1695), 1, anon_sym_getline, - ACTIONS(1759), 1, + ACTIONS(1697), 1, anon_sym_SLASH, - ACTIONS(1763), 1, + ACTIONS(1701), 1, anon_sym_BANG, - ACTIONS(1767), 1, + ACTIONS(1705), 1, anon_sym_AT, - STATE(293), 1, + STATE(164), 1, sym_ns_qualified_name, - STATE(302), 1, + STATE(176), 1, sym_array_ref, - STATE(331), 1, - sym__binary_in, - STATE(334), 1, + STATE(192), 1, sym_field_ref, - STATE(2075), 1, + STATE(194), 1, + sym__binary_in, + STATE(2068), 1, sym_namespace, - ACTIONS(1761), 2, + ACTIONS(1699), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1765), 2, + ACTIONS(1703), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1249), 19, + STATE(199), 19, sym__getline_exp, sym_getline_input, sym_getline_file, @@ -73558,43 +73860,43 @@ static const uint16_t ts_small_parse_table[] = { sym_func_call, sym_indirect_func_call, [59380] = 18, - ACTIONS(560), 1, - anon_sym_DOLLAR, - ACTIONS(1675), 1, - sym_identifier, - ACTIONS(1691), 1, + ACTIONS(169), 1, aux_sym_number_token1, - ACTIONS(1693), 1, + ACTIONS(306), 1, aux_sym_number_token2, - ACTIONS(1695), 1, + ACTIONS(308), 1, anon_sym_DQUOTE, - ACTIONS(1795), 1, + ACTIONS(434), 1, anon_sym_LPAREN, - ACTIONS(1797), 1, + ACTIONS(440), 1, + anon_sym_BANG, + ACTIONS(444), 1, + anon_sym_DOLLAR, + ACTIONS(1557), 1, + sym_identifier, + ACTIONS(1559), 1, anon_sym_getline, - ACTIONS(1799), 1, + ACTIONS(1561), 1, anon_sym_SLASH, - ACTIONS(1803), 1, - anon_sym_BANG, - ACTIONS(1807), 1, + ACTIONS(1565), 1, anon_sym_AT, - STATE(163), 1, + STATE(606), 1, sym_ns_qualified_name, - STATE(169), 1, + STATE(611), 1, sym_array_ref, - STATE(200), 1, - sym__binary_in, - STATE(202), 1, + STATE(686), 1, sym_field_ref, - STATE(2063), 1, + STATE(1385), 1, + sym__binary_in, + STATE(1956), 1, sym_namespace, - ACTIONS(1801), 2, + ACTIONS(161), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1805), 2, + ACTIONS(1563), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(639), 19, + STATE(1386), 19, sym__getline_exp, sym_getline_input, sym_getline_file, @@ -73615,43 +73917,43 @@ static const uint16_t ts_small_parse_table[] = { sym_func_call, sym_indirect_func_call, [59455] = 18, - ACTIONS(560), 1, - anon_sym_DOLLAR, - ACTIONS(1675), 1, - sym_identifier, - ACTIONS(1691), 1, + ACTIONS(169), 1, aux_sym_number_token1, - ACTIONS(1693), 1, + ACTIONS(306), 1, aux_sym_number_token2, - ACTIONS(1695), 1, + ACTIONS(308), 1, anon_sym_DQUOTE, - ACTIONS(1795), 1, + ACTIONS(434), 1, anon_sym_LPAREN, - ACTIONS(1797), 1, + ACTIONS(440), 1, + anon_sym_BANG, + ACTIONS(444), 1, + anon_sym_DOLLAR, + ACTIONS(1557), 1, + sym_identifier, + ACTIONS(1559), 1, anon_sym_getline, - ACTIONS(1799), 1, + ACTIONS(1561), 1, anon_sym_SLASH, - ACTIONS(1803), 1, - anon_sym_BANG, - ACTIONS(1807), 1, + ACTIONS(1565), 1, anon_sym_AT, - STATE(163), 1, + STATE(606), 1, sym_ns_qualified_name, - STATE(169), 1, + STATE(611), 1, sym_array_ref, - STATE(200), 1, - sym__binary_in, - STATE(202), 1, + STATE(686), 1, sym_field_ref, - STATE(2063), 1, + STATE(1385), 1, + sym__binary_in, + STATE(1956), 1, sym_namespace, - ACTIONS(1801), 2, + ACTIONS(161), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1805), 2, + ACTIONS(1563), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(201), 19, + STATE(1404), 19, sym__getline_exp, sym_getline_input, sym_getline_file, @@ -73672,43 +73974,43 @@ static const uint16_t ts_small_parse_table[] = { sym_func_call, sym_indirect_func_call, [59530] = 18, - ACTIONS(1283), 1, - anon_sym_DOLLAR, - ACTIONS(1619), 1, - sym_identifier, - ACTIONS(1635), 1, + ACTIONS(169), 1, aux_sym_number_token1, - ACTIONS(1637), 1, + ACTIONS(306), 1, aux_sym_number_token2, - ACTIONS(1639), 1, + ACTIONS(308), 1, anon_sym_DQUOTE, - ACTIONS(1755), 1, + ACTIONS(434), 1, anon_sym_LPAREN, - ACTIONS(1757), 1, + ACTIONS(440), 1, + anon_sym_BANG, + ACTIONS(444), 1, + anon_sym_DOLLAR, + ACTIONS(1557), 1, + sym_identifier, + ACTIONS(1559), 1, anon_sym_getline, - ACTIONS(1759), 1, + ACTIONS(1561), 1, anon_sym_SLASH, - ACTIONS(1763), 1, - anon_sym_BANG, - ACTIONS(1767), 1, + ACTIONS(1565), 1, anon_sym_AT, - STATE(293), 1, + STATE(606), 1, sym_ns_qualified_name, - STATE(302), 1, + STATE(611), 1, sym_array_ref, - STATE(331), 1, - sym__binary_in, - STATE(334), 1, + STATE(686), 1, sym_field_ref, - STATE(2075), 1, + STATE(1385), 1, + sym__binary_in, + STATE(1956), 1, sym_namespace, - ACTIONS(1761), 2, + ACTIONS(161), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1765), 2, + ACTIONS(1563), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1246), 19, + STATE(1403), 19, sym__getline_exp, sym_getline_input, sym_getline_file, @@ -73729,43 +74031,43 @@ static const uint16_t ts_small_parse_table[] = { sym_func_call, sym_indirect_func_call, [59605] = 18, - ACTIONS(79), 1, - aux_sym_number_token1, - ACTIONS(456), 1, - anon_sym_LPAREN, - ACTIONS(478), 1, - anon_sym_BANG, - ACTIONS(482), 1, + ACTIONS(302), 1, anon_sym_DOLLAR, - ACTIONS(486), 1, - aux_sym_number_token2, - ACTIONS(488), 1, - anon_sym_DQUOTE, - ACTIONS(1777), 1, + ACTIONS(1597), 1, sym_identifier, - ACTIONS(1779), 1, + ACTIONS(1599), 1, + anon_sym_LPAREN, + ACTIONS(1601), 1, anon_sym_getline, - ACTIONS(1781), 1, + ACTIONS(1603), 1, anon_sym_SLASH, - ACTIONS(1785), 1, + ACTIONS(1607), 1, + anon_sym_BANG, + ACTIONS(1611), 1, anon_sym_AT, - STATE(648), 1, + ACTIONS(1613), 1, + aux_sym_number_token1, + ACTIONS(1615), 1, + aux_sym_number_token2, + ACTIONS(1617), 1, + anon_sym_DQUOTE, + STATE(165), 1, sym_ns_qualified_name, - STATE(758), 1, + STATE(216), 1, sym_array_ref, - STATE(992), 1, + STATE(233), 1, sym_field_ref, - STATE(1309), 1, + STATE(234), 1, sym__binary_in, - STATE(2063), 1, + STATE(1956), 1, sym_namespace, - ACTIONS(476), 2, + ACTIONS(1605), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1783), 2, + ACTIONS(1609), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1326), 19, + STATE(237), 19, sym__getline_exp, sym_getline_input, sym_getline_file, @@ -73785,101 +74087,102 @@ static const uint16_t ts_small_parse_table[] = { sym_string, sym_func_call, sym_indirect_func_call, - [59680] = 18, - ACTIONS(1283), 1, - anon_sym_DOLLAR, - ACTIONS(1619), 1, - sym_identifier, - ACTIONS(1635), 1, + [59680] = 19, + ACTIONS(169), 1, aux_sym_number_token1, - ACTIONS(1637), 1, - aux_sym_number_token2, - ACTIONS(1639), 1, - anon_sym_DQUOTE, - ACTIONS(1755), 1, + ACTIONS(270), 1, + sym_identifier, + ACTIONS(276), 1, anon_sym_LPAREN, - ACTIONS(1757), 1, + ACTIONS(288), 1, anon_sym_getline, - ACTIONS(1759), 1, + ACTIONS(294), 1, anon_sym_SLASH, - ACTIONS(1763), 1, + ACTIONS(298), 1, anon_sym_BANG, - ACTIONS(1767), 1, + ACTIONS(302), 1, + anon_sym_DOLLAR, + ACTIONS(304), 1, anon_sym_AT, - STATE(293), 1, + ACTIONS(306), 1, + aux_sym_number_token2, + ACTIONS(308), 1, + anon_sym_DQUOTE, + STATE(720), 1, sym_ns_qualified_name, - STATE(302), 1, + STATE(991), 1, sym_array_ref, - STATE(331), 1, - sym__binary_in, - STATE(334), 1, + STATE(1194), 1, sym_field_ref, - STATE(2075), 1, + STATE(1385), 1, + sym__binary_in, + STATE(1956), 1, sym_namespace, - ACTIONS(1761), 2, + ACTIONS(296), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1765), 2, + ACTIONS(300), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(314), 19, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, + STATE(1476), 9, sym_ternary_exp, sym_binary_exp, sym_unary_exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, sym_string_concat, - sym_regex, - sym_regex_constant, sym_grouping, sym__primitive, sym_number, sym_string, sym_func_call, + STATE(1571), 10, + sym__getline_exp, + sym_getline_input, + sym_getline_file, + sym__exp, + sym_update_exp, + sym_assignment_exp, + sym_piped_io_exp, + sym_regex, + sym_regex_constant, sym_indirect_func_call, - [59755] = 19, - ACTIONS(5), 1, + [59757] = 19, + ACTIONS(169), 1, + aux_sym_number_token1, + ACTIONS(270), 1, sym_identifier, - ACTIONS(11), 1, + ACTIONS(276), 1, anon_sym_LPAREN, - ACTIONS(15), 1, + ACTIONS(288), 1, anon_sym_getline, - ACTIONS(17), 1, + ACTIONS(294), 1, anon_sym_SLASH, - ACTIONS(21), 1, + ACTIONS(298), 1, anon_sym_BANG, - ACTIONS(25), 1, + ACTIONS(302), 1, anon_sym_DOLLAR, - ACTIONS(29), 1, - aux_sym_number_token1, - ACTIONS(31), 1, + ACTIONS(304), 1, + anon_sym_AT, + ACTIONS(306), 1, aux_sym_number_token2, - ACTIONS(33), 1, + ACTIONS(308), 1, anon_sym_DQUOTE, - ACTIONS(1787), 1, - anon_sym_AT, - STATE(419), 1, + STATE(720), 1, sym_ns_qualified_name, - STATE(469), 1, + STATE(991), 1, sym_array_ref, - STATE(486), 1, + STATE(1194), 1, sym_field_ref, - STATE(556), 1, + STATE(1385), 1, sym__binary_in, - STATE(2075), 1, + STATE(1956), 1, sym_namespace, - ACTIONS(19), 2, + ACTIONS(296), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(23), 2, + ACTIONS(300), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(559), 9, + STATE(1476), 9, sym_ternary_exp, sym_binary_exp, sym_unary_exp, @@ -73889,7 +74192,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_string, sym_func_call, - STATE(579), 10, + STATE(1567), 10, sym__getline_exp, sym_getline_input, sym_getline_file, @@ -73900,44 +74203,44 @@ static const uint16_t ts_small_parse_table[] = { sym_regex, sym_regex_constant, sym_indirect_func_call, - [59832] = 18, - ACTIONS(1283), 1, + [59834] = 18, + ACTIONS(324), 1, anon_sym_DOLLAR, - ACTIONS(1619), 1, + ACTIONS(1669), 1, sym_identifier, - ACTIONS(1635), 1, - aux_sym_number_token1, - ACTIONS(1637), 1, - aux_sym_number_token2, - ACTIONS(1639), 1, - anon_sym_DQUOTE, - ACTIONS(1755), 1, + ACTIONS(1671), 1, anon_sym_LPAREN, - ACTIONS(1757), 1, + ACTIONS(1673), 1, anon_sym_getline, - ACTIONS(1759), 1, + ACTIONS(1675), 1, anon_sym_SLASH, - ACTIONS(1763), 1, + ACTIONS(1679), 1, anon_sym_BANG, - ACTIONS(1767), 1, + ACTIONS(1683), 1, anon_sym_AT, - STATE(293), 1, + ACTIONS(1685), 1, + aux_sym_number_token1, + ACTIONS(1687), 1, + aux_sym_number_token2, + ACTIONS(1689), 1, + anon_sym_DQUOTE, + STATE(164), 1, sym_ns_qualified_name, - STATE(302), 1, + STATE(176), 1, sym_array_ref, - STATE(331), 1, - sym__binary_in, - STATE(334), 1, + STATE(192), 1, sym_field_ref, - STATE(2075), 1, + STATE(194), 1, + sym__binary_in, + STATE(2068), 1, sym_namespace, - ACTIONS(1761), 2, + ACTIONS(1677), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1765), 2, + ACTIONS(1681), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1233), 19, + STATE(196), 19, sym__getline_exp, sym_getline_input, sym_getline_file, @@ -73957,101 +74260,102 @@ static const uint16_t ts_small_parse_table[] = { sym_string, sym_func_call, sym_indirect_func_call, - [59907] = 18, - ACTIONS(560), 1, - anon_sym_DOLLAR, - ACTIONS(1675), 1, + [59909] = 19, + ACTIONS(1285), 1, sym_identifier, - ACTIONS(1691), 1, - aux_sym_number_token1, - ACTIONS(1693), 1, - aux_sym_number_token2, - ACTIONS(1695), 1, - anon_sym_DQUOTE, - ACTIONS(1795), 1, + ACTIONS(1287), 1, anon_sym_LPAREN, - ACTIONS(1797), 1, + ACTIONS(1289), 1, anon_sym_getline, - ACTIONS(1799), 1, + ACTIONS(1291), 1, anon_sym_SLASH, - ACTIONS(1803), 1, + ACTIONS(1295), 1, anon_sym_BANG, - ACTIONS(1807), 1, + ACTIONS(1299), 1, + anon_sym_DOLLAR, + ACTIONS(1301), 1, anon_sym_AT, - STATE(163), 1, + ACTIONS(1303), 1, + aux_sym_number_token1, + ACTIONS(1305), 1, + aux_sym_number_token2, + ACTIONS(1307), 1, + anon_sym_DQUOTE, + STATE(1093), 1, sym_ns_qualified_name, - STATE(169), 1, + STATE(1142), 1, sym_array_ref, - STATE(200), 1, - sym__binary_in, - STATE(202), 1, + STATE(1251), 1, sym_field_ref, - STATE(2063), 1, + STATE(1510), 1, + sym__binary_in, + STATE(2080), 1, sym_namespace, - ACTIONS(1801), 2, + ACTIONS(1293), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1805), 2, + ACTIONS(1297), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(623), 19, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, + STATE(1505), 9, sym_ternary_exp, sym_binary_exp, sym_unary_exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, sym_string_concat, - sym_regex, - sym_regex_constant, sym_grouping, sym__primitive, sym_number, sym_string, sym_func_call, + STATE(1634), 10, + sym__getline_exp, + sym_getline_input, + sym_getline_file, + sym__exp, + sym_update_exp, + sym_assignment_exp, + sym_piped_io_exp, + sym_regex, + sym_regex_constant, sym_indirect_func_call, - [59982] = 18, - ACTIONS(161), 1, - anon_sym_DOLLAR, - ACTIONS(1557), 1, - sym_identifier, - ACTIONS(1573), 1, + [59986] = 18, + ACTIONS(79), 1, aux_sym_number_token1, - ACTIONS(1575), 1, + ACTIONS(328), 1, aux_sym_number_token2, - ACTIONS(1577), 1, + ACTIONS(330), 1, anon_sym_DQUOTE, - ACTIONS(1707), 1, + ACTIONS(342), 1, anon_sym_LPAREN, - ACTIONS(1709), 1, + ACTIONS(364), 1, + anon_sym_BANG, + ACTIONS(368), 1, + anon_sym_DOLLAR, + ACTIONS(1775), 1, + sym_identifier, + ACTIONS(1777), 1, anon_sym_getline, - ACTIONS(1711), 1, + ACTIONS(1779), 1, anon_sym_SLASH, - ACTIONS(1715), 1, - anon_sym_BANG, - ACTIONS(1719), 1, + ACTIONS(1783), 1, anon_sym_AT, - STATE(181), 1, + STATE(670), 1, sym_ns_qualified_name, - STATE(208), 1, + STATE(742), 1, sym_array_ref, - STATE(235), 1, - sym__binary_in, - STATE(236), 1, + STATE(946), 1, sym_field_ref, - STATE(1955), 1, + STATE(1305), 1, + sym__binary_in, + STATE(2068), 1, sym_namespace, - ACTIONS(1713), 2, + ACTIONS(362), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1717), 2, + ACTIONS(1781), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(229), 19, + STATE(1310), 19, sym__getline_exp, sym_getline_input, sym_getline_file, @@ -74071,44 +74375,44 @@ static const uint16_t ts_small_parse_table[] = { sym_string, sym_func_call, sym_indirect_func_call, - [60057] = 18, - ACTIONS(1283), 1, + [60061] = 18, + ACTIONS(1299), 1, anon_sym_DOLLAR, - ACTIONS(1619), 1, + ACTIONS(1629), 1, sym_identifier, - ACTIONS(1635), 1, + ACTIONS(1645), 1, aux_sym_number_token1, - ACTIONS(1637), 1, + ACTIONS(1647), 1, aux_sym_number_token2, - ACTIONS(1639), 1, + ACTIONS(1649), 1, anon_sym_DQUOTE, - ACTIONS(1755), 1, + ACTIONS(1795), 1, anon_sym_LPAREN, - ACTIONS(1757), 1, + ACTIONS(1797), 1, anon_sym_getline, - ACTIONS(1759), 1, + ACTIONS(1799), 1, anon_sym_SLASH, - ACTIONS(1763), 1, + ACTIONS(1803), 1, anon_sym_BANG, - ACTIONS(1767), 1, + ACTIONS(1807), 1, anon_sym_AT, - STATE(293), 1, + STATE(288), 1, sym_ns_qualified_name, - STATE(302), 1, + STATE(308), 1, sym_array_ref, - STATE(331), 1, + STATE(328), 1, sym__binary_in, - STATE(334), 1, + STATE(331), 1, sym_field_ref, - STATE(2075), 1, + STATE(2080), 1, sym_namespace, - ACTIONS(1761), 2, + ACTIONS(1801), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1765), 2, + ACTIONS(1805), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1217), 19, + STATE(338), 19, sym__getline_exp, sym_getline_input, sym_getline_file, @@ -74128,101 +74432,102 @@ static const uint16_t ts_small_parse_table[] = { sym_string, sym_func_call, sym_indirect_func_call, - [60132] = 18, - ACTIONS(332), 1, - anon_sym_DOLLAR, - ACTIONS(1675), 1, + [60136] = 19, + ACTIONS(1285), 1, sym_identifier, - ACTIONS(1691), 1, - aux_sym_number_token1, - ACTIONS(1693), 1, - aux_sym_number_token2, - ACTIONS(1695), 1, - anon_sym_DQUOTE, - ACTIONS(1741), 1, + ACTIONS(1287), 1, anon_sym_LPAREN, - ACTIONS(1743), 1, + ACTIONS(1289), 1, anon_sym_getline, - ACTIONS(1745), 1, + ACTIONS(1291), 1, anon_sym_SLASH, - ACTIONS(1749), 1, + ACTIONS(1295), 1, anon_sym_BANG, - ACTIONS(1753), 1, + ACTIONS(1299), 1, + anon_sym_DOLLAR, + ACTIONS(1301), 1, anon_sym_AT, - STATE(163), 1, + ACTIONS(1303), 1, + aux_sym_number_token1, + ACTIONS(1305), 1, + aux_sym_number_token2, + ACTIONS(1307), 1, + anon_sym_DQUOTE, + STATE(1093), 1, sym_ns_qualified_name, - STATE(169), 1, + STATE(1142), 1, sym_array_ref, - STATE(200), 1, - sym__binary_in, - STATE(202), 1, + STATE(1251), 1, sym_field_ref, - STATE(2063), 1, + STATE(1510), 1, + sym__binary_in, + STATE(2080), 1, sym_namespace, - ACTIONS(1747), 2, + ACTIONS(1293), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1751), 2, + ACTIONS(1297), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(198), 19, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, + STATE(1505), 9, sym_ternary_exp, sym_binary_exp, sym_unary_exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, sym_string_concat, - sym_regex, - sym_regex_constant, sym_grouping, sym__primitive, sym_number, sym_string, sym_func_call, + STATE(1653), 10, + sym__getline_exp, + sym_getline_input, + sym_getline_file, + sym__exp, + sym_update_exp, + sym_assignment_exp, + sym_piped_io_exp, + sym_regex, + sym_regex_constant, sym_indirect_func_call, - [60207] = 19, - ACTIONS(1269), 1, + [60213] = 19, + ACTIONS(1285), 1, sym_identifier, - ACTIONS(1271), 1, + ACTIONS(1287), 1, anon_sym_LPAREN, - ACTIONS(1273), 1, + ACTIONS(1289), 1, anon_sym_getline, - ACTIONS(1275), 1, + ACTIONS(1291), 1, anon_sym_SLASH, - ACTIONS(1279), 1, + ACTIONS(1295), 1, anon_sym_BANG, - ACTIONS(1283), 1, + ACTIONS(1299), 1, anon_sym_DOLLAR, - ACTIONS(1285), 1, + ACTIONS(1301), 1, anon_sym_AT, - ACTIONS(1287), 1, + ACTIONS(1303), 1, aux_sym_number_token1, - ACTIONS(1289), 1, + ACTIONS(1305), 1, aux_sym_number_token2, - ACTIONS(1291), 1, + ACTIONS(1307), 1, anon_sym_DQUOTE, - STATE(1067), 1, + STATE(1093), 1, sym_ns_qualified_name, - STATE(1137), 1, + STATE(1142), 1, sym_array_ref, - STATE(1231), 1, + STATE(1251), 1, sym_field_ref, - STATE(1502), 1, + STATE(1510), 1, sym__binary_in, - STATE(2075), 1, + STATE(2080), 1, sym_namespace, - ACTIONS(1277), 2, + ACTIONS(1293), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1281), 2, + ACTIONS(1297), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1500), 9, + STATE(1505), 9, sym_ternary_exp, sym_binary_exp, sym_unary_exp, @@ -74232,7 +74537,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_string, sym_func_call, - STATE(1548), 10, + STATE(1652), 10, sym__getline_exp, sym_getline_input, sym_getline_file, @@ -74243,44 +74548,44 @@ static const uint16_t ts_small_parse_table[] = { sym_regex, sym_regex_constant, sym_indirect_func_call, - [60284] = 18, - ACTIONS(560), 1, + [60290] = 18, + ACTIONS(11), 1, + anon_sym_LPAREN, + ACTIONS(21), 1, + anon_sym_BANG, + ACTIONS(25), 1, anon_sym_DOLLAR, - ACTIONS(1675), 1, - sym_identifier, - ACTIONS(1691), 1, + ACTIONS(29), 1, aux_sym_number_token1, - ACTIONS(1693), 1, + ACTIONS(31), 1, aux_sym_number_token2, - ACTIONS(1695), 1, + ACTIONS(33), 1, anon_sym_DQUOTE, - ACTIONS(1795), 1, - anon_sym_LPAREN, - ACTIONS(1797), 1, + ACTIONS(1587), 1, + sym_identifier, + ACTIONS(1589), 1, anon_sym_getline, - ACTIONS(1799), 1, + ACTIONS(1591), 1, anon_sym_SLASH, - ACTIONS(1803), 1, - anon_sym_BANG, - ACTIONS(1807), 1, + ACTIONS(1595), 1, anon_sym_AT, - STATE(163), 1, + STATE(425), 1, sym_ns_qualified_name, - STATE(169), 1, + STATE(467), 1, sym_array_ref, - STATE(200), 1, - sym__binary_in, - STATE(202), 1, + STATE(490), 1, sym_field_ref, - STATE(2063), 1, + STATE(539), 1, + sym__binary_in, + STATE(2080), 1, sym_namespace, - ACTIONS(1801), 2, + ACTIONS(19), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1805), 2, + ACTIONS(1593), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(615), 19, + STATE(528), 19, sym__getline_exp, sym_getline_input, sym_getline_file, @@ -74300,44 +74605,44 @@ static const uint16_t ts_small_parse_table[] = { sym_string, sym_func_call, sym_indirect_func_call, - [60359] = 18, - ACTIONS(560), 1, + [60365] = 18, + ACTIONS(444), 1, anon_sym_DOLLAR, - ACTIONS(1675), 1, + ACTIONS(1597), 1, sym_identifier, - ACTIONS(1691), 1, + ACTIONS(1613), 1, aux_sym_number_token1, - ACTIONS(1693), 1, + ACTIONS(1615), 1, aux_sym_number_token2, - ACTIONS(1695), 1, + ACTIONS(1617), 1, anon_sym_DQUOTE, - ACTIONS(1795), 1, + ACTIONS(1707), 1, anon_sym_LPAREN, - ACTIONS(1797), 1, + ACTIONS(1709), 1, anon_sym_getline, - ACTIONS(1799), 1, + ACTIONS(1711), 1, anon_sym_SLASH, - ACTIONS(1803), 1, + ACTIONS(1715), 1, anon_sym_BANG, - ACTIONS(1807), 1, + ACTIONS(1719), 1, anon_sym_AT, - STATE(163), 1, + STATE(165), 1, sym_ns_qualified_name, - STATE(169), 1, + STATE(216), 1, sym_array_ref, - STATE(200), 1, - sym__binary_in, - STATE(202), 1, + STATE(233), 1, sym_field_ref, - STATE(2063), 1, + STATE(234), 1, + sym__binary_in, + STATE(1956), 1, sym_namespace, - ACTIONS(1801), 2, + ACTIONS(1713), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1805), 2, + ACTIONS(1717), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(613), 19, + STATE(692), 19, sym__getline_exp, sym_getline_input, sym_getline_file, @@ -74357,44 +74662,44 @@ static const uint16_t ts_small_parse_table[] = { sym_string, sym_func_call, sym_indirect_func_call, - [60434] = 18, - ACTIONS(1271), 1, - anon_sym_LPAREN, - ACTIONS(1279), 1, - anon_sym_BANG, - ACTIONS(1283), 1, + [60440] = 18, + ACTIONS(444), 1, anon_sym_DOLLAR, - ACTIONS(1287), 1, + ACTIONS(1597), 1, + sym_identifier, + ACTIONS(1613), 1, aux_sym_number_token1, - ACTIONS(1289), 1, + ACTIONS(1615), 1, aux_sym_number_token2, - ACTIONS(1291), 1, + ACTIONS(1617), 1, anon_sym_DQUOTE, - ACTIONS(1731), 1, - sym_identifier, - ACTIONS(1733), 1, + ACTIONS(1707), 1, + anon_sym_LPAREN, + ACTIONS(1709), 1, anon_sym_getline, - ACTIONS(1735), 1, + ACTIONS(1711), 1, anon_sym_SLASH, - ACTIONS(1739), 1, + ACTIONS(1715), 1, + anon_sym_BANG, + ACTIONS(1719), 1, anon_sym_AT, - STATE(1000), 1, + STATE(165), 1, sym_ns_qualified_name, - STATE(1168), 1, + STATE(216), 1, sym_array_ref, - STATE(1235), 1, + STATE(233), 1, sym_field_ref, - STATE(1502), 1, + STATE(234), 1, sym__binary_in, - STATE(2075), 1, + STATE(1956), 1, sym_namespace, - ACTIONS(1277), 2, + ACTIONS(1713), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1737), 2, + ACTIONS(1717), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1507), 19, + STATE(690), 19, sym__getline_exp, sym_getline_input, sym_getline_file, @@ -74414,44 +74719,44 @@ static const uint16_t ts_small_parse_table[] = { sym_string, sym_func_call, sym_indirect_func_call, - [60509] = 18, + [60515] = 18, ACTIONS(79), 1, aux_sym_number_token1, - ACTIONS(456), 1, + ACTIONS(312), 1, anon_sym_LPAREN, - ACTIONS(478), 1, + ACTIONS(320), 1, anon_sym_BANG, - ACTIONS(482), 1, + ACTIONS(324), 1, anon_sym_DOLLAR, - ACTIONS(486), 1, + ACTIONS(328), 1, aux_sym_number_token2, - ACTIONS(488), 1, + ACTIONS(330), 1, anon_sym_DQUOTE, - ACTIONS(1777), 1, + ACTIONS(1577), 1, sym_identifier, - ACTIONS(1779), 1, + ACTIONS(1579), 1, anon_sym_getline, - ACTIONS(1781), 1, + ACTIONS(1581), 1, anon_sym_SLASH, - ACTIONS(1785), 1, + ACTIONS(1585), 1, anon_sym_AT, - STATE(648), 1, + STATE(591), 1, sym_ns_qualified_name, - STATE(758), 1, + STATE(605), 1, sym_array_ref, - STATE(992), 1, + STATE(628), 1, sym_field_ref, - STATE(1309), 1, + STATE(1305), 1, sym__binary_in, - STATE(2063), 1, + STATE(2068), 1, sym_namespace, - ACTIONS(476), 2, + ACTIONS(71), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1783), 2, + ACTIONS(1583), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1442), 19, + STATE(1312), 19, sym__getline_exp, sym_getline_input, sym_getline_file, @@ -74471,44 +74776,44 @@ static const uint16_t ts_small_parse_table[] = { sym_string, sym_func_call, sym_indirect_func_call, - [60584] = 18, - ACTIONS(282), 1, + [60590] = 18, + ACTIONS(79), 1, + aux_sym_number_token1, + ACTIONS(312), 1, + anon_sym_LPAREN, + ACTIONS(320), 1, + anon_sym_BANG, + ACTIONS(324), 1, anon_sym_DOLLAR, - ACTIONS(1557), 1, + ACTIONS(328), 1, + aux_sym_number_token2, + ACTIONS(330), 1, + anon_sym_DQUOTE, + ACTIONS(1577), 1, sym_identifier, - ACTIONS(1559), 1, - anon_sym_LPAREN, - ACTIONS(1561), 1, + ACTIONS(1579), 1, anon_sym_getline, - ACTIONS(1563), 1, + ACTIONS(1581), 1, anon_sym_SLASH, - ACTIONS(1567), 1, - anon_sym_BANG, - ACTIONS(1571), 1, + ACTIONS(1585), 1, anon_sym_AT, - ACTIONS(1573), 1, - aux_sym_number_token1, - ACTIONS(1575), 1, - aux_sym_number_token2, - ACTIONS(1577), 1, - anon_sym_DQUOTE, - STATE(181), 1, + STATE(591), 1, sym_ns_qualified_name, - STATE(208), 1, + STATE(605), 1, sym_array_ref, - STATE(235), 1, - sym__binary_in, - STATE(236), 1, + STATE(628), 1, sym_field_ref, - STATE(1955), 1, + STATE(1305), 1, + sym__binary_in, + STATE(2068), 1, sym_namespace, - ACTIONS(1565), 2, + ACTIONS(71), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1569), 2, + ACTIONS(1583), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(694), 19, + STATE(1387), 19, sym__getline_exp, sym_getline_input, sym_getline_file, @@ -74528,44 +74833,44 @@ static const uint16_t ts_small_parse_table[] = { sym_string, sym_func_call, sym_indirect_func_call, - [60659] = 18, + [60665] = 18, ACTIONS(79), 1, aux_sym_number_token1, - ACTIONS(456), 1, + ACTIONS(312), 1, anon_sym_LPAREN, - ACTIONS(478), 1, + ACTIONS(320), 1, anon_sym_BANG, - ACTIONS(482), 1, + ACTIONS(324), 1, anon_sym_DOLLAR, - ACTIONS(486), 1, + ACTIONS(328), 1, aux_sym_number_token2, - ACTIONS(488), 1, + ACTIONS(330), 1, anon_sym_DQUOTE, - ACTIONS(1777), 1, + ACTIONS(1577), 1, sym_identifier, - ACTIONS(1779), 1, + ACTIONS(1579), 1, anon_sym_getline, - ACTIONS(1781), 1, + ACTIONS(1581), 1, anon_sym_SLASH, - ACTIONS(1785), 1, + ACTIONS(1585), 1, anon_sym_AT, - STATE(648), 1, + STATE(591), 1, sym_ns_qualified_name, - STATE(758), 1, + STATE(605), 1, sym_array_ref, - STATE(992), 1, + STATE(628), 1, sym_field_ref, - STATE(1309), 1, + STATE(1305), 1, sym__binary_in, - STATE(2063), 1, + STATE(2068), 1, sym_namespace, - ACTIONS(476), 2, + ACTIONS(71), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1783), 2, + ACTIONS(1583), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1332), 19, + STATE(1310), 19, sym__getline_exp, sym_getline_input, sym_getline_file, @@ -74585,44 +74890,44 @@ static const uint16_t ts_small_parse_table[] = { sym_string, sym_func_call, sym_indirect_func_call, - [60734] = 19, - ACTIONS(1269), 1, + [60740] = 19, + ACTIONS(39), 1, sym_identifier, - ACTIONS(1271), 1, - anon_sym_LPAREN, - ACTIONS(1273), 1, + ACTIONS(63), 1, anon_sym_getline, - ACTIONS(1275), 1, + ACTIONS(79), 1, + aux_sym_number_token1, + ACTIONS(312), 1, + anon_sym_LPAREN, + ACTIONS(318), 1, anon_sym_SLASH, - ACTIONS(1279), 1, + ACTIONS(320), 1, anon_sym_BANG, - ACTIONS(1283), 1, + ACTIONS(324), 1, anon_sym_DOLLAR, - ACTIONS(1285), 1, + ACTIONS(326), 1, anon_sym_AT, - ACTIONS(1287), 1, - aux_sym_number_token1, - ACTIONS(1289), 1, + ACTIONS(328), 1, aux_sym_number_token2, - ACTIONS(1291), 1, + ACTIONS(330), 1, anon_sym_DQUOTE, - STATE(1067), 1, + STATE(590), 1, sym_ns_qualified_name, - STATE(1137), 1, + STATE(601), 1, sym_array_ref, - STATE(1231), 1, + STATE(632), 1, sym_field_ref, - STATE(1502), 1, + STATE(1305), 1, sym__binary_in, - STATE(2075), 1, + STATE(2068), 1, sym_namespace, - ACTIONS(1277), 2, + ACTIONS(71), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1281), 2, + ACTIONS(322), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1500), 9, + STATE(1371), 9, sym_ternary_exp, sym_binary_exp, sym_unary_exp, @@ -74632,7 +74937,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_string, sym_func_call, - STATE(1613), 10, + STATE(1344), 10, sym__getline_exp, sym_getline_input, sym_getline_file, @@ -74643,44 +74948,91 @@ static const uint16_t ts_small_parse_table[] = { sym_regex, sym_regex_constant, sym_indirect_func_call, - [60811] = 18, - ACTIONS(560), 1, - anon_sym_DOLLAR, - ACTIONS(1675), 1, - sym_identifier, - ACTIONS(1691), 1, + [60817] = 8, + ACTIONS(696), 1, + anon_sym_EQ, + ACTIONS(908), 1, + anon_sym_LBRACK, + ACTIONS(1453), 1, + anon_sym_LPAREN2, + ACTIONS(1485), 1, + sym_concatenating_space, + ACTIONS(906), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(983), 6, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + ACTIONS(642), 9, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(652), 17, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_in, + anon_sym_COLON, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_RBRACK, + [60872] = 18, + ACTIONS(79), 1, aux_sym_number_token1, - ACTIONS(1693), 1, + ACTIONS(328), 1, aux_sym_number_token2, - ACTIONS(1695), 1, + ACTIONS(330), 1, anon_sym_DQUOTE, - ACTIONS(1795), 1, + ACTIONS(342), 1, anon_sym_LPAREN, - ACTIONS(1797), 1, + ACTIONS(364), 1, + anon_sym_BANG, + ACTIONS(368), 1, + anon_sym_DOLLAR, + ACTIONS(1775), 1, + sym_identifier, + ACTIONS(1777), 1, anon_sym_getline, - ACTIONS(1799), 1, + ACTIONS(1779), 1, anon_sym_SLASH, - ACTIONS(1803), 1, - anon_sym_BANG, - ACTIONS(1807), 1, + ACTIONS(1783), 1, anon_sym_AT, - STATE(163), 1, + STATE(670), 1, sym_ns_qualified_name, - STATE(169), 1, + STATE(742), 1, sym_array_ref, - STATE(200), 1, - sym__binary_in, - STATE(202), 1, + STATE(946), 1, sym_field_ref, - STATE(2063), 1, + STATE(1305), 1, + sym__binary_in, + STATE(2068), 1, sym_namespace, - ACTIONS(1801), 2, + ACTIONS(362), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1805), 2, + ACTIONS(1781), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(616), 19, + STATE(1457), 19, sym__getline_exp, sym_getline_input, sym_getline_file, @@ -74700,101 +75052,102 @@ static const uint16_t ts_small_parse_table[] = { sym_string, sym_func_call, sym_indirect_func_call, - [60886] = 18, - ACTIONS(282), 1, - anon_sym_DOLLAR, - ACTIONS(1557), 1, + [60947] = 19, + ACTIONS(39), 1, sym_identifier, - ACTIONS(1559), 1, - anon_sym_LPAREN, - ACTIONS(1561), 1, + ACTIONS(63), 1, anon_sym_getline, - ACTIONS(1563), 1, + ACTIONS(79), 1, + aux_sym_number_token1, + ACTIONS(312), 1, + anon_sym_LPAREN, + ACTIONS(318), 1, anon_sym_SLASH, - ACTIONS(1567), 1, + ACTIONS(320), 1, anon_sym_BANG, - ACTIONS(1571), 1, + ACTIONS(324), 1, + anon_sym_DOLLAR, + ACTIONS(326), 1, anon_sym_AT, - ACTIONS(1573), 1, - aux_sym_number_token1, - ACTIONS(1575), 1, + ACTIONS(328), 1, aux_sym_number_token2, - ACTIONS(1577), 1, + ACTIONS(330), 1, anon_sym_DQUOTE, - STATE(181), 1, + STATE(590), 1, sym_ns_qualified_name, - STATE(208), 1, + STATE(601), 1, sym_array_ref, - STATE(235), 1, - sym__binary_in, - STATE(236), 1, + STATE(632), 1, sym_field_ref, - STATE(1955), 1, + STATE(1305), 1, + sym__binary_in, + STATE(2068), 1, sym_namespace, - ACTIONS(1565), 2, + ACTIONS(71), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1569), 2, + ACTIONS(322), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(229), 19, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, + STATE(1371), 9, sym_ternary_exp, sym_binary_exp, sym_unary_exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, sym_string_concat, - sym_regex, - sym_regex_constant, sym_grouping, sym__primitive, sym_number, sym_string, sym_func_call, + STATE(1397), 10, + sym__getline_exp, + sym_getline_input, + sym_getline_file, + sym__exp, + sym_update_exp, + sym_assignment_exp, + sym_piped_io_exp, + sym_regex, + sym_regex_constant, sym_indirect_func_call, - [60961] = 18, - ACTIONS(560), 1, - anon_sym_DOLLAR, - ACTIONS(1675), 1, - sym_identifier, - ACTIONS(1691), 1, + [61024] = 18, + ACTIONS(79), 1, aux_sym_number_token1, - ACTIONS(1693), 1, + ACTIONS(328), 1, aux_sym_number_token2, - ACTIONS(1695), 1, + ACTIONS(330), 1, anon_sym_DQUOTE, - ACTIONS(1795), 1, + ACTIONS(342), 1, anon_sym_LPAREN, - ACTIONS(1797), 1, + ACTIONS(364), 1, + anon_sym_BANG, + ACTIONS(368), 1, + anon_sym_DOLLAR, + ACTIONS(1775), 1, + sym_identifier, + ACTIONS(1777), 1, anon_sym_getline, - ACTIONS(1799), 1, + ACTIONS(1779), 1, anon_sym_SLASH, - ACTIONS(1803), 1, - anon_sym_BANG, - ACTIONS(1807), 1, + ACTIONS(1783), 1, anon_sym_AT, - STATE(163), 1, + STATE(670), 1, sym_ns_qualified_name, - STATE(169), 1, + STATE(742), 1, sym_array_ref, - STATE(200), 1, - sym__binary_in, - STATE(202), 1, + STATE(946), 1, sym_field_ref, - STATE(2063), 1, + STATE(1305), 1, + sym__binary_in, + STATE(2068), 1, sym_namespace, - ACTIONS(1801), 2, + ACTIONS(362), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1805), 2, + ACTIONS(1781), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(197), 19, + STATE(1312), 19, sym__getline_exp, sym_getline_input, sym_getline_file, @@ -74814,101 +75167,102 @@ static const uint16_t ts_small_parse_table[] = { sym_string, sym_func_call, sym_indirect_func_call, - [61036] = 18, - ACTIONS(560), 1, - anon_sym_DOLLAR, - ACTIONS(1675), 1, + [61099] = 19, + ACTIONS(1285), 1, sym_identifier, - ACTIONS(1691), 1, - aux_sym_number_token1, - ACTIONS(1693), 1, - aux_sym_number_token2, - ACTIONS(1695), 1, - anon_sym_DQUOTE, - ACTIONS(1795), 1, + ACTIONS(1287), 1, anon_sym_LPAREN, - ACTIONS(1797), 1, + ACTIONS(1289), 1, anon_sym_getline, - ACTIONS(1799), 1, + ACTIONS(1291), 1, anon_sym_SLASH, - ACTIONS(1803), 1, + ACTIONS(1295), 1, anon_sym_BANG, - ACTIONS(1807), 1, + ACTIONS(1299), 1, + anon_sym_DOLLAR, + ACTIONS(1301), 1, anon_sym_AT, - STATE(163), 1, + ACTIONS(1303), 1, + aux_sym_number_token1, + ACTIONS(1305), 1, + aux_sym_number_token2, + ACTIONS(1307), 1, + anon_sym_DQUOTE, + STATE(1093), 1, sym_ns_qualified_name, - STATE(169), 1, + STATE(1142), 1, sym_array_ref, - STATE(200), 1, - sym__binary_in, - STATE(202), 1, + STATE(1251), 1, sym_field_ref, - STATE(2063), 1, + STATE(1510), 1, + sym__binary_in, + STATE(2080), 1, sym_namespace, - ACTIONS(1801), 2, + ACTIONS(1293), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1805), 2, + ACTIONS(1297), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(183), 19, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, + STATE(1505), 9, sym_ternary_exp, sym_binary_exp, sym_unary_exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, sym_string_concat, - sym_regex, - sym_regex_constant, sym_grouping, sym__primitive, sym_number, sym_string, sym_func_call, + STATE(1618), 10, + sym__getline_exp, + sym_getline_input, + sym_getline_file, + sym__exp, + sym_update_exp, + sym_assignment_exp, + sym_piped_io_exp, + sym_regex, + sym_regex_constant, sym_indirect_func_call, - [61111] = 18, - ACTIONS(560), 1, + [61176] = 18, + ACTIONS(444), 1, anon_sym_DOLLAR, - ACTIONS(1675), 1, + ACTIONS(1597), 1, sym_identifier, - ACTIONS(1691), 1, + ACTIONS(1613), 1, aux_sym_number_token1, - ACTIONS(1693), 1, + ACTIONS(1615), 1, aux_sym_number_token2, - ACTIONS(1695), 1, + ACTIONS(1617), 1, anon_sym_DQUOTE, - ACTIONS(1795), 1, + ACTIONS(1707), 1, anon_sym_LPAREN, - ACTIONS(1797), 1, + ACTIONS(1709), 1, anon_sym_getline, - ACTIONS(1799), 1, + ACTIONS(1711), 1, anon_sym_SLASH, - ACTIONS(1803), 1, + ACTIONS(1715), 1, anon_sym_BANG, - ACTIONS(1807), 1, + ACTIONS(1719), 1, anon_sym_AT, - STATE(163), 1, + STATE(165), 1, sym_ns_qualified_name, - STATE(169), 1, + STATE(216), 1, sym_array_ref, - STATE(200), 1, - sym__binary_in, - STATE(202), 1, + STATE(233), 1, sym_field_ref, - STATE(2063), 1, + STATE(234), 1, + sym__binary_in, + STATE(1956), 1, sym_namespace, - ACTIONS(1801), 2, + ACTIONS(1713), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1805), 2, + ACTIONS(1717), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(617), 19, + STATE(674), 19, sym__getline_exp, sym_getline_input, sym_getline_file, @@ -74928,86 +75282,44 @@ static const uint16_t ts_small_parse_table[] = { sym_string, sym_func_call, sym_indirect_func_call, - [61186] = 3, - ACTIONS(999), 1, - anon_sym_LBRACK, - ACTIONS(1507), 1, - sym__if_else_separator, - ACTIONS(1505), 36, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - anon_sym_getline, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [61231] = 19, - ACTIONS(1269), 1, + [61251] = 19, + ACTIONS(1285), 1, sym_identifier, - ACTIONS(1271), 1, + ACTIONS(1287), 1, anon_sym_LPAREN, - ACTIONS(1273), 1, + ACTIONS(1289), 1, anon_sym_getline, - ACTIONS(1275), 1, + ACTIONS(1291), 1, anon_sym_SLASH, - ACTIONS(1279), 1, + ACTIONS(1295), 1, anon_sym_BANG, - ACTIONS(1283), 1, + ACTIONS(1299), 1, anon_sym_DOLLAR, - ACTIONS(1285), 1, + ACTIONS(1301), 1, anon_sym_AT, - ACTIONS(1287), 1, + ACTIONS(1303), 1, aux_sym_number_token1, - ACTIONS(1289), 1, + ACTIONS(1305), 1, aux_sym_number_token2, - ACTIONS(1291), 1, + ACTIONS(1307), 1, anon_sym_DQUOTE, - STATE(1067), 1, + STATE(1093), 1, sym_ns_qualified_name, - STATE(1137), 1, + STATE(1142), 1, sym_array_ref, - STATE(1231), 1, + STATE(1251), 1, sym_field_ref, - STATE(1502), 1, + STATE(1510), 1, sym__binary_in, - STATE(2075), 1, + STATE(2080), 1, sym_namespace, - ACTIONS(1277), 2, + ACTIONS(1293), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1281), 2, + ACTIONS(1297), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1500), 9, + STATE(1505), 9, sym_ternary_exp, sym_binary_exp, sym_unary_exp, @@ -75017,7 +75329,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_string, sym_func_call, - STATE(1634), 10, + STATE(1603), 10, sym__getline_exp, sym_getline_input, sym_getline_file, @@ -75028,44 +75340,44 @@ static const uint16_t ts_small_parse_table[] = { sym_regex, sym_regex_constant, sym_indirect_func_call, - [61308] = 18, - ACTIONS(1271), 1, - anon_sym_LPAREN, - ACTIONS(1279), 1, - anon_sym_BANG, - ACTIONS(1283), 1, + [61328] = 18, + ACTIONS(1299), 1, anon_sym_DOLLAR, - ACTIONS(1287), 1, + ACTIONS(1629), 1, + sym_identifier, + ACTIONS(1645), 1, aux_sym_number_token1, - ACTIONS(1289), 1, + ACTIONS(1647), 1, aux_sym_number_token2, - ACTIONS(1291), 1, + ACTIONS(1649), 1, anon_sym_DQUOTE, - ACTIONS(1731), 1, - sym_identifier, - ACTIONS(1733), 1, + ACTIONS(1795), 1, + anon_sym_LPAREN, + ACTIONS(1797), 1, anon_sym_getline, - ACTIONS(1735), 1, + ACTIONS(1799), 1, anon_sym_SLASH, - ACTIONS(1739), 1, + ACTIONS(1803), 1, + anon_sym_BANG, + ACTIONS(1807), 1, anon_sym_AT, - STATE(1000), 1, + STATE(288), 1, sym_ns_qualified_name, - STATE(1168), 1, + STATE(308), 1, sym_array_ref, - STATE(1235), 1, - sym_field_ref, - STATE(1502), 1, + STATE(328), 1, sym__binary_in, - STATE(2075), 1, + STATE(331), 1, + sym_field_ref, + STATE(2080), 1, sym_namespace, - ACTIONS(1277), 2, + ACTIONS(1801), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1737), 2, + ACTIONS(1805), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1533), 19, + STATE(1260), 19, sym__getline_exp, sym_getline_input, sym_getline_file, @@ -75085,44 +75397,44 @@ static const uint16_t ts_small_parse_table[] = { sym_string, sym_func_call, sym_indirect_func_call, - [61383] = 19, - ACTIONS(298), 1, + [61403] = 19, + ACTIONS(1285), 1, sym_identifier, - ACTIONS(304), 1, + ACTIONS(1287), 1, anon_sym_LPAREN, - ACTIONS(318), 1, + ACTIONS(1289), 1, anon_sym_getline, - ACTIONS(324), 1, + ACTIONS(1291), 1, anon_sym_SLASH, - ACTIONS(328), 1, + ACTIONS(1295), 1, anon_sym_BANG, - ACTIONS(332), 1, + ACTIONS(1299), 1, anon_sym_DOLLAR, - ACTIONS(334), 1, + ACTIONS(1301), 1, anon_sym_AT, - ACTIONS(336), 1, + ACTIONS(1303), 1, aux_sym_number_token1, - ACTIONS(338), 1, + ACTIONS(1305), 1, aux_sym_number_token2, - ACTIONS(340), 1, + ACTIONS(1307), 1, anon_sym_DQUOTE, - STATE(196), 1, + STATE(1093), 1, sym_ns_qualified_name, - STATE(240), 1, + STATE(1142), 1, sym_array_ref, - STATE(256), 1, + STATE(1251), 1, sym_field_ref, - STATE(369), 1, + STATE(1510), 1, sym__binary_in, - STATE(2063), 1, + STATE(2080), 1, sym_namespace, - ACTIONS(326), 2, + ACTIONS(1293), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(330), 2, + ACTIONS(1297), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(375), 9, + STATE(1505), 9, sym_ternary_exp, sym_binary_exp, sym_unary_exp, @@ -75132,7 +75444,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_string, sym_func_call, - STATE(441), 10, + STATE(1614), 10, sym__getline_exp, sym_getline_input, sym_getline_file, @@ -75143,102 +75455,44 @@ static const uint16_t ts_small_parse_table[] = { sym_regex, sym_regex_constant, sym_indirect_func_call, - [61460] = 19, - ACTIONS(1269), 1, - sym_identifier, - ACTIONS(1271), 1, - anon_sym_LPAREN, - ACTIONS(1273), 1, - anon_sym_getline, - ACTIONS(1275), 1, - anon_sym_SLASH, - ACTIONS(1279), 1, - anon_sym_BANG, - ACTIONS(1283), 1, + [61480] = 18, + ACTIONS(125), 1, anon_sym_DOLLAR, - ACTIONS(1285), 1, - anon_sym_AT, - ACTIONS(1287), 1, + ACTIONS(1597), 1, + sym_identifier, + ACTIONS(1613), 1, aux_sym_number_token1, - ACTIONS(1289), 1, + ACTIONS(1615), 1, aux_sym_number_token2, - ACTIONS(1291), 1, + ACTIONS(1617), 1, anon_sym_DQUOTE, - STATE(1067), 1, - sym_ns_qualified_name, - STATE(1137), 1, - sym_array_ref, - STATE(1231), 1, - sym_field_ref, - STATE(1502), 1, - sym__binary_in, - STATE(2075), 1, - sym_namespace, - ACTIONS(1277), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1281), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1500), 9, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_string_concat, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - STATE(1561), 10, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, - sym_regex, - sym_regex_constant, - sym_indirect_func_call, - [61537] = 18, - ACTIONS(1271), 1, + ACTIONS(1745), 1, anon_sym_LPAREN, - ACTIONS(1279), 1, - anon_sym_BANG, - ACTIONS(1283), 1, - anon_sym_DOLLAR, - ACTIONS(1287), 1, - aux_sym_number_token1, - ACTIONS(1289), 1, - aux_sym_number_token2, - ACTIONS(1291), 1, - anon_sym_DQUOTE, - ACTIONS(1731), 1, - sym_identifier, - ACTIONS(1733), 1, + ACTIONS(1747), 1, anon_sym_getline, - ACTIONS(1735), 1, + ACTIONS(1749), 1, anon_sym_SLASH, - ACTIONS(1739), 1, + ACTIONS(1753), 1, + anon_sym_BANG, + ACTIONS(1757), 1, anon_sym_AT, - STATE(1000), 1, + STATE(165), 1, sym_ns_qualified_name, - STATE(1168), 1, + STATE(216), 1, sym_array_ref, - STATE(1235), 1, + STATE(233), 1, sym_field_ref, - STATE(1502), 1, + STATE(234), 1, sym__binary_in, - STATE(2075), 1, + STATE(1956), 1, sym_namespace, - ACTIONS(1277), 2, + ACTIONS(1751), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1737), 2, + ACTIONS(1755), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1532), 19, + STATE(237), 19, sym__getline_exp, sym_getline_input, sym_getline_file, @@ -75258,44 +75512,44 @@ static const uint16_t ts_small_parse_table[] = { sym_string, sym_func_call, sym_indirect_func_call, - [61612] = 18, - ACTIONS(1271), 1, - anon_sym_LPAREN, - ACTIONS(1279), 1, - anon_sym_BANG, - ACTIONS(1283), 1, + [61555] = 18, + ACTIONS(1299), 1, anon_sym_DOLLAR, - ACTIONS(1287), 1, + ACTIONS(1629), 1, + sym_identifier, + ACTIONS(1645), 1, aux_sym_number_token1, - ACTIONS(1289), 1, + ACTIONS(1647), 1, aux_sym_number_token2, - ACTIONS(1291), 1, + ACTIONS(1649), 1, anon_sym_DQUOTE, - ACTIONS(1731), 1, - sym_identifier, - ACTIONS(1733), 1, + ACTIONS(1795), 1, + anon_sym_LPAREN, + ACTIONS(1797), 1, anon_sym_getline, - ACTIONS(1735), 1, + ACTIONS(1799), 1, anon_sym_SLASH, - ACTIONS(1739), 1, + ACTIONS(1803), 1, + anon_sym_BANG, + ACTIONS(1807), 1, anon_sym_AT, - STATE(1000), 1, + STATE(288), 1, sym_ns_qualified_name, - STATE(1168), 1, + STATE(308), 1, sym_array_ref, - STATE(1235), 1, - sym_field_ref, - STATE(1502), 1, + STATE(328), 1, sym__binary_in, - STATE(2075), 1, + STATE(331), 1, + sym_field_ref, + STATE(2080), 1, sym_namespace, - ACTIONS(1277), 2, + ACTIONS(1801), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1737), 2, + ACTIONS(1805), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1531), 19, + STATE(1226), 19, sym__getline_exp, sym_getline_input, sym_getline_file, @@ -75315,44 +75569,44 @@ static const uint16_t ts_small_parse_table[] = { sym_string, sym_func_call, sym_indirect_func_call, - [61687] = 18, - ACTIONS(1271), 1, + [61630] = 18, + ACTIONS(1287), 1, anon_sym_LPAREN, - ACTIONS(1279), 1, + ACTIONS(1295), 1, anon_sym_BANG, - ACTIONS(1283), 1, + ACTIONS(1299), 1, anon_sym_DOLLAR, - ACTIONS(1287), 1, + ACTIONS(1303), 1, aux_sym_number_token1, - ACTIONS(1289), 1, + ACTIONS(1305), 1, aux_sym_number_token2, - ACTIONS(1291), 1, + ACTIONS(1307), 1, anon_sym_DQUOTE, - ACTIONS(1731), 1, + ACTIONS(1761), 1, sym_identifier, - ACTIONS(1733), 1, + ACTIONS(1763), 1, anon_sym_getline, - ACTIONS(1735), 1, + ACTIONS(1765), 1, anon_sym_SLASH, - ACTIONS(1739), 1, + ACTIONS(1769), 1, anon_sym_AT, - STATE(1000), 1, + STATE(960), 1, sym_ns_qualified_name, - STATE(1168), 1, + STATE(1161), 1, sym_array_ref, - STATE(1235), 1, + STATE(1240), 1, sym_field_ref, - STATE(1502), 1, + STATE(1510), 1, sym__binary_in, - STATE(2075), 1, + STATE(2080), 1, sym_namespace, - ACTIONS(1277), 2, + ACTIONS(1293), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1737), 2, + ACTIONS(1767), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1530), 19, + STATE(1525), 19, sym__getline_exp, sym_getline_input, sym_getline_file, @@ -75372,160 +75626,158 @@ static const uint16_t ts_small_parse_table[] = { sym_string, sym_func_call, sym_indirect_func_call, - [61762] = 19, - ACTIONS(1269), 1, + [61705] = 18, + ACTIONS(1299), 1, + anon_sym_DOLLAR, + ACTIONS(1629), 1, sym_identifier, - ACTIONS(1271), 1, + ACTIONS(1645), 1, + aux_sym_number_token1, + ACTIONS(1647), 1, + aux_sym_number_token2, + ACTIONS(1649), 1, + anon_sym_DQUOTE, + ACTIONS(1795), 1, anon_sym_LPAREN, - ACTIONS(1273), 1, + ACTIONS(1797), 1, anon_sym_getline, - ACTIONS(1275), 1, + ACTIONS(1799), 1, anon_sym_SLASH, - ACTIONS(1279), 1, + ACTIONS(1803), 1, anon_sym_BANG, - ACTIONS(1283), 1, - anon_sym_DOLLAR, - ACTIONS(1285), 1, + ACTIONS(1807), 1, anon_sym_AT, - ACTIONS(1287), 1, - aux_sym_number_token1, - ACTIONS(1289), 1, - aux_sym_number_token2, - ACTIONS(1291), 1, - anon_sym_DQUOTE, - STATE(1067), 1, + STATE(288), 1, sym_ns_qualified_name, - STATE(1137), 1, + STATE(308), 1, sym_array_ref, - STATE(1231), 1, - sym_field_ref, - STATE(1502), 1, + STATE(328), 1, sym__binary_in, - STATE(2075), 1, + STATE(331), 1, + sym_field_ref, + STATE(2080), 1, sym_namespace, - ACTIONS(1277), 2, + ACTIONS(1801), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1281), 2, + ACTIONS(1805), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1500), 9, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_string_concat, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - STATE(1651), 10, + STATE(1241), 19, sym__getline_exp, sym_getline_input, sym_getline_file, sym__exp, + sym_ternary_exp, + sym_binary_exp, + sym_unary_exp, sym_update_exp, sym_assignment_exp, sym_piped_io_exp, + sym_string_concat, sym_regex, sym_regex_constant, + sym_grouping, + sym__primitive, + sym_number, + sym_string, + sym_func_call, sym_indirect_func_call, - [61839] = 19, - ACTIONS(1269), 1, + [61780] = 18, + ACTIONS(1299), 1, + anon_sym_DOLLAR, + ACTIONS(1629), 1, sym_identifier, - ACTIONS(1271), 1, + ACTIONS(1645), 1, + aux_sym_number_token1, + ACTIONS(1647), 1, + aux_sym_number_token2, + ACTIONS(1649), 1, + anon_sym_DQUOTE, + ACTIONS(1795), 1, anon_sym_LPAREN, - ACTIONS(1273), 1, + ACTIONS(1797), 1, anon_sym_getline, - ACTIONS(1275), 1, + ACTIONS(1799), 1, anon_sym_SLASH, - ACTIONS(1279), 1, + ACTIONS(1803), 1, anon_sym_BANG, - ACTIONS(1283), 1, - anon_sym_DOLLAR, - ACTIONS(1285), 1, + ACTIONS(1807), 1, anon_sym_AT, - ACTIONS(1287), 1, - aux_sym_number_token1, - ACTIONS(1289), 1, - aux_sym_number_token2, - ACTIONS(1291), 1, - anon_sym_DQUOTE, - STATE(1067), 1, + STATE(288), 1, sym_ns_qualified_name, - STATE(1137), 1, + STATE(308), 1, sym_array_ref, - STATE(1231), 1, - sym_field_ref, - STATE(1502), 1, + STATE(328), 1, sym__binary_in, - STATE(2075), 1, + STATE(331), 1, + sym_field_ref, + STATE(2080), 1, sym_namespace, - ACTIONS(1277), 2, + ACTIONS(1801), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1281), 2, + ACTIONS(1805), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1500), 9, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_string_concat, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - STATE(1663), 10, + STATE(1227), 19, sym__getline_exp, sym_getline_input, sym_getline_file, sym__exp, + sym_ternary_exp, + sym_binary_exp, + sym_unary_exp, sym_update_exp, sym_assignment_exp, sym_piped_io_exp, + sym_string_concat, sym_regex, sym_regex_constant, + sym_grouping, + sym__primitive, + sym_number, + sym_string, + sym_func_call, sym_indirect_func_call, - [61916] = 18, - ACTIONS(1271), 1, - anon_sym_LPAREN, - ACTIONS(1279), 1, - anon_sym_BANG, - ACTIONS(1283), 1, + [61855] = 18, + ACTIONS(125), 1, anon_sym_DOLLAR, - ACTIONS(1287), 1, + ACTIONS(1597), 1, + sym_identifier, + ACTIONS(1613), 1, aux_sym_number_token1, - ACTIONS(1289), 1, + ACTIONS(1615), 1, aux_sym_number_token2, - ACTIONS(1291), 1, + ACTIONS(1617), 1, anon_sym_DQUOTE, - ACTIONS(1731), 1, - sym_identifier, - ACTIONS(1733), 1, + ACTIONS(1745), 1, + anon_sym_LPAREN, + ACTIONS(1747), 1, anon_sym_getline, - ACTIONS(1735), 1, + ACTIONS(1749), 1, anon_sym_SLASH, - ACTIONS(1739), 1, + ACTIONS(1753), 1, + anon_sym_BANG, + ACTIONS(1757), 1, anon_sym_AT, - STATE(1000), 1, + STATE(165), 1, sym_ns_qualified_name, - STATE(1168), 1, + STATE(216), 1, sym_array_ref, - STATE(1235), 1, + STATE(233), 1, sym_field_ref, - STATE(1502), 1, + STATE(234), 1, sym__binary_in, - STATE(2075), 1, + STATE(1956), 1, sym_namespace, - ACTIONS(1277), 2, + ACTIONS(1751), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1737), 2, + ACTIONS(1755), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1528), 19, + STATE(272), 19, sym__getline_exp, sym_getline_input, sym_getline_file, @@ -75545,44 +75797,44 @@ static const uint16_t ts_small_parse_table[] = { sym_string, sym_func_call, sym_indirect_func_call, - [61991] = 18, - ACTIONS(304), 1, + [61930] = 18, + ACTIONS(1287), 1, anon_sym_LPAREN, - ACTIONS(328), 1, + ACTIONS(1295), 1, anon_sym_BANG, - ACTIONS(332), 1, + ACTIONS(1299), 1, anon_sym_DOLLAR, - ACTIONS(336), 1, + ACTIONS(1303), 1, aux_sym_number_token1, - ACTIONS(338), 1, + ACTIONS(1305), 1, aux_sym_number_token2, - ACTIONS(340), 1, + ACTIONS(1307), 1, anon_sym_DQUOTE, - ACTIONS(1579), 1, + ACTIONS(1761), 1, sym_identifier, - ACTIONS(1581), 1, + ACTIONS(1763), 1, anon_sym_getline, - ACTIONS(1583), 1, + ACTIONS(1765), 1, anon_sym_SLASH, - ACTIONS(1587), 1, + ACTIONS(1769), 1, anon_sym_AT, - STATE(203), 1, + STATE(960), 1, sym_ns_qualified_name, - STATE(225), 1, + STATE(1161), 1, sym_array_ref, - STATE(262), 1, + STATE(1240), 1, sym_field_ref, - STATE(369), 1, + STATE(1510), 1, sym__binary_in, - STATE(2063), 1, + STATE(2080), 1, sym_namespace, - ACTIONS(326), 2, + ACTIONS(1293), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1585), 2, + ACTIONS(1767), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(399), 19, + STATE(1512), 19, sym__getline_exp, sym_getline_input, sym_getline_file, @@ -75602,101 +75854,153 @@ static const uint16_t ts_small_parse_table[] = { sym_string, sym_func_call, sym_indirect_func_call, - [62066] = 18, - ACTIONS(1271), 1, + [62005] = 19, + ACTIONS(39), 1, + sym_identifier, + ACTIONS(63), 1, + anon_sym_getline, + ACTIONS(79), 1, + aux_sym_number_token1, + ACTIONS(312), 1, anon_sym_LPAREN, - ACTIONS(1279), 1, + ACTIONS(318), 1, + anon_sym_SLASH, + ACTIONS(320), 1, anon_sym_BANG, - ACTIONS(1283), 1, + ACTIONS(324), 1, anon_sym_DOLLAR, - ACTIONS(1287), 1, - aux_sym_number_token1, - ACTIONS(1289), 1, + ACTIONS(326), 1, + anon_sym_AT, + ACTIONS(328), 1, aux_sym_number_token2, - ACTIONS(1291), 1, + ACTIONS(330), 1, anon_sym_DQUOTE, - ACTIONS(1731), 1, - sym_identifier, - ACTIONS(1733), 1, - anon_sym_getline, - ACTIONS(1735), 1, - anon_sym_SLASH, - ACTIONS(1739), 1, - anon_sym_AT, - STATE(1000), 1, + STATE(590), 1, sym_ns_qualified_name, - STATE(1168), 1, + STATE(601), 1, sym_array_ref, - STATE(1235), 1, + STATE(632), 1, sym_field_ref, - STATE(1502), 1, + STATE(1305), 1, sym__binary_in, - STATE(2075), 1, + STATE(2068), 1, sym_namespace, - ACTIONS(1277), 2, + ACTIONS(71), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1737), 2, + ACTIONS(322), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1527), 19, - sym__getline_exp, - sym_getline_input, - sym_getline_file, - sym__exp, + STATE(1371), 9, sym_ternary_exp, sym_binary_exp, sym_unary_exp, - sym_update_exp, - sym_assignment_exp, - sym_piped_io_exp, sym_string_concat, - sym_regex, - sym_regex_constant, sym_grouping, sym__primitive, sym_number, sym_string, sym_func_call, + STATE(1347), 10, + sym__getline_exp, + sym_getline_input, + sym_getline_file, + sym__exp, + sym_update_exp, + sym_assignment_exp, + sym_piped_io_exp, + sym_regex, + sym_regex_constant, sym_indirect_func_call, - [62141] = 18, - ACTIONS(1271), 1, - anon_sym_LPAREN, - ACTIONS(1279), 1, - anon_sym_BANG, - ACTIONS(1283), 1, + [62082] = 12, + ACTIONS(1651), 1, + anon_sym_in, + ACTIONS(1655), 1, + anon_sym_QMARK, + ACTIONS(1665), 1, + anon_sym_AMP_AMP, + ACTIONS(1667), 1, + anon_sym_PIPE_PIPE, + ACTIONS(864), 2, + sym_concatenating_space, + sym__if_else_separator, + ACTIONS(1327), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(1657), 2, + anon_sym_CARET, + anon_sym_STAR_STAR, + ACTIONS(1661), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1663), 2, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(1659), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1653), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(848), 15, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_while, + anon_sym_GT_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + [62145] = 18, + ACTIONS(1299), 1, anon_sym_DOLLAR, - ACTIONS(1287), 1, + ACTIONS(1629), 1, + sym_identifier, + ACTIONS(1645), 1, aux_sym_number_token1, - ACTIONS(1289), 1, + ACTIONS(1647), 1, aux_sym_number_token2, - ACTIONS(1291), 1, + ACTIONS(1649), 1, anon_sym_DQUOTE, - ACTIONS(1731), 1, - sym_identifier, - ACTIONS(1733), 1, + ACTIONS(1795), 1, + anon_sym_LPAREN, + ACTIONS(1797), 1, anon_sym_getline, - ACTIONS(1735), 1, + ACTIONS(1799), 1, anon_sym_SLASH, - ACTIONS(1739), 1, + ACTIONS(1803), 1, + anon_sym_BANG, + ACTIONS(1807), 1, anon_sym_AT, - STATE(1000), 1, + STATE(288), 1, sym_ns_qualified_name, - STATE(1168), 1, + STATE(308), 1, sym_array_ref, - STATE(1235), 1, - sym_field_ref, - STATE(1502), 1, + STATE(328), 1, sym__binary_in, - STATE(2075), 1, + STATE(331), 1, + sym_field_ref, + STATE(2080), 1, sym_namespace, - ACTIONS(1277), 2, + ACTIONS(1801), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1737), 2, + ACTIONS(1805), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1526), 19, + STATE(348), 19, sym__getline_exp, sym_getline_input, sym_getline_file, @@ -75716,44 +76020,44 @@ static const uint16_t ts_small_parse_table[] = { sym_string, sym_func_call, sym_indirect_func_call, - [62216] = 18, - ACTIONS(1283), 1, + [62220] = 18, + ACTIONS(1299), 1, anon_sym_DOLLAR, - ACTIONS(1619), 1, + ACTIONS(1629), 1, sym_identifier, - ACTIONS(1635), 1, + ACTIONS(1645), 1, aux_sym_number_token1, - ACTIONS(1637), 1, + ACTIONS(1647), 1, aux_sym_number_token2, - ACTIONS(1639), 1, + ACTIONS(1649), 1, anon_sym_DQUOTE, - ACTIONS(1755), 1, + ACTIONS(1795), 1, anon_sym_LPAREN, - ACTIONS(1757), 1, + ACTIONS(1797), 1, anon_sym_getline, - ACTIONS(1759), 1, + ACTIONS(1799), 1, anon_sym_SLASH, - ACTIONS(1763), 1, + ACTIONS(1803), 1, anon_sym_BANG, - ACTIONS(1767), 1, + ACTIONS(1807), 1, anon_sym_AT, - STATE(293), 1, + STATE(288), 1, sym_ns_qualified_name, - STATE(302), 1, + STATE(308), 1, sym_array_ref, - STATE(331), 1, + STATE(328), 1, sym__binary_in, - STATE(334), 1, + STATE(331), 1, sym_field_ref, - STATE(2075), 1, + STATE(2080), 1, sym_namespace, - ACTIONS(1761), 2, + ACTIONS(1801), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1765), 2, + ACTIONS(1805), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(330), 19, + STATE(1212), 19, sym__getline_exp, sym_getline_input, sym_getline_file, @@ -75773,44 +76077,44 @@ static const uint16_t ts_small_parse_table[] = { sym_string, sym_func_call, sym_indirect_func_call, - [62291] = 18, - ACTIONS(1271), 1, - anon_sym_LPAREN, - ACTIONS(1279), 1, - anon_sym_BANG, - ACTIONS(1283), 1, + [62295] = 18, + ACTIONS(444), 1, anon_sym_DOLLAR, - ACTIONS(1287), 1, + ACTIONS(1597), 1, + sym_identifier, + ACTIONS(1613), 1, aux_sym_number_token1, - ACTIONS(1289), 1, + ACTIONS(1615), 1, aux_sym_number_token2, - ACTIONS(1291), 1, + ACTIONS(1617), 1, anon_sym_DQUOTE, - ACTIONS(1731), 1, - sym_identifier, - ACTIONS(1733), 1, + ACTIONS(1707), 1, + anon_sym_LPAREN, + ACTIONS(1709), 1, anon_sym_getline, - ACTIONS(1735), 1, + ACTIONS(1711), 1, anon_sym_SLASH, - ACTIONS(1739), 1, + ACTIONS(1715), 1, + anon_sym_BANG, + ACTIONS(1719), 1, anon_sym_AT, - STATE(1000), 1, + STATE(165), 1, sym_ns_qualified_name, - STATE(1168), 1, + STATE(216), 1, sym_array_ref, - STATE(1235), 1, + STATE(233), 1, sym_field_ref, - STATE(1502), 1, + STATE(234), 1, sym__binary_in, - STATE(2075), 1, + STATE(1956), 1, sym_namespace, - ACTIONS(1277), 2, + ACTIONS(1713), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1737), 2, + ACTIONS(1717), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1498), 19, + STATE(684), 19, sym__getline_exp, sym_getline_input, sym_getline_file, @@ -75830,44 +76134,44 @@ static const uint16_t ts_small_parse_table[] = { sym_string, sym_func_call, sym_indirect_func_call, - [62366] = 18, - ACTIONS(282), 1, + [62370] = 18, + ACTIONS(444), 1, anon_sym_DOLLAR, - ACTIONS(1557), 1, + ACTIONS(1597), 1, sym_identifier, - ACTIONS(1559), 1, + ACTIONS(1613), 1, + aux_sym_number_token1, + ACTIONS(1615), 1, + aux_sym_number_token2, + ACTIONS(1617), 1, + anon_sym_DQUOTE, + ACTIONS(1707), 1, anon_sym_LPAREN, - ACTIONS(1561), 1, + ACTIONS(1709), 1, anon_sym_getline, - ACTIONS(1563), 1, + ACTIONS(1711), 1, anon_sym_SLASH, - ACTIONS(1567), 1, + ACTIONS(1715), 1, anon_sym_BANG, - ACTIONS(1571), 1, + ACTIONS(1719), 1, anon_sym_AT, - ACTIONS(1573), 1, - aux_sym_number_token1, - ACTIONS(1575), 1, - aux_sym_number_token2, - ACTIONS(1577), 1, - anon_sym_DQUOTE, - STATE(181), 1, + STATE(165), 1, sym_ns_qualified_name, - STATE(208), 1, + STATE(216), 1, sym_array_ref, - STATE(235), 1, - sym__binary_in, - STATE(236), 1, + STATE(233), 1, sym_field_ref, - STATE(1955), 1, + STATE(234), 1, + sym__binary_in, + STATE(1956), 1, sym_namespace, - ACTIONS(1565), 2, + ACTIONS(1713), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1569), 2, + ACTIONS(1717), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(230), 19, + STATE(677), 19, sym__getline_exp, sym_getline_input, sym_getline_file, @@ -75887,44 +76191,44 @@ static const uint16_t ts_small_parse_table[] = { sym_string, sym_func_call, sym_indirect_func_call, - [62441] = 19, - ACTIONS(1269), 1, + [62445] = 19, + ACTIONS(39), 1, sym_identifier, - ACTIONS(1271), 1, - anon_sym_LPAREN, - ACTIONS(1273), 1, + ACTIONS(63), 1, anon_sym_getline, - ACTIONS(1275), 1, + ACTIONS(79), 1, + aux_sym_number_token1, + ACTIONS(312), 1, + anon_sym_LPAREN, + ACTIONS(318), 1, anon_sym_SLASH, - ACTIONS(1279), 1, + ACTIONS(320), 1, anon_sym_BANG, - ACTIONS(1283), 1, + ACTIONS(324), 1, anon_sym_DOLLAR, - ACTIONS(1285), 1, + ACTIONS(326), 1, anon_sym_AT, - ACTIONS(1287), 1, - aux_sym_number_token1, - ACTIONS(1289), 1, + ACTIONS(328), 1, aux_sym_number_token2, - ACTIONS(1291), 1, + ACTIONS(330), 1, anon_sym_DQUOTE, - STATE(1067), 1, + STATE(590), 1, sym_ns_qualified_name, - STATE(1137), 1, + STATE(601), 1, sym_array_ref, - STATE(1231), 1, + STATE(632), 1, sym_field_ref, - STATE(1502), 1, + STATE(1305), 1, sym__binary_in, - STATE(2075), 1, + STATE(2068), 1, sym_namespace, - ACTIONS(1277), 2, + ACTIONS(71), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1281), 2, + ACTIONS(322), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1500), 9, + STATE(1371), 9, sym_ternary_exp, sym_binary_exp, sym_unary_exp, @@ -75934,7 +76238,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_string, sym_func_call, - STATE(1543), 10, + STATE(1351), 10, sym__getline_exp, sym_getline_input, sym_getline_file, @@ -75945,44 +76249,44 @@ static const uint16_t ts_small_parse_table[] = { sym_regex, sym_regex_constant, sym_indirect_func_call, - [62518] = 18, - ACTIONS(79), 1, - aux_sym_number_token1, - ACTIONS(456), 1, - anon_sym_LPAREN, - ACTIONS(478), 1, - anon_sym_BANG, - ACTIONS(482), 1, + [62522] = 18, + ACTIONS(368), 1, anon_sym_DOLLAR, - ACTIONS(486), 1, + ACTIONS(1669), 1, + sym_identifier, + ACTIONS(1685), 1, + aux_sym_number_token1, + ACTIONS(1687), 1, aux_sym_number_token2, - ACTIONS(488), 1, + ACTIONS(1689), 1, anon_sym_DQUOTE, - ACTIONS(1777), 1, - sym_identifier, - ACTIONS(1779), 1, + ACTIONS(1693), 1, + anon_sym_LPAREN, + ACTIONS(1695), 1, anon_sym_getline, - ACTIONS(1781), 1, + ACTIONS(1697), 1, anon_sym_SLASH, - ACTIONS(1785), 1, + ACTIONS(1701), 1, + anon_sym_BANG, + ACTIONS(1705), 1, anon_sym_AT, - STATE(648), 1, + STATE(164), 1, sym_ns_qualified_name, - STATE(758), 1, + STATE(176), 1, sym_array_ref, - STATE(992), 1, + STATE(192), 1, sym_field_ref, - STATE(1309), 1, + STATE(194), 1, sym__binary_in, - STATE(2063), 1, + STATE(2068), 1, sym_namespace, - ACTIONS(476), 2, + ACTIONS(1699), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1783), 2, + ACTIONS(1703), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1316), 19, + STATE(203), 19, sym__getline_exp, sym_getline_input, sym_getline_file, @@ -76002,132 +76306,130 @@ static const uint16_t ts_small_parse_table[] = { sym_string, sym_func_call, sym_indirect_func_call, - [62593] = 19, - ACTIONS(1271), 1, + [62597] = 18, + ACTIONS(1299), 1, + anon_sym_DOLLAR, + ACTIONS(1629), 1, + sym_identifier, + ACTIONS(1645), 1, + aux_sym_number_token1, + ACTIONS(1647), 1, + aux_sym_number_token2, + ACTIONS(1649), 1, + anon_sym_DQUOTE, + ACTIONS(1795), 1, anon_sym_LPAREN, - ACTIONS(1273), 1, + ACTIONS(1797), 1, anon_sym_getline, - ACTIONS(1275), 1, + ACTIONS(1799), 1, anon_sym_SLASH, - ACTIONS(1279), 1, + ACTIONS(1803), 1, anon_sym_BANG, - ACTIONS(1283), 1, - anon_sym_DOLLAR, - ACTIONS(1285), 1, + ACTIONS(1807), 1, anon_sym_AT, - ACTIONS(1287), 1, - aux_sym_number_token1, - ACTIONS(1289), 1, - aux_sym_number_token2, - ACTIONS(1291), 1, - anon_sym_DQUOTE, - ACTIONS(1809), 1, - sym_identifier, - STATE(306), 1, + STATE(288), 1, + sym_ns_qualified_name, + STATE(308), 1, sym_array_ref, STATE(328), 1, - sym_field_ref, - STATE(1054), 1, - sym_ns_qualified_name, - STATE(1502), 1, sym__binary_in, - STATE(2075), 1, + STATE(331), 1, + sym_field_ref, + STATE(2080), 1, sym_namespace, - ACTIONS(1277), 2, + ACTIONS(1801), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1281), 2, + ACTIONS(1805), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1499), 9, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_string_concat, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - STATE(1679), 10, + STATE(1265), 19, sym__getline_exp, sym_getline_input, sym_getline_file, sym__exp, + sym_ternary_exp, + sym_binary_exp, + sym_unary_exp, sym_update_exp, sym_assignment_exp, sym_piped_io_exp, + sym_string_concat, sym_regex, sym_regex_constant, + sym_grouping, + sym__primitive, + sym_number, + sym_string, + sym_func_call, sym_indirect_func_call, - [62670] = 19, - ACTIONS(79), 1, - aux_sym_number_token1, - ACTIONS(450), 1, + [62672] = 18, + ACTIONS(1299), 1, + anon_sym_DOLLAR, + ACTIONS(1629), 1, sym_identifier, - ACTIONS(456), 1, + ACTIONS(1645), 1, + aux_sym_number_token1, + ACTIONS(1647), 1, + aux_sym_number_token2, + ACTIONS(1649), 1, + anon_sym_DQUOTE, + ACTIONS(1795), 1, anon_sym_LPAREN, - ACTIONS(468), 1, + ACTIONS(1797), 1, anon_sym_getline, - ACTIONS(474), 1, + ACTIONS(1799), 1, anon_sym_SLASH, - ACTIONS(478), 1, + ACTIONS(1803), 1, anon_sym_BANG, - ACTIONS(482), 1, - anon_sym_DOLLAR, - ACTIONS(484), 1, + ACTIONS(1807), 1, anon_sym_AT, - ACTIONS(486), 1, - aux_sym_number_token2, - ACTIONS(488), 1, - anon_sym_DQUOTE, - STATE(647), 1, + STATE(288), 1, sym_ns_qualified_name, - STATE(774), 1, + STATE(308), 1, sym_array_ref, - STATE(995), 1, - sym_field_ref, - STATE(1309), 1, + STATE(328), 1, sym__binary_in, - STATE(2063), 1, + STATE(331), 1, + sym_field_ref, + STATE(2080), 1, sym_namespace, - ACTIONS(476), 2, + ACTIONS(1801), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(480), 2, + ACTIONS(1805), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1441), 9, - sym_ternary_exp, - sym_binary_exp, - sym_unary_exp, - sym_string_concat, - sym_grouping, - sym__primitive, - sym_number, - sym_string, - sym_func_call, - STATE(1368), 10, + STATE(1201), 19, sym__getline_exp, sym_getline_input, sym_getline_file, sym__exp, + sym_ternary_exp, + sym_binary_exp, + sym_unary_exp, sym_update_exp, sym_assignment_exp, sym_piped_io_exp, + sym_string_concat, sym_regex, sym_regex_constant, + sym_grouping, + sym__primitive, + sym_number, + sym_string, + sym_func_call, sym_indirect_func_call, [62747] = 18, - ACTIONS(560), 1, + ACTIONS(1299), 1, anon_sym_DOLLAR, - ACTIONS(1675), 1, + ACTIONS(1629), 1, sym_identifier, - ACTIONS(1691), 1, + ACTIONS(1645), 1, aux_sym_number_token1, - ACTIONS(1693), 1, + ACTIONS(1647), 1, aux_sym_number_token2, - ACTIONS(1695), 1, + ACTIONS(1649), 1, anon_sym_DQUOTE, ACTIONS(1795), 1, anon_sym_LPAREN, @@ -76139,15 +76441,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, ACTIONS(1807), 1, anon_sym_AT, - STATE(163), 1, + STATE(288), 1, sym_ns_qualified_name, - STATE(169), 1, + STATE(308), 1, sym_array_ref, - STATE(200), 1, + STATE(328), 1, sym__binary_in, - STATE(202), 1, + STATE(331), 1, sym_field_ref, - STATE(2063), 1, + STATE(2080), 1, sym_namespace, ACTIONS(1801), 2, anon_sym_PLUS, @@ -76155,7 +76457,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1805), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(629), 19, + STATE(1207), 19, sym__getline_exp, sym_getline_input, sym_getline_file, @@ -76176,15 +76478,15 @@ static const uint16_t ts_small_parse_table[] = { sym_func_call, sym_indirect_func_call, [62822] = 18, - ACTIONS(560), 1, + ACTIONS(1299), 1, anon_sym_DOLLAR, - ACTIONS(1675), 1, + ACTIONS(1629), 1, sym_identifier, - ACTIONS(1691), 1, + ACTIONS(1645), 1, aux_sym_number_token1, - ACTIONS(1693), 1, + ACTIONS(1647), 1, aux_sym_number_token2, - ACTIONS(1695), 1, + ACTIONS(1649), 1, anon_sym_DQUOTE, ACTIONS(1795), 1, anon_sym_LPAREN, @@ -76196,15 +76498,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, ACTIONS(1807), 1, anon_sym_AT, - STATE(163), 1, + STATE(288), 1, sym_ns_qualified_name, - STATE(169), 1, + STATE(308), 1, sym_array_ref, - STATE(200), 1, + STATE(328), 1, sym__binary_in, - STATE(202), 1, + STATE(331), 1, sym_field_ref, - STATE(2063), 1, + STATE(2080), 1, sym_namespace, ACTIONS(1801), 2, anon_sym_PLUS, @@ -76212,7 +76514,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1805), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(630), 19, + STATE(1238), 19, sym__getline_exp, sym_getline_input, sym_getline_file, @@ -76232,49 +76534,47 @@ static const uint16_t ts_small_parse_table[] = { sym_string, sym_func_call, sym_indirect_func_call, - [62897] = 4, - ACTIONS(1377), 1, - sym_concatenating_space, - ACTIONS(1247), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1375), 7, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - ACTIONS(644), 27, - anon_sym_COMMA, + [62897] = 2, + ACTIONS(1813), 1, + sym__if_else_separator, + ACTIONS(1811), 36, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, + anon_sym_if, + anon_sym_LPAREN, anon_sym_while, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_STAR, + anon_sym_do, + anon_sym_for, + sym_break_statement, + sym_continue_statement, + anon_sym_delete, + anon_sym_exit, + anon_sym_return, + anon_sym_switch, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, + anon_sym_getline, + sym_next_statement, + sym_nextfile_statement, + anon_sym_print, + anon_sym_printf, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PLUS, anon_sym_DASH, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [62943] = 3, + anon_sym_BANG, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_DOLLAR, + anon_sym_AT, + sym_identifier, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DQUOTE, + anon_sym_POUND, + [62939] = 3, ACTIONS(1113), 1, sym_regex_flags, ACTIONS(826), 11, @@ -76315,238 +76615,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT_EQ, anon_sym_CARET_EQ, anon_sym_RBRACK, - [62987] = 12, - ACTIONS(866), 1, - sym_concatenating_space, - ACTIONS(1811), 1, - anon_sym_in, - ACTIONS(1815), 1, - anon_sym_QMARK, - ACTIONS(1825), 1, - anon_sym_AMP_AMP, - ACTIONS(1827), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1343), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(1817), 2, - anon_sym_CARET, - anon_sym_STAR_STAR, - ACTIONS(1821), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1823), 2, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(1819), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1813), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(854), 15, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_while, - anon_sym_GT_GT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - [63049] = 3, - ACTIONS(1109), 1, - sym_regex_flags, - ACTIONS(832), 11, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ, - ACTIONS(836), 25, - sym_concatenating_space, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_RBRACK, - [63093] = 5, - ACTIONS(1829), 1, - sym_identifier, - STATE(2068), 1, - sym_namespace, - ACTIONS(714), 2, - sym_concatenating_space, - sym__if_else_separator, - STATE(1283), 2, - sym_array_ref, - sym_ns_qualified_name, - ACTIONS(712), 31, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_while, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_POUND, - [63141] = 11, - ACTIONS(878), 1, - sym_concatenating_space, - ACTIONS(1811), 1, - anon_sym_in, - ACTIONS(1815), 1, - anon_sym_QMARK, - ACTIONS(1825), 1, - anon_sym_AMP_AMP, - ACTIONS(1827), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1817), 2, - anon_sym_CARET, - anon_sym_STAR_STAR, - ACTIONS(1821), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1823), 2, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(1819), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1813), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(876), 17, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_while, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - [63201] = 7, - ACTIONS(870), 1, - sym_concatenating_space, - ACTIONS(1817), 2, - anon_sym_CARET, - anon_sym_STAR_STAR, - ACTIONS(1821), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1823), 2, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(1819), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1813), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(868), 21, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_while, - anon_sym_in, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - [63253] = 2, - ACTIONS(1833), 1, + [62983] = 2, + ACTIONS(1817), 1, sym__if_else_separator, - ACTIONS(1831), 36, + ACTIONS(1815), 36, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, @@ -76583,13 +76655,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [63295] = 2, - ACTIONS(1837), 1, + [63025] = 3, + ACTIONS(1823), 1, sym__if_else_separator, - ACTIONS(1835), 36, + ACTIONS(1821), 3, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, + ACTIONS(1819), 33, anon_sym_if, anon_sym_LPAREN, anon_sym_while, @@ -76623,332 +76696,101 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [63337] = 9, - ACTIONS(794), 1, + [63069] = 12, + ACTIONS(864), 1, sym_concatenating_space, - ACTIONS(1811), 1, - anon_sym_in, ACTIONS(1825), 1, - anon_sym_AMP_AMP, - ACTIONS(1817), 2, - anon_sym_CARET, - anon_sym_STAR_STAR, - ACTIONS(1821), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1823), 2, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(1819), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1813), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(792), 19, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_while, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - [63393] = 8, - ACTIONS(794), 1, - sym_concatenating_space, - ACTIONS(1811), 1, - anon_sym_in, - ACTIONS(1817), 2, - anon_sym_CARET, - anon_sym_STAR_STAR, - ACTIONS(1821), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1823), 2, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(1819), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1813), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(792), 20, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_while, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - [63447] = 6, - ACTIONS(794), 1, - sym_concatenating_space, - ACTIONS(1817), 2, - anon_sym_CARET, - anon_sym_STAR_STAR, - ACTIONS(1821), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1819), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1813), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(792), 23, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_while, - anon_sym_in, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - [63497] = 4, - ACTIONS(794), 1, - sym_concatenating_space, - ACTIONS(1817), 2, - anon_sym_CARET, - anon_sym_STAR_STAR, - ACTIONS(1819), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(792), 31, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_while, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - [63543] = 3, - ACTIONS(794), 1, - sym_concatenating_space, - ACTIONS(1817), 2, - anon_sym_CARET, - anon_sym_STAR_STAR, - ACTIONS(792), 34, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_while, anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, + ACTIONS(1829), 1, anon_sym_QMARK, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, + ACTIONS(1839), 1, anon_sym_AMP_AMP, + ACTIONS(1841), 1, anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - [63587] = 5, - ACTIONS(794), 1, - sym_concatenating_space, - ACTIONS(1817), 2, - anon_sym_CARET, - anon_sym_STAR_STAR, - ACTIONS(1821), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1819), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(792), 29, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_while, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, + ACTIONS(1345), 2, anon_sym_PIPE, anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - [63635] = 7, - ACTIONS(852), 1, - sym_concatenating_space, - ACTIONS(1817), 2, + ACTIONS(1831), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(1821), 2, + ACTIONS(1835), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1823), 2, + ACTIONS(1837), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(1819), 3, + ACTIONS(1833), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1813), 6, + ACTIONS(1827), 6, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(840), 21, + ACTIONS(848), 15, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, - anon_sym_CR_LF, - anon_sym_while, - anon_sym_in, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - [63687] = 7, - ACTIONS(732), 1, - anon_sym_EQ, - ACTIONS(908), 1, - anon_sym_LBRACK, - ACTIONS(1477), 1, - sym_concatenating_space, - ACTIONS(910), 2, + anon_sym_CR_LF, + anon_sym_while, + anon_sym_GT_GT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(989), 6, + anon_sym_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_CARET_EQ, - ACTIONS(644), 9, + [63131] = 2, + ACTIONS(1845), 1, + sym__if_else_separator, + ACTIONS(1843), 36, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_if, + anon_sym_LPAREN, + anon_sym_while, + anon_sym_do, + anon_sym_for, + sym_break_statement, + sym_continue_statement, + anon_sym_delete, + anon_sym_exit, + anon_sym_return, + anon_sym_switch, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, + anon_sym_getline, + sym_next_statement, + sym_nextfile_statement, + anon_sym_print, + anon_sym_printf, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_DOLLAR, + anon_sym_AT, + sym_identifier, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DQUOTE, + anon_sym_POUND, + [63173] = 3, + ACTIONS(1109), 1, + sym_regex_flags, + ACTIONS(832), 11, + anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -76958,11 +76800,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(658), 17, + anon_sym_EQ, + ACTIONS(836), 25, + sym_concatenating_space, anon_sym_COMMA, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_in, anon_sym_COLON, anon_sym_PIPE_AMP, anon_sym_QMARK, @@ -76975,14 +76818,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, anon_sym_RBRACK, - [63739] = 2, - ACTIONS(1841), 1, + [63217] = 3, + ACTIONS(1849), 1, sym__if_else_separator, - ACTIONS(1839), 36, + ACTIONS(1821), 3, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, + ACTIONS(1847), 33, anon_sym_if, anon_sym_LPAREN, anon_sym_while, @@ -77016,10 +76868,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [63781] = 2, - ACTIONS(1845), 1, + [63261] = 2, + ACTIONS(1849), 1, sym__if_else_separator, - ACTIONS(1843), 36, + ACTIONS(1847), 36, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, @@ -77056,14 +76908,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [63823] = 3, - ACTIONS(1851), 1, + [63303] = 3, + ACTIONS(1853), 1, sym__if_else_separator, - ACTIONS(1849), 3, + ACTIONS(1821), 3, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, - ACTIONS(1847), 33, + ACTIONS(1851), 33, anon_sym_if, anon_sym_LPAREN, anon_sym_while, @@ -77097,10 +76949,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [63867] = 2, - ACTIONS(1851), 1, + [63347] = 2, + ACTIONS(1853), 1, sym__if_else_separator, - ACTIONS(1847), 36, + ACTIONS(1851), 36, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, @@ -77137,14 +76989,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [63909] = 3, - ACTIONS(1855), 1, + [63389] = 3, + ACTIONS(1857), 1, sym__if_else_separator, - ACTIONS(1849), 3, + ACTIONS(1821), 3, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, - ACTIONS(1853), 33, + ACTIONS(1855), 33, anon_sym_if, anon_sym_LPAREN, anon_sym_while, @@ -77178,10 +77030,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [63953] = 2, - ACTIONS(1855), 1, + [63433] = 2, + ACTIONS(1857), 1, sym__if_else_separator, - ACTIONS(1853), 36, + ACTIONS(1855), 36, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, @@ -77218,13 +77070,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [63995] = 2, - ACTIONS(1017), 1, - anon_sym_LBRACK, - ACTIONS(1505), 36, + [63475] = 3, + ACTIONS(1861), 1, + sym__if_else_separator, + ACTIONS(1821), 3, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, + ACTIONS(1859), 33, anon_sym_if, anon_sym_LPAREN, anon_sym_while, @@ -77258,14 +77111,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [64037] = 3, - ACTIONS(1859), 1, + [63519] = 2, + ACTIONS(1861), 1, sym__if_else_separator, - ACTIONS(1849), 3, + ACTIONS(1859), 36, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, - ACTIONS(1857), 33, anon_sym_if, anon_sym_LPAREN, anon_sym_while, @@ -77299,13 +77151,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [64081] = 2, - ACTIONS(1859), 1, + [63561] = 3, + ACTIONS(1865), 1, sym__if_else_separator, - ACTIONS(1857), 36, + ACTIONS(1821), 3, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, + ACTIONS(1863), 33, anon_sym_if, anon_sym_LPAREN, anon_sym_while, @@ -77339,14 +77192,56 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [64123] = 3, - ACTIONS(1863), 1, + [63605] = 5, + ACTIONS(1867), 1, + sym_identifier, + STATE(2073), 1, + sym_namespace, + ACTIONS(728), 2, + sym_concatenating_space, + sym__if_else_separator, + STATE(1295), 2, + sym_array_ref, + sym_ns_qualified_name, + ACTIONS(726), 31, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_while, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_CARET, + anon_sym_STAR_STAR, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_POUND, + [63653] = 2, + ACTIONS(1865), 1, sym__if_else_separator, - ACTIONS(1849), 3, + ACTIONS(1863), 36, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, - ACTIONS(1861), 33, anon_sym_if, anon_sym_LPAREN, anon_sym_while, @@ -77380,13 +77275,56 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [64167] = 2, - ACTIONS(1863), 1, + [63695] = 4, + ACTIONS(908), 1, + anon_sym_LBRACK, + ACTIONS(1759), 1, + anon_sym_LT, + ACTIONS(688), 9, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ, + ACTIONS(690), 26, + sym_concatenating_space, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_in, + anon_sym_COLON, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_RBRACK, + [63741] = 3, + ACTIONS(1871), 1, sym__if_else_separator, - ACTIONS(1861), 36, + ACTIONS(1821), 3, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, + ACTIONS(1869), 33, anon_sym_if, anon_sym_LPAREN, anon_sym_while, @@ -77420,14 +77358,101 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [64209] = 3, - ACTIONS(1867), 1, + [63785] = 5, + ACTIONS(874), 1, + sym_concatenating_space, + ACTIONS(1831), 2, + anon_sym_CARET, + anon_sym_STAR_STAR, + ACTIONS(1835), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1833), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(872), 29, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_while, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + [63833] = 7, + ACTIONS(696), 1, + anon_sym_EQ, + ACTIONS(908), 1, + anon_sym_LBRACK, + ACTIONS(1485), 1, + sym_concatenating_space, + ACTIONS(906), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(983), 6, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + ACTIONS(642), 9, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(652), 17, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_in, + anon_sym_COLON, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_RBRACK, + [63885] = 2, + ACTIONS(1871), 1, sym__if_else_separator, - ACTIONS(1849), 3, + ACTIONS(1869), 36, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, - ACTIONS(1865), 33, anon_sym_if, anon_sym_LPAREN, anon_sym_while, @@ -77461,13 +77486,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [64253] = 2, - ACTIONS(1867), 1, + [63927] = 3, + ACTIONS(1875), 1, sym__if_else_separator, - ACTIONS(1865), 36, + ACTIONS(1821), 3, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, + ACTIONS(1873), 33, anon_sym_if, anon_sym_LPAREN, anon_sym_while, @@ -77501,14 +77527,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [64295] = 3, - ACTIONS(1871), 1, + [63971] = 2, + ACTIONS(1875), 1, sym__if_else_separator, - ACTIONS(1849), 3, + ACTIONS(1873), 36, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, - ACTIONS(1869), 33, anon_sym_if, anon_sym_LPAREN, anon_sym_while, @@ -77542,13 +77567,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [64339] = 2, - ACTIONS(1871), 1, + [64013] = 3, + ACTIONS(1879), 1, sym__if_else_separator, - ACTIONS(1869), 36, + ACTIONS(1821), 3, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, + ACTIONS(1877), 33, anon_sym_if, anon_sym_LPAREN, anon_sym_while, @@ -77582,14 +77608,94 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [64381] = 3, - ACTIONS(1875), 1, + [64057] = 2, + ACTIONS(1879), 1, sym__if_else_separator, - ACTIONS(1849), 3, + ACTIONS(1877), 36, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_if, + anon_sym_LPAREN, + anon_sym_while, + anon_sym_do, + anon_sym_for, + sym_break_statement, + sym_continue_statement, + anon_sym_delete, + anon_sym_exit, + anon_sym_return, + anon_sym_switch, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, + anon_sym_getline, + sym_next_statement, + sym_nextfile_statement, + anon_sym_print, + anon_sym_printf, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_DOLLAR, + anon_sym_AT, + sym_identifier, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DQUOTE, + anon_sym_POUND, + [64099] = 3, + ACTIONS(1883), 1, + sym__if_else_separator, + ACTIONS(1821), 3, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + ACTIONS(1881), 33, + anon_sym_if, + anon_sym_LPAREN, + anon_sym_while, + anon_sym_do, + anon_sym_for, + sym_break_statement, + sym_continue_statement, + anon_sym_delete, + anon_sym_exit, + anon_sym_return, + anon_sym_switch, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, + anon_sym_getline, + sym_next_statement, + sym_nextfile_statement, + anon_sym_print, + anon_sym_printf, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_DOLLAR, + anon_sym_AT, + sym_identifier, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DQUOTE, + anon_sym_POUND, + [64143] = 2, + ACTIONS(1883), 1, + sym__if_else_separator, + ACTIONS(1881), 36, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, - ACTIONS(1873), 33, anon_sym_if, anon_sym_LPAREN, anon_sym_while, @@ -77616,108 +77722,341 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [64425] = 2, - ACTIONS(1875), 1, - sym__if_else_separator, - ACTIONS(1873), 36, + anon_sym_DOLLAR, + anon_sym_AT, + sym_identifier, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DQUOTE, + anon_sym_POUND, + [64185] = 11, + ACTIONS(878), 1, + sym_concatenating_space, + ACTIONS(1825), 1, + anon_sym_in, + ACTIONS(1829), 1, + anon_sym_QMARK, + ACTIONS(1839), 1, + anon_sym_AMP_AMP, + ACTIONS(1841), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1831), 2, + anon_sym_CARET, + anon_sym_STAR_STAR, + ACTIONS(1835), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1837), 2, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(1833), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1827), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(876), 17, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_while, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + [64245] = 7, + ACTIONS(882), 1, + sym_concatenating_space, + ACTIONS(1831), 2, + anon_sym_CARET, + anon_sym_STAR_STAR, + ACTIONS(1835), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1837), 2, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(1833), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1827), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(880), 21, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_while, + anon_sym_in, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + [64297] = 9, + ACTIONS(778), 1, + sym_concatenating_space, + ACTIONS(1825), 1, + anon_sym_in, + ACTIONS(1839), 1, + anon_sym_AMP_AMP, + ACTIONS(1831), 2, + anon_sym_CARET, + anon_sym_STAR_STAR, + ACTIONS(1835), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1837), 2, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(1833), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1827), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(776), 19, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_while, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + [64353] = 8, + ACTIONS(778), 1, + sym_concatenating_space, + ACTIONS(1825), 1, + anon_sym_in, + ACTIONS(1831), 2, + anon_sym_CARET, + anon_sym_STAR_STAR, + ACTIONS(1835), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1837), 2, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(1833), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1827), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(776), 20, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_while, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + [64407] = 6, + ACTIONS(778), 1, + sym_concatenating_space, + ACTIONS(1831), 2, + anon_sym_CARET, + anon_sym_STAR_STAR, + ACTIONS(1835), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1833), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1827), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(776), 23, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_while, + anon_sym_in, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + [64457] = 4, + ACTIONS(778), 1, + sym_concatenating_space, + ACTIONS(1831), 2, + anon_sym_CARET, + anon_sym_STAR_STAR, + ACTIONS(1833), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(776), 31, + anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, anon_sym_while, - anon_sym_do, - anon_sym_for, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - anon_sym_getline, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_SLASH, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_QMARK, anon_sym_PLUS, anon_sym_DASH, - anon_sym_BANG, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [64467] = 3, - ACTIONS(1879), 1, - sym__if_else_separator, - ACTIONS(1849), 3, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + [64503] = 3, + ACTIONS(778), 1, + sym_concatenating_space, + ACTIONS(1831), 2, + anon_sym_CARET, + anon_sym_STAR_STAR, + ACTIONS(776), 34, + anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, - ACTIONS(1877), 33, - anon_sym_if, - anon_sym_LPAREN, anon_sym_while, - anon_sym_do, - anon_sym_for, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - anon_sym_getline, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PLUS, anon_sym_DASH, - anon_sym_BANG, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [64511] = 5, - ACTIONS(882), 1, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + [64547] = 5, + ACTIONS(778), 1, sym_concatenating_space, - ACTIONS(1817), 2, + ACTIONS(1831), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(1821), 2, + ACTIONS(1835), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1819), 3, + ACTIONS(1833), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(880), 29, + ACTIONS(776), 29, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -77747,128 +78086,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_CARET_EQ, - [64559] = 2, - ACTIONS(1883), 1, - sym__if_else_separator, - ACTIONS(1881), 36, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - anon_sym_getline, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_SLASH, + [64595] = 7, + ACTIONS(870), 1, + sym_concatenating_space, + ACTIONS(1831), 2, + anon_sym_CARET, + anon_sym_STAR_STAR, + ACTIONS(1835), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [64601] = 2, - ACTIONS(1879), 1, - sym__if_else_separator, - ACTIONS(1877), 36, + ACTIONS(1837), 2, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(1833), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1827), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(868), 21, + anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, anon_sym_while, - anon_sym_do, - anon_sym_for, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - anon_sym_getline, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, + anon_sym_in, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [64643] = 3, - ACTIONS(1883), 1, - sym__if_else_separator, - ACTIONS(1849), 3, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + [64647] = 4, + ACTIONS(652), 1, + sym_concatenating_space, + ACTIONS(1249), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1377), 7, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + ACTIONS(642), 27, + anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, - ACTIONS(1881), 33, - anon_sym_if, - anon_sym_LPAREN, anon_sym_while, - anon_sym_do, - anon_sym_for, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - anon_sym_getline, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_CARET, + anon_sym_STAR_STAR, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PLUS, anon_sym_DASH, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [64687] = 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [64693] = 2, ACTIONS(1887), 1, sym__if_else_separator, ACTIONS(1885), 36, @@ -77908,54 +78213,57 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [64729] = 2, - ACTIONS(1891), 1, - sym__if_else_separator, - ACTIONS(1889), 36, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - anon_sym_getline, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, + [64735] = 6, + ACTIONS(908), 1, + anon_sym_LBRACK, + ACTIONS(1473), 1, + anon_sym_EQ, + ACTIONS(1471), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1475), 6, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + ACTIONS(642), 9, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PLUS, anon_sym_DASH, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [64771] = 3, - ACTIONS(1895), 1, + ACTIONS(652), 18, + sym_concatenating_space, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_in, + anon_sym_COLON, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_RBRACK, + [64785] = 2, + ACTIONS(1823), 1, sym__if_else_separator, - ACTIONS(1849), 3, + ACTIONS(1819), 36, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, - ACTIONS(1893), 33, anon_sym_if, anon_sym_LPAREN, anon_sym_while, @@ -77989,55 +78297,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [64815] = 4, - ACTIONS(908), 1, - anon_sym_LBRACK, - ACTIONS(1793), 1, - anon_sym_LT, - ACTIONS(678), 9, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ, - ACTIONS(680), 26, - sym_concatenating_space, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_in, - anon_sym_COLON, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_RBRACK, - [64861] = 2, - ACTIONS(1895), 1, + [64827] = 3, + ACTIONS(1891), 1, sym__if_else_separator, - ACTIONS(1893), 36, + ACTIONS(1821), 3, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, + ACTIONS(1889), 33, anon_sym_if, anon_sym_LPAREN, anon_sym_while, @@ -78071,56 +78338,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [64903] = 4, - ACTIONS(658), 1, - sym_concatenating_space, - ACTIONS(1255), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1359), 7, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - ACTIONS(644), 27, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_while, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [64949] = 3, - ACTIONS(1899), 1, + [64871] = 2, + ACTIONS(1891), 1, sym__if_else_separator, - ACTIONS(1849), 3, + ACTIONS(1889), 36, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, - ACTIONS(1897), 33, anon_sym_if, anon_sym_LPAREN, anon_sym_while, @@ -78154,13 +78378,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [64993] = 2, - ACTIONS(1899), 1, + [64913] = 3, + ACTIONS(1895), 1, sym__if_else_separator, - ACTIONS(1897), 36, + ACTIONS(1821), 3, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, + ACTIONS(1893), 33, anon_sym_if, anon_sym_LPAREN, anon_sym_while, @@ -78194,58 +78419,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [65035] = 6, - ACTIONS(908), 1, - anon_sym_LBRACK, - ACTIONS(1541), 1, - anon_sym_EQ, - ACTIONS(1539), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1543), 6, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - ACTIONS(644), 9, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(658), 18, - sym_concatenating_space, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_in, - anon_sym_COLON, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_RBRACK, - [65085] = 3, - ACTIONS(1891), 1, + [64957] = 2, + ACTIONS(1895), 1, sym__if_else_separator, - ACTIONS(1849), 3, + ACTIONS(1893), 36, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, - ACTIONS(1889), 33, anon_sym_if, anon_sym_LPAREN, anon_sym_while, @@ -78279,14 +78459,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [65129] = 3, - ACTIONS(1903), 1, + [64999] = 2, + ACTIONS(1899), 1, sym__if_else_separator, - ACTIONS(1849), 3, + ACTIONS(1897), 36, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, - ACTIONS(1901), 33, anon_sym_if, anon_sym_LPAREN, anon_sym_while, @@ -78320,10 +78499,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [65173] = 2, - ACTIONS(1907), 1, + [65041] = 2, + ACTIONS(1899), 1, sym__if_else_separator, - ACTIONS(1905), 36, + ACTIONS(1897), 36, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, @@ -78360,7 +78539,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [65215] = 2, + [65083] = 2, ACTIONS(1903), 1, sym__if_else_separator, ACTIONS(1901), 36, @@ -78400,14 +78579,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [65257] = 3, - ACTIONS(1911), 1, + [65125] = 2, + ACTIONS(1907), 1, sym__if_else_separator, - ACTIONS(1849), 3, + ACTIONS(1905), 36, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, - ACTIONS(1909), 33, anon_sym_if, anon_sym_LPAREN, anon_sym_while, @@ -78441,7 +78619,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [65301] = 2, + [65167] = 2, ACTIONS(1911), 1, sym__if_else_separator, ACTIONS(1909), 36, @@ -78481,7 +78659,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [65343] = 2, + [65209] = 2, ACTIONS(1915), 1, sym__if_else_separator, ACTIONS(1913), 36, @@ -78521,10 +78699,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [65385] = 2, - ACTIONS(1919), 1, - sym__if_else_separator, - ACTIONS(1917), 36, + [65251] = 2, + ACTIONS(1021), 1, + anon_sym_LBRACK, + ACTIONS(1467), 36, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, @@ -78561,10 +78739,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [65427] = 2, - ACTIONS(1923), 1, + [65293] = 2, + ACTIONS(1919), 1, sym__if_else_separator, - ACTIONS(1921), 36, + ACTIONS(1917), 36, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, @@ -78601,14 +78779,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [65469] = 3, + [65335] = 2, ACTIONS(1923), 1, sym__if_else_separator, - ACTIONS(1849), 3, + ACTIONS(1921), 36, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, - ACTIONS(1921), 33, anon_sym_if, anon_sym_LPAREN, anon_sym_while, @@ -78642,10 +78819,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [65513] = 2, - ACTIONS(1919), 1, + [65377] = 2, + ACTIONS(1927), 1, sym__if_else_separator, - ACTIONS(1917), 36, + ACTIONS(1925), 36, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, @@ -78682,13 +78859,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [65555] = 2, + [65419] = 3, ACTIONS(1927), 1, sym__if_else_separator, - ACTIONS(1925), 36, + ACTIONS(1821), 3, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, + ACTIONS(1925), 33, anon_sym_if, anon_sym_LPAREN, anon_sym_while, @@ -78722,14 +78900,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [65597] = 3, + [65463] = 2, ACTIONS(1931), 1, sym__if_else_separator, - ACTIONS(1849), 3, + ACTIONS(1929), 36, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, - ACTIONS(1929), 33, anon_sym_if, anon_sym_LPAREN, anon_sym_while, @@ -78763,13 +78940,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [65641] = 2, + [65505] = 3, ACTIONS(1931), 1, sym__if_else_separator, - ACTIONS(1929), 36, + ACTIONS(1821), 3, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, + ACTIONS(1929), 33, anon_sym_if, anon_sym_LPAREN, anon_sym_while, @@ -78803,7 +78981,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [65683] = 2, + [65549] = 2, ACTIONS(1935), 1, sym__if_else_separator, ACTIONS(1933), 36, @@ -78843,253 +79021,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [65725] = 2, - ACTIONS(1939), 1, - sym__if_else_separator, - ACTIONS(1937), 36, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - anon_sym_getline, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [65767] = 3, - ACTIONS(1943), 1, - sym__if_else_separator, - ACTIONS(1849), 3, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - ACTIONS(1941), 33, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - anon_sym_getline, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [65811] = 2, - ACTIONS(1943), 1, - sym__if_else_separator, - ACTIONS(1941), 36, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - anon_sym_getline, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [65853] = 3, - ACTIONS(1947), 1, - sym__if_else_separator, - ACTIONS(1849), 3, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - ACTIONS(1945), 33, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - anon_sym_getline, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [65897] = 2, - ACTIONS(1947), 1, - sym__if_else_separator, - ACTIONS(1945), 36, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - anon_sym_getline, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [65939] = 3, - ACTIONS(1951), 1, - sym__if_else_separator, - ACTIONS(1849), 3, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - ACTIONS(1949), 33, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - anon_sym_getline, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [65983] = 2, - ACTIONS(1955), 1, + [65591] = 2, + ACTIONS(1939), 1, sym__if_else_separator, - ACTIONS(1953), 36, + ACTIONS(1937), 36, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, @@ -79126,10 +79061,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [66025] = 2, - ACTIONS(1951), 1, + [65633] = 2, + ACTIONS(1943), 1, sym__if_else_separator, - ACTIONS(1949), 36, + ACTIONS(1941), 36, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, @@ -79166,13 +79101,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [66067] = 2, - ACTIONS(1959), 1, + [65675] = 3, + ACTIONS(1935), 1, sym__if_else_separator, - ACTIONS(1957), 36, + ACTIONS(1821), 3, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, + ACTIONS(1933), 33, anon_sym_if, anon_sym_LPAREN, anon_sym_while, @@ -79206,14 +79142,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [66109] = 3, - ACTIONS(1955), 1, + [65719] = 2, + ACTIONS(1947), 1, sym__if_else_separator, - ACTIONS(1849), 3, + ACTIONS(1945), 36, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, - ACTIONS(1953), 33, anon_sym_if, anon_sym_LPAREN, anon_sym_while, @@ -79247,13 +79182,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [66153] = 2, - ACTIONS(1963), 1, + [65761] = 3, + ACTIONS(1947), 1, sym__if_else_separator, - ACTIONS(1961), 36, + ACTIONS(1821), 3, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, + ACTIONS(1945), 33, anon_sym_if, anon_sym_LPAREN, anon_sym_while, @@ -79287,11 +79223,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [66195] = 1, - ACTIONS(1873), 36, + [65805] = 3, + ACTIONS(1939), 1, + sym__if_else_separator, + ACTIONS(1821), 3, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, + ACTIONS(1937), 33, anon_sym_if, anon_sym_LPAREN, anon_sym_while, @@ -79325,12 +79264,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [66234] = 2, - ACTIONS(1965), 3, + [65849] = 2, + ACTIONS(1951), 1, + sym__if_else_separator, + ACTIONS(1949), 36, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, - ACTIONS(1897), 33, anon_sym_if, anon_sym_LPAREN, anon_sym_while, @@ -79364,12 +79304,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [66275] = 2, - ACTIONS(1965), 3, + [65891] = 2, + ACTIONS(1955), 1, + sym__if_else_separator, + ACTIONS(1953), 36, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, - ACTIONS(1949), 33, anon_sym_if, anon_sym_LPAREN, anon_sym_while, @@ -79403,11 +79344,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [66316] = 1, - ACTIONS(1949), 36, + [65933] = 3, + ACTIONS(1955), 1, + sym__if_else_separator, + ACTIONS(1821), 3, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, + ACTIONS(1953), 33, anon_sym_if, anon_sym_LPAREN, anon_sym_while, @@ -79441,12 +79385,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [66355] = 2, - ACTIONS(1965), 3, + [65977] = 3, + ACTIONS(1959), 1, + sym__if_else_separator, + ACTIONS(1821), 3, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, - ACTIONS(1953), 33, + ACTIONS(1957), 33, anon_sym_if, anon_sym_LPAREN, anon_sym_while, @@ -79480,8 +79426,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [66396] = 1, - ACTIONS(1953), 36, + [66021] = 2, + ACTIONS(1963), 1, + sym__if_else_separator, + ACTIONS(1961), 36, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, @@ -79518,11 +79466,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [66435] = 1, - ACTIONS(1961), 36, + [66063] = 3, + ACTIONS(1963), 1, + sym__if_else_separator, + ACTIONS(1821), 3, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, + ACTIONS(1961), 33, anon_sym_if, anon_sym_LPAREN, anon_sym_while, @@ -79556,7 +79507,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [66474] = 1, + [66107] = 2, + ACTIONS(1959), 1, + sym__if_else_separator, ACTIONS(1957), 36, anon_sym_SEMI, anon_sym_LF, @@ -79594,11 +79547,54 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [66513] = 1, - ACTIONS(1937), 36, + [66149] = 4, + ACTIONS(1385), 1, + sym_concatenating_space, + ACTIONS(1253), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1383), 7, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + ACTIONS(642), 27, + anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, + anon_sym_while, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_CARET, + anon_sym_STAR_STAR, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [66195] = 2, + ACTIONS(1965), 3, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + ACTIONS(1937), 33, anon_sym_if, anon_sym_LPAREN, anon_sym_while, @@ -79632,8 +79628,94 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [66552] = 1, - ACTIONS(1933), 36, + [66236] = 5, + ACTIONS(728), 1, + sym__if_else_separator, + ACTIONS(1967), 1, + sym_identifier, + STATE(2072), 1, + sym_namespace, + STATE(1330), 2, + sym_array_ref, + sym_ns_qualified_name, + ACTIONS(726), 31, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_while, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_CARET, + anon_sym_STAR_STAR, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_POUND, + [66283] = 7, + ACTIONS(1969), 1, + sym_identifier, + ACTIONS(1971), 1, + anon_sym_LT, + STATE(1295), 1, + sym_array_ref, + STATE(1331), 1, + sym_ns_qualified_name, + STATE(2073), 1, + sym_namespace, + ACTIONS(728), 2, + sym_concatenating_space, + sym__if_else_separator, + ACTIONS(726), 29, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_CARET, + anon_sym_STAR_STAR, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_POUND, + [66334] = 1, + ACTIONS(1929), 36, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, @@ -79670,12 +79752,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [66591] = 2, - ACTIONS(1965), 3, + [66373] = 1, + ACTIONS(1851), 36, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, - ACTIONS(1921), 33, anon_sym_if, anon_sym_LPAREN, anon_sym_while, @@ -79709,8 +79790,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [66632] = 1, - ACTIONS(1921), 36, + [66412] = 1, + ACTIONS(1859), 36, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, @@ -79747,11 +79828,57 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [66671] = 1, - ACTIONS(1905), 36, + [66451] = 8, + ACTIONS(1975), 1, + anon_sym_CARET, + ACTIONS(1977), 1, + anon_sym_STAR_STAR, + ACTIONS(776), 2, + anon_sym_PIPE, + anon_sym_EQ, + ACTIONS(1973), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1981), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1979), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1983), 4, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(778), 21, + sym_concatenating_space, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_in, + anon_sym_COLON, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_RBRACK, + [66504] = 2, + ACTIONS(1965), 3, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, + ACTIONS(1863), 33, anon_sym_if, anon_sym_LPAREN, anon_sym_while, @@ -79785,12 +79912,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [66710] = 2, - ACTIONS(1965), 3, + [66545] = 1, + ACTIONS(1863), 36, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, - ACTIONS(1889), 33, anon_sym_if, anon_sym_LPAREN, anon_sym_while, @@ -79824,8 +79950,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [66751] = 1, - ACTIONS(1889), 36, + [66584] = 1, + ACTIONS(1957), 36, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, @@ -79862,11 +79988,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [66790] = 1, - ACTIONS(1885), 36, + [66623] = 2, + ACTIONS(1965), 3, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, + ACTIONS(1957), 33, anon_sym_if, anon_sym_LPAREN, anon_sym_while, @@ -79900,11 +80027,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [66829] = 1, - ACTIONS(1839), 36, + [66664] = 2, + ACTIONS(1965), 3, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, + ACTIONS(1869), 33, anon_sym_if, anon_sym_LPAREN, anon_sym_while, @@ -79938,12 +80066,58 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [66868] = 2, - ACTIONS(1965), 3, + [66705] = 10, + ACTIONS(1975), 1, + anon_sym_CARET, + ACTIONS(1977), 1, + anon_sym_STAR_STAR, + ACTIONS(1985), 1, + anon_sym_in, + ACTIONS(776), 2, + anon_sym_PIPE, + anon_sym_EQ, + ACTIONS(1973), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1981), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1987), 2, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(1979), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1983), 4, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(778), 18, + sym_concatenating_space, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_RBRACK, + [66762] = 1, + ACTIONS(1869), 36, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, - ACTIONS(1945), 33, anon_sym_if, anon_sym_LPAREN, anon_sym_while, @@ -79977,11 +80151,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [66909] = 1, - ACTIONS(1941), 36, + [66801] = 2, + ACTIONS(1965), 3, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, + ACTIONS(1873), 33, anon_sym_if, anon_sym_LPAREN, anon_sym_while, @@ -80015,12 +80190,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [66948] = 2, - ACTIONS(1965), 3, + [66842] = 1, + ACTIONS(1873), 36, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, - ACTIONS(1881), 33, anon_sym_if, anon_sym_LPAREN, anon_sym_while, @@ -80054,11 +80228,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [66989] = 1, - ACTIONS(1881), 36, + [66881] = 2, + ACTIONS(1965), 3, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, + ACTIONS(1877), 33, anon_sym_if, anon_sym_LPAREN, anon_sym_while, @@ -80092,8 +80267,49 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [67028] = 1, - ACTIONS(1843), 36, + [66922] = 4, + ACTIONS(1975), 1, + anon_sym_CARET, + ACTIONS(1977), 1, + anon_sym_STAR_STAR, + ACTIONS(776), 9, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ, + ACTIONS(778), 25, + sym_concatenating_space, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_in, + anon_sym_COLON, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_RBRACK, + [66967] = 1, + ACTIONS(1877), 36, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, @@ -80130,58 +80346,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [67067] = 9, - ACTIONS(1969), 1, - anon_sym_CARET, - ACTIONS(1971), 1, - anon_sym_STAR_STAR, - ACTIONS(840), 2, - anon_sym_PIPE, - anon_sym_EQ, - ACTIONS(1967), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1975), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1979), 2, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(1973), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1977), 4, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(852), 19, - sym_concatenating_space, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_in, - anon_sym_COLON, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_RBRACK, - [67122] = 2, - ACTIONS(1965), 3, + [67006] = 1, + ACTIONS(1945), 36, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, - ACTIONS(1941), 33, anon_sym_if, anon_sym_LPAREN, anon_sym_while, @@ -80215,11 +80384,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [67163] = 1, - ACTIONS(1929), 36, + [67045] = 2, + ACTIONS(1965), 3, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, + ACTIONS(1945), 33, anon_sym_if, anon_sym_LPAREN, anon_sym_while, @@ -80253,12 +80423,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [67202] = 2, + [67086] = 2, ACTIONS(1965), 3, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, - ACTIONS(1929), 33, + ACTIONS(1881), 33, anon_sym_if, anon_sym_LPAREN, anon_sym_while, @@ -80292,8 +80462,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [67243] = 1, - ACTIONS(1917), 36, + [67127] = 1, + ACTIONS(1949), 36, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, @@ -80330,8 +80500,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [67282] = 1, - ACTIONS(1917), 36, + [67166] = 1, + ACTIONS(1953), 36, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, @@ -80368,11 +80538,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [67321] = 1, - ACTIONS(1913), 36, + [67205] = 2, + ACTIONS(1965), 3, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, + ACTIONS(1855), 33, anon_sym_if, anon_sym_LPAREN, anon_sym_while, @@ -80406,8 +80577,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [67360] = 1, - ACTIONS(1909), 36, + [67246] = 1, + ACTIONS(1881), 36, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, @@ -80444,12 +80615,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [67399] = 2, + [67285] = 2, ACTIONS(1965), 3, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, - ACTIONS(1909), 33, + ACTIONS(1819), 33, anon_sym_if, anon_sym_LPAREN, anon_sym_while, @@ -80483,11 +80654,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [67440] = 1, - ACTIONS(1901), 36, + [67326] = 2, + ACTIONS(1965), 3, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, + ACTIONS(1953), 33, anon_sym_if, anon_sym_LPAREN, anon_sym_while, @@ -80521,12 +80693,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [67479] = 2, + [67367] = 2, ACTIONS(1965), 3, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, - ACTIONS(1901), 33, + ACTIONS(1961), 33, anon_sym_if, anon_sym_LPAREN, anon_sym_while, @@ -80560,8 +80732,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [67520] = 1, - ACTIONS(1897), 36, + [67408] = 1, + ACTIONS(1961), 36, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, @@ -80598,8 +80770,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [67559] = 1, - ACTIONS(1925), 36, + [67447] = 1, + ACTIONS(1819), 36, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, @@ -80636,109 +80808,33 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [67598] = 5, - ACTIONS(714), 1, - sym__if_else_separator, - ACTIONS(1981), 1, - sym_identifier, - STATE(2067), 1, - sym_namespace, - STATE(1299), 2, - sym_array_ref, - sym_ns_qualified_name, - ACTIONS(712), 31, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_while, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, + [67486] = 9, + ACTIONS(1975), 1, anon_sym_CARET, + ACTIONS(1977), 1, anon_sym_STAR_STAR, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(868), 2, + anon_sym_PIPE, + anon_sym_EQ, + ACTIONS(1973), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1981), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + ACTIONS(1987), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_POUND, - [67645] = 6, - ACTIONS(732), 1, - anon_sym_EQ, - ACTIONS(1477), 1, - sym_concatenating_space, - ACTIONS(910), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(989), 6, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - ACTIONS(644), 9, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(1979), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(658), 17, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_in, - anon_sym_COLON, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_STAR_STAR, + ACTIONS(1983), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_RBRACK, - [67694] = 6, - ACTIONS(1969), 1, - anon_sym_CARET, - ACTIONS(1971), 1, - anon_sym_STAR_STAR, - ACTIONS(1975), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1973), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(880), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_EQ, - ACTIONS(882), 25, + ACTIONS(870), 19, sym_concatenating_space, anon_sym_COMMA, anon_sym_SEMI, @@ -80747,12 +80843,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_PIPE_AMP, anon_sym_QMARK, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_PLUS, @@ -80764,24 +80854,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT_EQ, anon_sym_CARET_EQ, anon_sym_RBRACK, - [67743] = 6, - ACTIONS(1969), 1, + [67541] = 6, + ACTIONS(1975), 1, anon_sym_CARET, - ACTIONS(1971), 1, + ACTIONS(1977), 1, anon_sym_STAR_STAR, - ACTIONS(1975), 2, + ACTIONS(1981), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1973), 3, + ACTIONS(1979), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(792), 4, + ACTIONS(776), 4, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_EQ, - ACTIONS(794), 25, + ACTIONS(778), 25, sym_concatenating_space, anon_sym_COMMA, anon_sym_SEMI, @@ -80807,105 +80897,166 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT_EQ, anon_sym_CARET_EQ, anon_sym_RBRACK, - [67792] = 15, - ACTIONS(854), 1, - anon_sym_EQ, - ACTIONS(1969), 1, - anon_sym_CARET, - ACTIONS(1971), 1, - anon_sym_STAR_STAR, - ACTIONS(1983), 1, - anon_sym_in, - ACTIONS(1985), 1, - anon_sym_PIPE, - ACTIONS(1987), 1, - anon_sym_PIPE_AMP, - ACTIONS(1989), 1, - anon_sym_QMARK, - ACTIONS(1991), 1, - anon_sym_AMP_AMP, - ACTIONS(1993), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1967), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1975), 2, + [67590] = 1, + ACTIONS(1811), 36, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_if, + anon_sym_LPAREN, + anon_sym_while, + anon_sym_do, + anon_sym_for, + sym_break_statement, + sym_continue_statement, + anon_sym_delete, + anon_sym_exit, + anon_sym_return, + anon_sym_switch, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, + anon_sym_getline, + sym_next_statement, + sym_nextfile_statement, + anon_sym_print, + anon_sym_printf, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_DOLLAR, + anon_sym_AT, + sym_identifier, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DQUOTE, + anon_sym_POUND, + [67629] = 1, + ACTIONS(1889), 36, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_if, + anon_sym_LPAREN, + anon_sym_while, + anon_sym_do, + anon_sym_for, + sym_break_statement, + sym_continue_statement, + anon_sym_delete, + anon_sym_exit, + anon_sym_return, + anon_sym_switch, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, + anon_sym_getline, + sym_next_statement, + sym_nextfile_statement, + anon_sym_print, + anon_sym_printf, + anon_sym_SLASH, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1979), 2, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(1973), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1977), 4, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(866), 14, - sym_concatenating_space, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COLON, + anon_sym_BANG, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_RBRACK, - [67859] = 5, - ACTIONS(1541), 1, - anon_sym_EQ, - ACTIONS(1539), 2, + anon_sym_DOLLAR, + anon_sym_AT, + sym_identifier, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DQUOTE, + anon_sym_POUND, + [67668] = 2, + ACTIONS(1965), 3, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + ACTIONS(1859), 33, + anon_sym_if, + anon_sym_LPAREN, + anon_sym_while, + anon_sym_do, + anon_sym_for, + sym_break_statement, + sym_continue_statement, + anon_sym_delete, + anon_sym_exit, + anon_sym_return, + anon_sym_switch, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, + anon_sym_getline, + sym_next_statement, + sym_nextfile_statement, + anon_sym_print, + anon_sym_printf, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1543), 6, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - ACTIONS(644), 9, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_STAR, + anon_sym_DOLLAR, + anon_sym_AT, + sym_identifier, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DQUOTE, + anon_sym_POUND, + [67709] = 2, + ACTIONS(1965), 3, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + ACTIONS(1929), 33, + anon_sym_if, + anon_sym_LPAREN, + anon_sym_while, + anon_sym_do, + anon_sym_for, + sym_break_statement, + sym_continue_statement, + anon_sym_delete, + anon_sym_exit, + anon_sym_return, + anon_sym_switch, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, + anon_sym_getline, + sym_next_statement, + sym_nextfile_statement, + anon_sym_print, + anon_sym_printf, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(658), 18, - sym_concatenating_space, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_in, - anon_sym_COLON, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_RBRACK, - [67906] = 1, - ACTIONS(1893), 36, + anon_sym_BANG, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_DOLLAR, + anon_sym_AT, + sym_identifier, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DQUOTE, + anon_sym_POUND, + [67750] = 2, + ACTIONS(1965), 3, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, + ACTIONS(1889), 33, anon_sym_if, anon_sym_LPAREN, anon_sym_while, @@ -80939,12 +81090,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [67945] = 2, + [67791] = 2, ACTIONS(1965), 3, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, - ACTIONS(1893), 33, + ACTIONS(1933), 33, anon_sym_if, anon_sym_LPAREN, anon_sym_while, @@ -80978,27 +81129,51 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [67986] = 4, - ACTIONS(1999), 1, - anon_sym_POUND, - STATE(1238), 2, - sym_comment, - aux_sym_if_statement_repeat1, - ACTIONS(1997), 12, + [67832] = 1, + ACTIONS(1913), 36, anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_if, anon_sym_LPAREN, + anon_sym_while, + anon_sym_do, + anon_sym_for, + sym_break_statement, + sym_continue_statement, + anon_sym_delete, + anon_sym_exit, + anon_sym_return, + anon_sym_switch, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, + anon_sym_getline, + sym_next_statement, + sym_nextfile_statement, + anon_sym_print, + anon_sym_printf, anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_BANG, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_DOLLAR, anon_sym_AT, + sym_identifier, + aux_sym_number_token1, aux_sym_number_token2, anon_sym_DQUOTE, - ACTIONS(1995), 21, + anon_sym_POUND, + [67871] = 1, + ACTIONS(1905), 36, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, anon_sym_if, + anon_sym_LPAREN, anon_sym_while, anon_sym_do, anon_sym_for, @@ -81008,6 +81183,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_exit, anon_sym_return, anon_sym_switch, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_case, anon_sym_default, anon_sym_getline, @@ -81015,12 +81192,21 @@ static const uint16_t ts_small_parse_table[] = { sym_nextfile_statement, anon_sym_print, anon_sym_printf, + anon_sym_SLASH, anon_sym_PLUS, anon_sym_DASH, + anon_sym_BANG, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_DOLLAR, + anon_sym_AT, sym_identifier, aux_sym_number_token1, - [68031] = 1, - ACTIONS(1877), 36, + aux_sym_number_token2, + anon_sym_DQUOTE, + anon_sym_POUND, + [67910] = 1, + ACTIONS(1897), 36, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, @@ -81057,12 +81243,112 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [68070] = 2, + [67949] = 15, + ACTIONS(848), 1, + anon_sym_EQ, + ACTIONS(1975), 1, + anon_sym_CARET, + ACTIONS(1977), 1, + anon_sym_STAR_STAR, + ACTIONS(1985), 1, + anon_sym_in, + ACTIONS(1989), 1, + anon_sym_PIPE, + ACTIONS(1991), 1, + anon_sym_PIPE_AMP, + ACTIONS(1993), 1, + anon_sym_QMARK, + ACTIONS(1995), 1, + anon_sym_AMP_AMP, + ACTIONS(1997), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1973), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1981), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1987), 2, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(1979), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1983), 4, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(864), 14, + sym_concatenating_space, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_RBRACK, + [68016] = 11, + ACTIONS(1975), 1, + anon_sym_CARET, + ACTIONS(1977), 1, + anon_sym_STAR_STAR, + ACTIONS(1985), 1, + anon_sym_in, + ACTIONS(1995), 1, + anon_sym_AMP_AMP, + ACTIONS(776), 2, + anon_sym_PIPE, + anon_sym_EQ, + ACTIONS(1973), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1981), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1987), 2, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(1979), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1983), 4, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(778), 17, + sym_concatenating_space, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_RBRACK, + [68075] = 2, ACTIONS(1965), 3, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, - ACTIONS(1877), 33, + ACTIONS(1851), 33, anon_sym_if, anon_sym_LPAREN, anon_sym_while, @@ -81096,17 +81382,105 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [68111] = 5, - ACTIONS(714), 1, + [68116] = 5, + ACTIONS(1473), 1, + anon_sym_EQ, + ACTIONS(1471), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1475), 6, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + ACTIONS(642), 9, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(652), 18, + sym_concatenating_space, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_in, + anon_sym_COLON, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_RBRACK, + [68163] = 9, + ACTIONS(1975), 1, + anon_sym_CARET, + ACTIONS(1977), 1, + anon_sym_STAR_STAR, + ACTIONS(880), 2, + anon_sym_PIPE, + anon_sym_EQ, + ACTIONS(1973), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1981), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1987), 2, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(1979), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1983), 4, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(882), 19, + sym_concatenating_space, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_in, + anon_sym_COLON, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_RBRACK, + [68218] = 5, + ACTIONS(728), 1, sym_concatenating_space, - ACTIONS(2002), 1, + ACTIONS(1999), 1, sym_identifier, - STATE(2062), 1, + STATE(2067), 1, sym_namespace, - STATE(1320), 2, + STATE(1319), 2, sym_array_ref, sym_ns_qualified_name, - ACTIONS(712), 31, + ACTIONS(726), 31, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -81138,12 +81512,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_POUND, - [68158] = 2, - ACTIONS(1965), 3, + [68265] = 1, + ACTIONS(1901), 36, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, - ACTIONS(1873), 33, anon_sym_if, anon_sym_LPAREN, anon_sym_while, @@ -81177,8 +81550,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [68199] = 1, - ACTIONS(1869), 36, + [68304] = 1, + ACTIONS(1897), 36, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, @@ -81215,12 +81588,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [68238] = 2, - ACTIONS(1965), 3, + [68343] = 1, + ACTIONS(1815), 36, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, - ACTIONS(1869), 33, anon_sym_if, anon_sym_LPAREN, anon_sym_while, @@ -81254,8 +81626,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [68279] = 1, - ACTIONS(1865), 36, + [68382] = 1, + ACTIONS(1855), 36, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, @@ -81292,22 +81664,62 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [68318] = 4, - ACTIONS(1969), 1, + [68421] = 1, + ACTIONS(1847), 36, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_if, + anon_sym_LPAREN, + anon_sym_while, + anon_sym_do, + anon_sym_for, + sym_break_statement, + sym_continue_statement, + anon_sym_delete, + anon_sym_exit, + anon_sym_return, + anon_sym_switch, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, + anon_sym_getline, + sym_next_statement, + sym_nextfile_statement, + anon_sym_print, + anon_sym_printf, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_DOLLAR, + anon_sym_AT, + sym_identifier, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DQUOTE, + anon_sym_POUND, + [68460] = 6, + ACTIONS(1975), 1, anon_sym_CARET, - ACTIONS(1971), 1, + ACTIONS(1977), 1, anon_sym_STAR_STAR, - ACTIONS(792), 9, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, + ACTIONS(1981), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1979), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(872), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, anon_sym_EQ, - ACTIONS(794), 25, + ACTIONS(874), 25, sym_concatenating_space, anon_sym_COMMA, anon_sym_SEMI, @@ -81333,8 +81745,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT_EQ, anon_sym_CARET_EQ, anon_sym_RBRACK, - [68363] = 1, - ACTIONS(1945), 36, + [68509] = 1, + ACTIONS(1885), 36, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, @@ -81371,12 +81783,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [68402] = 2, - ACTIONS(1965), 3, + [68548] = 1, + ACTIONS(1933), 36, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, - ACTIONS(1865), 33, anon_sym_if, anon_sym_LPAREN, anon_sym_while, @@ -81410,24 +81821,32 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [68443] = 5, - ACTIONS(1969), 1, + [68587] = 6, + ACTIONS(696), 1, + anon_sym_EQ, + ACTIONS(1485), 1, + sym_concatenating_space, + ACTIONS(906), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(983), 6, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + ACTIONS(642), 9, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, anon_sym_CARET, - ACTIONS(1971), 1, - anon_sym_STAR_STAR, - ACTIONS(1973), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(792), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_EQ, - ACTIONS(794), 25, - sym_concatenating_space, + ACTIONS(652), 17, anon_sym_COMMA, anon_sym_SEMI, anon_sym_RPAREN, @@ -81435,6 +81854,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_PIPE_AMP, anon_sym_QMARK, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, @@ -81443,22 +81863,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, anon_sym_RBRACK, - [68490] = 1, - ACTIONS(1861), 36, + [68636] = 4, + ACTIONS(2005), 1, + anon_sym_POUND, + STATE(1252), 2, + sym_comment, + aux_sym_if_statement_repeat1, + ACTIONS(2003), 12, anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SLASH, + anon_sym_BANG, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_DOLLAR, + anon_sym_AT, + aux_sym_number_token2, + anon_sym_DQUOTE, + ACTIONS(2001), 21, + anon_sym_if, anon_sym_while, anon_sym_do, anon_sym_for, @@ -81468,8 +81894,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_exit, anon_sym_return, anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_case, anon_sym_default, anon_sym_getline, @@ -81477,70 +81901,11 @@ static const uint16_t ts_small_parse_table[] = { sym_nextfile_statement, anon_sym_print, anon_sym_printf, - anon_sym_SLASH, anon_sym_PLUS, anon_sym_DASH, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_AT, sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [68529] = 13, - ACTIONS(1969), 1, - anon_sym_CARET, - ACTIONS(1971), 1, - anon_sym_STAR_STAR, - ACTIONS(1983), 1, - anon_sym_in, - ACTIONS(1989), 1, - anon_sym_QMARK, - ACTIONS(1991), 1, - anon_sym_AMP_AMP, - ACTIONS(1993), 1, - anon_sym_PIPE_PIPE, - ACTIONS(876), 2, - anon_sym_PIPE, - anon_sym_EQ, - ACTIONS(1967), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1975), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1979), 2, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(1973), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1977), 4, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(878), 15, - sym_concatenating_space, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_PIPE_AMP, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_RBRACK, - [68592] = 2, + aux_sym_number_token1, + [68681] = 2, ACTIONS(1965), 3, anon_sym_SEMI, anon_sym_LF, @@ -81579,54 +81944,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [68633] = 9, - ACTIONS(1969), 1, - anon_sym_CARET, - ACTIONS(1971), 1, - anon_sym_STAR_STAR, - ACTIONS(868), 2, - anon_sym_PIPE, - anon_sym_EQ, - ACTIONS(1967), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1975), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1979), 2, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(1973), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1977), 4, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(870), 19, - sym_concatenating_space, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_in, - anon_sym_COLON, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_RBRACK, - [68688] = 1, - ACTIONS(1847), 36, + [68722] = 1, + ACTIONS(1843), 36, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, @@ -81663,151 +81982,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [68727] = 11, - ACTIONS(1969), 1, - anon_sym_CARET, - ACTIONS(1971), 1, - anon_sym_STAR_STAR, - ACTIONS(1983), 1, - anon_sym_in, - ACTIONS(1991), 1, - anon_sym_AMP_AMP, - ACTIONS(792), 2, - anon_sym_PIPE, - anon_sym_EQ, - ACTIONS(1967), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1975), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1979), 2, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(1973), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1977), 4, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(794), 17, - sym_concatenating_space, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_RBRACK, - [68786] = 7, - ACTIONS(2004), 1, - sym_identifier, - ACTIONS(2006), 1, - anon_sym_LT, - STATE(1283), 1, - sym_array_ref, - STATE(1304), 1, - sym_ns_qualified_name, - STATE(2068), 1, - sym_namespace, - ACTIONS(714), 2, - sym_concatenating_space, - sym__if_else_separator, - ACTIONS(712), 29, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_POUND, - [68837] = 10, - ACTIONS(1969), 1, - anon_sym_CARET, - ACTIONS(1971), 1, - anon_sym_STAR_STAR, - ACTIONS(1983), 1, - anon_sym_in, - ACTIONS(792), 2, - anon_sym_PIPE, - anon_sym_EQ, - ACTIONS(1967), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1975), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1979), 2, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(1973), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1977), 4, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(794), 18, - sym_concatenating_space, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_RBRACK, - [68894] = 2, + [68761] = 2, ACTIONS(1965), 3, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, - ACTIONS(1853), 33, + ACTIONS(1925), 33, anon_sym_if, anon_sym_LPAREN, anon_sym_while, @@ -81841,12 +82021,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [68935] = 2, + [68802] = 2, ACTIONS(1965), 3, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, - ACTIONS(1861), 33, + ACTIONS(1893), 33, anon_sym_if, anon_sym_LPAREN, anon_sym_while, @@ -81880,8 +82060,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [68976] = 1, - ACTIONS(1857), 36, + [68843] = 1, + ACTIONS(1937), 36, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, @@ -81918,8 +82098,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [69015] = 1, - ACTIONS(1835), 36, + [68882] = 1, + ACTIONS(1941), 36, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, @@ -81956,8 +82136,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [69054] = 1, - ACTIONS(1831), 36, + [68921] = 1, + ACTIONS(1925), 36, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, @@ -81994,42 +82174,47 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [69093] = 8, - ACTIONS(1969), 1, + [68960] = 13, + ACTIONS(1975), 1, anon_sym_CARET, - ACTIONS(1971), 1, + ACTIONS(1977), 1, anon_sym_STAR_STAR, - ACTIONS(792), 2, + ACTIONS(1985), 1, + anon_sym_in, + ACTIONS(1993), 1, + anon_sym_QMARK, + ACTIONS(1995), 1, + anon_sym_AMP_AMP, + ACTIONS(1997), 1, + anon_sym_PIPE_PIPE, + ACTIONS(876), 2, anon_sym_PIPE, anon_sym_EQ, - ACTIONS(1967), 2, + ACTIONS(1973), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1975), 2, + ACTIONS(1981), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1973), 3, + ACTIONS(1987), 2, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(1979), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1977), 4, + ACTIONS(1983), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(794), 21, + ACTIONS(878), 15, sym_concatenating_space, anon_sym_COMMA, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_in, anon_sym_COLON, anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -82039,12 +82224,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT_EQ, anon_sym_CARET_EQ, anon_sym_RBRACK, - [69146] = 2, - ACTIONS(1965), 3, + [69023] = 1, + ACTIONS(1921), 36, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, - ACTIONS(1857), 33, anon_sym_if, anon_sym_LPAREN, anon_sym_while, @@ -82078,8 +82262,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [69187] = 1, - ACTIONS(1853), 36, + [69062] = 1, + ACTIONS(1909), 36, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, @@ -82116,44 +82300,107 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [69226] = 10, - ACTIONS(652), 1, - anon_sym_COLON_COLON, - ACTIONS(732), 1, - anon_sym_EQ, - ACTIONS(908), 1, - anon_sym_LBRACK, - ACTIONS(1443), 1, - anon_sym_LPAREN2, - ACTIONS(1477), 1, - sym_concatenating_space, - ACTIONS(2008), 1, - anon_sym_in, - ACTIONS(910), 2, + [69101] = 1, + ACTIONS(1893), 36, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_if, + anon_sym_LPAREN, + anon_sym_while, + anon_sym_do, + anon_sym_for, + sym_break_statement, + sym_continue_statement, + anon_sym_delete, + anon_sym_exit, + anon_sym_return, + anon_sym_switch, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, + anon_sym_getline, + sym_next_statement, + sym_nextfile_statement, + anon_sym_print, + anon_sym_printf, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(989), 6, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - ACTIONS(644), 9, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_AT, + sym_identifier, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DQUOTE, + anon_sym_POUND, + [69140] = 1, + ACTIONS(1917), 36, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_if, + anon_sym_LPAREN, + anon_sym_while, + anon_sym_do, + anon_sym_for, + sym_break_statement, + sym_continue_statement, + anon_sym_delete, + anon_sym_exit, + anon_sym_return, + anon_sym_switch, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, + anon_sym_getline, + sym_next_statement, + sym_nextfile_statement, + anon_sym_print, + anon_sym_printf, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_DOLLAR, + anon_sym_AT, + sym_identifier, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DQUOTE, + anon_sym_POUND, + [69179] = 5, + ACTIONS(1975), 1, anon_sym_CARET, + ACTIONS(1977), 1, + anon_sym_STAR_STAR, + ACTIONS(1979), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(776), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(658), 12, + anon_sym_EQ, + ACTIONS(778), 25, + sym_concatenating_space, + anon_sym_COMMA, anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_in, + anon_sym_COLON, anon_sym_PIPE_AMP, anon_sym_QMARK, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, @@ -82162,80 +82409,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [69282] = 4, - ACTIONS(652), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_RBRACK, + [69226] = 10, + ACTIONS(650), 1, anon_sym_COLON_COLON, - ACTIONS(2010), 1, + ACTIONS(696), 1, + anon_sym_EQ, + ACTIONS(908), 1, anon_sym_LBRACK, - ACTIONS(684), 2, + ACTIONS(1453), 1, + anon_sym_LPAREN2, + ACTIONS(1485), 1, sym_concatenating_space, - sym__if_else_separator, - ACTIONS(682), 31, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_while, + ACTIONS(2008), 1, anon_sym_in, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, + ACTIONS(906), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(983), 6, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + ACTIONS(642), 9, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, anon_sym_CARET, - anon_sym_STAR_STAR, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_PLUS, anon_sym_DASH, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_POUND, - [69326] = 7, - ACTIONS(714), 1, - sym_concatenating_space, - ACTIONS(2012), 1, - sym_identifier, - ACTIONS(2014), 1, - anon_sym_LT, - STATE(1320), 1, - sym_array_ref, - STATE(1348), 1, - sym_ns_qualified_name, - STATE(2062), 1, - sym_namespace, - ACTIONS(712), 29, - anon_sym_COMMA, + ACTIONS(652), 12, anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, anon_sym_PIPE_AMP, anon_sym_QMARK, - anon_sym_CARET, anon_sym_STAR_STAR, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, @@ -82244,16 +82464,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_POUND, - [69376] = 4, - ACTIONS(652), 1, - anon_sym_COLON_COLON, + [69282] = 4, ACTIONS(2010), 1, - anon_sym_LBRACK, - ACTIONS(680), 2, - sym_concatenating_space, - sym__if_else_separator, - ACTIONS(678), 31, + sym_identifier, + STATE(2064), 1, + sym_namespace, + STATE(1382), 2, + sym_array_ref, + sym_ns_qualified_name, + ACTIONS(726), 31, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -82285,25 +82504,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_POUND, - [69420] = 4, - ACTIONS(2016), 1, + [69326] = 7, + ACTIONS(728), 1, + sym__if_else_separator, + ACTIONS(2012), 1, sym_identifier, - STATE(2059), 1, - sym_namespace, - STATE(1337), 2, + ACTIONS(2014), 1, + anon_sym_LT, + STATE(1330), 1, sym_array_ref, + STATE(1379), 1, sym_ns_qualified_name, - ACTIONS(712), 31, + STATE(2072), 1, + sym_namespace, + ACTIONS(726), 29, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, - anon_sym_while, anon_sym_in, anon_sym_RBRACE, anon_sym_case, anon_sym_default, - anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, anon_sym_PIPE, @@ -82325,30 +82547,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_POUND, - [69464] = 10, - ACTIONS(652), 1, + [69376] = 10, + ACTIONS(650), 1, anon_sym_COLON_COLON, - ACTIONS(732), 1, + ACTIONS(696), 1, anon_sym_EQ, ACTIONS(908), 1, anon_sym_LBRACK, - ACTIONS(1443), 1, + ACTIONS(1453), 1, anon_sym_LPAREN2, - ACTIONS(1477), 1, + ACTIONS(1485), 1, sym_concatenating_space, - ACTIONS(2018), 1, + ACTIONS(2016), 1, anon_sym_in, - ACTIONS(910), 2, + ACTIONS(906), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(989), 6, + ACTIONS(983), 6, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_CARET_EQ, - ACTIONS(644), 9, + ACTIONS(642), 9, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -82358,7 +82580,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(658), 12, + ACTIONS(652), 12, anon_sym_SEMI, anon_sym_PIPE_AMP, anon_sym_QMARK, @@ -82371,44 +82593,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [69520] = 10, - ACTIONS(652), 1, + [69432] = 4, + ACTIONS(650), 1, anon_sym_COLON_COLON, - ACTIONS(732), 1, - anon_sym_EQ, - ACTIONS(908), 1, + ACTIONS(2018), 1, anon_sym_LBRACK, - ACTIONS(1443), 1, - anon_sym_LPAREN2, - ACTIONS(1477), 1, + ACTIONS(694), 2, sym_concatenating_space, - ACTIONS(2020), 1, + sym__if_else_separator, + ACTIONS(692), 31, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_while, anon_sym_in, - ACTIONS(910), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(989), 6, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - ACTIONS(644), 9, + anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, anon_sym_LT, anon_sym_GT, + anon_sym_GT_GT, anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_QMARK, anon_sym_CARET, + anon_sym_STAR_STAR, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(658), 12, - anon_sym_SEMI, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, @@ -82417,44 +82632,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [69576] = 10, - ACTIONS(652), 1, - anon_sym_COLON_COLON, - ACTIONS(732), 1, - anon_sym_EQ, - ACTIONS(908), 1, - anon_sym_LBRACK, - ACTIONS(1443), 1, - anon_sym_LPAREN2, - ACTIONS(1477), 1, - sym_concatenating_space, + anon_sym_POUND, + [69476] = 2, ACTIONS(2022), 1, - anon_sym_in, - ACTIONS(910), 2, + sym__if_else_separator, + ACTIONS(2020), 34, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_if, + anon_sym_LPAREN, + anon_sym_while, + anon_sym_do, + anon_sym_for, + sym_break_statement, + sym_continue_statement, + anon_sym_delete, + anon_sym_exit, + anon_sym_return, + anon_sym_switch, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_getline, + sym_next_statement, + sym_nextfile_statement, + anon_sym_print, + anon_sym_printf, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(989), 6, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - ACTIONS(644), 9, + anon_sym_DOLLAR, + anon_sym_AT, + sym_identifier, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DQUOTE, + anon_sym_POUND, + [69516] = 7, + ACTIONS(728), 1, + sym_concatenating_space, + ACTIONS(2024), 1, + sym_identifier, + ACTIONS(2026), 1, anon_sym_LT, + STATE(1319), 1, + sym_array_ref, + STATE(1369), 1, + sym_ns_qualified_name, + STATE(2067), 1, + sym_namespace, + ACTIONS(726), 29, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, anon_sym_GT, + anon_sym_GT_GT, anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_QMARK, anon_sym_CARET, + anon_sym_STAR_STAR, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(658), 12, - anon_sym_SEMI, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, @@ -82463,10 +82713,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [69632] = 2, - ACTIONS(2026), 1, + anon_sym_POUND, + [69566] = 2, + ACTIONS(2028), 1, sym__if_else_separator, - ACTIONS(2024), 34, + ACTIONS(2020), 34, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, @@ -82501,10 +82752,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [69672] = 2, - ACTIONS(2026), 1, + [69606] = 2, + ACTIONS(2028), 1, sym__if_else_separator, - ACTIONS(2024), 34, + ACTIONS(2020), 34, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, @@ -82539,30 +82790,30 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [69712] = 10, - ACTIONS(652), 1, + [69646] = 10, + ACTIONS(650), 1, anon_sym_COLON_COLON, - ACTIONS(732), 1, + ACTIONS(696), 1, anon_sym_EQ, ACTIONS(908), 1, anon_sym_LBRACK, - ACTIONS(1443), 1, + ACTIONS(1453), 1, anon_sym_LPAREN2, - ACTIONS(1477), 1, + ACTIONS(1485), 1, sym_concatenating_space, - ACTIONS(2028), 1, + ACTIONS(2030), 1, anon_sym_in, - ACTIONS(910), 2, + ACTIONS(906), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(989), 6, + ACTIONS(983), 6, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_CARET_EQ, - ACTIONS(644), 9, + ACTIONS(642), 9, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -82572,7 +82823,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(658), 12, + ACTIONS(652), 12, anon_sym_SEMI, anon_sym_PIPE_AMP, anon_sym_QMARK, @@ -82585,30 +82836,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [69768] = 10, - ACTIONS(652), 1, + [69702] = 10, + ACTIONS(650), 1, anon_sym_COLON_COLON, - ACTIONS(732), 1, + ACTIONS(696), 1, anon_sym_EQ, ACTIONS(908), 1, anon_sym_LBRACK, - ACTIONS(1443), 1, + ACTIONS(1453), 1, anon_sym_LPAREN2, - ACTIONS(1477), 1, + ACTIONS(1485), 1, sym_concatenating_space, - ACTIONS(2030), 1, + ACTIONS(2032), 1, anon_sym_in, - ACTIONS(910), 2, + ACTIONS(906), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(989), 6, + ACTIONS(983), 6, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_CARET_EQ, - ACTIONS(644), 9, + ACTIONS(642), 9, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -82618,7 +82869,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(658), 12, + ACTIONS(652), 12, anon_sym_SEMI, anon_sym_PIPE_AMP, anon_sym_QMARK, @@ -82631,66 +82882,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [69824] = 2, - ACTIONS(2032), 1, - sym__if_else_separator, - ACTIONS(2024), 34, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_do, - anon_sym_for, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_getline, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [69864] = 7, - ACTIONS(714), 1, + [69758] = 4, + ACTIONS(650), 1, + anon_sym_COLON_COLON, + ACTIONS(2018), 1, + anon_sym_LBRACK, + ACTIONS(690), 2, + sym_concatenating_space, sym__if_else_separator, - ACTIONS(2034), 1, - sym_identifier, - ACTIONS(2036), 1, - anon_sym_LT, - STATE(1299), 1, - sym_array_ref, - STATE(1369), 1, - sym_ns_qualified_name, - STATE(2067), 1, - sym_namespace, - ACTIONS(712), 29, + ACTIONS(688), 31, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, + anon_sym_while, anon_sym_in, anon_sym_RBRACE, anon_sym_case, anon_sym_default, + anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, anon_sym_PIPE, @@ -82712,10 +82922,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_POUND, - [69914] = 2, - ACTIONS(2032), 1, + [69802] = 10, + ACTIONS(650), 1, + anon_sym_COLON_COLON, + ACTIONS(696), 1, + anon_sym_EQ, + ACTIONS(908), 1, + anon_sym_LBRACK, + ACTIONS(1453), 1, + anon_sym_LPAREN2, + ACTIONS(1485), 1, + sym_concatenating_space, + ACTIONS(2034), 1, + anon_sym_in, + ACTIONS(906), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(983), 6, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + ACTIONS(642), 9, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(652), 12, + anon_sym_SEMI, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [69858] = 2, + ACTIONS(2022), 1, sym__if_else_separator, - ACTIONS(2024), 34, + ACTIONS(2020), 34, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, @@ -82750,28 +83006,30 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [69954] = 9, - ACTIONS(732), 1, + [69898] = 10, + ACTIONS(650), 1, + anon_sym_COLON_COLON, + ACTIONS(696), 1, anon_sym_EQ, ACTIONS(908), 1, anon_sym_LBRACK, - ACTIONS(1443), 1, + ACTIONS(1453), 1, anon_sym_LPAREN2, - ACTIONS(1477), 1, + ACTIONS(1485), 1, sym_concatenating_space, - ACTIONS(2028), 1, + ACTIONS(2036), 1, anon_sym_in, - ACTIONS(910), 2, + ACTIONS(906), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(989), 6, + ACTIONS(983), 6, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_CARET_EQ, - ACTIONS(644), 9, + ACTIONS(642), 9, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -82781,7 +83039,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(658), 12, + ACTIONS(652), 12, anon_sym_SEMI, anon_sym_PIPE_AMP, anon_sym_QMARK, @@ -82794,36 +83052,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [70007] = 4, - ACTIONS(652), 1, - anon_sym_COLON_COLON, - ACTIONS(680), 1, - sym__if_else_separator, - ACTIONS(2038), 1, + [69954] = 9, + ACTIONS(696), 1, + anon_sym_EQ, + ACTIONS(908), 1, anon_sym_LBRACK, - ACTIONS(678), 31, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_while, + ACTIONS(1453), 1, + anon_sym_LPAREN2, + ACTIONS(1485), 1, + sym_concatenating_space, + ACTIONS(2036), 1, anon_sym_in, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, + ACTIONS(906), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(983), 6, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + ACTIONS(642), 9, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, anon_sym_CARET, - anon_sym_STAR_STAR, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(652), 12, + anon_sym_SEMI, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, @@ -82832,14 +83096,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_POUND, - [70050] = 3, - ACTIONS(2010), 1, + [70007] = 3, + ACTIONS(2018), 1, anon_sym_LBRACK, - ACTIONS(680), 2, + ACTIONS(694), 2, sym_concatenating_space, sym__if_else_separator, - ACTIONS(678), 31, + ACTIONS(692), 31, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -82871,14 +83134,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_POUND, - [70091] = 4, - ACTIONS(652), 1, + [70048] = 4, + ACTIONS(650), 1, anon_sym_COLON_COLON, - ACTIONS(684), 1, + ACTIONS(694), 1, sym__if_else_separator, ACTIONS(2038), 1, anon_sym_LBRACK, - ACTIONS(682), 31, + ACTIONS(692), 31, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -82910,35 +83173,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_POUND, - [70134] = 3, - ACTIONS(2010), 1, + [70091] = 9, + ACTIONS(696), 1, + anon_sym_EQ, + ACTIONS(908), 1, anon_sym_LBRACK, - ACTIONS(684), 2, + ACTIONS(1453), 1, + anon_sym_LPAREN2, + ACTIONS(1485), 1, sym_concatenating_space, - sym__if_else_separator, - ACTIONS(682), 31, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_while, + ACTIONS(2030), 1, anon_sym_in, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, + ACTIONS(906), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(983), 6, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + ACTIONS(642), 9, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, anon_sym_CARET, - anon_sym_STAR_STAR, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(652), 12, + anon_sym_SEMI, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, @@ -82947,43 +83217,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_POUND, - [70175] = 9, - ACTIONS(732), 1, - anon_sym_EQ, - ACTIONS(908), 1, + [70144] = 4, + ACTIONS(650), 1, + anon_sym_COLON_COLON, + ACTIONS(690), 1, + sym__if_else_separator, + ACTIONS(2038), 1, anon_sym_LBRACK, - ACTIONS(1443), 1, - anon_sym_LPAREN2, - ACTIONS(1477), 1, - sym_concatenating_space, - ACTIONS(2030), 1, + ACTIONS(688), 31, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_while, anon_sym_in, - ACTIONS(910), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(989), 6, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - ACTIONS(644), 9, + anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, anon_sym_LT, anon_sym_GT, + anon_sym_GT_GT, anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_QMARK, anon_sym_CARET, + anon_sym_STAR_STAR, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(658), 12, - anon_sym_SEMI, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, @@ -82992,11 +83255,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [70228] = 2, - ACTIONS(692), 2, + anon_sym_POUND, + [70187] = 2, + ACTIONS(722), 2, sym_concatenating_space, sym__if_else_separator, - ACTIONS(690), 32, + ACTIONS(720), 32, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -83029,7 +83293,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_LBRACK, anon_sym_POUND, - [70267] = 2, + [70226] = 2, ACTIONS(1965), 3, anon_sym_SEMI, anon_sym_LF, @@ -83066,134 +83330,51 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [70306] = 4, - ACTIONS(652), 1, - anon_sym_COLON_COLON, - ACTIONS(684), 1, - sym_concatenating_space, - ACTIONS(2042), 1, - anon_sym_LBRACK, - ACTIONS(682), 31, - anon_sym_COMMA, + [70265] = 2, + ACTIONS(2044), 13, anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_while, - anon_sym_in, + anon_sym_LPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_BANG, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_DOLLAR, + anon_sym_AT, + aux_sym_number_token2, + anon_sym_DQUOTE, anon_sym_POUND, - [70349] = 5, - ACTIONS(652), 1, - anon_sym_COLON_COLON, - ACTIONS(2010), 1, - anon_sym_LBRACK, - ACTIONS(2044), 1, - anon_sym_LT, - ACTIONS(680), 2, - sym_concatenating_space, - sym__if_else_separator, - ACTIONS(678), 29, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_in, - anon_sym_RBRACE, + ACTIONS(2042), 21, + anon_sym_if, + anon_sym_while, + anon_sym_do, + anon_sym_for, + sym_break_statement, + sym_continue_statement, + anon_sym_delete, + anon_sym_exit, + anon_sym_return, + anon_sym_switch, anon_sym_case, anon_sym_default, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_POUND, - [70394] = 9, - ACTIONS(732), 1, - anon_sym_EQ, - ACTIONS(908), 1, - anon_sym_LBRACK, - ACTIONS(1443), 1, - anon_sym_LPAREN2, - ACTIONS(1477), 1, - sym_concatenating_space, - ACTIONS(2008), 1, - anon_sym_in, - ACTIONS(910), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(989), 6, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - ACTIONS(644), 9, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + anon_sym_getline, + sym_next_statement, + sym_nextfile_statement, + anon_sym_print, + anon_sym_printf, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(658), 12, - anon_sym_SEMI, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [70447] = 2, - ACTIONS(724), 2, + sym_identifier, + aux_sym_number_token1, + [70304] = 4, + ACTIONS(650), 1, + anon_sym_COLON_COLON, + ACTIONS(690), 1, sym_concatenating_space, - sym__if_else_separator, - ACTIONS(722), 32, + ACTIONS(2046), 1, + anon_sym_LBRACK, + ACTIONS(688), 31, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -83224,30 +83405,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_LBRACK, anon_sym_POUND, - [70486] = 9, - ACTIONS(732), 1, + [70347] = 9, + ACTIONS(696), 1, anon_sym_EQ, ACTIONS(908), 1, anon_sym_LBRACK, - ACTIONS(1443), 1, + ACTIONS(1453), 1, anon_sym_LPAREN2, - ACTIONS(1477), 1, + ACTIONS(1485), 1, sym_concatenating_space, - ACTIONS(2022), 1, + ACTIONS(2008), 1, anon_sym_in, - ACTIONS(910), 2, + ACTIONS(906), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(989), 6, + ACTIONS(983), 6, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_CARET_EQ, - ACTIONS(644), 9, + ACTIONS(642), 9, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -83257,7 +83437,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(658), 12, + ACTIONS(652), 12, anon_sym_SEMI, anon_sym_PIPE_AMP, anon_sym_QMARK, @@ -83270,28 +83450,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [70539] = 9, - ACTIONS(732), 1, + [70400] = 9, + ACTIONS(696), 1, anon_sym_EQ, ACTIONS(908), 1, anon_sym_LBRACK, - ACTIONS(1443), 1, + ACTIONS(1453), 1, anon_sym_LPAREN2, - ACTIONS(1477), 1, + ACTIONS(1485), 1, sym_concatenating_space, - ACTIONS(2020), 1, + ACTIONS(2034), 1, anon_sym_in, - ACTIONS(910), 2, + ACTIONS(906), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(989), 6, + ACTIONS(983), 6, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_CARET_EQ, - ACTIONS(644), 9, + ACTIONS(642), 9, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -83301,7 +83481,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(658), 12, + ACTIONS(652), 12, anon_sym_SEMI, anon_sym_PIPE_AMP, anon_sym_QMARK, @@ -83314,65 +83494,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [70592] = 2, - ACTIONS(2048), 13, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SLASH, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_AT, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - ACTIONS(2046), 21, - anon_sym_if, - anon_sym_while, - anon_sym_do, - anon_sym_for, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_case, - anon_sym_default, - anon_sym_getline, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_PLUS, - anon_sym_DASH, - sym_identifier, - aux_sym_number_token1, - [70631] = 9, - ACTIONS(732), 1, + [70453] = 9, + ACTIONS(696), 1, anon_sym_EQ, ACTIONS(908), 1, anon_sym_LBRACK, - ACTIONS(1443), 1, + ACTIONS(1453), 1, anon_sym_LPAREN2, - ACTIONS(1477), 1, + ACTIONS(1485), 1, sym_concatenating_space, - ACTIONS(2018), 1, + ACTIONS(2032), 1, anon_sym_in, - ACTIONS(910), 2, + ACTIONS(906), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(989), 6, + ACTIONS(983), 6, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_CARET_EQ, - ACTIONS(644), 9, + ACTIONS(642), 9, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -83382,51 +83525,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(658), 12, - anon_sym_SEMI, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [70684] = 6, - ACTIONS(2050), 1, - sym_identifier, - ACTIONS(2052), 1, - anon_sym_LT, - STATE(1337), 1, - sym_array_ref, - STATE(1394), 1, - sym_ns_qualified_name, - STATE(2059), 1, - sym_namespace, - ACTIONS(712), 29, - anon_sym_COMMA, + ACTIONS(652), 12, anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, anon_sym_PIPE_AMP, anon_sym_QMARK, - anon_sym_CARET, anon_sym_STAR_STAR, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, @@ -83435,52 +83538,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_POUND, - [70731] = 4, - ACTIONS(652), 1, - anon_sym_COLON_COLON, - ACTIONS(680), 1, + [70506] = 2, + ACTIONS(680), 2, sym_concatenating_space, - ACTIONS(2042), 1, - anon_sym_LBRACK, - ACTIONS(678), 31, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_while, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_POUND, - [70774] = 3, - ACTIONS(680), 1, sym__if_else_separator, - ACTIONS(2038), 1, - anon_sym_LBRACK, - ACTIONS(678), 31, + ACTIONS(678), 32, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -83511,11 +83573,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_LBRACK, anon_sym_POUND, - [70814] = 2, - ACTIONS(692), 1, - sym__if_else_separator, - ACTIONS(690), 32, + [70545] = 4, + ACTIONS(650), 1, + anon_sym_COLON_COLON, + ACTIONS(694), 1, + sym_concatenating_space, + ACTIONS(2046), 1, + anon_sym_LBRACK, + ACTIONS(692), 31, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -83546,14 +83613,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_LBRACK, anon_sym_POUND, - [70852] = 3, - ACTIONS(652), 1, - anon_sym_COLON_COLON, - ACTIONS(2054), 1, + [70588] = 3, + ACTIONS(2018), 1, anon_sym_LBRACK, - ACTIONS(682), 31, + ACTIONS(690), 2, + sym_concatenating_space, + sym__if_else_separator, + ACTIONS(688), 31, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -83585,16 +83652,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_POUND, - [70892] = 5, - ACTIONS(652), 1, + [70629] = 5, + ACTIONS(650), 1, anon_sym_COLON_COLON, - ACTIONS(680), 1, - sym_concatenating_space, - ACTIONS(2042), 1, + ACTIONS(2018), 1, anon_sym_LBRACK, - ACTIONS(2056), 1, + ACTIONS(2048), 1, anon_sym_LT, - ACTIONS(678), 29, + ACTIONS(690), 2, + sym_concatenating_space, + sym__if_else_separator, + ACTIONS(688), 29, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -83624,16 +83692,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_POUND, - [70936] = 5, - ACTIONS(652), 1, - anon_sym_COLON_COLON, - ACTIONS(680), 1, - sym__if_else_separator, - ACTIONS(2038), 1, + [70674] = 9, + ACTIONS(696), 1, + anon_sym_EQ, + ACTIONS(908), 1, anon_sym_LBRACK, - ACTIONS(2058), 1, + ACTIONS(1453), 1, + anon_sym_LPAREN2, + ACTIONS(1485), 1, + sym_concatenating_space, + ACTIONS(2016), 1, + anon_sym_in, + ACTIONS(906), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(983), 6, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + ACTIONS(642), 9, anon_sym_LT, - ACTIONS(678), 29, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(652), 12, + anon_sym_SEMI, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [70727] = 6, + ACTIONS(2050), 1, + sym_identifier, + ACTIONS(2052), 1, + anon_sym_LT, + STATE(1382), 1, + sym_array_ref, + STATE(1419), 1, + sym_ns_qualified_name, + STATE(2064), 1, + sym_namespace, + ACTIONS(726), 29, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -83663,23 +83777,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_POUND, - [70980] = 4, - ACTIONS(2010), 1, - anon_sym_LBRACK, - ACTIONS(2044), 1, - anon_sym_LT, - ACTIONS(680), 2, + [70774] = 2, + ACTIONS(694), 2, sym_concatenating_space, sym__if_else_separator, - ACTIONS(678), 29, + ACTIONS(692), 31, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, + anon_sym_while, anon_sym_in, anon_sym_RBRACE, anon_sym_case, anon_sym_default, + anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, anon_sym_PIPE, @@ -83701,17 +83813,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_POUND, - [71022] = 3, - ACTIONS(2060), 1, - sym_regex_flags, - ACTIONS(830), 2, + [70812] = 2, + ACTIONS(752), 2, sym_concatenating_space, sym__if_else_separator, - ACTIONS(826), 30, + ACTIONS(750), 31, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, + anon_sym_while, anon_sym_in, anon_sym_RBRACE, anon_sym_case, @@ -83738,17 +83849,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_POUND, - [71062] = 3, - ACTIONS(2062), 1, - sym_regex_flags, - ACTIONS(836), 2, + [70850] = 2, + ACTIONS(748), 2, sym_concatenating_space, sym__if_else_separator, - ACTIONS(832), 30, + ACTIONS(746), 31, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, + anon_sym_while, anon_sym_in, anon_sym_RBRACE, anon_sym_case, @@ -83775,12 +83885,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_POUND, - [71102] = 3, - ACTIONS(652), 1, - anon_sym_COLON_COLON, - ACTIONS(2054), 1, - anon_sym_LBRACK, - ACTIONS(678), 31, + [70888] = 2, + ACTIONS(756), 2, + sym_concatenating_space, + sym__if_else_separator, + ACTIONS(754), 31, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -83812,11 +83921,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_POUND, - [71142] = 2, - ACTIONS(774), 2, + [70926] = 2, + ACTIONS(740), 2, sym_concatenating_space, sym__if_else_separator, - ACTIONS(772), 31, + ACTIONS(738), 31, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -83848,11 +83957,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_POUND, - [71180] = 2, - ACTIONS(790), 2, + [70964] = 3, + ACTIONS(658), 2, sym_concatenating_space, sym__if_else_separator, - ACTIONS(788), 31, + ACTIONS(654), 10, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_while, + anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, + anon_sym_GT_GT, + anon_sym_POUND, + ACTIONS(642), 21, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_CARET, + anon_sym_STAR_STAR, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [71004] = 2, + ACTIONS(770), 2, + sym_concatenating_space, + sym__if_else_separator, + ACTIONS(768), 31, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -83884,11 +84030,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_POUND, - [71218] = 2, - ACTIONS(762), 2, + [71042] = 2, + ACTIONS(774), 2, sym_concatenating_space, sym__if_else_separator, - ACTIONS(760), 31, + ACTIONS(772), 31, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -83920,10 +84066,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_POUND, - [71256] = 2, - ACTIONS(724), 1, + [71080] = 2, + ACTIONS(778), 2, + sym_concatenating_space, sym__if_else_separator, - ACTIONS(722), 32, + ACTIONS(776), 31, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -83954,29 +84101,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_LBRACK, anon_sym_POUND, - [71294] = 7, - ACTIONS(2064), 1, - sym_identifier, - ACTIONS(2066), 1, + [71118] = 3, + ACTIONS(2054), 1, + sym_regex_flags, + ACTIONS(830), 2, + sym_concatenating_space, + sym__if_else_separator, + ACTIONS(826), 30, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, anon_sym_LT, - STATE(1283), 1, - sym_array_ref, - STATE(1429), 1, - sym_ns_qualified_name, - STATE(2068), 1, - sym_namespace, - ACTIONS(714), 2, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_CARET, + anon_sym_STAR_STAR, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_POUND, + [71158] = 3, + ACTIONS(2056), 1, + sym_regex_flags, + ACTIONS(836), 2, sym_concatenating_space, sym__if_else_separator, - ACTIONS(712), 26, + ACTIONS(832), 30, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, - anon_sym_while, anon_sym_in, + anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, + anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, anon_sym_PIPE, @@ -83997,25 +84175,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [71342] = 3, - ACTIONS(654), 2, + anon_sym_POUND, + [71198] = 2, + ACTIONS(792), 2, sym_concatenating_space, sym__if_else_separator, - ACTIONS(642), 10, + ACTIONS(790), 31, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, anon_sym_while, + anon_sym_in, anon_sym_RBRACE, anon_sym_case, anon_sym_default, + anon_sym_LT, + anon_sym_GT, anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_CARET, + anon_sym_STAR_STAR, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_POUND, - ACTIONS(644), 21, + [71236] = 2, + ACTIONS(744), 2, + sym_concatenating_space, + sym__if_else_separator, + ACTIONS(742), 31, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_while, anon_sym_in, + anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, anon_sym_LT, anon_sym_GT, + anon_sym_GT_GT, anon_sym_PIPE, anon_sym_PIPE_AMP, anon_sym_QMARK, @@ -84034,11 +84247,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [71382] = 2, - ACTIONS(794), 2, + anon_sym_POUND, + [71274] = 2, + ACTIONS(796), 2, sym_concatenating_space, sym__if_else_separator, - ACTIONS(792), 31, + ACTIONS(794), 31, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -84070,11 +84284,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_POUND, - [71420] = 2, - ACTIONS(684), 2, - sym_concatenating_space, + [71312] = 2, + ACTIONS(680), 1, sym__if_else_separator, - ACTIONS(682), 31, + ACTIONS(678), 32, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -84105,12 +84318,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_LBRACK, anon_sym_POUND, - [71458] = 2, - ACTIONS(782), 2, + [71350] = 3, + ACTIONS(650), 1, + anon_sym_COLON_COLON, + ACTIONS(2058), 1, + anon_sym_LBRACK, + ACTIONS(692), 31, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_while, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_CARET, + anon_sym_STAR_STAR, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_POUND, + [71390] = 2, + ACTIONS(800), 2, sym_concatenating_space, sym__if_else_separator, - ACTIONS(780), 31, + ACTIONS(798), 31, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -84142,11 +84393,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_POUND, - [71496] = 2, - ACTIONS(806), 2, + [71428] = 2, + ACTIONS(760), 2, sym_concatenating_space, sym__if_else_separator, - ACTIONS(804), 31, + ACTIONS(758), 31, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -84178,21 +84429,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_POUND, - [71534] = 2, - ACTIONS(818), 2, - sym_concatenating_space, + [71466] = 5, + ACTIONS(650), 1, + anon_sym_COLON_COLON, + ACTIONS(690), 1, sym__if_else_separator, - ACTIONS(816), 31, + ACTIONS(2038), 1, + anon_sym_LBRACK, + ACTIONS(2060), 1, + anon_sym_LT, + ACTIONS(688), 29, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, - anon_sym_while, anon_sym_in, anon_sym_RBRACE, anon_sym_case, anon_sym_default, - anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, anon_sym_PIPE, @@ -84214,11 +84468,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_POUND, - [71572] = 2, - ACTIONS(770), 2, + [71510] = 2, + ACTIONS(788), 2, sym_concatenating_space, sym__if_else_separator, - ACTIONS(768), 31, + ACTIONS(786), 31, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -84250,12 +84504,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_POUND, - [71610] = 3, - ACTIONS(680), 1, + [71548] = 3, + ACTIONS(690), 1, sym_concatenating_space, - ACTIONS(2042), 1, + ACTIONS(2046), 1, anon_sym_LBRACK, - ACTIONS(678), 31, + ACTIONS(688), 31, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -84287,48 +84541,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_POUND, - [71650] = 2, - ACTIONS(810), 2, + [71588] = 3, + ACTIONS(694), 1, sym_concatenating_space, - sym__if_else_separator, - ACTIONS(808), 31, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_while, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_POUND, - [71688] = 3, - ACTIONS(684), 1, - sym__if_else_separator, - ACTIONS(2038), 1, + ACTIONS(2046), 1, anon_sym_LBRACK, - ACTIONS(682), 31, + ACTIONS(692), 31, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -84360,21 +84578,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_POUND, - [71728] = 2, - ACTIONS(814), 2, + [71628] = 7, + ACTIONS(2062), 1, + sym_identifier, + ACTIONS(2064), 1, + anon_sym_LT, + STATE(1295), 1, + sym_array_ref, + STATE(1431), 1, + sym_ns_qualified_name, + STATE(2073), 1, + sym_namespace, + ACTIONS(728), 2, sym_concatenating_space, sym__if_else_separator, - ACTIONS(812), 31, + ACTIONS(726), 26, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, anon_sym_while, anon_sym_in, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, anon_sym_PIPE, @@ -84395,11 +84619,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_POUND, - [71766] = 2, - ACTIONS(724), 1, - sym_concatenating_space, - ACTIONS(722), 32, + [71676] = 2, + ACTIONS(722), 1, + sym__if_else_separator, + ACTIONS(720), 32, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -84432,48 +84655,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_LBRACK, anon_sym_POUND, - [71804] = 3, - ACTIONS(684), 1, - sym_concatenating_space, - ACTIONS(2042), 1, - anon_sym_LBRACK, - ACTIONS(682), 31, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_while, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_POUND, - [71844] = 2, - ACTIONS(748), 2, + [71714] = 2, + ACTIONS(814), 2, sym_concatenating_space, sym__if_else_separator, - ACTIONS(746), 31, + ACTIONS(812), 31, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -84505,11 +84691,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_POUND, - [71882] = 2, - ACTIONS(822), 2, - sym_concatenating_space, - sym__if_else_separator, - ACTIONS(820), 31, + [71752] = 3, + ACTIONS(650), 1, + anon_sym_COLON_COLON, + ACTIONS(2058), 1, + anon_sym_LBRACK, + ACTIONS(688), 31, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -84541,11 +84728,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_POUND, - [71920] = 2, - ACTIONS(798), 2, + [71792] = 2, + ACTIONS(766), 2, sym_concatenating_space, sym__if_else_separator, - ACTIONS(796), 31, + ACTIONS(764), 31, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -84577,10 +84764,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_POUND, - [71958] = 2, - ACTIONS(692), 1, + [71830] = 2, + ACTIONS(782), 2, sym_concatenating_space, - ACTIONS(690), 32, + sym__if_else_separator, + ACTIONS(780), 31, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -84611,13 +84799,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_LBRACK, anon_sym_POUND, - [71996] = 2, - ACTIONS(802), 2, - sym_concatenating_space, + [71868] = 3, + ACTIONS(694), 1, sym__if_else_separator, - ACTIONS(800), 31, + ACTIONS(2038), 1, + anon_sym_LBRACK, + ACTIONS(692), 31, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -84649,11 +84837,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_POUND, - [72034] = 2, - ACTIONS(786), 2, + [71908] = 2, + ACTIONS(818), 2, sym_concatenating_space, sym__if_else_separator, - ACTIONS(784), 31, + ACTIONS(816), 31, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -84685,11 +84873,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_POUND, - [72072] = 2, - ACTIONS(778), 2, + [71946] = 2, + ACTIONS(722), 1, sym_concatenating_space, - sym__if_else_separator, - ACTIONS(776), 31, + ACTIONS(720), 32, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -84720,12 +84907,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_LBRACK, anon_sym_POUND, - [72110] = 2, - ACTIONS(752), 2, - sym_concatenating_space, + [71984] = 3, + ACTIONS(690), 1, sym__if_else_separator, - ACTIONS(750), 31, + ACTIONS(2038), 1, + anon_sym_LBRACK, + ACTIONS(688), 31, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -84757,20 +84946,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_POUND, - [72148] = 2, - ACTIONS(810), 1, + [72024] = 4, + ACTIONS(2018), 1, + anon_sym_LBRACK, + ACTIONS(2048), 1, + anon_sym_LT, + ACTIONS(690), 2, + sym_concatenating_space, sym__if_else_separator, - ACTIONS(808), 31, + ACTIONS(688), 29, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, - anon_sym_while, anon_sym_in, anon_sym_RBRACE, anon_sym_case, anon_sym_default, - anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, anon_sym_PIPE, @@ -84792,10 +84984,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_POUND, - [72185] = 2, - ACTIONS(762), 1, + [72066] = 2, + ACTIONS(680), 1, sym_concatenating_space, - ACTIONS(760), 31, + ACTIONS(678), 32, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -84826,15 +85018,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_LBRACK, anon_sym_POUND, - [72222] = 4, - ACTIONS(652), 1, + [72104] = 5, + ACTIONS(650), 1, anon_sym_COLON_COLON, - ACTIONS(2054), 1, + ACTIONS(690), 1, + sym_concatenating_space, + ACTIONS(2046), 1, anon_sym_LBRACK, - ACTIONS(2068), 1, + ACTIONS(2066), 1, anon_sym_LT, - ACTIONS(678), 29, + ACTIONS(688), 29, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -84864,20 +85059,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_POUND, - [72263] = 2, - ACTIONS(2054), 1, - anon_sym_LBRACK, - ACTIONS(678), 31, + [72148] = 7, + ACTIONS(728), 1, + sym__if_else_separator, + ACTIONS(2068), 1, + sym_identifier, + ACTIONS(2070), 1, + anon_sym_LT, + STATE(1330), 1, + sym_array_ref, + STATE(1455), 1, + sym_ns_qualified_name, + STATE(2072), 1, + sym_namespace, + ACTIONS(726), 26, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, anon_sym_while, anon_sym_in, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, anon_sym_PIPE, @@ -84898,11 +85099,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_POUND, - [72300] = 2, - ACTIONS(770), 1, - sym__if_else_separator, - ACTIONS(768), 31, + [72195] = 2, + ACTIONS(818), 1, + sym_concatenating_space, + ACTIONS(816), 31, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -84934,10 +85134,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_POUND, - [72337] = 2, - ACTIONS(762), 1, - sym__if_else_separator, - ACTIONS(760), 31, + [72232] = 1, + ACTIONS(678), 32, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -84968,54 +85166,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_LBRACK, anon_sym_POUND, - [72374] = 5, - ACTIONS(882), 2, + [72267] = 3, + ACTIONS(836), 1, sym_concatenating_space, - sym__if_else_separator, - ACTIONS(2070), 2, - anon_sym_CARET, - anon_sym_STAR_STAR, - ACTIONS(2074), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2072), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(880), 23, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_POUND, - [72417] = 2, - ACTIONS(798), 1, - sym__if_else_separator, - ACTIONS(796), 31, + ACTIONS(2072), 1, + sym_regex_flags, + ACTIONS(832), 30, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, - anon_sym_while, anon_sym_in, anon_sym_RBRACE, anon_sym_case, @@ -85042,15 +85204,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_POUND, - [72454] = 2, - ACTIONS(752), 1, + [72306] = 3, + ACTIONS(830), 1, sym_concatenating_space, - ACTIONS(750), 31, + ACTIONS(2074), 1, + sym_regex_flags, + ACTIONS(826), 30, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, - anon_sym_while, anon_sym_in, anon_sym_RBRACE, anon_sym_case, @@ -85077,59 +85240,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_POUND, - [72491] = 11, - ACTIONS(2076), 1, - anon_sym_in, - ACTIONS(2080), 1, - anon_sym_QMARK, - ACTIONS(2084), 1, - anon_sym_AMP_AMP, - ACTIONS(2086), 1, - anon_sym_PIPE_PIPE, - ACTIONS(878), 2, - sym_concatenating_space, + [72345] = 3, + ACTIONS(836), 1, sym__if_else_separator, - ACTIONS(2070), 2, - anon_sym_CARET, - anon_sym_STAR_STAR, - ACTIONS(2074), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2082), 2, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(2072), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2078), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(876), 11, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_POUND, - [72546] = 2, - ACTIONS(778), 1, - sym_concatenating_space, - ACTIONS(776), 31, + ACTIONS(2076), 1, + sym_regex_flags, + ACTIONS(832), 30, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, - anon_sym_while, anon_sym_in, anon_sym_RBRACE, anon_sym_case, @@ -85156,15 +85276,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_POUND, - [72583] = 2, - ACTIONS(786), 1, + [72384] = 3, + ACTIONS(830), 1, sym__if_else_separator, - ACTIONS(784), 31, + ACTIONS(2078), 1, + sym_regex_flags, + ACTIONS(826), 30, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, - anon_sym_while, anon_sym_in, anon_sym_RBRACE, anon_sym_case, @@ -85191,8 +85312,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_POUND, - [72620] = 1, - ACTIONS(690), 32, + [72423] = 2, + ACTIONS(766), 1, + sym__if_else_separator, + ACTIONS(764), 31, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -85223,12 +85346,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_LBRACK, anon_sym_POUND, - [72655] = 2, - ACTIONS(786), 1, - sym_concatenating_space, - ACTIONS(784), 31, + [72460] = 2, + ACTIONS(782), 1, + sym__if_else_separator, + ACTIONS(780), 31, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -85260,22 +85382,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_POUND, - [72692] = 4, - ACTIONS(680), 1, - sym_concatenating_space, - ACTIONS(2042), 1, - anon_sym_LBRACK, - ACTIONS(2056), 1, - anon_sym_LT, - ACTIONS(678), 29, + [72497] = 2, + ACTIONS(800), 1, + sym__if_else_separator, + ACTIONS(798), 31, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, + anon_sym_while, anon_sym_in, anon_sym_RBRACE, anon_sym_case, anon_sym_default, + anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, anon_sym_PIPE, @@ -85297,95 +85417,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_POUND, - [72733] = 7, - ACTIONS(870), 2, - sym_concatenating_space, + [72534] = 2, + ACTIONS(796), 1, sym__if_else_separator, - ACTIONS(2070), 2, - anon_sym_CARET, - anon_sym_STAR_STAR, - ACTIONS(2074), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2082), 2, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(2072), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2078), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(868), 15, + ACTIONS(794), 31, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, + anon_sym_while, anon_sym_in, anon_sym_RBRACE, anon_sym_case, anon_sym_default, + anon_sym_LT, + anon_sym_GT, anon_sym_GT_GT, anon_sym_PIPE, anon_sym_PIPE_AMP, anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_POUND, - [72780] = 12, - ACTIONS(2076), 1, - anon_sym_in, - ACTIONS(2080), 1, - anon_sym_QMARK, - ACTIONS(2084), 1, - anon_sym_AMP_AMP, - ACTIONS(2086), 1, - anon_sym_PIPE_PIPE, - ACTIONS(866), 2, - sym_concatenating_space, - sym__if_else_separator, - ACTIONS(2070), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2074), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2082), 2, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(2088), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(2072), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2078), 6, - anon_sym_LT, - anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(854), 9, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - anon_sym_GT_GT, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_POUND, - [72837] = 2, - ACTIONS(2054), 1, - anon_sym_LBRACK, - ACTIONS(682), 31, + [72571] = 2, + ACTIONS(744), 1, + sym__if_else_separator, + ACTIONS(742), 31, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -85417,10 +85487,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_POUND, - [72874] = 2, - ACTIONS(814), 1, - sym_concatenating_space, - ACTIONS(812), 31, + [72608] = 2, + ACTIONS(740), 1, + sym__if_else_separator, + ACTIONS(738), 31, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -85452,58 +85522,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_POUND, - [72911] = 9, - ACTIONS(2076), 1, - anon_sym_in, - ACTIONS(2084), 1, - anon_sym_AMP_AMP, - ACTIONS(794), 2, - sym_concatenating_space, - sym__if_else_separator, - ACTIONS(2070), 2, - anon_sym_CARET, - anon_sym_STAR_STAR, - ACTIONS(2074), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2082), 2, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(2072), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2078), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(792), 13, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_PIPE_PIPE, - anon_sym_POUND, - [72962] = 3, - ACTIONS(658), 1, + [72645] = 2, + ACTIONS(792), 1, sym__if_else_separator, - ACTIONS(1235), 1, - sym_concatenating_space, - ACTIONS(644), 30, + ACTIONS(790), 31, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, + anon_sym_while, anon_sym_in, anon_sym_RBRACE, anon_sym_case, @@ -85530,51 +85557,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_POUND, - [73001] = 8, - ACTIONS(2076), 1, - anon_sym_in, - ACTIONS(794), 2, - sym_concatenating_space, + [72682] = 2, + ACTIONS(748), 1, sym__if_else_separator, - ACTIONS(2070), 2, - anon_sym_CARET, - anon_sym_STAR_STAR, - ACTIONS(2074), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2082), 2, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(2072), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2078), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(792), 14, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_POUND, - [73050] = 2, - ACTIONS(822), 1, - sym_concatenating_space, - ACTIONS(820), 31, + ACTIONS(746), 31, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -85606,49 +85592,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_POUND, - [73087] = 6, - ACTIONS(794), 2, - sym_concatenating_space, + [72719] = 2, + ACTIONS(752), 1, sym__if_else_separator, - ACTIONS(2070), 2, - anon_sym_CARET, - anon_sym_STAR_STAR, - ACTIONS(2074), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2072), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2078), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(792), 17, + ACTIONS(750), 31, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, + anon_sym_while, anon_sym_in, anon_sym_RBRACE, anon_sym_case, anon_sym_default, + anon_sym_LT, + anon_sym_GT, anon_sym_GT_GT, anon_sym_PIPE, anon_sym_PIPE_AMP, anon_sym_QMARK, + anon_sym_CARET, + anon_sym_STAR_STAR, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_TILDE, anon_sym_BANG_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_POUND, - [73132] = 2, - ACTIONS(798), 1, - sym_concatenating_space, - ACTIONS(796), 31, + [72756] = 2, + ACTIONS(756), 1, + sym__if_else_separator, + ACTIONS(754), 31, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -85680,10 +85662,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_POUND, - [73169] = 2, - ACTIONS(748), 1, - sym_concatenating_space, - ACTIONS(746), 31, + [72793] = 2, + ACTIONS(788), 1, + sym__if_else_separator, + ACTIONS(786), 31, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -85715,10 +85697,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_POUND, - [73206] = 2, - ACTIONS(810), 1, - sym_concatenating_space, - ACTIONS(808), 31, + [72830] = 2, + ACTIONS(694), 1, + sym__if_else_separator, + ACTIONS(692), 31, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -85750,10 +85732,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_POUND, - [73243] = 2, - ACTIONS(818), 1, + [72867] = 2, + ACTIONS(800), 1, sym_concatenating_space, - ACTIONS(816), 31, + ACTIONS(798), 31, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -85785,10 +85767,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_POUND, - [73280] = 2, - ACTIONS(806), 1, + [72904] = 2, + ACTIONS(796), 1, sym_concatenating_space, - ACTIONS(804), 31, + ACTIONS(794), 31, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -85820,10 +85802,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_POUND, - [73317] = 2, - ACTIONS(782), 1, + [72941] = 2, + ACTIONS(744), 1, sym_concatenating_space, - ACTIONS(780), 31, + ACTIONS(742), 31, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -85855,10 +85837,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_POUND, - [73354] = 2, - ACTIONS(684), 1, + [72978] = 2, + ACTIONS(740), 1, sym_concatenating_space, - ACTIONS(682), 31, + ACTIONS(738), 31, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -85890,10 +85872,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_POUND, - [73391] = 2, - ACTIONS(748), 1, - sym__if_else_separator, - ACTIONS(746), 31, + [73015] = 2, + ACTIONS(792), 1, + sym_concatenating_space, + ACTIONS(790), 31, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -85925,22 +85907,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_POUND, - [73428] = 4, - ACTIONS(794), 2, + [73052] = 2, + ACTIONS(748), 1, sym_concatenating_space, - sym__if_else_separator, - ACTIONS(2070), 2, - anon_sym_CARET, - anon_sym_STAR_STAR, - ACTIONS(2072), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(792), 25, + ACTIONS(746), 31, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, + anon_sym_while, anon_sym_in, anon_sym_RBRACE, anon_sym_case, @@ -85951,6 +85926,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PIPE_AMP, anon_sym_QMARK, + anon_sym_CARET, + anon_sym_STAR_STAR, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PLUS, anon_sym_DASH, anon_sym_LT_EQ, @@ -85962,26 +85942,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_POUND, - [73469] = 7, - ACTIONS(714), 1, + [73089] = 2, + ACTIONS(752), 1, sym_concatenating_space, - ACTIONS(2090), 1, - sym_identifier, - ACTIONS(2092), 1, - anon_sym_LT, - STATE(1320), 1, - sym_array_ref, - STATE(1448), 1, - sym_ns_qualified_name, - STATE(2062), 1, - sym_namespace, - ACTIONS(712), 26, + ACTIONS(750), 31, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, anon_sym_while, anon_sym_in, + anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, + anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, anon_sym_PIPE, @@ -86002,10 +85976,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [73516] = 2, - ACTIONS(782), 1, - sym__if_else_separator, - ACTIONS(780), 31, + anon_sym_POUND, + [73126] = 2, + ACTIONS(756), 1, + sym_concatenating_space, + ACTIONS(754), 31, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -86037,22 +86012,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_POUND, - [73553] = 4, - ACTIONS(680), 1, - sym__if_else_separator, - ACTIONS(2038), 1, - anon_sym_LBRACK, - ACTIONS(2058), 1, - anon_sym_LT, - ACTIONS(678), 29, + [73163] = 2, + ACTIONS(788), 1, + sym_concatenating_space, + ACTIONS(786), 31, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, + anon_sym_while, anon_sym_in, anon_sym_RBRACE, anon_sym_case, anon_sym_default, + anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, anon_sym_PIPE, @@ -86074,10 +86047,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_POUND, - [73594] = 2, - ACTIONS(806), 1, - sym__if_else_separator, - ACTIONS(804), 31, + [73200] = 2, + ACTIONS(694), 1, + sym_concatenating_space, + ACTIONS(692), 31, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -86109,20 +86082,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_POUND, - [73631] = 7, - ACTIONS(714), 1, - sym__if_else_separator, - ACTIONS(2094), 1, + [73237] = 7, + ACTIONS(728), 1, + sym_concatenating_space, + ACTIONS(2080), 1, sym_identifier, - ACTIONS(2096), 1, + ACTIONS(2082), 1, anon_sym_LT, - STATE(1299), 1, + STATE(1319), 1, sym_array_ref, - STATE(1440), 1, + STATE(1463), 1, sym_ns_qualified_name, STATE(2067), 1, sym_namespace, - ACTIONS(712), 26, + ACTIONS(726), 26, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -86149,20 +86122,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [73678] = 2, - ACTIONS(774), 1, - sym_concatenating_space, - ACTIONS(772), 31, + [73284] = 4, + ACTIONS(650), 1, + anon_sym_COLON_COLON, + ACTIONS(2058), 1, + anon_sym_LBRACK, + ACTIONS(2084), 1, + anon_sym_LT, + ACTIONS(688), 29, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, - anon_sym_while, anon_sym_in, anon_sym_RBRACE, anon_sym_case, anon_sym_default, - anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, anon_sym_PIPE, @@ -86184,10 +86159,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_POUND, - [73715] = 2, - ACTIONS(790), 1, - sym_concatenating_space, - ACTIONS(788), 31, + [73325] = 1, + ACTIONS(720), 32, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -86218,15 +86191,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_LBRACK, anon_sym_POUND, - [73752] = 3, - ACTIONS(794), 2, + [73360] = 5, + ACTIONS(874), 2, sym_concatenating_space, sym__if_else_separator, - ACTIONS(2070), 2, + ACTIONS(2086), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(792), 28, + ACTIONS(2090), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2088), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(872), 23, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -86241,11 +86222,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PIPE_AMP, anon_sym_QMARK, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, @@ -86255,10 +86231,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_POUND, - [73791] = 2, - ACTIONS(802), 1, + [73403] = 2, + ACTIONS(766), 1, sym_concatenating_space, - ACTIONS(800), 31, + ACTIONS(764), 31, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -86290,25 +86266,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_POUND, - [73828] = 5, - ACTIONS(794), 2, + [73440] = 2, + ACTIONS(782), 1, sym_concatenating_space, - sym__if_else_separator, - ACTIONS(2070), 2, - anon_sym_CARET, - anon_sym_STAR_STAR, - ACTIONS(2074), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2072), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(792), 23, + ACTIONS(780), 31, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, + anon_sym_while, anon_sym_in, anon_sym_RBRACE, anon_sym_case, @@ -86319,6 +86285,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PIPE_AMP, anon_sym_QMARK, + anon_sym_CARET, + anon_sym_STAR_STAR, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, @@ -86328,20 +86301,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_POUND, - [73871] = 2, - ACTIONS(752), 1, - sym__if_else_separator, - ACTIONS(750), 31, + [73477] = 4, + ACTIONS(690), 1, + sym_concatenating_space, + ACTIONS(2046), 1, + anon_sym_LBRACK, + ACTIONS(2066), 1, + anon_sym_LT, + ACTIONS(688), 29, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, - anon_sym_while, anon_sym_in, anon_sym_RBRACE, anon_sym_case, anon_sym_default, - anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, anon_sym_PIPE, @@ -86363,24 +86338,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_POUND, - [73908] = 3, - ACTIONS(654), 1, - sym_concatenating_space, - ACTIONS(642), 10, + [73518] = 2, + ACTIONS(2058), 1, + anon_sym_LBRACK, + ACTIONS(692), 31, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, anon_sym_while, + anon_sym_in, anon_sym_RBRACE, anon_sym_case, anon_sym_default, - anon_sym_GT_GT, - anon_sym_POUND, - ACTIONS(644), 21, - anon_sym_in, anon_sym_LT, anon_sym_GT, + anon_sym_GT_GT, anon_sym_PIPE, anon_sym_PIPE_AMP, anon_sym_QMARK, @@ -86399,13 +86372,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [73947] = 1, - ACTIONS(722), 32, + anon_sym_POUND, + [73555] = 3, + ACTIONS(652), 1, + sym__if_else_separator, + ACTIONS(1231), 1, + sym_concatenating_space, + ACTIONS(642), 30, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, - anon_sym_while, anon_sym_in, anon_sym_RBRACE, anon_sym_case, @@ -86431,33 +86408,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_LBRACK, anon_sym_POUND, - [73982] = 7, - ACTIONS(852), 2, + [73594] = 7, + ACTIONS(870), 2, sym_concatenating_space, sym__if_else_separator, - ACTIONS(2070), 2, + ACTIONS(2086), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2074), 2, + ACTIONS(2090), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2082), 2, + ACTIONS(2094), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2072), 3, + ACTIONS(2088), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2078), 6, + ACTIONS(2092), 6, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(840), 15, + ACTIONS(868), 15, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -86473,15 +86449,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_POUND, - [74029] = 2, - ACTIONS(794), 1, + [73641] = 5, + ACTIONS(778), 2, sym_concatenating_space, - ACTIONS(792), 31, + sym__if_else_separator, + ACTIONS(2086), 2, + anon_sym_CARET, + anon_sym_STAR_STAR, + ACTIONS(2090), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2088), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(776), 23, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, - anon_sym_while, anon_sym_in, anon_sym_RBRACE, anon_sym_case, @@ -86492,13 +86478,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PIPE_AMP, anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, @@ -86508,15 +86487,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_POUND, - [74066] = 2, - ACTIONS(770), 1, + [73684] = 3, + ACTIONS(778), 2, sym_concatenating_space, - ACTIONS(768), 31, + sym__if_else_separator, + ACTIONS(2086), 2, + anon_sym_CARET, + anon_sym_STAR_STAR, + ACTIONS(776), 28, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, - anon_sym_while, anon_sym_in, anon_sym_RBRACE, anon_sym_case, @@ -86527,8 +86509,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PIPE_AMP, anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -86543,15 +86523,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_POUND, - [74103] = 2, - ACTIONS(818), 1, + [73723] = 4, + ACTIONS(778), 2, + sym_concatenating_space, sym__if_else_separator, - ACTIONS(816), 31, + ACTIONS(2086), 2, + anon_sym_CARET, + anon_sym_STAR_STAR, + ACTIONS(2088), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(776), 25, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, - anon_sym_while, anon_sym_in, anon_sym_RBRACE, anon_sym_case, @@ -86562,11 +86549,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PIPE_AMP, anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PLUS, anon_sym_DASH, anon_sym_LT_EQ, @@ -86578,154 +86560,136 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_POUND, - [74140] = 3, - ACTIONS(836), 1, + [73764] = 6, + ACTIONS(778), 2, sym_concatenating_space, - ACTIONS(2098), 1, - sym_regex_flags, - ACTIONS(832), 30, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, + sym__if_else_separator, + ACTIONS(2086), 2, anon_sym_CARET, anon_sym_STAR_STAR, + ACTIONS(2090), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2088), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(2092), 6, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_POUND, - [74179] = 2, - ACTIONS(684), 1, - sym__if_else_separator, - ACTIONS(682), 31, + ACTIONS(776), 17, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, - anon_sym_while, anon_sym_in, anon_sym_RBRACE, anon_sym_case, anon_sym_default, - anon_sym_LT, - anon_sym_GT, anon_sym_GT_GT, anon_sym_PIPE, anon_sym_PIPE_AMP, anon_sym_QMARK, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_POUND, + [73809] = 8, + ACTIONS(2096), 1, + anon_sym_in, + ACTIONS(778), 2, + sym_concatenating_space, + sym__if_else_separator, + ACTIONS(2086), 2, anon_sym_CARET, anon_sym_STAR_STAR, + ACTIONS(2090), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2094), 2, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(2088), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(2092), 6, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_POUND, - [74216] = 2, - ACTIONS(778), 1, - sym__if_else_separator, - ACTIONS(776), 31, + ACTIONS(776), 14, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, - anon_sym_while, - anon_sym_in, anon_sym_RBRACE, anon_sym_case, anon_sym_default, - anon_sym_LT, - anon_sym_GT, anon_sym_GT_GT, anon_sym_PIPE, anon_sym_PIPE_AMP, anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_POUND, + [73858] = 9, + ACTIONS(2096), 1, + anon_sym_in, + ACTIONS(2098), 1, + anon_sym_AMP_AMP, + ACTIONS(778), 2, + sym_concatenating_space, + sym__if_else_separator, + ACTIONS(2086), 2, anon_sym_CARET, anon_sym_STAR_STAR, + ACTIONS(2090), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2094), 2, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(2088), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(2092), 6, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_POUND, - [74253] = 3, - ACTIONS(830), 1, - sym_concatenating_space, - ACTIONS(2100), 1, - sym_regex_flags, - ACTIONS(826), 30, + ACTIONS(776), 13, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, - anon_sym_in, anon_sym_RBRACE, anon_sym_case, anon_sym_default, - anon_sym_LT, - anon_sym_GT, anon_sym_GT_GT, anon_sym_PIPE, anon_sym_PIPE_AMP, anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_POUND, - [74292] = 3, - ACTIONS(830), 1, + [73909] = 4, + ACTIONS(690), 1, sym__if_else_separator, - ACTIONS(2102), 1, - sym_regex_flags, - ACTIONS(826), 30, + ACTIONS(2038), 1, + anon_sym_LBRACK, + ACTIONS(2060), 1, + anon_sym_LT, + ACTIONS(688), 29, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -86734,7 +86698,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_case, anon_sym_default, - anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, anon_sym_PIPE, @@ -86756,12 +86719,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_POUND, - [74331] = 3, - ACTIONS(836), 1, + [73950] = 7, + ACTIONS(882), 2, + sym_concatenating_space, sym__if_else_separator, - ACTIONS(2104), 1, - sym_regex_flags, - ACTIONS(832), 30, + ACTIONS(2086), 2, + anon_sym_CARET, + anon_sym_STAR_STAR, + ACTIONS(2090), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2094), 2, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(2088), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2092), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(880), 15, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -86770,52 +86752,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_case, anon_sym_default, - anon_sym_LT, - anon_sym_GT, anon_sym_GT_GT, anon_sym_PIPE, anon_sym_PIPE_AMP, anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_POUND, + [73997] = 11, + ACTIONS(2096), 1, + anon_sym_in, + ACTIONS(2098), 1, + anon_sym_AMP_AMP, + ACTIONS(2100), 1, + anon_sym_QMARK, + ACTIONS(2102), 1, + anon_sym_PIPE_PIPE, + ACTIONS(878), 2, + sym_concatenating_space, + sym__if_else_separator, + ACTIONS(2086), 2, anon_sym_CARET, anon_sym_STAR_STAR, + ACTIONS(2090), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2094), 2, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(2088), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(2092), 6, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(876), 11, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, anon_sym_POUND, - [74370] = 5, - ACTIONS(2106), 1, - sym_identifier, - STATE(2058), 1, - sym_namespace, - STATE(1464), 2, - sym_array_ref, - sym_ns_qualified_name, - ACTIONS(712), 5, + [74052] = 2, + ACTIONS(2058), 1, + anon_sym_LBRACK, + ACTIONS(688), 31, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_while, anon_sym_in, + anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, anon_sym_LT, anon_sym_GT, + anon_sym_GT_GT, anon_sym_PIPE, - anon_sym_STAR, - ACTIONS(714), 22, - sym_concatenating_space, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COLON, anon_sym_PIPE_AMP, anon_sym_QMARK, anon_sym_CARET, anon_sym_STAR_STAR, + anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_PLUS, @@ -86828,9 +86837,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_RBRACK, - [74412] = 1, - ACTIONS(682), 31, + anon_sym_POUND, + [74089] = 2, + ACTIONS(774), 1, + sym_concatenating_space, + ACTIONS(772), 31, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -86862,42 +86873,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_POUND, - [74446] = 2, - ACTIONS(1841), 12, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SLASH, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - anon_sym_AT, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - ACTIONS(1839), 19, - anon_sym_if, - anon_sym_while, - anon_sym_do, - anon_sym_for, - sym_break_statement, - sym_continue_statement, - anon_sym_delete, - anon_sym_exit, - anon_sym_return, - anon_sym_switch, - anon_sym_getline, - sym_next_statement, - sym_nextfile_statement, - anon_sym_print, - anon_sym_printf, - anon_sym_PLUS, - anon_sym_DASH, - sym_identifier, - aux_sym_number_token1, - [74482] = 1, - ACTIONS(784), 31, + [74126] = 2, + ACTIONS(760), 1, + sym_concatenating_space, + ACTIONS(758), 31, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -86929,20 +86908,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_POUND, - [74516] = 3, - ACTIONS(2054), 1, - anon_sym_LBRACK, - ACTIONS(2068), 1, - anon_sym_LT, - ACTIONS(678), 29, + [74163] = 2, + ACTIONS(770), 1, + sym_concatenating_space, + ACTIONS(768), 31, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, + anon_sym_while, anon_sym_in, anon_sym_RBRACE, anon_sym_case, anon_sym_default, + anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, anon_sym_PIPE, @@ -86964,8 +86943,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_POUND, - [74554] = 1, - ACTIONS(750), 31, + [74200] = 2, + ACTIONS(778), 1, + sym_concatenating_space, + ACTIONS(776), 31, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -86997,41 +86978,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_POUND, - [74588] = 12, - ACTIONS(866), 1, - sym_concatenating_space, - ACTIONS(2108), 1, + [74237] = 12, + ACTIONS(2096), 1, anon_sym_in, - ACTIONS(2114), 1, - anon_sym_QMARK, - ACTIONS(2124), 1, + ACTIONS(2098), 1, anon_sym_AMP_AMP, - ACTIONS(2126), 1, + ACTIONS(2100), 1, + anon_sym_QMARK, + ACTIONS(2102), 1, anon_sym_PIPE_PIPE, - ACTIONS(2112), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(2116), 2, + ACTIONS(864), 2, + sym_concatenating_space, + sym__if_else_separator, + ACTIONS(2086), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2120), 2, + ACTIONS(2090), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2122), 2, + ACTIONS(2094), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2118), 3, + ACTIONS(2104), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(2088), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2110), 6, + ACTIONS(2092), 6, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(854), 9, + ACTIONS(848), 9, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -87041,14 +87023,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_GT_GT, anon_sym_POUND, - [74644] = 2, - ACTIONS(2128), 1, - sym_regex_flags, - ACTIONS(826), 30, + [74294] = 2, + ACTIONS(814), 1, + sym_concatenating_space, + ACTIONS(812), 31, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, + anon_sym_while, anon_sym_in, anon_sym_RBRACE, anon_sym_case, @@ -87075,20 +87058,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_POUND, - [74680] = 1, - ACTIONS(796), 31, + [74331] = 3, + ACTIONS(658), 1, + sym_concatenating_space, + ACTIONS(654), 10, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, anon_sym_while, - anon_sym_in, anon_sym_RBRACE, anon_sym_case, anon_sym_default, + anon_sym_GT_GT, + anon_sym_POUND, + ACTIONS(642), 21, + anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, anon_sym_PIPE, anon_sym_PIPE_AMP, anon_sym_QMARK, @@ -87107,14 +87094,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_POUND, - [74714] = 1, - ACTIONS(746), 31, + [74370] = 5, + ACTIONS(874), 1, + sym_concatenating_space, + ACTIONS(2106), 2, + anon_sym_CARET, + anon_sym_STAR_STAR, + ACTIONS(2110), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2108), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(872), 23, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, - anon_sym_while, anon_sym_in, anon_sym_RBRACE, anon_sym_case, @@ -87125,13 +87122,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PIPE_AMP, anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, @@ -87141,24 +87131,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_POUND, - [74748] = 6, - ACTIONS(2130), 1, - sym_identifier, - ACTIONS(2132), 1, - anon_sym_LT, - STATE(1337), 1, - sym_array_ref, - STATE(1469), 1, - sym_ns_qualified_name, - STATE(2059), 1, - sym_namespace, - ACTIONS(712), 26, + [74412] = 1, + ACTIONS(750), 31, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, anon_sym_while, anon_sym_in, + anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, + anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, anon_sym_PIPE, @@ -87179,8 +87163,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [74792] = 1, - ACTIONS(816), 31, + anon_sym_POUND, + [74446] = 1, + ACTIONS(754), 31, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -87212,52 +87197,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_POUND, - [74826] = 12, - ACTIONS(866), 1, - sym__if_else_separator, - ACTIONS(2076), 1, + [74480] = 2, + ACTIONS(2112), 1, + sym_regex_flags, + ACTIONS(832), 30, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, anon_sym_in, - ACTIONS(2080), 1, + anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, anon_sym_QMARK, - ACTIONS(2084), 1, - anon_sym_AMP_AMP, - ACTIONS(2086), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2070), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2074), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2082), 2, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(2134), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(2072), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2078), 6, - anon_sym_LT, - anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(854), 9, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_POUND, + [74516] = 2, + ACTIONS(2114), 1, + sym_regex_flags, + ACTIONS(826), 30, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, + anon_sym_in, anon_sym_RBRACE, anon_sym_case, anon_sym_default, + anon_sym_LT, + anon_sym_GT, anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_CARET, + anon_sym_STAR_STAR, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_POUND, - [74882] = 1, - ACTIONS(760), 31, + [74552] = 1, + ACTIONS(790), 31, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -87289,8 +87298,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_POUND, - [74916] = 1, - ACTIONS(780), 31, + [74586] = 1, + ACTIONS(738), 31, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -87322,34 +87331,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_POUND, - [74950] = 5, - ACTIONS(882), 1, - sym_concatenating_space, - ACTIONS(2116), 2, + [74620] = 12, + ACTIONS(864), 1, + sym__if_else_separator, + ACTIONS(2096), 1, + anon_sym_in, + ACTIONS(2098), 1, + anon_sym_AMP_AMP, + ACTIONS(2100), 1, + anon_sym_QMARK, + ACTIONS(2102), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2086), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2120), 2, + ACTIONS(2090), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2118), 3, + ACTIONS(2094), 2, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(2116), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(2088), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(880), 23, + ACTIONS(2092), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(848), 9, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, - anon_sym_in, anon_sym_RBRACE, anon_sym_case, anon_sym_default, + anon_sym_GT_GT, + anon_sym_POUND, + [74676] = 5, + ACTIONS(2118), 1, + sym_identifier, + STATE(2063), 1, + sym_namespace, + STATE(1465), 2, + sym_array_ref, + sym_ns_qualified_name, + ACTIONS(726), 5, + anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, anon_sym_PIPE, + anon_sym_STAR, + ACTIONS(728), 22, + sym_concatenating_space, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_PIPE_AMP, anon_sym_QMARK, + anon_sym_CARET, + anon_sym_STAR_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, @@ -87358,18 +87411,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_RBRACK, + [74718] = 12, + ACTIONS(864), 1, + sym_concatenating_space, + ACTIONS(2120), 1, + anon_sym_in, + ACTIONS(2126), 1, + anon_sym_QMARK, + ACTIONS(2130), 1, + anon_sym_AMP_AMP, + ACTIONS(2132), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2106), 2, + anon_sym_CARET, + anon_sym_STAR_STAR, + ACTIONS(2110), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2124), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(2128), 2, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(2108), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2122), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(848), 9, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, + anon_sym_GT_GT, anon_sym_POUND, - [74992] = 5, - ACTIONS(652), 1, - anon_sym_COLON_COLON, - ACTIONS(2010), 1, - anon_sym_LBRACK, + [74774] = 6, + ACTIONS(2134), 1, + sym_identifier, ACTIONS(2136), 1, anon_sym_LT, - ACTIONS(680), 2, - sym_concatenating_space, - sym__if_else_separator, - ACTIONS(678), 26, + STATE(1382), 1, + sym_array_ref, + STATE(1480), 1, + sym_ns_qualified_name, + STATE(2064), 1, + sym_namespace, + ACTIONS(726), 26, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -87396,51 +87494,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [75034] = 12, - ACTIONS(1073), 1, - anon_sym_COMMA, - ACTIONS(1087), 1, + [74818] = 5, + ACTIONS(650), 1, + anon_sym_COLON_COLON, + ACTIONS(2018), 1, + anon_sym_LBRACK, + ACTIONS(2138), 1, + anon_sym_LT, + ACTIONS(690), 2, + sym_concatenating_space, sym__if_else_separator, - ACTIONS(2076), 1, + ACTIONS(688), 26, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_while, anon_sym_in, - ACTIONS(2080), 1, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, anon_sym_QMARK, - ACTIONS(2084), 1, - anon_sym_AMP_AMP, - ACTIONS(2086), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2070), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2074), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2082), 2, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(2072), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2078), 6, - anon_sym_LT, - anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1085), 10, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_POUND, - [75090] = 2, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [74860] = 2, ACTIONS(1845), 12, anon_sym_LPAREN, anon_sym_LBRACE, @@ -87474,10 +87565,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, sym_identifier, aux_sym_number_token1, - [75126] = 2, - ACTIONS(2138), 1, - sym_regex_flags, - ACTIONS(832), 30, + [74896] = 7, + ACTIONS(870), 1, + sym_concatenating_space, + ACTIONS(2106), 2, + anon_sym_CARET, + anon_sym_STAR_STAR, + ACTIONS(2110), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2128), 2, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(2108), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2122), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(868), 15, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -87486,19 +87597,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_case, anon_sym_default, - anon_sym_LT, - anon_sym_GT, anon_sym_GT_GT, anon_sym_PIPE, anon_sym_PIPE_AMP, anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_POUND, + [74942] = 5, + ACTIONS(778), 1, + sym_concatenating_space, + ACTIONS(2106), 2, anon_sym_CARET, anon_sym_STAR_STAR, + ACTIONS(2110), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2108), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(776), 23, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_QMARK, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, @@ -87508,57 +87641,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_POUND, - [75162] = 12, - ACTIONS(1073), 1, - anon_sym_COMMA, - ACTIONS(1075), 1, - sym__if_else_separator, - ACTIONS(2076), 1, - anon_sym_in, - ACTIONS(2080), 1, - anon_sym_QMARK, - ACTIONS(2084), 1, - anon_sym_AMP_AMP, - ACTIONS(2086), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2070), 2, + [74984] = 3, + ACTIONS(778), 1, + sym_concatenating_space, + ACTIONS(2106), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2074), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2082), 2, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(2072), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2078), 5, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1071), 11, + ACTIONS(776), 28, + anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, + anon_sym_in, anon_sym_RBRACE, anon_sym_case, anon_sym_default, + anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, anon_sym_PIPE, anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_POUND, - [75218] = 1, - ACTIONS(808), 31, + [75022] = 4, + ACTIONS(778), 1, + sym_concatenating_space, + ACTIONS(2106), 2, + anon_sym_CARET, + anon_sym_STAR_STAR, + ACTIONS(2108), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(776), 25, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, - anon_sym_while, anon_sym_in, anon_sym_RBRACE, anon_sym_case, @@ -87569,11 +87701,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PIPE_AMP, anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PLUS, anon_sym_DASH, anon_sym_LT_EQ, @@ -87585,47 +87712,127 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_POUND, - [75252] = 7, - ACTIONS(2140), 1, - sym_identifier, - ACTIONS(2142), 1, + [75062] = 6, + ACTIONS(778), 1, + sym_concatenating_space, + ACTIONS(2106), 2, + anon_sym_CARET, + anon_sym_STAR_STAR, + ACTIONS(2110), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2108), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2122), 6, anon_sym_LT, - STATE(1464), 1, - sym_array_ref, - STATE(1478), 1, - sym_ns_qualified_name, - STATE(2058), 1, - sym_namespace, - ACTIONS(712), 4, - anon_sym_in, anon_sym_GT, - anon_sym_PIPE, - anon_sym_STAR, - ACTIONS(714), 22, - sym_concatenating_space, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(776), 17, anon_sym_COMMA, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COLON, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, + anon_sym_GT_GT, + anon_sym_PIPE, anon_sym_PIPE_AMP, anon_sym_QMARK, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_POUND, + [75106] = 8, + ACTIONS(778), 1, + sym_concatenating_space, + ACTIONS(2120), 1, + anon_sym_in, + ACTIONS(2106), 2, anon_sym_CARET, anon_sym_STAR_STAR, + ACTIONS(2110), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2128), 2, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(2108), 3, + anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(2122), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(776), 14, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_POUND, + [75154] = 9, + ACTIONS(778), 1, + sym_concatenating_space, + ACTIONS(2120), 1, + anon_sym_in, + ACTIONS(2130), 1, + anon_sym_AMP_AMP, + ACTIONS(2106), 2, + anon_sym_CARET, + anon_sym_STAR_STAR, + ACTIONS(2110), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(2128), 2, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(2108), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2122), 6, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, + ACTIONS(776), 13, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_QMARK, anon_sym_PIPE_PIPE, - anon_sym_RBRACK, - [75298] = 1, - ACTIONS(804), 31, + anon_sym_POUND, + [75204] = 1, + ACTIONS(746), 31, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -87657,21 +87864,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_POUND, - [75332] = 4, - ACTIONS(794), 1, - sym_concatenating_space, - ACTIONS(2116), 2, - anon_sym_CARET, - anon_sym_STAR_STAR, - ACTIONS(2118), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(792), 25, + [75238] = 1, + ACTIONS(742), 31, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, + anon_sym_while, anon_sym_in, anon_sym_RBRACE, anon_sym_case, @@ -87682,6 +87881,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PIPE_AMP, anon_sym_QMARK, + anon_sym_CARET, + anon_sym_STAR_STAR, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PLUS, anon_sym_DASH, anon_sym_LT_EQ, @@ -87693,8 +87897,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_POUND, - [75372] = 1, - ACTIONS(768), 31, + [75272] = 1, + ACTIONS(794), 31, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -87726,215 +87930,194 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_POUND, - [75406] = 11, - ACTIONS(878), 1, + [75306] = 7, + ACTIONS(882), 1, sym_concatenating_space, - ACTIONS(2108), 1, - anon_sym_in, - ACTIONS(2114), 1, - anon_sym_QMARK, - ACTIONS(2124), 1, - anon_sym_AMP_AMP, - ACTIONS(2126), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2116), 2, + ACTIONS(2106), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2120), 2, + ACTIONS(2110), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2122), 2, + ACTIONS(2128), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2118), 3, + ACTIONS(2108), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2110), 6, + ACTIONS(2122), 6, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(876), 11, + ACTIONS(880), 15, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, + anon_sym_in, anon_sym_RBRACE, anon_sym_case, anon_sym_default, anon_sym_GT_GT, anon_sym_PIPE, anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_POUND, - [75460] = 7, - ACTIONS(870), 1, + [75352] = 11, + ACTIONS(878), 1, sym_concatenating_space, - ACTIONS(2116), 2, + ACTIONS(2120), 1, + anon_sym_in, + ACTIONS(2126), 1, + anon_sym_QMARK, + ACTIONS(2130), 1, + anon_sym_AMP_AMP, + ACTIONS(2132), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2106), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2120), 2, + ACTIONS(2110), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2122), 2, + ACTIONS(2128), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2118), 3, + ACTIONS(2108), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2110), 6, + ACTIONS(2122), 6, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(868), 15, + ACTIONS(876), 11, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, - anon_sym_in, anon_sym_RBRACE, anon_sym_case, anon_sym_default, anon_sym_GT_GT, anon_sym_PIPE, anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_POUND, - [75506] = 9, - ACTIONS(794), 1, - sym_concatenating_space, - ACTIONS(2108), 1, - anon_sym_in, - ACTIONS(2124), 1, - anon_sym_AMP_AMP, - ACTIONS(2116), 2, - anon_sym_CARET, - anon_sym_STAR_STAR, - ACTIONS(2120), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2122), 2, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(2118), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2110), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(792), 13, + [75406] = 1, + ACTIONS(798), 31, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, + anon_sym_while, + anon_sym_in, anon_sym_RBRACE, anon_sym_case, anon_sym_default, + anon_sym_LT, + anon_sym_GT, anon_sym_GT_GT, anon_sym_PIPE, anon_sym_PIPE_AMP, anon_sym_QMARK, - anon_sym_PIPE_PIPE, - anon_sym_POUND, - [75556] = 8, - ACTIONS(794), 1, - sym_concatenating_space, - ACTIONS(2108), 1, - anon_sym_in, - ACTIONS(2116), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2120), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2122), 2, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(2118), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2110), 6, - anon_sym_LT, - anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(792), 14, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_POUND, + [75440] = 1, + ACTIONS(786), 31, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, + anon_sym_while, + anon_sym_in, anon_sym_RBRACE, anon_sym_case, anon_sym_default, + anon_sym_LT, + anon_sym_GT, anon_sym_GT_GT, anon_sym_PIPE, anon_sym_PIPE_AMP, anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_POUND, - [75604] = 6, - ACTIONS(794), 1, - sym_concatenating_space, - ACTIONS(2116), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2120), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2118), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2110), 6, - anon_sym_LT, - anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(792), 17, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_POUND, + [75474] = 1, + ACTIONS(692), 31, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, + anon_sym_while, anon_sym_in, anon_sym_RBRACE, anon_sym_case, anon_sym_default, + anon_sym_LT, + anon_sym_GT, anon_sym_GT_GT, anon_sym_PIPE, anon_sym_PIPE_AMP, anon_sym_QMARK, + anon_sym_CARET, + anon_sym_STAR_STAR, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_TILDE, anon_sym_BANG_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_POUND, - [75648] = 2, - ACTIONS(1251), 1, - sym_concatenating_space, - ACTIONS(644), 30, + [75508] = 1, + ACTIONS(764), 31, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, + anon_sym_while, anon_sym_in, anon_sym_RBRACE, anon_sym_case, @@ -87961,13 +88144,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_POUND, - [75684] = 3, - ACTIONS(794), 1, - sym_concatenating_space, - ACTIONS(2116), 2, - anon_sym_CARET, - anon_sym_STAR_STAR, - ACTIONS(792), 28, + [75542] = 3, + ACTIONS(2058), 1, + anon_sym_LBRACK, + ACTIONS(2084), 1, + anon_sym_LT, + ACTIONS(688), 29, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -87976,12 +88158,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_case, anon_sym_default, - anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, anon_sym_PIPE, anon_sym_PIPE_AMP, anon_sym_QMARK, + anon_sym_CARET, + anon_sym_STAR_STAR, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -87996,13 +88179,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_POUND, - [75722] = 1, - ACTIONS(776), 31, + [75580] = 2, + ACTIONS(1257), 1, + sym_concatenating_space, + ACTIONS(642), 30, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, - anon_sym_while, anon_sym_in, anon_sym_RBRACE, anon_sym_case, @@ -88029,116 +88213,156 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_POUND, - [75756] = 7, - ACTIONS(852), 1, + [75616] = 7, + ACTIONS(2140), 1, + sym_identifier, + ACTIONS(2142), 1, + anon_sym_LT, + STATE(1465), 1, + sym_array_ref, + STATE(1496), 1, + sym_ns_qualified_name, + STATE(2063), 1, + sym_namespace, + ACTIONS(726), 4, + anon_sym_in, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_STAR, + ACTIONS(728), 22, sym_concatenating_space, - ACTIONS(2116), 2, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_PIPE_AMP, + anon_sym_QMARK, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2120), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2122), 2, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(2118), 3, - anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2110), 6, - anon_sym_LT, - anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(840), 15, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_RBRACK, + [75662] = 1, + ACTIONS(780), 31, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, + anon_sym_while, anon_sym_in, anon_sym_RBRACE, anon_sym_case, anon_sym_default, + anon_sym_LT, + anon_sym_GT, anon_sym_GT_GT, anon_sym_PIPE, anon_sym_PIPE_AMP, anon_sym_QMARK, + anon_sym_CARET, + anon_sym_STAR_STAR, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_POUND, - [75802] = 5, - ACTIONS(794), 1, - sym_concatenating_space, - ACTIONS(2116), 2, + [75696] = 12, + ACTIONS(1073), 1, + anon_sym_COMMA, + ACTIONS(1103), 1, + sym__if_else_separator, + ACTIONS(2096), 1, + anon_sym_in, + ACTIONS(2098), 1, + anon_sym_AMP_AMP, + ACTIONS(2100), 1, + anon_sym_QMARK, + ACTIONS(2102), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2086), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2120), 2, + ACTIONS(2090), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2118), 3, + ACTIONS(2094), 2, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(2088), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(792), 23, - anon_sym_COMMA, + ACTIONS(2092), 5, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1101), 11, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, - anon_sym_in, anon_sym_RBRACE, anon_sym_case, anon_sym_default, - anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, anon_sym_PIPE, anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_POUND, - [75844] = 11, - ACTIONS(2108), 1, + [75752] = 12, + ACTIONS(1073), 1, + anon_sym_COMMA, + ACTIONS(1075), 1, + sym__if_else_separator, + ACTIONS(2096), 1, anon_sym_in, - ACTIONS(2114), 1, - anon_sym_QMARK, - ACTIONS(2124), 1, + ACTIONS(2098), 1, anon_sym_AMP_AMP, - ACTIONS(2126), 1, + ACTIONS(2100), 1, + anon_sym_QMARK, + ACTIONS(2102), 1, anon_sym_PIPE_PIPE, - ACTIONS(2116), 2, + ACTIONS(2086), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2120), 2, + ACTIONS(2090), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2122), 2, + ACTIONS(2094), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2144), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(2118), 3, + ACTIONS(2088), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2110), 6, + ACTIONS(2092), 6, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(854), 9, - anon_sym_COMMA, + ACTIONS(1071), 10, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, @@ -88146,21 +88370,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_case, anon_sym_default, anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, anon_sym_POUND, - [75897] = 3, - ACTIONS(2060), 1, - sym_regex_flags, - ACTIONS(830), 2, + [75808] = 2, + ACTIONS(1817), 12, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SLASH, + anon_sym_BANG, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_DOLLAR, + anon_sym_AT, + aux_sym_number_token2, + anon_sym_DQUOTE, + anon_sym_POUND, + ACTIONS(1815), 19, + anon_sym_if, + anon_sym_while, + anon_sym_do, + anon_sym_for, + sym_break_statement, + sym_continue_statement, + anon_sym_delete, + anon_sym_exit, + anon_sym_return, + anon_sym_switch, + anon_sym_getline, + sym_next_statement, + sym_nextfile_statement, + anon_sym_print, + anon_sym_printf, + anon_sym_PLUS, + anon_sym_DASH, + sym_identifier, + aux_sym_number_token1, + [75844] = 5, + ACTIONS(650), 1, + anon_sym_COLON_COLON, + ACTIONS(690), 1, sym_concatenating_space, - sym__if_else_separator, - ACTIONS(826), 27, + ACTIONS(2046), 1, + anon_sym_LBRACK, + ACTIONS(2144), 1, + anon_sym_LT, + ACTIONS(688), 26, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, anon_sym_while, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, anon_sym_PIPE, @@ -88181,8 +88443,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [75934] = 3, - ACTIONS(2062), 1, + [75885] = 3, + ACTIONS(2056), 1, sym_regex_flags, ACTIONS(836), 2, sym_concatenating_space, @@ -88215,21 +88477,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [75971] = 4, - ACTIONS(2010), 1, - anon_sym_LBRACK, - ACTIONS(2136), 1, - anon_sym_LT, - ACTIONS(680), 2, + [75922] = 3, + ACTIONS(2054), 1, + sym_regex_flags, + ACTIONS(830), 2, sym_concatenating_space, sym__if_else_separator, - ACTIONS(678), 26, + ACTIONS(826), 27, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, anon_sym_while, anon_sym_in, + anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, anon_sym_PIPE, @@ -88250,30 +88511,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [76010] = 5, - ACTIONS(652), 1, - anon_sym_COLON_COLON, - ACTIONS(680), 1, - sym_concatenating_space, - ACTIONS(2042), 1, - anon_sym_LBRACK, + [75959] = 7, ACTIONS(2146), 1, + sym_identifier, + ACTIONS(2148), 1, anon_sym_LT, - ACTIONS(678), 26, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_while, + STATE(1519), 1, + sym_array_ref, + STATE(1523), 1, + sym_ns_qualified_name, + STATE(2052), 1, + sym_namespace, + ACTIONS(726), 4, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, anon_sym_PIPE, + anon_sym_STAR, + ACTIONS(728), 21, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_PIPE_AMP, anon_sym_QMARK, anon_sym_CARET, anon_sym_STAR_STAR, - anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_PLUS, @@ -88286,21 +88548,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [76051] = 5, - ACTIONS(2148), 1, + anon_sym_RBRACK, + [76004] = 5, + ACTIONS(2150), 1, sym_identifier, - STATE(2047), 1, + STATE(2052), 1, sym_namespace, - STATE(1534), 2, + STATE(1519), 2, sym_array_ref, sym_ns_qualified_name, - ACTIONS(712), 5, + ACTIONS(726), 5, anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_STAR, - ACTIONS(714), 21, + ACTIONS(728), 21, anon_sym_COMMA, anon_sym_SEMI, anon_sym_RPAREN, @@ -88322,31 +88585,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_RBRACK, - [76092] = 7, - ACTIONS(2150), 1, - sym_identifier, - ACTIONS(2152), 1, + [76045] = 4, + ACTIONS(2018), 1, + anon_sym_LBRACK, + ACTIONS(2138), 1, anon_sym_LT, - STATE(1505), 1, - sym_ns_qualified_name, - STATE(1534), 1, - sym_array_ref, - STATE(2047), 1, - sym_namespace, - ACTIONS(712), 4, + ACTIONS(690), 2, + sym_concatenating_space, + sym__if_else_separator, + ACTIONS(688), 26, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_while, anon_sym_in, anon_sym_GT, + anon_sym_GT_GT, anon_sym_PIPE, - anon_sym_STAR, - ACTIONS(714), 21, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COLON, anon_sym_PIPE_AMP, anon_sym_QMARK, anon_sym_CARET, anon_sym_STAR_STAR, + anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_PLUS, @@ -88359,59 +88620,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_RBRACK, - [76137] = 11, - ACTIONS(1073), 1, - anon_sym_COMMA, - ACTIONS(2108), 1, + [76084] = 11, + ACTIONS(2120), 1, anon_sym_in, - ACTIONS(2114), 1, + ACTIONS(2126), 1, anon_sym_QMARK, - ACTIONS(2124), 1, + ACTIONS(2130), 1, anon_sym_AMP_AMP, - ACTIONS(2126), 1, + ACTIONS(2132), 1, anon_sym_PIPE_PIPE, - ACTIONS(2116), 2, + ACTIONS(2106), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2120), 2, + ACTIONS(2110), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2122), 2, + ACTIONS(2128), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2118), 3, + ACTIONS(2152), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(2108), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2110), 5, + ACTIONS(2122), 6, anon_sym_LT, + anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1071), 11, + ACTIONS(848), 9, + anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, anon_sym_RBRACE, anon_sym_case, anon_sym_default, - anon_sym_GT, anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, anon_sym_POUND, - [76190] = 5, - ACTIONS(652), 1, + [76137] = 5, + ACTIONS(650), 1, anon_sym_COLON_COLON, - ACTIONS(680), 1, + ACTIONS(690), 1, sym__if_else_separator, ACTIONS(2038), 1, anon_sym_LBRACK, ACTIONS(2154), 1, anon_sym_LT, - ACTIONS(678), 26, + ACTIONS(688), 26, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -88438,50 +88698,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [76231] = 11, + [76178] = 11, ACTIONS(1073), 1, anon_sym_COMMA, - ACTIONS(2108), 1, + ACTIONS(2120), 1, anon_sym_in, - ACTIONS(2114), 1, + ACTIONS(2126), 1, anon_sym_QMARK, - ACTIONS(2124), 1, + ACTIONS(2130), 1, anon_sym_AMP_AMP, - ACTIONS(2126), 1, + ACTIONS(2132), 1, anon_sym_PIPE_PIPE, - ACTIONS(2116), 2, + ACTIONS(2106), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2120), 2, + ACTIONS(2110), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2122), 2, + ACTIONS(2128), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2118), 3, + ACTIONS(2108), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2110), 6, + ACTIONS(2122), 5, anon_sym_LT, - anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1085), 10, + ACTIONS(1101), 11, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, anon_sym_RBRACE, anon_sym_case, anon_sym_default, + anon_sym_GT, anon_sym_GT_GT, anon_sym_PIPE, anon_sym_PIPE_AMP, anon_sym_POUND, - [76284] = 2, - ACTIONS(2046), 15, + [76231] = 2, + ACTIONS(2042), 15, anon_sym_BEGIN, anon_sym_END, anon_sym_BEGINFILE, @@ -88497,7 +88757,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, anon_sym_function, anon_sym_func, - ACTIONS(2048), 15, + ACTIONS(2044), 15, ts_builtin_sym_end, anon_sym_ATinclude, anon_sym_ATload, @@ -88513,163 +88773,91 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [76319] = 11, - ACTIONS(2156), 1, + [76266] = 11, + ACTIONS(1073), 1, + anon_sym_COMMA, + ACTIONS(2120), 1, anon_sym_in, - ACTIONS(2160), 1, + ACTIONS(2126), 1, anon_sym_QMARK, - ACTIONS(2170), 1, + ACTIONS(2130), 1, anon_sym_AMP_AMP, - ACTIONS(2172), 1, + ACTIONS(2132), 1, anon_sym_PIPE_PIPE, - ACTIONS(878), 2, - sym_concatenating_space, - sym__if_else_separator, - ACTIONS(2162), 2, + ACTIONS(2106), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2166), 2, + ACTIONS(2110), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2168), 2, + ACTIONS(2128), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2164), 3, + ACTIONS(2108), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2158), 6, + ACTIONS(2122), 6, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(876), 8, - anon_sym_COMMA, + ACTIONS(1071), 10, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, - anon_sym_while, + anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, anon_sym_GT_GT, anon_sym_PIPE, anon_sym_PIPE_AMP, - [76371] = 12, - ACTIONS(1143), 1, + anon_sym_POUND, + [76319] = 7, + ACTIONS(870), 2, + sym_concatenating_space, sym__if_else_separator, - ACTIONS(2076), 1, - anon_sym_in, - ACTIONS(2080), 1, - anon_sym_QMARK, - ACTIONS(2084), 1, - anon_sym_AMP_AMP, - ACTIONS(2086), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2070), 2, + ACTIONS(2158), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2074), 2, + ACTIONS(2162), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2082), 2, + ACTIONS(2164), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2134), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(2072), 3, + ACTIONS(2160), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2078), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1141), 7, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - anon_sym_POUND, - [76425] = 4, - ACTIONS(652), 1, - anon_sym_COLON_COLON, - ACTIONS(2054), 1, - anon_sym_LBRACK, - ACTIONS(2174), 1, + ACTIONS(2156), 6, anon_sym_LT, - ACTIONS(678), 26, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_while, - anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [76463] = 4, - ACTIONS(680), 1, - sym__if_else_separator, - ACTIONS(2038), 1, - anon_sym_LBRACK, - ACTIONS(2154), 1, - anon_sym_LT, - ACTIONS(678), 26, + ACTIONS(868), 12, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, anon_sym_while, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, + anon_sym_in, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [76501] = 3, - ACTIONS(658), 1, - sym__if_else_separator, - ACTIONS(1335), 1, + [76363] = 3, + ACTIONS(830), 1, sym_concatenating_space, - ACTIONS(644), 27, + ACTIONS(2074), 1, + sym_regex_flags, + ACTIONS(826), 27, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -88697,60 +88885,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [76537] = 12, - ACTIONS(2156), 1, + [76399] = 12, + ACTIONS(1151), 1, + sym__if_else_separator, + ACTIONS(2096), 1, anon_sym_in, - ACTIONS(2160), 1, - anon_sym_QMARK, - ACTIONS(2170), 1, + ACTIONS(2098), 1, anon_sym_AMP_AMP, - ACTIONS(2172), 1, + ACTIONS(2100), 1, + anon_sym_QMARK, + ACTIONS(2102), 1, anon_sym_PIPE_PIPE, - ACTIONS(866), 2, - sym_concatenating_space, - sym__if_else_separator, - ACTIONS(2088), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(2162), 2, + ACTIONS(2086), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2166), 2, + ACTIONS(2090), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2168), 2, + ACTIONS(2094), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2164), 3, + ACTIONS(2116), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(2088), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(854), 6, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_while, - anon_sym_GT_GT, - ACTIONS(2158), 6, + ACTIONS(2092), 6, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [76591] = 4, - ACTIONS(652), 1, + ACTIONS(1149), 7, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, + anon_sym_POUND, + [76453] = 5, + ACTIONS(650), 1, anon_sym_COLON_COLON, - ACTIONS(2176), 1, + ACTIONS(2166), 1, + anon_sym_LT, + ACTIONS(2168), 1, anon_sym_LBRACK, - ACTIONS(678), 5, + ACTIONS(688), 4, anon_sym_COLON, - anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_STAR, - ACTIONS(680), 22, + ACTIONS(690), 22, sym_concatenating_space, anon_sym_COMMA, anon_sym_SEMI, @@ -88773,111 +88962,98 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_RBRACK, - [76629] = 3, - ACTIONS(830), 1, - sym_concatenating_space, - ACTIONS(2100), 1, - sym_regex_flags, - ACTIONS(826), 27, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_while, + [76493] = 12, + ACTIONS(1131), 1, + sym__if_else_separator, + ACTIONS(2096), 1, anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, + ACTIONS(2098), 1, + anon_sym_AMP_AMP, + ACTIONS(2100), 1, anon_sym_QMARK, + ACTIONS(2102), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2086), 2, anon_sym_CARET, anon_sym_STAR_STAR, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(2090), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + ACTIONS(2094), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [76665] = 3, - ACTIONS(836), 1, - sym_concatenating_space, - ACTIONS(2098), 1, - sym_regex_flags, - ACTIONS(832), 27, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_while, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, + ACTIONS(2116), 2, anon_sym_PIPE, anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, + ACTIONS(2088), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(2092), 6, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [76701] = 3, - ACTIONS(836), 1, - sym__if_else_separator, - ACTIONS(2104), 1, - sym_regex_flags, - ACTIONS(832), 27, - anon_sym_COMMA, + ACTIONS(1129), 7, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, - anon_sym_while, + anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, + anon_sym_POUND, + [76547] = 12, + ACTIONS(1143), 1, + sym__if_else_separator, + ACTIONS(2096), 1, anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, + ACTIONS(2098), 1, + anon_sym_AMP_AMP, + ACTIONS(2100), 1, anon_sym_QMARK, + ACTIONS(2102), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2086), 2, anon_sym_CARET, anon_sym_STAR_STAR, + ACTIONS(2090), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2094), 2, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(2116), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(2088), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(2092), 6, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [76737] = 3, - ACTIONS(830), 1, + ACTIONS(1141), 7, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, + anon_sym_POUND, + [76601] = 3, + ACTIONS(778), 2, + sym_concatenating_space, sym__if_else_separator, - ACTIONS(2102), 1, - sym_regex_flags, - ACTIONS(826), 27, + ACTIONS(2158), 2, + anon_sym_CARET, + anon_sym_STAR_STAR, + ACTIONS(776), 25, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -88890,8 +89066,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PIPE_AMP, anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -88905,28 +89079,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [76773] = 4, - ACTIONS(680), 1, - sym_concatenating_space, - ACTIONS(2042), 1, + [76637] = 4, + ACTIONS(650), 1, + anon_sym_COLON_COLON, + ACTIONS(2168), 1, anon_sym_LBRACK, - ACTIONS(2146), 1, + ACTIONS(692), 5, + anon_sym_COLON, anon_sym_LT, - ACTIONS(678), 26, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_STAR, + ACTIONS(694), 22, + sym_concatenating_space, anon_sym_COMMA, anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_while, + anon_sym_RPAREN, anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, anon_sym_PIPE_AMP, anon_sym_QMARK, anon_sym_CARET, anon_sym_STAR_STAR, - anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_PLUS, @@ -88939,168 +89112,166 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [76811] = 7, - ACTIONS(870), 2, + anon_sym_RBRACK, + [76675] = 5, + ACTIONS(778), 2, sym_concatenating_space, sym__if_else_separator, - ACTIONS(2162), 2, + ACTIONS(2158), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2166), 2, + ACTIONS(2162), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2168), 2, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(2164), 3, + ACTIONS(2160), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2158), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(868), 12, + ACTIONS(776), 20, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, anon_sym_while, anon_sym_in, + anon_sym_LT, + anon_sym_GT, anon_sym_GT_GT, anon_sym_PIPE, anon_sym_PIPE_AMP, anon_sym_QMARK, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [76855] = 9, - ACTIONS(2156), 1, + [76715] = 12, + ACTIONS(83), 1, + sym__if_else_separator, + ACTIONS(2096), 1, anon_sym_in, - ACTIONS(2170), 1, + ACTIONS(2098), 1, anon_sym_AMP_AMP, - ACTIONS(794), 2, - sym_concatenating_space, - sym__if_else_separator, - ACTIONS(2162), 2, + ACTIONS(2100), 1, + anon_sym_QMARK, + ACTIONS(2102), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2086), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2166), 2, + ACTIONS(2090), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2168), 2, + ACTIONS(2094), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2164), 3, + ACTIONS(2116), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(2088), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2158), 6, + ACTIONS(2092), 6, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(792), 10, - anon_sym_COMMA, + ACTIONS(41), 7, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, - anon_sym_while, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_PIPE_PIPE, - [76903] = 8, - ACTIONS(2156), 1, - anon_sym_in, - ACTIONS(794), 2, + anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, + anon_sym_POUND, + [76769] = 5, + ACTIONS(874), 2, sym_concatenating_space, sym__if_else_separator, - ACTIONS(2162), 2, + ACTIONS(2158), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2166), 2, + ACTIONS(2162), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2168), 2, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(2164), 3, + ACTIONS(2160), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2158), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(792), 11, + ACTIONS(872), 20, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, anon_sym_while, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, anon_sym_GT_GT, anon_sym_PIPE, anon_sym_PIPE_AMP, anon_sym_QMARK, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [76809] = 11, + ACTIONS(2170), 1, + anon_sym_in, + ACTIONS(2172), 1, + anon_sym_QMARK, + ACTIONS(2174), 1, anon_sym_AMP_AMP, + ACTIONS(2176), 1, anon_sym_PIPE_PIPE, - [76949] = 6, - ACTIONS(794), 2, + ACTIONS(878), 2, sym_concatenating_space, sym__if_else_separator, - ACTIONS(2162), 2, + ACTIONS(2158), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2166), 2, + ACTIONS(2162), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2164), 3, + ACTIONS(2164), 2, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(2160), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2158), 6, + ACTIONS(2156), 6, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(792), 14, + ACTIONS(876), 8, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, anon_sym_while, - anon_sym_in, anon_sym_GT_GT, anon_sym_PIPE, anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [76991] = 4, - ACTIONS(794), 2, + [76861] = 3, + ACTIONS(836), 1, sym_concatenating_space, - sym__if_else_separator, - ACTIONS(2162), 2, - anon_sym_CARET, - anon_sym_STAR_STAR, - ACTIONS(2164), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(792), 22, + ACTIONS(2072), 1, + sym_regex_flags, + ACTIONS(832), 27, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -89113,6 +89284,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PIPE_AMP, anon_sym_QMARK, + anon_sym_CARET, + anon_sym_STAR_STAR, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PLUS, anon_sym_DASH, anon_sym_LT_EQ, @@ -89123,14 +89299,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [77029] = 3, - ACTIONS(794), 2, + [76897] = 4, + ACTIONS(778), 2, sym_concatenating_space, sym__if_else_separator, - ACTIONS(2162), 2, + ACTIONS(2158), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(792), 25, + ACTIONS(2160), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(776), 22, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -89143,9 +89323,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PIPE_AMP, anon_sym_QMARK, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PLUS, anon_sym_DASH, anon_sym_LT_EQ, @@ -89156,113 +89333,115 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [77065] = 5, - ACTIONS(794), 2, + [76935] = 6, + ACTIONS(778), 2, sym_concatenating_space, sym__if_else_separator, - ACTIONS(2162), 2, + ACTIONS(2158), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2166), 2, + ACTIONS(2162), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2164), 3, + ACTIONS(2160), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(792), 20, + ACTIONS(2156), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(776), 14, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, anon_sym_while, anon_sym_in, - anon_sym_LT, - anon_sym_GT, anon_sym_GT_GT, anon_sym_PIPE, anon_sym_PIPE_AMP, anon_sym_QMARK, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, anon_sym_TILDE, anon_sym_BANG_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [77105] = 7, - ACTIONS(852), 2, + [76977] = 8, + ACTIONS(2170), 1, + anon_sym_in, + ACTIONS(778), 2, sym_concatenating_space, sym__if_else_separator, - ACTIONS(2162), 2, + ACTIONS(2158), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2166), 2, + ACTIONS(2162), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2168), 2, + ACTIONS(2164), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2164), 3, + ACTIONS(2160), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2158), 6, + ACTIONS(2156), 6, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(840), 12, + ACTIONS(776), 11, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, anon_sym_while, - anon_sym_in, anon_sym_GT_GT, anon_sym_PIPE, anon_sym_PIPE_AMP, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [77149] = 12, - ACTIONS(1151), 1, + [77023] = 12, + ACTIONS(1155), 1, sym__if_else_separator, - ACTIONS(2076), 1, + ACTIONS(2096), 1, anon_sym_in, - ACTIONS(2080), 1, - anon_sym_QMARK, - ACTIONS(2084), 1, + ACTIONS(2098), 1, anon_sym_AMP_AMP, - ACTIONS(2086), 1, + ACTIONS(2100), 1, + anon_sym_QMARK, + ACTIONS(2102), 1, anon_sym_PIPE_PIPE, - ACTIONS(2070), 2, + ACTIONS(2086), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2074), 2, + ACTIONS(2090), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2082), 2, + ACTIONS(2094), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2134), 2, + ACTIONS(2116), 2, anon_sym_PIPE, anon_sym_PIPE_AMP, - ACTIONS(2072), 3, + ACTIONS(2088), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2078), 6, + ACTIONS(2092), 6, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1149), 7, + ACTIONS(1153), 7, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, @@ -89270,54 +89449,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_case, anon_sym_default, anon_sym_POUND, - [77203] = 5, - ACTIONS(882), 2, - sym_concatenating_space, - sym__if_else_separator, - ACTIONS(2162), 2, - anon_sym_CARET, - anon_sym_STAR_STAR, - ACTIONS(2166), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2164), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(880), 20, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_while, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [77243] = 5, - ACTIONS(652), 1, + [77077] = 4, + ACTIONS(650), 1, anon_sym_COLON_COLON, - ACTIONS(2176), 1, + ACTIONS(2168), 1, anon_sym_LBRACK, - ACTIONS(2178), 1, - anon_sym_LT, - ACTIONS(678), 4, + ACTIONS(688), 5, anon_sym_COLON, + anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_STAR, - ACTIONS(680), 22, + ACTIONS(690), 22, sym_concatenating_space, anon_sym_COMMA, anon_sym_SEMI, @@ -89340,27 +89483,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_RBRACK, - [77283] = 4, - ACTIONS(652), 1, - anon_sym_COLON_COLON, - ACTIONS(2176), 1, + [77115] = 4, + ACTIONS(690), 1, + sym__if_else_separator, + ACTIONS(2038), 1, anon_sym_LBRACK, - ACTIONS(682), 5, - anon_sym_COLON, + ACTIONS(2154), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_STAR, - ACTIONS(684), 22, - sym_concatenating_space, + ACTIONS(688), 26, anon_sym_COMMA, anon_sym_SEMI, - anon_sym_RPAREN, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_while, anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_PIPE, anon_sym_PIPE_AMP, anon_sym_QMARK, anon_sym_CARET, anon_sym_STAR_STAR, + anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_PLUS, @@ -89373,152 +89517,208 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_RBRACK, - [77321] = 12, - ACTIONS(1147), 1, - sym__if_else_separator, - ACTIONS(2076), 1, + [77153] = 9, + ACTIONS(2170), 1, anon_sym_in, - ACTIONS(2080), 1, - anon_sym_QMARK, - ACTIONS(2084), 1, + ACTIONS(2174), 1, anon_sym_AMP_AMP, - ACTIONS(2086), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2070), 2, + ACTIONS(778), 2, + sym_concatenating_space, + sym__if_else_separator, + ACTIONS(2158), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2074), 2, + ACTIONS(2162), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2082), 2, + ACTIONS(2164), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2134), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(2072), 3, + ACTIONS(2160), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2078), 6, + ACTIONS(2156), 6, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1145), 7, + ACTIONS(776), 10, + anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - anon_sym_POUND, - [77375] = 12, - ACTIONS(83), 1, - sym__if_else_separator, - ACTIONS(2076), 1, + anon_sym_while, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_PIPE_PIPE, + [77201] = 12, + ACTIONS(2170), 1, anon_sym_in, - ACTIONS(2080), 1, + ACTIONS(2172), 1, anon_sym_QMARK, - ACTIONS(2084), 1, + ACTIONS(2174), 1, anon_sym_AMP_AMP, - ACTIONS(2086), 1, + ACTIONS(2176), 1, anon_sym_PIPE_PIPE, - ACTIONS(2070), 2, + ACTIONS(864), 2, + sym_concatenating_space, + sym__if_else_separator, + ACTIONS(2104), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(2158), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2074), 2, + ACTIONS(2162), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2082), 2, + ACTIONS(2164), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2134), 2, + ACTIONS(2160), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(848), 6, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_while, + anon_sym_GT_GT, + ACTIONS(2156), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [77255] = 3, + ACTIONS(836), 1, + sym__if_else_separator, + ACTIONS(2076), 1, + sym_regex_flags, + ACTIONS(832), 27, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_while, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, anon_sym_PIPE, anon_sym_PIPE_AMP, - ACTIONS(2072), 3, + anon_sym_QMARK, + anon_sym_CARET, + anon_sym_STAR_STAR, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2078), 6, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [77291] = 3, + ACTIONS(830), 1, + sym__if_else_separator, + ACTIONS(2078), 1, + sym_regex_flags, + ACTIONS(826), 27, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_while, + anon_sym_in, anon_sym_LT, anon_sym_GT, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_CARET, + anon_sym_STAR_STAR, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(41), 7, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [77327] = 4, + ACTIONS(650), 1, + anon_sym_COLON_COLON, + ACTIONS(2058), 1, + anon_sym_LBRACK, + ACTIONS(2178), 1, + anon_sym_LT, + ACTIONS(688), 26, + anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - anon_sym_POUND, - [77429] = 12, - ACTIONS(1155), 1, - sym__if_else_separator, - ACTIONS(2076), 1, + anon_sym_while, anon_sym_in, - ACTIONS(2080), 1, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, anon_sym_QMARK, - ACTIONS(2084), 1, - anon_sym_AMP_AMP, - ACTIONS(2086), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2070), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2074), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2082), 2, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(2134), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(2072), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2078), 6, - anon_sym_LT, - anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1153), 7, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [77365] = 3, + ACTIONS(652), 1, + sym__if_else_separator, + ACTIONS(1311), 1, + sym_concatenating_space, + ACTIONS(642), 27, + anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - anon_sym_POUND, - [77483] = 3, - ACTIONS(2176), 1, - anon_sym_LBRACK, - ACTIONS(678), 4, + anon_sym_while, + anon_sym_in, anon_sym_LT, anon_sym_GT, + anon_sym_GT_GT, anon_sym_PIPE, - anon_sym_STAR, - ACTIONS(680), 23, - sym_concatenating_space, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_in, - anon_sym_COLON, anon_sym_PIPE_AMP, anon_sym_QMARK, anon_sym_CARET, anon_sym_STAR_STAR, + anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_PLUS, @@ -89531,106 +89731,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_RBRACK, - [77518] = 8, - ACTIONS(794), 1, + [77401] = 7, + ACTIONS(882), 2, sym_concatenating_space, - ACTIONS(2180), 1, - anon_sym_in, - ACTIONS(2184), 2, + sym__if_else_separator, + ACTIONS(2158), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2188), 2, + ACTIONS(2162), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2190), 2, + ACTIONS(2164), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2186), 3, + ACTIONS(2160), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2182), 6, + ACTIONS(2156), 6, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(792), 11, + ACTIONS(880), 12, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, anon_sym_while, + anon_sym_in, anon_sym_GT_GT, anon_sym_PIPE, anon_sym_PIPE_AMP, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [77563] = 12, - ACTIONS(866), 1, - sym__if_else_separator, - ACTIONS(2156), 1, - anon_sym_in, - ACTIONS(2160), 1, - anon_sym_QMARK, - ACTIONS(2170), 1, - anon_sym_AMP_AMP, - ACTIONS(2172), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2134), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(2162), 2, - anon_sym_CARET, - anon_sym_STAR_STAR, - ACTIONS(2166), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2168), 2, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(2164), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(854), 6, + [77445] = 4, + ACTIONS(690), 1, + sym_concatenating_space, + ACTIONS(2046), 1, + anon_sym_LBRACK, + ACTIONS(2144), 1, + anon_sym_LT, + ACTIONS(688), 26, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, anon_sym_while, - anon_sym_GT_GT, - ACTIONS(2158), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [77616] = 5, - ACTIONS(652), 1, - anon_sym_COLON_COLON, - ACTIONS(2192), 1, - anon_sym_LT, - ACTIONS(2194), 1, - anon_sym_LBRACK, - ACTIONS(678), 4, - anon_sym_COLON, + anon_sym_in, anon_sym_GT, + anon_sym_GT_GT, anon_sym_PIPE, - anon_sym_STAR, - ACTIONS(680), 21, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_in, anon_sym_PIPE_AMP, anon_sym_QMARK, anon_sym_CARET, anon_sym_STAR_STAR, + anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_PLUS, @@ -89643,23 +89802,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_RBRACK, - [77655] = 4, - ACTIONS(652), 1, - anon_sym_COLON_COLON, - ACTIONS(2194), 1, - anon_sym_LBRACK, - ACTIONS(682), 5, - anon_sym_COLON, + [77483] = 3, + ACTIONS(2180), 1, + sym_regex_flags, + ACTIONS(832), 5, + anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_STAR, - ACTIONS(684), 21, + ACTIONS(836), 22, + sym_concatenating_space, anon_sym_COMMA, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_in, + anon_sym_COLON, anon_sym_PIPE_AMP, anon_sym_QMARK, anon_sym_CARET, @@ -89677,26 +89834,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_RBRACK, - [77692] = 3, - ACTIONS(2054), 1, + [77518] = 3, + ACTIONS(2168), 1, anon_sym_LBRACK, - ACTIONS(2174), 1, + ACTIONS(688), 4, anon_sym_LT, - ACTIONS(678), 26, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_STAR, + ACTIONS(690), 23, + sym_concatenating_space, anon_sym_COMMA, anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_while, + anon_sym_RPAREN, anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, + anon_sym_COLON, anon_sym_PIPE_AMP, anon_sym_QMARK, anon_sym_CARET, anon_sym_STAR_STAR, - anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_PLUS, @@ -89709,25 +89865,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [77727] = 2, - ACTIONS(1377), 1, - sym_concatenating_space, - ACTIONS(644), 27, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_while, + anon_sym_RBRACK, + [77553] = 3, + ACTIONS(2182), 1, + sym_regex_flags, + ACTIONS(826), 5, anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, anon_sym_PIPE, + anon_sym_STAR, + ACTIONS(830), 22, + sym_concatenating_space, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_PIPE_AMP, anon_sym_QMARK, anon_sym_CARET, anon_sym_STAR_STAR, - anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_PLUS, @@ -89740,21 +89897,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [77760] = 3, - ACTIONS(2196), 1, - sym_regex_flags, - ACTIONS(832), 5, - anon_sym_in, + anon_sym_RBRACK, + [77588] = 4, + ACTIONS(650), 1, + anon_sym_COLON_COLON, + ACTIONS(2184), 1, + anon_sym_LBRACK, + ACTIONS(688), 5, + anon_sym_COLON, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_STAR, - ACTIONS(836), 22, - sym_concatenating_space, + ACTIONS(690), 21, anon_sym_COMMA, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_COLON, + anon_sym_in, anon_sym_PIPE_AMP, anon_sym_QMARK, anon_sym_CARET, @@ -89772,18 +89931,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_RBRACK, - [77795] = 4, - ACTIONS(652), 1, + [77625] = 5, + ACTIONS(650), 1, anon_sym_COLON_COLON, - ACTIONS(2194), 1, + ACTIONS(2184), 1, anon_sym_LBRACK, - ACTIONS(678), 5, - anon_sym_COLON, + ACTIONS(2186), 1, anon_sym_LT, + ACTIONS(688), 4, + anon_sym_COLON, anon_sym_GT, anon_sym_PIPE, anon_sym_STAR, - ACTIONS(680), 21, + ACTIONS(690), 21, anon_sym_COMMA, anon_sym_SEMI, anon_sym_RPAREN, @@ -89805,62 +89965,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_RBRACK, - [77832] = 12, - ACTIONS(866), 1, - sym_concatenating_space, - ACTIONS(2180), 1, + [77664] = 12, + ACTIONS(864), 1, + sym__if_else_separator, + ACTIONS(2170), 1, anon_sym_in, - ACTIONS(2198), 1, + ACTIONS(2172), 1, anon_sym_QMARK, - ACTIONS(2200), 1, + ACTIONS(2174), 1, anon_sym_AMP_AMP, - ACTIONS(2202), 1, + ACTIONS(2176), 1, anon_sym_PIPE_PIPE, - ACTIONS(2112), 2, + ACTIONS(2116), 2, anon_sym_PIPE, anon_sym_PIPE_AMP, - ACTIONS(2184), 2, + ACTIONS(2158), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2188), 2, + ACTIONS(2162), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2190), 2, + ACTIONS(2164), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2186), 3, + ACTIONS(2160), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(854), 6, + ACTIONS(848), 6, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, anon_sym_while, anon_sym_GT_GT, - ACTIONS(2182), 6, + ACTIONS(2156), 6, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [77885] = 3, - ACTIONS(2176), 1, + [77717] = 4, + ACTIONS(650), 1, + anon_sym_COLON_COLON, + ACTIONS(2184), 1, anon_sym_LBRACK, - ACTIONS(682), 4, + ACTIONS(692), 5, + anon_sym_COLON, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_STAR, - ACTIONS(684), 23, - sym_concatenating_space, + ACTIONS(694), 21, anon_sym_COMMA, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_in, - anon_sym_COLON, anon_sym_PIPE_AMP, anon_sym_QMARK, anon_sym_CARET, @@ -89878,249 +90039,210 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_RBRACK, - [77920] = 6, - ACTIONS(794), 1, - sym_concatenating_space, - ACTIONS(2184), 2, + [77754] = 11, + ACTIONS(2120), 1, + anon_sym_in, + ACTIONS(2126), 1, + anon_sym_QMARK, + ACTIONS(2130), 1, + anon_sym_AMP_AMP, + ACTIONS(2132), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2106), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2188), 2, + ACTIONS(2110), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2186), 3, + ACTIONS(2128), 2, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(2152), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(2108), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2182), 6, + ACTIONS(2122), 6, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(792), 14, - anon_sym_COMMA, + ACTIONS(41), 7, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, - anon_sym_while, + anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, + anon_sym_POUND, + [77805] = 11, + ACTIONS(2120), 1, anon_sym_in, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, + ACTIONS(2126), 1, anon_sym_QMARK, - anon_sym_TILDE, - anon_sym_BANG_TILDE, + ACTIONS(2130), 1, anon_sym_AMP_AMP, + ACTIONS(2132), 1, anon_sym_PIPE_PIPE, - [77961] = 2, - ACTIONS(2138), 1, - sym_regex_flags, - ACTIONS(832), 27, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_while, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, + ACTIONS(2106), 2, anon_sym_CARET, anon_sym_STAR_STAR, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(2110), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + ACTIONS(2128), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [77994] = 4, - ACTIONS(794), 1, - sym_concatenating_space, - ACTIONS(2184), 2, - anon_sym_CARET, - anon_sym_STAR_STAR, - ACTIONS(2186), 3, + ACTIONS(2152), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(2108), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(792), 22, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_while, - anon_sym_in, + ACTIONS(2122), 6, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [78031] = 4, - ACTIONS(2176), 1, - anon_sym_LBRACK, - ACTIONS(2178), 1, - anon_sym_LT, - ACTIONS(678), 3, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_STAR, - ACTIONS(680), 23, - sym_concatenating_space, - anon_sym_COMMA, + ACTIONS(1141), 7, anon_sym_SEMI, - anon_sym_RPAREN, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, + anon_sym_POUND, + [77856] = 11, + ACTIONS(2120), 1, anon_sym_in, - anon_sym_COLON, - anon_sym_PIPE_AMP, + ACTIONS(2126), 1, anon_sym_QMARK, + ACTIONS(2130), 1, + anon_sym_AMP_AMP, + ACTIONS(2132), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2106), 2, anon_sym_CARET, anon_sym_STAR_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(2110), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + ACTIONS(2128), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_RBRACK, - [78068] = 3, - ACTIONS(794), 1, - sym_concatenating_space, - ACTIONS(2184), 2, - anon_sym_CARET, - anon_sym_STAR_STAR, - ACTIONS(792), 25, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_while, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, + ACTIONS(2152), 2, anon_sym_PIPE, anon_sym_PIPE_AMP, - anon_sym_QMARK, + ACTIONS(2108), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(2122), 6, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [78103] = 2, - ACTIONS(2128), 1, - sym_regex_flags, - ACTIONS(826), 27, - anon_sym_COMMA, + ACTIONS(1129), 7, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, - anon_sym_while, + anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, + anon_sym_POUND, + [77907] = 11, + ACTIONS(2120), 1, anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, + ACTIONS(2126), 1, anon_sym_QMARK, + ACTIONS(2130), 1, + anon_sym_AMP_AMP, + ACTIONS(2132), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2106), 2, anon_sym_CARET, anon_sym_STAR_STAR, + ACTIONS(2110), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2128), 2, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(2152), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(2108), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(2122), 6, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, + ACTIONS(1149), 7, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, + anon_sym_POUND, + [77958] = 11, + ACTIONS(2120), 1, + anon_sym_in, + ACTIONS(2126), 1, + anon_sym_QMARK, + ACTIONS(2130), 1, anon_sym_AMP_AMP, + ACTIONS(2132), 1, anon_sym_PIPE_PIPE, - [78136] = 5, - ACTIONS(882), 1, - sym_concatenating_space, - ACTIONS(2184), 2, + ACTIONS(2106), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2188), 2, + ACTIONS(2110), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2186), 3, + ACTIONS(2128), 2, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(2152), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(2108), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(880), 20, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_while, - anon_sym_in, + ACTIONS(2122), 6, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [78175] = 5, - ACTIONS(794), 1, + ACTIONS(1153), 7, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, + anon_sym_POUND, + [78009] = 2, + ACTIONS(1385), 1, sym_concatenating_space, - ACTIONS(2184), 2, - anon_sym_CARET, - anon_sym_STAR_STAR, - ACTIONS(2188), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2186), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(792), 20, + ACTIONS(642), 27, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -90133,31 +90255,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PIPE_AMP, anon_sym_QMARK, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [78214] = 2, - ACTIONS(690), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_STAR, - ACTIONS(692), 24, - sym_concatenating_space, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_in, - anon_sym_COLON, - anon_sym_PIPE_AMP, - anon_sym_QMARK, anon_sym_CARET, anon_sym_STAR_STAR, + anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_PLUS, @@ -90170,91 +90270,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_LBRACK, - anon_sym_RBRACK, - [78247] = 11, - ACTIONS(2108), 1, + [78042] = 12, + ACTIONS(864), 1, + sym_concatenating_space, + ACTIONS(2188), 1, anon_sym_in, - ACTIONS(2114), 1, + ACTIONS(2192), 1, anon_sym_QMARK, - ACTIONS(2124), 1, + ACTIONS(2202), 1, anon_sym_AMP_AMP, - ACTIONS(2126), 1, + ACTIONS(2204), 1, anon_sym_PIPE_PIPE, - ACTIONS(2116), 2, + ACTIONS(2124), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(2194), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2120), 2, + ACTIONS(2198), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2122), 2, + ACTIONS(2200), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2144), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(2118), 3, + ACTIONS(2196), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2110), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1145), 7, + ACTIONS(848), 6, + anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - anon_sym_POUND, - [78298] = 7, - ACTIONS(852), 1, - sym_concatenating_space, - ACTIONS(2184), 2, - anon_sym_CARET, - anon_sym_STAR_STAR, - ACTIONS(2188), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2190), 2, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(2186), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2182), 6, + anon_sym_while, + anon_sym_GT_GT, + ACTIONS(2190), 6, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(840), 12, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_while, - anon_sym_in, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [78341] = 2, - ACTIONS(690), 4, + [78095] = 2, + ACTIONS(678), 4, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_STAR, - ACTIONS(692), 24, + ACTIONS(680), 24, anon_sym_COMMA, anon_sym_SEMI, anon_sym_RPAREN, @@ -90279,65 +90342,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_LBRACK, anon_sym_RBRACK, - [78374] = 11, - ACTIONS(878), 1, + [78128] = 5, + ACTIONS(874), 1, sym_concatenating_space, - ACTIONS(2180), 1, - anon_sym_in, - ACTIONS(2198), 1, - anon_sym_QMARK, - ACTIONS(2200), 1, - anon_sym_AMP_AMP, - ACTIONS(2202), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2184), 2, + ACTIONS(2194), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2188), 2, + ACTIONS(2198), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2190), 2, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(2186), 3, + ACTIONS(2196), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2182), 6, + ACTIONS(872), 20, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_while, + anon_sym_in, anon_sym_LT, anon_sym_GT, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_QMARK, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(876), 8, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [78167] = 3, + ACTIONS(2058), 1, + anon_sym_LBRACK, + ACTIONS(2178), 1, + anon_sym_LT, + ACTIONS(688), 26, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, anon_sym_while, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - [78425] = 3, - ACTIONS(2204), 1, - sym_regex_flags, - ACTIONS(826), 5, anon_sym_in, - anon_sym_LT, anon_sym_GT, + anon_sym_GT_GT, anon_sym_PIPE, - anon_sym_STAR, - ACTIONS(830), 22, - sym_concatenating_space, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COLON, anon_sym_PIPE_AMP, anon_sym_QMARK, anon_sym_CARET, anon_sym_STAR_STAR, + anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_PLUS, @@ -90350,116 +90408,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_RBRACK, - [78460] = 11, - ACTIONS(2108), 1, + [78202] = 12, + ACTIONS(1073), 1, + anon_sym_COMMA, + ACTIONS(1075), 1, + sym__if_else_separator, + ACTIONS(2170), 1, anon_sym_in, - ACTIONS(2114), 1, + ACTIONS(2172), 1, anon_sym_QMARK, - ACTIONS(2124), 1, + ACTIONS(2174), 1, anon_sym_AMP_AMP, - ACTIONS(2126), 1, + ACTIONS(2176), 1, anon_sym_PIPE_PIPE, - ACTIONS(2116), 2, - anon_sym_CARET, - anon_sym_STAR_STAR, - ACTIONS(2120), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2122), 2, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(2144), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(2118), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2110), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1153), 7, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - anon_sym_POUND, - [78511] = 7, - ACTIONS(870), 1, - sym_concatenating_space, - ACTIONS(2184), 2, + ACTIONS(2158), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2188), 2, + ACTIONS(2162), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2190), 2, + ACTIONS(2164), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2186), 3, + ACTIONS(2160), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2182), 6, + ACTIONS(2156), 6, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(868), 12, - anon_sym_COMMA, + ACTIONS(1071), 7, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, anon_sym_while, - anon_sym_in, anon_sym_GT_GT, anon_sym_PIPE, anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [78554] = 12, + [78255] = 12, ACTIONS(1073), 1, anon_sym_COMMA, - ACTIONS(1075), 1, + ACTIONS(1103), 1, sym__if_else_separator, - ACTIONS(2156), 1, + ACTIONS(2170), 1, anon_sym_in, - ACTIONS(2160), 1, + ACTIONS(2172), 1, anon_sym_QMARK, - ACTIONS(2170), 1, + ACTIONS(2174), 1, anon_sym_AMP_AMP, - ACTIONS(2172), 1, + ACTIONS(2176), 1, anon_sym_PIPE_PIPE, - ACTIONS(2162), 2, + ACTIONS(2158), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2166), 2, + ACTIONS(2162), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2168), 2, + ACTIONS(2164), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2164), 3, + ACTIONS(2160), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2158), 5, + ACTIONS(2156), 5, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1071), 8, + ACTIONS(1101), 8, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, @@ -90468,195 +90490,202 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_PIPE, anon_sym_PIPE_AMP, - [78607] = 11, - ACTIONS(2108), 1, - anon_sym_in, - ACTIONS(2114), 1, - anon_sym_QMARK, - ACTIONS(2124), 1, - anon_sym_AMP_AMP, - ACTIONS(2126), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2116), 2, + [78308] = 7, + ACTIONS(870), 1, + sym_concatenating_space, + ACTIONS(2194), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2120), 2, + ACTIONS(2198), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2122), 2, + ACTIONS(2200), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2144), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(2118), 3, + ACTIONS(2196), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2110), 6, + ACTIONS(2190), 6, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1141), 7, + ACTIONS(868), 12, + anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - anon_sym_POUND, - [78658] = 12, - ACTIONS(1073), 1, - anon_sym_COMMA, - ACTIONS(1087), 1, - sym__if_else_separator, - ACTIONS(2156), 1, + anon_sym_while, anon_sym_in, - ACTIONS(2160), 1, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, anon_sym_QMARK, - ACTIONS(2170), 1, anon_sym_AMP_AMP, - ACTIONS(2172), 1, anon_sym_PIPE_PIPE, - ACTIONS(2162), 2, + [78351] = 5, + ACTIONS(778), 1, + sym_concatenating_space, + ACTIONS(2194), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2166), 2, + ACTIONS(2198), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2168), 2, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(2164), 3, + ACTIONS(2196), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2158), 6, + ACTIONS(776), 20, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_while, + anon_sym_in, anon_sym_LT, anon_sym_GT, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_QMARK, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1085), 7, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [78390] = 3, + ACTIONS(778), 1, + sym_concatenating_space, + ACTIONS(2194), 2, + anon_sym_CARET, + anon_sym_STAR_STAR, + ACTIONS(776), 25, + anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, anon_sym_while, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, anon_sym_GT_GT, anon_sym_PIPE, anon_sym_PIPE_AMP, - [78711] = 11, - ACTIONS(2108), 1, - anon_sym_in, - ACTIONS(2114), 1, anon_sym_QMARK, - ACTIONS(2124), 1, - anon_sym_AMP_AMP, - ACTIONS(2126), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2116), 2, - anon_sym_CARET, - anon_sym_STAR_STAR, - ACTIONS(2120), 2, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2122), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2144), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(2118), 3, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [78425] = 4, + ACTIONS(778), 1, + sym_concatenating_space, + ACTIONS(2194), 2, + anon_sym_CARET, + anon_sym_STAR_STAR, + ACTIONS(2196), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2110), 6, + ACTIONS(776), 22, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_while, + anon_sym_in, anon_sym_LT, anon_sym_GT, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1149), 7, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - anon_sym_POUND, - [78762] = 11, - ACTIONS(2108), 1, - anon_sym_in, - ACTIONS(2114), 1, - anon_sym_QMARK, - ACTIONS(2124), 1, + anon_sym_TILDE, + anon_sym_BANG_TILDE, anon_sym_AMP_AMP, - ACTIONS(2126), 1, anon_sym_PIPE_PIPE, - ACTIONS(2116), 2, + [78462] = 6, + ACTIONS(778), 1, + sym_concatenating_space, + ACTIONS(2194), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2120), 2, + ACTIONS(2198), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2122), 2, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(2144), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(2118), 3, + ACTIONS(2196), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2110), 6, + ACTIONS(2190), 6, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(41), 7, + ACTIONS(776), 14, + anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - anon_sym_POUND, - [78813] = 9, - ACTIONS(794), 1, - sym_concatenating_space, - ACTIONS(2180), 1, + anon_sym_while, anon_sym_in, - ACTIONS(2200), 1, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_TILDE, + anon_sym_BANG_TILDE, anon_sym_AMP_AMP, - ACTIONS(2184), 2, + anon_sym_PIPE_PIPE, + [78503] = 8, + ACTIONS(778), 1, + sym_concatenating_space, + ACTIONS(2188), 1, + anon_sym_in, + ACTIONS(2194), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2188), 2, + ACTIONS(2198), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2190), 2, + ACTIONS(2200), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2186), 3, + ACTIONS(2196), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2182), 6, + ACTIONS(2190), 6, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(792), 10, + ACTIONS(776), 11, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -90666,24 +90695,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PIPE_AMP, anon_sym_QMARK, + anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [78860] = 2, - ACTIONS(722), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_STAR, - ACTIONS(724), 24, - sym_concatenating_space, + [78548] = 2, + ACTIONS(2114), 1, + sym_regex_flags, + ACTIONS(826), 27, anon_sym_COMMA, anon_sym_SEMI, - anon_sym_RPAREN, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_while, anon_sym_in, - anon_sym_COLON, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_PIPE, anon_sym_PIPE_AMP, anon_sym_QMARK, anon_sym_CARET, anon_sym_STAR_STAR, + anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_PLUS, @@ -90696,60 +90728,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_LBRACK, - anon_sym_RBRACK, - [78893] = 9, - ACTIONS(840), 1, - anon_sym_PIPE, - ACTIONS(2210), 1, - anon_sym_STAR, - ACTIONS(2206), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2208), 2, + [78581] = 9, + ACTIONS(778), 1, + sym_concatenating_space, + ACTIONS(2188), 1, + anon_sym_in, + ACTIONS(2202), 1, + anon_sym_AMP_AMP, + ACTIONS(2194), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2212), 2, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2214), 2, + ACTIONS(2198), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2218), 2, + ACTIONS(2200), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2216), 4, + ACTIONS(2196), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2190), 6, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(852), 11, - sym_concatenating_space, + ACTIONS(776), 10, anon_sym_COMMA, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_in, - anon_sym_COLON, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_while, + anon_sym_GT_GT, + anon_sym_PIPE, anon_sym_PIPE_AMP, anon_sym_QMARK, - anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_RBRACK, - [78939] = 3, - ACTIONS(644), 4, + [78628] = 2, + ACTIONS(678), 4, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_STAR, - ACTIONS(654), 6, + ACTIONS(680), 24, sym_concatenating_space, anon_sym_COMMA, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(658), 17, anon_sym_in, + anon_sym_COLON, anon_sym_PIPE_AMP, anon_sym_QMARK, anon_sym_CARET, @@ -90766,74 +90795,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [78973] = 3, - ACTIONS(1477), 1, + anon_sym_LBRACK, + anon_sym_RBRACK, + [78661] = 11, + ACTIONS(878), 1, sym_concatenating_space, - ACTIONS(644), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_STAR, - ACTIONS(658), 22, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_RPAREN, + ACTIONS(2188), 1, anon_sym_in, - anon_sym_COLON, - anon_sym_PIPE_AMP, + ACTIONS(2192), 1, anon_sym_QMARK, + ACTIONS(2202), 1, + anon_sym_AMP_AMP, + ACTIONS(2204), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2194), 2, anon_sym_CARET, anon_sym_STAR_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(2198), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + ACTIONS(2200), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_RBRACK, - [79007] = 2, - ACTIONS(772), 4, + ACTIONS(2196), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2190), 6, anon_sym_LT, anon_sym_GT, - anon_sym_PIPE, - anon_sym_STAR, - ACTIONS(774), 23, - sym_concatenating_space, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(876), 8, anon_sym_COMMA, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_in, - anon_sym_COLON, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_while, + anon_sym_GT_GT, + anon_sym_PIPE, anon_sym_PIPE_AMP, - anon_sym_QMARK, + [78712] = 7, + ACTIONS(882), 1, + sym_concatenating_space, + ACTIONS(2194), 2, anon_sym_CARET, anon_sym_STAR_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(2198), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(2200), 2, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(2196), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2190), 6, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, + ACTIONS(880), 12, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_while, + anon_sym_in, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_RBRACK, - [79039] = 2, - ACTIONS(788), 4, + [78755] = 2, + ACTIONS(720), 4, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_STAR, - ACTIONS(790), 23, + ACTIONS(722), 24, sym_concatenating_space, anon_sym_COMMA, anon_sym_SEMI, @@ -90856,63 +90902,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_LBRACK, anon_sym_RBRACK, - [79071] = 11, - ACTIONS(2180), 1, - anon_sym_in, - ACTIONS(2198), 1, - anon_sym_QMARK, - ACTIONS(2200), 1, - anon_sym_AMP_AMP, - ACTIONS(2202), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2144), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(2184), 2, - anon_sym_CARET, - anon_sym_STAR_STAR, - ACTIONS(2188), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2190), 2, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(2186), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(854), 6, + [78788] = 2, + ACTIONS(2112), 1, + sym_regex_flags, + ACTIONS(832), 27, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, anon_sym_while, - anon_sym_GT_GT, - ACTIONS(2182), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [79121] = 2, - ACTIONS(808), 4, + anon_sym_in, anon_sym_LT, anon_sym_GT, + anon_sym_GT_GT, anon_sym_PIPE, - anon_sym_STAR, - ACTIONS(810), 23, - sym_concatenating_space, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_in, - anon_sym_COLON, anon_sym_PIPE_AMP, anon_sym_QMARK, anon_sym_CARET, anon_sym_STAR_STAR, + anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_PLUS, @@ -90925,17 +90935,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_RBRACK, - [79153] = 4, - ACTIONS(2192), 1, + [78821] = 4, + ACTIONS(2166), 1, anon_sym_LT, - ACTIONS(2194), 1, + ACTIONS(2168), 1, anon_sym_LBRACK, - ACTIONS(678), 3, + ACTIONS(688), 3, anon_sym_GT, anon_sym_PIPE, anon_sym_STAR, - ACTIONS(680), 22, + ACTIONS(690), 23, + sym_concatenating_space, anon_sym_COMMA, anon_sym_SEMI, anon_sym_RPAREN, @@ -90958,19 +90968,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_RBRACK, - [79189] = 3, - ACTIONS(2220), 1, - sym_regex_flags, - ACTIONS(832), 5, - anon_sym_in, + [78858] = 3, + ACTIONS(2168), 1, + anon_sym_LBRACK, + ACTIONS(692), 4, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_STAR, - ACTIONS(836), 21, + ACTIONS(694), 23, + sym_concatenating_space, anon_sym_COMMA, anon_sym_SEMI, anon_sym_RPAREN, + anon_sym_in, anon_sym_COLON, anon_sym_PIPE_AMP, anon_sym_QMARK, @@ -90989,48 +91000,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_RBRACK, - [79223] = 6, - ACTIONS(2210), 1, + [78893] = 10, + ACTIONS(776), 1, + anon_sym_PIPE, + ACTIONS(2206), 1, + anon_sym_in, + ACTIONS(2212), 1, anon_sym_STAR, ACTIONS(2208), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2210), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2212), 2, + ACTIONS(2214), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2214), 2, + ACTIONS(2216), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(880), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - ACTIONS(882), 17, + ACTIONS(2220), 2, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(2218), 4, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(778), 10, sym_concatenating_space, anon_sym_COMMA, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_in, anon_sym_COLON, anon_sym_PIPE_AMP, anon_sym_QMARK, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_RBRACK, - [79263] = 2, - ACTIONS(816), 4, + [78941] = 2, + ACTIONS(720), 4, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_STAR, - ACTIONS(818), 23, - sym_concatenating_space, + ACTIONS(722), 23, anon_sym_COMMA, anon_sym_SEMI, anon_sym_RPAREN, @@ -91052,75 +91066,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_RBRACK, - [79295] = 3, - ACTIONS(2194), 1, anon_sym_LBRACK, - ACTIONS(682), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, + anon_sym_RBRACK, + [78973] = 6, + ACTIONS(2212), 1, anon_sym_STAR, - ACTIONS(684), 22, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_in, - anon_sym_COLON, - anon_sym_PIPE_AMP, - anon_sym_QMARK, + ACTIONS(2210), 2, anon_sym_CARET, anon_sym_STAR_STAR, + ACTIONS(2214), 2, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(2216), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_RBRACK, - [79329] = 2, - ACTIONS(800), 12, - anon_sym_BEGIN, - anon_sym_END, - anon_sym_BEGINFILE, - anon_sym_ENDFILE, - anon_sym_getline, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - anon_sym_function, - anon_sym_func, - ACTIONS(802), 15, - ts_builtin_sym_end, - anon_sym_ATinclude, - anon_sym_ATload, - anon_sym_ATnamespace, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_SLASH, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [79361] = 2, - ACTIONS(820), 4, + ACTIONS(776), 3, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_STAR, - ACTIONS(822), 23, + ACTIONS(778), 17, sym_concatenating_space, anon_sym_COMMA, anon_sym_SEMI, @@ -91129,12 +91093,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_PIPE_AMP, anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, @@ -91144,58 +91102,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_RBRACK, - [79393] = 11, - ACTIONS(1073), 1, - anon_sym_COMMA, - ACTIONS(2180), 1, - anon_sym_in, - ACTIONS(2198), 1, - anon_sym_QMARK, - ACTIONS(2200), 1, - anon_sym_AMP_AMP, - ACTIONS(2202), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2184), 2, - anon_sym_CARET, - anon_sym_STAR_STAR, - ACTIONS(2188), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2190), 2, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(2186), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2182), 5, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1071), 8, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_while, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - [79443] = 3, - ACTIONS(2222), 1, - sym_regex_flags, - ACTIONS(826), 5, - anon_sym_in, + [79013] = 2, + ACTIONS(772), 4, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_STAR, - ACTIONS(830), 21, + ACTIONS(774), 23, + sym_concatenating_space, anon_sym_COMMA, anon_sym_SEMI, anon_sym_RPAREN, + anon_sym_in, anon_sym_COLON, anon_sym_PIPE_AMP, anon_sym_QMARK, @@ -91214,43 +91132,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_RBRACK, - [79477] = 2, - ACTIONS(1839), 13, - anon_sym_BEGIN, - anon_sym_END, - anon_sym_BEGINFILE, - anon_sym_ENDFILE, - anon_sym_while, - anon_sym_getline, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - anon_sym_function, - anon_sym_func, - ACTIONS(1841), 14, - ts_builtin_sym_end, - anon_sym_ATinclude, - anon_sym_ATload, - anon_sym_ATnamespace, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_SLASH, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [79509] = 2, - ACTIONS(682), 4, + [79045] = 2, + ACTIONS(764), 4, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_STAR, - ACTIONS(684), 23, + ACTIONS(766), 23, sym_concatenating_space, anon_sym_COMMA, anon_sym_SEMI, @@ -91274,13 +91162,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_RBRACK, - [79541] = 2, - ACTIONS(768), 4, + [79077] = 9, + ACTIONS(868), 1, + anon_sym_PIPE, + ACTIONS(2212), 1, + anon_sym_STAR, + ACTIONS(2208), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2210), 2, + anon_sym_CARET, + anon_sym_STAR_STAR, + ACTIONS(2214), 2, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2216), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2220), 2, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(2218), 4, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(870), 11, + sym_concatenating_space, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_in, + anon_sym_COLON, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_RBRACK, + [79123] = 2, + ACTIONS(786), 4, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_STAR, - ACTIONS(770), 23, + ACTIONS(788), 23, sym_concatenating_space, anon_sym_COMMA, anon_sym_SEMI, @@ -91304,14 +91229,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_RBRACK, - [79573] = 2, - ACTIONS(796), 4, + [79155] = 3, + ACTIONS(1485), 1, + sym_concatenating_space, + ACTIONS(642), 4, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_STAR, - ACTIONS(798), 23, - sym_concatenating_space, + ACTIONS(652), 22, anon_sym_COMMA, anon_sym_SEMI, anon_sym_RPAREN, @@ -91334,13 +91260,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_RBRACK, - [79605] = 2, - ACTIONS(1843), 13, + [79189] = 2, + ACTIONS(816), 12, anon_sym_BEGIN, anon_sym_END, anon_sym_BEGINFILE, anon_sym_ENDFILE, - anon_sym_while, anon_sym_getline, anon_sym_PLUS, anon_sym_DASH, @@ -91349,13 +91274,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, anon_sym_function, anon_sym_func, - ACTIONS(1845), 14, + ACTIONS(818), 15, ts_builtin_sym_end, anon_sym_ATinclude, anon_sym_ATload, anon_sym_ATnamespace, anon_sym_LPAREN, anon_sym_LBRACE, + anon_sym_COLON, anon_sym_SLASH, anon_sym_BANG, anon_sym_PLUS_PLUS, @@ -91364,43 +91290,131 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [79637] = 2, - ACTIONS(812), 12, - anon_sym_BEGIN, - anon_sym_END, - anon_sym_BEGINFILE, - anon_sym_ENDFILE, - anon_sym_getline, + [79221] = 14, + ACTIONS(2206), 1, + anon_sym_in, + ACTIONS(2212), 1, + anon_sym_STAR, + ACTIONS(2222), 1, + anon_sym_PIPE, + ACTIONS(2224), 1, + anon_sym_PIPE_AMP, + ACTIONS(2226), 1, + anon_sym_QMARK, + ACTIONS(2228), 1, + anon_sym_AMP_AMP, + ACTIONS(2230), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2208), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2210), 2, + anon_sym_CARET, + anon_sym_STAR_STAR, + ACTIONS(2214), 2, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2216), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - anon_sym_function, - anon_sym_func, - ACTIONS(814), 15, - ts_builtin_sym_end, - anon_sym_ATinclude, - anon_sym_ATload, - anon_sym_ATnamespace, - anon_sym_LPAREN, - anon_sym_LBRACE, + ACTIONS(2220), 2, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(2218), 4, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(864), 6, + sym_concatenating_space, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_COLON, + anon_sym_RBRACK, + [79277] = 9, + ACTIONS(880), 1, + anon_sym_PIPE, + ACTIONS(2212), 1, + anon_sym_STAR, + ACTIONS(2208), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2210), 2, + anon_sym_CARET, + anon_sym_STAR_STAR, + ACTIONS(2214), 2, anon_sym_SLASH, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [79669] = 2, - ACTIONS(750), 4, + anon_sym_PERCENT, + ACTIONS(2216), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2220), 2, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(2218), 4, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(882), 11, + sym_concatenating_space, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_in, + anon_sym_COLON, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_RBRACK, + [79323] = 11, + ACTIONS(2188), 1, + anon_sym_in, + ACTIONS(2192), 1, + anon_sym_QMARK, + ACTIONS(2202), 1, + anon_sym_AMP_AMP, + ACTIONS(2204), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2152), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(2194), 2, + anon_sym_CARET, + anon_sym_STAR_STAR, + ACTIONS(2198), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2200), 2, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(2196), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(848), 6, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_while, + anon_sym_GT_GT, + ACTIONS(2190), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [79373] = 2, + ACTIONS(768), 4, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_STAR, - ACTIONS(752), 23, + ACTIONS(770), 23, sym_concatenating_space, anon_sym_COMMA, anon_sym_SEMI, @@ -91424,87 +91438,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_RBRACK, - [79701] = 14, - ACTIONS(2210), 1, - anon_sym_STAR, - ACTIONS(2224), 1, + [79405] = 13, + ACTIONS(876), 1, + anon_sym_PIPE, + ACTIONS(2206), 1, anon_sym_in, + ACTIONS(2212), 1, + anon_sym_STAR, ACTIONS(2226), 1, - anon_sym_PIPE, - ACTIONS(2228), 1, - anon_sym_PIPE_AMP, - ACTIONS(2230), 1, anon_sym_QMARK, - ACTIONS(2232), 1, + ACTIONS(2228), 1, anon_sym_AMP_AMP, - ACTIONS(2234), 1, + ACTIONS(2230), 1, anon_sym_PIPE_PIPE, - ACTIONS(2206), 2, + ACTIONS(2208), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2208), 2, + ACTIONS(2210), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2212), 2, + ACTIONS(2214), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2214), 2, + ACTIONS(2216), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2218), 2, + ACTIONS(2220), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2216), 4, + ACTIONS(2218), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(866), 6, + ACTIONS(878), 7, sym_concatenating_space, anon_sym_COMMA, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_COLON, + anon_sym_PIPE_AMP, anon_sym_RBRACK, - [79757] = 4, - ACTIONS(13), 1, - anon_sym_LBRACE, - STATE(1549), 1, - sym_block, - ACTIONS(2238), 12, - anon_sym_BEGIN, - anon_sym_END, - anon_sym_BEGINFILE, - anon_sym_ENDFILE, - anon_sym_getline, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - anon_sym_function, - anon_sym_func, - ACTIONS(2236), 13, - ts_builtin_sym_end, - anon_sym_ATinclude, - anon_sym_ATload, - anon_sym_ATnamespace, - anon_sym_LPAREN, - anon_sym_SLASH, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [79793] = 2, - ACTIONS(784), 4, + [79459] = 2, + ACTIONS(790), 4, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_STAR, - ACTIONS(786), 23, + ACTIONS(792), 23, sym_concatenating_space, anon_sym_COMMA, anon_sym_SEMI, @@ -91528,7 +91509,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_RBRACK, - [79825] = 2, + [79491] = 2, ACTIONS(780), 4, anon_sym_LT, anon_sym_GT, @@ -91558,13 +91539,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_RBRACK, - [79857] = 2, - ACTIONS(722), 4, + [79523] = 2, + ACTIONS(746), 4, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_STAR, - ACTIONS(724), 23, + ACTIONS(748), 23, + sym_concatenating_space, anon_sym_COMMA, anon_sym_SEMI, anon_sym_RPAREN, @@ -91586,25 +91568,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_LBRACK, anon_sym_RBRACK, - [79889] = 6, - ACTIONS(2210), 1, + [79555] = 3, + ACTIONS(642), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, anon_sym_STAR, - ACTIONS(2208), 2, + ACTIONS(658), 6, + sym_concatenating_space, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(652), 17, + anon_sym_in, + anon_sym_PIPE_AMP, + anon_sym_QMARK, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2212), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2214), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(792), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [79589] = 2, + ACTIONS(742), 4, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - ACTIONS(794), 17, + anon_sym_STAR, + ACTIONS(744), 23, sym_concatenating_space, anon_sym_COMMA, anon_sym_SEMI, @@ -91613,6 +91615,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_PIPE_AMP, anon_sym_QMARK, + anon_sym_CARET, + anon_sym_STAR_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, @@ -91622,18 +91630,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_RBRACK, - [79929] = 2, - ACTIONS(792), 4, + [79621] = 3, + ACTIONS(2232), 1, + sym_regex_flags, + ACTIONS(826), 5, + anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_STAR, - ACTIONS(794), 23, - sym_concatenating_space, + ACTIONS(830), 21, anon_sym_COMMA, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_in, anon_sym_COLON, anon_sym_PIPE_AMP, anon_sym_QMARK, @@ -91652,16 +91661,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_RBRACK, - [79961] = 3, - ACTIONS(2208), 2, - anon_sym_CARET, - anon_sym_STAR_STAR, - ACTIONS(792), 4, + [79655] = 2, + ACTIONS(750), 4, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_STAR, - ACTIONS(794), 21, + ACTIONS(752), 23, sym_concatenating_space, anon_sym_COMMA, anon_sym_SEMI, @@ -91670,6 +91676,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_PIPE_AMP, anon_sym_QMARK, + anon_sym_CARET, + anon_sym_STAR_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_PLUS, @@ -91683,14 +91691,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_RBRACK, - [79995] = 2, - ACTIONS(776), 4, + [79687] = 3, + ACTIONS(2184), 1, + anon_sym_LBRACK, + ACTIONS(688), 4, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_STAR, - ACTIONS(778), 23, - sym_concatenating_space, + ACTIONS(690), 22, anon_sym_COMMA, anon_sym_SEMI, anon_sym_RPAREN, @@ -91713,20 +91722,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_RBRACK, - [80027] = 5, - ACTIONS(2210), 1, + [79721] = 2, + ACTIONS(754), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, anon_sym_STAR, - ACTIONS(2208), 2, + ACTIONS(756), 23, + sym_concatenating_space, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_in, + anon_sym_COLON, + anon_sym_PIPE_AMP, + anon_sym_QMARK, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2212), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(792), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_RBRACK, + [79753] = 2, + ACTIONS(692), 4, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - ACTIONS(794), 19, + anon_sym_STAR, + ACTIONS(694), 23, sym_concatenating_space, anon_sym_COMMA, anon_sym_SEMI, @@ -91735,6 +91767,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_PIPE_AMP, anon_sym_QMARK, + anon_sym_CARET, + anon_sym_STAR_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PLUS, anon_sym_DASH, anon_sym_LT_EQ, @@ -91746,29 +91782,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_RBRACK, - [80065] = 8, - ACTIONS(792), 1, + [79785] = 8, + ACTIONS(776), 1, anon_sym_PIPE, - ACTIONS(2210), 1, + ACTIONS(2212), 1, anon_sym_STAR, - ACTIONS(2206), 2, + ACTIONS(2208), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2208), 2, + ACTIONS(2210), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2212), 2, + ACTIONS(2214), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2214), 2, + ACTIONS(2216), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2216), 4, + ACTIONS(2218), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(794), 13, + ACTIONS(778), 13, sym_concatenating_space, anon_sym_COMMA, anon_sym_SEMI, @@ -91782,92 +91818,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_RBRACK, - [80109] = 10, - ACTIONS(792), 1, + [79829] = 4, + ACTIONS(2184), 1, + anon_sym_LBRACK, + ACTIONS(2186), 1, + anon_sym_LT, + ACTIONS(688), 3, + anon_sym_GT, anon_sym_PIPE, - ACTIONS(2210), 1, anon_sym_STAR, - ACTIONS(2224), 1, + ACTIONS(690), 22, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_in, - ACTIONS(2206), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2208), 2, + anon_sym_COLON, + anon_sym_PIPE_AMP, + anon_sym_QMARK, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2212), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2214), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2218), 2, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(2216), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(794), 10, - sym_concatenating_space, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_PIPE_AMP, - anon_sym_QMARK, + anon_sym_TILDE, + anon_sym_BANG_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_RBRACK, - [80157] = 11, - ACTIONS(792), 1, - anon_sym_PIPE, - ACTIONS(2210), 1, - anon_sym_STAR, - ACTIONS(2224), 1, + [79865] = 3, + ACTIONS(2234), 1, + sym_regex_flags, + ACTIONS(832), 5, anon_sym_in, - ACTIONS(2232), 1, - anon_sym_AMP_AMP, - ACTIONS(2206), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2208), 2, + anon_sym_PIPE, + anon_sym_STAR, + ACTIONS(836), 21, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_PIPE_AMP, + anon_sym_QMARK, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2212), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2214), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2218), 2, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(2216), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(794), 9, - sym_concatenating_space, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_PIPE_AMP, - anon_sym_QMARK, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_RBRACK, - [80207] = 3, - ACTIONS(2194), 1, - anon_sym_LBRACK, - ACTIONS(678), 4, + [79899] = 6, + ACTIONS(2212), 1, + anon_sym_STAR, + ACTIONS(2210), 2, + anon_sym_CARET, + anon_sym_STAR_STAR, + ACTIONS(2214), 2, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2216), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(872), 3, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_STAR, - ACTIONS(680), 22, + ACTIONS(874), 17, + sym_concatenating_space, anon_sym_COMMA, anon_sym_SEMI, anon_sym_RPAREN, @@ -91875,12 +91906,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_PIPE_AMP, anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, @@ -91890,13 +91915,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_RBRACK, - [80241] = 2, - ACTIONS(812), 4, + [79939] = 2, + ACTIONS(794), 4, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_STAR, - ACTIONS(814), 23, + ACTIONS(796), 23, sym_concatenating_space, anon_sym_COMMA, anon_sym_SEMI, @@ -91920,13 +91945,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_RBRACK, - [80273] = 2, - ACTIONS(760), 4, + [79971] = 2, + ACTIONS(812), 4, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_STAR, - ACTIONS(762), 23, + ACTIONS(814), 23, sym_concatenating_space, anon_sym_COMMA, anon_sym_SEMI, @@ -91950,13 +91975,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_RBRACK, - [80305] = 2, - ACTIONS(804), 4, + [80003] = 2, + ACTIONS(776), 4, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_STAR, - ACTIONS(806), 23, + ACTIONS(778), 23, sym_concatenating_space, anon_sym_COMMA, anon_sym_SEMI, @@ -91980,38 +92005,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_RBRACK, - [80337] = 11, + [80035] = 11, ACTIONS(1073), 1, anon_sym_COMMA, - ACTIONS(2180), 1, + ACTIONS(2188), 1, anon_sym_in, - ACTIONS(2198), 1, + ACTIONS(2192), 1, anon_sym_QMARK, - ACTIONS(2200), 1, - anon_sym_AMP_AMP, ACTIONS(2202), 1, + anon_sym_AMP_AMP, + ACTIONS(2204), 1, anon_sym_PIPE_PIPE, - ACTIONS(2184), 2, + ACTIONS(2194), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2188), 2, + ACTIONS(2198), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2190), 2, + ACTIONS(2200), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2186), 3, + ACTIONS(2196), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2182), 6, + ACTIONS(2190), 6, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1085), 7, + ACTIONS(1071), 7, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, @@ -92019,13 +92044,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_PIPE, anon_sym_PIPE_AMP, - [80387] = 2, - ACTIONS(746), 4, + [80085] = 11, + ACTIONS(776), 1, + anon_sym_PIPE, + ACTIONS(2206), 1, + anon_sym_in, + ACTIONS(2212), 1, + anon_sym_STAR, + ACTIONS(2228), 1, + anon_sym_AMP_AMP, + ACTIONS(2208), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2210), 2, + anon_sym_CARET, + anon_sym_STAR_STAR, + ACTIONS(2214), 2, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2216), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2220), 2, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(2218), 4, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(778), 9, + sym_concatenating_space, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_PIPE_PIPE, + anon_sym_RBRACK, + [80135] = 2, + ACTIONS(798), 4, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_STAR, - ACTIONS(748), 23, + ACTIONS(800), 23, sym_concatenating_space, anon_sym_COMMA, anon_sym_SEMI, @@ -92049,13 +92113,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_RBRACK, - [80419] = 2, - ACTIONS(800), 4, + [80167] = 3, + ACTIONS(2210), 2, + anon_sym_CARET, + anon_sym_STAR_STAR, + ACTIONS(776), 4, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_STAR, - ACTIONS(802), 23, + ACTIONS(778), 21, sym_concatenating_space, anon_sym_COMMA, anon_sym_SEMI, @@ -92064,10 +92131,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_PIPE_AMP, anon_sym_QMARK, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_RBRACK, + [80201] = 5, + ACTIONS(2212), 1, + anon_sym_STAR, + ACTIONS(2210), 2, anon_sym_CARET, anon_sym_STAR_STAR, + ACTIONS(2214), 2, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(776), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + ACTIONS(778), 19, + sym_concatenating_space, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_in, + anon_sym_COLON, + anon_sym_PIPE_AMP, + anon_sym_QMARK, anon_sym_PLUS, anon_sym_DASH, anon_sym_LT_EQ, @@ -92079,73 +92177,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_RBRACK, - [80451] = 13, - ACTIONS(876), 1, - anon_sym_PIPE, - ACTIONS(2210), 1, - anon_sym_STAR, - ACTIONS(2224), 1, + [80239] = 4, + ACTIONS(13), 1, + anon_sym_LBRACE, + STATE(1566), 1, + sym_block, + ACTIONS(2238), 12, + anon_sym_BEGIN, + anon_sym_END, + anon_sym_BEGINFILE, + anon_sym_ENDFILE, + anon_sym_getline, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AT, + sym_identifier, + aux_sym_number_token1, + anon_sym_function, + anon_sym_func, + ACTIONS(2236), 13, + ts_builtin_sym_end, + anon_sym_ATinclude, + anon_sym_ATload, + anon_sym_ATnamespace, + anon_sym_LPAREN, + anon_sym_SLASH, + anon_sym_BANG, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_DOLLAR, + aux_sym_number_token2, + anon_sym_DQUOTE, + anon_sym_POUND, + [80275] = 11, + ACTIONS(1073), 1, + anon_sym_COMMA, + ACTIONS(2188), 1, anon_sym_in, - ACTIONS(2230), 1, + ACTIONS(2192), 1, anon_sym_QMARK, - ACTIONS(2232), 1, + ACTIONS(2202), 1, anon_sym_AMP_AMP, - ACTIONS(2234), 1, + ACTIONS(2204), 1, anon_sym_PIPE_PIPE, - ACTIONS(2206), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2208), 2, + ACTIONS(2194), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2212), 2, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2214), 2, + ACTIONS(2198), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2218), 2, + ACTIONS(2200), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2216), 4, + ACTIONS(2196), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2190), 5, + anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(878), 7, - sym_concatenating_space, - anon_sym_COMMA, + ACTIONS(1101), 8, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - [80505] = 9, - ACTIONS(868), 1, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_while, + anon_sym_GT, + anon_sym_GT_GT, anon_sym_PIPE, - ACTIONS(2210), 1, - anon_sym_STAR, - ACTIONS(2206), 2, + anon_sym_PIPE_AMP, + [80325] = 2, + ACTIONS(816), 4, anon_sym_LT, anon_sym_GT, - ACTIONS(2208), 2, - anon_sym_CARET, - anon_sym_STAR_STAR, - ACTIONS(2212), 2, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2214), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2218), 2, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(2216), 4, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(870), 11, + anon_sym_PIPE, + anon_sym_STAR, + ACTIONS(818), 23, sym_concatenating_space, anon_sym_COMMA, anon_sym_SEMI, @@ -92154,57 +92263,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_PIPE_AMP, anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_RBRACK, - [80551] = 14, - ACTIONS(2210), 1, - anon_sym_STAR, - ACTIONS(2224), 1, - anon_sym_in, - ACTIONS(2230), 1, - anon_sym_QMARK, - ACTIONS(2232), 1, - anon_sym_AMP_AMP, - ACTIONS(2234), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2240), 1, - anon_sym_PIPE, - ACTIONS(2242), 1, - anon_sym_PIPE_AMP, - ACTIONS(2206), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2208), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2212), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2214), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2218), 2, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(2216), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(866), 5, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COLON, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_RBRACK, - [80606] = 2, - ACTIONS(816), 4, + [80357] = 2, + ACTIONS(1815), 13, + anon_sym_BEGIN, + anon_sym_END, + anon_sym_BEGINFILE, + anon_sym_ENDFILE, + anon_sym_while, + anon_sym_getline, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AT, + sym_identifier, + aux_sym_number_token1, + anon_sym_function, + anon_sym_func, + ACTIONS(1817), 14, + ts_builtin_sym_end, + anon_sym_ATinclude, + anon_sym_ATload, + anon_sym_ATnamespace, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_SLASH, + anon_sym_BANG, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_DOLLAR, + aux_sym_number_token2, + anon_sym_DQUOTE, + anon_sym_POUND, + [80389] = 2, + ACTIONS(738), 4, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_STAR, - ACTIONS(818), 22, + ACTIONS(740), 23, + sym_concatenating_space, anon_sym_COMMA, anon_sym_SEMI, anon_sym_RPAREN, @@ -92227,13 +92338,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_RBRACK, - [80637] = 2, - ACTIONS(750), 4, + [80421] = 2, + ACTIONS(758), 4, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_STAR, - ACTIONS(752), 22, + ACTIONS(760), 23, + sym_concatenating_space, anon_sym_COMMA, anon_sym_SEMI, anon_sym_RPAREN, @@ -92256,8 +92368,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_RBRACK, - [80668] = 2, - ACTIONS(2246), 12, + [80453] = 2, + ACTIONS(812), 12, anon_sym_BEGIN, anon_sym_END, anon_sym_BEGINFILE, @@ -92270,13 +92382,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, anon_sym_function, anon_sym_func, - ACTIONS(2244), 14, + ACTIONS(814), 15, ts_builtin_sym_end, anon_sym_ATinclude, anon_sym_ATload, anon_sym_ATnamespace, anon_sym_LPAREN, anon_sym_LBRACE, + anon_sym_COLON, anon_sym_SLASH, anon_sym_BANG, anon_sym_PLUS_PLUS, @@ -92285,52 +92398,74 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [80699] = 12, - ACTIONS(83), 1, - sym__if_else_separator, - ACTIONS(2156), 1, - anon_sym_in, - ACTIONS(2160), 1, - anon_sym_QMARK, - ACTIONS(2170), 1, - anon_sym_AMP_AMP, - ACTIONS(2172), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2134), 2, + [80485] = 2, + ACTIONS(1843), 13, + anon_sym_BEGIN, + anon_sym_END, + anon_sym_BEGINFILE, + anon_sym_ENDFILE, + anon_sym_while, + anon_sym_getline, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AT, + sym_identifier, + aux_sym_number_token1, + anon_sym_function, + anon_sym_func, + ACTIONS(1845), 14, + ts_builtin_sym_end, + anon_sym_ATinclude, + anon_sym_ATload, + anon_sym_ATnamespace, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_SLASH, + anon_sym_BANG, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_DOLLAR, + aux_sym_number_token2, + anon_sym_DQUOTE, + anon_sym_POUND, + [80517] = 3, + ACTIONS(2184), 1, + anon_sym_LBRACK, + ACTIONS(692), 4, + anon_sym_LT, + anon_sym_GT, anon_sym_PIPE, + anon_sym_STAR, + ACTIONS(694), 22, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_in, + anon_sym_COLON, anon_sym_PIPE_AMP, - ACTIONS(2162), 2, + anon_sym_QMARK, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2166), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2168), 2, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(2164), 3, - anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(41), 4, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_while, - ACTIONS(2158), 6, - anon_sym_LT, - anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [80750] = 2, - ACTIONS(776), 4, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_RBRACK, + [80551] = 2, + ACTIONS(692), 4, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_STAR, - ACTIONS(778), 22, + ACTIONS(694), 22, anon_sym_COMMA, anon_sym_SEMI, anon_sym_RPAREN, @@ -92353,8 +92488,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_RBRACK, - [80781] = 2, - ACTIONS(2250), 12, + [80582] = 12, + ACTIONS(1131), 1, + sym__if_else_separator, + ACTIONS(2170), 1, + anon_sym_in, + ACTIONS(2172), 1, + anon_sym_QMARK, + ACTIONS(2174), 1, + anon_sym_AMP_AMP, + ACTIONS(2176), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2116), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(2158), 2, + anon_sym_CARET, + anon_sym_STAR_STAR, + ACTIONS(2162), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2164), 2, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(2160), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1129), 4, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_while, + ACTIONS(2156), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [80633] = 2, + ACTIONS(2238), 12, anon_sym_BEGIN, anon_sym_END, anon_sym_BEGINFILE, @@ -92367,7 +92541,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, anon_sym_function, anon_sym_func, - ACTIONS(2248), 14, + ACTIONS(2236), 14, ts_builtin_sym_end, anon_sym_ATinclude, anon_sym_ATload, @@ -92382,8 +92556,37 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [80812] = 2, - ACTIONS(2254), 12, + [80664] = 2, + ACTIONS(750), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_STAR, + ACTIONS(752), 22, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_in, + anon_sym_COLON, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_CARET, + anon_sym_STAR_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_RBRACK, + [80695] = 2, + ACTIONS(2242), 12, anon_sym_BEGIN, anon_sym_END, anon_sym_BEGINFILE, @@ -92396,7 +92599,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, anon_sym_function, anon_sym_func, - ACTIONS(2252), 14, + ACTIONS(2240), 14, ts_builtin_sym_end, anon_sym_ATinclude, anon_sym_ATload, @@ -92411,13 +92614,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [80843] = 2, - ACTIONS(682), 4, + [80726] = 2, + ACTIONS(754), 4, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_STAR, - ACTIONS(684), 22, + ACTIONS(756), 22, anon_sym_COMMA, anon_sym_SEMI, anon_sym_RPAREN, @@ -92440,13 +92643,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_RBRACK, - [80874] = 2, - ACTIONS(804), 4, + [80757] = 2, + ACTIONS(742), 4, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_STAR, - ACTIONS(806), 22, + ACTIONS(744), 22, anon_sym_COMMA, anon_sym_SEMI, anon_sym_RPAREN, @@ -92469,7 +92672,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_RBRACK, - [80905] = 2, + [80788] = 12, + ACTIONS(1155), 1, + sym__if_else_separator, + ACTIONS(2170), 1, + anon_sym_in, + ACTIONS(2172), 1, + anon_sym_QMARK, + ACTIONS(2174), 1, + anon_sym_AMP_AMP, + ACTIONS(2176), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2116), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(2158), 2, + anon_sym_CARET, + anon_sym_STAR_STAR, + ACTIONS(2162), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2164), 2, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(2160), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1153), 4, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_while, + ACTIONS(2156), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [80839] = 2, ACTIONS(780), 4, anon_sym_LT, anon_sym_GT, @@ -92498,30 +92740,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_RBRACK, - [80936] = 12, + [80870] = 12, ACTIONS(1151), 1, sym__if_else_separator, - ACTIONS(2156), 1, + ACTIONS(2170), 1, anon_sym_in, - ACTIONS(2160), 1, + ACTIONS(2172), 1, anon_sym_QMARK, - ACTIONS(2170), 1, + ACTIONS(2174), 1, anon_sym_AMP_AMP, - ACTIONS(2172), 1, + ACTIONS(2176), 1, anon_sym_PIPE_PIPE, - ACTIONS(2134), 2, + ACTIONS(2116), 2, anon_sym_PIPE, anon_sym_PIPE_AMP, - ACTIONS(2162), 2, + ACTIONS(2158), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2166), 2, + ACTIONS(2162), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2168), 2, + ACTIONS(2164), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2164), 3, + ACTIONS(2160), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -92530,15 +92772,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LF, anon_sym_CR_LF, anon_sym_while, - ACTIONS(2158), 6, + ACTIONS(2156), 6, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [80987] = 2, - ACTIONS(2238), 12, + [80921] = 2, + ACTIONS(2246), 12, anon_sym_BEGIN, anon_sym_END, anon_sym_BEGINFILE, @@ -92551,7 +92793,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, anon_sym_function, anon_sym_func, - ACTIONS(2236), 14, + ACTIONS(2244), 14, ts_builtin_sym_end, anon_sym_ATinclude, anon_sym_ATload, @@ -92566,76 +92808,37 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [81018] = 12, - ACTIONS(1143), 1, - sym__if_else_separator, - ACTIONS(2156), 1, - anon_sym_in, - ACTIONS(2160), 1, - anon_sym_QMARK, - ACTIONS(2170), 1, - anon_sym_AMP_AMP, - ACTIONS(2172), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2134), 2, + [80952] = 2, + ACTIONS(738), 4, + anon_sym_LT, + anon_sym_GT, anon_sym_PIPE, + anon_sym_STAR, + ACTIONS(740), 22, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_in, + anon_sym_COLON, anon_sym_PIPE_AMP, - ACTIONS(2162), 2, + anon_sym_QMARK, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2166), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2168), 2, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(2164), 3, - anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1141), 4, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_while, - ACTIONS(2158), 6, - anon_sym_LT, - anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [81069] = 2, - ACTIONS(2258), 12, - anon_sym_BEGIN, - anon_sym_END, - anon_sym_BEGINFILE, - anon_sym_ENDFILE, - anon_sym_getline, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AT, - sym_identifier, - aux_sym_number_token1, - anon_sym_function, - anon_sym_func, - ACTIONS(2256), 14, - ts_builtin_sym_end, - anon_sym_ATinclude, - anon_sym_ATload, - anon_sym_ATnamespace, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_SLASH, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR, - aux_sym_number_token2, - anon_sym_DQUOTE, - anon_sym_POUND, - [81100] = 2, - ACTIONS(1223), 12, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_RBRACK, + [80983] = 2, + ACTIONS(1213), 12, anon_sym_BEGIN, anon_sym_END, anon_sym_BEGINFILE, @@ -92648,7 +92851,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, anon_sym_function, anon_sym_func, - ACTIONS(1221), 14, + ACTIONS(1211), 14, ts_builtin_sym_end, anon_sym_ATinclude, anon_sym_ATload, @@ -92663,75 +92866,46 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - [81131] = 2, - ACTIONS(808), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_STAR, - ACTIONS(810), 22, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_in, - anon_sym_COLON, - anon_sym_PIPE_AMP, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_RBRACK, - [81162] = 12, - ACTIONS(1155), 1, + [81014] = 12, + ACTIONS(1143), 1, sym__if_else_separator, - ACTIONS(2156), 1, + ACTIONS(2170), 1, anon_sym_in, - ACTIONS(2160), 1, + ACTIONS(2172), 1, anon_sym_QMARK, - ACTIONS(2170), 1, + ACTIONS(2174), 1, anon_sym_AMP_AMP, - ACTIONS(2172), 1, + ACTIONS(2176), 1, anon_sym_PIPE_PIPE, - ACTIONS(2134), 2, + ACTIONS(2116), 2, anon_sym_PIPE, anon_sym_PIPE_AMP, - ACTIONS(2162), 2, + ACTIONS(2158), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2166), 2, + ACTIONS(2162), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2168), 2, + ACTIONS(2164), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2164), 3, + ACTIONS(2160), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1153), 4, + ACTIONS(1141), 4, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, anon_sym_while, - ACTIONS(2158), 6, + ACTIONS(2156), 6, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [81213] = 2, + [81065] = 2, ACTIONS(746), 4, anon_sym_LT, anon_sym_GT, @@ -92760,13 +92934,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_RBRACK, - [81244] = 2, - ACTIONS(760), 4, + [81096] = 2, + ACTIONS(2250), 12, + anon_sym_BEGIN, + anon_sym_END, + anon_sym_BEGINFILE, + anon_sym_ENDFILE, + anon_sym_getline, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AT, + sym_identifier, + aux_sym_number_token1, + anon_sym_function, + anon_sym_func, + ACTIONS(2248), 14, + ts_builtin_sym_end, + anon_sym_ATinclude, + anon_sym_ATload, + anon_sym_ATnamespace, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_SLASH, + anon_sym_BANG, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_DOLLAR, + aux_sym_number_token2, + anon_sym_DQUOTE, + anon_sym_POUND, + [81127] = 2, + ACTIONS(786), 4, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_STAR, - ACTIONS(762), 22, + ACTIONS(788), 22, anon_sym_COMMA, anon_sym_SEMI, anon_sym_RPAREN, @@ -92789,13 +92992,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_RBRACK, - [81275] = 2, - ACTIONS(796), 4, + [81158] = 2, + ACTIONS(794), 4, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_STAR, - ACTIONS(798), 22, + ACTIONS(796), 22, anon_sym_COMMA, anon_sym_SEMI, anon_sym_RPAREN, @@ -92818,13 +93021,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_RBRACK, - [81306] = 2, - ACTIONS(784), 4, + [81189] = 2, + ACTIONS(764), 4, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_STAR, - ACTIONS(786), 22, + ACTIONS(766), 22, anon_sym_COMMA, anon_sym_SEMI, anon_sym_RPAREN, @@ -92847,52 +93050,122 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_RBRACK, - [81337] = 12, - ACTIONS(1147), 1, + [81220] = 12, + ACTIONS(83), 1, sym__if_else_separator, - ACTIONS(2156), 1, + ACTIONS(2170), 1, anon_sym_in, - ACTIONS(2160), 1, + ACTIONS(2172), 1, anon_sym_QMARK, - ACTIONS(2170), 1, + ACTIONS(2174), 1, anon_sym_AMP_AMP, - ACTIONS(2172), 1, + ACTIONS(2176), 1, anon_sym_PIPE_PIPE, - ACTIONS(2134), 2, + ACTIONS(2116), 2, anon_sym_PIPE, anon_sym_PIPE_AMP, - ACTIONS(2162), 2, + ACTIONS(2158), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2166), 2, + ACTIONS(2162), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2168), 2, + ACTIONS(2164), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2164), 3, + ACTIONS(2160), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1145), 4, + ACTIONS(41), 4, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, anon_sym_while, - ACTIONS(2158), 6, + ACTIONS(2156), 6, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [81388] = 2, - ACTIONS(768), 4, + [81271] = 2, + ACTIONS(798), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_STAR, + ACTIONS(800), 22, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_in, + anon_sym_COLON, + anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_CARET, + anon_sym_STAR_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_RBRACK, + [81302] = 14, + ACTIONS(2206), 1, + anon_sym_in, + ACTIONS(2212), 1, + anon_sym_STAR, + ACTIONS(2226), 1, + anon_sym_QMARK, + ACTIONS(2228), 1, + anon_sym_AMP_AMP, + ACTIONS(2230), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2252), 1, + anon_sym_PIPE, + ACTIONS(2254), 1, + anon_sym_PIPE_AMP, + ACTIONS(2208), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2210), 2, + anon_sym_CARET, + anon_sym_STAR_STAR, + ACTIONS(2214), 2, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2216), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2220), 2, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(2218), 4, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(864), 5, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + [81357] = 2, + ACTIONS(790), 4, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_STAR, - ACTIONS(770), 22, + ACTIONS(792), 22, anon_sym_COMMA, anon_sym_SEMI, anon_sym_RPAREN, @@ -92915,28 +93188,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_RBRACK, + [81388] = 2, + ACTIONS(2258), 12, + anon_sym_BEGIN, + anon_sym_END, + anon_sym_BEGINFILE, + anon_sym_ENDFILE, + anon_sym_getline, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AT, + sym_identifier, + aux_sym_number_token1, + anon_sym_function, + anon_sym_func, + ACTIONS(2256), 14, + ts_builtin_sym_end, + anon_sym_ATinclude, + anon_sym_ATload, + anon_sym_ATnamespace, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_SLASH, + anon_sym_BANG, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_DOLLAR, + aux_sym_number_token2, + anon_sym_DQUOTE, + anon_sym_POUND, [81419] = 11, - ACTIONS(2180), 1, + ACTIONS(2188), 1, anon_sym_in, - ACTIONS(2198), 1, + ACTIONS(2192), 1, anon_sym_QMARK, - ACTIONS(2200), 1, - anon_sym_AMP_AMP, ACTIONS(2202), 1, + anon_sym_AMP_AMP, + ACTIONS(2204), 1, anon_sym_PIPE_PIPE, - ACTIONS(2144), 2, + ACTIONS(2152), 2, anon_sym_PIPE, anon_sym_PIPE_AMP, - ACTIONS(2184), 2, + ACTIONS(2194), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2188), 2, + ACTIONS(2198), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2190), 2, + ACTIONS(2200), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2186), 3, + ACTIONS(2196), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -92945,7 +93247,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LF, anon_sym_CR_LF, anon_sym_while, - ACTIONS(2182), 6, + ACTIONS(2190), 6, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, @@ -92953,36 +93255,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, [81467] = 11, - ACTIONS(2180), 1, + ACTIONS(2188), 1, anon_sym_in, - ACTIONS(2198), 1, + ACTIONS(2192), 1, anon_sym_QMARK, - ACTIONS(2200), 1, - anon_sym_AMP_AMP, ACTIONS(2202), 1, + anon_sym_AMP_AMP, + ACTIONS(2204), 1, anon_sym_PIPE_PIPE, - ACTIONS(2144), 2, + ACTIONS(2152), 2, anon_sym_PIPE, anon_sym_PIPE_AMP, - ACTIONS(2184), 2, + ACTIONS(2194), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2188), 2, + ACTIONS(2198), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2190), 2, + ACTIONS(2200), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2186), 3, + ACTIONS(2196), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(41), 4, + ACTIONS(1129), 4, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, anon_sym_while, - ACTIONS(2182), 6, + ACTIONS(2190), 6, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, @@ -92990,36 +93292,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, [81515] = 11, - ACTIONS(2180), 1, + ACTIONS(2188), 1, anon_sym_in, - ACTIONS(2198), 1, + ACTIONS(2192), 1, anon_sym_QMARK, - ACTIONS(2200), 1, - anon_sym_AMP_AMP, ACTIONS(2202), 1, + anon_sym_AMP_AMP, + ACTIONS(2204), 1, anon_sym_PIPE_PIPE, - ACTIONS(2144), 2, + ACTIONS(2152), 2, anon_sym_PIPE, anon_sym_PIPE_AMP, - ACTIONS(2184), 2, + ACTIONS(2194), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2188), 2, + ACTIONS(2198), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2190), 2, + ACTIONS(2200), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2186), 3, + ACTIONS(2196), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1145), 4, + ACTIONS(1141), 4, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, anon_sym_while, - ACTIONS(2182), 6, + ACTIONS(2190), 6, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, @@ -93027,36 +93329,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, [81563] = 11, - ACTIONS(2180), 1, + ACTIONS(2188), 1, anon_sym_in, - ACTIONS(2198), 1, + ACTIONS(2192), 1, anon_sym_QMARK, - ACTIONS(2200), 1, - anon_sym_AMP_AMP, ACTIONS(2202), 1, + anon_sym_AMP_AMP, + ACTIONS(2204), 1, anon_sym_PIPE_PIPE, - ACTIONS(2144), 2, + ACTIONS(2152), 2, anon_sym_PIPE, anon_sym_PIPE_AMP, - ACTIONS(2184), 2, + ACTIONS(2194), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2188), 2, + ACTIONS(2198), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2190), 2, + ACTIONS(2200), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2186), 3, + ACTIONS(2196), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1141), 4, + ACTIONS(41), 4, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, anon_sym_while, - ACTIONS(2182), 6, + ACTIONS(2190), 6, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, @@ -93064,27 +93366,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, [81611] = 11, - ACTIONS(2180), 1, + ACTIONS(2188), 1, anon_sym_in, - ACTIONS(2198), 1, + ACTIONS(2192), 1, anon_sym_QMARK, - ACTIONS(2200), 1, - anon_sym_AMP_AMP, ACTIONS(2202), 1, + anon_sym_AMP_AMP, + ACTIONS(2204), 1, anon_sym_PIPE_PIPE, - ACTIONS(2144), 2, + ACTIONS(2152), 2, anon_sym_PIPE, anon_sym_PIPE_AMP, - ACTIONS(2184), 2, + ACTIONS(2194), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2188), 2, + ACTIONS(2198), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2190), 2, + ACTIONS(2200), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2186), 3, + ACTIONS(2196), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -93093,7 +93395,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LF, anon_sym_CR_LF, anon_sym_while, - ACTIONS(2182), 6, + ACTIONS(2190), 6, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, @@ -93101,3993 +93403,3993 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, [81659] = 15, - ACTIONS(2210), 1, - anon_sym_STAR, - ACTIONS(2224), 1, + ACTIONS(2206), 1, anon_sym_in, - ACTIONS(2230), 1, + ACTIONS(2212), 1, + anon_sym_STAR, + ACTIONS(2226), 1, anon_sym_QMARK, - ACTIONS(2232), 1, + ACTIONS(2228), 1, anon_sym_AMP_AMP, - ACTIONS(2234), 1, + ACTIONS(2230), 1, anon_sym_PIPE_PIPE, - ACTIONS(2240), 1, + ACTIONS(2252), 1, anon_sym_PIPE, - ACTIONS(2242), 1, + ACTIONS(2254), 1, anon_sym_PIPE_AMP, ACTIONS(2260), 1, anon_sym_COMMA, - ACTIONS(1087), 2, + ACTIONS(1075), 2, anon_sym_RPAREN, anon_sym_RBRACK, - ACTIONS(2206), 2, + ACTIONS(2208), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2208), 2, + ACTIONS(2210), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2212), 2, + ACTIONS(2214), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2214), 2, + ACTIONS(2216), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2218), 2, + ACTIONS(2220), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2216), 4, + ACTIONS(2218), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, [81714] = 16, - ACTIONS(2210), 1, - anon_sym_STAR, - ACTIONS(2224), 1, + ACTIONS(2206), 1, anon_sym_in, - ACTIONS(2230), 1, + ACTIONS(2212), 1, + anon_sym_STAR, + ACTIONS(2226), 1, anon_sym_QMARK, - ACTIONS(2232), 1, + ACTIONS(2228), 1, anon_sym_AMP_AMP, - ACTIONS(2234), 1, + ACTIONS(2230), 1, anon_sym_PIPE_PIPE, - ACTIONS(2240), 1, + ACTIONS(2252), 1, anon_sym_PIPE, - ACTIONS(2242), 1, + ACTIONS(2254), 1, anon_sym_PIPE_AMP, ACTIONS(2262), 1, anon_sym_COMMA, ACTIONS(2264), 1, anon_sym_RPAREN, - STATE(1853), 1, + STATE(1855), 1, aux_sym_args_repeat1, - ACTIONS(2206), 2, + ACTIONS(2208), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2208), 2, + ACTIONS(2210), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2212), 2, + ACTIONS(2214), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2214), 2, + ACTIONS(2216), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2218), 2, + ACTIONS(2220), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2216), 4, + ACTIONS(2218), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, [81771] = 15, - ACTIONS(1075), 1, - anon_sym_RPAREN, - ACTIONS(2210), 1, - anon_sym_STAR, - ACTIONS(2224), 1, + ACTIONS(2206), 1, anon_sym_in, - ACTIONS(2230), 1, + ACTIONS(2212), 1, + anon_sym_STAR, + ACTIONS(2226), 1, anon_sym_QMARK, - ACTIONS(2232), 1, + ACTIONS(2228), 1, anon_sym_AMP_AMP, - ACTIONS(2234), 1, + ACTIONS(2230), 1, anon_sym_PIPE_PIPE, - ACTIONS(2240), 1, + ACTIONS(2252), 1, anon_sym_PIPE, - ACTIONS(2242), 1, + ACTIONS(2254), 1, anon_sym_PIPE_AMP, ACTIONS(2260), 1, anon_sym_COMMA, - ACTIONS(2206), 2, + ACTIONS(2266), 1, + anon_sym_RPAREN, + ACTIONS(2208), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2208), 2, + ACTIONS(2210), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2212), 2, + ACTIONS(2214), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2214), 2, + ACTIONS(2216), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2218), 2, + ACTIONS(2220), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2216), 4, + ACTIONS(2218), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, [81825] = 15, - ACTIONS(2210), 1, - anon_sym_STAR, - ACTIONS(2224), 1, + ACTIONS(2206), 1, anon_sym_in, - ACTIONS(2230), 1, + ACTIONS(2212), 1, + anon_sym_STAR, + ACTIONS(2226), 1, anon_sym_QMARK, - ACTIONS(2232), 1, + ACTIONS(2228), 1, anon_sym_AMP_AMP, - ACTIONS(2234), 1, + ACTIONS(2230), 1, anon_sym_PIPE_PIPE, - ACTIONS(2240), 1, + ACTIONS(2252), 1, anon_sym_PIPE, - ACTIONS(2242), 1, + ACTIONS(2254), 1, anon_sym_PIPE_AMP, ACTIONS(2260), 1, anon_sym_COMMA, - ACTIONS(2266), 1, + ACTIONS(2268), 1, anon_sym_RPAREN, - ACTIONS(2206), 2, + ACTIONS(2208), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2208), 2, + ACTIONS(2210), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2212), 2, + ACTIONS(2214), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2214), 2, + ACTIONS(2216), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2218), 2, + ACTIONS(2220), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2216), 4, + ACTIONS(2218), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, [81879] = 15, - ACTIONS(2210), 1, - anon_sym_STAR, - ACTIONS(2224), 1, + ACTIONS(2206), 1, anon_sym_in, - ACTIONS(2230), 1, + ACTIONS(2212), 1, + anon_sym_STAR, + ACTIONS(2226), 1, anon_sym_QMARK, - ACTIONS(2232), 1, + ACTIONS(2228), 1, anon_sym_AMP_AMP, - ACTIONS(2234), 1, + ACTIONS(2230), 1, anon_sym_PIPE_PIPE, - ACTIONS(2240), 1, + ACTIONS(2252), 1, anon_sym_PIPE, - ACTIONS(2242), 1, + ACTIONS(2254), 1, anon_sym_PIPE_AMP, ACTIONS(2260), 1, anon_sym_COMMA, - ACTIONS(2268), 1, + ACTIONS(2270), 1, anon_sym_RBRACK, - ACTIONS(2206), 2, + ACTIONS(2208), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2208), 2, + ACTIONS(2210), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2212), 2, + ACTIONS(2214), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2214), 2, + ACTIONS(2216), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2218), 2, + ACTIONS(2220), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2216), 4, + ACTIONS(2218), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, [81933] = 15, - ACTIONS(2210), 1, - anon_sym_STAR, - ACTIONS(2224), 1, + ACTIONS(2206), 1, anon_sym_in, - ACTIONS(2230), 1, + ACTIONS(2212), 1, + anon_sym_STAR, + ACTIONS(2226), 1, anon_sym_QMARK, - ACTIONS(2232), 1, + ACTIONS(2228), 1, anon_sym_AMP_AMP, - ACTIONS(2234), 1, + ACTIONS(2230), 1, anon_sym_PIPE_PIPE, - ACTIONS(2240), 1, + ACTIONS(2252), 1, anon_sym_PIPE, - ACTIONS(2242), 1, + ACTIONS(2254), 1, anon_sym_PIPE_AMP, ACTIONS(2260), 1, anon_sym_COMMA, - ACTIONS(2270), 1, - anon_sym_RPAREN, - ACTIONS(2206), 2, + ACTIONS(2272), 1, + anon_sym_RBRACK, + ACTIONS(2208), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2208), 2, + ACTIONS(2210), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2212), 2, + ACTIONS(2214), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2214), 2, + ACTIONS(2216), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2218), 2, + ACTIONS(2220), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2216), 4, + ACTIONS(2218), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [81987] = 15, - ACTIONS(2210), 1, - anon_sym_STAR, - ACTIONS(2224), 1, + [81987] = 14, + ACTIONS(2206), 1, anon_sym_in, - ACTIONS(2230), 1, + ACTIONS(2212), 1, + anon_sym_STAR, + ACTIONS(2226), 1, anon_sym_QMARK, - ACTIONS(2232), 1, + ACTIONS(2228), 1, anon_sym_AMP_AMP, - ACTIONS(2234), 1, + ACTIONS(2230), 1, anon_sym_PIPE_PIPE, - ACTIONS(2240), 1, + ACTIONS(2252), 1, anon_sym_PIPE, - ACTIONS(2242), 1, + ACTIONS(2254), 1, anon_sym_PIPE_AMP, - ACTIONS(2260), 1, - anon_sym_COMMA, - ACTIONS(2272), 1, - anon_sym_RPAREN, - ACTIONS(2206), 2, + ACTIONS(2208), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2208), 2, + ACTIONS(2210), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2212), 2, + ACTIONS(2214), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2214), 2, + ACTIONS(2216), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2218), 2, + ACTIONS(2220), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2216), 4, + ACTIONS(2274), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(2218), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [82041] = 15, - ACTIONS(2210), 1, - anon_sym_STAR, - ACTIONS(2224), 1, + [82039] = 15, + ACTIONS(2206), 1, anon_sym_in, - ACTIONS(2230), 1, + ACTIONS(2212), 1, + anon_sym_STAR, + ACTIONS(2226), 1, anon_sym_QMARK, - ACTIONS(2232), 1, + ACTIONS(2228), 1, anon_sym_AMP_AMP, - ACTIONS(2234), 1, + ACTIONS(2230), 1, anon_sym_PIPE_PIPE, - ACTIONS(2240), 1, + ACTIONS(2252), 1, anon_sym_PIPE, - ACTIONS(2242), 1, + ACTIONS(2254), 1, anon_sym_PIPE_AMP, ACTIONS(2260), 1, anon_sym_COMMA, - ACTIONS(2274), 1, - anon_sym_RPAREN, - ACTIONS(2206), 2, + ACTIONS(2276), 1, + anon_sym_RBRACK, + ACTIONS(2208), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2208), 2, + ACTIONS(2210), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2212), 2, + ACTIONS(2214), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2214), 2, + ACTIONS(2216), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2218), 2, + ACTIONS(2220), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2216), 4, + ACTIONS(2218), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [82095] = 15, - ACTIONS(2210), 1, - anon_sym_STAR, - ACTIONS(2224), 1, + [82093] = 15, + ACTIONS(2206), 1, anon_sym_in, - ACTIONS(2230), 1, + ACTIONS(2212), 1, + anon_sym_STAR, + ACTIONS(2226), 1, anon_sym_QMARK, - ACTIONS(2232), 1, + ACTIONS(2228), 1, anon_sym_AMP_AMP, - ACTIONS(2234), 1, + ACTIONS(2230), 1, anon_sym_PIPE_PIPE, - ACTIONS(2240), 1, + ACTIONS(2252), 1, anon_sym_PIPE, - ACTIONS(2242), 1, + ACTIONS(2254), 1, anon_sym_PIPE_AMP, ACTIONS(2260), 1, anon_sym_COMMA, - ACTIONS(2276), 1, - anon_sym_RBRACK, - ACTIONS(2206), 2, + ACTIONS(2278), 1, + anon_sym_RPAREN, + ACTIONS(2208), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2208), 2, + ACTIONS(2210), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2212), 2, + ACTIONS(2214), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2214), 2, + ACTIONS(2216), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2218), 2, + ACTIONS(2220), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2216), 4, + ACTIONS(2218), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [82149] = 15, - ACTIONS(2210), 1, - anon_sym_STAR, - ACTIONS(2224), 1, + [82147] = 15, + ACTIONS(2206), 1, anon_sym_in, - ACTIONS(2230), 1, + ACTIONS(2212), 1, + anon_sym_STAR, + ACTIONS(2226), 1, anon_sym_QMARK, - ACTIONS(2232), 1, + ACTIONS(2228), 1, anon_sym_AMP_AMP, - ACTIONS(2234), 1, + ACTIONS(2230), 1, anon_sym_PIPE_PIPE, - ACTIONS(2240), 1, + ACTIONS(2252), 1, anon_sym_PIPE, - ACTIONS(2242), 1, + ACTIONS(2254), 1, anon_sym_PIPE_AMP, ACTIONS(2260), 1, anon_sym_COMMA, - ACTIONS(2278), 1, - anon_sym_RPAREN, - ACTIONS(2206), 2, + ACTIONS(2280), 1, + anon_sym_RBRACK, + ACTIONS(2208), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2208), 2, + ACTIONS(2210), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2212), 2, + ACTIONS(2214), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2214), 2, + ACTIONS(2216), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2218), 2, + ACTIONS(2220), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2216), 4, + ACTIONS(2218), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [82203] = 15, - ACTIONS(2210), 1, - anon_sym_STAR, - ACTIONS(2224), 1, + [82201] = 15, + ACTIONS(2206), 1, anon_sym_in, - ACTIONS(2230), 1, + ACTIONS(2212), 1, + anon_sym_STAR, + ACTIONS(2226), 1, anon_sym_QMARK, - ACTIONS(2232), 1, + ACTIONS(2228), 1, anon_sym_AMP_AMP, - ACTIONS(2234), 1, + ACTIONS(2230), 1, anon_sym_PIPE_PIPE, - ACTIONS(2240), 1, + ACTIONS(2252), 1, anon_sym_PIPE, - ACTIONS(2242), 1, + ACTIONS(2254), 1, anon_sym_PIPE_AMP, ACTIONS(2260), 1, anon_sym_COMMA, - ACTIONS(2280), 1, + ACTIONS(2282), 1, anon_sym_RBRACK, - ACTIONS(2206), 2, + ACTIONS(2208), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2208), 2, + ACTIONS(2210), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2212), 2, + ACTIONS(2214), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2214), 2, + ACTIONS(2216), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2218), 2, + ACTIONS(2220), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2216), 4, + ACTIONS(2218), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [82257] = 15, - ACTIONS(2210), 1, - anon_sym_STAR, - ACTIONS(2224), 1, + [82255] = 15, + ACTIONS(2206), 1, anon_sym_in, - ACTIONS(2230), 1, + ACTIONS(2212), 1, + anon_sym_STAR, + ACTIONS(2226), 1, anon_sym_QMARK, - ACTIONS(2232), 1, + ACTIONS(2228), 1, anon_sym_AMP_AMP, - ACTIONS(2234), 1, + ACTIONS(2230), 1, anon_sym_PIPE_PIPE, - ACTIONS(2240), 1, + ACTIONS(2252), 1, anon_sym_PIPE, - ACTIONS(2242), 1, + ACTIONS(2254), 1, anon_sym_PIPE_AMP, ACTIONS(2260), 1, anon_sym_COMMA, - ACTIONS(2282), 1, + ACTIONS(2284), 1, anon_sym_RPAREN, - ACTIONS(2206), 2, + ACTIONS(2208), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2208), 2, + ACTIONS(2210), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2212), 2, + ACTIONS(2214), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2214), 2, + ACTIONS(2216), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2218), 2, + ACTIONS(2220), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2216), 4, + ACTIONS(2218), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [82311] = 15, - ACTIONS(2210), 1, - anon_sym_STAR, - ACTIONS(2224), 1, + [82309] = 15, + ACTIONS(2206), 1, anon_sym_in, - ACTIONS(2230), 1, + ACTIONS(2212), 1, + anon_sym_STAR, + ACTIONS(2226), 1, anon_sym_QMARK, - ACTIONS(2232), 1, + ACTIONS(2228), 1, anon_sym_AMP_AMP, - ACTIONS(2234), 1, + ACTIONS(2230), 1, anon_sym_PIPE_PIPE, - ACTIONS(2240), 1, + ACTIONS(2252), 1, anon_sym_PIPE, - ACTIONS(2242), 1, + ACTIONS(2254), 1, anon_sym_PIPE_AMP, ACTIONS(2260), 1, anon_sym_COMMA, - ACTIONS(2284), 1, + ACTIONS(2286), 1, anon_sym_RBRACK, - ACTIONS(2206), 2, + ACTIONS(2208), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2208), 2, + ACTIONS(2210), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2212), 2, + ACTIONS(2214), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2214), 2, + ACTIONS(2216), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2218), 2, + ACTIONS(2220), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2216), 4, + ACTIONS(2218), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [82365] = 15, - ACTIONS(2210), 1, - anon_sym_STAR, - ACTIONS(2224), 1, + [82363] = 15, + ACTIONS(2206), 1, anon_sym_in, - ACTIONS(2230), 1, + ACTIONS(2212), 1, + anon_sym_STAR, + ACTIONS(2226), 1, anon_sym_QMARK, - ACTIONS(2232), 1, + ACTIONS(2228), 1, anon_sym_AMP_AMP, - ACTIONS(2234), 1, + ACTIONS(2230), 1, anon_sym_PIPE_PIPE, - ACTIONS(2240), 1, + ACTIONS(2252), 1, anon_sym_PIPE, - ACTIONS(2242), 1, + ACTIONS(2254), 1, anon_sym_PIPE_AMP, ACTIONS(2260), 1, anon_sym_COMMA, - ACTIONS(2286), 1, - anon_sym_RPAREN, - ACTIONS(2206), 2, + ACTIONS(2288), 1, + anon_sym_RBRACK, + ACTIONS(2208), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2208), 2, + ACTIONS(2210), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2212), 2, + ACTIONS(2214), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2214), 2, + ACTIONS(2216), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2218), 2, + ACTIONS(2220), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2216), 4, + ACTIONS(2218), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [82419] = 15, - ACTIONS(2210), 1, - anon_sym_STAR, - ACTIONS(2224), 1, + [82417] = 15, + ACTIONS(2206), 1, anon_sym_in, - ACTIONS(2230), 1, + ACTIONS(2212), 1, + anon_sym_STAR, + ACTIONS(2226), 1, anon_sym_QMARK, - ACTIONS(2232), 1, + ACTIONS(2228), 1, anon_sym_AMP_AMP, - ACTIONS(2234), 1, + ACTIONS(2230), 1, anon_sym_PIPE_PIPE, - ACTIONS(2240), 1, + ACTIONS(2252), 1, anon_sym_PIPE, - ACTIONS(2242), 1, + ACTIONS(2254), 1, anon_sym_PIPE_AMP, ACTIONS(2260), 1, anon_sym_COMMA, - ACTIONS(2288), 1, - anon_sym_RBRACK, - ACTIONS(2206), 2, + ACTIONS(2290), 1, + anon_sym_RPAREN, + ACTIONS(2208), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2208), 2, + ACTIONS(2210), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2212), 2, + ACTIONS(2214), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2214), 2, + ACTIONS(2216), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2218), 2, + ACTIONS(2220), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2216), 4, + ACTIONS(2218), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [82473] = 15, - ACTIONS(2210), 1, - anon_sym_STAR, - ACTIONS(2224), 1, + [82471] = 15, + ACTIONS(2206), 1, anon_sym_in, - ACTIONS(2230), 1, + ACTIONS(2212), 1, + anon_sym_STAR, + ACTIONS(2226), 1, anon_sym_QMARK, - ACTIONS(2232), 1, + ACTIONS(2228), 1, anon_sym_AMP_AMP, - ACTIONS(2234), 1, + ACTIONS(2230), 1, anon_sym_PIPE_PIPE, - ACTIONS(2240), 1, + ACTIONS(2252), 1, anon_sym_PIPE, - ACTIONS(2242), 1, + ACTIONS(2254), 1, anon_sym_PIPE_AMP, ACTIONS(2260), 1, anon_sym_COMMA, - ACTIONS(2290), 1, + ACTIONS(2292), 1, anon_sym_RBRACK, - ACTIONS(2206), 2, + ACTIONS(2208), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2208), 2, + ACTIONS(2210), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2212), 2, + ACTIONS(2214), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2214), 2, + ACTIONS(2216), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2218), 2, + ACTIONS(2220), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2216), 4, + ACTIONS(2218), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [82527] = 15, - ACTIONS(2210), 1, - anon_sym_STAR, - ACTIONS(2224), 1, + [82525] = 15, + ACTIONS(2206), 1, anon_sym_in, - ACTIONS(2230), 1, + ACTIONS(2212), 1, + anon_sym_STAR, + ACTIONS(2226), 1, anon_sym_QMARK, - ACTIONS(2232), 1, + ACTIONS(2228), 1, anon_sym_AMP_AMP, - ACTIONS(2234), 1, + ACTIONS(2230), 1, anon_sym_PIPE_PIPE, - ACTIONS(2240), 1, + ACTIONS(2252), 1, anon_sym_PIPE, - ACTIONS(2242), 1, + ACTIONS(2254), 1, anon_sym_PIPE_AMP, ACTIONS(2260), 1, anon_sym_COMMA, - ACTIONS(2292), 1, - anon_sym_RBRACK, - ACTIONS(2206), 2, + ACTIONS(2294), 1, + anon_sym_RPAREN, + ACTIONS(2208), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2208), 2, + ACTIONS(2210), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2212), 2, + ACTIONS(2214), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2214), 2, + ACTIONS(2216), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2218), 2, + ACTIONS(2220), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2216), 4, + ACTIONS(2218), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [82581] = 15, - ACTIONS(2210), 1, - anon_sym_STAR, - ACTIONS(2224), 1, + [82579] = 15, + ACTIONS(2206), 1, anon_sym_in, - ACTIONS(2230), 1, + ACTIONS(2212), 1, + anon_sym_STAR, + ACTIONS(2226), 1, anon_sym_QMARK, - ACTIONS(2232), 1, + ACTIONS(2228), 1, anon_sym_AMP_AMP, - ACTIONS(2234), 1, + ACTIONS(2230), 1, anon_sym_PIPE_PIPE, - ACTIONS(2240), 1, + ACTIONS(2252), 1, anon_sym_PIPE, - ACTIONS(2242), 1, + ACTIONS(2254), 1, anon_sym_PIPE_AMP, ACTIONS(2260), 1, anon_sym_COMMA, - ACTIONS(2294), 1, - anon_sym_RBRACK, - ACTIONS(2206), 2, + ACTIONS(2296), 1, + anon_sym_RPAREN, + ACTIONS(2208), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2208), 2, + ACTIONS(2210), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2212), 2, + ACTIONS(2214), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2214), 2, + ACTIONS(2216), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2218), 2, + ACTIONS(2220), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2216), 4, + ACTIONS(2218), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [82635] = 15, - ACTIONS(2210), 1, - anon_sym_STAR, - ACTIONS(2224), 1, + [82633] = 15, + ACTIONS(2206), 1, anon_sym_in, - ACTIONS(2230), 1, + ACTIONS(2212), 1, + anon_sym_STAR, + ACTIONS(2226), 1, anon_sym_QMARK, - ACTIONS(2232), 1, + ACTIONS(2228), 1, anon_sym_AMP_AMP, - ACTIONS(2234), 1, + ACTIONS(2230), 1, anon_sym_PIPE_PIPE, - ACTIONS(2240), 1, + ACTIONS(2252), 1, anon_sym_PIPE, - ACTIONS(2242), 1, + ACTIONS(2254), 1, anon_sym_PIPE_AMP, ACTIONS(2260), 1, anon_sym_COMMA, - ACTIONS(2296), 1, + ACTIONS(2298), 1, anon_sym_RBRACK, - ACTIONS(2206), 2, + ACTIONS(2208), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2208), 2, + ACTIONS(2210), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2212), 2, + ACTIONS(2214), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2214), 2, + ACTIONS(2216), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2218), 2, + ACTIONS(2220), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2216), 4, + ACTIONS(2218), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [82689] = 14, - ACTIONS(2210), 1, - anon_sym_STAR, - ACTIONS(2224), 1, + [82687] = 15, + ACTIONS(1103), 1, + anon_sym_RPAREN, + ACTIONS(2206), 1, anon_sym_in, - ACTIONS(2230), 1, + ACTIONS(2212), 1, + anon_sym_STAR, + ACTIONS(2226), 1, anon_sym_QMARK, - ACTIONS(2232), 1, + ACTIONS(2228), 1, anon_sym_AMP_AMP, - ACTIONS(2234), 1, + ACTIONS(2230), 1, anon_sym_PIPE_PIPE, - ACTIONS(2240), 1, + ACTIONS(2252), 1, anon_sym_PIPE, - ACTIONS(2242), 1, + ACTIONS(2254), 1, anon_sym_PIPE_AMP, - ACTIONS(2206), 2, + ACTIONS(2260), 1, + anon_sym_COMMA, + ACTIONS(2208), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2208), 2, + ACTIONS(2210), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2212), 2, + ACTIONS(2214), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2214), 2, + ACTIONS(2216), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2218), 2, + ACTIONS(2220), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2298), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(2216), 4, + ACTIONS(2218), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, [82741] = 15, - ACTIONS(2210), 1, - anon_sym_STAR, - ACTIONS(2224), 1, + ACTIONS(2206), 1, anon_sym_in, - ACTIONS(2230), 1, + ACTIONS(2212), 1, + anon_sym_STAR, + ACTIONS(2226), 1, anon_sym_QMARK, - ACTIONS(2232), 1, + ACTIONS(2228), 1, anon_sym_AMP_AMP, - ACTIONS(2234), 1, + ACTIONS(2230), 1, anon_sym_PIPE_PIPE, - ACTIONS(2240), 1, + ACTIONS(2252), 1, anon_sym_PIPE, - ACTIONS(2242), 1, + ACTIONS(2254), 1, anon_sym_PIPE_AMP, ACTIONS(2260), 1, anon_sym_COMMA, ACTIONS(2300), 1, anon_sym_RBRACK, - ACTIONS(2206), 2, + ACTIONS(2208), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2208), 2, + ACTIONS(2210), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2212), 2, + ACTIONS(2214), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2214), 2, + ACTIONS(2216), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2218), 2, + ACTIONS(2220), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2216), 4, + ACTIONS(2218), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, [82795] = 15, - ACTIONS(2210), 1, - anon_sym_STAR, - ACTIONS(2224), 1, + ACTIONS(2206), 1, anon_sym_in, - ACTIONS(2230), 1, + ACTIONS(2212), 1, + anon_sym_STAR, + ACTIONS(2226), 1, anon_sym_QMARK, - ACTIONS(2232), 1, + ACTIONS(2228), 1, anon_sym_AMP_AMP, - ACTIONS(2234), 1, + ACTIONS(2230), 1, anon_sym_PIPE_PIPE, - ACTIONS(2240), 1, + ACTIONS(2252), 1, anon_sym_PIPE, - ACTIONS(2242), 1, + ACTIONS(2254), 1, anon_sym_PIPE_AMP, ACTIONS(2260), 1, anon_sym_COMMA, ACTIONS(2302), 1, anon_sym_RBRACK, - ACTIONS(2206), 2, + ACTIONS(2208), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2208), 2, + ACTIONS(2210), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2212), 2, + ACTIONS(2214), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2214), 2, + ACTIONS(2216), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2218), 2, + ACTIONS(2220), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2216), 4, + ACTIONS(2218), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, [82849] = 15, - ACTIONS(2210), 1, - anon_sym_STAR, - ACTIONS(2224), 1, + ACTIONS(2206), 1, anon_sym_in, - ACTIONS(2230), 1, + ACTIONS(2212), 1, + anon_sym_STAR, + ACTIONS(2226), 1, anon_sym_QMARK, - ACTIONS(2232), 1, + ACTIONS(2228), 1, anon_sym_AMP_AMP, - ACTIONS(2234), 1, + ACTIONS(2230), 1, anon_sym_PIPE_PIPE, - ACTIONS(2240), 1, + ACTIONS(2252), 1, anon_sym_PIPE, - ACTIONS(2242), 1, + ACTIONS(2254), 1, anon_sym_PIPE_AMP, ACTIONS(2260), 1, anon_sym_COMMA, ACTIONS(2304), 1, anon_sym_RBRACK, - ACTIONS(2206), 2, + ACTIONS(2208), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2208), 2, + ACTIONS(2210), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2212), 2, + ACTIONS(2214), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2214), 2, + ACTIONS(2216), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2218), 2, + ACTIONS(2220), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2216), 4, + ACTIONS(2218), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, [82903] = 15, - ACTIONS(2210), 1, - anon_sym_STAR, - ACTIONS(2224), 1, + ACTIONS(1103), 1, + anon_sym_RPAREN, + ACTIONS(2206), 1, anon_sym_in, - ACTIONS(2230), 1, + ACTIONS(2212), 1, + anon_sym_STAR, + ACTIONS(2226), 1, anon_sym_QMARK, - ACTIONS(2232), 1, + ACTIONS(2228), 1, anon_sym_AMP_AMP, - ACTIONS(2234), 1, + ACTIONS(2230), 1, anon_sym_PIPE_PIPE, - ACTIONS(2240), 1, + ACTIONS(2252), 1, anon_sym_PIPE, - ACTIONS(2242), 1, + ACTIONS(2254), 1, anon_sym_PIPE_AMP, ACTIONS(2260), 1, anon_sym_COMMA, - ACTIONS(2306), 1, - anon_sym_RBRACK, - ACTIONS(2206), 2, + ACTIONS(2208), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2208), 2, + ACTIONS(2210), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2212), 2, + ACTIONS(2214), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2214), 2, + ACTIONS(2216), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2218), 2, + ACTIONS(2220), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2216), 4, + ACTIONS(2218), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, [82957] = 15, - ACTIONS(2210), 1, - anon_sym_STAR, - ACTIONS(2224), 1, + ACTIONS(2206), 1, anon_sym_in, - ACTIONS(2230), 1, + ACTIONS(2212), 1, + anon_sym_STAR, + ACTIONS(2226), 1, anon_sym_QMARK, - ACTIONS(2232), 1, + ACTIONS(2228), 1, anon_sym_AMP_AMP, - ACTIONS(2234), 1, + ACTIONS(2230), 1, anon_sym_PIPE_PIPE, - ACTIONS(2240), 1, + ACTIONS(2252), 1, anon_sym_PIPE, - ACTIONS(2242), 1, + ACTIONS(2254), 1, anon_sym_PIPE_AMP, ACTIONS(2260), 1, anon_sym_COMMA, - ACTIONS(2308), 1, - anon_sym_RPAREN, - ACTIONS(2206), 2, + ACTIONS(2306), 1, + anon_sym_RBRACK, + ACTIONS(2208), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2208), 2, + ACTIONS(2210), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2212), 2, + ACTIONS(2214), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2214), 2, + ACTIONS(2216), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2218), 2, + ACTIONS(2220), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2216), 4, + ACTIONS(2218), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, [83011] = 15, - ACTIONS(2210), 1, - anon_sym_STAR, - ACTIONS(2224), 1, + ACTIONS(2206), 1, anon_sym_in, - ACTIONS(2230), 1, + ACTIONS(2212), 1, + anon_sym_STAR, + ACTIONS(2226), 1, anon_sym_QMARK, - ACTIONS(2232), 1, + ACTIONS(2228), 1, anon_sym_AMP_AMP, - ACTIONS(2234), 1, + ACTIONS(2230), 1, anon_sym_PIPE_PIPE, - ACTIONS(2240), 1, + ACTIONS(2252), 1, anon_sym_PIPE, - ACTIONS(2242), 1, + ACTIONS(2254), 1, anon_sym_PIPE_AMP, ACTIONS(2260), 1, anon_sym_COMMA, - ACTIONS(2310), 1, - anon_sym_RBRACK, - ACTIONS(2206), 2, + ACTIONS(2308), 1, + anon_sym_RPAREN, + ACTIONS(2208), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2208), 2, + ACTIONS(2210), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2212), 2, + ACTIONS(2214), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2214), 2, + ACTIONS(2216), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2218), 2, + ACTIONS(2220), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2216), 4, + ACTIONS(2218), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, [83065] = 15, - ACTIONS(1075), 1, - anon_sym_RPAREN, - ACTIONS(2210), 1, - anon_sym_STAR, - ACTIONS(2224), 1, + ACTIONS(2206), 1, anon_sym_in, - ACTIONS(2230), 1, + ACTIONS(2212), 1, + anon_sym_STAR, + ACTIONS(2226), 1, anon_sym_QMARK, - ACTIONS(2232), 1, + ACTIONS(2228), 1, anon_sym_AMP_AMP, - ACTIONS(2234), 1, + ACTIONS(2230), 1, anon_sym_PIPE_PIPE, - ACTIONS(2240), 1, + ACTIONS(2252), 1, anon_sym_PIPE, - ACTIONS(2242), 1, + ACTIONS(2254), 1, anon_sym_PIPE_AMP, ACTIONS(2260), 1, anon_sym_COMMA, - ACTIONS(2206), 2, + ACTIONS(2310), 1, + anon_sym_RPAREN, + ACTIONS(2208), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2208), 2, + ACTIONS(2210), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2212), 2, + ACTIONS(2214), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2214), 2, + ACTIONS(2216), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2218), 2, + ACTIONS(2220), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2216), 4, + ACTIONS(2218), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, [83119] = 15, - ACTIONS(2210), 1, - anon_sym_STAR, - ACTIONS(2224), 1, + ACTIONS(2206), 1, anon_sym_in, - ACTIONS(2230), 1, + ACTIONS(2212), 1, + anon_sym_STAR, + ACTIONS(2226), 1, anon_sym_QMARK, - ACTIONS(2232), 1, + ACTIONS(2228), 1, anon_sym_AMP_AMP, - ACTIONS(2234), 1, + ACTIONS(2230), 1, anon_sym_PIPE_PIPE, - ACTIONS(2240), 1, + ACTIONS(2252), 1, anon_sym_PIPE, - ACTIONS(2242), 1, + ACTIONS(2254), 1, anon_sym_PIPE_AMP, ACTIONS(2260), 1, anon_sym_COMMA, ACTIONS(2312), 1, - anon_sym_RPAREN, - ACTIONS(2206), 2, + anon_sym_RBRACK, + ACTIONS(2208), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2208), 2, + ACTIONS(2210), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2212), 2, + ACTIONS(2214), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2214), 2, + ACTIONS(2216), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2218), 2, + ACTIONS(2220), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2216), 4, + ACTIONS(2218), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, [83173] = 15, - ACTIONS(2210), 1, - anon_sym_STAR, - ACTIONS(2224), 1, + ACTIONS(2206), 1, anon_sym_in, - ACTIONS(2230), 1, + ACTIONS(2212), 1, + anon_sym_STAR, + ACTIONS(2226), 1, anon_sym_QMARK, - ACTIONS(2232), 1, + ACTIONS(2228), 1, anon_sym_AMP_AMP, - ACTIONS(2234), 1, + ACTIONS(2230), 1, anon_sym_PIPE_PIPE, - ACTIONS(2240), 1, + ACTIONS(2252), 1, anon_sym_PIPE, - ACTIONS(2242), 1, + ACTIONS(2254), 1, anon_sym_PIPE_AMP, ACTIONS(2260), 1, anon_sym_COMMA, ACTIONS(2314), 1, anon_sym_RBRACK, - ACTIONS(2206), 2, + ACTIONS(2208), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2208), 2, + ACTIONS(2210), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2212), 2, + ACTIONS(2214), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2214), 2, + ACTIONS(2216), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2218), 2, + ACTIONS(2220), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2216), 4, + ACTIONS(2218), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, [83227] = 14, - ACTIONS(2210), 1, - anon_sym_STAR, - ACTIONS(2224), 1, + ACTIONS(2206), 1, anon_sym_in, - ACTIONS(2230), 1, + ACTIONS(2212), 1, + anon_sym_STAR, + ACTIONS(2226), 1, anon_sym_QMARK, - ACTIONS(2232), 1, + ACTIONS(2228), 1, anon_sym_AMP_AMP, - ACTIONS(2234), 1, + ACTIONS(2230), 1, anon_sym_PIPE_PIPE, - ACTIONS(2240), 1, + ACTIONS(2252), 1, anon_sym_PIPE, - ACTIONS(2242), 1, + ACTIONS(2254), 1, anon_sym_PIPE_AMP, ACTIONS(2316), 1, anon_sym_COLON, - ACTIONS(2206), 2, + ACTIONS(2208), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2208), 2, + ACTIONS(2210), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2212), 2, + ACTIONS(2214), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2214), 2, + ACTIONS(2216), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2218), 2, + ACTIONS(2220), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2216), 4, + ACTIONS(2218), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, [83278] = 14, - ACTIONS(2210), 1, - anon_sym_STAR, - ACTIONS(2224), 1, + ACTIONS(2206), 1, anon_sym_in, - ACTIONS(2230), 1, + ACTIONS(2212), 1, + anon_sym_STAR, + ACTIONS(2226), 1, anon_sym_QMARK, - ACTIONS(2232), 1, + ACTIONS(2228), 1, anon_sym_AMP_AMP, - ACTIONS(2234), 1, + ACTIONS(2230), 1, anon_sym_PIPE_PIPE, - ACTIONS(2240), 1, + ACTIONS(2252), 1, anon_sym_PIPE, - ACTIONS(2242), 1, + ACTIONS(2254), 1, anon_sym_PIPE_AMP, - ACTIONS(2260), 1, - anon_sym_COMMA, - ACTIONS(2206), 2, + ACTIONS(2318), 1, + anon_sym_SEMI, + ACTIONS(2208), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2208), 2, + ACTIONS(2210), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2212), 2, + ACTIONS(2214), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2214), 2, + ACTIONS(2216), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2218), 2, + ACTIONS(2220), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2216), 4, + ACTIONS(2218), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, [83329] = 14, - ACTIONS(2210), 1, - anon_sym_STAR, - ACTIONS(2224), 1, + ACTIONS(2206), 1, anon_sym_in, - ACTIONS(2230), 1, + ACTIONS(2212), 1, + anon_sym_STAR, + ACTIONS(2226), 1, anon_sym_QMARK, - ACTIONS(2232), 1, + ACTIONS(2228), 1, anon_sym_AMP_AMP, - ACTIONS(2234), 1, + ACTIONS(2230), 1, anon_sym_PIPE_PIPE, - ACTIONS(2240), 1, + ACTIONS(2252), 1, anon_sym_PIPE, - ACTIONS(2242), 1, + ACTIONS(2254), 1, anon_sym_PIPE_AMP, - ACTIONS(2318), 1, - anon_sym_RPAREN, - ACTIONS(2206), 2, + ACTIONS(2320), 1, + anon_sym_COLON, + ACTIONS(2208), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2208), 2, + ACTIONS(2210), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2212), 2, + ACTIONS(2214), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2214), 2, + ACTIONS(2216), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2218), 2, + ACTIONS(2220), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2216), 4, + ACTIONS(2218), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, [83380] = 14, - ACTIONS(2210), 1, - anon_sym_STAR, - ACTIONS(2224), 1, + ACTIONS(2206), 1, anon_sym_in, - ACTIONS(2230), 1, + ACTIONS(2212), 1, + anon_sym_STAR, + ACTIONS(2226), 1, anon_sym_QMARK, - ACTIONS(2232), 1, + ACTIONS(2228), 1, anon_sym_AMP_AMP, - ACTIONS(2234), 1, + ACTIONS(2230), 1, anon_sym_PIPE_PIPE, - ACTIONS(2240), 1, + ACTIONS(2252), 1, anon_sym_PIPE, - ACTIONS(2242), 1, + ACTIONS(2254), 1, anon_sym_PIPE_AMP, - ACTIONS(2320), 1, - anon_sym_COLON, - ACTIONS(2206), 2, + ACTIONS(2322), 1, + anon_sym_RPAREN, + ACTIONS(2208), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2208), 2, + ACTIONS(2210), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2212), 2, + ACTIONS(2214), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2214), 2, + ACTIONS(2216), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2218), 2, + ACTIONS(2220), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2216), 4, + ACTIONS(2218), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, [83431] = 14, - ACTIONS(2210), 1, - anon_sym_STAR, - ACTIONS(2224), 1, + ACTIONS(2206), 1, anon_sym_in, - ACTIONS(2230), 1, + ACTIONS(2212), 1, + anon_sym_STAR, + ACTIONS(2226), 1, anon_sym_QMARK, - ACTIONS(2232), 1, + ACTIONS(2228), 1, anon_sym_AMP_AMP, - ACTIONS(2234), 1, + ACTIONS(2230), 1, anon_sym_PIPE_PIPE, - ACTIONS(2240), 1, + ACTIONS(2252), 1, anon_sym_PIPE, - ACTIONS(2242), 1, + ACTIONS(2254), 1, anon_sym_PIPE_AMP, - ACTIONS(2322), 1, + ACTIONS(2324), 1, anon_sym_RPAREN, - ACTIONS(2206), 2, + ACTIONS(2208), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2208), 2, + ACTIONS(2210), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2212), 2, + ACTIONS(2214), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2214), 2, + ACTIONS(2216), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2218), 2, + ACTIONS(2220), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2216), 4, + ACTIONS(2218), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, [83482] = 14, - ACTIONS(2210), 1, - anon_sym_STAR, - ACTIONS(2224), 1, + ACTIONS(2206), 1, anon_sym_in, - ACTIONS(2230), 1, + ACTIONS(2212), 1, + anon_sym_STAR, + ACTIONS(2226), 1, anon_sym_QMARK, - ACTIONS(2232), 1, + ACTIONS(2228), 1, anon_sym_AMP_AMP, - ACTIONS(2234), 1, + ACTIONS(2230), 1, anon_sym_PIPE_PIPE, - ACTIONS(2240), 1, + ACTIONS(2252), 1, anon_sym_PIPE, - ACTIONS(2242), 1, + ACTIONS(2254), 1, anon_sym_PIPE_AMP, - ACTIONS(2324), 1, + ACTIONS(2326), 1, anon_sym_RPAREN, - ACTIONS(2206), 2, + ACTIONS(2208), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2208), 2, + ACTIONS(2210), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2212), 2, + ACTIONS(2214), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2214), 2, + ACTIONS(2216), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2218), 2, + ACTIONS(2220), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2216), 4, + ACTIONS(2218), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, [83533] = 14, - ACTIONS(2210), 1, - anon_sym_STAR, - ACTIONS(2224), 1, + ACTIONS(2206), 1, anon_sym_in, - ACTIONS(2230), 1, + ACTIONS(2212), 1, + anon_sym_STAR, + ACTIONS(2226), 1, anon_sym_QMARK, - ACTIONS(2232), 1, + ACTIONS(2228), 1, anon_sym_AMP_AMP, - ACTIONS(2234), 1, + ACTIONS(2230), 1, anon_sym_PIPE_PIPE, - ACTIONS(2240), 1, + ACTIONS(2252), 1, anon_sym_PIPE, - ACTIONS(2242), 1, + ACTIONS(2254), 1, anon_sym_PIPE_AMP, - ACTIONS(2326), 1, - anon_sym_RPAREN, - ACTIONS(2206), 2, + ACTIONS(2328), 1, + anon_sym_SEMI, + ACTIONS(2208), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2208), 2, + ACTIONS(2210), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2212), 2, + ACTIONS(2214), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2214), 2, + ACTIONS(2216), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2218), 2, + ACTIONS(2220), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2216), 4, + ACTIONS(2218), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, [83584] = 14, - ACTIONS(2210), 1, - anon_sym_STAR, - ACTIONS(2224), 1, + ACTIONS(2206), 1, anon_sym_in, - ACTIONS(2230), 1, + ACTIONS(2212), 1, + anon_sym_STAR, + ACTIONS(2226), 1, anon_sym_QMARK, - ACTIONS(2232), 1, + ACTIONS(2228), 1, anon_sym_AMP_AMP, - ACTIONS(2234), 1, + ACTIONS(2230), 1, anon_sym_PIPE_PIPE, - ACTIONS(2240), 1, + ACTIONS(2252), 1, anon_sym_PIPE, - ACTIONS(2242), 1, + ACTIONS(2254), 1, anon_sym_PIPE_AMP, - ACTIONS(2328), 1, - anon_sym_RPAREN, - ACTIONS(2206), 2, + ACTIONS(2330), 1, + anon_sym_SEMI, + ACTIONS(2208), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2208), 2, + ACTIONS(2210), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2212), 2, + ACTIONS(2214), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2214), 2, + ACTIONS(2216), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2218), 2, + ACTIONS(2220), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2216), 4, + ACTIONS(2218), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, [83635] = 14, - ACTIONS(2210), 1, - anon_sym_STAR, - ACTIONS(2224), 1, + ACTIONS(2206), 1, anon_sym_in, - ACTIONS(2230), 1, + ACTIONS(2212), 1, + anon_sym_STAR, + ACTIONS(2226), 1, anon_sym_QMARK, - ACTIONS(2232), 1, + ACTIONS(2228), 1, anon_sym_AMP_AMP, - ACTIONS(2234), 1, + ACTIONS(2230), 1, anon_sym_PIPE_PIPE, - ACTIONS(2240), 1, + ACTIONS(2252), 1, anon_sym_PIPE, - ACTIONS(2242), 1, + ACTIONS(2254), 1, anon_sym_PIPE_AMP, - ACTIONS(2330), 1, - anon_sym_SEMI, - ACTIONS(2206), 2, + ACTIONS(2332), 1, + anon_sym_RPAREN, + ACTIONS(2208), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2208), 2, + ACTIONS(2210), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2212), 2, + ACTIONS(2214), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2214), 2, + ACTIONS(2216), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2218), 2, + ACTIONS(2220), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2216), 4, + ACTIONS(2218), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, [83686] = 14, - ACTIONS(2210), 1, - anon_sym_STAR, - ACTIONS(2224), 1, + ACTIONS(2206), 1, anon_sym_in, - ACTIONS(2230), 1, + ACTIONS(2212), 1, + anon_sym_STAR, + ACTIONS(2226), 1, anon_sym_QMARK, - ACTIONS(2232), 1, + ACTIONS(2228), 1, anon_sym_AMP_AMP, - ACTIONS(2234), 1, + ACTIONS(2230), 1, anon_sym_PIPE_PIPE, - ACTIONS(2240), 1, + ACTIONS(2252), 1, anon_sym_PIPE, - ACTIONS(2242), 1, + ACTIONS(2254), 1, anon_sym_PIPE_AMP, - ACTIONS(2332), 1, - anon_sym_RPAREN, - ACTIONS(2206), 2, + ACTIONS(2334), 1, + anon_sym_SEMI, + ACTIONS(2208), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2208), 2, + ACTIONS(2210), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2212), 2, + ACTIONS(2214), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2214), 2, + ACTIONS(2216), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2218), 2, + ACTIONS(2220), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2216), 4, + ACTIONS(2218), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, [83737] = 14, - ACTIONS(2210), 1, - anon_sym_STAR, - ACTIONS(2224), 1, + ACTIONS(2206), 1, anon_sym_in, - ACTIONS(2230), 1, + ACTIONS(2212), 1, + anon_sym_STAR, + ACTIONS(2226), 1, anon_sym_QMARK, - ACTIONS(2232), 1, + ACTIONS(2228), 1, anon_sym_AMP_AMP, - ACTIONS(2234), 1, + ACTIONS(2230), 1, anon_sym_PIPE_PIPE, - ACTIONS(2240), 1, + ACTIONS(2252), 1, anon_sym_PIPE, - ACTIONS(2242), 1, + ACTIONS(2254), 1, anon_sym_PIPE_AMP, - ACTIONS(2334), 1, - anon_sym_COLON, - ACTIONS(2206), 2, + ACTIONS(2336), 1, + anon_sym_RPAREN, + ACTIONS(2208), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2208), 2, + ACTIONS(2210), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2212), 2, + ACTIONS(2214), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2214), 2, + ACTIONS(2216), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2218), 2, + ACTIONS(2220), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2216), 4, + ACTIONS(2218), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, [83788] = 14, - ACTIONS(2210), 1, - anon_sym_STAR, - ACTIONS(2224), 1, + ACTIONS(2206), 1, anon_sym_in, - ACTIONS(2230), 1, + ACTIONS(2212), 1, + anon_sym_STAR, + ACTIONS(2226), 1, anon_sym_QMARK, - ACTIONS(2232), 1, + ACTIONS(2228), 1, anon_sym_AMP_AMP, - ACTIONS(2234), 1, + ACTIONS(2230), 1, anon_sym_PIPE_PIPE, - ACTIONS(2240), 1, + ACTIONS(2252), 1, anon_sym_PIPE, - ACTIONS(2242), 1, + ACTIONS(2254), 1, anon_sym_PIPE_AMP, - ACTIONS(2336), 1, + ACTIONS(2338), 1, anon_sym_RPAREN, - ACTIONS(2206), 2, + ACTIONS(2208), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2208), 2, + ACTIONS(2210), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2212), 2, + ACTIONS(2214), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2214), 2, + ACTIONS(2216), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2218), 2, + ACTIONS(2220), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2216), 4, + ACTIONS(2218), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, [83839] = 14, - ACTIONS(2210), 1, - anon_sym_STAR, - ACTIONS(2224), 1, + ACTIONS(2206), 1, anon_sym_in, - ACTIONS(2230), 1, + ACTIONS(2212), 1, + anon_sym_STAR, + ACTIONS(2226), 1, anon_sym_QMARK, - ACTIONS(2232), 1, + ACTIONS(2228), 1, anon_sym_AMP_AMP, - ACTIONS(2234), 1, + ACTIONS(2230), 1, anon_sym_PIPE_PIPE, - ACTIONS(2240), 1, + ACTIONS(2252), 1, anon_sym_PIPE, - ACTIONS(2242), 1, + ACTIONS(2254), 1, anon_sym_PIPE_AMP, - ACTIONS(2338), 1, + ACTIONS(2340), 1, anon_sym_RPAREN, - ACTIONS(2206), 2, + ACTIONS(2208), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2208), 2, + ACTIONS(2210), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2212), 2, + ACTIONS(2214), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2214), 2, + ACTIONS(2216), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2218), 2, + ACTIONS(2220), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2216), 4, + ACTIONS(2218), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, [83890] = 14, - ACTIONS(2210), 1, - anon_sym_STAR, - ACTIONS(2224), 1, + ACTIONS(2206), 1, anon_sym_in, - ACTIONS(2230), 1, + ACTIONS(2212), 1, + anon_sym_STAR, + ACTIONS(2226), 1, anon_sym_QMARK, - ACTIONS(2232), 1, + ACTIONS(2228), 1, anon_sym_AMP_AMP, - ACTIONS(2234), 1, + ACTIONS(2230), 1, anon_sym_PIPE_PIPE, - ACTIONS(2240), 1, + ACTIONS(2252), 1, anon_sym_PIPE, - ACTIONS(2242), 1, + ACTIONS(2254), 1, anon_sym_PIPE_AMP, - ACTIONS(2340), 1, - anon_sym_SEMI, - ACTIONS(2206), 2, + ACTIONS(2342), 1, + anon_sym_RPAREN, + ACTIONS(2208), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2208), 2, + ACTIONS(2210), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2212), 2, + ACTIONS(2214), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2214), 2, + ACTIONS(2216), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2218), 2, + ACTIONS(2220), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2216), 4, + ACTIONS(2218), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, [83941] = 14, - ACTIONS(2210), 1, - anon_sym_STAR, - ACTIONS(2224), 1, + ACTIONS(2206), 1, anon_sym_in, - ACTIONS(2230), 1, + ACTIONS(2212), 1, + anon_sym_STAR, + ACTIONS(2226), 1, anon_sym_QMARK, - ACTIONS(2232), 1, + ACTIONS(2228), 1, anon_sym_AMP_AMP, - ACTIONS(2234), 1, + ACTIONS(2230), 1, anon_sym_PIPE_PIPE, - ACTIONS(2240), 1, + ACTIONS(2252), 1, anon_sym_PIPE, - ACTIONS(2242), 1, + ACTIONS(2254), 1, anon_sym_PIPE_AMP, - ACTIONS(2342), 1, - anon_sym_RPAREN, - ACTIONS(2206), 2, + ACTIONS(2344), 1, + anon_sym_SEMI, + ACTIONS(2208), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2208), 2, + ACTIONS(2210), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2212), 2, + ACTIONS(2214), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2214), 2, + ACTIONS(2216), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2218), 2, + ACTIONS(2220), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2216), 4, + ACTIONS(2218), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, [83992] = 14, - ACTIONS(2210), 1, - anon_sym_STAR, - ACTIONS(2224), 1, + ACTIONS(2206), 1, anon_sym_in, - ACTIONS(2230), 1, + ACTIONS(2212), 1, + anon_sym_STAR, + ACTIONS(2226), 1, anon_sym_QMARK, - ACTIONS(2232), 1, + ACTIONS(2228), 1, anon_sym_AMP_AMP, - ACTIONS(2234), 1, + ACTIONS(2230), 1, anon_sym_PIPE_PIPE, - ACTIONS(2240), 1, + ACTIONS(2252), 1, anon_sym_PIPE, - ACTIONS(2242), 1, + ACTIONS(2254), 1, anon_sym_PIPE_AMP, - ACTIONS(2344), 1, + ACTIONS(2346), 1, anon_sym_RPAREN, - ACTIONS(2206), 2, + ACTIONS(2208), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2208), 2, + ACTIONS(2210), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2212), 2, + ACTIONS(2214), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2214), 2, + ACTIONS(2216), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2218), 2, + ACTIONS(2220), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2216), 4, + ACTIONS(2218), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, [84043] = 14, - ACTIONS(2210), 1, - anon_sym_STAR, - ACTIONS(2224), 1, + ACTIONS(2206), 1, anon_sym_in, - ACTIONS(2230), 1, + ACTIONS(2212), 1, + anon_sym_STAR, + ACTIONS(2226), 1, anon_sym_QMARK, - ACTIONS(2232), 1, + ACTIONS(2228), 1, anon_sym_AMP_AMP, - ACTIONS(2234), 1, + ACTIONS(2230), 1, anon_sym_PIPE_PIPE, - ACTIONS(2240), 1, + ACTIONS(2252), 1, anon_sym_PIPE, - ACTIONS(2242), 1, + ACTIONS(2254), 1, anon_sym_PIPE_AMP, - ACTIONS(2346), 1, + ACTIONS(2348), 1, anon_sym_RPAREN, - ACTIONS(2206), 2, + ACTIONS(2208), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2208), 2, + ACTIONS(2210), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2212), 2, + ACTIONS(2214), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2214), 2, + ACTIONS(2216), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2218), 2, + ACTIONS(2220), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2216), 4, + ACTIONS(2218), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, [84094] = 14, - ACTIONS(2210), 1, - anon_sym_STAR, - ACTIONS(2224), 1, + ACTIONS(2206), 1, anon_sym_in, - ACTIONS(2230), 1, + ACTIONS(2212), 1, + anon_sym_STAR, + ACTIONS(2226), 1, anon_sym_QMARK, - ACTIONS(2232), 1, + ACTIONS(2228), 1, anon_sym_AMP_AMP, - ACTIONS(2234), 1, + ACTIONS(2230), 1, anon_sym_PIPE_PIPE, - ACTIONS(2240), 1, + ACTIONS(2252), 1, anon_sym_PIPE, - ACTIONS(2242), 1, + ACTIONS(2254), 1, anon_sym_PIPE_AMP, - ACTIONS(2348), 1, - anon_sym_RPAREN, - ACTIONS(2206), 2, + ACTIONS(2350), 1, + anon_sym_COLON, + ACTIONS(2208), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2208), 2, + ACTIONS(2210), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2212), 2, + ACTIONS(2214), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2214), 2, + ACTIONS(2216), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2218), 2, + ACTIONS(2220), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2216), 4, + ACTIONS(2218), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, [84145] = 14, - ACTIONS(2210), 1, - anon_sym_STAR, - ACTIONS(2224), 1, + ACTIONS(2206), 1, anon_sym_in, - ACTIONS(2230), 1, + ACTIONS(2212), 1, + anon_sym_STAR, + ACTIONS(2226), 1, anon_sym_QMARK, - ACTIONS(2232), 1, + ACTIONS(2228), 1, anon_sym_AMP_AMP, - ACTIONS(2234), 1, + ACTIONS(2230), 1, anon_sym_PIPE_PIPE, - ACTIONS(2240), 1, + ACTIONS(2252), 1, anon_sym_PIPE, - ACTIONS(2242), 1, + ACTIONS(2254), 1, anon_sym_PIPE_AMP, - ACTIONS(2350), 1, - anon_sym_RPAREN, - ACTIONS(2206), 2, + ACTIONS(2352), 1, + anon_sym_COLON, + ACTIONS(2208), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2208), 2, + ACTIONS(2210), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2212), 2, + ACTIONS(2214), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2214), 2, + ACTIONS(2216), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2218), 2, + ACTIONS(2220), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2216), 4, + ACTIONS(2218), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, [84196] = 14, - ACTIONS(2210), 1, - anon_sym_STAR, - ACTIONS(2224), 1, + ACTIONS(2206), 1, anon_sym_in, - ACTIONS(2230), 1, + ACTIONS(2212), 1, + anon_sym_STAR, + ACTIONS(2226), 1, anon_sym_QMARK, - ACTIONS(2232), 1, + ACTIONS(2228), 1, anon_sym_AMP_AMP, - ACTIONS(2234), 1, + ACTIONS(2230), 1, anon_sym_PIPE_PIPE, - ACTIONS(2240), 1, + ACTIONS(2252), 1, anon_sym_PIPE, - ACTIONS(2242), 1, + ACTIONS(2254), 1, anon_sym_PIPE_AMP, - ACTIONS(2352), 1, + ACTIONS(2354), 1, anon_sym_RPAREN, - ACTIONS(2206), 2, + ACTIONS(2208), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2208), 2, + ACTIONS(2210), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2212), 2, + ACTIONS(2214), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2214), 2, + ACTIONS(2216), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2218), 2, + ACTIONS(2220), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2216), 4, + ACTIONS(2218), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, [84247] = 14, - ACTIONS(2210), 1, - anon_sym_STAR, - ACTIONS(2224), 1, + ACTIONS(2206), 1, anon_sym_in, - ACTIONS(2230), 1, + ACTIONS(2212), 1, + anon_sym_STAR, + ACTIONS(2226), 1, anon_sym_QMARK, - ACTIONS(2232), 1, + ACTIONS(2228), 1, anon_sym_AMP_AMP, - ACTIONS(2234), 1, + ACTIONS(2230), 1, anon_sym_PIPE_PIPE, - ACTIONS(2240), 1, + ACTIONS(2252), 1, anon_sym_PIPE, - ACTIONS(2242), 1, + ACTIONS(2254), 1, anon_sym_PIPE_AMP, - ACTIONS(2354), 1, + ACTIONS(2356), 1, anon_sym_RPAREN, - ACTIONS(2206), 2, + ACTIONS(2208), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2208), 2, + ACTIONS(2210), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2212), 2, + ACTIONS(2214), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2214), 2, + ACTIONS(2216), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2218), 2, + ACTIONS(2220), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2216), 4, + ACTIONS(2218), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, [84298] = 14, - ACTIONS(2210), 1, - anon_sym_STAR, - ACTIONS(2224), 1, + ACTIONS(2206), 1, anon_sym_in, - ACTIONS(2230), 1, + ACTIONS(2212), 1, + anon_sym_STAR, + ACTIONS(2226), 1, anon_sym_QMARK, - ACTIONS(2232), 1, + ACTIONS(2228), 1, anon_sym_AMP_AMP, - ACTIONS(2234), 1, + ACTIONS(2230), 1, anon_sym_PIPE_PIPE, - ACTIONS(2240), 1, + ACTIONS(2252), 1, anon_sym_PIPE, - ACTIONS(2242), 1, + ACTIONS(2254), 1, anon_sym_PIPE_AMP, - ACTIONS(2356), 1, + ACTIONS(2358), 1, anon_sym_COLON, - ACTIONS(2206), 2, + ACTIONS(2208), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2208), 2, + ACTIONS(2210), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2212), 2, + ACTIONS(2214), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2214), 2, + ACTIONS(2216), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2218), 2, + ACTIONS(2220), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2216), 4, + ACTIONS(2218), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, [84349] = 14, - ACTIONS(2210), 1, - anon_sym_STAR, - ACTIONS(2224), 1, + ACTIONS(2206), 1, anon_sym_in, - ACTIONS(2230), 1, + ACTIONS(2212), 1, + anon_sym_STAR, + ACTIONS(2226), 1, anon_sym_QMARK, - ACTIONS(2232), 1, + ACTIONS(2228), 1, anon_sym_AMP_AMP, - ACTIONS(2234), 1, + ACTIONS(2230), 1, anon_sym_PIPE_PIPE, - ACTIONS(2240), 1, + ACTIONS(2252), 1, anon_sym_PIPE, - ACTIONS(2242), 1, + ACTIONS(2254), 1, anon_sym_PIPE_AMP, - ACTIONS(2358), 1, + ACTIONS(2360), 1, anon_sym_SEMI, - ACTIONS(2206), 2, + ACTIONS(2208), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2208), 2, + ACTIONS(2210), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2212), 2, + ACTIONS(2214), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2214), 2, + ACTIONS(2216), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2218), 2, + ACTIONS(2220), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2216), 4, + ACTIONS(2218), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, [84400] = 14, - ACTIONS(2210), 1, - anon_sym_STAR, - ACTIONS(2224), 1, + ACTIONS(2206), 1, anon_sym_in, - ACTIONS(2230), 1, + ACTIONS(2212), 1, + anon_sym_STAR, + ACTIONS(2226), 1, anon_sym_QMARK, - ACTIONS(2232), 1, + ACTIONS(2228), 1, anon_sym_AMP_AMP, - ACTIONS(2234), 1, + ACTIONS(2230), 1, anon_sym_PIPE_PIPE, - ACTIONS(2240), 1, + ACTIONS(2252), 1, anon_sym_PIPE, - ACTIONS(2242), 1, + ACTIONS(2254), 1, anon_sym_PIPE_AMP, - ACTIONS(2360), 1, + ACTIONS(2362), 1, anon_sym_RPAREN, - ACTIONS(2206), 2, + ACTIONS(2208), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2208), 2, + ACTIONS(2210), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2212), 2, + ACTIONS(2214), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2214), 2, + ACTIONS(2216), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2218), 2, + ACTIONS(2220), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2216), 4, + ACTIONS(2218), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, [84451] = 14, - ACTIONS(2210), 1, - anon_sym_STAR, - ACTIONS(2224), 1, + ACTIONS(2206), 1, anon_sym_in, - ACTIONS(2230), 1, + ACTIONS(2212), 1, + anon_sym_STAR, + ACTIONS(2226), 1, anon_sym_QMARK, - ACTIONS(2232), 1, + ACTIONS(2228), 1, anon_sym_AMP_AMP, - ACTIONS(2234), 1, + ACTIONS(2230), 1, anon_sym_PIPE_PIPE, - ACTIONS(2240), 1, + ACTIONS(2252), 1, anon_sym_PIPE, - ACTIONS(2242), 1, + ACTIONS(2254), 1, anon_sym_PIPE_AMP, - ACTIONS(2362), 1, - anon_sym_RPAREN, - ACTIONS(2206), 2, + ACTIONS(2364), 1, + anon_sym_SEMI, + ACTIONS(2208), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2208), 2, + ACTIONS(2210), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2212), 2, + ACTIONS(2214), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2214), 2, + ACTIONS(2216), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2218), 2, + ACTIONS(2220), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2216), 4, + ACTIONS(2218), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, [84502] = 14, - ACTIONS(2210), 1, - anon_sym_STAR, - ACTIONS(2224), 1, + ACTIONS(2206), 1, anon_sym_in, - ACTIONS(2230), 1, + ACTIONS(2212), 1, + anon_sym_STAR, + ACTIONS(2226), 1, anon_sym_QMARK, - ACTIONS(2232), 1, + ACTIONS(2228), 1, anon_sym_AMP_AMP, - ACTIONS(2234), 1, + ACTIONS(2230), 1, anon_sym_PIPE_PIPE, - ACTIONS(2240), 1, + ACTIONS(2252), 1, anon_sym_PIPE, - ACTIONS(2242), 1, + ACTIONS(2254), 1, anon_sym_PIPE_AMP, - ACTIONS(2364), 1, - anon_sym_RPAREN, - ACTIONS(2206), 2, + ACTIONS(2366), 1, + anon_sym_SEMI, + ACTIONS(2208), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2208), 2, + ACTIONS(2210), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2212), 2, + ACTIONS(2214), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2214), 2, + ACTIONS(2216), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2218), 2, + ACTIONS(2220), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2216), 4, + ACTIONS(2218), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, [84553] = 14, - ACTIONS(2210), 1, - anon_sym_STAR, - ACTIONS(2224), 1, + ACTIONS(2206), 1, anon_sym_in, - ACTIONS(2230), 1, + ACTIONS(2212), 1, + anon_sym_STAR, + ACTIONS(2226), 1, anon_sym_QMARK, - ACTIONS(2232), 1, + ACTIONS(2228), 1, anon_sym_AMP_AMP, - ACTIONS(2234), 1, + ACTIONS(2230), 1, anon_sym_PIPE_PIPE, - ACTIONS(2240), 1, + ACTIONS(2252), 1, anon_sym_PIPE, - ACTIONS(2242), 1, + ACTIONS(2254), 1, anon_sym_PIPE_AMP, - ACTIONS(2366), 1, + ACTIONS(2368), 1, anon_sym_SEMI, - ACTIONS(2206), 2, + ACTIONS(2208), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2208), 2, + ACTIONS(2210), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2212), 2, + ACTIONS(2214), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2214), 2, + ACTIONS(2216), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2218), 2, + ACTIONS(2220), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2216), 4, + ACTIONS(2218), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, [84604] = 14, - ACTIONS(2210), 1, - anon_sym_STAR, - ACTIONS(2224), 1, + ACTIONS(2206), 1, anon_sym_in, - ACTIONS(2230), 1, + ACTIONS(2212), 1, + anon_sym_STAR, + ACTIONS(2226), 1, anon_sym_QMARK, - ACTIONS(2232), 1, + ACTIONS(2228), 1, anon_sym_AMP_AMP, - ACTIONS(2234), 1, + ACTIONS(2230), 1, anon_sym_PIPE_PIPE, - ACTIONS(2240), 1, + ACTIONS(2252), 1, anon_sym_PIPE, - ACTIONS(2242), 1, + ACTIONS(2254), 1, anon_sym_PIPE_AMP, - ACTIONS(2368), 1, + ACTIONS(2370), 1, anon_sym_SEMI, - ACTIONS(2206), 2, + ACTIONS(2208), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2208), 2, + ACTIONS(2210), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2212), 2, + ACTIONS(2214), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2214), 2, + ACTIONS(2216), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2218), 2, + ACTIONS(2220), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2216), 4, + ACTIONS(2218), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, [84655] = 14, - ACTIONS(2210), 1, - anon_sym_STAR, - ACTIONS(2224), 1, + ACTIONS(2206), 1, anon_sym_in, - ACTIONS(2230), 1, + ACTIONS(2212), 1, + anon_sym_STAR, + ACTIONS(2226), 1, anon_sym_QMARK, - ACTIONS(2232), 1, + ACTIONS(2228), 1, anon_sym_AMP_AMP, - ACTIONS(2234), 1, + ACTIONS(2230), 1, anon_sym_PIPE_PIPE, - ACTIONS(2240), 1, + ACTIONS(2252), 1, anon_sym_PIPE, - ACTIONS(2242), 1, + ACTIONS(2254), 1, anon_sym_PIPE_AMP, - ACTIONS(2370), 1, + ACTIONS(2372), 1, anon_sym_RPAREN, - ACTIONS(2206), 2, + ACTIONS(2208), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2208), 2, + ACTIONS(2210), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2212), 2, + ACTIONS(2214), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2214), 2, + ACTIONS(2216), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2218), 2, + ACTIONS(2220), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2216), 4, + ACTIONS(2218), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, [84706] = 14, - ACTIONS(2210), 1, - anon_sym_STAR, - ACTIONS(2224), 1, + ACTIONS(2206), 1, anon_sym_in, - ACTIONS(2230), 1, + ACTIONS(2212), 1, + anon_sym_STAR, + ACTIONS(2226), 1, anon_sym_QMARK, - ACTIONS(2232), 1, + ACTIONS(2228), 1, anon_sym_AMP_AMP, - ACTIONS(2234), 1, + ACTIONS(2230), 1, anon_sym_PIPE_PIPE, - ACTIONS(2240), 1, + ACTIONS(2252), 1, anon_sym_PIPE, - ACTIONS(2242), 1, + ACTIONS(2254), 1, anon_sym_PIPE_AMP, - ACTIONS(2372), 1, - anon_sym_RPAREN, - ACTIONS(2206), 2, + ACTIONS(2374), 1, + anon_sym_COLON, + ACTIONS(2208), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2208), 2, + ACTIONS(2210), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2212), 2, + ACTIONS(2214), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2214), 2, + ACTIONS(2216), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2218), 2, + ACTIONS(2220), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2216), 4, + ACTIONS(2218), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, [84757] = 14, - ACTIONS(2210), 1, - anon_sym_STAR, - ACTIONS(2224), 1, + ACTIONS(2206), 1, anon_sym_in, - ACTIONS(2230), 1, + ACTIONS(2212), 1, + anon_sym_STAR, + ACTIONS(2226), 1, anon_sym_QMARK, - ACTIONS(2232), 1, + ACTIONS(2228), 1, anon_sym_AMP_AMP, - ACTIONS(2234), 1, + ACTIONS(2230), 1, anon_sym_PIPE_PIPE, - ACTIONS(2240), 1, + ACTIONS(2252), 1, anon_sym_PIPE, - ACTIONS(2242), 1, + ACTIONS(2254), 1, anon_sym_PIPE_AMP, - ACTIONS(2374), 1, - anon_sym_COLON, - ACTIONS(2206), 2, + ACTIONS(2376), 1, + anon_sym_RPAREN, + ACTIONS(2208), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2208), 2, + ACTIONS(2210), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2212), 2, + ACTIONS(2214), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2214), 2, + ACTIONS(2216), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2218), 2, + ACTIONS(2220), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2216), 4, + ACTIONS(2218), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, [84808] = 14, - ACTIONS(2210), 1, - anon_sym_STAR, - ACTIONS(2224), 1, + ACTIONS(2206), 1, anon_sym_in, - ACTIONS(2230), 1, + ACTIONS(2212), 1, + anon_sym_STAR, + ACTIONS(2226), 1, anon_sym_QMARK, - ACTIONS(2232), 1, + ACTIONS(2228), 1, anon_sym_AMP_AMP, - ACTIONS(2234), 1, + ACTIONS(2230), 1, anon_sym_PIPE_PIPE, - ACTIONS(2240), 1, + ACTIONS(2252), 1, anon_sym_PIPE, - ACTIONS(2242), 1, + ACTIONS(2254), 1, anon_sym_PIPE_AMP, - ACTIONS(2376), 1, + ACTIONS(2378), 1, anon_sym_RPAREN, - ACTIONS(2206), 2, + ACTIONS(2208), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2208), 2, + ACTIONS(2210), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2212), 2, + ACTIONS(2214), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2214), 2, + ACTIONS(2216), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2218), 2, + ACTIONS(2220), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2216), 4, + ACTIONS(2218), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, [84859] = 14, - ACTIONS(2210), 1, - anon_sym_STAR, - ACTIONS(2224), 1, + ACTIONS(2206), 1, anon_sym_in, - ACTIONS(2230), 1, + ACTIONS(2212), 1, + anon_sym_STAR, + ACTIONS(2226), 1, anon_sym_QMARK, - ACTIONS(2232), 1, + ACTIONS(2228), 1, anon_sym_AMP_AMP, - ACTIONS(2234), 1, + ACTIONS(2230), 1, anon_sym_PIPE_PIPE, - ACTIONS(2240), 1, + ACTIONS(2252), 1, anon_sym_PIPE, - ACTIONS(2242), 1, + ACTIONS(2254), 1, anon_sym_PIPE_AMP, - ACTIONS(2378), 1, + ACTIONS(2380), 1, anon_sym_RPAREN, - ACTIONS(2206), 2, + ACTIONS(2208), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2208), 2, + ACTIONS(2210), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2212), 2, + ACTIONS(2214), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2214), 2, + ACTIONS(2216), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2218), 2, + ACTIONS(2220), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2216), 4, + ACTIONS(2218), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, [84910] = 14, - ACTIONS(2210), 1, - anon_sym_STAR, - ACTIONS(2224), 1, + ACTIONS(2206), 1, anon_sym_in, - ACTIONS(2230), 1, + ACTIONS(2212), 1, + anon_sym_STAR, + ACTIONS(2226), 1, anon_sym_QMARK, - ACTIONS(2232), 1, + ACTIONS(2228), 1, anon_sym_AMP_AMP, - ACTIONS(2234), 1, + ACTIONS(2230), 1, anon_sym_PIPE_PIPE, - ACTIONS(2240), 1, + ACTIONS(2252), 1, anon_sym_PIPE, - ACTIONS(2242), 1, + ACTIONS(2254), 1, anon_sym_PIPE_AMP, - ACTIONS(2380), 1, - anon_sym_RPAREN, - ACTIONS(2206), 2, + ACTIONS(2382), 1, + anon_sym_COLON, + ACTIONS(2208), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2208), 2, + ACTIONS(2210), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2212), 2, + ACTIONS(2214), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2214), 2, + ACTIONS(2216), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2218), 2, + ACTIONS(2220), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2216), 4, + ACTIONS(2218), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, [84961] = 14, - ACTIONS(2210), 1, - anon_sym_STAR, - ACTIONS(2224), 1, + ACTIONS(2206), 1, anon_sym_in, - ACTIONS(2230), 1, + ACTIONS(2212), 1, + anon_sym_STAR, + ACTIONS(2226), 1, anon_sym_QMARK, - ACTIONS(2232), 1, + ACTIONS(2228), 1, anon_sym_AMP_AMP, - ACTIONS(2234), 1, + ACTIONS(2230), 1, anon_sym_PIPE_PIPE, - ACTIONS(2240), 1, + ACTIONS(2252), 1, anon_sym_PIPE, - ACTIONS(2242), 1, + ACTIONS(2254), 1, anon_sym_PIPE_AMP, - ACTIONS(2382), 1, - anon_sym_RPAREN, - ACTIONS(2206), 2, + ACTIONS(2384), 1, + anon_sym_SEMI, + ACTIONS(2208), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2208), 2, + ACTIONS(2210), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2212), 2, + ACTIONS(2214), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2214), 2, + ACTIONS(2216), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2218), 2, + ACTIONS(2220), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2216), 4, + ACTIONS(2218), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, [85012] = 14, - ACTIONS(2210), 1, - anon_sym_STAR, - ACTIONS(2224), 1, + ACTIONS(2206), 1, anon_sym_in, - ACTIONS(2230), 1, + ACTIONS(2212), 1, + anon_sym_STAR, + ACTIONS(2226), 1, anon_sym_QMARK, - ACTIONS(2232), 1, + ACTIONS(2228), 1, anon_sym_AMP_AMP, - ACTIONS(2234), 1, + ACTIONS(2230), 1, anon_sym_PIPE_PIPE, - ACTIONS(2240), 1, + ACTIONS(2252), 1, anon_sym_PIPE, - ACTIONS(2242), 1, + ACTIONS(2254), 1, anon_sym_PIPE_AMP, - ACTIONS(2384), 1, - anon_sym_RPAREN, - ACTIONS(2206), 2, + ACTIONS(2386), 1, + anon_sym_COLON, + ACTIONS(2208), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2208), 2, + ACTIONS(2210), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2212), 2, + ACTIONS(2214), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2214), 2, + ACTIONS(2216), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2218), 2, + ACTIONS(2220), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2216), 4, + ACTIONS(2218), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, [85063] = 14, - ACTIONS(2210), 1, - anon_sym_STAR, - ACTIONS(2224), 1, + ACTIONS(2206), 1, anon_sym_in, - ACTIONS(2230), 1, + ACTIONS(2212), 1, + anon_sym_STAR, + ACTIONS(2226), 1, anon_sym_QMARK, - ACTIONS(2232), 1, + ACTIONS(2228), 1, anon_sym_AMP_AMP, - ACTIONS(2234), 1, + ACTIONS(2230), 1, anon_sym_PIPE_PIPE, - ACTIONS(2240), 1, + ACTIONS(2252), 1, anon_sym_PIPE, - ACTIONS(2242), 1, + ACTIONS(2254), 1, anon_sym_PIPE_AMP, - ACTIONS(2386), 1, - anon_sym_RPAREN, - ACTIONS(2206), 2, + ACTIONS(2388), 1, + anon_sym_COLON, + ACTIONS(2208), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2208), 2, + ACTIONS(2210), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2212), 2, + ACTIONS(2214), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2214), 2, + ACTIONS(2216), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2218), 2, + ACTIONS(2220), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2216), 4, + ACTIONS(2218), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, [85114] = 14, - ACTIONS(2210), 1, - anon_sym_STAR, - ACTIONS(2224), 1, + ACTIONS(2206), 1, anon_sym_in, - ACTIONS(2230), 1, + ACTIONS(2212), 1, + anon_sym_STAR, + ACTIONS(2226), 1, anon_sym_QMARK, - ACTIONS(2232), 1, + ACTIONS(2228), 1, anon_sym_AMP_AMP, - ACTIONS(2234), 1, + ACTIONS(2230), 1, anon_sym_PIPE_PIPE, - ACTIONS(2240), 1, + ACTIONS(2252), 1, anon_sym_PIPE, - ACTIONS(2242), 1, + ACTIONS(2254), 1, anon_sym_PIPE_AMP, - ACTIONS(2388), 1, + ACTIONS(2390), 1, anon_sym_RPAREN, - ACTIONS(2206), 2, + ACTIONS(2208), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2208), 2, + ACTIONS(2210), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2212), 2, + ACTIONS(2214), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2214), 2, + ACTIONS(2216), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2218), 2, + ACTIONS(2220), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2216), 4, + ACTIONS(2218), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, [85165] = 14, - ACTIONS(2210), 1, - anon_sym_STAR, - ACTIONS(2224), 1, + ACTIONS(2206), 1, anon_sym_in, - ACTIONS(2230), 1, + ACTIONS(2212), 1, + anon_sym_STAR, + ACTIONS(2226), 1, anon_sym_QMARK, - ACTIONS(2232), 1, + ACTIONS(2228), 1, anon_sym_AMP_AMP, - ACTIONS(2234), 1, + ACTIONS(2230), 1, anon_sym_PIPE_PIPE, - ACTIONS(2240), 1, + ACTIONS(2252), 1, anon_sym_PIPE, - ACTIONS(2242), 1, + ACTIONS(2254), 1, anon_sym_PIPE_AMP, - ACTIONS(2390), 1, + ACTIONS(2392), 1, anon_sym_RPAREN, - ACTIONS(2206), 2, + ACTIONS(2208), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2208), 2, + ACTIONS(2210), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2212), 2, + ACTIONS(2214), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2214), 2, + ACTIONS(2216), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2218), 2, + ACTIONS(2220), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2216), 4, + ACTIONS(2218), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, [85216] = 14, - ACTIONS(2210), 1, - anon_sym_STAR, - ACTIONS(2224), 1, + ACTIONS(2206), 1, anon_sym_in, - ACTIONS(2230), 1, + ACTIONS(2212), 1, + anon_sym_STAR, + ACTIONS(2226), 1, anon_sym_QMARK, - ACTIONS(2232), 1, + ACTIONS(2228), 1, anon_sym_AMP_AMP, - ACTIONS(2234), 1, + ACTIONS(2230), 1, anon_sym_PIPE_PIPE, - ACTIONS(2240), 1, + ACTIONS(2252), 1, anon_sym_PIPE, - ACTIONS(2242), 1, + ACTIONS(2254), 1, anon_sym_PIPE_AMP, - ACTIONS(2392), 1, + ACTIONS(2394), 1, anon_sym_SEMI, - ACTIONS(2206), 2, + ACTIONS(2208), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2208), 2, + ACTIONS(2210), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2212), 2, + ACTIONS(2214), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2214), 2, + ACTIONS(2216), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2218), 2, + ACTIONS(2220), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2216), 4, + ACTIONS(2218), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, [85267] = 14, - ACTIONS(2210), 1, - anon_sym_STAR, - ACTIONS(2224), 1, + ACTIONS(2206), 1, anon_sym_in, - ACTIONS(2230), 1, + ACTIONS(2212), 1, + anon_sym_STAR, + ACTIONS(2226), 1, anon_sym_QMARK, - ACTIONS(2232), 1, + ACTIONS(2228), 1, anon_sym_AMP_AMP, - ACTIONS(2234), 1, + ACTIONS(2230), 1, anon_sym_PIPE_PIPE, - ACTIONS(2240), 1, + ACTIONS(2252), 1, anon_sym_PIPE, - ACTIONS(2242), 1, + ACTIONS(2254), 1, anon_sym_PIPE_AMP, - ACTIONS(2394), 1, + ACTIONS(2396), 1, anon_sym_RPAREN, - ACTIONS(2206), 2, + ACTIONS(2208), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2208), 2, + ACTIONS(2210), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2212), 2, + ACTIONS(2214), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2214), 2, + ACTIONS(2216), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2218), 2, + ACTIONS(2220), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2216), 4, + ACTIONS(2218), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, [85318] = 14, - ACTIONS(2210), 1, - anon_sym_STAR, - ACTIONS(2224), 1, + ACTIONS(2206), 1, anon_sym_in, - ACTIONS(2230), 1, + ACTIONS(2212), 1, + anon_sym_STAR, + ACTIONS(2226), 1, anon_sym_QMARK, - ACTIONS(2232), 1, + ACTIONS(2228), 1, anon_sym_AMP_AMP, - ACTIONS(2234), 1, + ACTIONS(2230), 1, anon_sym_PIPE_PIPE, - ACTIONS(2240), 1, + ACTIONS(2252), 1, anon_sym_PIPE, - ACTIONS(2242), 1, + ACTIONS(2254), 1, anon_sym_PIPE_AMP, - ACTIONS(2396), 1, - anon_sym_SEMI, - ACTIONS(2206), 2, + ACTIONS(2398), 1, + anon_sym_RPAREN, + ACTIONS(2208), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2208), 2, + ACTIONS(2210), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2212), 2, + ACTIONS(2214), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2214), 2, + ACTIONS(2216), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2218), 2, + ACTIONS(2220), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2216), 4, + ACTIONS(2218), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, [85369] = 14, - ACTIONS(2210), 1, - anon_sym_STAR, - ACTIONS(2224), 1, + ACTIONS(2206), 1, anon_sym_in, - ACTIONS(2230), 1, + ACTIONS(2212), 1, + anon_sym_STAR, + ACTIONS(2226), 1, anon_sym_QMARK, - ACTIONS(2232), 1, + ACTIONS(2228), 1, anon_sym_AMP_AMP, - ACTIONS(2234), 1, + ACTIONS(2230), 1, anon_sym_PIPE_PIPE, - ACTIONS(2240), 1, + ACTIONS(2252), 1, anon_sym_PIPE, - ACTIONS(2242), 1, + ACTIONS(2254), 1, anon_sym_PIPE_AMP, - ACTIONS(2398), 1, - anon_sym_RPAREN, - ACTIONS(2206), 2, + ACTIONS(2400), 1, + anon_sym_COLON, + ACTIONS(2208), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2208), 2, + ACTIONS(2210), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2212), 2, + ACTIONS(2214), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2214), 2, + ACTIONS(2216), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2218), 2, + ACTIONS(2220), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2216), 4, + ACTIONS(2218), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, [85420] = 14, - ACTIONS(2210), 1, - anon_sym_STAR, - ACTIONS(2224), 1, + ACTIONS(2206), 1, anon_sym_in, - ACTIONS(2230), 1, + ACTIONS(2212), 1, + anon_sym_STAR, + ACTIONS(2226), 1, anon_sym_QMARK, - ACTIONS(2232), 1, + ACTIONS(2228), 1, anon_sym_AMP_AMP, - ACTIONS(2234), 1, + ACTIONS(2230), 1, anon_sym_PIPE_PIPE, - ACTIONS(2240), 1, + ACTIONS(2252), 1, anon_sym_PIPE, - ACTIONS(2242), 1, + ACTIONS(2254), 1, anon_sym_PIPE_AMP, - ACTIONS(2400), 1, + ACTIONS(2402), 1, anon_sym_SEMI, - ACTIONS(2206), 2, + ACTIONS(2208), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2208), 2, + ACTIONS(2210), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2212), 2, + ACTIONS(2214), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2214), 2, + ACTIONS(2216), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2218), 2, + ACTIONS(2220), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2216), 4, + ACTIONS(2218), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, [85471] = 14, - ACTIONS(2210), 1, - anon_sym_STAR, - ACTIONS(2224), 1, + ACTIONS(2206), 1, anon_sym_in, - ACTIONS(2230), 1, + ACTIONS(2212), 1, + anon_sym_STAR, + ACTIONS(2226), 1, anon_sym_QMARK, - ACTIONS(2232), 1, + ACTIONS(2228), 1, anon_sym_AMP_AMP, - ACTIONS(2234), 1, + ACTIONS(2230), 1, anon_sym_PIPE_PIPE, - ACTIONS(2240), 1, + ACTIONS(2252), 1, anon_sym_PIPE, - ACTIONS(2242), 1, + ACTIONS(2254), 1, anon_sym_PIPE_AMP, - ACTIONS(2402), 1, - anon_sym_RPAREN, - ACTIONS(2206), 2, + ACTIONS(2404), 1, + anon_sym_SEMI, + ACTIONS(2208), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2208), 2, + ACTIONS(2210), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2212), 2, + ACTIONS(2214), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2214), 2, + ACTIONS(2216), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2218), 2, + ACTIONS(2220), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2216), 4, + ACTIONS(2218), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, [85522] = 14, - ACTIONS(2210), 1, - anon_sym_STAR, - ACTIONS(2224), 1, + ACTIONS(2206), 1, anon_sym_in, - ACTIONS(2230), 1, + ACTIONS(2212), 1, + anon_sym_STAR, + ACTIONS(2226), 1, anon_sym_QMARK, - ACTIONS(2232), 1, + ACTIONS(2228), 1, anon_sym_AMP_AMP, - ACTIONS(2234), 1, + ACTIONS(2230), 1, anon_sym_PIPE_PIPE, - ACTIONS(2240), 1, + ACTIONS(2252), 1, anon_sym_PIPE, - ACTIONS(2242), 1, + ACTIONS(2254), 1, anon_sym_PIPE_AMP, - ACTIONS(2404), 1, + ACTIONS(2406), 1, anon_sym_RPAREN, - ACTIONS(2206), 2, + ACTIONS(2208), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2208), 2, + ACTIONS(2210), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2212), 2, + ACTIONS(2214), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2214), 2, + ACTIONS(2216), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2218), 2, + ACTIONS(2220), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2216), 4, + ACTIONS(2218), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, [85573] = 14, - ACTIONS(2210), 1, - anon_sym_STAR, - ACTIONS(2224), 1, + ACTIONS(2206), 1, anon_sym_in, - ACTIONS(2230), 1, + ACTIONS(2212), 1, + anon_sym_STAR, + ACTIONS(2226), 1, anon_sym_QMARK, - ACTIONS(2232), 1, + ACTIONS(2228), 1, anon_sym_AMP_AMP, - ACTIONS(2234), 1, + ACTIONS(2230), 1, anon_sym_PIPE_PIPE, - ACTIONS(2240), 1, + ACTIONS(2252), 1, anon_sym_PIPE, - ACTIONS(2242), 1, + ACTIONS(2254), 1, anon_sym_PIPE_AMP, - ACTIONS(2406), 1, + ACTIONS(2408), 1, anon_sym_RPAREN, - ACTIONS(2206), 2, + ACTIONS(2208), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2208), 2, + ACTIONS(2210), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2212), 2, + ACTIONS(2214), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2214), 2, + ACTIONS(2216), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2218), 2, + ACTIONS(2220), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2216), 4, + ACTIONS(2218), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, [85624] = 14, - ACTIONS(2210), 1, - anon_sym_STAR, - ACTIONS(2224), 1, + ACTIONS(2206), 1, anon_sym_in, - ACTIONS(2230), 1, + ACTIONS(2212), 1, + anon_sym_STAR, + ACTIONS(2226), 1, anon_sym_QMARK, - ACTIONS(2232), 1, + ACTIONS(2228), 1, anon_sym_AMP_AMP, - ACTIONS(2234), 1, + ACTIONS(2230), 1, anon_sym_PIPE_PIPE, - ACTIONS(2240), 1, + ACTIONS(2252), 1, anon_sym_PIPE, - ACTIONS(2242), 1, + ACTIONS(2254), 1, anon_sym_PIPE_AMP, - ACTIONS(2408), 1, + ACTIONS(2410), 1, anon_sym_RPAREN, - ACTIONS(2206), 2, + ACTIONS(2208), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2208), 2, + ACTIONS(2210), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2212), 2, + ACTIONS(2214), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2214), 2, + ACTIONS(2216), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2218), 2, + ACTIONS(2220), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2216), 4, + ACTIONS(2218), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, [85675] = 14, - ACTIONS(2210), 1, - anon_sym_STAR, - ACTIONS(2224), 1, + ACTIONS(2206), 1, anon_sym_in, - ACTIONS(2230), 1, + ACTIONS(2212), 1, + anon_sym_STAR, + ACTIONS(2226), 1, anon_sym_QMARK, - ACTIONS(2232), 1, + ACTIONS(2228), 1, anon_sym_AMP_AMP, - ACTIONS(2234), 1, + ACTIONS(2230), 1, anon_sym_PIPE_PIPE, - ACTIONS(2240), 1, + ACTIONS(2252), 1, anon_sym_PIPE, - ACTIONS(2242), 1, + ACTIONS(2254), 1, anon_sym_PIPE_AMP, - ACTIONS(2410), 1, + ACTIONS(2412), 1, anon_sym_RPAREN, - ACTIONS(2206), 2, + ACTIONS(2208), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2208), 2, + ACTIONS(2210), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2212), 2, + ACTIONS(2214), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2214), 2, + ACTIONS(2216), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2218), 2, + ACTIONS(2220), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2216), 4, + ACTIONS(2218), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, [85726] = 14, - ACTIONS(2210), 1, - anon_sym_STAR, - ACTIONS(2224), 1, + ACTIONS(2206), 1, anon_sym_in, - ACTIONS(2230), 1, + ACTIONS(2212), 1, + anon_sym_STAR, + ACTIONS(2226), 1, anon_sym_QMARK, - ACTIONS(2232), 1, + ACTIONS(2228), 1, anon_sym_AMP_AMP, - ACTIONS(2234), 1, + ACTIONS(2230), 1, anon_sym_PIPE_PIPE, - ACTIONS(2240), 1, + ACTIONS(2252), 1, anon_sym_PIPE, - ACTIONS(2242), 1, + ACTIONS(2254), 1, anon_sym_PIPE_AMP, - ACTIONS(2412), 1, - anon_sym_SEMI, - ACTIONS(2206), 2, + ACTIONS(2414), 1, + anon_sym_COLON, + ACTIONS(2208), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2208), 2, + ACTIONS(2210), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2212), 2, + ACTIONS(2214), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2214), 2, + ACTIONS(2216), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2218), 2, + ACTIONS(2220), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2216), 4, + ACTIONS(2218), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, [85777] = 14, - ACTIONS(2210), 1, - anon_sym_STAR, - ACTIONS(2224), 1, + ACTIONS(2206), 1, anon_sym_in, - ACTIONS(2230), 1, + ACTIONS(2212), 1, + anon_sym_STAR, + ACTIONS(2226), 1, anon_sym_QMARK, - ACTIONS(2232), 1, + ACTIONS(2228), 1, anon_sym_AMP_AMP, - ACTIONS(2234), 1, + ACTIONS(2230), 1, anon_sym_PIPE_PIPE, - ACTIONS(2240), 1, + ACTIONS(2252), 1, anon_sym_PIPE, - ACTIONS(2242), 1, + ACTIONS(2254), 1, anon_sym_PIPE_AMP, - ACTIONS(2414), 1, + ACTIONS(2416), 1, anon_sym_RPAREN, - ACTIONS(2206), 2, + ACTIONS(2208), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2208), 2, + ACTIONS(2210), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2212), 2, + ACTIONS(2214), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2214), 2, + ACTIONS(2216), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2218), 2, + ACTIONS(2220), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2216), 4, + ACTIONS(2218), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, [85828] = 14, - ACTIONS(2210), 1, - anon_sym_STAR, - ACTIONS(2224), 1, + ACTIONS(2206), 1, anon_sym_in, - ACTIONS(2230), 1, + ACTIONS(2212), 1, + anon_sym_STAR, + ACTIONS(2226), 1, anon_sym_QMARK, - ACTIONS(2232), 1, + ACTIONS(2228), 1, anon_sym_AMP_AMP, - ACTIONS(2234), 1, + ACTIONS(2230), 1, anon_sym_PIPE_PIPE, - ACTIONS(2240), 1, + ACTIONS(2252), 1, anon_sym_PIPE, - ACTIONS(2242), 1, + ACTIONS(2254), 1, anon_sym_PIPE_AMP, - ACTIONS(2416), 1, - anon_sym_COLON, - ACTIONS(2206), 2, + ACTIONS(2418), 1, + anon_sym_RPAREN, + ACTIONS(2208), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2208), 2, + ACTIONS(2210), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2212), 2, + ACTIONS(2214), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2214), 2, + ACTIONS(2216), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2218), 2, + ACTIONS(2220), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2216), 4, + ACTIONS(2218), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, [85879] = 14, - ACTIONS(2210), 1, - anon_sym_STAR, - ACTIONS(2224), 1, + ACTIONS(2206), 1, anon_sym_in, - ACTIONS(2230), 1, + ACTIONS(2212), 1, + anon_sym_STAR, + ACTIONS(2226), 1, anon_sym_QMARK, - ACTIONS(2232), 1, + ACTIONS(2228), 1, anon_sym_AMP_AMP, - ACTIONS(2234), 1, + ACTIONS(2230), 1, anon_sym_PIPE_PIPE, - ACTIONS(2240), 1, + ACTIONS(2252), 1, anon_sym_PIPE, - ACTIONS(2242), 1, + ACTIONS(2254), 1, anon_sym_PIPE_AMP, - ACTIONS(2418), 1, - anon_sym_SEMI, - ACTIONS(2206), 2, + ACTIONS(2420), 1, + anon_sym_RPAREN, + ACTIONS(2208), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2208), 2, + ACTIONS(2210), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2212), 2, + ACTIONS(2214), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2214), 2, + ACTIONS(2216), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2218), 2, + ACTIONS(2220), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2216), 4, + ACTIONS(2218), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, [85930] = 14, - ACTIONS(2210), 1, - anon_sym_STAR, - ACTIONS(2224), 1, + ACTIONS(2206), 1, anon_sym_in, - ACTIONS(2230), 1, + ACTIONS(2212), 1, + anon_sym_STAR, + ACTIONS(2226), 1, anon_sym_QMARK, - ACTIONS(2232), 1, + ACTIONS(2228), 1, anon_sym_AMP_AMP, - ACTIONS(2234), 1, + ACTIONS(2230), 1, anon_sym_PIPE_PIPE, - ACTIONS(2240), 1, + ACTIONS(2252), 1, anon_sym_PIPE, - ACTIONS(2242), 1, + ACTIONS(2254), 1, anon_sym_PIPE_AMP, - ACTIONS(2420), 1, - anon_sym_COLON, - ACTIONS(2206), 2, + ACTIONS(2422), 1, + anon_sym_RPAREN, + ACTIONS(2208), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2208), 2, + ACTIONS(2210), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2212), 2, + ACTIONS(2214), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2214), 2, + ACTIONS(2216), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2218), 2, + ACTIONS(2220), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2216), 4, + ACTIONS(2218), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, [85981] = 14, - ACTIONS(2210), 1, - anon_sym_STAR, - ACTIONS(2224), 1, + ACTIONS(2206), 1, anon_sym_in, - ACTIONS(2230), 1, + ACTIONS(2212), 1, + anon_sym_STAR, + ACTIONS(2226), 1, anon_sym_QMARK, - ACTIONS(2232), 1, + ACTIONS(2228), 1, anon_sym_AMP_AMP, - ACTIONS(2234), 1, + ACTIONS(2230), 1, anon_sym_PIPE_PIPE, - ACTIONS(2240), 1, + ACTIONS(2252), 1, anon_sym_PIPE, - ACTIONS(2242), 1, + ACTIONS(2254), 1, anon_sym_PIPE_AMP, - ACTIONS(2422), 1, + ACTIONS(2424), 1, anon_sym_SEMI, - ACTIONS(2206), 2, + ACTIONS(2208), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2208), 2, + ACTIONS(2210), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2212), 2, + ACTIONS(2214), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2214), 2, + ACTIONS(2216), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2218), 2, + ACTIONS(2220), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2216), 4, + ACTIONS(2218), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, [86032] = 14, - ACTIONS(2210), 1, - anon_sym_STAR, - ACTIONS(2224), 1, + ACTIONS(2206), 1, anon_sym_in, - ACTIONS(2230), 1, + ACTIONS(2212), 1, + anon_sym_STAR, + ACTIONS(2226), 1, anon_sym_QMARK, - ACTIONS(2232), 1, + ACTIONS(2228), 1, anon_sym_AMP_AMP, - ACTIONS(2234), 1, + ACTIONS(2230), 1, anon_sym_PIPE_PIPE, - ACTIONS(2240), 1, + ACTIONS(2252), 1, anon_sym_PIPE, - ACTIONS(2242), 1, + ACTIONS(2254), 1, anon_sym_PIPE_AMP, - ACTIONS(2424), 1, - anon_sym_COLON, - ACTIONS(2206), 2, + ACTIONS(2426), 1, + anon_sym_SEMI, + ACTIONS(2208), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2208), 2, + ACTIONS(2210), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2212), 2, + ACTIONS(2214), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2214), 2, + ACTIONS(2216), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2218), 2, + ACTIONS(2220), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2216), 4, + ACTIONS(2218), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, [86083] = 14, - ACTIONS(2210), 1, - anon_sym_STAR, - ACTIONS(2224), 1, + ACTIONS(2206), 1, anon_sym_in, - ACTIONS(2230), 1, + ACTIONS(2212), 1, + anon_sym_STAR, + ACTIONS(2226), 1, anon_sym_QMARK, - ACTIONS(2232), 1, + ACTIONS(2228), 1, anon_sym_AMP_AMP, - ACTIONS(2234), 1, + ACTIONS(2230), 1, anon_sym_PIPE_PIPE, - ACTIONS(2240), 1, + ACTIONS(2252), 1, anon_sym_PIPE, - ACTIONS(2242), 1, + ACTIONS(2254), 1, anon_sym_PIPE_AMP, - ACTIONS(2426), 1, + ACTIONS(2428), 1, anon_sym_COLON, - ACTIONS(2206), 2, + ACTIONS(2208), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2208), 2, + ACTIONS(2210), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2212), 2, + ACTIONS(2214), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2214), 2, + ACTIONS(2216), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2218), 2, + ACTIONS(2220), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2216), 4, + ACTIONS(2218), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, [86134] = 14, - ACTIONS(2210), 1, - anon_sym_STAR, - ACTIONS(2224), 1, + ACTIONS(2206), 1, anon_sym_in, - ACTIONS(2230), 1, + ACTIONS(2212), 1, + anon_sym_STAR, + ACTIONS(2226), 1, anon_sym_QMARK, - ACTIONS(2232), 1, + ACTIONS(2228), 1, anon_sym_AMP_AMP, - ACTIONS(2234), 1, + ACTIONS(2230), 1, anon_sym_PIPE_PIPE, - ACTIONS(2240), 1, + ACTIONS(2252), 1, anon_sym_PIPE, - ACTIONS(2242), 1, + ACTIONS(2254), 1, anon_sym_PIPE_AMP, - ACTIONS(2428), 1, + ACTIONS(2430), 1, anon_sym_COLON, - ACTIONS(2206), 2, + ACTIONS(2208), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2208), 2, + ACTIONS(2210), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2212), 2, + ACTIONS(2214), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2214), 2, + ACTIONS(2216), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2218), 2, + ACTIONS(2220), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2216), 4, + ACTIONS(2218), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, [86185] = 14, - ACTIONS(2210), 1, - anon_sym_STAR, - ACTIONS(2224), 1, + ACTIONS(2206), 1, anon_sym_in, - ACTIONS(2230), 1, + ACTIONS(2212), 1, + anon_sym_STAR, + ACTIONS(2226), 1, anon_sym_QMARK, - ACTIONS(2232), 1, + ACTIONS(2228), 1, anon_sym_AMP_AMP, - ACTIONS(2234), 1, + ACTIONS(2230), 1, anon_sym_PIPE_PIPE, - ACTIONS(2240), 1, + ACTIONS(2252), 1, anon_sym_PIPE, - ACTIONS(2242), 1, + ACTIONS(2254), 1, anon_sym_PIPE_AMP, - ACTIONS(2430), 1, - anon_sym_SEMI, - ACTIONS(2206), 2, + ACTIONS(2432), 1, + anon_sym_RPAREN, + ACTIONS(2208), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2208), 2, + ACTIONS(2210), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2212), 2, + ACTIONS(2214), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2214), 2, + ACTIONS(2216), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2218), 2, + ACTIONS(2220), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2216), 4, + ACTIONS(2218), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, [86236] = 14, - ACTIONS(2210), 1, - anon_sym_STAR, - ACTIONS(2224), 1, + ACTIONS(2206), 1, anon_sym_in, - ACTIONS(2230), 1, + ACTIONS(2212), 1, + anon_sym_STAR, + ACTIONS(2226), 1, anon_sym_QMARK, - ACTIONS(2232), 1, + ACTIONS(2228), 1, anon_sym_AMP_AMP, - ACTIONS(2234), 1, + ACTIONS(2230), 1, anon_sym_PIPE_PIPE, - ACTIONS(2240), 1, + ACTIONS(2252), 1, anon_sym_PIPE, - ACTIONS(2242), 1, + ACTIONS(2254), 1, anon_sym_PIPE_AMP, - ACTIONS(2432), 1, + ACTIONS(2434), 1, anon_sym_SEMI, - ACTIONS(2206), 2, + ACTIONS(2208), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2208), 2, + ACTIONS(2210), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2212), 2, + ACTIONS(2214), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2214), 2, + ACTIONS(2216), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2218), 2, + ACTIONS(2220), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2216), 4, + ACTIONS(2218), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, [86287] = 14, - ACTIONS(2210), 1, - anon_sym_STAR, - ACTIONS(2224), 1, + ACTIONS(2206), 1, anon_sym_in, - ACTIONS(2230), 1, + ACTIONS(2212), 1, + anon_sym_STAR, + ACTIONS(2226), 1, anon_sym_QMARK, - ACTIONS(2232), 1, + ACTIONS(2228), 1, anon_sym_AMP_AMP, - ACTIONS(2234), 1, + ACTIONS(2230), 1, anon_sym_PIPE_PIPE, - ACTIONS(2240), 1, + ACTIONS(2252), 1, anon_sym_PIPE, - ACTIONS(2242), 1, + ACTIONS(2254), 1, anon_sym_PIPE_AMP, - ACTIONS(2434), 1, - anon_sym_RPAREN, - ACTIONS(2206), 2, + ACTIONS(2436), 1, + anon_sym_COLON, + ACTIONS(2208), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2208), 2, + ACTIONS(2210), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2212), 2, + ACTIONS(2214), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2214), 2, + ACTIONS(2216), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2218), 2, + ACTIONS(2220), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2216), 4, + ACTIONS(2218), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, [86338] = 14, - ACTIONS(2210), 1, - anon_sym_STAR, - ACTIONS(2224), 1, + ACTIONS(2206), 1, anon_sym_in, - ACTIONS(2230), 1, + ACTIONS(2212), 1, + anon_sym_STAR, + ACTIONS(2226), 1, anon_sym_QMARK, - ACTIONS(2232), 1, + ACTIONS(2228), 1, anon_sym_AMP_AMP, - ACTIONS(2234), 1, + ACTIONS(2230), 1, anon_sym_PIPE_PIPE, - ACTIONS(2240), 1, + ACTIONS(2252), 1, anon_sym_PIPE, - ACTIONS(2242), 1, + ACTIONS(2254), 1, anon_sym_PIPE_AMP, - ACTIONS(2436), 1, - anon_sym_COLON, - ACTIONS(2206), 2, + ACTIONS(2438), 1, + anon_sym_RPAREN, + ACTIONS(2208), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2208), 2, + ACTIONS(2210), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2212), 2, + ACTIONS(2214), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2214), 2, + ACTIONS(2216), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2218), 2, + ACTIONS(2220), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2216), 4, + ACTIONS(2218), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, [86389] = 14, - ACTIONS(2210), 1, - anon_sym_STAR, - ACTIONS(2224), 1, + ACTIONS(2206), 1, anon_sym_in, - ACTIONS(2230), 1, + ACTIONS(2212), 1, + anon_sym_STAR, + ACTIONS(2226), 1, anon_sym_QMARK, - ACTIONS(2232), 1, + ACTIONS(2228), 1, anon_sym_AMP_AMP, - ACTIONS(2234), 1, + ACTIONS(2230), 1, anon_sym_PIPE_PIPE, - ACTIONS(2240), 1, + ACTIONS(2252), 1, anon_sym_PIPE, - ACTIONS(2242), 1, + ACTIONS(2254), 1, anon_sym_PIPE_AMP, - ACTIONS(2438), 1, - anon_sym_COLON, - ACTIONS(2206), 2, + ACTIONS(2440), 1, + anon_sym_RPAREN, + ACTIONS(2208), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2208), 2, + ACTIONS(2210), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2212), 2, + ACTIONS(2214), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2214), 2, + ACTIONS(2216), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2218), 2, + ACTIONS(2220), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2216), 4, + ACTIONS(2218), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, [86440] = 14, - ACTIONS(2210), 1, - anon_sym_STAR, - ACTIONS(2224), 1, + ACTIONS(2206), 1, anon_sym_in, - ACTIONS(2230), 1, + ACTIONS(2212), 1, + anon_sym_STAR, + ACTIONS(2226), 1, anon_sym_QMARK, - ACTIONS(2232), 1, + ACTIONS(2228), 1, anon_sym_AMP_AMP, - ACTIONS(2234), 1, + ACTIONS(2230), 1, anon_sym_PIPE_PIPE, - ACTIONS(2240), 1, + ACTIONS(2252), 1, anon_sym_PIPE, - ACTIONS(2242), 1, + ACTIONS(2254), 1, anon_sym_PIPE_AMP, - ACTIONS(2440), 1, - anon_sym_SEMI, - ACTIONS(2206), 2, + ACTIONS(2442), 1, + anon_sym_RPAREN, + ACTIONS(2208), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2208), 2, + ACTIONS(2210), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2212), 2, + ACTIONS(2214), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2214), 2, + ACTIONS(2216), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2218), 2, + ACTIONS(2220), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2216), 4, + ACTIONS(2218), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, [86491] = 14, - ACTIONS(2210), 1, - anon_sym_STAR, - ACTIONS(2224), 1, + ACTIONS(2206), 1, anon_sym_in, - ACTIONS(2230), 1, + ACTIONS(2212), 1, + anon_sym_STAR, + ACTIONS(2226), 1, anon_sym_QMARK, - ACTIONS(2232), 1, + ACTIONS(2228), 1, anon_sym_AMP_AMP, - ACTIONS(2234), 1, + ACTIONS(2230), 1, anon_sym_PIPE_PIPE, - ACTIONS(2240), 1, + ACTIONS(2252), 1, anon_sym_PIPE, - ACTIONS(2242), 1, + ACTIONS(2254), 1, anon_sym_PIPE_AMP, - ACTIONS(2442), 1, - anon_sym_SEMI, - ACTIONS(2206), 2, + ACTIONS(2444), 1, + anon_sym_COLON, + ACTIONS(2208), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2208), 2, + ACTIONS(2210), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2212), 2, + ACTIONS(2214), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2214), 2, + ACTIONS(2216), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2218), 2, + ACTIONS(2220), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2216), 4, + ACTIONS(2218), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, [86542] = 14, - ACTIONS(2210), 1, - anon_sym_STAR, - ACTIONS(2224), 1, + ACTIONS(2206), 1, anon_sym_in, - ACTIONS(2230), 1, + ACTIONS(2212), 1, + anon_sym_STAR, + ACTIONS(2226), 1, anon_sym_QMARK, - ACTIONS(2232), 1, + ACTIONS(2228), 1, anon_sym_AMP_AMP, - ACTIONS(2234), 1, + ACTIONS(2230), 1, anon_sym_PIPE_PIPE, - ACTIONS(2240), 1, + ACTIONS(2252), 1, anon_sym_PIPE, - ACTIONS(2242), 1, + ACTIONS(2254), 1, anon_sym_PIPE_AMP, - ACTIONS(2444), 1, - anon_sym_SEMI, - ACTIONS(2206), 2, + ACTIONS(2446), 1, + anon_sym_RPAREN, + ACTIONS(2208), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2208), 2, + ACTIONS(2210), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2212), 2, + ACTIONS(2214), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2214), 2, + ACTIONS(2216), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2218), 2, + ACTIONS(2220), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2216), 4, + ACTIONS(2218), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, [86593] = 14, - ACTIONS(2210), 1, - anon_sym_STAR, - ACTIONS(2224), 1, + ACTIONS(2206), 1, anon_sym_in, - ACTIONS(2230), 1, + ACTIONS(2212), 1, + anon_sym_STAR, + ACTIONS(2226), 1, anon_sym_QMARK, - ACTIONS(2232), 1, + ACTIONS(2228), 1, anon_sym_AMP_AMP, - ACTIONS(2234), 1, + ACTIONS(2230), 1, anon_sym_PIPE_PIPE, - ACTIONS(2240), 1, + ACTIONS(2252), 1, anon_sym_PIPE, - ACTIONS(2242), 1, + ACTIONS(2254), 1, anon_sym_PIPE_AMP, - ACTIONS(2446), 1, + ACTIONS(2448), 1, anon_sym_RPAREN, - ACTIONS(2206), 2, + ACTIONS(2208), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2208), 2, + ACTIONS(2210), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2212), 2, + ACTIONS(2214), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2214), 2, + ACTIONS(2216), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2218), 2, + ACTIONS(2220), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2216), 4, + ACTIONS(2218), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, [86644] = 14, - ACTIONS(2210), 1, - anon_sym_STAR, - ACTIONS(2224), 1, + ACTIONS(2206), 1, anon_sym_in, - ACTIONS(2230), 1, + ACTIONS(2212), 1, + anon_sym_STAR, + ACTIONS(2226), 1, anon_sym_QMARK, - ACTIONS(2232), 1, + ACTIONS(2228), 1, anon_sym_AMP_AMP, - ACTIONS(2234), 1, + ACTIONS(2230), 1, anon_sym_PIPE_PIPE, - ACTIONS(2240), 1, + ACTIONS(2252), 1, anon_sym_PIPE, - ACTIONS(2242), 1, + ACTIONS(2254), 1, anon_sym_PIPE_AMP, - ACTIONS(2448), 1, - anon_sym_COLON, - ACTIONS(2206), 2, + ACTIONS(2450), 1, + anon_sym_RPAREN, + ACTIONS(2208), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2208), 2, + ACTIONS(2210), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2212), 2, + ACTIONS(2214), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2214), 2, + ACTIONS(2216), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2218), 2, + ACTIONS(2220), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2216), 4, + ACTIONS(2218), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, [86695] = 14, - ACTIONS(2210), 1, - anon_sym_STAR, - ACTIONS(2224), 1, + ACTIONS(2206), 1, anon_sym_in, - ACTIONS(2230), 1, + ACTIONS(2212), 1, + anon_sym_STAR, + ACTIONS(2226), 1, anon_sym_QMARK, - ACTIONS(2232), 1, + ACTIONS(2228), 1, anon_sym_AMP_AMP, - ACTIONS(2234), 1, + ACTIONS(2230), 1, anon_sym_PIPE_PIPE, - ACTIONS(2240), 1, + ACTIONS(2252), 1, anon_sym_PIPE, - ACTIONS(2242), 1, + ACTIONS(2254), 1, anon_sym_PIPE_AMP, - ACTIONS(2450), 1, - anon_sym_RPAREN, - ACTIONS(2206), 2, + ACTIONS(2452), 1, + anon_sym_SEMI, + ACTIONS(2208), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2208), 2, + ACTIONS(2210), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2212), 2, + ACTIONS(2214), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2214), 2, + ACTIONS(2216), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2218), 2, + ACTIONS(2220), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2216), 4, + ACTIONS(2218), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, [86746] = 14, - ACTIONS(2210), 1, - anon_sym_STAR, - ACTIONS(2224), 1, + ACTIONS(2206), 1, anon_sym_in, - ACTIONS(2230), 1, + ACTIONS(2212), 1, + anon_sym_STAR, + ACTIONS(2226), 1, anon_sym_QMARK, - ACTIONS(2232), 1, + ACTIONS(2228), 1, anon_sym_AMP_AMP, - ACTIONS(2234), 1, + ACTIONS(2230), 1, anon_sym_PIPE_PIPE, - ACTIONS(2240), 1, + ACTIONS(2252), 1, anon_sym_PIPE, - ACTIONS(2242), 1, + ACTIONS(2254), 1, anon_sym_PIPE_AMP, - ACTIONS(2452), 1, - anon_sym_COLON, - ACTIONS(2206), 2, + ACTIONS(2454), 1, + anon_sym_RPAREN, + ACTIONS(2208), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2208), 2, + ACTIONS(2210), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2212), 2, + ACTIONS(2214), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2214), 2, + ACTIONS(2216), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2218), 2, + ACTIONS(2220), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2216), 4, + ACTIONS(2218), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, [86797] = 14, - ACTIONS(2210), 1, - anon_sym_STAR, - ACTIONS(2224), 1, + ACTIONS(2206), 1, anon_sym_in, - ACTIONS(2230), 1, + ACTIONS(2212), 1, + anon_sym_STAR, + ACTIONS(2226), 1, anon_sym_QMARK, - ACTIONS(2232), 1, + ACTIONS(2228), 1, anon_sym_AMP_AMP, - ACTIONS(2234), 1, + ACTIONS(2230), 1, anon_sym_PIPE_PIPE, - ACTIONS(2240), 1, + ACTIONS(2252), 1, anon_sym_PIPE, - ACTIONS(2242), 1, + ACTIONS(2254), 1, anon_sym_PIPE_AMP, - ACTIONS(2454), 1, - anon_sym_SEMI, - ACTIONS(2206), 2, + ACTIONS(2456), 1, + anon_sym_RPAREN, + ACTIONS(2208), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2208), 2, + ACTIONS(2210), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2212), 2, + ACTIONS(2214), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2214), 2, + ACTIONS(2216), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2218), 2, + ACTIONS(2220), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2216), 4, + ACTIONS(2218), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, [86848] = 14, - ACTIONS(2210), 1, - anon_sym_STAR, - ACTIONS(2224), 1, + ACTIONS(2206), 1, anon_sym_in, - ACTIONS(2230), 1, + ACTIONS(2212), 1, + anon_sym_STAR, + ACTIONS(2226), 1, anon_sym_QMARK, - ACTIONS(2232), 1, + ACTIONS(2228), 1, anon_sym_AMP_AMP, - ACTIONS(2234), 1, + ACTIONS(2230), 1, anon_sym_PIPE_PIPE, - ACTIONS(2240), 1, + ACTIONS(2252), 1, anon_sym_PIPE, - ACTIONS(2242), 1, + ACTIONS(2254), 1, anon_sym_PIPE_AMP, - ACTIONS(2456), 1, - anon_sym_COLON, - ACTIONS(2206), 2, + ACTIONS(2458), 1, + anon_sym_RPAREN, + ACTIONS(2208), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2208), 2, + ACTIONS(2210), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2212), 2, + ACTIONS(2214), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2214), 2, + ACTIONS(2216), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2218), 2, + ACTIONS(2220), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2216), 4, + ACTIONS(2218), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, [86899] = 14, - ACTIONS(2210), 1, - anon_sym_STAR, - ACTIONS(2224), 1, + ACTIONS(2206), 1, anon_sym_in, - ACTIONS(2230), 1, + ACTIONS(2212), 1, + anon_sym_STAR, + ACTIONS(2226), 1, anon_sym_QMARK, - ACTIONS(2232), 1, + ACTIONS(2228), 1, anon_sym_AMP_AMP, - ACTIONS(2234), 1, + ACTIONS(2230), 1, anon_sym_PIPE_PIPE, - ACTIONS(2240), 1, + ACTIONS(2252), 1, anon_sym_PIPE, - ACTIONS(2242), 1, + ACTIONS(2254), 1, anon_sym_PIPE_AMP, - ACTIONS(2458), 1, + ACTIONS(2460), 1, anon_sym_RPAREN, - ACTIONS(2206), 2, + ACTIONS(2208), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2208), 2, + ACTIONS(2210), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2212), 2, + ACTIONS(2214), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2214), 2, + ACTIONS(2216), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2218), 2, + ACTIONS(2220), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2216), 4, + ACTIONS(2218), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, [86950] = 14, - ACTIONS(2210), 1, - anon_sym_STAR, - ACTIONS(2224), 1, + ACTIONS(2206), 1, anon_sym_in, - ACTIONS(2230), 1, + ACTIONS(2212), 1, + anon_sym_STAR, + ACTIONS(2226), 1, anon_sym_QMARK, - ACTIONS(2232), 1, + ACTIONS(2228), 1, anon_sym_AMP_AMP, - ACTIONS(2234), 1, + ACTIONS(2230), 1, anon_sym_PIPE_PIPE, - ACTIONS(2240), 1, + ACTIONS(2252), 1, anon_sym_PIPE, - ACTIONS(2242), 1, + ACTIONS(2254), 1, anon_sym_PIPE_AMP, - ACTIONS(2460), 1, - anon_sym_RPAREN, - ACTIONS(2206), 2, + ACTIONS(2260), 1, + anon_sym_COMMA, + ACTIONS(2208), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2208), 2, + ACTIONS(2210), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2212), 2, + ACTIONS(2214), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2214), 2, + ACTIONS(2216), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2218), 2, + ACTIONS(2220), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2216), 4, + ACTIONS(2218), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, [87001] = 14, - ACTIONS(2210), 1, - anon_sym_STAR, - ACTIONS(2224), 1, + ACTIONS(2206), 1, anon_sym_in, - ACTIONS(2230), 1, + ACTIONS(2212), 1, + anon_sym_STAR, + ACTIONS(2226), 1, anon_sym_QMARK, - ACTIONS(2232), 1, + ACTIONS(2228), 1, anon_sym_AMP_AMP, - ACTIONS(2234), 1, + ACTIONS(2230), 1, anon_sym_PIPE_PIPE, - ACTIONS(2240), 1, + ACTIONS(2252), 1, anon_sym_PIPE, - ACTIONS(2242), 1, + ACTIONS(2254), 1, anon_sym_PIPE_AMP, ACTIONS(2462), 1, - anon_sym_SEMI, - ACTIONS(2206), 2, + anon_sym_RPAREN, + ACTIONS(2208), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2208), 2, + ACTIONS(2210), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2212), 2, + ACTIONS(2214), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2214), 2, + ACTIONS(2216), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2218), 2, + ACTIONS(2220), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2216), 4, + ACTIONS(2218), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, [87052] = 14, - ACTIONS(2210), 1, - anon_sym_STAR, - ACTIONS(2224), 1, + ACTIONS(2206), 1, anon_sym_in, - ACTIONS(2230), 1, + ACTIONS(2212), 1, + anon_sym_STAR, + ACTIONS(2226), 1, anon_sym_QMARK, - ACTIONS(2232), 1, + ACTIONS(2228), 1, anon_sym_AMP_AMP, - ACTIONS(2234), 1, + ACTIONS(2230), 1, anon_sym_PIPE_PIPE, - ACTIONS(2240), 1, + ACTIONS(2252), 1, anon_sym_PIPE, - ACTIONS(2242), 1, + ACTIONS(2254), 1, anon_sym_PIPE_AMP, ACTIONS(2464), 1, anon_sym_RPAREN, - ACTIONS(2206), 2, + ACTIONS(2208), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2208), 2, + ACTIONS(2210), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2212), 2, + ACTIONS(2214), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2214), 2, + ACTIONS(2216), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2218), 2, + ACTIONS(2220), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2216), 4, + ACTIONS(2218), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, [87103] = 14, - ACTIONS(2210), 1, - anon_sym_STAR, - ACTIONS(2224), 1, + ACTIONS(2206), 1, anon_sym_in, - ACTIONS(2230), 1, + ACTIONS(2212), 1, + anon_sym_STAR, + ACTIONS(2226), 1, anon_sym_QMARK, - ACTIONS(2232), 1, + ACTIONS(2228), 1, anon_sym_AMP_AMP, - ACTIONS(2234), 1, + ACTIONS(2230), 1, anon_sym_PIPE_PIPE, - ACTIONS(2240), 1, + ACTIONS(2252), 1, anon_sym_PIPE, - ACTIONS(2242), 1, + ACTIONS(2254), 1, anon_sym_PIPE_AMP, ACTIONS(2466), 1, anon_sym_COLON, - ACTIONS(2206), 2, + ACTIONS(2208), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2208), 2, + ACTIONS(2210), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2212), 2, + ACTIONS(2214), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2214), 2, + ACTIONS(2216), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2218), 2, + ACTIONS(2220), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2216), 4, + ACTIONS(2218), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, [87154] = 13, - ACTIONS(846), 1, + ACTIONS(2108), 1, anon_sym_STAR, - ACTIONS(2240), 1, + ACTIONS(2252), 1, anon_sym_PIPE, - ACTIONS(2242), 1, + ACTIONS(2254), 1, anon_sym_PIPE_AMP, ACTIONS(2468), 1, anon_sym_in, @@ -97097,7 +97399,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, ACTIONS(2484), 1, anon_sym_PIPE_PIPE, - ACTIONS(842), 2, + ACTIONS(2122), 2, anon_sym_LT, anon_sym_GT, ACTIONS(2472), 2, @@ -97118,526 +97420,526 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, [87202] = 13, - ACTIONS(2210), 1, + ACTIONS(842), 1, anon_sym_STAR, - ACTIONS(2224), 1, + ACTIONS(2252), 1, + anon_sym_PIPE, + ACTIONS(2254), 1, + anon_sym_PIPE_AMP, + ACTIONS(2486), 1, anon_sym_in, - ACTIONS(2230), 1, + ACTIONS(2488), 1, anon_sym_QMARK, - ACTIONS(2232), 1, + ACTIONS(2500), 1, anon_sym_AMP_AMP, - ACTIONS(2234), 1, + ACTIONS(2502), 1, anon_sym_PIPE_PIPE, - ACTIONS(2240), 1, - anon_sym_PIPE, - ACTIONS(2242), 1, - anon_sym_PIPE_AMP, - ACTIONS(2206), 2, + ACTIONS(852), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2208), 2, + ACTIONS(2490), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2212), 2, + ACTIONS(2492), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2214), 2, + ACTIONS(2494), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2218), 2, + ACTIONS(2498), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2216), 4, + ACTIONS(2496), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, [87250] = 13, - ACTIONS(2164), 1, + ACTIONS(2196), 1, anon_sym_STAR, - ACTIONS(2240), 1, + ACTIONS(2252), 1, anon_sym_PIPE, - ACTIONS(2242), 1, + ACTIONS(2254), 1, anon_sym_PIPE_AMP, - ACTIONS(2486), 1, + ACTIONS(2504), 1, anon_sym_in, - ACTIONS(2488), 1, + ACTIONS(2506), 1, anon_sym_QMARK, - ACTIONS(2500), 1, + ACTIONS(2518), 1, anon_sym_AMP_AMP, - ACTIONS(2502), 1, + ACTIONS(2520), 1, anon_sym_PIPE_PIPE, - ACTIONS(2158), 2, + ACTIONS(2190), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2490), 2, + ACTIONS(2508), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2492), 2, + ACTIONS(2510), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2494), 2, + ACTIONS(2512), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2498), 2, + ACTIONS(2516), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2496), 4, + ACTIONS(2514), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, [87298] = 13, - ACTIONS(1079), 1, + ACTIONS(1833), 1, anon_sym_STAR, - ACTIONS(2240), 1, + ACTIONS(2252), 1, anon_sym_PIPE, - ACTIONS(2242), 1, + ACTIONS(2254), 1, anon_sym_PIPE_AMP, - ACTIONS(2504), 1, + ACTIONS(2522), 1, anon_sym_in, - ACTIONS(2506), 1, + ACTIONS(2524), 1, anon_sym_QMARK, - ACTIONS(2518), 1, + ACTIONS(2536), 1, anon_sym_AMP_AMP, - ACTIONS(2520), 1, + ACTIONS(2538), 1, anon_sym_PIPE_PIPE, - ACTIONS(1091), 2, + ACTIONS(1827), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2508), 2, + ACTIONS(2526), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2510), 2, + ACTIONS(2528), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2512), 2, + ACTIONS(2530), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2516), 2, + ACTIONS(2534), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2514), 4, + ACTIONS(2532), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, [87346] = 13, - ACTIONS(1973), 1, + ACTIONS(1659), 1, anon_sym_STAR, - ACTIONS(1983), 1, + ACTIONS(2252), 1, + anon_sym_PIPE, + ACTIONS(2254), 1, + anon_sym_PIPE_AMP, + ACTIONS(2540), 1, anon_sym_in, - ACTIONS(1989), 1, + ACTIONS(2542), 1, anon_sym_QMARK, - ACTIONS(1991), 1, + ACTIONS(2554), 1, anon_sym_AMP_AMP, - ACTIONS(1993), 1, + ACTIONS(2556), 1, anon_sym_PIPE_PIPE, - ACTIONS(2240), 1, - anon_sym_PIPE, - ACTIONS(2242), 1, - anon_sym_PIPE_AMP, - ACTIONS(1967), 2, + ACTIONS(1653), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1971), 2, + ACTIONS(2544), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(1979), 2, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(2522), 2, + ACTIONS(2546), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2524), 2, + ACTIONS(2548), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1977), 4, + ACTIONS(2552), 2, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(2550), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, [87394] = 13, - ACTIONS(2118), 1, + ACTIONS(1025), 1, anon_sym_STAR, - ACTIONS(2240), 1, + ACTIONS(2252), 1, anon_sym_PIPE, - ACTIONS(2242), 1, + ACTIONS(2254), 1, anon_sym_PIPE_AMP, - ACTIONS(2526), 1, + ACTIONS(2558), 1, anon_sym_in, - ACTIONS(2528), 1, + ACTIONS(2560), 1, anon_sym_QMARK, - ACTIONS(2540), 1, + ACTIONS(2572), 1, anon_sym_AMP_AMP, - ACTIONS(2542), 1, + ACTIONS(2574), 1, anon_sym_PIPE_PIPE, - ACTIONS(2110), 2, + ACTIONS(1035), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2530), 2, + ACTIONS(2562), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2532), 2, + ACTIONS(2564), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2534), 2, + ACTIONS(2566), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2538), 2, + ACTIONS(2570), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2536), 4, + ACTIONS(2568), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, [87442] = 13, - ACTIONS(2186), 1, - anon_sym_STAR, - ACTIONS(2240), 1, - anon_sym_PIPE, - ACTIONS(2242), 1, - anon_sym_PIPE_AMP, - ACTIONS(2544), 1, + ACTIONS(2206), 1, anon_sym_in, - ACTIONS(2546), 1, + ACTIONS(2212), 1, + anon_sym_STAR, + ACTIONS(2226), 1, anon_sym_QMARK, - ACTIONS(2558), 1, + ACTIONS(2228), 1, anon_sym_AMP_AMP, - ACTIONS(2560), 1, + ACTIONS(2230), 1, anon_sym_PIPE_PIPE, - ACTIONS(2182), 2, + ACTIONS(2252), 1, + anon_sym_PIPE, + ACTIONS(2254), 1, + anon_sym_PIPE_AMP, + ACTIONS(2208), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2548), 2, + ACTIONS(2210), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2550), 2, + ACTIONS(2214), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2552), 2, + ACTIONS(2216), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2556), 2, + ACTIONS(2220), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2554), 4, + ACTIONS(2218), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, [87490] = 13, - ACTIONS(1665), 1, + ACTIONS(886), 1, anon_sym_STAR, - ACTIONS(2240), 1, + ACTIONS(2252), 1, anon_sym_PIPE, - ACTIONS(2242), 1, + ACTIONS(2254), 1, anon_sym_PIPE_AMP, - ACTIONS(2562), 1, + ACTIONS(2576), 1, anon_sym_in, - ACTIONS(2564), 1, + ACTIONS(2578), 1, anon_sym_QMARK, - ACTIONS(2576), 1, + ACTIONS(2590), 1, anon_sym_AMP_AMP, - ACTIONS(2578), 1, + ACTIONS(2592), 1, anon_sym_PIPE_PIPE, - ACTIONS(1659), 2, + ACTIONS(890), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2566), 2, + ACTIONS(2580), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2568), 2, + ACTIONS(2582), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2570), 2, + ACTIONS(2584), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2574), 2, + ACTIONS(2588), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2572), 4, + ACTIONS(2586), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, [87538] = 13, - ACTIONS(1025), 1, + ACTIONS(1079), 1, anon_sym_STAR, - ACTIONS(2240), 1, + ACTIONS(2252), 1, anon_sym_PIPE, - ACTIONS(2242), 1, + ACTIONS(2254), 1, anon_sym_PIPE_AMP, - ACTIONS(2580), 1, + ACTIONS(2594), 1, anon_sym_in, - ACTIONS(2582), 1, + ACTIONS(2596), 1, anon_sym_QMARK, - ACTIONS(2594), 1, + ACTIONS(2608), 1, anon_sym_AMP_AMP, - ACTIONS(2596), 1, + ACTIONS(2610), 1, anon_sym_PIPE_PIPE, - ACTIONS(1021), 2, + ACTIONS(1085), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2584), 2, + ACTIONS(2598), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2586), 2, + ACTIONS(2600), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2588), 2, + ACTIONS(2602), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2592), 2, + ACTIONS(2606), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2590), 4, + ACTIONS(2604), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, [87586] = 13, - ACTIONS(1121), 1, + ACTIONS(1979), 1, anon_sym_STAR, - ACTIONS(1129), 1, + ACTIONS(1985), 1, + anon_sym_in, + ACTIONS(1993), 1, anon_sym_QMARK, - ACTIONS(1133), 1, + ACTIONS(1995), 1, anon_sym_AMP_AMP, - ACTIONS(1135), 1, + ACTIONS(1997), 1, anon_sym_PIPE_PIPE, - ACTIONS(2240), 1, + ACTIONS(2252), 1, anon_sym_PIPE, - ACTIONS(2242), 1, + ACTIONS(2254), 1, anon_sym_PIPE_AMP, - ACTIONS(2598), 1, - anon_sym_in, - ACTIONS(1115), 2, + ACTIONS(1973), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1119), 2, + ACTIONS(1977), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(1131), 2, + ACTIONS(1987), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2600), 2, + ACTIONS(2612), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2602), 2, + ACTIONS(2614), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1125), 4, + ACTIONS(1983), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, [87634] = 13, - ACTIONS(886), 1, + ACTIONS(2160), 1, anon_sym_STAR, - ACTIONS(2240), 1, + ACTIONS(2252), 1, anon_sym_PIPE, - ACTIONS(2242), 1, + ACTIONS(2254), 1, anon_sym_PIPE_AMP, - ACTIONS(2604), 1, + ACTIONS(2616), 1, anon_sym_in, - ACTIONS(2606), 1, - anon_sym_QMARK, ACTIONS(2618), 1, + anon_sym_QMARK, + ACTIONS(2630), 1, anon_sym_AMP_AMP, - ACTIONS(2620), 1, + ACTIONS(2632), 1, anon_sym_PIPE_PIPE, - ACTIONS(892), 2, + ACTIONS(2156), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2608), 2, + ACTIONS(2620), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2610), 2, + ACTIONS(2622), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2612), 2, + ACTIONS(2624), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2616), 2, + ACTIONS(2628), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2614), 4, + ACTIONS(2626), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, [87682] = 13, - ACTIONS(2072), 1, + ACTIONS(2088), 1, anon_sym_STAR, - ACTIONS(2240), 1, + ACTIONS(2252), 1, anon_sym_PIPE, - ACTIONS(2242), 1, + ACTIONS(2254), 1, anon_sym_PIPE_AMP, - ACTIONS(2622), 1, + ACTIONS(2634), 1, anon_sym_in, - ACTIONS(2624), 1, - anon_sym_QMARK, ACTIONS(2636), 1, + anon_sym_QMARK, + ACTIONS(2648), 1, anon_sym_AMP_AMP, - ACTIONS(2638), 1, + ACTIONS(2650), 1, anon_sym_PIPE_PIPE, - ACTIONS(2078), 2, + ACTIONS(2092), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2626), 2, + ACTIONS(2638), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2628), 2, + ACTIONS(2640), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2630), 2, + ACTIONS(2642), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2634), 2, + ACTIONS(2646), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2632), 4, + ACTIONS(2644), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, [87730] = 13, - ACTIONS(1297), 1, + ACTIONS(1121), 1, anon_sym_STAR, - ACTIONS(2240), 1, - anon_sym_PIPE, - ACTIONS(2242), 1, - anon_sym_PIPE_AMP, - ACTIONS(2640), 1, - anon_sym_in, - ACTIONS(2642), 1, + ACTIONS(1135), 1, anon_sym_QMARK, - ACTIONS(2654), 1, + ACTIONS(1137), 1, anon_sym_AMP_AMP, - ACTIONS(2656), 1, + ACTIONS(1139), 1, anon_sym_PIPE_PIPE, - ACTIONS(1293), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2644), 2, + ACTIONS(2252), 1, + anon_sym_PIPE, + ACTIONS(2254), 1, + anon_sym_PIPE_AMP, + ACTIONS(2652), 1, + anon_sym_in, + ACTIONS(1117), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2646), 2, + ACTIONS(1119), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1127), 2, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(2654), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2648), 2, + ACTIONS(2656), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2652), 2, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(2650), 4, + ACTIONS(1125), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, [87778] = 13, - ACTIONS(1187), 1, + ACTIONS(1349), 1, anon_sym_STAR, - ACTIONS(1197), 1, - anon_sym_AMP_AMP, - ACTIONS(1203), 1, - anon_sym_QMARK, - ACTIONS(1205), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2240), 1, + ACTIONS(2252), 1, anon_sym_PIPE, - ACTIONS(2242), 1, + ACTIONS(2254), 1, anon_sym_PIPE_AMP, ACTIONS(2658), 1, anon_sym_in, - ACTIONS(1181), 2, - anon_sym_CARET, - anon_sym_STAR_STAR, - ACTIONS(1185), 2, + ACTIONS(2660), 1, + anon_sym_QMARK, + ACTIONS(2672), 1, + anon_sym_AMP_AMP, + ACTIONS(2674), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1343), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1189), 2, + ACTIONS(2662), 2, + anon_sym_CARET, + anon_sym_STAR_STAR, + ACTIONS(2664), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1195), 2, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(2660), 2, + ACTIONS(2666), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1193), 4, + ACTIONS(2670), 2, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(2668), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, [87826] = 13, - ACTIONS(1819), 1, + ACTIONS(1271), 1, anon_sym_STAR, - ACTIONS(2240), 1, + ACTIONS(2252), 1, anon_sym_PIPE, - ACTIONS(2242), 1, + ACTIONS(2254), 1, anon_sym_PIPE_AMP, - ACTIONS(2662), 1, + ACTIONS(2676), 1, anon_sym_in, - ACTIONS(2664), 1, + ACTIONS(2678), 1, anon_sym_QMARK, - ACTIONS(2676), 1, + ACTIONS(2690), 1, anon_sym_AMP_AMP, - ACTIONS(2678), 1, + ACTIONS(2692), 1, anon_sym_PIPE_PIPE, - ACTIONS(1813), 2, + ACTIONS(1267), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2666), 2, + ACTIONS(2680), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2668), 2, + ACTIONS(2682), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2670), 2, + ACTIONS(2684), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2674), 2, + ACTIONS(2688), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2672), 4, + ACTIONS(2686), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, [87874] = 13, - ACTIONS(1349), 1, + ACTIONS(1189), 1, anon_sym_STAR, - ACTIONS(2240), 1, + ACTIONS(1199), 1, + anon_sym_AMP_AMP, + ACTIONS(1205), 1, + anon_sym_QMARK, + ACTIONS(1207), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2252), 1, anon_sym_PIPE, - ACTIONS(2242), 1, + ACTIONS(2254), 1, anon_sym_PIPE_AMP, - ACTIONS(2680), 1, - anon_sym_in, - ACTIONS(2682), 1, - anon_sym_QMARK, ACTIONS(2694), 1, - anon_sym_AMP_AMP, - ACTIONS(2696), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1341), 2, + anon_sym_in, + ACTIONS(1185), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2684), 2, + ACTIONS(1187), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2686), 2, + ACTIONS(1191), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2688), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2692), 2, + ACTIONS(1197), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2690), 4, + ACTIONS(2696), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1195), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, @@ -97659,16 +97961,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, aux_sym_number_token2, anon_sym_DQUOTE, - [87941] = 4, - ACTIONS(1491), 1, + [87941] = 1, + ACTIONS(2702), 12, + anon_sym_print, + anon_sym_alnum, + anon_sym_alpha, + anon_sym_blank, + anon_sym_cntrl, + anon_sym_digit, + anon_sym_graph, + anon_sym_lower, + anon_sym_punct, + anon_sym_space, + anon_sym_upper, + anon_sym_xdigit, + [87956] = 4, + ACTIONS(1543), 1, sym__if_else_separator, - ACTIONS(2702), 2, + ACTIONS(2704), 2, anon_sym_GT, anon_sym_GT_GT, - ACTIONS(2704), 2, + ACTIONS(2706), 2, anon_sym_PIPE, anon_sym_PIPE_AMP, - ACTIONS(1485), 7, + ACTIONS(1537), 7, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, @@ -97676,14 +97992,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_case, anon_sym_default, anon_sym_POUND, - [87962] = 3, - ACTIONS(2706), 2, + [87977] = 3, + ACTIONS(2708), 2, anon_sym_GT, anon_sym_GT_GT, - ACTIONS(2708), 2, + ACTIONS(2710), 2, anon_sym_PIPE, anon_sym_PIPE_AMP, - ACTIONS(1485), 7, + ACTIONS(1537), 7, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, @@ -97691,50 +98007,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_case, anon_sym_default, anon_sym_POUND, - [87980] = 4, - ACTIONS(1491), 1, + [87995] = 4, + ACTIONS(1543), 1, sym__if_else_separator, - ACTIONS(2710), 2, + ACTIONS(2712), 2, anon_sym_GT, anon_sym_GT_GT, - ACTIONS(2712), 2, + ACTIONS(2714), 2, anon_sym_PIPE, anon_sym_PIPE_AMP, - ACTIONS(1485), 4, + ACTIONS(1537), 4, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, anon_sym_while, - [87998] = 5, + [88013] = 5, ACTIONS(37), 1, anon_sym_POUND, - ACTIONS(2714), 1, - anon_sym_RBRACE, ACTIONS(2716), 1, + anon_sym_RBRACE, + ACTIONS(2718), 1, anon_sym_case, + ACTIONS(2720), 1, + anon_sym_default, + STATE(1709), 4, + sym_switch_case, + sym_switch_default, + sym_comment, + aux_sym_switch_body_repeat1, + [88032] = 5, + ACTIONS(37), 1, + anon_sym_POUND, ACTIONS(2718), 1, + anon_sym_case, + ACTIONS(2720), 1, anon_sym_default, - STATE(1706), 4, + ACTIONS(2722), 1, + anon_sym_RBRACE, + STATE(1709), 4, sym_switch_case, sym_switch_default, sym_comment, aux_sym_switch_body_repeat1, - [88017] = 3, - ACTIONS(2720), 2, - anon_sym_GT, - anon_sym_GT_GT, - ACTIONS(2722), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(1485), 4, + [88051] = 2, + ACTIONS(2724), 1, + sym__if_else_separator, + ACTIONS(2020), 7, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, - anon_sym_while, - [88032] = 2, + anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, + anon_sym_POUND, + [88064] = 2, ACTIONS(2724), 1, sym__if_else_separator, - ACTIONS(2024), 7, + ACTIONS(2020), 7, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, @@ -97742,10 +98071,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_case, anon_sym_default, anon_sym_POUND, - [88045] = 2, + [88077] = 2, ACTIONS(2726), 1, sym__if_else_separator, - ACTIONS(2024), 7, + ACTIONS(2020), 7, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, @@ -97753,49 +98082,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_case, anon_sym_default, anon_sym_POUND, - [88058] = 5, + [88090] = 5, + ACTIONS(2728), 1, + anon_sym_SLASH, + ACTIONS(2730), 1, + aux_sym_number_token1, + ACTIONS(2732), 1, + aux_sym_number_token2, + ACTIONS(2734), 1, + anon_sym_DQUOTE, + STATE(1940), 4, + sym_regex, + sym__primitive, + sym_number, + sym_string, + [88109] = 5, ACTIONS(37), 1, anon_sym_POUND, - ACTIONS(2716), 1, - anon_sym_case, ACTIONS(2718), 1, + anon_sym_case, + ACTIONS(2720), 1, anon_sym_default, - ACTIONS(2728), 1, + ACTIONS(2736), 1, anon_sym_RBRACE, - STATE(1703), 4, + STATE(1700), 4, sym_switch_case, sym_switch_default, sym_comment, aux_sym_switch_body_repeat1, - [88077] = 5, + [88128] = 5, ACTIONS(37), 1, anon_sym_POUND, - ACTIONS(2716), 1, - anon_sym_case, ACTIONS(2718), 1, + anon_sym_case, + ACTIONS(2720), 1, anon_sym_default, - ACTIONS(2730), 1, + ACTIONS(2738), 1, anon_sym_RBRACE, - STATE(1706), 4, + STATE(1699), 4, sym_switch_case, sym_switch_default, sym_comment, aux_sym_switch_body_repeat1, - [88096] = 2, - ACTIONS(2726), 1, - sym__if_else_separator, - ACTIONS(2024), 7, + [88147] = 3, + ACTIONS(2740), 2, + anon_sym_GT, + anon_sym_GT_GT, + ACTIONS(2742), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(1537), 4, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - anon_sym_POUND, - [88109] = 2, - ACTIONS(2724), 1, + anon_sym_while, + [88162] = 2, + ACTIONS(2726), 1, sym__if_else_separator, - ACTIONS(2024), 7, + ACTIONS(2020), 7, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, @@ -97803,2720 +98147,2717 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_case, anon_sym_default, anon_sym_POUND, - [88122] = 5, - ACTIONS(2732), 1, + [88175] = 5, + ACTIONS(2744), 1, anon_sym_RBRACE, - ACTIONS(2734), 1, + ACTIONS(2746), 1, anon_sym_case, - ACTIONS(2737), 1, - anon_sym_default, - ACTIONS(2740), 1, - anon_sym_POUND, - STATE(1706), 4, - sym_switch_case, - sym_switch_default, - sym_comment, - aux_sym_switch_body_repeat1, - [88141] = 5, - ACTIONS(2743), 1, - anon_sym_SLASH, - ACTIONS(2745), 1, - aux_sym_number_token1, - ACTIONS(2747), 1, - aux_sym_number_token2, ACTIONS(2749), 1, - anon_sym_DQUOTE, - STATE(2039), 4, - sym_regex, - sym__primitive, - sym_number, - sym_string, - [88160] = 5, - ACTIONS(37), 1, - anon_sym_POUND, - ACTIONS(2716), 1, - anon_sym_case, - ACTIONS(2718), 1, anon_sym_default, - ACTIONS(2751), 1, - anon_sym_RBRACE, - STATE(1698), 4, + ACTIONS(2752), 1, + anon_sym_POUND, + STATE(1709), 4, sym_switch_case, sym_switch_default, sym_comment, aux_sym_switch_body_repeat1, - [88179] = 5, - ACTIONS(2753), 1, + [88194] = 5, + ACTIONS(2755), 1, anon_sym_SLASH2, - ACTIONS(2757), 1, + ACTIONS(2759), 1, anon_sym_LBRACK2, - STATE(2032), 1, + STATE(1993), 1, sym_regex_pattern, - ACTIONS(2755), 2, + ACTIONS(2757), 2, sym__regex_char, sym__regex_char_escaped, - STATE(1757), 2, - sym__regex_char_list, + STATE(1761), 2, + sym__regex_bracket_exp, aux_sym_regex_pattern_repeat1, - [88197] = 5, - ACTIONS(2757), 1, - anon_sym_LBRACK2, + [88212] = 2, + ACTIONS(1965), 3, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + ACTIONS(572), 4, + anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, + anon_sym_POUND, + [88224] = 5, ACTIONS(2759), 1, - anon_sym_SLASH2, - STATE(2010), 1, - sym_regex_pattern, - ACTIONS(2755), 2, - sym__regex_char, - sym__regex_char_escaped, - STATE(1757), 2, - sym__regex_char_list, - aux_sym_regex_pattern_repeat1, - [88215] = 5, - ACTIONS(2757), 1, anon_sym_LBRACK2, ACTIONS(2761), 1, anon_sym_SLASH2, - STATE(1973), 1, + STATE(2048), 1, sym_regex_pattern, - ACTIONS(2755), 2, + ACTIONS(2757), 2, sym__regex_char, sym__regex_char_escaped, - STATE(1757), 2, - sym__regex_char_list, + STATE(1761), 2, + sym__regex_bracket_exp, aux_sym_regex_pattern_repeat1, - [88233] = 5, - ACTIONS(2757), 1, + [88242] = 5, + ACTIONS(2759), 1, anon_sym_LBRACK2, ACTIONS(2763), 1, anon_sym_SLASH2, - STATE(1938), 1, + STATE(1984), 1, sym_regex_pattern, - ACTIONS(2755), 2, + ACTIONS(2757), 2, sym__regex_char, sym__regex_char_escaped, - STATE(1757), 2, - sym__regex_char_list, + STATE(1761), 2, + sym__regex_bracket_exp, aux_sym_regex_pattern_repeat1, - [88251] = 5, - ACTIONS(2757), 1, + [88260] = 5, + ACTIONS(2759), 1, anon_sym_LBRACK2, ACTIONS(2765), 1, anon_sym_SLASH2, - STATE(1942), 1, + STATE(2020), 1, sym_regex_pattern, - ACTIONS(2755), 2, + ACTIONS(2757), 2, sym__regex_char, sym__regex_char_escaped, - STATE(1757), 2, - sym__regex_char_list, + STATE(1761), 2, + sym__regex_bracket_exp, aux_sym_regex_pattern_repeat1, - [88269] = 5, - ACTIONS(2757), 1, + [88278] = 5, + ACTIONS(2759), 1, anon_sym_LBRACK2, ACTIONS(2767), 1, anon_sym_SLASH2, - STATE(1929), 1, + STATE(1982), 1, sym_regex_pattern, - ACTIONS(2755), 2, + ACTIONS(2757), 2, sym__regex_char, sym__regex_char_escaped, - STATE(1757), 2, - sym__regex_char_list, + STATE(1761), 2, + sym__regex_bracket_exp, aux_sym_regex_pattern_repeat1, - [88287] = 5, - ACTIONS(2757), 1, + [88296] = 5, + ACTIONS(2759), 1, anon_sym_LBRACK2, ACTIONS(2769), 1, anon_sym_SLASH2, - STATE(1986), 1, + STATE(2002), 1, sym_regex_pattern, - ACTIONS(2755), 2, + ACTIONS(2757), 2, sym__regex_char, sym__regex_char_escaped, - STATE(1757), 2, - sym__regex_char_list, + STATE(1761), 2, + sym__regex_bracket_exp, aux_sym_regex_pattern_repeat1, - [88305] = 5, - ACTIONS(2757), 1, + [88314] = 5, + ACTIONS(2759), 1, anon_sym_LBRACK2, ACTIONS(2771), 1, anon_sym_SLASH2, - STATE(1947), 1, + STATE(2021), 1, + sym_regex_pattern, + ACTIONS(2757), 2, + sym__regex_char, + sym__regex_char_escaped, + STATE(1761), 2, + sym__regex_bracket_exp, + aux_sym_regex_pattern_repeat1, + [88332] = 5, + ACTIONS(2759), 1, + anon_sym_LBRACK2, + ACTIONS(2773), 1, + anon_sym_SLASH2, + STATE(2029), 1, + sym_regex_pattern, + ACTIONS(2757), 2, + sym__regex_char, + sym__regex_char_escaped, + STATE(1761), 2, + sym__regex_bracket_exp, + aux_sym_regex_pattern_repeat1, + [88350] = 5, + ACTIONS(2759), 1, + anon_sym_LBRACK2, + ACTIONS(2775), 1, + anon_sym_SLASH2, + STATE(1985), 1, sym_regex_pattern, - ACTIONS(2755), 2, + ACTIONS(2757), 2, sym__regex_char, sym__regex_char_escaped, - STATE(1757), 2, - sym__regex_char_list, + STATE(1761), 2, + sym__regex_bracket_exp, aux_sym_regex_pattern_repeat1, - [88323] = 2, + [88368] = 2, ACTIONS(1965), 3, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, - ACTIONS(504), 4, + ACTIONS(492), 4, anon_sym_RBRACE, anon_sym_case, anon_sym_default, anon_sym_POUND, - [88335] = 5, - ACTIONS(2757), 1, + [88380] = 5, + ACTIONS(2759), 1, anon_sym_LBRACK2, - ACTIONS(2773), 1, + ACTIONS(2777), 1, anon_sym_SLASH2, - STATE(2045), 1, + STATE(1986), 1, sym_regex_pattern, - ACTIONS(2755), 2, + ACTIONS(2757), 2, sym__regex_char, sym__regex_char_escaped, - STATE(1757), 2, - sym__regex_char_list, + STATE(1761), 2, + sym__regex_bracket_exp, aux_sym_regex_pattern_repeat1, - [88353] = 5, - ACTIONS(2757), 1, + [88398] = 2, + ACTIONS(1965), 3, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + ACTIONS(2779), 4, + anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, + anon_sym_POUND, + [88410] = 5, + ACTIONS(2759), 1, anon_sym_LBRACK2, - ACTIONS(2775), 1, + ACTIONS(2781), 1, anon_sym_SLASH2, - STATE(2091), 1, + STATE(1987), 1, sym_regex_pattern, - ACTIONS(2755), 2, + ACTIONS(2757), 2, sym__regex_char, sym__regex_char_escaped, - STATE(1757), 2, - sym__regex_char_list, + STATE(1761), 2, + sym__regex_bracket_exp, aux_sym_regex_pattern_repeat1, - [88371] = 5, - ACTIONS(2757), 1, + [88428] = 5, + ACTIONS(2759), 1, anon_sym_LBRACK2, - ACTIONS(2777), 1, + ACTIONS(2783), 1, anon_sym_SLASH2, - STATE(2009), 1, + STATE(1990), 1, sym_regex_pattern, - ACTIONS(2755), 2, + ACTIONS(2757), 2, sym__regex_char, sym__regex_char_escaped, - STATE(1757), 2, - sym__regex_char_list, + STATE(1761), 2, + sym__regex_bracket_exp, aux_sym_regex_pattern_repeat1, - [88389] = 5, - ACTIONS(2757), 1, + [88446] = 5, + ACTIONS(2759), 1, anon_sym_LBRACK2, - ACTIONS(2779), 1, + ACTIONS(2785), 1, anon_sym_SLASH2, - STATE(1928), 1, + STATE(2016), 1, sym_regex_pattern, - ACTIONS(2755), 2, + ACTIONS(2757), 2, sym__regex_char, sym__regex_char_escaped, - STATE(1757), 2, - sym__regex_char_list, + STATE(1761), 2, + sym__regex_bracket_exp, aux_sym_regex_pattern_repeat1, - [88407] = 5, - ACTIONS(2757), 1, + [88464] = 5, + ACTIONS(2759), 1, anon_sym_LBRACK2, - ACTIONS(2781), 1, + ACTIONS(2787), 1, anon_sym_SLASH2, - STATE(1905), 1, + STATE(1972), 1, sym_regex_pattern, - ACTIONS(2755), 2, + ACTIONS(2757), 2, sym__regex_char, sym__regex_char_escaped, - STATE(1757), 2, - sym__regex_char_list, + STATE(1761), 2, + sym__regex_bracket_exp, aux_sym_regex_pattern_repeat1, - [88425] = 2, + [88482] = 2, ACTIONS(1965), 3, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, - ACTIONS(494), 4, + ACTIONS(2789), 4, anon_sym_RBRACE, anon_sym_case, anon_sym_default, anon_sym_POUND, - [88437] = 5, - ACTIONS(2757), 1, - anon_sym_LBRACK2, - ACTIONS(2783), 1, - anon_sym_SLASH2, - STATE(2041), 1, - sym_regex_pattern, - ACTIONS(2755), 2, - sym__regex_char, - sym__regex_char_escaped, - STATE(1757), 2, - sym__regex_char_list, - aux_sym_regex_pattern_repeat1, - [88455] = 5, - ACTIONS(2757), 1, + [88494] = 5, + ACTIONS(2759), 1, anon_sym_LBRACK2, - ACTIONS(2785), 1, + ACTIONS(2791), 1, anon_sym_SLASH2, - STATE(1933), 1, + STATE(1991), 1, sym_regex_pattern, - ACTIONS(2755), 2, + ACTIONS(2757), 2, sym__regex_char, sym__regex_char_escaped, - STATE(1757), 2, - sym__regex_char_list, + STATE(1761), 2, + sym__regex_bracket_exp, aux_sym_regex_pattern_repeat1, - [88473] = 5, - ACTIONS(2757), 1, + [88512] = 5, + ACTIONS(2759), 1, anon_sym_LBRACK2, - ACTIONS(2787), 1, + ACTIONS(2793), 1, anon_sym_SLASH2, - STATE(1924), 1, + STATE(2081), 1, sym_regex_pattern, - ACTIONS(2755), 2, + ACTIONS(2757), 2, sym__regex_char, sym__regex_char_escaped, - STATE(1757), 2, - sym__regex_char_list, + STATE(1761), 2, + sym__regex_bracket_exp, aux_sym_regex_pattern_repeat1, - [88491] = 5, - ACTIONS(2757), 1, + [88530] = 5, + ACTIONS(2759), 1, anon_sym_LBRACK2, - ACTIONS(2789), 1, + ACTIONS(2795), 1, anon_sym_SLASH2, - STATE(2082), 1, + STATE(2012), 1, sym_regex_pattern, - ACTIONS(2755), 2, + ACTIONS(2757), 2, sym__regex_char, sym__regex_char_escaped, - STATE(1757), 2, - sym__regex_char_list, + STATE(1761), 2, + sym__regex_bracket_exp, aux_sym_regex_pattern_repeat1, - [88509] = 5, - ACTIONS(2757), 1, + [88548] = 5, + ACTIONS(2759), 1, anon_sym_LBRACK2, - ACTIONS(2791), 1, + ACTIONS(2797), 1, anon_sym_SLASH2, - STATE(1992), 1, + STATE(2050), 1, sym_regex_pattern, - ACTIONS(2755), 2, + ACTIONS(2757), 2, sym__regex_char, sym__regex_char_escaped, - STATE(1757), 2, - sym__regex_char_list, + STATE(1761), 2, + sym__regex_bracket_exp, aux_sym_regex_pattern_repeat1, - [88527] = 5, - ACTIONS(2757), 1, + [88566] = 5, + ACTIONS(2759), 1, anon_sym_LBRACK2, - ACTIONS(2793), 1, + ACTIONS(2799), 1, anon_sym_SLASH2, - STATE(2019), 1, + STATE(2036), 1, sym_regex_pattern, - ACTIONS(2755), 2, + ACTIONS(2757), 2, sym__regex_char, sym__regex_char_escaped, - STATE(1757), 2, - sym__regex_char_list, + STATE(1761), 2, + sym__regex_bracket_exp, aux_sym_regex_pattern_repeat1, - [88545] = 5, - ACTIONS(2757), 1, + [88584] = 5, + ACTIONS(2759), 1, anon_sym_LBRACK2, - ACTIONS(2795), 1, + ACTIONS(2801), 1, anon_sym_SLASH2, - STATE(1975), 1, + STATE(2046), 1, sym_regex_pattern, - ACTIONS(2755), 2, + ACTIONS(2757), 2, sym__regex_char, sym__regex_char_escaped, - STATE(1757), 2, - sym__regex_char_list, + STATE(1761), 2, + sym__regex_bracket_exp, aux_sym_regex_pattern_repeat1, - [88563] = 5, - ACTIONS(2757), 1, + [88602] = 5, + ACTIONS(2759), 1, anon_sym_LBRACK2, - ACTIONS(2797), 1, + ACTIONS(2803), 1, anon_sym_SLASH2, - STATE(1971), 1, + STATE(1907), 1, sym_regex_pattern, - ACTIONS(2755), 2, + ACTIONS(2757), 2, sym__regex_char, sym__regex_char_escaped, - STATE(1757), 2, - sym__regex_char_list, + STATE(1761), 2, + sym__regex_bracket_exp, aux_sym_regex_pattern_repeat1, - [88581] = 5, - ACTIONS(2757), 1, + [88620] = 5, + ACTIONS(2759), 1, anon_sym_LBRACK2, - ACTIONS(2799), 1, + ACTIONS(2805), 1, anon_sym_SLASH2, - STATE(1920), 1, + STATE(2090), 1, sym_regex_pattern, - ACTIONS(2755), 2, + ACTIONS(2757), 2, sym__regex_char, sym__regex_char_escaped, - STATE(1757), 2, - sym__regex_char_list, + STATE(1761), 2, + sym__regex_bracket_exp, aux_sym_regex_pattern_repeat1, - [88599] = 5, - ACTIONS(2757), 1, + [88638] = 5, + ACTIONS(2759), 1, anon_sym_LBRACK2, - ACTIONS(2801), 1, + ACTIONS(2807), 1, anon_sym_SLASH2, - STATE(1951), 1, + STATE(1998), 1, sym_regex_pattern, - ACTIONS(2755), 2, + ACTIONS(2757), 2, sym__regex_char, sym__regex_char_escaped, - STATE(1757), 2, - sym__regex_char_list, + STATE(1761), 2, + sym__regex_bracket_exp, aux_sym_regex_pattern_repeat1, - [88617] = 5, - ACTIONS(2757), 1, + [88656] = 5, + ACTIONS(2759), 1, anon_sym_LBRACK2, - ACTIONS(2803), 1, + ACTIONS(2809), 1, anon_sym_SLASH2, - STATE(1966), 1, + STATE(2007), 1, sym_regex_pattern, - ACTIONS(2755), 2, + ACTIONS(2757), 2, sym__regex_char, sym__regex_char_escaped, - STATE(1757), 2, - sym__regex_char_list, + STATE(1761), 2, + sym__regex_bracket_exp, aux_sym_regex_pattern_repeat1, - [88635] = 2, - ACTIONS(1965), 3, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - ACTIONS(2805), 4, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - anon_sym_POUND, - [88647] = 2, - ACTIONS(1965), 3, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - ACTIONS(2807), 4, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - anon_sym_POUND, - [88659] = 5, - ACTIONS(2757), 1, + [88674] = 5, + ACTIONS(2759), 1, anon_sym_LBRACK2, - ACTIONS(2809), 1, + ACTIONS(2811), 1, anon_sym_SLASH2, - STATE(1961), 1, + STATE(2041), 1, sym_regex_pattern, - ACTIONS(2755), 2, + ACTIONS(2757), 2, sym__regex_char, sym__regex_char_escaped, - STATE(1757), 2, - sym__regex_char_list, + STATE(1761), 2, + sym__regex_bracket_exp, aux_sym_regex_pattern_repeat1, - [88677] = 5, - ACTIONS(2811), 1, - sym_identifier, + [88692] = 6, + ACTIONS(1571), 1, + anon_sym_SLASH, ACTIONS(2813), 1, - anon_sym_DOLLAR, - STATE(1385), 1, - sym_field_ref, - STATE(2067), 1, - sym_namespace, - STATE(1322), 2, - sym_array_ref, - sym_ns_qualified_name, - [88694] = 5, - ACTIONS(161), 1, - anon_sym_DOLLAR, - ACTIONS(2815), 1, sym_identifier, - STATE(222), 1, - sym_field_ref, - STATE(2061), 1, - sym_namespace, - STATE(214), 2, - sym_array_ref, + STATE(384), 1, + sym_regex, + STATE(388), 1, + sym_func_call, + STATE(1929), 1, sym_ns_qualified_name, + STATE(2052), 1, + sym_namespace, [88711] = 6, - ACTIONS(1583), 1, + ACTIONS(1581), 1, anon_sym_SLASH, - ACTIONS(2817), 1, + ACTIONS(2815), 1, sym_identifier, - STATE(363), 1, - sym_regex, - STATE(364), 1, + STATE(1300), 1, sym_func_call, - STATE(1932), 1, + STATE(1302), 1, + sym_regex, + STATE(1947), 1, sym_ns_qualified_name, - STATE(2047), 1, + STATE(2052), 1, sym_namespace, [88730] = 5, - ACTIONS(2819), 1, + ACTIONS(2817), 1, sym_identifier, - ACTIONS(2821), 1, + ACTIONS(2819), 1, anon_sym_DOLLAR, - STATE(1391), 1, + STATE(564), 1, sym_field_ref, - STATE(2059), 1, + STATE(2061), 1, sym_namespace, - STATE(1351), 2, + STATE(515), 2, sym_array_ref, sym_ns_qualified_name, - [88747] = 5, - ACTIONS(2811), 1, + [88747] = 6, + ACTIONS(1561), 1, + anon_sym_SLASH, + ACTIONS(2821), 1, sym_identifier, - ACTIONS(2823), 1, - anon_sym_DOLLAR, - STATE(1385), 1, - sym_field_ref, - STATE(2067), 1, - sym_namespace, - STATE(1322), 2, - sym_array_ref, + STATE(1359), 1, + sym_func_call, + STATE(1360), 1, + sym_regex, + STATE(1917), 1, sym_ns_qualified_name, - [88764] = 6, - ACTIONS(1759), 1, + STATE(2052), 1, + sym_namespace, + [88766] = 6, + ACTIONS(294), 1, anon_sym_SLASH, - ACTIONS(2825), 1, + ACTIONS(2823), 1, sym_identifier, - STATE(316), 1, - sym_regex, - STATE(317), 1, + STATE(1391), 1, sym_func_call, - STATE(2016), 1, + STATE(1392), 1, + sym_regex, + STATE(1925), 1, sym_ns_qualified_name, - STATE(2047), 1, + STATE(2052), 1, sym_namespace, - [88783] = 6, - ACTIONS(324), 1, + [88785] = 6, + ACTIONS(117), 1, anon_sym_SLASH, - ACTIONS(2827), 1, + ACTIONS(2825), 1, sym_identifier, - STATE(449), 1, - sym_regex, - STATE(450), 1, + STATE(460), 1, sym_func_call, - STATE(1927), 1, + STATE(468), 1, + sym_regex, + STATE(1961), 1, sym_ns_qualified_name, - STATE(2047), 1, + STATE(2052), 1, sym_namespace, - [88802] = 5, - ACTIONS(560), 1, - anon_sym_DOLLAR, - ACTIONS(2829), 1, + [88804] = 5, + ACTIONS(2827), 1, sym_identifier, - STATE(195), 1, - sym_field_ref, - STATE(2063), 1, - sym_namespace, - STATE(177), 2, - sym_array_ref, - sym_ns_qualified_name, - [88819] = 5, - ACTIONS(332), 1, - anon_sym_DOLLAR, ACTIONS(2829), 1, - sym_identifier, - STATE(195), 1, - sym_field_ref, - STATE(2066), 1, - sym_namespace, - STATE(177), 2, - sym_array_ref, - sym_ns_qualified_name, - [88836] = 5, - ACTIONS(282), 1, anon_sym_DOLLAR, - ACTIONS(2815), 1, - sym_identifier, - STATE(222), 1, + STATE(439), 1, sym_field_ref, - STATE(1955), 1, + STATE(2065), 1, sym_namespace, - STATE(214), 2, + STATE(382), 2, sym_array_ref, sym_ns_qualified_name, - [88853] = 6, - ACTIONS(1735), 1, + [88821] = 6, + ACTIONS(1291), 1, anon_sym_SLASH, ACTIONS(2831), 1, sym_identifier, - STATE(1508), 1, + STATE(1546), 1, sym_func_call, - STATE(1537), 1, + STATE(1548), 1, sym_regex, STATE(1980), 1, sym_ns_qualified_name, - STATE(2047), 1, + STATE(2052), 1, sym_namespace, - [88872] = 6, - ACTIONS(1645), 1, + [88840] = 6, + ACTIONS(1591), 1, anon_sym_SLASH, ACTIONS(2833), 1, sym_identifier, - STATE(226), 1, + STATE(540), 1, sym_regex, - STATE(227), 1, + STATE(553), 1, sym_func_call, - STATE(1919), 1, + STATE(1910), 1, sym_ns_qualified_name, - STATE(2047), 1, + STATE(2052), 1, sym_namespace, - [88891] = 5, + [88859] = 6, + ACTIONS(1675), 1, + anon_sym_SLASH, ACTIONS(2835), 1, sym_identifier, - ACTIONS(2837), 1, - anon_sym_DOLLAR, - STATE(1515), 1, - sym_field_ref, - STATE(2058), 1, - sym_namespace, - STATE(1474), 2, - sym_array_ref, + STATE(185), 1, + sym_func_call, + STATE(186), 1, + sym_regex, + STATE(1935), 1, sym_ns_qualified_name, - [88908] = 5, - ACTIONS(2839), 1, + STATE(2052), 1, + sym_namespace, + [88878] = 5, + ACTIONS(2837), 1, sym_identifier, - ACTIONS(2841), 1, + ACTIONS(2839), 1, anon_sym_DOLLAR, - STATE(1315), 1, + STATE(479), 1, sym_field_ref, - STATE(2068), 1, + STATE(2059), 1, sym_namespace, - STATE(1285), 2, + STATE(443), 2, sym_array_ref, sym_ns_qualified_name, - [88925] = 6, - ACTIONS(1745), 1, + [88895] = 6, + ACTIONS(318), 1, anon_sym_SLASH, - ACTIONS(2843), 1, + ACTIONS(2841), 1, sym_identifier, - STATE(209), 1, - sym_regex, - STATE(216), 1, + STATE(1349), 1, sym_func_call, - STATE(1936), 1, + STATE(1350), 1, + sym_regex, + STATE(1941), 1, sym_ns_qualified_name, - STATE(2047), 1, + STATE(2052), 1, sym_namespace, - [88944] = 5, - ACTIONS(2845), 1, + [88914] = 5, + ACTIONS(2843), 1, sym_identifier, - ACTIONS(2847), 1, + ACTIONS(2845), 1, anon_sym_DOLLAR, - STATE(361), 1, + STATE(1362), 1, sym_field_ref, - STATE(2065), 1, + STATE(2067), 1, sym_namespace, - STATE(324), 2, + STATE(1320), 2, sym_array_ref, sym_ns_qualified_name, - [88961] = 6, - ACTIONS(1613), 1, + [88931] = 5, + ACTIONS(125), 1, + anon_sym_DOLLAR, + ACTIONS(2847), 1, + sym_identifier, + STATE(225), 1, + sym_field_ref, + STATE(2066), 1, + sym_namespace, + STATE(207), 2, + sym_array_ref, + sym_ns_qualified_name, + [88948] = 6, + ACTIONS(1711), 1, anon_sym_SLASH, ACTIONS(2849), 1, sym_identifier, - STATE(1361), 1, + STATE(226), 1, sym_func_call, - STATE(1362), 1, + STATE(242), 1, sym_regex, - STATE(1923), 1, + STATE(1911), 1, sym_ns_qualified_name, - STATE(2047), 1, + STATE(2052), 1, sym_namespace, - [88980] = 5, - ACTIONS(1283), 1, + [88967] = 5, + ACTIONS(324), 1, anon_sym_DOLLAR, ACTIONS(2851), 1, sym_identifier, - STATE(332), 1, + STATE(187), 1, sym_field_ref, - STATE(2075), 1, + STATE(2068), 1, sym_namespace, - STATE(310), 2, + STATE(181), 2, sym_array_ref, sym_ns_qualified_name, - [88997] = 5, + [88984] = 5, + ACTIONS(1299), 1, + anon_sym_DOLLAR, ACTIONS(2853), 1, sym_identifier, + STATE(321), 1, + sym_field_ref, + STATE(2080), 1, + sym_namespace, + STATE(296), 2, + sym_array_ref, + sym_ns_qualified_name, + [89001] = 5, ACTIONS(2855), 1, + sym__regex_char, + ACTIONS(2858), 1, + sym__regex_char_escaped, + ACTIONS(2861), 1, + anon_sym_LBRACK2, + ACTIONS(2864), 1, + anon_sym_RBRACK2, + STATE(1756), 2, + sym__regex_char_class, + aux_sym__regex_bracket_exp_repeat1, + [89018] = 6, + ACTIONS(1623), 1, + anon_sym_SLASH, + ACTIONS(2866), 1, + sym_identifier, + STATE(442), 1, + sym_regex, + STATE(444), 1, + sym_func_call, + STATE(1942), 1, + sym_ns_qualified_name, + STATE(2052), 1, + sym_namespace, + [89037] = 5, + ACTIONS(2868), 1, + sym_identifier, + ACTIONS(2870), 1, + anon_sym_DOLLAR, + STATE(1417), 1, + sym_field_ref, + STATE(2064), 1, + sym_namespace, + STATE(1370), 2, + sym_array_ref, + sym_ns_qualified_name, + [89054] = 5, + ACTIONS(444), 1, anon_sym_DOLLAR, - STATE(581), 1, + ACTIONS(2847), 1, + sym_identifier, + STATE(225), 1, sym_field_ref, - STATE(2022), 1, + STATE(1956), 1, sym_namespace, - STATE(551), 2, + STATE(207), 2, sym_array_ref, sym_ns_qualified_name, - [89014] = 4, - ACTIONS(2757), 1, + [89071] = 6, + ACTIONS(438), 1, + anon_sym_SLASH, + ACTIONS(2823), 1, + sym_identifier, + STATE(1391), 1, + sym_func_call, + STATE(1392), 1, + sym_regex, + STATE(1925), 1, + sym_ns_qualified_name, + STATE(2052), 1, + sym_namespace, + [89090] = 4, + ACTIONS(2759), 1, anon_sym_LBRACK2, - ACTIONS(2857), 1, + ACTIONS(2872), 1, anon_sym_SLASH2, - ACTIONS(2859), 2, + ACTIONS(2874), 2, sym__regex_char, sym__regex_char_escaped, - STATE(1774), 2, - sym__regex_char_list, + STATE(1787), 2, + sym__regex_bracket_exp, aux_sym_regex_pattern_repeat1, - [89029] = 6, - ACTIONS(17), 1, + [89105] = 6, + ACTIONS(1697), 1, anon_sym_SLASH, - ACTIONS(2861), 1, + ACTIONS(2835), 1, sym_identifier, - STATE(568), 1, + STATE(185), 1, sym_func_call, - STATE(572), 1, + STATE(186), 1, sym_regex, - STATE(2038), 1, + STATE(1935), 1, sym_ns_qualified_name, - STATE(2047), 1, + STATE(2052), 1, sym_namespace, - [89048] = 6, - ACTIONS(153), 1, + [89124] = 6, + ACTIONS(1779), 1, anon_sym_SLASH, - ACTIONS(2863), 1, + ACTIONS(2815), 1, sym_identifier, - STATE(477), 1, - sym_regex, - STATE(479), 1, + STATE(1300), 1, sym_func_call, - STATE(2042), 1, - sym_ns_qualified_name, - STATE(2047), 1, - sym_namespace, - [89067] = 5, - ACTIONS(2865), 1, - sym_identifier, - ACTIONS(2867), 1, - anon_sym_DOLLAR, - STATE(478), 1, - sym_field_ref, - STATE(2054), 1, - sym_namespace, - STATE(438), 2, - sym_array_ref, + STATE(1302), 1, + sym_regex, + STATE(1947), 1, sym_ns_qualified_name, - [89084] = 5, - ACTIONS(2869), 1, - sym_identifier, - ACTIONS(2871), 1, - anon_sym_DOLLAR, - STATE(437), 1, - sym_field_ref, - STATE(2064), 1, + STATE(2052), 1, sym_namespace, - STATE(358), 2, - sym_array_ref, - sym_ns_qualified_name, - [89101] = 6, - ACTIONS(474), 1, + [89143] = 6, + ACTIONS(360), 1, anon_sym_SLASH, - ACTIONS(2873), 1, + ACTIONS(2841), 1, sym_identifier, - STATE(1370), 1, - sym_regex, - STATE(1383), 1, + STATE(1349), 1, sym_func_call, + STATE(1350), 1, + sym_regex, STATE(1941), 1, sym_ns_qualified_name, - STATE(2047), 1, + STATE(2052), 1, sym_namespace, - [89120] = 5, - ACTIONS(2875), 1, + [89162] = 5, + ACTIONS(2876), 1, sym_identifier, - ACTIONS(2877), 1, + ACTIONS(2878), 1, anon_sym_DOLLAR, - STATE(1551), 1, + STATE(567), 1, sym_field_ref, - STATE(2047), 1, + STATE(2027), 1, sym_namespace, - STATE(1509), 2, + STATE(533), 2, sym_array_ref, sym_ns_qualified_name, - [89137] = 5, - ACTIONS(390), 1, + [89179] = 5, + ACTIONS(302), 1, anon_sym_DOLLAR, - ACTIONS(2815), 1, + ACTIONS(2847), 1, sym_identifier, - STATE(222), 1, + STATE(225), 1, sym_field_ref, - STATE(1955), 1, + STATE(1956), 1, sym_namespace, - STATE(214), 2, + STATE(207), 2, sym_array_ref, sym_ns_qualified_name, - [89154] = 6, - ACTIONS(1625), 1, + [89196] = 6, + ACTIONS(17), 1, anon_sym_SLASH, - ACTIONS(2825), 1, + ACTIONS(2880), 1, sym_identifier, - STATE(316), 1, + STATE(577), 1, sym_regex, - STATE(317), 1, + STATE(578), 1, sym_func_call, - STATE(2016), 1, + STATE(2043), 1, sym_ns_qualified_name, - STATE(2047), 1, + STATE(2052), 1, sym_namespace, - [89173] = 6, - ACTIONS(1711), 1, + [89215] = 6, + ACTIONS(1729), 1, anon_sym_SLASH, - ACTIONS(2833), 1, + ACTIONS(2835), 1, sym_identifier, - STATE(226), 1, - sym_regex, - STATE(227), 1, + STATE(185), 1, sym_func_call, - STATE(1919), 1, + STATE(186), 1, + sym_regex, + STATE(1935), 1, sym_ns_qualified_name, - STATE(2047), 1, + STATE(2052), 1, sym_namespace, - [89192] = 5, - ACTIONS(2879), 1, + [89234] = 5, + ACTIONS(2882), 1, sym_identifier, - ACTIONS(2881), 1, + ACTIONS(2884), 1, anon_sym_DOLLAR, - STATE(1364), 1, + STATE(1299), 1, sym_field_ref, - STATE(2062), 1, + STATE(2073), 1, sym_namespace, - STATE(1325), 2, + STATE(1282), 2, sym_array_ref, sym_ns_qualified_name, - [89209] = 5, - ACTIONS(482), 1, - anon_sym_DOLLAR, - ACTIONS(2829), 1, + [89251] = 5, + ACTIONS(2843), 1, sym_identifier, - STATE(195), 1, + ACTIONS(2886), 1, + anon_sym_DOLLAR, + STATE(1362), 1, sym_field_ref, - STATE(2063), 1, + STATE(2067), 1, sym_namespace, - STATE(177), 2, + STATE(1320), 2, sym_array_ref, sym_ns_qualified_name, - [89226] = 6, - ACTIONS(1799), 1, - anon_sym_SLASH, - ACTIONS(2843), 1, + [89268] = 5, + ACTIONS(2888), 1, sym_identifier, - STATE(209), 1, - sym_regex, - STATE(216), 1, - sym_func_call, - STATE(1936), 1, - sym_ns_qualified_name, - STATE(2047), 1, - sym_namespace, - [89245] = 5, - ACTIONS(25), 1, + ACTIONS(2890), 1, anon_sym_DOLLAR, - ACTIONS(2851), 1, - sym_identifier, - STATE(332), 1, + STATE(1352), 1, sym_field_ref, - STATE(2057), 1, + STATE(2072), 1, sym_namespace, - STATE(310), 2, + STATE(1327), 2, sym_array_ref, sym_ns_qualified_name, - [89262] = 5, - ACTIONS(2839), 1, - sym_identifier, - ACTIONS(2883), 1, + [89285] = 5, + ACTIONS(368), 1, anon_sym_DOLLAR, - STATE(1315), 1, + ACTIONS(2851), 1, + sym_identifier, + STATE(187), 1, sym_field_ref, STATE(2068), 1, sym_namespace, - STATE(1285), 2, + STATE(181), 2, sym_array_ref, sym_ns_qualified_name, - [89279] = 6, - ACTIONS(1275), 1, + [89302] = 6, + ACTIONS(550), 1, anon_sym_SLASH, - ACTIONS(2885), 1, + ACTIONS(2892), 1, sym_identifier, - STATE(1544), 1, + STATE(437), 1, sym_func_call, - STATE(1552), 1, + STATE(438), 1, sym_regex, - STATE(1912), 1, + STATE(1923), 1, sym_ns_qualified_name, - STATE(2047), 1, + STATE(2052), 1, sym_namespace, - [89298] = 5, - ACTIONS(2887), 1, + [89321] = 5, + ACTIONS(2888), 1, sym_identifier, - ACTIONS(2889), 1, + ACTIONS(2894), 1, anon_sym_DOLLAR, - STATE(561), 1, + STATE(1352), 1, sym_field_ref, - STATE(2056), 1, + STATE(2072), 1, sym_namespace, - STATE(522), 2, + STATE(1327), 2, sym_array_ref, sym_ns_qualified_name, - [89315] = 4, - ACTIONS(2891), 1, - anon_sym_SLASH2, - ACTIONS(2896), 1, - anon_sym_LBRACK2, - ACTIONS(2893), 2, - sym__regex_char, - sym__regex_char_escaped, - STATE(1774), 2, - sym__regex_char_list, - aux_sym_regex_pattern_repeat1, - [89330] = 6, - ACTIONS(1603), 1, + [89338] = 6, + ACTIONS(1799), 1, anon_sym_SLASH, - ACTIONS(2899), 1, + ACTIONS(2896), 1, sym_identifier, - STATE(564), 1, - sym_regex, - STATE(565), 1, + STATE(317), 1, sym_func_call, - STATE(1979), 1, - sym_ns_qualified_name, - STATE(2047), 1, - sym_namespace, - [89349] = 6, - ACTIONS(1781), 1, - anon_sym_SLASH, - ACTIONS(2901), 1, - sym_identifier, - STATE(1317), 1, + STATE(318), 1, sym_regex, - STATE(1318), 1, - sym_func_call, - STATE(1946), 1, + STATE(1924), 1, sym_ns_qualified_name, - STATE(2047), 1, + STATE(2052), 1, sym_namespace, - [89368] = 5, - ACTIONS(2879), 1, + [89357] = 5, + ACTIONS(2882), 1, sym_identifier, - ACTIONS(2903), 1, + ACTIONS(2898), 1, anon_sym_DOLLAR, - STATE(1364), 1, + STATE(1299), 1, sym_field_ref, - STATE(2062), 1, + STATE(2073), 1, sym_namespace, - STATE(1325), 2, + STATE(1282), 2, sym_array_ref, sym_ns_qualified_name, - [89385] = 6, - ACTIONS(1593), 1, - anon_sym_SLASH, - ACTIONS(2901), 1, + [89374] = 5, + ACTIONS(2868), 1, sym_identifier, - STATE(1317), 1, - sym_regex, - STATE(1318), 1, - sym_func_call, - STATE(1946), 1, + ACTIONS(2900), 1, + anon_sym_DOLLAR, + STATE(1417), 1, + sym_field_ref, + STATE(2064), 1, + sym_namespace, + STATE(1370), 2, + sym_array_ref, sym_ns_qualified_name, - STATE(2047), 1, + [89391] = 5, + ACTIONS(558), 1, + anon_sym_DOLLAR, + ACTIONS(2851), 1, + sym_identifier, + STATE(187), 1, + sym_field_ref, + STATE(2071), 1, sym_namespace, - [89404] = 5, - ACTIONS(2905), 1, + STATE(181), 2, + sym_array_ref, + sym_ns_qualified_name, + [89408] = 5, + ACTIONS(2902), 1, sym_identifier, - ACTIONS(2907), 1, + ACTIONS(2904), 1, anon_sym_DOLLAR, - STATE(444), 1, + STATE(1543), 1, sym_field_ref, - STATE(2060), 1, + STATE(2052), 1, sym_namespace, - STATE(393), 2, + STATE(1542), 2, sym_array_ref, sym_ns_qualified_name, - [89421] = 6, - ACTIONS(554), 1, - anon_sym_SLASH, - ACTIONS(2873), 1, + [89425] = 5, + ACTIONS(25), 1, + anon_sym_DOLLAR, + ACTIONS(2853), 1, sym_identifier, - STATE(1370), 1, - sym_regex, - STATE(1383), 1, - sym_func_call, - STATE(1941), 1, - sym_ns_qualified_name, - STATE(2047), 1, + STATE(321), 1, + sym_field_ref, + STATE(2062), 1, sym_namespace, - [89440] = 6, - ACTIONS(1725), 1, + STATE(296), 2, + sym_array_ref, + sym_ns_qualified_name, + [89442] = 6, + ACTIONS(1635), 1, anon_sym_SLASH, - ACTIONS(2909), 1, + ACTIONS(2896), 1, sym_identifier, - STATE(434), 1, + STATE(317), 1, sym_func_call, - STATE(436), 1, + STATE(318), 1, sym_regex, - STATE(1915), 1, + STATE(1924), 1, sym_ns_qualified_name, - STATE(2047), 1, + STATE(2052), 1, sym_namespace, - [89459] = 6, - ACTIONS(382), 1, + [89461] = 6, + ACTIONS(1749), 1, anon_sym_SLASH, - ACTIONS(2911), 1, + ACTIONS(2849), 1, sym_identifier, - STATE(1401), 1, + STATE(226), 1, sym_func_call, - STATE(1413), 1, + STATE(242), 1, sym_regex, - STATE(1910), 1, + STATE(1911), 1, sym_ns_qualified_name, - STATE(2047), 1, + STATE(2052), 1, sym_namespace, - [89478] = 6, - ACTIONS(1681), 1, + [89480] = 6, + ACTIONS(1603), 1, anon_sym_SLASH, - ACTIONS(2843), 1, + ACTIONS(2849), 1, sym_identifier, - STATE(209), 1, - sym_regex, - STATE(216), 1, + STATE(226), 1, sym_func_call, - STATE(1936), 1, + STATE(242), 1, + sym_regex, + STATE(1911), 1, sym_ns_qualified_name, - STATE(2047), 1, + STATE(2052), 1, sym_namespace, - [89497] = 6, - ACTIONS(1563), 1, - anon_sym_SLASH, - ACTIONS(2833), 1, + [89499] = 5, + ACTIONS(2906), 1, sym_identifier, - STATE(226), 1, - sym_regex, - STATE(227), 1, - sym_func_call, - STATE(1919), 1, - sym_ns_qualified_name, - STATE(2047), 1, + ACTIONS(2908), 1, + anon_sym_DOLLAR, + STATE(1521), 1, + sym_field_ref, + STATE(2063), 1, sym_namespace, + STATE(1497), 2, + sym_array_ref, + sym_ns_qualified_name, [89516] = 5, - ACTIONS(2819), 1, + ACTIONS(2910), 1, sym_identifier, - ACTIONS(2913), 1, + ACTIONS(2912), 1, anon_sym_DOLLAR, - STATE(1391), 1, + STATE(381), 1, sym_field_ref, - STATE(2059), 1, + STATE(2070), 1, sym_namespace, - STATE(1351), 2, + STATE(324), 2, sym_array_ref, sym_ns_qualified_name, [89533] = 6, - ACTIONS(1701), 1, + ACTIONS(1765), 1, anon_sym_SLASH, - ACTIONS(2849), 1, + ACTIONS(2914), 1, sym_identifier, - STATE(1361), 1, + STATE(1518), 1, sym_func_call, - STATE(1362), 1, + STATE(1520), 1, sym_regex, - STATE(1923), 1, + STATE(1912), 1, sym_ns_qualified_name, - STATE(2047), 1, + STATE(2052), 1, sym_namespace, - [89552] = 6, - ACTIONS(276), 1, + [89552] = 4, + ACTIONS(2916), 1, + anon_sym_SLASH2, + ACTIONS(2921), 1, + anon_sym_LBRACK2, + ACTIONS(2918), 2, + sym__regex_char, + sym__regex_char_escaped, + STATE(1787), 2, + sym__regex_bracket_exp, + aux_sym_regex_pattern_repeat1, + [89567] = 5, + ACTIONS(2924), 1, + sym__regex_char, + ACTIONS(2926), 1, + sym__regex_char_escaped, + ACTIONS(2928), 1, + anon_sym_LBRACK2, + ACTIONS(2930), 1, + anon_sym_RBRACK2, + STATE(1756), 2, + sym__regex_char_class, + aux_sym__regex_bracket_exp_repeat1, + [89584] = 6, + ACTIONS(1789), 1, anon_sym_SLASH, - ACTIONS(2911), 1, + ACTIONS(2821), 1, sym_identifier, - STATE(1401), 1, + STATE(1359), 1, sym_func_call, - STATE(1413), 1, + STATE(1360), 1, sym_regex, - STATE(1910), 1, + STATE(1917), 1, sym_ns_qualified_name, - STATE(2047), 1, + STATE(2052), 1, sym_namespace, - [89571] = 2, - ACTIONS(2915), 1, - sym__if_else_separator, - ACTIONS(2024), 4, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_while, - [89581] = 2, - ACTIONS(2917), 1, - sym__if_else_separator, - ACTIONS(2024), 4, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_while, - [89591] = 4, + [89603] = 5, + ACTIONS(2932), 1, + sym_identifier, + ACTIONS(2934), 1, + anon_sym_DOLLAR, + STATE(440), 1, + sym_field_ref, + STATE(2069), 1, + sym_namespace, + STATE(368), 2, + sym_array_ref, + sym_ns_qualified_name, + [89620] = 4, ACTIONS(37), 1, anon_sym_POUND, - ACTIONS(2919), 1, - anon_sym_else, - STATE(1202), 1, - sym_else_clause, - STATE(1801), 2, + ACTIONS(2936), 1, + anon_sym_LBRACE, + STATE(1171), 1, + sym_switch_body, + STATE(1800), 2, sym_comment, aux_sym_if_statement_repeat1, - [89605] = 4, + [89634] = 4, ACTIONS(37), 1, anon_sym_POUND, - ACTIONS(2921), 1, + ACTIONS(2938), 1, anon_sym_else, - STATE(1192), 1, + STATE(1160), 1, sym_else_clause, - STATE(1799), 2, + STATE(1800), 2, sym_comment, aux_sym_if_statement_repeat1, - [89619] = 4, + [89648] = 2, + ACTIONS(2940), 1, + sym__if_else_separator, + ACTIONS(2020), 4, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_while, + [89658] = 2, + ACTIONS(2940), 1, + sym__if_else_separator, + ACTIONS(2020), 4, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_while, + [89668] = 4, ACTIONS(37), 1, anon_sym_POUND, - ACTIONS(2923), 1, - anon_sym_else, - STATE(1192), 1, - sym_else_clause, + ACTIONS(2942), 1, + anon_sym_LBRACE, + STATE(1262), 1, + sym_switch_body, STATE(1800), 2, sym_comment, aux_sym_if_statement_repeat1, - [89633] = 4, + [89682] = 4, ACTIONS(37), 1, anon_sym_POUND, - ACTIONS(2925), 1, + ACTIONS(2944), 1, anon_sym_else, - STATE(1223), 1, + STATE(1264), 1, sym_else_clause, - STATE(1806), 2, + STATE(1812), 2, sym_comment, aux_sym_if_statement_repeat1, - [89647] = 4, + [89696] = 4, ACTIONS(37), 1, anon_sym_POUND, - ACTIONS(2927), 1, + ACTIONS(2946), 1, anon_sym_else, - STATE(1175), 1, + STATE(1264), 1, sym_else_clause, - STATE(1806), 2, + STATE(1802), 2, sym_comment, aux_sym_if_statement_repeat1, - [89661] = 4, - ACTIONS(37), 1, + [89710] = 2, + ACTIONS(2948), 1, + sym__if_else_separator, + ACTIONS(2020), 4, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_while, + [89720] = 2, + ACTIONS(2948), 1, + sym__if_else_separator, + ACTIONS(2020), 4, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + anon_sym_while, + [89730] = 3, + ACTIONS(2950), 1, anon_sym_POUND, - ACTIONS(2929), 1, + ACTIONS(2003), 2, anon_sym_else, - STATE(1202), 1, - sym_else_clause, - STATE(1797), 2, + anon_sym_LBRACE, + STATE(1800), 2, sym_comment, aux_sym_if_statement_repeat1, - [89675] = 4, + [89742] = 4, ACTIONS(37), 1, anon_sym_POUND, - ACTIONS(2925), 1, + ACTIONS(2953), 1, anon_sym_else, - STATE(1202), 1, + STATE(1264), 1, sym_else_clause, - STATE(1793), 2, + STATE(1806), 2, sym_comment, aux_sym_if_statement_repeat1, - [89689] = 4, + [89756] = 4, ACTIONS(37), 1, anon_sym_POUND, - ACTIONS(2929), 1, + ACTIONS(2946), 1, anon_sym_else, - STATE(1223), 1, + STATE(1249), 1, sym_else_clause, - STATE(1806), 2, + STATE(1800), 2, sym_comment, aux_sym_if_statement_repeat1, - [89703] = 4, + [89770] = 4, ACTIONS(37), 1, anon_sym_POUND, - ACTIONS(2931), 1, + ACTIONS(2936), 1, anon_sym_LBRACE, - STATE(1203), 1, + STATE(1182), 1, sym_switch_body, - STATE(1806), 2, + STATE(1791), 2, sym_comment, aux_sym_if_statement_repeat1, - [89717] = 4, + [89784] = 4, ACTIONS(37), 1, anon_sym_POUND, - ACTIONS(2921), 1, + ACTIONS(2955), 1, anon_sym_else, - STATE(1175), 1, + STATE(1160), 1, sym_else_clause, - STATE(1806), 2, + STATE(1800), 2, sym_comment, aux_sym_if_statement_repeat1, - [89731] = 4, + [89798] = 4, ACTIONS(37), 1, anon_sym_POUND, - ACTIONS(2923), 1, + ACTIONS(2957), 1, anon_sym_else, - STATE(1175), 1, + STATE(1160), 1, sym_else_clause, - STATE(1806), 2, + STATE(1800), 2, sym_comment, aux_sym_if_statement_repeat1, - [89745] = 4, + [89812] = 4, ACTIONS(37), 1, anon_sym_POUND, - ACTIONS(2919), 1, + ACTIONS(2953), 1, anon_sym_else, - STATE(1223), 1, + STATE(1249), 1, sym_else_clause, - STATE(1806), 2, + STATE(1800), 2, sym_comment, aux_sym_if_statement_repeat1, - [89759] = 4, + [89826] = 4, ACTIONS(37), 1, anon_sym_POUND, - ACTIONS(2933), 1, + ACTIONS(2942), 1, anon_sym_LBRACE, - STATE(1160), 1, + STATE(1258), 1, sym_switch_body, - STATE(1807), 2, + STATE(1795), 2, sym_comment, aux_sym_if_statement_repeat1, - [89773] = 2, - ACTIONS(2915), 1, - sym__if_else_separator, - ACTIONS(2024), 4, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_while, - [89783] = 4, + [89840] = 4, ACTIONS(37), 1, anon_sym_POUND, - ACTIONS(2931), 1, - anon_sym_LBRACE, - STATE(1210), 1, - sym_switch_body, - STATE(1798), 2, + ACTIONS(2955), 1, + anon_sym_else, + STATE(1174), 1, + sym_else_clause, + STATE(1804), 2, sym_comment, aux_sym_if_statement_repeat1, - [89797] = 2, - ACTIONS(2917), 1, - sym__if_else_separator, - ACTIONS(2024), 4, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - anon_sym_while, - [89807] = 3, - ACTIONS(2935), 1, + [89854] = 4, + ACTIONS(37), 1, anon_sym_POUND, - ACTIONS(1997), 2, + ACTIONS(2938), 1, anon_sym_else, - anon_sym_LBRACE, - STATE(1806), 2, + STATE(1174), 1, + sym_else_clause, + STATE(1792), 2, sym_comment, aux_sym_if_statement_repeat1, - [89819] = 4, + [89868] = 3, + ACTIONS(2928), 1, + anon_sym_LBRACK2, + ACTIONS(2959), 2, + sym__regex_char, + sym__regex_char_escaped, + STATE(1788), 2, + sym__regex_char_class, + aux_sym__regex_bracket_exp_repeat1, + [89880] = 4, ACTIONS(37), 1, anon_sym_POUND, - ACTIONS(2933), 1, - anon_sym_LBRACE, - STATE(1184), 1, - sym_switch_body, - STATE(1806), 2, + ACTIONS(2957), 1, + anon_sym_else, + STATE(1174), 1, + sym_else_clause, + STATE(1805), 2, sym_comment, aux_sym_if_statement_repeat1, - [89833] = 4, + [89894] = 4, ACTIONS(37), 1, anon_sym_POUND, - ACTIONS(2927), 1, + ACTIONS(2944), 1, anon_sym_else, - STATE(1192), 1, + STATE(1249), 1, sym_else_clause, - STATE(1794), 2, + STATE(1800), 2, sym_comment, aux_sym_if_statement_repeat1, - [89847] = 3, - ACTIONS(2938), 1, + [89908] = 3, + ACTIONS(2961), 1, + anon_sym_DQUOTE, + STATE(1831), 1, + aux_sym_string_repeat1, + ACTIONS(2963), 2, + aux_sym_string_token1, + sym_escape_sequence, + [89919] = 3, + ACTIONS(2965), 1, sym_identifier, - STATE(2054), 1, + STATE(2027), 1, sym_namespace, - STATE(1144), 2, + STATE(1904), 2, sym_array_ref, sym_ns_qualified_name, - [89858] = 3, - ACTIONS(2940), 1, + [89930] = 3, + ACTIONS(2967), 1, sym_identifier, - STATE(2022), 1, + STATE(2059), 1, sym_namespace, - STATE(1865), 2, + STATE(1173), 2, sym_array_ref, sym_ns_qualified_name, - [89869] = 3, - ACTIONS(2942), 1, + [89941] = 3, + ACTIONS(2969), 1, sym_identifier, - STATE(2022), 1, + STATE(2027), 1, sym_namespace, - STATE(1895), 2, + STATE(1893), 2, sym_array_ref, sym_ns_qualified_name, - [89880] = 3, - ACTIONS(2944), 1, - anon_sym_DQUOTE, - STATE(1842), 1, - aux_sym_string_repeat1, - ACTIONS(2946), 2, - aux_sym_string_token1, - sym_escape_sequence, - [89891] = 3, - ACTIONS(2948), 1, - anon_sym_DQUOTE, - STATE(1818), 1, - aux_sym_string_repeat1, - ACTIONS(2950), 2, - aux_sym_string_token1, - sym_escape_sequence, - [89902] = 3, - ACTIONS(2952), 1, - anon_sym_DQUOTE, - STATE(1812), 1, - aux_sym_string_repeat1, - ACTIONS(2954), 2, - aux_sym_string_token1, - sym_escape_sequence, - [89913] = 2, - ACTIONS(2956), 1, + [89952] = 2, + ACTIONS(2971), 1, anon_sym_while, ACTIONS(1965), 3, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, - [89922] = 3, - ACTIONS(2958), 1, + [89961] = 3, + ACTIONS(2973), 1, anon_sym_DQUOTE, - STATE(1842), 1, + STATE(1838), 1, aux_sym_string_repeat1, - ACTIONS(2946), 2, + ACTIONS(2975), 2, aux_sym_string_token1, sym_escape_sequence, - [89933] = 3, - ACTIONS(2960), 1, + [89972] = 3, + ACTIONS(2977), 1, anon_sym_DQUOTE, - STATE(1842), 1, + STATE(1835), 1, aux_sym_string_repeat1, - ACTIONS(2946), 2, + ACTIONS(2979), 2, aux_sym_string_token1, sym_escape_sequence, - [89944] = 3, - ACTIONS(2962), 1, + [89983] = 3, + ACTIONS(2981), 1, + sym_identifier, + STATE(2027), 1, + sym_namespace, + STATE(1883), 2, + sym_array_ref, + sym_ns_qualified_name, + [89994] = 3, + ACTIONS(2983), 1, anon_sym_DQUOTE, - STATE(1842), 1, + STATE(1826), 1, aux_sym_string_repeat1, - ACTIONS(2946), 2, + ACTIONS(2985), 2, aux_sym_string_token1, sym_escape_sequence, - [89955] = 3, - ACTIONS(2964), 1, + [90005] = 3, + ACTIONS(2987), 1, anon_sym_DQUOTE, - STATE(1816), 1, + STATE(1831), 1, aux_sym_string_repeat1, - ACTIONS(2966), 2, + ACTIONS(2963), 2, aux_sym_string_token1, sym_escape_sequence, - [89966] = 3, - ACTIONS(2968), 1, + [90016] = 3, + ACTIONS(2989), 1, sym_identifier, - STATE(2022), 1, + STATE(2027), 1, sym_namespace, - STATE(1871), 2, + STATE(1880), 2, sym_array_ref, sym_ns_qualified_name, - [89977] = 3, - ACTIONS(2970), 1, + [90027] = 3, + ACTIONS(2991), 1, + anon_sym_DQUOTE, + STATE(1822), 1, + aux_sym_string_repeat1, + ACTIONS(2993), 2, + aux_sym_string_token1, + sym_escape_sequence, + [90038] = 3, + ACTIONS(2995), 1, sym_identifier, - STATE(2064), 1, + STATE(2069), 1, sym_namespace, - STATE(1098), 2, + STATE(968), 2, sym_array_ref, sym_ns_qualified_name, - [89988] = 3, - ACTIONS(2972), 1, + [90049] = 3, + ACTIONS(2997), 1, anon_sym_DQUOTE, - STATE(1817), 1, + STATE(1831), 1, aux_sym_string_repeat1, - ACTIONS(2974), 2, + ACTIONS(2963), 2, aux_sym_string_token1, sym_escape_sequence, - [89999] = 2, - ACTIONS(2976), 1, - anon_sym_while, - ACTIONS(1965), 3, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - [90008] = 3, - ACTIONS(2978), 1, + [90060] = 3, + ACTIONS(2999), 1, anon_sym_DQUOTE, - STATE(1827), 1, + STATE(1831), 1, + aux_sym_string_repeat1, + ACTIONS(2963), 2, + aux_sym_string_token1, + sym_escape_sequence, + [90071] = 3, + ACTIONS(3001), 1, + anon_sym_DQUOTE, + STATE(1846), 1, aux_sym_string_repeat1, - ACTIONS(2980), 2, + ACTIONS(3003), 2, aux_sym_string_token1, sym_escape_sequence, - [90019] = 3, - ACTIONS(2982), 1, + [90082] = 3, + ACTIONS(3005), 1, anon_sym_DQUOTE, STATE(1831), 1, aux_sym_string_repeat1, - ACTIONS(2984), 2, + ACTIONS(2963), 2, aux_sym_string_token1, sym_escape_sequence, - [90030] = 3, - ACTIONS(2986), 1, + [90093] = 2, + ACTIONS(3007), 1, + sym__regex_char, + ACTIONS(3009), 3, + sym__regex_char_escaped, + anon_sym_LBRACK2, + anon_sym_RBRACK2, + [90102] = 3, + ACTIONS(3011), 1, anon_sym_DQUOTE, - STATE(1842), 1, + STATE(1831), 1, aux_sym_string_repeat1, - ACTIONS(2946), 2, + ACTIONS(3013), 2, aux_sym_string_token1, sym_escape_sequence, - [90041] = 3, - ACTIONS(2988), 1, + [90113] = 3, + ACTIONS(3016), 1, + sym_identifier, + STATE(2027), 1, + sym_namespace, + STATE(1869), 2, + sym_array_ref, + sym_ns_qualified_name, + [90124] = 3, + ACTIONS(3018), 1, + sym_identifier, + STATE(2027), 1, + sym_namespace, + STATE(1874), 2, + sym_array_ref, + sym_ns_qualified_name, + [90135] = 3, + ACTIONS(3020), 1, anon_sym_DQUOTE, - STATE(1842), 1, + STATE(1829), 1, aux_sym_string_repeat1, - ACTIONS(2946), 2, + ACTIONS(3022), 2, aux_sym_string_token1, sym_escape_sequence, - [90052] = 3, - ACTIONS(2990), 1, + [90146] = 3, + ACTIONS(3024), 1, anon_sym_DQUOTE, - STATE(1842), 1, + STATE(1831), 1, aux_sym_string_repeat1, - ACTIONS(2946), 2, + ACTIONS(2963), 2, aux_sym_string_token1, sym_escape_sequence, - [90063] = 2, - ACTIONS(2992), 1, + [90157] = 1, + ACTIONS(3026), 4, + anon_sym_SLASH2, + sym__regex_char, + sym__regex_char_escaped, + anon_sym_LBRACK2, + [90164] = 2, + ACTIONS(3028), 1, anon_sym_while, ACTIONS(1965), 3, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, - [90072] = 3, - ACTIONS(2994), 1, + [90173] = 3, + ACTIONS(3030), 1, anon_sym_DQUOTE, - STATE(1828), 1, + STATE(1831), 1, aux_sym_string_repeat1, - ACTIONS(2996), 2, + ACTIONS(2963), 2, aux_sym_string_token1, sym_escape_sequence, - [90083] = 3, - ACTIONS(2998), 1, + [90184] = 3, + ACTIONS(3032), 1, anon_sym_DQUOTE, - STATE(1842), 1, + STATE(1831), 1, aux_sym_string_repeat1, - ACTIONS(2946), 2, + ACTIONS(2963), 2, aux_sym_string_token1, sym_escape_sequence, - [90094] = 3, - ACTIONS(3000), 1, - sym_identifier, - STATE(2022), 1, - sym_namespace, - STATE(1869), 2, - sym_array_ref, - sym_ns_qualified_name, - [90105] = 3, - ACTIONS(3002), 1, + [90195] = 3, + ACTIONS(3034), 1, anon_sym_DQUOTE, - STATE(1835), 1, + STATE(1845), 1, aux_sym_string_repeat1, - ACTIONS(3004), 2, + ACTIONS(3036), 2, aux_sym_string_token1, sym_escape_sequence, - [90116] = 2, - ACTIONS(3006), 1, - anon_sym_while, - ACTIONS(1965), 3, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR_LF, - [90125] = 3, - ACTIONS(3008), 1, + [90206] = 3, + ACTIONS(3038), 1, anon_sym_DQUOTE, - STATE(1842), 1, + STATE(1813), 1, aux_sym_string_repeat1, - ACTIONS(2946), 2, + ACTIONS(3040), 2, aux_sym_string_token1, sym_escape_sequence, - [90136] = 4, - ACTIONS(3010), 1, - sym__regex_char, - ACTIONS(3012), 1, - sym__regex_char_escaped, - ACTIONS(3014), 1, - anon_sym_RBRACK2, - STATE(1839), 1, - aux_sym__regex_char_list_repeat1, - [90149] = 3, - ACTIONS(3016), 1, + [90217] = 3, + ACTIONS(3042), 1, anon_sym_DQUOTE, - STATE(1840), 1, + STATE(1839), 1, aux_sym_string_repeat1, - ACTIONS(3018), 2, + ACTIONS(3044), 2, aux_sym_string_token1, sym_escape_sequence, - [90160] = 3, - ACTIONS(3020), 1, + [90228] = 3, + ACTIONS(3046), 1, anon_sym_DQUOTE, - STATE(1826), 1, + STATE(1827), 1, aux_sym_string_repeat1, - ACTIONS(3022), 2, + ACTIONS(3048), 2, aux_sym_string_token1, sym_escape_sequence, - [90171] = 4, - ACTIONS(3024), 1, - sym__regex_char, - ACTIONS(3027), 1, - sym__regex_char_escaped, - ACTIONS(3030), 1, - anon_sym_RBRACK2, - STATE(1839), 1, - aux_sym__regex_char_list_repeat1, - [90184] = 3, - ACTIONS(3032), 1, + [90239] = 2, + ACTIONS(3050), 1, + anon_sym_while, + ACTIONS(1965), 3, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + [90248] = 3, + ACTIONS(3052), 1, anon_sym_DQUOTE, - STATE(1842), 1, + STATE(1831), 1, aux_sym_string_repeat1, - ACTIONS(2946), 2, + ACTIONS(2963), 2, aux_sym_string_token1, sym_escape_sequence, - [90195] = 1, - ACTIONS(3034), 4, - anon_sym_SLASH2, - sym__regex_char, - sym__regex_char_escaped, - anon_sym_LBRACK2, - [90202] = 3, - ACTIONS(3036), 1, + [90259] = 3, + ACTIONS(3054), 1, anon_sym_DQUOTE, - STATE(1842), 1, + STATE(1831), 1, aux_sym_string_repeat1, - ACTIONS(3038), 2, + ACTIONS(2963), 2, aux_sym_string_token1, sym_escape_sequence, - [90213] = 3, - ACTIONS(3041), 1, - sym_identifier, - STATE(2022), 1, - sym_namespace, - STATE(1861), 2, - sym_array_ref, - sym_ns_qualified_name, - [90224] = 3, - ACTIONS(3043), 1, - sym_identifier, - STATE(2022), 1, - sym_namespace, - STATE(1904), 2, - sym_array_ref, - sym_ns_qualified_name, - [90235] = 3, - ACTIONS(3045), 1, - sym_identifier, - STATE(2022), 1, - sym_namespace, - STATE(2030), 1, - sym_ns_qualified_name, - [90245] = 3, - ACTIONS(652), 1, - anon_sym_COLON_COLON, - ACTIONS(1175), 1, - anon_sym_LBRACK, - ACTIONS(3047), 1, - anon_sym_RPAREN, - [90255] = 3, - ACTIONS(3049), 1, - anon_sym_COMMA, - ACTIONS(3052), 1, - anon_sym_RPAREN, - STATE(1847), 1, - aux_sym_param_list_repeat1, - [90265] = 3, - ACTIONS(3054), 1, - anon_sym_COMMA, + [90270] = 2, ACTIONS(3056), 1, - anon_sym_RPAREN, - STATE(1847), 1, - aux_sym_param_list_repeat1, - [90275] = 3, - ACTIONS(652), 1, + anon_sym_while, + ACTIONS(1965), 3, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR_LF, + [90279] = 3, + ACTIONS(650), 1, anon_sym_COLON_COLON, - ACTIONS(1175), 1, + ACTIONS(1177), 1, anon_sym_LBRACK, ACTIONS(3058), 1, anon_sym_RPAREN, - [90285] = 3, - ACTIONS(652), 1, + [90289] = 3, + ACTIONS(650), 1, anon_sym_COLON_COLON, - ACTIONS(1175), 1, + ACTIONS(1177), 1, anon_sym_LBRACK, ACTIONS(3060), 1, anon_sym_RPAREN, - [90295] = 3, - ACTIONS(652), 1, - anon_sym_COLON_COLON, - ACTIONS(1175), 1, - anon_sym_LBRACK, + [90299] = 3, + ACTIONS(2274), 1, + anon_sym_RPAREN, ACTIONS(3062), 1, + anon_sym_COMMA, + STATE(1850), 1, + aux_sym_args_repeat1, + [90309] = 3, + ACTIONS(3065), 1, + anon_sym_COMMA, + ACTIONS(3067), 1, anon_sym_RPAREN, - [90305] = 3, - ACTIONS(652), 1, + STATE(1853), 1, + aux_sym_param_list_repeat1, + [90319] = 3, + ACTIONS(650), 1, anon_sym_COLON_COLON, - ACTIONS(1175), 1, + ACTIONS(1177), 1, anon_sym_LBRACK, - ACTIONS(3064), 1, + ACTIONS(3069), 1, anon_sym_RPAREN, - [90315] = 3, - ACTIONS(2262), 1, + [90329] = 3, + ACTIONS(3071), 1, anon_sym_COMMA, - ACTIONS(3066), 1, - anon_sym_RPAREN, - STATE(1856), 1, - aux_sym_args_repeat1, - [90325] = 2, - STATE(1836), 1, - aux_sym__regex_char_list_repeat1, - ACTIONS(3068), 2, - sym__regex_char, - sym__regex_char_escaped, - [90333] = 3, - ACTIONS(3070), 1, - sym_identifier, - ACTIONS(3072), 1, - anon_sym_RPAREN, - STATE(1958), 1, - sym_param_list, - [90343] = 3, - ACTIONS(2298), 1, - anon_sym_RPAREN, ACTIONS(3074), 1, - anon_sym_COMMA, - STATE(1856), 1, - aux_sym_args_repeat1, - [90353] = 3, - ACTIONS(3054), 1, - anon_sym_COMMA, - ACTIONS(3077), 1, anon_sym_RPAREN, - STATE(1848), 1, + STATE(1853), 1, aux_sym_param_list_repeat1, - [90363] = 3, - ACTIONS(652), 1, + [90339] = 3, + ACTIONS(650), 1, anon_sym_COLON_COLON, - ACTIONS(1175), 1, + ACTIONS(1177), 1, anon_sym_LBRACK, - ACTIONS(3079), 1, + ACTIONS(3076), 1, anon_sym_RPAREN, - [90373] = 2, - ACTIONS(3081), 1, - anon_sym_getline, - STATE(1345), 1, - sym_getline_input, - [90380] = 2, - ACTIONS(652), 1, - anon_sym_COLON_COLON, - ACTIONS(686), 1, - anon_sym_LPAREN2, - [90387] = 2, - ACTIONS(1175), 1, - anon_sym_LBRACK, - ACTIONS(3064), 1, + [90349] = 3, + ACTIONS(2262), 1, + anon_sym_COMMA, + ACTIONS(3078), 1, anon_sym_RPAREN, - [90394] = 2, - ACTIONS(652), 1, - anon_sym_COLON_COLON, - ACTIONS(3083), 1, - anon_sym_LPAREN2, - [90401] = 2, - ACTIONS(652), 1, - anon_sym_COLON_COLON, - ACTIONS(904), 1, - anon_sym_LPAREN2, - [90408] = 2, - ACTIONS(652), 1, + STATE(1850), 1, + aux_sym_args_repeat1, + [90359] = 3, + ACTIONS(650), 1, anon_sym_COLON_COLON, - ACTIONS(1443), 1, - anon_sym_LPAREN2, - [90415] = 2, - ACTIONS(1175), 1, + ACTIONS(1177), 1, anon_sym_LBRACK, - ACTIONS(3062), 1, + ACTIONS(3080), 1, anon_sym_RPAREN, - [90422] = 2, - ACTIONS(3085), 1, - anon_sym_getline, - STATE(473), 1, - sym_getline_input, - [90429] = 2, - ACTIONS(3087), 1, - anon_sym_getline, - STATE(199), 1, - sym_getline_input, - [90436] = 2, - ACTIONS(3089), 1, - anon_sym_getline, - STATE(241), 1, - sym_getline_input, - [90443] = 2, - ACTIONS(1175), 1, + [90369] = 3, + ACTIONS(3065), 1, + anon_sym_COMMA, + ACTIONS(3082), 1, + anon_sym_RPAREN, + STATE(1851), 1, + aux_sym_param_list_repeat1, + [90379] = 3, + ACTIONS(3084), 1, + sym_identifier, + ACTIONS(3086), 1, + anon_sym_RPAREN, + STATE(1960), 1, + sym_param_list, + [90389] = 3, + ACTIONS(650), 1, + anon_sym_COLON_COLON, + ACTIONS(1177), 1, anon_sym_LBRACK, - ACTIONS(3079), 1, + ACTIONS(3088), 1, anon_sym_RPAREN, - [90450] = 2, - ACTIONS(3091), 1, + [90399] = 3, + ACTIONS(3090), 1, + sym_identifier, + STATE(2027), 1, + sym_namespace, + STATE(2035), 1, + sym_ns_qualified_name, + [90409] = 2, + ACTIONS(3092), 1, anon_sym_getline, - STATE(545), 1, + STATE(183), 1, sym_getline_input, - [90457] = 2, - ACTIONS(1175), 1, - anon_sym_LBRACK, - ACTIONS(3058), 1, - anon_sym_RPAREN, - [90464] = 2, - ACTIONS(3093), 1, + [90416] = 2, + ACTIONS(3094), 1, anon_sym_getline, - STATE(315), 1, + STATE(1355), 1, sym_getline_input, - [90471] = 2, - ACTIONS(652), 1, + [90423] = 2, + ACTIONS(650), 1, anon_sym_COLON_COLON, - ACTIONS(3095), 1, + ACTIONS(3096), 1, anon_sym_LPAREN2, - [90478] = 2, - ACTIONS(652), 1, - anon_sym_COLON_COLON, - ACTIONS(3097), 1, - anon_sym_LPAREN, - [90485] = 2, - ACTIONS(3099), 1, - anon_sym_getline, - STATE(1523), 1, - sym_getline_input, - [90492] = 2, - ACTIONS(3101), 1, - anon_sym_getline, - STATE(569), 1, - sym_getline_input, - [90499] = 2, - ACTIONS(3103), 1, + [90430] = 2, + ACTIONS(3098), 1, anon_sym_getline, - STATE(1564), 1, + STATE(575), 1, sym_getline_input, - [90506] = 2, - ACTIONS(3105), 1, + [90437] = 2, + ACTIONS(3100), 1, anon_sym_getline, - STATE(1393), 1, + STATE(1345), 1, sym_getline_input, - [90513] = 2, - ACTIONS(3107), 1, + [90444] = 2, + ACTIONS(650), 1, + anon_sym_COLON_COLON, + ACTIONS(1041), 1, + anon_sym_LPAREN2, + [90451] = 2, + ACTIONS(836), 1, + anon_sym_COLON, + ACTIONS(3102), 1, + sym_regex_flags, + [90458] = 2, + ACTIONS(3104), 1, anon_sym_getline, - STATE(315), 1, + STATE(448), 1, sym_getline_input, - [90520] = 2, - ACTIONS(3109), 1, + [90465] = 2, + ACTIONS(1177), 1, + anon_sym_LBRACK, + ACTIONS(3088), 1, + anon_sym_RPAREN, + [90472] = 2, + ACTIONS(3106), 1, anon_sym_getline, - STATE(414), 1, + STATE(472), 1, sym_getline_input, - [90527] = 2, - ACTIONS(2749), 1, - anon_sym_DQUOTE, - STATE(1546), 1, - sym_string, - [90534] = 2, - ACTIONS(3111), 1, + [90479] = 2, + ACTIONS(3108), 1, anon_sym_getline, - STATE(241), 1, + STATE(430), 1, sym_getline_input, - [90541] = 2, - ACTIONS(3113), 1, + [90486] = 2, + ACTIONS(650), 1, + anon_sym_COLON_COLON, + ACTIONS(3110), 1, + anon_sym_LPAREN2, + [90493] = 2, + ACTIONS(3112), 1, anon_sym_getline, - STATE(1347), 1, + STATE(350), 1, sym_getline_input, - [90548] = 2, - ACTIONS(3115), 1, + [90500] = 2, + ACTIONS(1177), 1, + anon_sym_LBRACK, + ACTIONS(3060), 1, + anon_sym_RPAREN, + [90507] = 2, + ACTIONS(650), 1, + anon_sym_COLON_COLON, + ACTIONS(904), 1, + anon_sym_LPAREN2, + [90514] = 2, + ACTIONS(13), 1, + anon_sym_LBRACE, + STATE(1547), 1, + sym_block, + [90521] = 2, + ACTIONS(3114), 1, anon_sym_getline, - STATE(456), 1, + STATE(239), 1, sym_getline_input, - [90555] = 2, - ACTIONS(652), 1, + [90528] = 2, + ACTIONS(650), 1, anon_sym_COLON_COLON, - ACTIONS(1039), 1, + ACTIONS(1453), 1, anon_sym_LPAREN2, - [90562] = 2, - ACTIONS(3117), 1, + [90535] = 2, + ACTIONS(3116), 1, anon_sym_getline, - STATE(380), 1, + STATE(1411), 1, sym_getline_input, - [90569] = 2, - ACTIONS(652), 1, + [90542] = 2, + ACTIONS(1177), 1, + anon_sym_LBRACK, + ACTIONS(3080), 1, + anon_sym_RPAREN, + [90549] = 2, + ACTIONS(650), 1, anon_sym_COLON_COLON, - ACTIONS(3119), 1, - anon_sym_LPAREN2, - [90576] = 2, - ACTIONS(830), 1, - anon_sym_COLON, - ACTIONS(3121), 1, - sym_regex_flags, - [90583] = 2, - ACTIONS(646), 1, + ACTIONS(3118), 1, anon_sym_LPAREN2, - ACTIONS(652), 1, - anon_sym_COLON_COLON, - [90590] = 2, - ACTIONS(652), 1, + [90556] = 2, + ACTIONS(650), 1, anon_sym_COLON_COLON, - ACTIONS(1211), 1, + ACTIONS(3120), 1, anon_sym_LPAREN2, - [90597] = 2, - ACTIONS(652), 1, + [90563] = 2, + ACTIONS(1177), 1, + anon_sym_LBRACK, + ACTIONS(3076), 1, + anon_sym_RPAREN, + [90570] = 2, + ACTIONS(3122), 1, + anon_sym_getline, + STATE(396), 1, + sym_getline_input, + [90577] = 2, + ACTIONS(3124), 1, + anon_sym_getline, + STATE(1311), 1, + sym_getline_input, + [90584] = 2, + ACTIONS(650), 1, anon_sym_COLON_COLON, - ACTIONS(3123), 1, + ACTIONS(802), 1, anon_sym_LPAREN2, - [90604] = 2, - ACTIONS(3125), 1, + [90591] = 1, + ACTIONS(3074), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [90596] = 2, + ACTIONS(3126), 1, anon_sym_getline, - STATE(199), 1, + STATE(1516), 1, sym_getline_input, - [90611] = 2, - ACTIONS(652), 1, + [90603] = 2, + ACTIONS(650), 1, anon_sym_COLON_COLON, - ACTIONS(1241), 1, + ACTIONS(682), 1, anon_sym_LPAREN2, - [90618] = 2, - ACTIONS(652), 1, + [90610] = 2, + ACTIONS(3128), 1, + anon_sym_getline, + STATE(183), 1, + sym_getline_input, + [90617] = 2, + ACTIONS(3130), 1, + anon_sym_getline, + STATE(239), 1, + sym_getline_input, + [90624] = 2, + ACTIONS(650), 1, anon_sym_COLON_COLON, - ACTIONS(716), 1, + ACTIONS(1245), 1, anon_sym_LPAREN2, - [90625] = 2, - ACTIONS(1175), 1, + [90631] = 2, + ACTIONS(1177), 1, anon_sym_LBRACK, - ACTIONS(3060), 1, + ACTIONS(3069), 1, anon_sym_RPAREN, - [90632] = 2, - ACTIONS(652), 1, + [90638] = 2, + ACTIONS(3132), 1, + anon_sym_getline, + STATE(558), 1, + sym_getline_input, + [90645] = 2, + ACTIONS(650), 1, anon_sym_COLON_COLON, - ACTIONS(3127), 1, + ACTIONS(3134), 1, anon_sym_LPAREN2, - [90639] = 2, - ACTIONS(3129), 1, + [90652] = 2, + ACTIONS(3136), 1, anon_sym_getline, - STATE(1331), 1, + STATE(350), 1, sym_getline_input, - [90646] = 2, - ACTIONS(652), 1, + [90659] = 2, + ACTIONS(2734), 1, + anon_sym_DQUOTE, + STATE(1558), 1, + sym_string, + [90666] = 2, + ACTIONS(650), 1, anon_sym_COLON_COLON, - ACTIONS(738), 1, + ACTIONS(712), 1, anon_sym_LPAREN2, - [90653] = 2, - ACTIONS(13), 1, - anon_sym_LBRACE, - STATE(1550), 1, - sym_block, - [90660] = 2, + [90673] = 2, ACTIONS(13), 1, anon_sym_LBRACE, - STATE(1557), 1, + STATE(1553), 1, sym_block, - [90667] = 1, - ACTIONS(3052), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [90672] = 2, - ACTIONS(652), 1, + [90680] = 2, + ACTIONS(3138), 1, + anon_sym_getline, + STATE(1549), 1, + sym_getline_input, + [90687] = 2, + ACTIONS(644), 1, + anon_sym_LPAREN2, + ACTIONS(650), 1, + anon_sym_COLON_COLON, + [90694] = 2, + ACTIONS(650), 1, anon_sym_COLON_COLON, - ACTIONS(3131), 1, + ACTIONS(3140), 1, + anon_sym_LPAREN, + [90701] = 2, + ACTIONS(650), 1, + anon_sym_COLON_COLON, + ACTIONS(3142), 1, anon_sym_LPAREN2, - [90679] = 2, - ACTIONS(836), 1, - anon_sym_COLON, - ACTIONS(3133), 1, - sym_regex_flags, - [90686] = 2, - ACTIONS(1175), 1, + [90708] = 2, + ACTIONS(1177), 1, anon_sym_LBRACK, - ACTIONS(3047), 1, - anon_sym_RPAREN, - [90693] = 1, - ACTIONS(3135), 1, - anon_sym_SLASH2, - [90697] = 1, - ACTIONS(3137), 1, - anon_sym_RPAREN, - [90701] = 1, - ACTIONS(3139), 1, - sym__no_space, - [90705] = 1, - ACTIONS(2284), 1, - anon_sym_RBRACK, - [90709] = 1, - ACTIONS(3141), 1, + ACTIONS(3058), 1, anon_sym_RPAREN, - [90713] = 1, - ACTIONS(3123), 1, - anon_sym_LPAREN2, - [90717] = 1, - ACTIONS(3143), 1, - sym__no_space, - [90721] = 1, - ACTIONS(3127), 1, + [90715] = 2, + ACTIONS(830), 1, + anon_sym_COLON, + ACTIONS(3144), 1, + sym_regex_flags, + [90722] = 2, + ACTIONS(650), 1, + anon_sym_COLON_COLON, + ACTIONS(1225), 1, anon_sym_LPAREN2, - [90725] = 1, - ACTIONS(3145), 1, - sym__no_space, [90729] = 1, - ACTIONS(3147), 1, - anon_sym_RPAREN, + ACTIONS(3146), 1, + anon_sym_SLASH2, [90733] = 1, - ACTIONS(738), 1, - anon_sym_LPAREN2, + ACTIONS(3148), 1, + anon_sym_RPAREN, [90737] = 1, - ACTIONS(3149), 1, + ACTIONS(3150), 1, anon_sym_RPAREN, [90741] = 1, - ACTIONS(3151), 1, - sym__no_space, + ACTIONS(1041), 1, + anon_sym_LPAREN2, [90745] = 1, - ACTIONS(3153), 1, - anon_sym_RPAREN, + ACTIONS(682), 1, + anon_sym_LPAREN2, [90749] = 1, - ACTIONS(686), 1, + ACTIONS(1453), 1, anon_sym_LPAREN2, [90753] = 1, - ACTIONS(3155), 1, - anon_sym_SLASH2, + ACTIONS(3152), 1, + anon_sym_in, [90757] = 1, - ACTIONS(3157), 1, + ACTIONS(3154), 1, sym__no_space, [90761] = 1, - ACTIONS(3159), 1, + ACTIONS(3156), 1, anon_sym_RPAREN, [90765] = 1, - ACTIONS(1241), 1, - anon_sym_LPAREN2, + ACTIONS(3158), 1, + anon_sym_RPAREN, [90769] = 1, - ACTIONS(3161), 1, - anon_sym_SLASH2, + ACTIONS(1245), 1, + anon_sym_LPAREN2, [90773] = 1, - ACTIONS(3163), 1, + ACTIONS(3160), 1, sym__no_space, [90777] = 1, - ACTIONS(3165), 1, + ACTIONS(3162), 1, anon_sym_RPAREN, [90781] = 1, - ACTIONS(3131), 1, - anon_sym_LPAREN2, + ACTIONS(3164), 1, + sym__no_space, [90785] = 1, - ACTIONS(3167), 1, - anon_sym_SLASH2, + ACTIONS(3166), 1, + anon_sym_RPAREN, [90789] = 1, - ACTIONS(3169), 1, - anon_sym_SLASH2, + ACTIONS(3168), 1, + anon_sym_RPAREN, [90793] = 1, - ACTIONS(3171), 1, - sym__no_space, + ACTIONS(3134), 1, + anon_sym_LPAREN2, [90797] = 1, - ACTIONS(3173), 1, - anon_sym_RPAREN, + ACTIONS(904), 1, + anon_sym_LPAREN2, [90801] = 1, - ACTIONS(716), 1, + ACTIONS(3120), 1, anon_sym_LPAREN2, [90805] = 1, - ACTIONS(3175), 1, - anon_sym_SLASH2, - [90809] = 1, - ACTIONS(3177), 1, + ACTIONS(3170), 1, sym__no_space, - [90813] = 1, - ACTIONS(3179), 1, + [90809] = 1, + ACTIONS(3172), 1, anon_sym_RPAREN, + [90813] = 1, + ACTIONS(3174), 1, + sym__no_space, [90817] = 1, - ACTIONS(646), 1, + ACTIONS(712), 1, anon_sym_LPAREN2, [90821] = 1, - ACTIONS(3181), 1, - sym_identifier, + ACTIONS(3176), 1, + anon_sym_COLON, [90825] = 1, - ACTIONS(3183), 1, - anon_sym_SLASH2, + ACTIONS(3178), 1, + sym__no_space, [90829] = 1, - ACTIONS(3185), 1, + ACTIONS(3180), 1, sym__no_space, [90833] = 1, - ACTIONS(3187), 1, + ACTIONS(3182), 1, anon_sym_RPAREN, [90837] = 1, - ACTIONS(3119), 1, - anon_sym_LPAREN2, + ACTIONS(3184), 1, + sym__no_space, [90841] = 1, - ACTIONS(3189), 1, - anon_sym_SLASH2, + ACTIONS(644), 1, + anon_sym_LPAREN2, [90845] = 1, - ACTIONS(3191), 1, + ACTIONS(3186), 1, sym_identifier, [90849] = 1, - ACTIONS(3193), 1, - sym__no_space, - [90853] = 1, - ACTIONS(3195), 1, + ACTIONS(3188), 1, anon_sym_RPAREN, + [90853] = 1, + ACTIONS(3190), 1, + sym__no_space, [90857] = 1, - ACTIONS(1211), 1, - anon_sym_LPAREN2, + ACTIONS(3192), 1, + anon_sym_RPAREN, [90861] = 1, - ACTIONS(3197), 1, - anon_sym_SLASH2, + ACTIONS(3194), 1, + anon_sym_COLON, [90865] = 1, - ACTIONS(3199), 1, - sym_identifier, + ACTIONS(3142), 1, + anon_sym_LPAREN2, [90869] = 1, - ACTIONS(3201), 1, - sym__no_space, + ACTIONS(802), 1, + anon_sym_LPAREN2, [90873] = 1, - ACTIONS(3203), 1, - anon_sym_RPAREN, + ACTIONS(3196), 1, + anon_sym_in, [90877] = 1, - ACTIONS(3205), 1, - anon_sym_SLASH2, - [90881] = 1, - ACTIONS(3207), 1, + ACTIONS(3198), 1, sym__no_space, + [90881] = 1, + ACTIONS(3200), 1, + anon_sym_RPAREN, [90885] = 1, - ACTIONS(3209), 1, - sym__no_space, + ACTIONS(3202), 1, + anon_sym_RBRACK2, [90889] = 1, - ACTIONS(3211), 1, - sym__no_space, + ACTIONS(1225), 1, + anon_sym_LPAREN2, [90893] = 1, - ACTIONS(3213), 1, - anon_sym_COLON_COLON, + ACTIONS(3204), 1, + anon_sym_COLON2, [90897] = 1, - ACTIONS(3215), 1, - anon_sym_LPAREN, + ACTIONS(3206), 1, + sym__no_space, [90901] = 1, - ACTIONS(3217), 1, - anon_sym_LPAREN, + ACTIONS(3208), 1, + sym__no_space, [90905] = 1, - ACTIONS(3219), 1, + ACTIONS(3210), 1, anon_sym_RPAREN, [90909] = 1, - ACTIONS(3221), 1, - sym_identifier, + ACTIONS(3212), 1, + anon_sym_in, [90913] = 1, - ACTIONS(3223), 1, - anon_sym_LPAREN, + ACTIONS(3214), 1, + sym__no_space, [90917] = 1, - ACTIONS(3225), 1, - anon_sym_SLASH2, + ACTIONS(3216), 1, + sym__no_space, [90921] = 1, - ACTIONS(3227), 1, - sym_identifier, + ACTIONS(3218), 1, + sym__no_space, [90925] = 1, - ACTIONS(2290), 1, - anon_sym_RBRACK, + ACTIONS(3220), 1, + anon_sym_COLON_COLON, [90929] = 1, - ACTIONS(3229), 1, - anon_sym_RPAREN, - [90933] = 1, - ACTIONS(3231), 1, + ACTIONS(3222), 1, anon_sym_LPAREN, + [90933] = 1, + ACTIONS(3224), 1, + sym__no_space, [90937] = 1, - ACTIONS(3233), 1, - anon_sym_SLASH2, + ACTIONS(3226), 1, + anon_sym_LPAREN, [90941] = 1, - ACTIONS(3235), 1, - sym_identifier, - [90945] = 1, - ACTIONS(3237), 1, + ACTIONS(3228), 1, anon_sym_RPAREN, + [90945] = 1, + ACTIONS(3118), 1, + anon_sym_LPAREN2, [90949] = 1, - ACTIONS(2276), 1, - anon_sym_RBRACK, + ACTIONS(3230), 1, + anon_sym_LPAREN, [90953] = 1, - ACTIONS(3239), 1, + ACTIONS(3232), 1, anon_sym_RPAREN, [90957] = 1, - ACTIONS(3241), 1, - anon_sym_SLASH2, + ACTIONS(3234), 1, + anon_sym_in, [90961] = 1, - ACTIONS(3243), 1, - sym_identifier, + ACTIONS(3236), 1, + anon_sym_in, [90965] = 1, - ACTIONS(3245), 1, - anon_sym_SLASH2, + ACTIONS(3238), 1, + anon_sym_in, [90969] = 1, - ACTIONS(3247), 1, - anon_sym_RPAREN, + ACTIONS(3240), 1, + anon_sym_in, [90973] = 1, - ACTIONS(3249), 1, - anon_sym_SLASH2, + ACTIONS(3242), 1, + anon_sym_LPAREN, [90977] = 1, - ACTIONS(3251), 1, - sym_identifier, + ACTIONS(774), 1, + anon_sym_COLON, [90981] = 1, - ACTIONS(2304), 1, - anon_sym_RBRACK, + ACTIONS(3244), 1, + sym__no_space, [90985] = 1, - ACTIONS(3253), 1, - anon_sym_RPAREN, + ACTIONS(3246), 1, + aux_sym_comment_token1, [90989] = 1, - ACTIONS(1039), 1, - anon_sym_LPAREN2, + ACTIONS(3248), 1, + anon_sym_SLASH2, [90993] = 1, - ACTIONS(1443), 1, - anon_sym_LPAREN2, + ACTIONS(3250), 1, + anon_sym_in, [90997] = 1, - ACTIONS(3255), 1, - sym_identifier, + ACTIONS(3252), 1, + anon_sym_RPAREN, [91001] = 1, - ACTIONS(2314), 1, + ACTIONS(2280), 1, anon_sym_RBRACK, [91005] = 1, - ACTIONS(3257), 1, - anon_sym_RPAREN, + ACTIONS(3254), 1, + sym_identifier, [91009] = 1, - ACTIONS(3259), 1, + ACTIONS(3256), 1, anon_sym_RPAREN, [91013] = 1, - ACTIONS(3261), 1, - anon_sym_while, + ACTIONS(3258), 1, + anon_sym_RPAREN, [91017] = 1, - ACTIONS(3263), 1, - anon_sym_SLASH2, + ACTIONS(3260), 1, + anon_sym_RPAREN, [91021] = 1, - ACTIONS(3265), 1, - sym_identifier, + ACTIONS(3110), 1, + anon_sym_LPAREN2, [91025] = 1, - ACTIONS(2310), 1, - anon_sym_RBRACK, - [91029] = 1, - ACTIONS(3267), 1, + ACTIONS(3262), 1, anon_sym_RPAREN, + [91029] = 1, + ACTIONS(3264), 1, + anon_sym_SLASH2, [91033] = 1, - ACTIONS(3269), 1, - anon_sym_LPAREN, + ACTIONS(3266), 1, + anon_sym_RPAREN, [91037] = 1, - ACTIONS(3271), 1, - anon_sym_COLON, + ACTIONS(3268), 1, + anon_sym_SLASH2, [91041] = 1, - ACTIONS(3273), 1, + ACTIONS(3270), 1, anon_sym_SLASH2, [91045] = 1, - ACTIONS(3275), 1, - sym_identifier, + ACTIONS(3272), 1, + anon_sym_SLASH2, [91049] = 1, - ACTIONS(2280), 1, - anon_sym_RBRACK, + ACTIONS(3274), 1, + anon_sym_SLASH2, [91053] = 1, - ACTIONS(3277), 1, + ACTIONS(3276), 1, anon_sym_RPAREN, [91057] = 1, - ACTIONS(3279), 1, - anon_sym_in, + ACTIONS(3278), 1, + anon_sym_RPAREN, [91061] = 1, - ACTIONS(3281), 1, - sym_identifier, + ACTIONS(3280), 1, + anon_sym_SLASH2, [91065] = 1, - ACTIONS(3283), 1, - anon_sym_in, + ACTIONS(3282), 1, + anon_sym_SLASH2, [91069] = 1, - ACTIONS(3285), 1, + ACTIONS(3284), 1, sym_identifier, [91073] = 1, - ACTIONS(3287), 1, - aux_sym_comment_token1, + ACTIONS(3286), 1, + anon_sym_SLASH2, [91077] = 1, - ACTIONS(3289), 1, + ACTIONS(3288), 1, sym_identifier, [91081] = 1, - ACTIONS(2306), 1, - anon_sym_RBRACK, + ACTIONS(3290), 1, + anon_sym_while, [91085] = 1, - ACTIONS(2288), 1, - anon_sym_RBRACK, + ACTIONS(3292), 1, + sym_identifier, [91089] = 1, - ACTIONS(774), 1, - anon_sym_COLON, + ACTIONS(3294), 1, + anon_sym_LPAREN, [91093] = 1, - ACTIONS(3291), 1, - sym__no_space, + ACTIONS(3296), 1, + anon_sym_SLASH2, [91097] = 1, - ACTIONS(3293), 1, - anon_sym_RPAREN, + ACTIONS(3298), 1, + sym_identifier, [91101] = 1, - ACTIONS(3295), 1, - anon_sym_in, + ACTIONS(2276), 1, + anon_sym_RBRACK, [91105] = 1, - ACTIONS(3297), 1, - anon_sym_in, + ACTIONS(3300), 1, + anon_sym_RPAREN, [91109] = 1, - ACTIONS(3299), 1, + ACTIONS(3302), 1, anon_sym_SLASH2, [91113] = 1, - ACTIONS(3301), 1, - anon_sym_SLASH2, + ACTIONS(3304), 1, + sym_identifier, [91117] = 1, - ACTIONS(3303), 1, + ACTIONS(3306), 1, sym_identifier, [91121] = 1, - ACTIONS(2292), 1, + ACTIONS(2282), 1, anon_sym_RBRACK, [91125] = 1, - ACTIONS(3305), 1, + ACTIONS(3308), 1, anon_sym_RPAREN, [91129] = 1, - ACTIONS(3307), 1, - anon_sym_in, + ACTIONS(3310), 1, + anon_sym_SLASH2, [91133] = 1, - ACTIONS(3309), 1, - anon_sym_in, + ACTIONS(3312), 1, + sym_identifier, [91137] = 1, - ACTIONS(904), 1, - anon_sym_LPAREN2, + ACTIONS(2292), 1, + anon_sym_RBRACK, [91141] = 1, - ACTIONS(3311), 1, - anon_sym_RPAREN, + ACTIONS(2298), 1, + anon_sym_RBRACK, [91145] = 1, - ACTIONS(3313), 1, - anon_sym_while, + ACTIONS(3314), 1, + anon_sym_RPAREN, [91149] = 1, - ACTIONS(3315), 1, + ACTIONS(3316), 1, anon_sym_SLASH2, [91153] = 1, - ACTIONS(3317), 1, - anon_sym_in, + ACTIONS(3318), 1, + sym_identifier, [91157] = 1, - ACTIONS(3319), 1, - anon_sym_in, + ACTIONS(2314), 1, + anon_sym_RBRACK, [91161] = 1, - ACTIONS(3321), 1, - anon_sym_COLON_COLON, + ACTIONS(3320), 1, + anon_sym_RPAREN, [91165] = 1, - ACTIONS(3323), 1, - anon_sym_LPAREN, + ACTIONS(3322), 1, + anon_sym_SLASH2, [91169] = 1, - ACTIONS(3325), 1, + ACTIONS(3324), 1, sym_identifier, [91173] = 1, - ACTIONS(3327), 1, - sym__no_space, + ACTIONS(2304), 1, + anon_sym_RBRACK, [91177] = 1, - ACTIONS(3329), 1, - anon_sym_RPAREN, + ACTIONS(3326), 1, + anon_sym_COLON2, [91181] = 1, - ACTIONS(2302), 1, - anon_sym_RBRACK, + ACTIONS(3328), 1, + anon_sym_SLASH2, [91185] = 1, - ACTIONS(3331), 1, - anon_sym_RPAREN, + ACTIONS(3330), 1, + anon_sym_SLASH2, [91189] = 1, - ACTIONS(3333), 1, - anon_sym_in, + ACTIONS(3332), 1, + sym_identifier, [91193] = 1, - ACTIONS(3097), 1, - anon_sym_LPAREN, + ACTIONS(3334), 1, + anon_sym_while, [91197] = 1, - ACTIONS(3335), 1, - anon_sym_in, + ACTIONS(2302), 1, + anon_sym_RBRACK, [91201] = 1, - ACTIONS(3337), 1, - anon_sym_SLASH2, - [91205] = 1, - ACTIONS(3339), 1, + ACTIONS(3336), 1, anon_sym_RPAREN, + [91205] = 1, + ACTIONS(3338), 1, + anon_sym_in, [91209] = 1, - ACTIONS(2294), 1, - anon_sym_RBRACK, + ACTIONS(3340), 1, + anon_sym_COLON_COLON, [91213] = 1, - ACTIONS(3341), 1, - sym_identifier, + ACTIONS(3342), 1, + anon_sym_LPAREN, [91217] = 1, - ACTIONS(2268), 1, - anon_sym_RBRACK, + ACTIONS(3344), 1, + anon_sym_SLASH2, [91221] = 1, - ACTIONS(3343), 1, - anon_sym_RPAREN, + ACTIONS(3346), 1, + sym__no_space, [91225] = 1, - ACTIONS(3095), 1, - anon_sym_LPAREN2, + ACTIONS(3348), 1, + sym_identifier, [91229] = 1, - ACTIONS(3345), 1, - anon_sym_COLON, + ACTIONS(2286), 1, + anon_sym_RBRACK, [91233] = 1, - ACTIONS(3347), 1, - anon_sym_in, + ACTIONS(3350), 1, + anon_sym_RPAREN, [91237] = 1, - ACTIONS(3349), 1, - anon_sym_SLASH2, + ACTIONS(3352), 1, + anon_sym_in, [91241] = 1, - ACTIONS(3083), 1, - anon_sym_LPAREN2, + ACTIONS(3140), 1, + anon_sym_LPAREN, [91245] = 1, - ACTIONS(3351), 1, - sym_identifier, + ACTIONS(3354), 1, + anon_sym_SLASH2, [91249] = 1, - ACTIONS(3353), 1, - anon_sym_LPAREN, + ACTIONS(3356), 1, + sym_identifier, [91253] = 1, - ACTIONS(3355), 1, - anon_sym_SLASH2, + ACTIONS(2272), 1, + anon_sym_RBRACK, [91257] = 1, - ACTIONS(3357), 1, - anon_sym_LPAREN, + ACTIONS(3358), 1, + anon_sym_RPAREN, [91261] = 1, - ACTIONS(3359), 1, - anon_sym_COLON_COLON, + ACTIONS(3360), 1, + anon_sym_in, [91265] = 1, - ACTIONS(3361), 1, - anon_sym_LPAREN, + ACTIONS(3362), 1, + anon_sym_SLASH2, [91269] = 1, - ACTIONS(3363), 1, - anon_sym_LPAREN, + ACTIONS(3364), 1, + sym_identifier, [91273] = 1, - ACTIONS(3365), 1, - anon_sym_LPAREN, + ACTIONS(3096), 1, + anon_sym_LPAREN2, [91277] = 1, - ACTIONS(3367), 1, - anon_sym_RPAREN, + ACTIONS(2312), 1, + anon_sym_RBRACK, [91281] = 1, - ACTIONS(3369), 1, + ACTIONS(3366), 1, anon_sym_RPAREN, [91285] = 1, - ACTIONS(3371), 1, - anon_sym_RPAREN, + ACTIONS(3368), 1, + anon_sym_SLASH2, [91289] = 1, - ACTIONS(3373), 1, - anon_sym_COLON_COLON, + ACTIONS(3370), 1, + anon_sym_in, [91293] = 1, - ACTIONS(3375), 1, - sym__no_space, + ACTIONS(3372), 1, + anon_sym_SLASH2, [91297] = 1, - ACTIONS(3377), 1, - anon_sym_COLON_COLON, + ACTIONS(3374), 1, + anon_sym_LPAREN, [91301] = 1, - ACTIONS(3379), 1, - anon_sym_COLON_COLON, + ACTIONS(3376), 1, + anon_sym_SLASH2, [91305] = 1, - ACTIONS(3381), 1, - anon_sym_COLON_COLON, + ACTIONS(3378), 1, + anon_sym_LPAREN, [91309] = 1, - ACTIONS(3383), 1, + ACTIONS(3380), 1, anon_sym_COLON_COLON, [91313] = 1, - ACTIONS(3385), 1, - anon_sym_COLON_COLON, + ACTIONS(3382), 1, + anon_sym_LPAREN, [91317] = 1, - ACTIONS(3387), 1, - anon_sym_COLON_COLON, + ACTIONS(3384), 1, + anon_sym_LPAREN, [91321] = 1, - ACTIONS(3389), 1, - anon_sym_COLON_COLON, + ACTIONS(3386), 1, + anon_sym_LPAREN, [91325] = 1, - ACTIONS(3391), 1, - anon_sym_COLON_COLON, + ACTIONS(3388), 1, + anon_sym_RPAREN, [91329] = 1, - ACTIONS(3393), 1, - anon_sym_COLON_COLON, + ACTIONS(3390), 1, + sym_identifier, [91333] = 1, - ACTIONS(3395), 1, - anon_sym_COLON_COLON, + ACTIONS(2288), 1, + anon_sym_RBRACK, [91337] = 1, - ACTIONS(3397), 1, + ACTIONS(3392), 1, anon_sym_COLON_COLON, [91341] = 1, - ACTIONS(3399), 1, - anon_sym_COLON_COLON, + ACTIONS(3394), 1, + anon_sym_RPAREN, [91345] = 1, - ACTIONS(3401), 1, + ACTIONS(3396), 1, anon_sym_COLON_COLON, [91349] = 1, - ACTIONS(3403), 1, - anon_sym_LPAREN, + ACTIONS(3398), 1, + anon_sym_COLON_COLON, [91353] = 1, - ACTIONS(3405), 1, - anon_sym_LPAREN, + ACTIONS(3400), 1, + anon_sym_COLON_COLON, [91357] = 1, - ACTIONS(3407), 1, - anon_sym_LPAREN, + ACTIONS(3402), 1, + anon_sym_COLON_COLON, [91361] = 1, - ACTIONS(3409), 1, - anon_sym_LPAREN, + ACTIONS(3404), 1, + anon_sym_COLON_COLON, [91365] = 1, - ACTIONS(3411), 1, - sym_identifier, + ACTIONS(3406), 1, + anon_sym_COLON_COLON, [91369] = 1, - ACTIONS(3413), 1, - anon_sym_while, + ACTIONS(3408), 1, + anon_sym_COLON_COLON, [91373] = 1, - ACTIONS(3415), 1, + ACTIONS(3410), 1, anon_sym_COLON_COLON, [91377] = 1, - ACTIONS(2300), 1, - anon_sym_RBRACK, + ACTIONS(3412), 1, + anon_sym_COLON_COLON, [91381] = 1, - ACTIONS(3417), 1, - anon_sym_RPAREN, + ACTIONS(3414), 1, + anon_sym_COLON_COLON, [91385] = 1, - ACTIONS(3419), 1, - anon_sym_while, + ACTIONS(3416), 1, + anon_sym_COLON_COLON, [91389] = 1, - ACTIONS(3421), 1, - anon_sym_in, + ACTIONS(3418), 1, + anon_sym_COLON_COLON, [91393] = 1, - ACTIONS(3423), 1, - anon_sym_in, + ACTIONS(3420), 1, + anon_sym_COLON_COLON, [91397] = 1, - ACTIONS(3425), 1, - anon_sym_RPAREN, + ACTIONS(3422), 1, + anon_sym_LPAREN, [91401] = 1, - ACTIONS(3427), 1, - anon_sym_SLASH2, + ACTIONS(3424), 1, + anon_sym_LPAREN, [91405] = 1, - ACTIONS(3429), 1, - ts_builtin_sym_end, + ACTIONS(3426), 1, + anon_sym_LPAREN, [91409] = 1, - ACTIONS(3431), 1, - sym__no_space, + ACTIONS(3428), 1, + anon_sym_LPAREN, [91413] = 1, - ACTIONS(3433), 1, + ACTIONS(3430), 1, anon_sym_in, [91417] = 1, - ACTIONS(3435), 1, - anon_sym_LPAREN, + ACTIONS(3432), 1, + anon_sym_while, [91421] = 1, - ACTIONS(3437), 1, - anon_sym_LPAREN, + ACTIONS(3434), 1, + anon_sym_COLON_COLON, [91425] = 1, - ACTIONS(3439), 1, - anon_sym_LPAREN, + ACTIONS(3436), 1, + anon_sym_SLASH2, [91429] = 1, - ACTIONS(3441), 1, - aux_sym_comment_token1, + ACTIONS(3438), 1, + anon_sym_in, [91433] = 1, - ACTIONS(3443), 1, - anon_sym_RPAREN, + ACTIONS(3440), 1, + anon_sym_while, [91437] = 1, - ACTIONS(3445), 1, - anon_sym_SLASH2, + ACTIONS(3442), 1, + anon_sym_RPAREN, [91441] = 1, - ACTIONS(3447), 1, - anon_sym_in, + ACTIONS(3444), 1, + sym_identifier, [91445] = 1, - ACTIONS(3449), 1, - anon_sym_LPAREN, + ACTIONS(2306), 1, + anon_sym_RBRACK, [91449] = 1, - ACTIONS(3451), 1, - anon_sym_LPAREN, + ACTIONS(3446), 1, + anon_sym_RPAREN, [91453] = 1, - ACTIONS(3453), 1, - anon_sym_LPAREN, + ACTIONS(3448), 1, + ts_builtin_sym_end, [91457] = 1, - ACTIONS(3455), 1, + ACTIONS(3450), 1, anon_sym_in, [91461] = 1, - ACTIONS(3457), 1, - anon_sym_LPAREN, + ACTIONS(3452), 1, + anon_sym_SLASH2, [91465] = 1, - ACTIONS(3459), 1, - anon_sym_RPAREN, + ACTIONS(3454), 1, + anon_sym_LPAREN, [91469] = 1, - ACTIONS(2296), 1, - anon_sym_RBRACK, + ACTIONS(3456), 1, + anon_sym_LPAREN, [91473] = 1, - ACTIONS(3461), 1, + ACTIONS(3458), 1, anon_sym_LPAREN, [91477] = 1, - ACTIONS(3463), 1, + ACTIONS(3460), 1, + aux_sym_comment_token1, + [91481] = 1, + ACTIONS(2300), 1, + anon_sym_RBRACK, + [91485] = 1, + ACTIONS(3462), 1, + sym_identifier, + [91489] = 1, + ACTIONS(3464), 1, + sym_identifier, + [91493] = 1, + ACTIONS(3466), 1, + anon_sym_LPAREN, + [91497] = 1, + ACTIONS(3468), 1, + anon_sym_LPAREN, + [91501] = 1, + ACTIONS(3470), 1, + anon_sym_LPAREN, + [91505] = 1, + ACTIONS(2270), 1, + anon_sym_RBRACK, + [91509] = 1, + ACTIONS(3472), 1, + anon_sym_LPAREN, + [91513] = 1, + ACTIONS(3474), 1, + anon_sym_RPAREN, + [91517] = 1, + ACTIONS(3476), 1, + anon_sym_in, + [91521] = 1, + ACTIONS(3478), 1, + anon_sym_LPAREN, + [91525] = 1, + ACTIONS(3480), 1, anon_sym_LPAREN, }; static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(219)] = 0, - [SMALL_STATE(220)] = 69, - [SMALL_STATE(221)] = 144, - [SMALL_STATE(222)] = 221, - [SMALL_STATE(223)] = 290, - [SMALL_STATE(224)] = 363, - [SMALL_STATE(225)] = 436, - [SMALL_STATE(226)] = 511, - [SMALL_STATE(227)] = 580, - [SMALL_STATE(228)] = 649, - [SMALL_STATE(229)] = 718, - [SMALL_STATE(230)] = 787, - [SMALL_STATE(231)] = 856, - [SMALL_STATE(232)] = 925, - [SMALL_STATE(233)] = 994, - [SMALL_STATE(234)] = 1063, - [SMALL_STATE(235)] = 1134, - [SMALL_STATE(236)] = 1203, - [SMALL_STATE(237)] = 1274, - [SMALL_STATE(238)] = 1353, - [SMALL_STATE(239)] = 1422, - [SMALL_STATE(240)] = 1493, - [SMALL_STATE(241)] = 1570, - [SMALL_STATE(242)] = 1639, - [SMALL_STATE(243)] = 1708, - [SMALL_STATE(244)] = 1777, - [SMALL_STATE(245)] = 1846, - [SMALL_STATE(246)] = 1915, - [SMALL_STATE(247)] = 1984, + [SMALL_STATE(220)] = 77, + [SMALL_STATE(221)] = 146, + [SMALL_STATE(222)] = 215, + [SMALL_STATE(223)] = 286, + [SMALL_STATE(224)] = 355, + [SMALL_STATE(225)] = 426, + [SMALL_STATE(226)] = 495, + [SMALL_STATE(227)] = 564, + [SMALL_STATE(228)] = 635, + [SMALL_STATE(229)] = 704, + [SMALL_STATE(230)] = 773, + [SMALL_STATE(231)] = 842, + [SMALL_STATE(232)] = 911, + [SMALL_STATE(233)] = 984, + [SMALL_STATE(234)] = 1055, + [SMALL_STATE(235)] = 1124, + [SMALL_STATE(236)] = 1193, + [SMALL_STATE(237)] = 1262, + [SMALL_STATE(238)] = 1331, + [SMALL_STATE(239)] = 1406, + [SMALL_STATE(240)] = 1475, + [SMALL_STATE(241)] = 1550, + [SMALL_STATE(242)] = 1619, + [SMALL_STATE(243)] = 1688, + [SMALL_STATE(244)] = 1757, + [SMALL_STATE(245)] = 1834, + [SMALL_STATE(246)] = 1903, + [SMALL_STATE(247)] = 1982, [SMALL_STATE(248)] = 2059, [SMALL_STATE(249)] = 2128, - [SMALL_STATE(250)] = 2199, + [SMALL_STATE(250)] = 2203, [SMALL_STATE(251)] = 2276, - [SMALL_STATE(252)] = 2354, - [SMALL_STATE(253)] = 2442, - [SMALL_STATE(254)] = 2516, - [SMALL_STATE(255)] = 2594, - [SMALL_STATE(256)] = 2666, - [SMALL_STATE(257)] = 2740, - [SMALL_STATE(258)] = 2808, - [SMALL_STATE(259)] = 2878, - [SMALL_STATE(260)] = 2948, - [SMALL_STATE(261)] = 3018, - [SMALL_STATE(262)] = 3094, - [SMALL_STATE(263)] = 3166, - [SMALL_STATE(264)] = 3240, - [SMALL_STATE(265)] = 3312, - [SMALL_STATE(266)] = 3392, - [SMALL_STATE(267)] = 3478, - [SMALL_STATE(268)] = 3552, - [SMALL_STATE(269)] = 3626, + [SMALL_STATE(252)] = 2350, + [SMALL_STATE(253)] = 2422, + [SMALL_STATE(254)] = 2492, + [SMALL_STATE(255)] = 2580, + [SMALL_STATE(256)] = 2650, + [SMALL_STATE(257)] = 2718, + [SMALL_STATE(258)] = 2796, + [SMALL_STATE(259)] = 2870, + [SMALL_STATE(260)] = 2952, + [SMALL_STATE(261)] = 3032, + [SMALL_STATE(262)] = 3104, + [SMALL_STATE(263)] = 3178, + [SMALL_STATE(264)] = 3252, + [SMALL_STATE(265)] = 3324, + [SMALL_STATE(266)] = 3394, + [SMALL_STATE(267)] = 3470, + [SMALL_STATE(268)] = 3556, + [SMALL_STATE(269)] = 3630, [SMALL_STATE(270)] = 3708, - [SMALL_STATE(271)] = 3781, - [SMALL_STATE(272)] = 3852, - [SMALL_STATE(273)] = 3923, - [SMALL_STATE(274)] = 4010, - [SMALL_STATE(275)] = 4087, - [SMALL_STATE(276)] = 4164, - [SMALL_STATE(277)] = 4235, + [SMALL_STATE(271)] = 3777, + [SMALL_STATE(272)] = 3850, + [SMALL_STATE(273)] = 3927, + [SMALL_STATE(274)] = 4012, + [SMALL_STATE(275)] = 4083, + [SMALL_STATE(276)] = 4158, + [SMALL_STATE(277)] = 4245, [SMALL_STATE(278)] = 4316, - [SMALL_STATE(279)] = 4401, - [SMALL_STATE(280)] = 4474, - [SMALL_STATE(281)] = 4543, - [SMALL_STATE(282)] = 4622, + [SMALL_STATE(279)] = 4389, + [SMALL_STATE(280)] = 4460, + [SMALL_STATE(281)] = 4537, + [SMALL_STATE(282)] = 4618, [SMALL_STATE(283)] = 4697, - [SMALL_STATE(284)] = 4770, + [SMALL_STATE(284)] = 4774, [SMALL_STATE(285)] = 4847, [SMALL_STATE(286)] = 4921, - [SMALL_STATE(287)] = 4989, - [SMALL_STATE(288)] = 5087, - [SMALL_STATE(289)] = 5185, - [SMALL_STATE(290)] = 5249, - [SMALL_STATE(291)] = 5367, - [SMALL_STATE(292)] = 5441, - [SMALL_STATE(293)] = 5511, - [SMALL_STATE(294)] = 5581, - [SMALL_STATE(295)] = 5699, + [SMALL_STATE(287)] = 5039, + [SMALL_STATE(288)] = 5103, + [SMALL_STATE(289)] = 5173, + [SMALL_STATE(290)] = 5241, + [SMALL_STATE(291)] = 5315, + [SMALL_STATE(292)] = 5385, + [SMALL_STATE(293)] = 5453, + [SMALL_STATE(294)] = 5571, + [SMALL_STATE(295)] = 5669, [SMALL_STATE(296)] = 5767, [SMALL_STATE(297)] = 5832, - [SMALL_STATE(298)] = 5903, - [SMALL_STATE(299)] = 5972, - [SMALL_STATE(300)] = 6035, - [SMALL_STATE(301)] = 6098, - [SMALL_STATE(302)] = 6193, - [SMALL_STATE(303)] = 6260, - [SMALL_STATE(304)] = 6327, - [SMALL_STATE(305)] = 6400, - [SMALL_STATE(306)] = 6463, - [SMALL_STATE(307)] = 6538, - [SMALL_STATE(308)] = 6605, - [SMALL_STATE(309)] = 6700, - [SMALL_STATE(310)] = 6769, - [SMALL_STATE(311)] = 6834, + [SMALL_STATE(298)] = 5895, + [SMALL_STATE(299)] = 5958, + [SMALL_STATE(300)] = 6027, + [SMALL_STATE(301)] = 6092, + [SMALL_STATE(302)] = 6167, + [SMALL_STATE(303)] = 6234, + [SMALL_STATE(304)] = 6297, + [SMALL_STATE(305)] = 6370, + [SMALL_STATE(306)] = 6437, + [SMALL_STATE(307)] = 6508, + [SMALL_STATE(308)] = 6577, + [SMALL_STATE(309)] = 6644, + [SMALL_STATE(310)] = 6713, + [SMALL_STATE(311)] = 6808, [SMALL_STATE(312)] = 6903, [SMALL_STATE(313)] = 6976, - [SMALL_STATE(314)] = 7042, - [SMALL_STATE(315)] = 7104, - [SMALL_STATE(316)] = 7166, + [SMALL_STATE(314)] = 7040, + [SMALL_STATE(315)] = 7102, + [SMALL_STATE(316)] = 7164, [SMALL_STATE(317)] = 7228, [SMALL_STATE(318)] = 7290, - [SMALL_STATE(319)] = 7356, - [SMALL_STATE(320)] = 7418, - [SMALL_STATE(321)] = 7482, - [SMALL_STATE(322)] = 7548, - [SMALL_STATE(323)] = 7614, - [SMALL_STATE(324)] = 7682, - [SMALL_STATE(325)] = 7746, - [SMALL_STATE(326)] = 7808, - [SMALL_STATE(327)] = 7876, - [SMALL_STATE(328)] = 7936, - [SMALL_STATE(329)] = 8008, - [SMALL_STATE(330)] = 8070, - [SMALL_STATE(331)] = 8132, - [SMALL_STATE(332)] = 8194, - [SMALL_STATE(333)] = 8256, - [SMALL_STATE(334)] = 8324, - [SMALL_STATE(335)] = 8388, - [SMALL_STATE(336)] = 8450, - [SMALL_STATE(337)] = 8514, - [SMALL_STATE(338)] = 8580, - [SMALL_STATE(339)] = 8644, - [SMALL_STATE(340)] = 8706, - [SMALL_STATE(341)] = 8776, - [SMALL_STATE(342)] = 8838, - [SMALL_STATE(343)] = 8900, - [SMALL_STATE(344)] = 8962, - [SMALL_STATE(345)] = 9024, - [SMALL_STATE(346)] = 9086, - [SMALL_STATE(347)] = 9148, - [SMALL_STATE(348)] = 9210, - [SMALL_STATE(349)] = 9276, - [SMALL_STATE(350)] = 9342, - [SMALL_STATE(351)] = 9404, + [SMALL_STATE(319)] = 7352, + [SMALL_STATE(320)] = 7416, + [SMALL_STATE(321)] = 7478, + [SMALL_STATE(322)] = 7540, + [SMALL_STATE(323)] = 7608, + [SMALL_STATE(324)] = 7670, + [SMALL_STATE(325)] = 7734, + [SMALL_STATE(326)] = 7800, + [SMALL_STATE(327)] = 7866, + [SMALL_STATE(328)] = 7928, + [SMALL_STATE(329)] = 7990, + [SMALL_STATE(330)] = 8050, + [SMALL_STATE(331)] = 8112, + [SMALL_STATE(332)] = 8176, + [SMALL_STATE(333)] = 8242, + [SMALL_STATE(334)] = 8304, + [SMALL_STATE(335)] = 8370, + [SMALL_STATE(336)] = 8436, + [SMALL_STATE(337)] = 8506, + [SMALL_STATE(338)] = 8568, + [SMALL_STATE(339)] = 8630, + [SMALL_STATE(340)] = 8698, + [SMALL_STATE(341)] = 8760, + [SMALL_STATE(342)] = 8820, + [SMALL_STATE(343)] = 8882, + [SMALL_STATE(344)] = 8948, + [SMALL_STATE(345)] = 9010, + [SMALL_STATE(346)] = 9072, + [SMALL_STATE(347)] = 9144, + [SMALL_STATE(348)] = 9212, + [SMALL_STATE(349)] = 9274, + [SMALL_STATE(350)] = 9336, + [SMALL_STATE(351)] = 9398, [SMALL_STATE(352)] = 9464, - [SMALL_STATE(353)] = 9527, - [SMALL_STATE(354)] = 9602, - [SMALL_STATE(355)] = 9675, - [SMALL_STATE(356)] = 9736, - [SMALL_STATE(357)] = 9801, - [SMALL_STATE(358)] = 9870, - [SMALL_STATE(359)] = 9933, - [SMALL_STATE(360)] = 10012, - [SMALL_STATE(361)] = 10073, - [SMALL_STATE(362)] = 10134, - [SMALL_STATE(363)] = 10197, - [SMALL_STATE(364)] = 10258, - [SMALL_STATE(365)] = 10319, - [SMALL_STATE(366)] = 10384, - [SMALL_STATE(367)] = 10445, - [SMALL_STATE(368)] = 10506, - [SMALL_STATE(369)] = 10567, - [SMALL_STATE(370)] = 10628, - [SMALL_STATE(371)] = 10693, + [SMALL_STATE(353)] = 9531, + [SMALL_STATE(354)] = 9596, + [SMALL_STATE(355)] = 9657, + [SMALL_STATE(356)] = 9718, + [SMALL_STATE(357)] = 9779, + [SMALL_STATE(358)] = 9846, + [SMALL_STATE(359)] = 9909, + [SMALL_STATE(360)] = 9972, + [SMALL_STATE(361)] = 10035, + [SMALL_STATE(362)] = 10098, + [SMALL_STATE(363)] = 10173, + [SMALL_STATE(364)] = 10238, + [SMALL_STATE(365)] = 10307, + [SMALL_STATE(366)] = 10370, + [SMALL_STATE(367)] = 10435, + [SMALL_STATE(368)] = 10496, + [SMALL_STATE(369)] = 10559, + [SMALL_STATE(370)] = 10620, + [SMALL_STATE(371)] = 10681, [SMALL_STATE(372)] = 10754, - [SMALL_STATE(373)] = 10827, - [SMALL_STATE(374)] = 10898, - [SMALL_STATE(375)] = 10979, - [SMALL_STATE(376)] = 11042, - [SMALL_STATE(377)] = 11109, - [SMALL_STATE(378)] = 11172, - [SMALL_STATE(379)] = 11235, - [SMALL_STATE(380)] = 11296, - [SMALL_STATE(381)] = 11357, - [SMALL_STATE(382)] = 11424, - [SMALL_STATE(383)] = 11485, - [SMALL_STATE(384)] = 11548, - [SMALL_STATE(385)] = 11619, - [SMALL_STATE(386)] = 11680, - [SMALL_STATE(387)] = 11741, - [SMALL_STATE(388)] = 11812, - [SMALL_STATE(389)] = 11873, - [SMALL_STATE(390)] = 11936, - [SMALL_STATE(391)] = 11999, - [SMALL_STATE(392)] = 12062, - [SMALL_STATE(393)] = 12127, - [SMALL_STATE(394)] = 12190, - [SMALL_STATE(395)] = 12251, - [SMALL_STATE(396)] = 12326, - [SMALL_STATE(397)] = 12387, - [SMALL_STATE(398)] = 12450, - [SMALL_STATE(399)] = 12511, - [SMALL_STATE(400)] = 12572, - [SMALL_STATE(401)] = 12649, - [SMALL_STATE(402)] = 12712, + [SMALL_STATE(373)] = 10815, + [SMALL_STATE(374)] = 10876, + [SMALL_STATE(375)] = 10947, + [SMALL_STATE(376)] = 11014, + [SMALL_STATE(377)] = 11075, + [SMALL_STATE(378)] = 11146, + [SMALL_STATE(379)] = 11209, + [SMALL_STATE(380)] = 11270, + [SMALL_STATE(381)] = 11343, + [SMALL_STATE(382)] = 11404, + [SMALL_STATE(383)] = 11467, + [SMALL_STATE(384)] = 11530, + [SMALL_STATE(385)] = 11591, + [SMALL_STATE(386)] = 11656, + [SMALL_STATE(387)] = 11719, + [SMALL_STATE(388)] = 11782, + [SMALL_STATE(389)] = 11843, + [SMALL_STATE(390)] = 11922, + [SMALL_STATE(391)] = 11997, + [SMALL_STATE(392)] = 12058, + [SMALL_STATE(393)] = 12119, + [SMALL_STATE(394)] = 12180, + [SMALL_STATE(395)] = 12243, + [SMALL_STATE(396)] = 12324, + [SMALL_STATE(397)] = 12385, + [SMALL_STATE(398)] = 12446, + [SMALL_STATE(399)] = 12523, + [SMALL_STATE(400)] = 12584, + [SMALL_STATE(401)] = 12655, + [SMALL_STATE(402)] = 12716, [SMALL_STATE(403)] = 12779, [SMALL_STATE(404)] = 12859, - [SMALL_STATE(405)] = 12925, + [SMALL_STATE(405)] = 12919, [SMALL_STATE(406)] = 12985, - [SMALL_STATE(407)] = 13045, - [SMALL_STATE(408)] = 13111, - [SMALL_STATE(409)] = 13171, - [SMALL_STATE(410)] = 13231, - [SMALL_STATE(411)] = 13291, - [SMALL_STATE(412)] = 13351, - [SMALL_STATE(413)] = 13431, - [SMALL_STATE(414)] = 13505, - [SMALL_STATE(415)] = 13565, - [SMALL_STATE(416)] = 13625, - [SMALL_STATE(417)] = 13703, - [SMALL_STATE(418)] = 13773, - [SMALL_STATE(419)] = 13833, - [SMALL_STATE(420)] = 13905, - [SMALL_STATE(421)] = 13979, - [SMALL_STATE(422)] = 14051, - [SMALL_STATE(423)] = 14119, - [SMALL_STATE(424)] = 14183, - [SMALL_STATE(425)] = 14245, - [SMALL_STATE(426)] = 14305, - [SMALL_STATE(427)] = 14375, - [SMALL_STATE(428)] = 14435, - [SMALL_STATE(429)] = 14515, - [SMALL_STATE(430)] = 14577, - [SMALL_STATE(431)] = 14637, - [SMALL_STATE(432)] = 14697, - [SMALL_STATE(433)] = 14757, - [SMALL_STATE(434)] = 14817, - [SMALL_STATE(435)] = 14877, - [SMALL_STATE(436)] = 14937, - [SMALL_STATE(437)] = 14997, - [SMALL_STATE(438)] = 15057, - [SMALL_STATE(439)] = 15117, - [SMALL_STATE(440)] = 15183, - [SMALL_STATE(441)] = 15243, - [SMALL_STATE(442)] = 15303, - [SMALL_STATE(443)] = 15365, - [SMALL_STATE(444)] = 15425, - [SMALL_STATE(445)] = 15485, - [SMALL_STATE(446)] = 15555, - [SMALL_STATE(447)] = 15615, - [SMALL_STATE(448)] = 15675, - [SMALL_STATE(449)] = 15735, - [SMALL_STATE(450)] = 15795, - [SMALL_STATE(451)] = 15855, - [SMALL_STATE(452)] = 15915, - [SMALL_STATE(453)] = 15975, - [SMALL_STATE(454)] = 16035, - [SMALL_STATE(455)] = 16095, - [SMALL_STATE(456)] = 16175, - [SMALL_STATE(457)] = 16235, + [SMALL_STATE(407)] = 13059, + [SMALL_STATE(408)] = 13133, + [SMALL_STATE(409)] = 13205, + [SMALL_STATE(410)] = 13273, + [SMALL_STATE(411)] = 13337, + [SMALL_STATE(412)] = 13399, + [SMALL_STATE(413)] = 13459, + [SMALL_STATE(414)] = 13521, + [SMALL_STATE(415)] = 13581, + [SMALL_STATE(416)] = 13641, + [SMALL_STATE(417)] = 13701, + [SMALL_STATE(418)] = 13761, + [SMALL_STATE(419)] = 13821, + [SMALL_STATE(420)] = 13881, + [SMALL_STATE(421)] = 13951, + [SMALL_STATE(422)] = 14029, + [SMALL_STATE(423)] = 14089, + [SMALL_STATE(424)] = 14149, + [SMALL_STATE(425)] = 14209, + [SMALL_STATE(426)] = 14279, + [SMALL_STATE(427)] = 14339, + [SMALL_STATE(428)] = 14399, + [SMALL_STATE(429)] = 14459, + [SMALL_STATE(430)] = 14519, + [SMALL_STATE(431)] = 14579, + [SMALL_STATE(432)] = 14645, + [SMALL_STATE(433)] = 14725, + [SMALL_STATE(434)] = 14797, + [SMALL_STATE(435)] = 14857, + [SMALL_STATE(436)] = 14917, + [SMALL_STATE(437)] = 14977, + [SMALL_STATE(438)] = 15037, + [SMALL_STATE(439)] = 15097, + [SMALL_STATE(440)] = 15157, + [SMALL_STATE(441)] = 15217, + [SMALL_STATE(442)] = 15277, + [SMALL_STATE(443)] = 15337, + [SMALL_STATE(444)] = 15397, + [SMALL_STATE(445)] = 15457, + [SMALL_STATE(446)] = 15537, + [SMALL_STATE(447)] = 15607, + [SMALL_STATE(448)] = 15687, + [SMALL_STATE(449)] = 15747, + [SMALL_STATE(450)] = 15807, + [SMALL_STATE(451)] = 15867, + [SMALL_STATE(452)] = 15927, + [SMALL_STATE(453)] = 15987, + [SMALL_STATE(454)] = 16047, + [SMALL_STATE(455)] = 16107, + [SMALL_STATE(456)] = 16169, + [SMALL_STATE(457)] = 16229, [SMALL_STATE(458)] = 16295, - [SMALL_STATE(459)] = 16352, - [SMALL_STATE(460)] = 16411, - [SMALL_STATE(461)] = 16468, - [SMALL_STATE(462)] = 16525, - [SMALL_STATE(463)] = 16586, - [SMALL_STATE(464)] = 16649, - [SMALL_STATE(465)] = 16706, - [SMALL_STATE(466)] = 16783, - [SMALL_STATE(467)] = 16860, - [SMALL_STATE(468)] = 16921, - [SMALL_STATE(469)] = 16978, - [SMALL_STATE(470)] = 17047, - [SMALL_STATE(471)] = 17104, - [SMALL_STATE(472)] = 17161, - [SMALL_STATE(473)] = 17260, - [SMALL_STATE(474)] = 17317, - [SMALL_STATE(475)] = 17384, - [SMALL_STATE(476)] = 17461, - [SMALL_STATE(477)] = 17518, - [SMALL_STATE(478)] = 17575, + [SMALL_STATE(459)] = 16356, + [SMALL_STATE(460)] = 16425, + [SMALL_STATE(461)] = 16482, + [SMALL_STATE(462)] = 16539, + [SMALL_STATE(463)] = 16616, + [SMALL_STATE(464)] = 16693, + [SMALL_STATE(465)] = 16750, + [SMALL_STATE(466)] = 16849, + [SMALL_STATE(467)] = 16906, + [SMALL_STATE(468)] = 16973, + [SMALL_STATE(469)] = 17030, + [SMALL_STATE(470)] = 17087, + [SMALL_STATE(471)] = 17150, + [SMALL_STATE(472)] = 17207, + [SMALL_STATE(473)] = 17264, + [SMALL_STATE(474)] = 17341, + [SMALL_STATE(475)] = 17398, + [SMALL_STATE(476)] = 17455, + [SMALL_STATE(477)] = 17512, + [SMALL_STATE(478)] = 17571, [SMALL_STATE(479)] = 17632, [SMALL_STATE(480)] = 17689, - [SMALL_STATE(481)] = 17753, - [SMALL_STATE(482)] = 17849, - [SMALL_STATE(483)] = 17927, - [SMALL_STATE(484)] = 17997, - [SMALL_STATE(485)] = 18061, - [SMALL_STATE(486)] = 18123, - [SMALL_STATE(487)] = 18189, - [SMALL_STATE(488)] = 18255, - [SMALL_STATE(489)] = 18335, - [SMALL_STATE(490)] = 18407, - [SMALL_STATE(491)] = 18479, - [SMALL_STATE(492)] = 18563, + [SMALL_STATE(481)] = 17751, + [SMALL_STATE(482)] = 17823, + [SMALL_STATE(483)] = 17901, + [SMALL_STATE(484)] = 17979, + [SMALL_STATE(485)] = 18059, + [SMALL_STATE(486)] = 18137, + [SMALL_STATE(487)] = 18209, + [SMALL_STATE(488)] = 18285, + [SMALL_STATE(489)] = 18349, + [SMALL_STATE(490)] = 18419, + [SMALL_STATE(491)] = 18483, + [SMALL_STATE(492)] = 18557, [SMALL_STATE(493)] = 18641, [SMALL_STATE(494)] = 18719, [SMALL_STATE(495)] = 18797, [SMALL_STATE(496)] = 18863, - [SMALL_STATE(497)] = 18937, - [SMALL_STATE(498)] = 19013, + [SMALL_STATE(497)] = 18929, + [SMALL_STATE(498)] = 18995, [SMALL_STATE(499)] = 19091, [SMALL_STATE(500)] = 19166, [SMALL_STATE(501)] = 19241, @@ -100525,195 +100866,195 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(504)] = 19466, [SMALL_STATE(505)] = 19562, [SMALL_STATE(506)] = 19655, - [SMALL_STATE(507)] = 19719, + [SMALL_STATE(507)] = 19715, [SMALL_STATE(508)] = 19779, - [SMALL_STATE(509)] = 19838, + [SMALL_STATE(509)] = 19836, [SMALL_STATE(510)] = 19895, - [SMALL_STATE(511)] = 19958, - [SMALL_STATE(512)] = 20015, + [SMALL_STATE(511)] = 19954, + [SMALL_STATE(512)] = 20011, [SMALL_STATE(513)] = 20074, [SMALL_STATE(514)] = 20126, - [SMALL_STATE(515)] = 20184, - [SMALL_STATE(516)] = 20236, - [SMALL_STATE(517)] = 20292, + [SMALL_STATE(515)] = 20180, + [SMALL_STATE(516)] = 20234, + [SMALL_STATE(517)] = 20288, [SMALL_STATE(518)] = 20344, - [SMALL_STATE(519)] = 20396, - [SMALL_STATE(520)] = 20450, + [SMALL_STATE(519)] = 20400, + [SMALL_STATE(520)] = 20454, [SMALL_STATE(521)] = 20506, - [SMALL_STATE(522)] = 20560, - [SMALL_STATE(523)] = 20614, + [SMALL_STATE(522)] = 20564, + [SMALL_STATE(523)] = 20616, [SMALL_STATE(524)] = 20668, [SMALL_STATE(525)] = 20724, [SMALL_STATE(526)] = 20777, - [SMALL_STATE(527)] = 20828, - [SMALL_STATE(528)] = 20897, - [SMALL_STATE(529)] = 20952, - [SMALL_STATE(530)] = 21005, - [SMALL_STATE(531)] = 21056, - [SMALL_STATE(532)] = 21113, - [SMALL_STATE(533)] = 21176, - [SMALL_STATE(534)] = 21227, - [SMALL_STATE(535)] = 21286, - [SMALL_STATE(536)] = 21345, - [SMALL_STATE(537)] = 21412, - [SMALL_STATE(538)] = 21463, - [SMALL_STATE(539)] = 21514, - [SMALL_STATE(540)] = 21565, + [SMALL_STATE(527)] = 20846, + [SMALL_STATE(528)] = 20909, + [SMALL_STATE(529)] = 20962, + [SMALL_STATE(530)] = 21013, + [SMALL_STATE(531)] = 21090, + [SMALL_STATE(532)] = 21149, + [SMALL_STATE(533)] = 21214, + [SMALL_STATE(534)] = 21267, + [SMALL_STATE(535)] = 21318, + [SMALL_STATE(536)] = 21369, + [SMALL_STATE(537)] = 21420, + [SMALL_STATE(538)] = 21475, + [SMALL_STATE(539)] = 21528, + [SMALL_STATE(540)] = 21579, [SMALL_STATE(541)] = 21630, - [SMALL_STATE(542)] = 21695, - [SMALL_STATE(543)] = 21746, - [SMALL_STATE(544)] = 21797, - [SMALL_STATE(545)] = 21848, - [SMALL_STATE(546)] = 21899, - [SMALL_STATE(547)] = 21984, - [SMALL_STATE(548)] = 22069, - [SMALL_STATE(549)] = 22120, - [SMALL_STATE(550)] = 22171, - [SMALL_STATE(551)] = 22248, - [SMALL_STATE(552)] = 22301, - [SMALL_STATE(553)] = 22374, - [SMALL_STATE(554)] = 22427, - [SMALL_STATE(555)] = 22478, - [SMALL_STATE(556)] = 22529, - [SMALL_STATE(557)] = 22580, - [SMALL_STATE(558)] = 22637, - [SMALL_STATE(559)] = 22690, - [SMALL_STATE(560)] = 22743, - [SMALL_STATE(561)] = 22794, - [SMALL_STATE(562)] = 22845, - [SMALL_STATE(563)] = 22900, - [SMALL_STATE(564)] = 22951, - [SMALL_STATE(565)] = 23002, + [SMALL_STATE(542)] = 21681, + [SMALL_STATE(543)] = 21732, + [SMALL_STATE(544)] = 21783, + [SMALL_STATE(545)] = 21834, + [SMALL_STATE(546)] = 21919, + [SMALL_STATE(547)] = 21986, + [SMALL_STATE(548)] = 22071, + [SMALL_STATE(549)] = 22128, + [SMALL_STATE(550)] = 22181, + [SMALL_STATE(551)] = 22232, + [SMALL_STATE(552)] = 22283, + [SMALL_STATE(553)] = 22334, + [SMALL_STATE(554)] = 22385, + [SMALL_STATE(555)] = 22442, + [SMALL_STATE(556)] = 22515, + [SMALL_STATE(557)] = 22568, + [SMALL_STATE(558)] = 22623, + [SMALL_STATE(559)] = 22674, + [SMALL_STATE(560)] = 22725, + [SMALL_STATE(561)] = 22776, + [SMALL_STATE(562)] = 22841, + [SMALL_STATE(563)] = 22892, + [SMALL_STATE(564)] = 22943, + [SMALL_STATE(565)] = 22994, [SMALL_STATE(566)] = 23053, - [SMALL_STATE(567)] = 23115, - [SMALL_STATE(568)] = 23165, - [SMALL_STATE(569)] = 23215, - [SMALL_STATE(570)] = 23265, - [SMALL_STATE(571)] = 23315, - [SMALL_STATE(572)] = 23397, - [SMALL_STATE(573)] = 23447, - [SMALL_STATE(574)] = 23529, - [SMALL_STATE(575)] = 23579, - [SMALL_STATE(576)] = 23639, - [SMALL_STATE(577)] = 23689, - [SMALL_STATE(578)] = 23765, - [SMALL_STATE(579)] = 23843, - [SMALL_STATE(580)] = 23893, - [SMALL_STATE(581)] = 23949, - [SMALL_STATE(582)] = 23999, + [SMALL_STATE(567)] = 23109, + [SMALL_STATE(568)] = 23159, + [SMALL_STATE(569)] = 23241, + [SMALL_STATE(570)] = 23291, + [SMALL_STATE(571)] = 23341, + [SMALL_STATE(572)] = 23419, + [SMALL_STATE(573)] = 23501, + [SMALL_STATE(574)] = 23577, + [SMALL_STATE(575)] = 23627, + [SMALL_STATE(576)] = 23677, + [SMALL_STATE(577)] = 23727, + [SMALL_STATE(578)] = 23777, + [SMALL_STATE(579)] = 23827, + [SMALL_STATE(580)] = 23887, + [SMALL_STATE(581)] = 23937, + [SMALL_STATE(582)] = 23987, [SMALL_STATE(583)] = 24049, - [SMALL_STATE(584)] = 24124, + [SMALL_STATE(584)] = 24110, [SMALL_STATE(585)] = 24185, [SMALL_STATE(586)] = 24244, - [SMALL_STATE(587)] = 24305, - [SMALL_STATE(588)] = 24364, + [SMALL_STATE(587)] = 24303, + [SMALL_STATE(588)] = 24362, [SMALL_STATE(589)] = 24423, [SMALL_STATE(590)] = 24505, [SMALL_STATE(591)] = 24563, - [SMALL_STATE(592)] = 24645, - [SMALL_STATE(593)] = 24703, - [SMALL_STATE(594)] = 24759, - [SMALL_STATE(595)] = 24817, - [SMALL_STATE(596)] = 24871, + [SMALL_STATE(592)] = 24619, + [SMALL_STATE(593)] = 24673, + [SMALL_STATE(594)] = 24731, + [SMALL_STATE(595)] = 24789, + [SMALL_STATE(596)] = 24847, [SMALL_STATE(597)] = 24929, - [SMALL_STATE(598)] = 24978, - [SMALL_STATE(599)] = 25033, - [SMALL_STATE(600)] = 25112, - [SMALL_STATE(601)] = 25161, - [SMALL_STATE(602)] = 25240, - [SMALL_STATE(603)] = 25293, - [SMALL_STATE(604)] = 25348, - [SMALL_STATE(605)] = 25405, + [SMALL_STATE(598)] = 24984, + [SMALL_STATE(599)] = 25063, + [SMALL_STATE(600)] = 25120, + [SMALL_STATE(601)] = 25171, + [SMALL_STATE(602)] = 25226, + [SMALL_STATE(603)] = 25275, + [SMALL_STATE(604)] = 25324, + [SMALL_STATE(605)] = 25403, [SMALL_STATE(606)] = 25456, - [SMALL_STATE(607)] = 25509, + [SMALL_STATE(607)] = 25511, [SMALL_STATE(608)] = 25564, - [SMALL_STATE(609)] = 25610, - [SMALL_STATE(610)] = 25658, - [SMALL_STATE(611)] = 25710, - [SMALL_STATE(612)] = 25794, - [SMALL_STATE(613)] = 25844, - [SMALL_STATE(614)] = 25898, - [SMALL_STATE(615)] = 25982, - [SMALL_STATE(616)] = 26032, - [SMALL_STATE(617)] = 26090, - [SMALL_STATE(618)] = 26150, - [SMALL_STATE(619)] = 26216, - [SMALL_STATE(620)] = 26268, - [SMALL_STATE(621)] = 26352, - [SMALL_STATE(622)] = 26436, - [SMALL_STATE(623)] = 26488, - [SMALL_STATE(624)] = 26536, - [SMALL_STATE(625)] = 26620, - [SMALL_STATE(626)] = 26704, - [SMALL_STATE(627)] = 26788, - [SMALL_STATE(628)] = 26834, - [SMALL_STATE(629)] = 26884, - [SMALL_STATE(630)] = 26940, - [SMALL_STATE(631)] = 27004, - [SMALL_STATE(632)] = 27088, - [SMALL_STATE(633)] = 27144, - [SMALL_STATE(634)] = 27228, - [SMALL_STATE(635)] = 27312, - [SMALL_STATE(636)] = 27360, - [SMALL_STATE(637)] = 27406, - [SMALL_STATE(638)] = 27452, - [SMALL_STATE(639)] = 27510, - [SMALL_STATE(640)] = 27562, - [SMALL_STATE(641)] = 27618, - [SMALL_STATE(642)] = 27674, + [SMALL_STATE(609)] = 25624, + [SMALL_STATE(610)] = 25676, + [SMALL_STATE(611)] = 25728, + [SMALL_STATE(612)] = 25780, + [SMALL_STATE(613)] = 25836, + [SMALL_STATE(614)] = 25884, + [SMALL_STATE(615)] = 25936, + [SMALL_STATE(616)] = 26020, + [SMALL_STATE(617)] = 26070, + [SMALL_STATE(618)] = 26154, + [SMALL_STATE(619)] = 26208, + [SMALL_STATE(620)] = 26266, + [SMALL_STATE(621)] = 26324, + [SMALL_STATE(622)] = 26408, + [SMALL_STATE(623)] = 26492, + [SMALL_STATE(624)] = 26548, + [SMALL_STATE(625)] = 26612, + [SMALL_STATE(626)] = 26662, + [SMALL_STATE(627)] = 26746, + [SMALL_STATE(628)] = 26802, + [SMALL_STATE(629)] = 26852, + [SMALL_STATE(630)] = 26898, + [SMALL_STATE(631)] = 26982, + [SMALL_STATE(632)] = 27066, + [SMALL_STATE(633)] = 27118, + [SMALL_STATE(634)] = 27164, + [SMALL_STATE(635)] = 27212, + [SMALL_STATE(636)] = 27296, + [SMALL_STATE(637)] = 27380, + [SMALL_STATE(638)] = 27446, + [SMALL_STATE(639)] = 27494, + [SMALL_STATE(640)] = 27540, + [SMALL_STATE(641)] = 27586, + [SMALL_STATE(642)] = 27670, [SMALL_STATE(643)] = 27726, [SMALL_STATE(644)] = 27809, - [SMALL_STATE(645)] = 27874, - [SMALL_STATE(646)] = 27925, - [SMALL_STATE(647)] = 27980, - [SMALL_STATE(648)] = 28035, - [SMALL_STATE(649)] = 28088, - [SMALL_STATE(650)] = 28139, - [SMALL_STATE(651)] = 28194, - [SMALL_STATE(652)] = 28241, - [SMALL_STATE(653)] = 28290, - [SMALL_STATE(654)] = 28343, - [SMALL_STATE(655)] = 28398, - [SMALL_STATE(656)] = 28455, - [SMALL_STATE(657)] = 28514, - [SMALL_STATE(658)] = 28569, - [SMALL_STATE(659)] = 28632, - [SMALL_STATE(660)] = 28715, - [SMALL_STATE(661)] = 28798, - [SMALL_STATE(662)] = 28881, - [SMALL_STATE(663)] = 28964, - [SMALL_STATE(664)] = 29007, - [SMALL_STATE(665)] = 29090, - [SMALL_STATE(666)] = 29133, - [SMALL_STATE(667)] = 29216, - [SMALL_STATE(668)] = 29299, - [SMALL_STATE(669)] = 29382, - [SMALL_STATE(670)] = 29465, - [SMALL_STATE(671)] = 29548, - [SMALL_STATE(672)] = 29631, - [SMALL_STATE(673)] = 29714, - [SMALL_STATE(674)] = 29797, - [SMALL_STATE(675)] = 29880, - [SMALL_STATE(676)] = 29931, - [SMALL_STATE(677)] = 30014, - [SMALL_STATE(678)] = 30097, - [SMALL_STATE(679)] = 30180, + [SMALL_STATE(645)] = 27856, + [SMALL_STATE(646)] = 27939, + [SMALL_STATE(647)] = 28022, + [SMALL_STATE(648)] = 28105, + [SMALL_STATE(649)] = 28188, + [SMALL_STATE(650)] = 28271, + [SMALL_STATE(651)] = 28354, + [SMALL_STATE(652)] = 28437, + [SMALL_STATE(653)] = 28502, + [SMALL_STATE(654)] = 28545, + [SMALL_STATE(655)] = 28600, + [SMALL_STATE(656)] = 28683, + [SMALL_STATE(657)] = 28734, + [SMALL_STATE(658)] = 28817, + [SMALL_STATE(659)] = 28868, + [SMALL_STATE(660)] = 28911, + [SMALL_STATE(661)] = 28954, + [SMALL_STATE(662)] = 29009, + [SMALL_STATE(663)] = 29060, + [SMALL_STATE(664)] = 29143, + [SMALL_STATE(665)] = 29226, + [SMALL_STATE(666)] = 29309, + [SMALL_STATE(667)] = 29392, + [SMALL_STATE(668)] = 29475, + [SMALL_STATE(669)] = 29558, + [SMALL_STATE(670)] = 29641, + [SMALL_STATE(671)] = 29694, + [SMALL_STATE(672)] = 29743, + [SMALL_STATE(673)] = 29798, + [SMALL_STATE(674)] = 29881, + [SMALL_STATE(675)] = 29934, + [SMALL_STATE(676)] = 29989, + [SMALL_STATE(677)] = 30072, + [SMALL_STATE(678)] = 30129, + [SMALL_STATE(679)] = 30212, [SMALL_STATE(680)] = 30263, [SMALL_STATE(681)] = 30346, [SMALL_STATE(682)] = 30429, - [SMALL_STATE(683)] = 30484, - [SMALL_STATE(684)] = 30567, - [SMALL_STATE(685)] = 30616, - [SMALL_STATE(686)] = 30699, - [SMALL_STATE(687)] = 30782, - [SMALL_STATE(688)] = 30865, - [SMALL_STATE(689)] = 30948, - [SMALL_STATE(690)] = 30991, - [SMALL_STATE(691)] = 31074, - [SMALL_STATE(692)] = 31157, - [SMALL_STATE(693)] = 31200, - [SMALL_STATE(694)] = 31283, - [SMALL_STATE(695)] = 31334, + [SMALL_STATE(683)] = 30512, + [SMALL_STATE(684)] = 30595, + [SMALL_STATE(685)] = 30654, + [SMALL_STATE(686)] = 30737, + [SMALL_STATE(687)] = 30786, + [SMALL_STATE(688)] = 30869, + [SMALL_STATE(689)] = 30952, + [SMALL_STATE(690)] = 31035, + [SMALL_STATE(691)] = 31090, + [SMALL_STATE(692)] = 31173, + [SMALL_STATE(693)] = 31236, + [SMALL_STATE(694)] = 31319, + [SMALL_STATE(695)] = 31362, [SMALL_STATE(696)] = 31417, [SMALL_STATE(697)] = 31500, [SMALL_STATE(698)] = 31583, @@ -100722,8 +101063,8 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(701)] = 31832, [SMALL_STATE(702)] = 31915, [SMALL_STATE(703)] = 31998, - [SMALL_STATE(704)] = 32047, - [SMALL_STATE(705)] = 32130, + [SMALL_STATE(704)] = 32081, + [SMALL_STATE(705)] = 32164, [SMALL_STATE(706)] = 32213, [SMALL_STATE(707)] = 32296, [SMALL_STATE(708)] = 32379, @@ -100735,358 +101076,358 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(714)] = 32874, [SMALL_STATE(715)] = 32954, [SMALL_STATE(716)] = 33034, - [SMALL_STATE(717)] = 33094, - [SMALL_STATE(718)] = 33174, - [SMALL_STATE(719)] = 33254, - [SMALL_STATE(720)] = 33334, - [SMALL_STATE(721)] = 33414, - [SMALL_STATE(722)] = 33494, - [SMALL_STATE(723)] = 33574, - [SMALL_STATE(724)] = 33654, - [SMALL_STATE(725)] = 33734, - [SMALL_STATE(726)] = 33814, - [SMALL_STATE(727)] = 33894, - [SMALL_STATE(728)] = 33974, - [SMALL_STATE(729)] = 34054, - [SMALL_STATE(730)] = 34134, - [SMALL_STATE(731)] = 34214, - [SMALL_STATE(732)] = 34294, - [SMALL_STATE(733)] = 34352, - [SMALL_STATE(734)] = 34432, - [SMALL_STATE(735)] = 34512, - [SMALL_STATE(736)] = 34592, - [SMALL_STATE(737)] = 34672, - [SMALL_STATE(738)] = 34752, - [SMALL_STATE(739)] = 34832, - [SMALL_STATE(740)] = 34912, - [SMALL_STATE(741)] = 34960, - [SMALL_STATE(742)] = 35040, - [SMALL_STATE(743)] = 35088, - [SMALL_STATE(744)] = 35140, - [SMALL_STATE(745)] = 35192, - [SMALL_STATE(746)] = 35272, - [SMALL_STATE(747)] = 35352, - [SMALL_STATE(748)] = 35432, - [SMALL_STATE(749)] = 35478, - [SMALL_STATE(750)] = 35524, - [SMALL_STATE(751)] = 35604, - [SMALL_STATE(752)] = 35684, - [SMALL_STATE(753)] = 35764, - [SMALL_STATE(754)] = 35812, - [SMALL_STATE(755)] = 35892, - [SMALL_STATE(756)] = 35972, - [SMALL_STATE(757)] = 36052, - [SMALL_STATE(758)] = 36132, - [SMALL_STATE(759)] = 36182, - [SMALL_STATE(760)] = 36232, - [SMALL_STATE(761)] = 36312, - [SMALL_STATE(762)] = 36392, - [SMALL_STATE(763)] = 36472, - [SMALL_STATE(764)] = 36552, - [SMALL_STATE(765)] = 36632, - [SMALL_STATE(766)] = 36712, - [SMALL_STATE(767)] = 36792, - [SMALL_STATE(768)] = 36872, - [SMALL_STATE(769)] = 36952, - [SMALL_STATE(770)] = 37008, - [SMALL_STATE(771)] = 37088, - [SMALL_STATE(772)] = 37168, - [SMALL_STATE(773)] = 37248, - [SMALL_STATE(774)] = 37328, + [SMALL_STATE(717)] = 33114, + [SMALL_STATE(718)] = 33194, + [SMALL_STATE(719)] = 33274, + [SMALL_STATE(720)] = 33354, + [SMALL_STATE(721)] = 33406, + [SMALL_STATE(722)] = 33486, + [SMALL_STATE(723)] = 33566, + [SMALL_STATE(724)] = 33646, + [SMALL_STATE(725)] = 33726, + [SMALL_STATE(726)] = 33786, + [SMALL_STATE(727)] = 33866, + [SMALL_STATE(728)] = 33946, + [SMALL_STATE(729)] = 34026, + [SMALL_STATE(730)] = 34106, + [SMALL_STATE(731)] = 34186, + [SMALL_STATE(732)] = 34234, + [SMALL_STATE(733)] = 34290, + [SMALL_STATE(734)] = 34370, + [SMALL_STATE(735)] = 34450, + [SMALL_STATE(736)] = 34530, + [SMALL_STATE(737)] = 34610, + [SMALL_STATE(738)] = 34690, + [SMALL_STATE(739)] = 34742, + [SMALL_STATE(740)] = 34800, + [SMALL_STATE(741)] = 34852, + [SMALL_STATE(742)] = 34932, + [SMALL_STATE(743)] = 34982, + [SMALL_STATE(744)] = 35062, + [SMALL_STATE(745)] = 35142, + [SMALL_STATE(746)] = 35222, + [SMALL_STATE(747)] = 35302, + [SMALL_STATE(748)] = 35348, + [SMALL_STATE(749)] = 35394, + [SMALL_STATE(750)] = 35474, + [SMALL_STATE(751)] = 35554, + [SMALL_STATE(752)] = 35634, + [SMALL_STATE(753)] = 35714, + [SMALL_STATE(754)] = 35794, + [SMALL_STATE(755)] = 35874, + [SMALL_STATE(756)] = 35922, + [SMALL_STATE(757)] = 36002, + [SMALL_STATE(758)] = 36082, + [SMALL_STATE(759)] = 36162, + [SMALL_STATE(760)] = 36212, + [SMALL_STATE(761)] = 36292, + [SMALL_STATE(762)] = 36372, + [SMALL_STATE(763)] = 36452, + [SMALL_STATE(764)] = 36532, + [SMALL_STATE(765)] = 36612, + [SMALL_STATE(766)] = 36692, + [SMALL_STATE(767)] = 36772, + [SMALL_STATE(768)] = 36852, + [SMALL_STATE(769)] = 36932, + [SMALL_STATE(770)] = 37012, + [SMALL_STATE(771)] = 37060, + [SMALL_STATE(772)] = 37140, + [SMALL_STATE(773)] = 37220, + [SMALL_STATE(774)] = 37300, [SMALL_STATE(775)] = 37380, [SMALL_STATE(776)] = 37460, - [SMALL_STATE(777)] = 37535, - [SMALL_STATE(778)] = 37610, - [SMALL_STATE(779)] = 37685, - [SMALL_STATE(780)] = 37760, - [SMALL_STATE(781)] = 37835, - [SMALL_STATE(782)] = 37910, - [SMALL_STATE(783)] = 37985, - [SMALL_STATE(784)] = 38060, - [SMALL_STATE(785)] = 38137, - [SMALL_STATE(786)] = 38212, - [SMALL_STATE(787)] = 38287, - [SMALL_STATE(788)] = 38362, - [SMALL_STATE(789)] = 38437, - [SMALL_STATE(790)] = 38512, - [SMALL_STATE(791)] = 38587, - [SMALL_STATE(792)] = 38662, - [SMALL_STATE(793)] = 38737, - [SMALL_STATE(794)] = 38814, - [SMALL_STATE(795)] = 38889, - [SMALL_STATE(796)] = 38964, - [SMALL_STATE(797)] = 39039, - [SMALL_STATE(798)] = 39116, - [SMALL_STATE(799)] = 39191, - [SMALL_STATE(800)] = 39266, - [SMALL_STATE(801)] = 39341, - [SMALL_STATE(802)] = 39418, - [SMALL_STATE(803)] = 39493, - [SMALL_STATE(804)] = 39554, - [SMALL_STATE(805)] = 39607, - [SMALL_STATE(806)] = 39682, - [SMALL_STATE(807)] = 39757, - [SMALL_STATE(808)] = 39814, - [SMALL_STATE(809)] = 39889, - [SMALL_STATE(810)] = 39964, - [SMALL_STATE(811)] = 40039, - [SMALL_STATE(812)] = 40116, - [SMALL_STATE(813)] = 40191, - [SMALL_STATE(814)] = 40266, - [SMALL_STATE(815)] = 40341, - [SMALL_STATE(816)] = 40418, - [SMALL_STATE(817)] = 40493, - [SMALL_STATE(818)] = 40568, - [SMALL_STATE(819)] = 40643, - [SMALL_STATE(820)] = 40718, - [SMALL_STATE(821)] = 40781, - [SMALL_STATE(822)] = 40858, + [SMALL_STATE(777)] = 37515, + [SMALL_STATE(778)] = 37590, + [SMALL_STATE(779)] = 37667, + [SMALL_STATE(780)] = 37742, + [SMALL_STATE(781)] = 37817, + [SMALL_STATE(782)] = 37892, + [SMALL_STATE(783)] = 37967, + [SMALL_STATE(784)] = 38042, + [SMALL_STATE(785)] = 38117, + [SMALL_STATE(786)] = 38192, + [SMALL_STATE(787)] = 38267, + [SMALL_STATE(788)] = 38344, + [SMALL_STATE(789)] = 38419, + [SMALL_STATE(790)] = 38496, + [SMALL_STATE(791)] = 38571, + [SMALL_STATE(792)] = 38646, + [SMALL_STATE(793)] = 38721, + [SMALL_STATE(794)] = 38798, + [SMALL_STATE(795)] = 38873, + [SMALL_STATE(796)] = 38948, + [SMALL_STATE(797)] = 39025, + [SMALL_STATE(798)] = 39100, + [SMALL_STATE(799)] = 39175, + [SMALL_STATE(800)] = 39250, + [SMALL_STATE(801)] = 39311, + [SMALL_STATE(802)] = 39386, + [SMALL_STATE(803)] = 39463, + [SMALL_STATE(804)] = 39538, + [SMALL_STATE(805)] = 39615, + [SMALL_STATE(806)] = 39690, + [SMALL_STATE(807)] = 39767, + [SMALL_STATE(808)] = 39842, + [SMALL_STATE(809)] = 39895, + [SMALL_STATE(810)] = 39970, + [SMALL_STATE(811)] = 40045, + [SMALL_STATE(812)] = 40102, + [SMALL_STATE(813)] = 40177, + [SMALL_STATE(814)] = 40252, + [SMALL_STATE(815)] = 40327, + [SMALL_STATE(816)] = 40404, + [SMALL_STATE(817)] = 40481, + [SMALL_STATE(818)] = 40556, + [SMALL_STATE(819)] = 40633, + [SMALL_STATE(820)] = 40708, + [SMALL_STATE(821)] = 40785, + [SMALL_STATE(822)] = 40860, [SMALL_STATE(823)] = 40935, - [SMALL_STATE(824)] = 40990, - [SMALL_STATE(825)] = 41067, - [SMALL_STATE(826)] = 41142, - [SMALL_STATE(827)] = 41217, - [SMALL_STATE(828)] = 41292, - [SMALL_STATE(829)] = 41343, - [SMALL_STATE(830)] = 41418, - [SMALL_STATE(831)] = 41493, - [SMALL_STATE(832)] = 41568, - [SMALL_STATE(833)] = 41643, - [SMALL_STATE(834)] = 41720, - [SMALL_STATE(835)] = 41795, + [SMALL_STATE(824)] = 41012, + [SMALL_STATE(825)] = 41087, + [SMALL_STATE(826)] = 41162, + [SMALL_STATE(827)] = 41237, + [SMALL_STATE(828)] = 41312, + [SMALL_STATE(829)] = 41367, + [SMALL_STATE(830)] = 41442, + [SMALL_STATE(831)] = 41517, + [SMALL_STATE(832)] = 41592, + [SMALL_STATE(833)] = 41667, + [SMALL_STATE(834)] = 41718, + [SMALL_STATE(835)] = 41793, [SMALL_STATE(836)] = 41870, - [SMALL_STATE(837)] = 41945, - [SMALL_STATE(838)] = 42020, - [SMALL_STATE(839)] = 42095, - [SMALL_STATE(840)] = 42170, - [SMALL_STATE(841)] = 42245, - [SMALL_STATE(842)] = 42320, - [SMALL_STATE(843)] = 42395, - [SMALL_STATE(844)] = 42470, - [SMALL_STATE(845)] = 42545, - [SMALL_STATE(846)] = 42620, - [SMALL_STATE(847)] = 42667, - [SMALL_STATE(848)] = 42712, - [SMALL_STATE(849)] = 42787, - [SMALL_STATE(850)] = 42862, - [SMALL_STATE(851)] = 42937, - [SMALL_STATE(852)] = 43012, - [SMALL_STATE(853)] = 43087, - [SMALL_STATE(854)] = 43164, - [SMALL_STATE(855)] = 43239, - [SMALL_STATE(856)] = 43314, - [SMALL_STATE(857)] = 43389, - [SMALL_STATE(858)] = 43464, - [SMALL_STATE(859)] = 43539, - [SMALL_STATE(860)] = 43614, - [SMALL_STATE(861)] = 43691, - [SMALL_STATE(862)] = 43766, - [SMALL_STATE(863)] = 43841, - [SMALL_STATE(864)] = 43916, - [SMALL_STATE(865)] = 43991, - [SMALL_STATE(866)] = 44066, - [SMALL_STATE(867)] = 44115, - [SMALL_STATE(868)] = 44190, - [SMALL_STATE(869)] = 44265, - [SMALL_STATE(870)] = 44318, - [SMALL_STATE(871)] = 44393, - [SMALL_STATE(872)] = 44468, - [SMALL_STATE(873)] = 44543, - [SMALL_STATE(874)] = 44620, - [SMALL_STATE(875)] = 44695, - [SMALL_STATE(876)] = 44770, - [SMALL_STATE(877)] = 44847, - [SMALL_STATE(878)] = 44922, - [SMALL_STATE(879)] = 44997, - [SMALL_STATE(880)] = 45072, - [SMALL_STATE(881)] = 45147, - [SMALL_STATE(882)] = 45224, - [SMALL_STATE(883)] = 45299, - [SMALL_STATE(884)] = 45374, - [SMALL_STATE(885)] = 45449, - [SMALL_STATE(886)] = 45524, - [SMALL_STATE(887)] = 45599, - [SMALL_STATE(888)] = 45674, + [SMALL_STATE(837)] = 41947, + [SMALL_STATE(838)] = 42022, + [SMALL_STATE(839)] = 42099, + [SMALL_STATE(840)] = 42174, + [SMALL_STATE(841)] = 42249, + [SMALL_STATE(842)] = 42324, + [SMALL_STATE(843)] = 42399, + [SMALL_STATE(844)] = 42474, + [SMALL_STATE(845)] = 42549, + [SMALL_STATE(846)] = 42624, + [SMALL_STATE(847)] = 42699, + [SMALL_STATE(848)] = 42776, + [SMALL_STATE(849)] = 42853, + [SMALL_STATE(850)] = 42928, + [SMALL_STATE(851)] = 43003, + [SMALL_STATE(852)] = 43050, + [SMALL_STATE(853)] = 43095, + [SMALL_STATE(854)] = 43172, + [SMALL_STATE(855)] = 43249, + [SMALL_STATE(856)] = 43324, + [SMALL_STATE(857)] = 43401, + [SMALL_STATE(858)] = 43478, + [SMALL_STATE(859)] = 43555, + [SMALL_STATE(860)] = 43630, + [SMALL_STATE(861)] = 43705, + [SMALL_STATE(862)] = 43780, + [SMALL_STATE(863)] = 43855, + [SMALL_STATE(864)] = 43932, + [SMALL_STATE(865)] = 44007, + [SMALL_STATE(866)] = 44084, + [SMALL_STATE(867)] = 44159, + [SMALL_STATE(868)] = 44234, + [SMALL_STATE(869)] = 44311, + [SMALL_STATE(870)] = 44356, + [SMALL_STATE(871)] = 44431, + [SMALL_STATE(872)] = 44480, + [SMALL_STATE(873)] = 44557, + [SMALL_STATE(874)] = 44632, + [SMALL_STATE(875)] = 44685, + [SMALL_STATE(876)] = 44762, + [SMALL_STATE(877)] = 44839, + [SMALL_STATE(878)] = 44914, + [SMALL_STATE(879)] = 44991, + [SMALL_STATE(880)] = 45066, + [SMALL_STATE(881)] = 45141, + [SMALL_STATE(882)] = 45218, + [SMALL_STATE(883)] = 45295, + [SMALL_STATE(884)] = 45370, + [SMALL_STATE(885)] = 45445, + [SMALL_STATE(886)] = 45520, + [SMALL_STATE(887)] = 45595, + [SMALL_STATE(888)] = 45672, [SMALL_STATE(889)] = 45749, [SMALL_STATE(890)] = 45824, - [SMALL_STATE(891)] = 45869, - [SMALL_STATE(892)] = 45946, - [SMALL_STATE(893)] = 46023, - [SMALL_STATE(894)] = 46098, - [SMALL_STATE(895)] = 46173, - [SMALL_STATE(896)] = 46248, - [SMALL_STATE(897)] = 46323, - [SMALL_STATE(898)] = 46398, - [SMALL_STATE(899)] = 46473, - [SMALL_STATE(900)] = 46548, - [SMALL_STATE(901)] = 46623, - [SMALL_STATE(902)] = 46698, - [SMALL_STATE(903)] = 46773, - [SMALL_STATE(904)] = 46848, - [SMALL_STATE(905)] = 46923, - [SMALL_STATE(906)] = 46998, - [SMALL_STATE(907)] = 47073, - [SMALL_STATE(908)] = 47148, - [SMALL_STATE(909)] = 47223, - [SMALL_STATE(910)] = 47298, - [SMALL_STATE(911)] = 47373, - [SMALL_STATE(912)] = 47448, - [SMALL_STATE(913)] = 47523, - [SMALL_STATE(914)] = 47598, - [SMALL_STATE(915)] = 47673, - [SMALL_STATE(916)] = 47750, - [SMALL_STATE(917)] = 47827, - [SMALL_STATE(918)] = 47904, - [SMALL_STATE(919)] = 47981, - [SMALL_STATE(920)] = 48058, - [SMALL_STATE(921)] = 48135, - [SMALL_STATE(922)] = 48210, - [SMALL_STATE(923)] = 48285, - [SMALL_STATE(924)] = 48360, - [SMALL_STATE(925)] = 48435, - [SMALL_STATE(926)] = 48512, - [SMALL_STATE(927)] = 48587, - [SMALL_STATE(928)] = 48662, - [SMALL_STATE(929)] = 48737, - [SMALL_STATE(930)] = 48812, - [SMALL_STATE(931)] = 48887, - [SMALL_STATE(932)] = 48964, - [SMALL_STATE(933)] = 49039, - [SMALL_STATE(934)] = 49114, - [SMALL_STATE(935)] = 49189, - [SMALL_STATE(936)] = 49266, - [SMALL_STATE(937)] = 49343, - [SMALL_STATE(938)] = 49418, - [SMALL_STATE(939)] = 49495, - [SMALL_STATE(940)] = 49570, - [SMALL_STATE(941)] = 49645, - [SMALL_STATE(942)] = 49720, - [SMALL_STATE(943)] = 49795, - [SMALL_STATE(944)] = 49870, - [SMALL_STATE(945)] = 49945, - [SMALL_STATE(946)] = 50020, - [SMALL_STATE(947)] = 50095, - [SMALL_STATE(948)] = 50170, - [SMALL_STATE(949)] = 50245, - [SMALL_STATE(950)] = 50320, - [SMALL_STATE(951)] = 50395, - [SMALL_STATE(952)] = 50472, - [SMALL_STATE(953)] = 50547, - [SMALL_STATE(954)] = 50622, - [SMALL_STATE(955)] = 50697, - [SMALL_STATE(956)] = 50772, - [SMALL_STATE(957)] = 50847, - [SMALL_STATE(958)] = 50922, - [SMALL_STATE(959)] = 50997, - [SMALL_STATE(960)] = 51072, - [SMALL_STATE(961)] = 51147, - [SMALL_STATE(962)] = 51224, - [SMALL_STATE(963)] = 51299, - [SMALL_STATE(964)] = 51374, - [SMALL_STATE(965)] = 51449, - [SMALL_STATE(966)] = 51526, - [SMALL_STATE(967)] = 51601, - [SMALL_STATE(968)] = 51676, - [SMALL_STATE(969)] = 51751, - [SMALL_STATE(970)] = 51826, - [SMALL_STATE(971)] = 51901, - [SMALL_STATE(972)] = 51978, - [SMALL_STATE(973)] = 52055, - [SMALL_STATE(974)] = 52132, - [SMALL_STATE(975)] = 52209, - [SMALL_STATE(976)] = 52286, - [SMALL_STATE(977)] = 52363, - [SMALL_STATE(978)] = 52440, - [SMALL_STATE(979)] = 52517, - [SMALL_STATE(980)] = 52594, - [SMALL_STATE(981)] = 52639, - [SMALL_STATE(982)] = 52714, - [SMALL_STATE(983)] = 52791, - [SMALL_STATE(984)] = 52868, - [SMALL_STATE(985)] = 52945, - [SMALL_STATE(986)] = 53022, - [SMALL_STATE(987)] = 53099, - [SMALL_STATE(988)] = 53174, - [SMALL_STATE(989)] = 53251, - [SMALL_STATE(990)] = 53328, - [SMALL_STATE(991)] = 53377, - [SMALL_STATE(992)] = 53452, - [SMALL_STATE(993)] = 53499, - [SMALL_STATE(994)] = 53574, - [SMALL_STATE(995)] = 53649, - [SMALL_STATE(996)] = 53698, - [SMALL_STATE(997)] = 53775, - [SMALL_STATE(998)] = 53820, - [SMALL_STATE(999)] = 53869, - [SMALL_STATE(1000)] = 53918, - [SMALL_STATE(1001)] = 53971, - [SMALL_STATE(1002)] = 54048, - [SMALL_STATE(1003)] = 54125, - [SMALL_STATE(1004)] = 54202, - [SMALL_STATE(1005)] = 54279, - [SMALL_STATE(1006)] = 54354, - [SMALL_STATE(1007)] = 54429, - [SMALL_STATE(1008)] = 54504, - [SMALL_STATE(1009)] = 54581, - [SMALL_STATE(1010)] = 54626, - [SMALL_STATE(1011)] = 54703, - [SMALL_STATE(1012)] = 54780, - [SMALL_STATE(1013)] = 54857, - [SMALL_STATE(1014)] = 54934, - [SMALL_STATE(1015)] = 55011, - [SMALL_STATE(1016)] = 55088, - [SMALL_STATE(1017)] = 55165, - [SMALL_STATE(1018)] = 55242, - [SMALL_STATE(1019)] = 55319, - [SMALL_STATE(1020)] = 55396, - [SMALL_STATE(1021)] = 55473, - [SMALL_STATE(1022)] = 55548, - [SMALL_STATE(1023)] = 55597, - [SMALL_STATE(1024)] = 55674, - [SMALL_STATE(1025)] = 55751, - [SMALL_STATE(1026)] = 55798, - [SMALL_STATE(1027)] = 55875, - [SMALL_STATE(1028)] = 55950, - [SMALL_STATE(1029)] = 56027, - [SMALL_STATE(1030)] = 56104, - [SMALL_STATE(1031)] = 56181, - [SMALL_STATE(1032)] = 56258, - [SMALL_STATE(1033)] = 56333, - [SMALL_STATE(1034)] = 56408, - [SMALL_STATE(1035)] = 56483, - [SMALL_STATE(1036)] = 56558, - [SMALL_STATE(1037)] = 56633, - [SMALL_STATE(1038)] = 56708, - [SMALL_STATE(1039)] = 56783, - [SMALL_STATE(1040)] = 56858, - [SMALL_STATE(1041)] = 56933, - [SMALL_STATE(1042)] = 57008, - [SMALL_STATE(1043)] = 57083, - [SMALL_STATE(1044)] = 57158, - [SMALL_STATE(1045)] = 57233, - [SMALL_STATE(1046)] = 57308, - [SMALL_STATE(1047)] = 57383, - [SMALL_STATE(1048)] = 57458, - [SMALL_STATE(1049)] = 57533, - [SMALL_STATE(1050)] = 57610, - [SMALL_STATE(1051)] = 57685, - [SMALL_STATE(1052)] = 57760, - [SMALL_STATE(1053)] = 57835, - [SMALL_STATE(1054)] = 57910, - [SMALL_STATE(1055)] = 57965, - [SMALL_STATE(1056)] = 58042, - [SMALL_STATE(1057)] = 58119, - [SMALL_STATE(1058)] = 58194, - [SMALL_STATE(1059)] = 58269, - [SMALL_STATE(1060)] = 58344, - [SMALL_STATE(1061)] = 58421, - [SMALL_STATE(1062)] = 58498, - [SMALL_STATE(1063)] = 58573, - [SMALL_STATE(1064)] = 58650, - [SMALL_STATE(1065)] = 58725, - [SMALL_STATE(1066)] = 58800, - [SMALL_STATE(1067)] = 58875, - [SMALL_STATE(1068)] = 58930, + [SMALL_STATE(891)] = 45873, + [SMALL_STATE(892)] = 45950, + [SMALL_STATE(893)] = 46025, + [SMALL_STATE(894)] = 46100, + [SMALL_STATE(895)] = 46177, + [SMALL_STATE(896)] = 46254, + [SMALL_STATE(897)] = 46331, + [SMALL_STATE(898)] = 46406, + [SMALL_STATE(899)] = 46483, + [SMALL_STATE(900)] = 46558, + [SMALL_STATE(901)] = 46633, + [SMALL_STATE(902)] = 46708, + [SMALL_STATE(903)] = 46783, + [SMALL_STATE(904)] = 46858, + [SMALL_STATE(905)] = 46933, + [SMALL_STATE(906)] = 47008, + [SMALL_STATE(907)] = 47083, + [SMALL_STATE(908)] = 47158, + [SMALL_STATE(909)] = 47235, + [SMALL_STATE(910)] = 47310, + [SMALL_STATE(911)] = 47385, + [SMALL_STATE(912)] = 47460, + [SMALL_STATE(913)] = 47535, + [SMALL_STATE(914)] = 47612, + [SMALL_STATE(915)] = 47689, + [SMALL_STATE(916)] = 47764, + [SMALL_STATE(917)] = 47813, + [SMALL_STATE(918)] = 47888, + [SMALL_STATE(919)] = 47963, + [SMALL_STATE(920)] = 48038, + [SMALL_STATE(921)] = 48113, + [SMALL_STATE(922)] = 48188, + [SMALL_STATE(923)] = 48263, + [SMALL_STATE(924)] = 48338, + [SMALL_STATE(925)] = 48413, + [SMALL_STATE(926)] = 48488, + [SMALL_STATE(927)] = 48565, + [SMALL_STATE(928)] = 48640, + [SMALL_STATE(929)] = 48715, + [SMALL_STATE(930)] = 48790, + [SMALL_STATE(931)] = 48865, + [SMALL_STATE(932)] = 48942, + [SMALL_STATE(933)] = 49017, + [SMALL_STATE(934)] = 49092, + [SMALL_STATE(935)] = 49169, + [SMALL_STATE(936)] = 49246, + [SMALL_STATE(937)] = 49323, + [SMALL_STATE(938)] = 49398, + [SMALL_STATE(939)] = 49473, + [SMALL_STATE(940)] = 49548, + [SMALL_STATE(941)] = 49623, + [SMALL_STATE(942)] = 49700, + [SMALL_STATE(943)] = 49775, + [SMALL_STATE(944)] = 49850, + [SMALL_STATE(945)] = 49925, + [SMALL_STATE(946)] = 50000, + [SMALL_STATE(947)] = 50047, + [SMALL_STATE(948)] = 50122, + [SMALL_STATE(949)] = 50197, + [SMALL_STATE(950)] = 50272, + [SMALL_STATE(951)] = 50321, + [SMALL_STATE(952)] = 50396, + [SMALL_STATE(953)] = 50471, + [SMALL_STATE(954)] = 50546, + [SMALL_STATE(955)] = 50621, + [SMALL_STATE(956)] = 50670, + [SMALL_STATE(957)] = 50745, + [SMALL_STATE(958)] = 50820, + [SMALL_STATE(959)] = 50895, + [SMALL_STATE(960)] = 50970, + [SMALL_STATE(961)] = 51023, + [SMALL_STATE(962)] = 51098, + [SMALL_STATE(963)] = 51173, + [SMALL_STATE(964)] = 51248, + [SMALL_STATE(965)] = 51323, + [SMALL_STATE(966)] = 51398, + [SMALL_STATE(967)] = 51473, + [SMALL_STATE(968)] = 51548, + [SMALL_STATE(969)] = 51593, + [SMALL_STATE(970)] = 51668, + [SMALL_STATE(971)] = 51745, + [SMALL_STATE(972)] = 51820, + [SMALL_STATE(973)] = 51895, + [SMALL_STATE(974)] = 51970, + [SMALL_STATE(975)] = 52045, + [SMALL_STATE(976)] = 52122, + [SMALL_STATE(977)] = 52199, + [SMALL_STATE(978)] = 52274, + [SMALL_STATE(979)] = 52321, + [SMALL_STATE(980)] = 52398, + [SMALL_STATE(981)] = 52473, + [SMALL_STATE(982)] = 52548, + [SMALL_STATE(983)] = 52625, + [SMALL_STATE(984)] = 52700, + [SMALL_STATE(985)] = 52777, + [SMALL_STATE(986)] = 52854, + [SMALL_STATE(987)] = 52929, + [SMALL_STATE(988)] = 53004, + [SMALL_STATE(989)] = 53079, + [SMALL_STATE(990)] = 53156, + [SMALL_STATE(991)] = 53231, + [SMALL_STATE(992)] = 53280, + [SMALL_STATE(993)] = 53357, + [SMALL_STATE(994)] = 53432, + [SMALL_STATE(995)] = 53507, + [SMALL_STATE(996)] = 53582, + [SMALL_STATE(997)] = 53657, + [SMALL_STATE(998)] = 53732, + [SMALL_STATE(999)] = 53807, + [SMALL_STATE(1000)] = 53882, + [SMALL_STATE(1001)] = 53959, + [SMALL_STATE(1002)] = 54034, + [SMALL_STATE(1003)] = 54079, + [SMALL_STATE(1004)] = 54156, + [SMALL_STATE(1005)] = 54231, + [SMALL_STATE(1006)] = 54308, + [SMALL_STATE(1007)] = 54383, + [SMALL_STATE(1008)] = 54458, + [SMALL_STATE(1009)] = 54533, + [SMALL_STATE(1010)] = 54608, + [SMALL_STATE(1011)] = 54683, + [SMALL_STATE(1012)] = 54758, + [SMALL_STATE(1013)] = 54833, + [SMALL_STATE(1014)] = 54908, + [SMALL_STATE(1015)] = 54953, + [SMALL_STATE(1016)] = 55028, + [SMALL_STATE(1017)] = 55105, + [SMALL_STATE(1018)] = 55180, + [SMALL_STATE(1019)] = 55257, + [SMALL_STATE(1020)] = 55334, + [SMALL_STATE(1021)] = 55411, + [SMALL_STATE(1022)] = 55488, + [SMALL_STATE(1023)] = 55563, + [SMALL_STATE(1024)] = 55638, + [SMALL_STATE(1025)] = 55713, + [SMALL_STATE(1026)] = 55788, + [SMALL_STATE(1027)] = 55863, + [SMALL_STATE(1028)] = 55938, + [SMALL_STATE(1029)] = 56015, + [SMALL_STATE(1030)] = 56090, + [SMALL_STATE(1031)] = 56165, + [SMALL_STATE(1032)] = 56240, + [SMALL_STATE(1033)] = 56315, + [SMALL_STATE(1034)] = 56390, + [SMALL_STATE(1035)] = 56465, + [SMALL_STATE(1036)] = 56510, + [SMALL_STATE(1037)] = 56585, + [SMALL_STATE(1038)] = 56660, + [SMALL_STATE(1039)] = 56735, + [SMALL_STATE(1040)] = 56810, + [SMALL_STATE(1041)] = 56885, + [SMALL_STATE(1042)] = 56960, + [SMALL_STATE(1043)] = 57035, + [SMALL_STATE(1044)] = 57112, + [SMALL_STATE(1045)] = 57187, + [SMALL_STATE(1046)] = 57264, + [SMALL_STATE(1047)] = 57341, + [SMALL_STATE(1048)] = 57418, + [SMALL_STATE(1049)] = 57493, + [SMALL_STATE(1050)] = 57568, + [SMALL_STATE(1051)] = 57645, + [SMALL_STATE(1052)] = 57722, + [SMALL_STATE(1053)] = 57797, + [SMALL_STATE(1054)] = 57872, + [SMALL_STATE(1055)] = 57949, + [SMALL_STATE(1056)] = 58024, + [SMALL_STATE(1057)] = 58099, + [SMALL_STATE(1058)] = 58174, + [SMALL_STATE(1059)] = 58249, + [SMALL_STATE(1060)] = 58324, + [SMALL_STATE(1061)] = 58399, + [SMALL_STATE(1062)] = 58476, + [SMALL_STATE(1063)] = 58551, + [SMALL_STATE(1064)] = 58626, + [SMALL_STATE(1065)] = 58701, + [SMALL_STATE(1066)] = 58776, + [SMALL_STATE(1067)] = 58853, + [SMALL_STATE(1068)] = 58928, [SMALL_STATE(1069)] = 59005, [SMALL_STATE(1070)] = 59080, [SMALL_STATE(1071)] = 59155, @@ -101097,493 +101438,493 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(1076)] = 59530, [SMALL_STATE(1077)] = 59605, [SMALL_STATE(1078)] = 59680, - [SMALL_STATE(1079)] = 59755, - [SMALL_STATE(1080)] = 59832, - [SMALL_STATE(1081)] = 59907, - [SMALL_STATE(1082)] = 59982, - [SMALL_STATE(1083)] = 60057, - [SMALL_STATE(1084)] = 60132, - [SMALL_STATE(1085)] = 60207, - [SMALL_STATE(1086)] = 60284, - [SMALL_STATE(1087)] = 60359, - [SMALL_STATE(1088)] = 60434, - [SMALL_STATE(1089)] = 60509, - [SMALL_STATE(1090)] = 60584, - [SMALL_STATE(1091)] = 60659, - [SMALL_STATE(1092)] = 60734, - [SMALL_STATE(1093)] = 60811, - [SMALL_STATE(1094)] = 60886, - [SMALL_STATE(1095)] = 60961, - [SMALL_STATE(1096)] = 61036, - [SMALL_STATE(1097)] = 61111, - [SMALL_STATE(1098)] = 61186, - [SMALL_STATE(1099)] = 61231, - [SMALL_STATE(1100)] = 61308, - [SMALL_STATE(1101)] = 61383, - [SMALL_STATE(1102)] = 61460, - [SMALL_STATE(1103)] = 61537, - [SMALL_STATE(1104)] = 61612, - [SMALL_STATE(1105)] = 61687, - [SMALL_STATE(1106)] = 61762, - [SMALL_STATE(1107)] = 61839, - [SMALL_STATE(1108)] = 61916, - [SMALL_STATE(1109)] = 61991, - [SMALL_STATE(1110)] = 62066, - [SMALL_STATE(1111)] = 62141, - [SMALL_STATE(1112)] = 62216, - [SMALL_STATE(1113)] = 62291, - [SMALL_STATE(1114)] = 62366, - [SMALL_STATE(1115)] = 62441, - [SMALL_STATE(1116)] = 62518, - [SMALL_STATE(1117)] = 62593, - [SMALL_STATE(1118)] = 62670, + [SMALL_STATE(1079)] = 59757, + [SMALL_STATE(1080)] = 59834, + [SMALL_STATE(1081)] = 59909, + [SMALL_STATE(1082)] = 59986, + [SMALL_STATE(1083)] = 60061, + [SMALL_STATE(1084)] = 60136, + [SMALL_STATE(1085)] = 60213, + [SMALL_STATE(1086)] = 60290, + [SMALL_STATE(1087)] = 60365, + [SMALL_STATE(1088)] = 60440, + [SMALL_STATE(1089)] = 60515, + [SMALL_STATE(1090)] = 60590, + [SMALL_STATE(1091)] = 60665, + [SMALL_STATE(1092)] = 60740, + [SMALL_STATE(1093)] = 60817, + [SMALL_STATE(1094)] = 60872, + [SMALL_STATE(1095)] = 60947, + [SMALL_STATE(1096)] = 61024, + [SMALL_STATE(1097)] = 61099, + [SMALL_STATE(1098)] = 61176, + [SMALL_STATE(1099)] = 61251, + [SMALL_STATE(1100)] = 61328, + [SMALL_STATE(1101)] = 61403, + [SMALL_STATE(1102)] = 61480, + [SMALL_STATE(1103)] = 61555, + [SMALL_STATE(1104)] = 61630, + [SMALL_STATE(1105)] = 61705, + [SMALL_STATE(1106)] = 61780, + [SMALL_STATE(1107)] = 61855, + [SMALL_STATE(1108)] = 61930, + [SMALL_STATE(1109)] = 62005, + [SMALL_STATE(1110)] = 62082, + [SMALL_STATE(1111)] = 62145, + [SMALL_STATE(1112)] = 62220, + [SMALL_STATE(1113)] = 62295, + [SMALL_STATE(1114)] = 62370, + [SMALL_STATE(1115)] = 62445, + [SMALL_STATE(1116)] = 62522, + [SMALL_STATE(1117)] = 62597, + [SMALL_STATE(1118)] = 62672, [SMALL_STATE(1119)] = 62747, [SMALL_STATE(1120)] = 62822, [SMALL_STATE(1121)] = 62897, - [SMALL_STATE(1122)] = 62943, - [SMALL_STATE(1123)] = 62987, - [SMALL_STATE(1124)] = 63049, - [SMALL_STATE(1125)] = 63093, - [SMALL_STATE(1126)] = 63141, - [SMALL_STATE(1127)] = 63201, - [SMALL_STATE(1128)] = 63253, - [SMALL_STATE(1129)] = 63295, - [SMALL_STATE(1130)] = 63337, - [SMALL_STATE(1131)] = 63393, - [SMALL_STATE(1132)] = 63447, - [SMALL_STATE(1133)] = 63497, - [SMALL_STATE(1134)] = 63543, - [SMALL_STATE(1135)] = 63587, - [SMALL_STATE(1136)] = 63635, - [SMALL_STATE(1137)] = 63687, - [SMALL_STATE(1138)] = 63739, - [SMALL_STATE(1139)] = 63781, - [SMALL_STATE(1140)] = 63823, - [SMALL_STATE(1141)] = 63867, - [SMALL_STATE(1142)] = 63909, - [SMALL_STATE(1143)] = 63953, - [SMALL_STATE(1144)] = 63995, - [SMALL_STATE(1145)] = 64037, - [SMALL_STATE(1146)] = 64081, - [SMALL_STATE(1147)] = 64123, - [SMALL_STATE(1148)] = 64167, - [SMALL_STATE(1149)] = 64209, - [SMALL_STATE(1150)] = 64253, - [SMALL_STATE(1151)] = 64295, - [SMALL_STATE(1152)] = 64339, - [SMALL_STATE(1153)] = 64381, - [SMALL_STATE(1154)] = 64425, - [SMALL_STATE(1155)] = 64467, - [SMALL_STATE(1156)] = 64511, - [SMALL_STATE(1157)] = 64559, - [SMALL_STATE(1158)] = 64601, - [SMALL_STATE(1159)] = 64643, - [SMALL_STATE(1160)] = 64687, - [SMALL_STATE(1161)] = 64729, - [SMALL_STATE(1162)] = 64771, - [SMALL_STATE(1163)] = 64815, - [SMALL_STATE(1164)] = 64861, - [SMALL_STATE(1165)] = 64903, - [SMALL_STATE(1166)] = 64949, - [SMALL_STATE(1167)] = 64993, - [SMALL_STATE(1168)] = 65035, - [SMALL_STATE(1169)] = 65085, - [SMALL_STATE(1170)] = 65129, - [SMALL_STATE(1171)] = 65173, - [SMALL_STATE(1172)] = 65215, - [SMALL_STATE(1173)] = 65257, - [SMALL_STATE(1174)] = 65301, - [SMALL_STATE(1175)] = 65343, - [SMALL_STATE(1176)] = 65385, - [SMALL_STATE(1177)] = 65427, - [SMALL_STATE(1178)] = 65469, - [SMALL_STATE(1179)] = 65513, - [SMALL_STATE(1180)] = 65555, - [SMALL_STATE(1181)] = 65597, - [SMALL_STATE(1182)] = 65641, - [SMALL_STATE(1183)] = 65683, - [SMALL_STATE(1184)] = 65725, - [SMALL_STATE(1185)] = 65767, - [SMALL_STATE(1186)] = 65811, - [SMALL_STATE(1187)] = 65853, - [SMALL_STATE(1188)] = 65897, - [SMALL_STATE(1189)] = 65939, - [SMALL_STATE(1190)] = 65983, - [SMALL_STATE(1191)] = 66025, - [SMALL_STATE(1192)] = 66067, - [SMALL_STATE(1193)] = 66109, - [SMALL_STATE(1194)] = 66153, + [SMALL_STATE(1122)] = 62939, + [SMALL_STATE(1123)] = 62983, + [SMALL_STATE(1124)] = 63025, + [SMALL_STATE(1125)] = 63069, + [SMALL_STATE(1126)] = 63131, + [SMALL_STATE(1127)] = 63173, + [SMALL_STATE(1128)] = 63217, + [SMALL_STATE(1129)] = 63261, + [SMALL_STATE(1130)] = 63303, + [SMALL_STATE(1131)] = 63347, + [SMALL_STATE(1132)] = 63389, + [SMALL_STATE(1133)] = 63433, + [SMALL_STATE(1134)] = 63475, + [SMALL_STATE(1135)] = 63519, + [SMALL_STATE(1136)] = 63561, + [SMALL_STATE(1137)] = 63605, + [SMALL_STATE(1138)] = 63653, + [SMALL_STATE(1139)] = 63695, + [SMALL_STATE(1140)] = 63741, + [SMALL_STATE(1141)] = 63785, + [SMALL_STATE(1142)] = 63833, + [SMALL_STATE(1143)] = 63885, + [SMALL_STATE(1144)] = 63927, + [SMALL_STATE(1145)] = 63971, + [SMALL_STATE(1146)] = 64013, + [SMALL_STATE(1147)] = 64057, + [SMALL_STATE(1148)] = 64099, + [SMALL_STATE(1149)] = 64143, + [SMALL_STATE(1150)] = 64185, + [SMALL_STATE(1151)] = 64245, + [SMALL_STATE(1152)] = 64297, + [SMALL_STATE(1153)] = 64353, + [SMALL_STATE(1154)] = 64407, + [SMALL_STATE(1155)] = 64457, + [SMALL_STATE(1156)] = 64503, + [SMALL_STATE(1157)] = 64547, + [SMALL_STATE(1158)] = 64595, + [SMALL_STATE(1159)] = 64647, + [SMALL_STATE(1160)] = 64693, + [SMALL_STATE(1161)] = 64735, + [SMALL_STATE(1162)] = 64785, + [SMALL_STATE(1163)] = 64827, + [SMALL_STATE(1164)] = 64871, + [SMALL_STATE(1165)] = 64913, + [SMALL_STATE(1166)] = 64957, + [SMALL_STATE(1167)] = 64999, + [SMALL_STATE(1168)] = 65041, + [SMALL_STATE(1169)] = 65083, + [SMALL_STATE(1170)] = 65125, + [SMALL_STATE(1171)] = 65167, + [SMALL_STATE(1172)] = 65209, + [SMALL_STATE(1173)] = 65251, + [SMALL_STATE(1174)] = 65293, + [SMALL_STATE(1175)] = 65335, + [SMALL_STATE(1176)] = 65377, + [SMALL_STATE(1177)] = 65419, + [SMALL_STATE(1178)] = 65463, + [SMALL_STATE(1179)] = 65505, + [SMALL_STATE(1180)] = 65549, + [SMALL_STATE(1181)] = 65591, + [SMALL_STATE(1182)] = 65633, + [SMALL_STATE(1183)] = 65675, + [SMALL_STATE(1184)] = 65719, + [SMALL_STATE(1185)] = 65761, + [SMALL_STATE(1186)] = 65805, + [SMALL_STATE(1187)] = 65849, + [SMALL_STATE(1188)] = 65891, + [SMALL_STATE(1189)] = 65933, + [SMALL_STATE(1190)] = 65977, + [SMALL_STATE(1191)] = 66021, + [SMALL_STATE(1192)] = 66063, + [SMALL_STATE(1193)] = 66107, + [SMALL_STATE(1194)] = 66149, [SMALL_STATE(1195)] = 66195, - [SMALL_STATE(1196)] = 66234, - [SMALL_STATE(1197)] = 66275, - [SMALL_STATE(1198)] = 66316, - [SMALL_STATE(1199)] = 66355, - [SMALL_STATE(1200)] = 66396, - [SMALL_STATE(1201)] = 66435, - [SMALL_STATE(1202)] = 66474, - [SMALL_STATE(1203)] = 66513, - [SMALL_STATE(1204)] = 66552, - [SMALL_STATE(1205)] = 66591, - [SMALL_STATE(1206)] = 66632, - [SMALL_STATE(1207)] = 66671, - [SMALL_STATE(1208)] = 66710, - [SMALL_STATE(1209)] = 66751, - [SMALL_STATE(1210)] = 66790, - [SMALL_STATE(1211)] = 66829, - [SMALL_STATE(1212)] = 66868, - [SMALL_STATE(1213)] = 66909, - [SMALL_STATE(1214)] = 66948, - [SMALL_STATE(1215)] = 66989, - [SMALL_STATE(1216)] = 67028, - [SMALL_STATE(1217)] = 67067, - [SMALL_STATE(1218)] = 67122, - [SMALL_STATE(1219)] = 67163, - [SMALL_STATE(1220)] = 67202, - [SMALL_STATE(1221)] = 67243, - [SMALL_STATE(1222)] = 67282, - [SMALL_STATE(1223)] = 67321, - [SMALL_STATE(1224)] = 67360, - [SMALL_STATE(1225)] = 67399, - [SMALL_STATE(1226)] = 67440, - [SMALL_STATE(1227)] = 67479, - [SMALL_STATE(1228)] = 67520, - [SMALL_STATE(1229)] = 67559, - [SMALL_STATE(1230)] = 67598, - [SMALL_STATE(1231)] = 67645, - [SMALL_STATE(1232)] = 67694, - [SMALL_STATE(1233)] = 67743, - [SMALL_STATE(1234)] = 67792, - [SMALL_STATE(1235)] = 67859, - [SMALL_STATE(1236)] = 67906, - [SMALL_STATE(1237)] = 67945, - [SMALL_STATE(1238)] = 67986, - [SMALL_STATE(1239)] = 68031, - [SMALL_STATE(1240)] = 68070, - [SMALL_STATE(1241)] = 68111, - [SMALL_STATE(1242)] = 68158, - [SMALL_STATE(1243)] = 68199, - [SMALL_STATE(1244)] = 68238, - [SMALL_STATE(1245)] = 68279, - [SMALL_STATE(1246)] = 68318, - [SMALL_STATE(1247)] = 68363, - [SMALL_STATE(1248)] = 68402, - [SMALL_STATE(1249)] = 68443, - [SMALL_STATE(1250)] = 68490, - [SMALL_STATE(1251)] = 68529, - [SMALL_STATE(1252)] = 68592, - [SMALL_STATE(1253)] = 68633, - [SMALL_STATE(1254)] = 68688, - [SMALL_STATE(1255)] = 68727, - [SMALL_STATE(1256)] = 68786, - [SMALL_STATE(1257)] = 68837, - [SMALL_STATE(1258)] = 68894, - [SMALL_STATE(1259)] = 68935, - [SMALL_STATE(1260)] = 68976, - [SMALL_STATE(1261)] = 69015, - [SMALL_STATE(1262)] = 69054, - [SMALL_STATE(1263)] = 69093, - [SMALL_STATE(1264)] = 69146, - [SMALL_STATE(1265)] = 69187, + [SMALL_STATE(1196)] = 66236, + [SMALL_STATE(1197)] = 66283, + [SMALL_STATE(1198)] = 66334, + [SMALL_STATE(1199)] = 66373, + [SMALL_STATE(1200)] = 66412, + [SMALL_STATE(1201)] = 66451, + [SMALL_STATE(1202)] = 66504, + [SMALL_STATE(1203)] = 66545, + [SMALL_STATE(1204)] = 66584, + [SMALL_STATE(1205)] = 66623, + [SMALL_STATE(1206)] = 66664, + [SMALL_STATE(1207)] = 66705, + [SMALL_STATE(1208)] = 66762, + [SMALL_STATE(1209)] = 66801, + [SMALL_STATE(1210)] = 66842, + [SMALL_STATE(1211)] = 66881, + [SMALL_STATE(1212)] = 66922, + [SMALL_STATE(1213)] = 66967, + [SMALL_STATE(1214)] = 67006, + [SMALL_STATE(1215)] = 67045, + [SMALL_STATE(1216)] = 67086, + [SMALL_STATE(1217)] = 67127, + [SMALL_STATE(1218)] = 67166, + [SMALL_STATE(1219)] = 67205, + [SMALL_STATE(1220)] = 67246, + [SMALL_STATE(1221)] = 67285, + [SMALL_STATE(1222)] = 67326, + [SMALL_STATE(1223)] = 67367, + [SMALL_STATE(1224)] = 67408, + [SMALL_STATE(1225)] = 67447, + [SMALL_STATE(1226)] = 67486, + [SMALL_STATE(1227)] = 67541, + [SMALL_STATE(1228)] = 67590, + [SMALL_STATE(1229)] = 67629, + [SMALL_STATE(1230)] = 67668, + [SMALL_STATE(1231)] = 67709, + [SMALL_STATE(1232)] = 67750, + [SMALL_STATE(1233)] = 67791, + [SMALL_STATE(1234)] = 67832, + [SMALL_STATE(1235)] = 67871, + [SMALL_STATE(1236)] = 67910, + [SMALL_STATE(1237)] = 67949, + [SMALL_STATE(1238)] = 68016, + [SMALL_STATE(1239)] = 68075, + [SMALL_STATE(1240)] = 68116, + [SMALL_STATE(1241)] = 68163, + [SMALL_STATE(1242)] = 68218, + [SMALL_STATE(1243)] = 68265, + [SMALL_STATE(1244)] = 68304, + [SMALL_STATE(1245)] = 68343, + [SMALL_STATE(1246)] = 68382, + [SMALL_STATE(1247)] = 68421, + [SMALL_STATE(1248)] = 68460, + [SMALL_STATE(1249)] = 68509, + [SMALL_STATE(1250)] = 68548, + [SMALL_STATE(1251)] = 68587, + [SMALL_STATE(1252)] = 68636, + [SMALL_STATE(1253)] = 68681, + [SMALL_STATE(1254)] = 68722, + [SMALL_STATE(1255)] = 68761, + [SMALL_STATE(1256)] = 68802, + [SMALL_STATE(1257)] = 68843, + [SMALL_STATE(1258)] = 68882, + [SMALL_STATE(1259)] = 68921, + [SMALL_STATE(1260)] = 68960, + [SMALL_STATE(1261)] = 69023, + [SMALL_STATE(1262)] = 69062, + [SMALL_STATE(1263)] = 69101, + [SMALL_STATE(1264)] = 69140, + [SMALL_STATE(1265)] = 69179, [SMALL_STATE(1266)] = 69226, [SMALL_STATE(1267)] = 69282, [SMALL_STATE(1268)] = 69326, [SMALL_STATE(1269)] = 69376, - [SMALL_STATE(1270)] = 69420, - [SMALL_STATE(1271)] = 69464, - [SMALL_STATE(1272)] = 69520, - [SMALL_STATE(1273)] = 69576, - [SMALL_STATE(1274)] = 69632, - [SMALL_STATE(1275)] = 69672, - [SMALL_STATE(1276)] = 69712, - [SMALL_STATE(1277)] = 69768, - [SMALL_STATE(1278)] = 69824, - [SMALL_STATE(1279)] = 69864, - [SMALL_STATE(1280)] = 69914, + [SMALL_STATE(1270)] = 69432, + [SMALL_STATE(1271)] = 69476, + [SMALL_STATE(1272)] = 69516, + [SMALL_STATE(1273)] = 69566, + [SMALL_STATE(1274)] = 69606, + [SMALL_STATE(1275)] = 69646, + [SMALL_STATE(1276)] = 69702, + [SMALL_STATE(1277)] = 69758, + [SMALL_STATE(1278)] = 69802, + [SMALL_STATE(1279)] = 69858, + [SMALL_STATE(1280)] = 69898, [SMALL_STATE(1281)] = 69954, [SMALL_STATE(1282)] = 70007, - [SMALL_STATE(1283)] = 70050, + [SMALL_STATE(1283)] = 70048, [SMALL_STATE(1284)] = 70091, - [SMALL_STATE(1285)] = 70134, - [SMALL_STATE(1286)] = 70175, - [SMALL_STATE(1287)] = 70228, - [SMALL_STATE(1288)] = 70267, - [SMALL_STATE(1289)] = 70306, - [SMALL_STATE(1290)] = 70349, - [SMALL_STATE(1291)] = 70394, - [SMALL_STATE(1292)] = 70447, - [SMALL_STATE(1293)] = 70486, - [SMALL_STATE(1294)] = 70539, - [SMALL_STATE(1295)] = 70592, - [SMALL_STATE(1296)] = 70631, - [SMALL_STATE(1297)] = 70684, - [SMALL_STATE(1298)] = 70731, + [SMALL_STATE(1285)] = 70144, + [SMALL_STATE(1286)] = 70187, + [SMALL_STATE(1287)] = 70226, + [SMALL_STATE(1288)] = 70265, + [SMALL_STATE(1289)] = 70304, + [SMALL_STATE(1290)] = 70347, + [SMALL_STATE(1291)] = 70400, + [SMALL_STATE(1292)] = 70453, + [SMALL_STATE(1293)] = 70506, + [SMALL_STATE(1294)] = 70545, + [SMALL_STATE(1295)] = 70588, + [SMALL_STATE(1296)] = 70629, + [SMALL_STATE(1297)] = 70674, + [SMALL_STATE(1298)] = 70727, [SMALL_STATE(1299)] = 70774, - [SMALL_STATE(1300)] = 70814, - [SMALL_STATE(1301)] = 70852, - [SMALL_STATE(1302)] = 70892, - [SMALL_STATE(1303)] = 70936, - [SMALL_STATE(1304)] = 70980, - [SMALL_STATE(1305)] = 71022, - [SMALL_STATE(1306)] = 71062, - [SMALL_STATE(1307)] = 71102, - [SMALL_STATE(1308)] = 71142, - [SMALL_STATE(1309)] = 71180, - [SMALL_STATE(1310)] = 71218, - [SMALL_STATE(1311)] = 71256, - [SMALL_STATE(1312)] = 71294, - [SMALL_STATE(1313)] = 71342, - [SMALL_STATE(1314)] = 71382, - [SMALL_STATE(1315)] = 71420, - [SMALL_STATE(1316)] = 71458, - [SMALL_STATE(1317)] = 71496, - [SMALL_STATE(1318)] = 71534, - [SMALL_STATE(1319)] = 71572, - [SMALL_STATE(1320)] = 71610, - [SMALL_STATE(1321)] = 71650, - [SMALL_STATE(1322)] = 71688, - [SMALL_STATE(1323)] = 71728, - [SMALL_STATE(1324)] = 71766, - [SMALL_STATE(1325)] = 71804, - [SMALL_STATE(1326)] = 71844, - [SMALL_STATE(1327)] = 71882, - [SMALL_STATE(1328)] = 71920, - [SMALL_STATE(1329)] = 71958, - [SMALL_STATE(1330)] = 71996, - [SMALL_STATE(1331)] = 72034, - [SMALL_STATE(1332)] = 72072, - [SMALL_STATE(1333)] = 72110, + [SMALL_STATE(1300)] = 70812, + [SMALL_STATE(1301)] = 70850, + [SMALL_STATE(1302)] = 70888, + [SMALL_STATE(1303)] = 70926, + [SMALL_STATE(1304)] = 70964, + [SMALL_STATE(1305)] = 71004, + [SMALL_STATE(1306)] = 71042, + [SMALL_STATE(1307)] = 71080, + [SMALL_STATE(1308)] = 71118, + [SMALL_STATE(1309)] = 71158, + [SMALL_STATE(1310)] = 71198, + [SMALL_STATE(1311)] = 71236, + [SMALL_STATE(1312)] = 71274, + [SMALL_STATE(1313)] = 71312, + [SMALL_STATE(1314)] = 71350, + [SMALL_STATE(1315)] = 71390, + [SMALL_STATE(1316)] = 71428, + [SMALL_STATE(1317)] = 71466, + [SMALL_STATE(1318)] = 71510, + [SMALL_STATE(1319)] = 71548, + [SMALL_STATE(1320)] = 71588, + [SMALL_STATE(1321)] = 71628, + [SMALL_STATE(1322)] = 71676, + [SMALL_STATE(1323)] = 71714, + [SMALL_STATE(1324)] = 71752, + [SMALL_STATE(1325)] = 71792, + [SMALL_STATE(1326)] = 71830, + [SMALL_STATE(1327)] = 71868, + [SMALL_STATE(1328)] = 71908, + [SMALL_STATE(1329)] = 71946, + [SMALL_STATE(1330)] = 71984, + [SMALL_STATE(1331)] = 72024, + [SMALL_STATE(1332)] = 72066, + [SMALL_STATE(1333)] = 72104, [SMALL_STATE(1334)] = 72148, - [SMALL_STATE(1335)] = 72185, - [SMALL_STATE(1336)] = 72222, - [SMALL_STATE(1337)] = 72263, - [SMALL_STATE(1338)] = 72300, - [SMALL_STATE(1339)] = 72337, - [SMALL_STATE(1340)] = 72374, - [SMALL_STATE(1341)] = 72417, - [SMALL_STATE(1342)] = 72454, - [SMALL_STATE(1343)] = 72491, - [SMALL_STATE(1344)] = 72546, - [SMALL_STATE(1345)] = 72583, - [SMALL_STATE(1346)] = 72620, - [SMALL_STATE(1347)] = 72655, - [SMALL_STATE(1348)] = 72692, - [SMALL_STATE(1349)] = 72733, - [SMALL_STATE(1350)] = 72780, - [SMALL_STATE(1351)] = 72837, - [SMALL_STATE(1352)] = 72874, - [SMALL_STATE(1353)] = 72911, - [SMALL_STATE(1354)] = 72962, - [SMALL_STATE(1355)] = 73001, - [SMALL_STATE(1356)] = 73050, - [SMALL_STATE(1357)] = 73087, - [SMALL_STATE(1358)] = 73132, - [SMALL_STATE(1359)] = 73169, - [SMALL_STATE(1360)] = 73206, - [SMALL_STATE(1361)] = 73243, - [SMALL_STATE(1362)] = 73280, - [SMALL_STATE(1363)] = 73317, - [SMALL_STATE(1364)] = 73354, - [SMALL_STATE(1365)] = 73391, - [SMALL_STATE(1366)] = 73428, - [SMALL_STATE(1367)] = 73469, - [SMALL_STATE(1368)] = 73516, - [SMALL_STATE(1369)] = 73553, - [SMALL_STATE(1370)] = 73594, - [SMALL_STATE(1371)] = 73631, - [SMALL_STATE(1372)] = 73678, - [SMALL_STATE(1373)] = 73715, - [SMALL_STATE(1374)] = 73752, - [SMALL_STATE(1375)] = 73791, - [SMALL_STATE(1376)] = 73828, - [SMALL_STATE(1377)] = 73871, - [SMALL_STATE(1378)] = 73908, - [SMALL_STATE(1379)] = 73947, - [SMALL_STATE(1380)] = 73982, - [SMALL_STATE(1381)] = 74029, - [SMALL_STATE(1382)] = 74066, - [SMALL_STATE(1383)] = 74103, - [SMALL_STATE(1384)] = 74140, - [SMALL_STATE(1385)] = 74179, - [SMALL_STATE(1386)] = 74216, - [SMALL_STATE(1387)] = 74253, - [SMALL_STATE(1388)] = 74292, + [SMALL_STATE(1335)] = 72195, + [SMALL_STATE(1336)] = 72232, + [SMALL_STATE(1337)] = 72267, + [SMALL_STATE(1338)] = 72306, + [SMALL_STATE(1339)] = 72345, + [SMALL_STATE(1340)] = 72384, + [SMALL_STATE(1341)] = 72423, + [SMALL_STATE(1342)] = 72460, + [SMALL_STATE(1343)] = 72497, + [SMALL_STATE(1344)] = 72534, + [SMALL_STATE(1345)] = 72571, + [SMALL_STATE(1346)] = 72608, + [SMALL_STATE(1347)] = 72645, + [SMALL_STATE(1348)] = 72682, + [SMALL_STATE(1349)] = 72719, + [SMALL_STATE(1350)] = 72756, + [SMALL_STATE(1351)] = 72793, + [SMALL_STATE(1352)] = 72830, + [SMALL_STATE(1353)] = 72867, + [SMALL_STATE(1354)] = 72904, + [SMALL_STATE(1355)] = 72941, + [SMALL_STATE(1356)] = 72978, + [SMALL_STATE(1357)] = 73015, + [SMALL_STATE(1358)] = 73052, + [SMALL_STATE(1359)] = 73089, + [SMALL_STATE(1360)] = 73126, + [SMALL_STATE(1361)] = 73163, + [SMALL_STATE(1362)] = 73200, + [SMALL_STATE(1363)] = 73237, + [SMALL_STATE(1364)] = 73284, + [SMALL_STATE(1365)] = 73325, + [SMALL_STATE(1366)] = 73360, + [SMALL_STATE(1367)] = 73403, + [SMALL_STATE(1368)] = 73440, + [SMALL_STATE(1369)] = 73477, + [SMALL_STATE(1370)] = 73518, + [SMALL_STATE(1371)] = 73555, + [SMALL_STATE(1372)] = 73594, + [SMALL_STATE(1373)] = 73641, + [SMALL_STATE(1374)] = 73684, + [SMALL_STATE(1375)] = 73723, + [SMALL_STATE(1376)] = 73764, + [SMALL_STATE(1377)] = 73809, + [SMALL_STATE(1378)] = 73858, + [SMALL_STATE(1379)] = 73909, + [SMALL_STATE(1380)] = 73950, + [SMALL_STATE(1381)] = 73997, + [SMALL_STATE(1382)] = 74052, + [SMALL_STATE(1383)] = 74089, + [SMALL_STATE(1384)] = 74126, + [SMALL_STATE(1385)] = 74163, + [SMALL_STATE(1386)] = 74200, + [SMALL_STATE(1387)] = 74237, + [SMALL_STATE(1388)] = 74294, [SMALL_STATE(1389)] = 74331, [SMALL_STATE(1390)] = 74370, [SMALL_STATE(1391)] = 74412, [SMALL_STATE(1392)] = 74446, - [SMALL_STATE(1393)] = 74482, + [SMALL_STATE(1393)] = 74480, [SMALL_STATE(1394)] = 74516, - [SMALL_STATE(1395)] = 74554, - [SMALL_STATE(1396)] = 74588, - [SMALL_STATE(1397)] = 74644, - [SMALL_STATE(1398)] = 74680, - [SMALL_STATE(1399)] = 74714, - [SMALL_STATE(1400)] = 74748, - [SMALL_STATE(1401)] = 74792, - [SMALL_STATE(1402)] = 74826, - [SMALL_STATE(1403)] = 74882, - [SMALL_STATE(1404)] = 74916, - [SMALL_STATE(1405)] = 74950, - [SMALL_STATE(1406)] = 74992, - [SMALL_STATE(1407)] = 75034, - [SMALL_STATE(1408)] = 75090, - [SMALL_STATE(1409)] = 75126, - [SMALL_STATE(1410)] = 75162, - [SMALL_STATE(1411)] = 75218, - [SMALL_STATE(1412)] = 75252, - [SMALL_STATE(1413)] = 75298, - [SMALL_STATE(1414)] = 75332, - [SMALL_STATE(1415)] = 75372, - [SMALL_STATE(1416)] = 75406, - [SMALL_STATE(1417)] = 75460, - [SMALL_STATE(1418)] = 75506, - [SMALL_STATE(1419)] = 75556, - [SMALL_STATE(1420)] = 75604, - [SMALL_STATE(1421)] = 75648, - [SMALL_STATE(1422)] = 75684, - [SMALL_STATE(1423)] = 75722, - [SMALL_STATE(1424)] = 75756, - [SMALL_STATE(1425)] = 75802, + [SMALL_STATE(1395)] = 74552, + [SMALL_STATE(1396)] = 74586, + [SMALL_STATE(1397)] = 74620, + [SMALL_STATE(1398)] = 74676, + [SMALL_STATE(1399)] = 74718, + [SMALL_STATE(1400)] = 74774, + [SMALL_STATE(1401)] = 74818, + [SMALL_STATE(1402)] = 74860, + [SMALL_STATE(1403)] = 74896, + [SMALL_STATE(1404)] = 74942, + [SMALL_STATE(1405)] = 74984, + [SMALL_STATE(1406)] = 75022, + [SMALL_STATE(1407)] = 75062, + [SMALL_STATE(1408)] = 75106, + [SMALL_STATE(1409)] = 75154, + [SMALL_STATE(1410)] = 75204, + [SMALL_STATE(1411)] = 75238, + [SMALL_STATE(1412)] = 75272, + [SMALL_STATE(1413)] = 75306, + [SMALL_STATE(1414)] = 75352, + [SMALL_STATE(1415)] = 75406, + [SMALL_STATE(1416)] = 75440, + [SMALL_STATE(1417)] = 75474, + [SMALL_STATE(1418)] = 75508, + [SMALL_STATE(1419)] = 75542, + [SMALL_STATE(1420)] = 75580, + [SMALL_STATE(1421)] = 75616, + [SMALL_STATE(1422)] = 75662, + [SMALL_STATE(1423)] = 75696, + [SMALL_STATE(1424)] = 75752, + [SMALL_STATE(1425)] = 75808, [SMALL_STATE(1426)] = 75844, - [SMALL_STATE(1427)] = 75897, - [SMALL_STATE(1428)] = 75934, - [SMALL_STATE(1429)] = 75971, - [SMALL_STATE(1430)] = 76010, - [SMALL_STATE(1431)] = 76051, - [SMALL_STATE(1432)] = 76092, + [SMALL_STATE(1427)] = 75885, + [SMALL_STATE(1428)] = 75922, + [SMALL_STATE(1429)] = 75959, + [SMALL_STATE(1430)] = 76004, + [SMALL_STATE(1431)] = 76045, + [SMALL_STATE(1432)] = 76084, [SMALL_STATE(1433)] = 76137, - [SMALL_STATE(1434)] = 76190, + [SMALL_STATE(1434)] = 76178, [SMALL_STATE(1435)] = 76231, - [SMALL_STATE(1436)] = 76284, + [SMALL_STATE(1436)] = 76266, [SMALL_STATE(1437)] = 76319, - [SMALL_STATE(1438)] = 76371, - [SMALL_STATE(1439)] = 76425, - [SMALL_STATE(1440)] = 76463, - [SMALL_STATE(1441)] = 76501, - [SMALL_STATE(1442)] = 76537, - [SMALL_STATE(1443)] = 76591, - [SMALL_STATE(1444)] = 76629, - [SMALL_STATE(1445)] = 76665, - [SMALL_STATE(1446)] = 76701, - [SMALL_STATE(1447)] = 76737, - [SMALL_STATE(1448)] = 76773, - [SMALL_STATE(1449)] = 76811, - [SMALL_STATE(1450)] = 76855, - [SMALL_STATE(1451)] = 76903, - [SMALL_STATE(1452)] = 76949, - [SMALL_STATE(1453)] = 76991, - [SMALL_STATE(1454)] = 77029, - [SMALL_STATE(1455)] = 77065, - [SMALL_STATE(1456)] = 77105, - [SMALL_STATE(1457)] = 77149, - [SMALL_STATE(1458)] = 77203, - [SMALL_STATE(1459)] = 77243, - [SMALL_STATE(1460)] = 77283, - [SMALL_STATE(1461)] = 77321, - [SMALL_STATE(1462)] = 77375, - [SMALL_STATE(1463)] = 77429, + [SMALL_STATE(1438)] = 76363, + [SMALL_STATE(1439)] = 76399, + [SMALL_STATE(1440)] = 76453, + [SMALL_STATE(1441)] = 76493, + [SMALL_STATE(1442)] = 76547, + [SMALL_STATE(1443)] = 76601, + [SMALL_STATE(1444)] = 76637, + [SMALL_STATE(1445)] = 76675, + [SMALL_STATE(1446)] = 76715, + [SMALL_STATE(1447)] = 76769, + [SMALL_STATE(1448)] = 76809, + [SMALL_STATE(1449)] = 76861, + [SMALL_STATE(1450)] = 76897, + [SMALL_STATE(1451)] = 76935, + [SMALL_STATE(1452)] = 76977, + [SMALL_STATE(1453)] = 77023, + [SMALL_STATE(1454)] = 77077, + [SMALL_STATE(1455)] = 77115, + [SMALL_STATE(1456)] = 77153, + [SMALL_STATE(1457)] = 77201, + [SMALL_STATE(1458)] = 77255, + [SMALL_STATE(1459)] = 77291, + [SMALL_STATE(1460)] = 77327, + [SMALL_STATE(1461)] = 77365, + [SMALL_STATE(1462)] = 77401, + [SMALL_STATE(1463)] = 77445, [SMALL_STATE(1464)] = 77483, [SMALL_STATE(1465)] = 77518, - [SMALL_STATE(1466)] = 77563, - [SMALL_STATE(1467)] = 77616, - [SMALL_STATE(1468)] = 77655, - [SMALL_STATE(1469)] = 77692, - [SMALL_STATE(1470)] = 77727, - [SMALL_STATE(1471)] = 77760, - [SMALL_STATE(1472)] = 77795, - [SMALL_STATE(1473)] = 77832, - [SMALL_STATE(1474)] = 77885, - [SMALL_STATE(1475)] = 77920, - [SMALL_STATE(1476)] = 77961, - [SMALL_STATE(1477)] = 77994, - [SMALL_STATE(1478)] = 78031, - [SMALL_STATE(1479)] = 78068, - [SMALL_STATE(1480)] = 78103, - [SMALL_STATE(1481)] = 78136, - [SMALL_STATE(1482)] = 78175, - [SMALL_STATE(1483)] = 78214, - [SMALL_STATE(1484)] = 78247, - [SMALL_STATE(1485)] = 78298, - [SMALL_STATE(1486)] = 78341, - [SMALL_STATE(1487)] = 78374, - [SMALL_STATE(1488)] = 78425, - [SMALL_STATE(1489)] = 78460, - [SMALL_STATE(1490)] = 78511, - [SMALL_STATE(1491)] = 78554, - [SMALL_STATE(1492)] = 78607, - [SMALL_STATE(1493)] = 78658, - [SMALL_STATE(1494)] = 78711, - [SMALL_STATE(1495)] = 78762, - [SMALL_STATE(1496)] = 78813, - [SMALL_STATE(1497)] = 78860, + [SMALL_STATE(1466)] = 77553, + [SMALL_STATE(1467)] = 77588, + [SMALL_STATE(1468)] = 77625, + [SMALL_STATE(1469)] = 77664, + [SMALL_STATE(1470)] = 77717, + [SMALL_STATE(1471)] = 77754, + [SMALL_STATE(1472)] = 77805, + [SMALL_STATE(1473)] = 77856, + [SMALL_STATE(1474)] = 77907, + [SMALL_STATE(1475)] = 77958, + [SMALL_STATE(1476)] = 78009, + [SMALL_STATE(1477)] = 78042, + [SMALL_STATE(1478)] = 78095, + [SMALL_STATE(1479)] = 78128, + [SMALL_STATE(1480)] = 78167, + [SMALL_STATE(1481)] = 78202, + [SMALL_STATE(1482)] = 78255, + [SMALL_STATE(1483)] = 78308, + [SMALL_STATE(1484)] = 78351, + [SMALL_STATE(1485)] = 78390, + [SMALL_STATE(1486)] = 78425, + [SMALL_STATE(1487)] = 78462, + [SMALL_STATE(1488)] = 78503, + [SMALL_STATE(1489)] = 78548, + [SMALL_STATE(1490)] = 78581, + [SMALL_STATE(1491)] = 78628, + [SMALL_STATE(1492)] = 78661, + [SMALL_STATE(1493)] = 78712, + [SMALL_STATE(1494)] = 78755, + [SMALL_STATE(1495)] = 78788, + [SMALL_STATE(1496)] = 78821, + [SMALL_STATE(1497)] = 78858, [SMALL_STATE(1498)] = 78893, - [SMALL_STATE(1499)] = 78939, + [SMALL_STATE(1499)] = 78941, [SMALL_STATE(1500)] = 78973, - [SMALL_STATE(1501)] = 79007, - [SMALL_STATE(1502)] = 79039, - [SMALL_STATE(1503)] = 79071, - [SMALL_STATE(1504)] = 79121, - [SMALL_STATE(1505)] = 79153, + [SMALL_STATE(1501)] = 79013, + [SMALL_STATE(1502)] = 79045, + [SMALL_STATE(1503)] = 79077, + [SMALL_STATE(1504)] = 79123, + [SMALL_STATE(1505)] = 79155, [SMALL_STATE(1506)] = 79189, - [SMALL_STATE(1507)] = 79223, - [SMALL_STATE(1508)] = 79263, - [SMALL_STATE(1509)] = 79295, - [SMALL_STATE(1510)] = 79329, - [SMALL_STATE(1511)] = 79361, - [SMALL_STATE(1512)] = 79393, - [SMALL_STATE(1513)] = 79443, - [SMALL_STATE(1514)] = 79477, - [SMALL_STATE(1515)] = 79509, - [SMALL_STATE(1516)] = 79541, - [SMALL_STATE(1517)] = 79573, - [SMALL_STATE(1518)] = 79605, - [SMALL_STATE(1519)] = 79637, - [SMALL_STATE(1520)] = 79669, - [SMALL_STATE(1521)] = 79701, - [SMALL_STATE(1522)] = 79757, - [SMALL_STATE(1523)] = 79793, - [SMALL_STATE(1524)] = 79825, - [SMALL_STATE(1525)] = 79857, - [SMALL_STATE(1526)] = 79889, - [SMALL_STATE(1527)] = 79929, - [SMALL_STATE(1528)] = 79961, - [SMALL_STATE(1529)] = 79995, - [SMALL_STATE(1530)] = 80027, - [SMALL_STATE(1531)] = 80065, - [SMALL_STATE(1532)] = 80109, - [SMALL_STATE(1533)] = 80157, - [SMALL_STATE(1534)] = 80207, - [SMALL_STATE(1535)] = 80241, - [SMALL_STATE(1536)] = 80273, - [SMALL_STATE(1537)] = 80305, - [SMALL_STATE(1538)] = 80337, - [SMALL_STATE(1539)] = 80387, - [SMALL_STATE(1540)] = 80419, - [SMALL_STATE(1541)] = 80451, - [SMALL_STATE(1542)] = 80505, + [SMALL_STATE(1507)] = 79221, + [SMALL_STATE(1508)] = 79277, + [SMALL_STATE(1509)] = 79323, + [SMALL_STATE(1510)] = 79373, + [SMALL_STATE(1511)] = 79405, + [SMALL_STATE(1512)] = 79459, + [SMALL_STATE(1513)] = 79491, + [SMALL_STATE(1514)] = 79523, + [SMALL_STATE(1515)] = 79555, + [SMALL_STATE(1516)] = 79589, + [SMALL_STATE(1517)] = 79621, + [SMALL_STATE(1518)] = 79655, + [SMALL_STATE(1519)] = 79687, + [SMALL_STATE(1520)] = 79721, + [SMALL_STATE(1521)] = 79753, + [SMALL_STATE(1522)] = 79785, + [SMALL_STATE(1523)] = 79829, + [SMALL_STATE(1524)] = 79865, + [SMALL_STATE(1525)] = 79899, + [SMALL_STATE(1526)] = 79939, + [SMALL_STATE(1527)] = 79971, + [SMALL_STATE(1528)] = 80003, + [SMALL_STATE(1529)] = 80035, + [SMALL_STATE(1530)] = 80085, + [SMALL_STATE(1531)] = 80135, + [SMALL_STATE(1532)] = 80167, + [SMALL_STATE(1533)] = 80201, + [SMALL_STATE(1534)] = 80239, + [SMALL_STATE(1535)] = 80275, + [SMALL_STATE(1536)] = 80325, + [SMALL_STATE(1537)] = 80357, + [SMALL_STATE(1538)] = 80389, + [SMALL_STATE(1539)] = 80421, + [SMALL_STATE(1540)] = 80453, + [SMALL_STATE(1541)] = 80485, + [SMALL_STATE(1542)] = 80517, [SMALL_STATE(1543)] = 80551, - [SMALL_STATE(1544)] = 80606, - [SMALL_STATE(1545)] = 80637, - [SMALL_STATE(1546)] = 80668, - [SMALL_STATE(1547)] = 80699, - [SMALL_STATE(1548)] = 80750, - [SMALL_STATE(1549)] = 80781, - [SMALL_STATE(1550)] = 80812, - [SMALL_STATE(1551)] = 80843, - [SMALL_STATE(1552)] = 80874, - [SMALL_STATE(1553)] = 80905, - [SMALL_STATE(1554)] = 80936, - [SMALL_STATE(1555)] = 80987, - [SMALL_STATE(1556)] = 81018, - [SMALL_STATE(1557)] = 81069, - [SMALL_STATE(1558)] = 81100, - [SMALL_STATE(1559)] = 81131, - [SMALL_STATE(1560)] = 81162, - [SMALL_STATE(1561)] = 81213, - [SMALL_STATE(1562)] = 81244, - [SMALL_STATE(1563)] = 81275, - [SMALL_STATE(1564)] = 81306, - [SMALL_STATE(1565)] = 81337, + [SMALL_STATE(1544)] = 80582, + [SMALL_STATE(1545)] = 80633, + [SMALL_STATE(1546)] = 80664, + [SMALL_STATE(1547)] = 80695, + [SMALL_STATE(1548)] = 80726, + [SMALL_STATE(1549)] = 80757, + [SMALL_STATE(1550)] = 80788, + [SMALL_STATE(1551)] = 80839, + [SMALL_STATE(1552)] = 80870, + [SMALL_STATE(1553)] = 80921, + [SMALL_STATE(1554)] = 80952, + [SMALL_STATE(1555)] = 80983, + [SMALL_STATE(1556)] = 81014, + [SMALL_STATE(1557)] = 81065, + [SMALL_STATE(1558)] = 81096, + [SMALL_STATE(1559)] = 81127, + [SMALL_STATE(1560)] = 81158, + [SMALL_STATE(1561)] = 81189, + [SMALL_STATE(1562)] = 81220, + [SMALL_STATE(1563)] = 81271, + [SMALL_STATE(1564)] = 81302, + [SMALL_STATE(1565)] = 81357, [SMALL_STATE(1566)] = 81388, [SMALL_STATE(1567)] = 81419, [SMALL_STATE(1568)] = 81467, @@ -101597,19 +101938,19 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(1576)] = 81879, [SMALL_STATE(1577)] = 81933, [SMALL_STATE(1578)] = 81987, - [SMALL_STATE(1579)] = 82041, - [SMALL_STATE(1580)] = 82095, - [SMALL_STATE(1581)] = 82149, - [SMALL_STATE(1582)] = 82203, - [SMALL_STATE(1583)] = 82257, - [SMALL_STATE(1584)] = 82311, - [SMALL_STATE(1585)] = 82365, - [SMALL_STATE(1586)] = 82419, - [SMALL_STATE(1587)] = 82473, - [SMALL_STATE(1588)] = 82527, - [SMALL_STATE(1589)] = 82581, - [SMALL_STATE(1590)] = 82635, - [SMALL_STATE(1591)] = 82689, + [SMALL_STATE(1579)] = 82039, + [SMALL_STATE(1580)] = 82093, + [SMALL_STATE(1581)] = 82147, + [SMALL_STATE(1582)] = 82201, + [SMALL_STATE(1583)] = 82255, + [SMALL_STATE(1584)] = 82309, + [SMALL_STATE(1585)] = 82363, + [SMALL_STATE(1586)] = 82417, + [SMALL_STATE(1587)] = 82471, + [SMALL_STATE(1588)] = 82525, + [SMALL_STATE(1589)] = 82579, + [SMALL_STATE(1590)] = 82633, + [SMALL_STATE(1591)] = 82687, [SMALL_STATE(1592)] = 82741, [SMALL_STATE(1593)] = 82795, [SMALL_STATE(1594)] = 82849, @@ -101714,2115 +102055,2128 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(1693)] = 87874, [SMALL_STATE(1694)] = 87922, [SMALL_STATE(1695)] = 87941, - [SMALL_STATE(1696)] = 87962, - [SMALL_STATE(1697)] = 87980, - [SMALL_STATE(1698)] = 87998, - [SMALL_STATE(1699)] = 88017, + [SMALL_STATE(1696)] = 87956, + [SMALL_STATE(1697)] = 87977, + [SMALL_STATE(1698)] = 87995, + [SMALL_STATE(1699)] = 88013, [SMALL_STATE(1700)] = 88032, - [SMALL_STATE(1701)] = 88045, - [SMALL_STATE(1702)] = 88058, + [SMALL_STATE(1701)] = 88051, + [SMALL_STATE(1702)] = 88064, [SMALL_STATE(1703)] = 88077, - [SMALL_STATE(1704)] = 88096, + [SMALL_STATE(1704)] = 88090, [SMALL_STATE(1705)] = 88109, - [SMALL_STATE(1706)] = 88122, - [SMALL_STATE(1707)] = 88141, - [SMALL_STATE(1708)] = 88160, - [SMALL_STATE(1709)] = 88179, - [SMALL_STATE(1710)] = 88197, - [SMALL_STATE(1711)] = 88215, - [SMALL_STATE(1712)] = 88233, - [SMALL_STATE(1713)] = 88251, - [SMALL_STATE(1714)] = 88269, - [SMALL_STATE(1715)] = 88287, - [SMALL_STATE(1716)] = 88305, - [SMALL_STATE(1717)] = 88323, - [SMALL_STATE(1718)] = 88335, - [SMALL_STATE(1719)] = 88353, - [SMALL_STATE(1720)] = 88371, - [SMALL_STATE(1721)] = 88389, - [SMALL_STATE(1722)] = 88407, - [SMALL_STATE(1723)] = 88425, - [SMALL_STATE(1724)] = 88437, - [SMALL_STATE(1725)] = 88455, - [SMALL_STATE(1726)] = 88473, - [SMALL_STATE(1727)] = 88491, - [SMALL_STATE(1728)] = 88509, - [SMALL_STATE(1729)] = 88527, - [SMALL_STATE(1730)] = 88545, - [SMALL_STATE(1731)] = 88563, - [SMALL_STATE(1732)] = 88581, - [SMALL_STATE(1733)] = 88599, - [SMALL_STATE(1734)] = 88617, - [SMALL_STATE(1735)] = 88635, - [SMALL_STATE(1736)] = 88647, - [SMALL_STATE(1737)] = 88659, - [SMALL_STATE(1738)] = 88677, - [SMALL_STATE(1739)] = 88694, + [SMALL_STATE(1706)] = 88128, + [SMALL_STATE(1707)] = 88147, + [SMALL_STATE(1708)] = 88162, + [SMALL_STATE(1709)] = 88175, + [SMALL_STATE(1710)] = 88194, + [SMALL_STATE(1711)] = 88212, + [SMALL_STATE(1712)] = 88224, + [SMALL_STATE(1713)] = 88242, + [SMALL_STATE(1714)] = 88260, + [SMALL_STATE(1715)] = 88278, + [SMALL_STATE(1716)] = 88296, + [SMALL_STATE(1717)] = 88314, + [SMALL_STATE(1718)] = 88332, + [SMALL_STATE(1719)] = 88350, + [SMALL_STATE(1720)] = 88368, + [SMALL_STATE(1721)] = 88380, + [SMALL_STATE(1722)] = 88398, + [SMALL_STATE(1723)] = 88410, + [SMALL_STATE(1724)] = 88428, + [SMALL_STATE(1725)] = 88446, + [SMALL_STATE(1726)] = 88464, + [SMALL_STATE(1727)] = 88482, + [SMALL_STATE(1728)] = 88494, + [SMALL_STATE(1729)] = 88512, + [SMALL_STATE(1730)] = 88530, + [SMALL_STATE(1731)] = 88548, + [SMALL_STATE(1732)] = 88566, + [SMALL_STATE(1733)] = 88584, + [SMALL_STATE(1734)] = 88602, + [SMALL_STATE(1735)] = 88620, + [SMALL_STATE(1736)] = 88638, + [SMALL_STATE(1737)] = 88656, + [SMALL_STATE(1738)] = 88674, + [SMALL_STATE(1739)] = 88692, [SMALL_STATE(1740)] = 88711, [SMALL_STATE(1741)] = 88730, [SMALL_STATE(1742)] = 88747, - [SMALL_STATE(1743)] = 88764, - [SMALL_STATE(1744)] = 88783, - [SMALL_STATE(1745)] = 88802, - [SMALL_STATE(1746)] = 88819, - [SMALL_STATE(1747)] = 88836, - [SMALL_STATE(1748)] = 88853, - [SMALL_STATE(1749)] = 88872, - [SMALL_STATE(1750)] = 88891, - [SMALL_STATE(1751)] = 88908, - [SMALL_STATE(1752)] = 88925, - [SMALL_STATE(1753)] = 88944, - [SMALL_STATE(1754)] = 88961, - [SMALL_STATE(1755)] = 88980, - [SMALL_STATE(1756)] = 88997, - [SMALL_STATE(1757)] = 89014, - [SMALL_STATE(1758)] = 89029, - [SMALL_STATE(1759)] = 89048, - [SMALL_STATE(1760)] = 89067, - [SMALL_STATE(1761)] = 89084, - [SMALL_STATE(1762)] = 89101, - [SMALL_STATE(1763)] = 89120, - [SMALL_STATE(1764)] = 89137, - [SMALL_STATE(1765)] = 89154, - [SMALL_STATE(1766)] = 89173, - [SMALL_STATE(1767)] = 89192, - [SMALL_STATE(1768)] = 89209, - [SMALL_STATE(1769)] = 89226, - [SMALL_STATE(1770)] = 89245, - [SMALL_STATE(1771)] = 89262, - [SMALL_STATE(1772)] = 89279, - [SMALL_STATE(1773)] = 89298, - [SMALL_STATE(1774)] = 89315, - [SMALL_STATE(1775)] = 89330, - [SMALL_STATE(1776)] = 89349, - [SMALL_STATE(1777)] = 89368, - [SMALL_STATE(1778)] = 89385, - [SMALL_STATE(1779)] = 89404, - [SMALL_STATE(1780)] = 89421, - [SMALL_STATE(1781)] = 89440, - [SMALL_STATE(1782)] = 89459, - [SMALL_STATE(1783)] = 89478, - [SMALL_STATE(1784)] = 89497, + [SMALL_STATE(1743)] = 88766, + [SMALL_STATE(1744)] = 88785, + [SMALL_STATE(1745)] = 88804, + [SMALL_STATE(1746)] = 88821, + [SMALL_STATE(1747)] = 88840, + [SMALL_STATE(1748)] = 88859, + [SMALL_STATE(1749)] = 88878, + [SMALL_STATE(1750)] = 88895, + [SMALL_STATE(1751)] = 88914, + [SMALL_STATE(1752)] = 88931, + [SMALL_STATE(1753)] = 88948, + [SMALL_STATE(1754)] = 88967, + [SMALL_STATE(1755)] = 88984, + [SMALL_STATE(1756)] = 89001, + [SMALL_STATE(1757)] = 89018, + [SMALL_STATE(1758)] = 89037, + [SMALL_STATE(1759)] = 89054, + [SMALL_STATE(1760)] = 89071, + [SMALL_STATE(1761)] = 89090, + [SMALL_STATE(1762)] = 89105, + [SMALL_STATE(1763)] = 89124, + [SMALL_STATE(1764)] = 89143, + [SMALL_STATE(1765)] = 89162, + [SMALL_STATE(1766)] = 89179, + [SMALL_STATE(1767)] = 89196, + [SMALL_STATE(1768)] = 89215, + [SMALL_STATE(1769)] = 89234, + [SMALL_STATE(1770)] = 89251, + [SMALL_STATE(1771)] = 89268, + [SMALL_STATE(1772)] = 89285, + [SMALL_STATE(1773)] = 89302, + [SMALL_STATE(1774)] = 89321, + [SMALL_STATE(1775)] = 89338, + [SMALL_STATE(1776)] = 89357, + [SMALL_STATE(1777)] = 89374, + [SMALL_STATE(1778)] = 89391, + [SMALL_STATE(1779)] = 89408, + [SMALL_STATE(1780)] = 89425, + [SMALL_STATE(1781)] = 89442, + [SMALL_STATE(1782)] = 89461, + [SMALL_STATE(1783)] = 89480, + [SMALL_STATE(1784)] = 89499, [SMALL_STATE(1785)] = 89516, [SMALL_STATE(1786)] = 89533, [SMALL_STATE(1787)] = 89552, - [SMALL_STATE(1788)] = 89571, - [SMALL_STATE(1789)] = 89581, - [SMALL_STATE(1790)] = 89591, - [SMALL_STATE(1791)] = 89605, - [SMALL_STATE(1792)] = 89619, - [SMALL_STATE(1793)] = 89633, - [SMALL_STATE(1794)] = 89647, - [SMALL_STATE(1795)] = 89661, - [SMALL_STATE(1796)] = 89675, - [SMALL_STATE(1797)] = 89689, - [SMALL_STATE(1798)] = 89703, - [SMALL_STATE(1799)] = 89717, - [SMALL_STATE(1800)] = 89731, - [SMALL_STATE(1801)] = 89745, - [SMALL_STATE(1802)] = 89759, - [SMALL_STATE(1803)] = 89773, - [SMALL_STATE(1804)] = 89783, - [SMALL_STATE(1805)] = 89797, - [SMALL_STATE(1806)] = 89807, - [SMALL_STATE(1807)] = 89819, - [SMALL_STATE(1808)] = 89833, - [SMALL_STATE(1809)] = 89847, - [SMALL_STATE(1810)] = 89858, - [SMALL_STATE(1811)] = 89869, - [SMALL_STATE(1812)] = 89880, - [SMALL_STATE(1813)] = 89891, - [SMALL_STATE(1814)] = 89902, - [SMALL_STATE(1815)] = 89913, - [SMALL_STATE(1816)] = 89922, - [SMALL_STATE(1817)] = 89933, - [SMALL_STATE(1818)] = 89944, - [SMALL_STATE(1819)] = 89955, - [SMALL_STATE(1820)] = 89966, - [SMALL_STATE(1821)] = 89977, - [SMALL_STATE(1822)] = 89988, - [SMALL_STATE(1823)] = 89999, - [SMALL_STATE(1824)] = 90008, - [SMALL_STATE(1825)] = 90019, - [SMALL_STATE(1826)] = 90030, - [SMALL_STATE(1827)] = 90041, - [SMALL_STATE(1828)] = 90052, - [SMALL_STATE(1829)] = 90063, - [SMALL_STATE(1830)] = 90072, - [SMALL_STATE(1831)] = 90083, - [SMALL_STATE(1832)] = 90094, - [SMALL_STATE(1833)] = 90105, - [SMALL_STATE(1834)] = 90116, - [SMALL_STATE(1835)] = 90125, - [SMALL_STATE(1836)] = 90136, - [SMALL_STATE(1837)] = 90149, - [SMALL_STATE(1838)] = 90160, - [SMALL_STATE(1839)] = 90171, - [SMALL_STATE(1840)] = 90184, - [SMALL_STATE(1841)] = 90195, - [SMALL_STATE(1842)] = 90202, - [SMALL_STATE(1843)] = 90213, - [SMALL_STATE(1844)] = 90224, - [SMALL_STATE(1845)] = 90235, - [SMALL_STATE(1846)] = 90245, - [SMALL_STATE(1847)] = 90255, - [SMALL_STATE(1848)] = 90265, - [SMALL_STATE(1849)] = 90275, - [SMALL_STATE(1850)] = 90285, - [SMALL_STATE(1851)] = 90295, - [SMALL_STATE(1852)] = 90305, - [SMALL_STATE(1853)] = 90315, - [SMALL_STATE(1854)] = 90325, - [SMALL_STATE(1855)] = 90333, - [SMALL_STATE(1856)] = 90343, - [SMALL_STATE(1857)] = 90353, - [SMALL_STATE(1858)] = 90363, - [SMALL_STATE(1859)] = 90373, - [SMALL_STATE(1860)] = 90380, - [SMALL_STATE(1861)] = 90387, - [SMALL_STATE(1862)] = 90394, - [SMALL_STATE(1863)] = 90401, - [SMALL_STATE(1864)] = 90408, - [SMALL_STATE(1865)] = 90415, - [SMALL_STATE(1866)] = 90422, - [SMALL_STATE(1867)] = 90429, - [SMALL_STATE(1868)] = 90436, - [SMALL_STATE(1869)] = 90443, - [SMALL_STATE(1870)] = 90450, - [SMALL_STATE(1871)] = 90457, - [SMALL_STATE(1872)] = 90464, - [SMALL_STATE(1873)] = 90471, - [SMALL_STATE(1874)] = 90478, - [SMALL_STATE(1875)] = 90485, - [SMALL_STATE(1876)] = 90492, - [SMALL_STATE(1877)] = 90499, - [SMALL_STATE(1878)] = 90506, - [SMALL_STATE(1879)] = 90513, - [SMALL_STATE(1880)] = 90520, - [SMALL_STATE(1881)] = 90527, - [SMALL_STATE(1882)] = 90534, - [SMALL_STATE(1883)] = 90541, - [SMALL_STATE(1884)] = 90548, - [SMALL_STATE(1885)] = 90555, - [SMALL_STATE(1886)] = 90562, - [SMALL_STATE(1887)] = 90569, - [SMALL_STATE(1888)] = 90576, - [SMALL_STATE(1889)] = 90583, - [SMALL_STATE(1890)] = 90590, - [SMALL_STATE(1891)] = 90597, - [SMALL_STATE(1892)] = 90604, - [SMALL_STATE(1893)] = 90611, - [SMALL_STATE(1894)] = 90618, - [SMALL_STATE(1895)] = 90625, - [SMALL_STATE(1896)] = 90632, - [SMALL_STATE(1897)] = 90639, - [SMALL_STATE(1898)] = 90646, - [SMALL_STATE(1899)] = 90653, - [SMALL_STATE(1900)] = 90660, - [SMALL_STATE(1901)] = 90667, - [SMALL_STATE(1902)] = 90672, - [SMALL_STATE(1903)] = 90679, - [SMALL_STATE(1904)] = 90686, - [SMALL_STATE(1905)] = 90693, - [SMALL_STATE(1906)] = 90697, - [SMALL_STATE(1907)] = 90701, - [SMALL_STATE(1908)] = 90705, - [SMALL_STATE(1909)] = 90709, - [SMALL_STATE(1910)] = 90713, - [SMALL_STATE(1911)] = 90717, - [SMALL_STATE(1912)] = 90721, - [SMALL_STATE(1913)] = 90725, - [SMALL_STATE(1914)] = 90729, - [SMALL_STATE(1915)] = 90733, - [SMALL_STATE(1916)] = 90737, - [SMALL_STATE(1917)] = 90741, - [SMALL_STATE(1918)] = 90745, - [SMALL_STATE(1919)] = 90749, - [SMALL_STATE(1920)] = 90753, - [SMALL_STATE(1921)] = 90757, - [SMALL_STATE(1922)] = 90761, - [SMALL_STATE(1923)] = 90765, - [SMALL_STATE(1924)] = 90769, - [SMALL_STATE(1925)] = 90773, - [SMALL_STATE(1926)] = 90777, - [SMALL_STATE(1927)] = 90781, - [SMALL_STATE(1928)] = 90785, - [SMALL_STATE(1929)] = 90789, - [SMALL_STATE(1930)] = 90793, - [SMALL_STATE(1931)] = 90797, - [SMALL_STATE(1932)] = 90801, - [SMALL_STATE(1933)] = 90805, - [SMALL_STATE(1934)] = 90809, - [SMALL_STATE(1935)] = 90813, - [SMALL_STATE(1936)] = 90817, - [SMALL_STATE(1937)] = 90821, - [SMALL_STATE(1938)] = 90825, - [SMALL_STATE(1939)] = 90829, - [SMALL_STATE(1940)] = 90833, - [SMALL_STATE(1941)] = 90837, - [SMALL_STATE(1942)] = 90841, - [SMALL_STATE(1943)] = 90845, - [SMALL_STATE(1944)] = 90849, - [SMALL_STATE(1945)] = 90853, - [SMALL_STATE(1946)] = 90857, - [SMALL_STATE(1947)] = 90861, - [SMALL_STATE(1948)] = 90865, - [SMALL_STATE(1949)] = 90869, - [SMALL_STATE(1950)] = 90873, - [SMALL_STATE(1951)] = 90877, - [SMALL_STATE(1952)] = 90881, - [SMALL_STATE(1953)] = 90885, - [SMALL_STATE(1954)] = 90889, - [SMALL_STATE(1955)] = 90893, - [SMALL_STATE(1956)] = 90897, - [SMALL_STATE(1957)] = 90901, - [SMALL_STATE(1958)] = 90905, - [SMALL_STATE(1959)] = 90909, - [SMALL_STATE(1960)] = 90913, - [SMALL_STATE(1961)] = 90917, - [SMALL_STATE(1962)] = 90921, - [SMALL_STATE(1963)] = 90925, - [SMALL_STATE(1964)] = 90929, - [SMALL_STATE(1965)] = 90933, - [SMALL_STATE(1966)] = 90937, - [SMALL_STATE(1967)] = 90941, - [SMALL_STATE(1968)] = 90945, - [SMALL_STATE(1969)] = 90949, - [SMALL_STATE(1970)] = 90953, - [SMALL_STATE(1971)] = 90957, - [SMALL_STATE(1972)] = 90961, - [SMALL_STATE(1973)] = 90965, - [SMALL_STATE(1974)] = 90969, - [SMALL_STATE(1975)] = 90973, - [SMALL_STATE(1976)] = 90977, - [SMALL_STATE(1977)] = 90981, - [SMALL_STATE(1978)] = 90985, - [SMALL_STATE(1979)] = 90989, - [SMALL_STATE(1980)] = 90993, - [SMALL_STATE(1981)] = 90997, - [SMALL_STATE(1982)] = 91001, - [SMALL_STATE(1983)] = 91005, - [SMALL_STATE(1984)] = 91009, - [SMALL_STATE(1985)] = 91013, - [SMALL_STATE(1986)] = 91017, - [SMALL_STATE(1987)] = 91021, - [SMALL_STATE(1988)] = 91025, - [SMALL_STATE(1989)] = 91029, - [SMALL_STATE(1990)] = 91033, - [SMALL_STATE(1991)] = 91037, - [SMALL_STATE(1992)] = 91041, - [SMALL_STATE(1993)] = 91045, - [SMALL_STATE(1994)] = 91049, - [SMALL_STATE(1995)] = 91053, - [SMALL_STATE(1996)] = 91057, - [SMALL_STATE(1997)] = 91061, - [SMALL_STATE(1998)] = 91065, - [SMALL_STATE(1999)] = 91069, - [SMALL_STATE(2000)] = 91073, - [SMALL_STATE(2001)] = 91077, - [SMALL_STATE(2002)] = 91081, - [SMALL_STATE(2003)] = 91085, - [SMALL_STATE(2004)] = 91089, - [SMALL_STATE(2005)] = 91093, - [SMALL_STATE(2006)] = 91097, - [SMALL_STATE(2007)] = 91101, - [SMALL_STATE(2008)] = 91105, - [SMALL_STATE(2009)] = 91109, - [SMALL_STATE(2010)] = 91113, - [SMALL_STATE(2011)] = 91117, - [SMALL_STATE(2012)] = 91121, - [SMALL_STATE(2013)] = 91125, - [SMALL_STATE(2014)] = 91129, - [SMALL_STATE(2015)] = 91133, - [SMALL_STATE(2016)] = 91137, - [SMALL_STATE(2017)] = 91141, - [SMALL_STATE(2018)] = 91145, - [SMALL_STATE(2019)] = 91149, - [SMALL_STATE(2020)] = 91153, - [SMALL_STATE(2021)] = 91157, - [SMALL_STATE(2022)] = 91161, - [SMALL_STATE(2023)] = 91165, - [SMALL_STATE(2024)] = 91169, - [SMALL_STATE(2025)] = 91173, - [SMALL_STATE(2026)] = 91177, - [SMALL_STATE(2027)] = 91181, - [SMALL_STATE(2028)] = 91185, - [SMALL_STATE(2029)] = 91189, - [SMALL_STATE(2030)] = 91193, - [SMALL_STATE(2031)] = 91197, - [SMALL_STATE(2032)] = 91201, - [SMALL_STATE(2033)] = 91205, - [SMALL_STATE(2034)] = 91209, - [SMALL_STATE(2035)] = 91213, - [SMALL_STATE(2036)] = 91217, - [SMALL_STATE(2037)] = 91221, - [SMALL_STATE(2038)] = 91225, - [SMALL_STATE(2039)] = 91229, - [SMALL_STATE(2040)] = 91233, - [SMALL_STATE(2041)] = 91237, - [SMALL_STATE(2042)] = 91241, - [SMALL_STATE(2043)] = 91245, - [SMALL_STATE(2044)] = 91249, - [SMALL_STATE(2045)] = 91253, - [SMALL_STATE(2046)] = 91257, - [SMALL_STATE(2047)] = 91261, - [SMALL_STATE(2048)] = 91265, - [SMALL_STATE(2049)] = 91269, - [SMALL_STATE(2050)] = 91273, - [SMALL_STATE(2051)] = 91277, - [SMALL_STATE(2052)] = 91281, - [SMALL_STATE(2053)] = 91285, - [SMALL_STATE(2054)] = 91289, - [SMALL_STATE(2055)] = 91293, - [SMALL_STATE(2056)] = 91297, - [SMALL_STATE(2057)] = 91301, - [SMALL_STATE(2058)] = 91305, - [SMALL_STATE(2059)] = 91309, - [SMALL_STATE(2060)] = 91313, - [SMALL_STATE(2061)] = 91317, - [SMALL_STATE(2062)] = 91321, - [SMALL_STATE(2063)] = 91325, - [SMALL_STATE(2064)] = 91329, - [SMALL_STATE(2065)] = 91333, - [SMALL_STATE(2066)] = 91337, - [SMALL_STATE(2067)] = 91341, - [SMALL_STATE(2068)] = 91345, - [SMALL_STATE(2069)] = 91349, - [SMALL_STATE(2070)] = 91353, - [SMALL_STATE(2071)] = 91357, - [SMALL_STATE(2072)] = 91361, - [SMALL_STATE(2073)] = 91365, - [SMALL_STATE(2074)] = 91369, - [SMALL_STATE(2075)] = 91373, - [SMALL_STATE(2076)] = 91377, - [SMALL_STATE(2077)] = 91381, - [SMALL_STATE(2078)] = 91385, - [SMALL_STATE(2079)] = 91389, - [SMALL_STATE(2080)] = 91393, - [SMALL_STATE(2081)] = 91397, - [SMALL_STATE(2082)] = 91401, - [SMALL_STATE(2083)] = 91405, - [SMALL_STATE(2084)] = 91409, - [SMALL_STATE(2085)] = 91413, - [SMALL_STATE(2086)] = 91417, - [SMALL_STATE(2087)] = 91421, - [SMALL_STATE(2088)] = 91425, - [SMALL_STATE(2089)] = 91429, - [SMALL_STATE(2090)] = 91433, - [SMALL_STATE(2091)] = 91437, - [SMALL_STATE(2092)] = 91441, - [SMALL_STATE(2093)] = 91445, - [SMALL_STATE(2094)] = 91449, - [SMALL_STATE(2095)] = 91453, - [SMALL_STATE(2096)] = 91457, - [SMALL_STATE(2097)] = 91461, - [SMALL_STATE(2098)] = 91465, - [SMALL_STATE(2099)] = 91469, - [SMALL_STATE(2100)] = 91473, - [SMALL_STATE(2101)] = 91477, + [SMALL_STATE(1788)] = 89567, + [SMALL_STATE(1789)] = 89584, + [SMALL_STATE(1790)] = 89603, + [SMALL_STATE(1791)] = 89620, + [SMALL_STATE(1792)] = 89634, + [SMALL_STATE(1793)] = 89648, + [SMALL_STATE(1794)] = 89658, + [SMALL_STATE(1795)] = 89668, + [SMALL_STATE(1796)] = 89682, + [SMALL_STATE(1797)] = 89696, + [SMALL_STATE(1798)] = 89710, + [SMALL_STATE(1799)] = 89720, + [SMALL_STATE(1800)] = 89730, + [SMALL_STATE(1801)] = 89742, + [SMALL_STATE(1802)] = 89756, + [SMALL_STATE(1803)] = 89770, + [SMALL_STATE(1804)] = 89784, + [SMALL_STATE(1805)] = 89798, + [SMALL_STATE(1806)] = 89812, + [SMALL_STATE(1807)] = 89826, + [SMALL_STATE(1808)] = 89840, + [SMALL_STATE(1809)] = 89854, + [SMALL_STATE(1810)] = 89868, + [SMALL_STATE(1811)] = 89880, + [SMALL_STATE(1812)] = 89894, + [SMALL_STATE(1813)] = 89908, + [SMALL_STATE(1814)] = 89919, + [SMALL_STATE(1815)] = 89930, + [SMALL_STATE(1816)] = 89941, + [SMALL_STATE(1817)] = 89952, + [SMALL_STATE(1818)] = 89961, + [SMALL_STATE(1819)] = 89972, + [SMALL_STATE(1820)] = 89983, + [SMALL_STATE(1821)] = 89994, + [SMALL_STATE(1822)] = 90005, + [SMALL_STATE(1823)] = 90016, + [SMALL_STATE(1824)] = 90027, + [SMALL_STATE(1825)] = 90038, + [SMALL_STATE(1826)] = 90049, + [SMALL_STATE(1827)] = 90060, + [SMALL_STATE(1828)] = 90071, + [SMALL_STATE(1829)] = 90082, + [SMALL_STATE(1830)] = 90093, + [SMALL_STATE(1831)] = 90102, + [SMALL_STATE(1832)] = 90113, + [SMALL_STATE(1833)] = 90124, + [SMALL_STATE(1834)] = 90135, + [SMALL_STATE(1835)] = 90146, + [SMALL_STATE(1836)] = 90157, + [SMALL_STATE(1837)] = 90164, + [SMALL_STATE(1838)] = 90173, + [SMALL_STATE(1839)] = 90184, + [SMALL_STATE(1840)] = 90195, + [SMALL_STATE(1841)] = 90206, + [SMALL_STATE(1842)] = 90217, + [SMALL_STATE(1843)] = 90228, + [SMALL_STATE(1844)] = 90239, + [SMALL_STATE(1845)] = 90248, + [SMALL_STATE(1846)] = 90259, + [SMALL_STATE(1847)] = 90270, + [SMALL_STATE(1848)] = 90279, + [SMALL_STATE(1849)] = 90289, + [SMALL_STATE(1850)] = 90299, + [SMALL_STATE(1851)] = 90309, + [SMALL_STATE(1852)] = 90319, + [SMALL_STATE(1853)] = 90329, + [SMALL_STATE(1854)] = 90339, + [SMALL_STATE(1855)] = 90349, + [SMALL_STATE(1856)] = 90359, + [SMALL_STATE(1857)] = 90369, + [SMALL_STATE(1858)] = 90379, + [SMALL_STATE(1859)] = 90389, + [SMALL_STATE(1860)] = 90399, + [SMALL_STATE(1861)] = 90409, + [SMALL_STATE(1862)] = 90416, + [SMALL_STATE(1863)] = 90423, + [SMALL_STATE(1864)] = 90430, + [SMALL_STATE(1865)] = 90437, + [SMALL_STATE(1866)] = 90444, + [SMALL_STATE(1867)] = 90451, + [SMALL_STATE(1868)] = 90458, + [SMALL_STATE(1869)] = 90465, + [SMALL_STATE(1870)] = 90472, + [SMALL_STATE(1871)] = 90479, + [SMALL_STATE(1872)] = 90486, + [SMALL_STATE(1873)] = 90493, + [SMALL_STATE(1874)] = 90500, + [SMALL_STATE(1875)] = 90507, + [SMALL_STATE(1876)] = 90514, + [SMALL_STATE(1877)] = 90521, + [SMALL_STATE(1878)] = 90528, + [SMALL_STATE(1879)] = 90535, + [SMALL_STATE(1880)] = 90542, + [SMALL_STATE(1881)] = 90549, + [SMALL_STATE(1882)] = 90556, + [SMALL_STATE(1883)] = 90563, + [SMALL_STATE(1884)] = 90570, + [SMALL_STATE(1885)] = 90577, + [SMALL_STATE(1886)] = 90584, + [SMALL_STATE(1887)] = 90591, + [SMALL_STATE(1888)] = 90596, + [SMALL_STATE(1889)] = 90603, + [SMALL_STATE(1890)] = 90610, + [SMALL_STATE(1891)] = 90617, + [SMALL_STATE(1892)] = 90624, + [SMALL_STATE(1893)] = 90631, + [SMALL_STATE(1894)] = 90638, + [SMALL_STATE(1895)] = 90645, + [SMALL_STATE(1896)] = 90652, + [SMALL_STATE(1897)] = 90659, + [SMALL_STATE(1898)] = 90666, + [SMALL_STATE(1899)] = 90673, + [SMALL_STATE(1900)] = 90680, + [SMALL_STATE(1901)] = 90687, + [SMALL_STATE(1902)] = 90694, + [SMALL_STATE(1903)] = 90701, + [SMALL_STATE(1904)] = 90708, + [SMALL_STATE(1905)] = 90715, + [SMALL_STATE(1906)] = 90722, + [SMALL_STATE(1907)] = 90729, + [SMALL_STATE(1908)] = 90733, + [SMALL_STATE(1909)] = 90737, + [SMALL_STATE(1910)] = 90741, + [SMALL_STATE(1911)] = 90745, + [SMALL_STATE(1912)] = 90749, + [SMALL_STATE(1913)] = 90753, + [SMALL_STATE(1914)] = 90757, + [SMALL_STATE(1915)] = 90761, + [SMALL_STATE(1916)] = 90765, + [SMALL_STATE(1917)] = 90769, + [SMALL_STATE(1918)] = 90773, + [SMALL_STATE(1919)] = 90777, + [SMALL_STATE(1920)] = 90781, + [SMALL_STATE(1921)] = 90785, + [SMALL_STATE(1922)] = 90789, + [SMALL_STATE(1923)] = 90793, + [SMALL_STATE(1924)] = 90797, + [SMALL_STATE(1925)] = 90801, + [SMALL_STATE(1926)] = 90805, + [SMALL_STATE(1927)] = 90809, + [SMALL_STATE(1928)] = 90813, + [SMALL_STATE(1929)] = 90817, + [SMALL_STATE(1930)] = 90821, + [SMALL_STATE(1931)] = 90825, + [SMALL_STATE(1932)] = 90829, + [SMALL_STATE(1933)] = 90833, + [SMALL_STATE(1934)] = 90837, + [SMALL_STATE(1935)] = 90841, + [SMALL_STATE(1936)] = 90845, + [SMALL_STATE(1937)] = 90849, + [SMALL_STATE(1938)] = 90853, + [SMALL_STATE(1939)] = 90857, + [SMALL_STATE(1940)] = 90861, + [SMALL_STATE(1941)] = 90865, + [SMALL_STATE(1942)] = 90869, + [SMALL_STATE(1943)] = 90873, + [SMALL_STATE(1944)] = 90877, + [SMALL_STATE(1945)] = 90881, + [SMALL_STATE(1946)] = 90885, + [SMALL_STATE(1947)] = 90889, + [SMALL_STATE(1948)] = 90893, + [SMALL_STATE(1949)] = 90897, + [SMALL_STATE(1950)] = 90901, + [SMALL_STATE(1951)] = 90905, + [SMALL_STATE(1952)] = 90909, + [SMALL_STATE(1953)] = 90913, + [SMALL_STATE(1954)] = 90917, + [SMALL_STATE(1955)] = 90921, + [SMALL_STATE(1956)] = 90925, + [SMALL_STATE(1957)] = 90929, + [SMALL_STATE(1958)] = 90933, + [SMALL_STATE(1959)] = 90937, + [SMALL_STATE(1960)] = 90941, + [SMALL_STATE(1961)] = 90945, + [SMALL_STATE(1962)] = 90949, + [SMALL_STATE(1963)] = 90953, + [SMALL_STATE(1964)] = 90957, + [SMALL_STATE(1965)] = 90961, + [SMALL_STATE(1966)] = 90965, + [SMALL_STATE(1967)] = 90969, + [SMALL_STATE(1968)] = 90973, + [SMALL_STATE(1969)] = 90977, + [SMALL_STATE(1970)] = 90981, + [SMALL_STATE(1971)] = 90985, + [SMALL_STATE(1972)] = 90989, + [SMALL_STATE(1973)] = 90993, + [SMALL_STATE(1974)] = 90997, + [SMALL_STATE(1975)] = 91001, + [SMALL_STATE(1976)] = 91005, + [SMALL_STATE(1977)] = 91009, + [SMALL_STATE(1978)] = 91013, + [SMALL_STATE(1979)] = 91017, + [SMALL_STATE(1980)] = 91021, + [SMALL_STATE(1981)] = 91025, + [SMALL_STATE(1982)] = 91029, + [SMALL_STATE(1983)] = 91033, + [SMALL_STATE(1984)] = 91037, + [SMALL_STATE(1985)] = 91041, + [SMALL_STATE(1986)] = 91045, + [SMALL_STATE(1987)] = 91049, + [SMALL_STATE(1988)] = 91053, + [SMALL_STATE(1989)] = 91057, + [SMALL_STATE(1990)] = 91061, + [SMALL_STATE(1991)] = 91065, + [SMALL_STATE(1992)] = 91069, + [SMALL_STATE(1993)] = 91073, + [SMALL_STATE(1994)] = 91077, + [SMALL_STATE(1995)] = 91081, + [SMALL_STATE(1996)] = 91085, + [SMALL_STATE(1997)] = 91089, + [SMALL_STATE(1998)] = 91093, + [SMALL_STATE(1999)] = 91097, + [SMALL_STATE(2000)] = 91101, + [SMALL_STATE(2001)] = 91105, + [SMALL_STATE(2002)] = 91109, + [SMALL_STATE(2003)] = 91113, + [SMALL_STATE(2004)] = 91117, + [SMALL_STATE(2005)] = 91121, + [SMALL_STATE(2006)] = 91125, + [SMALL_STATE(2007)] = 91129, + [SMALL_STATE(2008)] = 91133, + [SMALL_STATE(2009)] = 91137, + [SMALL_STATE(2010)] = 91141, + [SMALL_STATE(2011)] = 91145, + [SMALL_STATE(2012)] = 91149, + [SMALL_STATE(2013)] = 91153, + [SMALL_STATE(2014)] = 91157, + [SMALL_STATE(2015)] = 91161, + [SMALL_STATE(2016)] = 91165, + [SMALL_STATE(2017)] = 91169, + [SMALL_STATE(2018)] = 91173, + [SMALL_STATE(2019)] = 91177, + [SMALL_STATE(2020)] = 91181, + [SMALL_STATE(2021)] = 91185, + [SMALL_STATE(2022)] = 91189, + [SMALL_STATE(2023)] = 91193, + [SMALL_STATE(2024)] = 91197, + [SMALL_STATE(2025)] = 91201, + [SMALL_STATE(2026)] = 91205, + [SMALL_STATE(2027)] = 91209, + [SMALL_STATE(2028)] = 91213, + [SMALL_STATE(2029)] = 91217, + [SMALL_STATE(2030)] = 91221, + [SMALL_STATE(2031)] = 91225, + [SMALL_STATE(2032)] = 91229, + [SMALL_STATE(2033)] = 91233, + [SMALL_STATE(2034)] = 91237, + [SMALL_STATE(2035)] = 91241, + [SMALL_STATE(2036)] = 91245, + [SMALL_STATE(2037)] = 91249, + [SMALL_STATE(2038)] = 91253, + [SMALL_STATE(2039)] = 91257, + [SMALL_STATE(2040)] = 91261, + [SMALL_STATE(2041)] = 91265, + [SMALL_STATE(2042)] = 91269, + [SMALL_STATE(2043)] = 91273, + [SMALL_STATE(2044)] = 91277, + [SMALL_STATE(2045)] = 91281, + [SMALL_STATE(2046)] = 91285, + [SMALL_STATE(2047)] = 91289, + [SMALL_STATE(2048)] = 91293, + [SMALL_STATE(2049)] = 91297, + [SMALL_STATE(2050)] = 91301, + [SMALL_STATE(2051)] = 91305, + [SMALL_STATE(2052)] = 91309, + [SMALL_STATE(2053)] = 91313, + [SMALL_STATE(2054)] = 91317, + [SMALL_STATE(2055)] = 91321, + [SMALL_STATE(2056)] = 91325, + [SMALL_STATE(2057)] = 91329, + [SMALL_STATE(2058)] = 91333, + [SMALL_STATE(2059)] = 91337, + [SMALL_STATE(2060)] = 91341, + [SMALL_STATE(2061)] = 91345, + [SMALL_STATE(2062)] = 91349, + [SMALL_STATE(2063)] = 91353, + [SMALL_STATE(2064)] = 91357, + [SMALL_STATE(2065)] = 91361, + [SMALL_STATE(2066)] = 91365, + [SMALL_STATE(2067)] = 91369, + [SMALL_STATE(2068)] = 91373, + [SMALL_STATE(2069)] = 91377, + [SMALL_STATE(2070)] = 91381, + [SMALL_STATE(2071)] = 91385, + [SMALL_STATE(2072)] = 91389, + [SMALL_STATE(2073)] = 91393, + [SMALL_STATE(2074)] = 91397, + [SMALL_STATE(2075)] = 91401, + [SMALL_STATE(2076)] = 91405, + [SMALL_STATE(2077)] = 91409, + [SMALL_STATE(2078)] = 91413, + [SMALL_STATE(2079)] = 91417, + [SMALL_STATE(2080)] = 91421, + [SMALL_STATE(2081)] = 91425, + [SMALL_STATE(2082)] = 91429, + [SMALL_STATE(2083)] = 91433, + [SMALL_STATE(2084)] = 91437, + [SMALL_STATE(2085)] = 91441, + [SMALL_STATE(2086)] = 91445, + [SMALL_STATE(2087)] = 91449, + [SMALL_STATE(2088)] = 91453, + [SMALL_STATE(2089)] = 91457, + [SMALL_STATE(2090)] = 91461, + [SMALL_STATE(2091)] = 91465, + [SMALL_STATE(2092)] = 91469, + [SMALL_STATE(2093)] = 91473, + [SMALL_STATE(2094)] = 91477, + [SMALL_STATE(2095)] = 91481, + [SMALL_STATE(2096)] = 91485, + [SMALL_STATE(2097)] = 91489, + [SMALL_STATE(2098)] = 91493, + [SMALL_STATE(2099)] = 91497, + [SMALL_STATE(2100)] = 91501, + [SMALL_STATE(2101)] = 91505, + [SMALL_STATE(2102)] = 91509, + [SMALL_STATE(2103)] = 91513, + [SMALL_STATE(2104)] = 91517, + [SMALL_STATE(2105)] = 91521, + [SMALL_STATE(2106)] = 91525, }; static const TSParseActionEntry ts_parse_actions[] = { [0] = {.entry = {.count = 0, .reusable = false}}, [1] = {.entry = {.count = 1, .reusable = false}}, RECOVER(), [3] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 0), - [5] = {.entry = {.count = 1, .reusable = false}}, SHIFT(395), - [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1558), - [9] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1881), - [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), + [5] = {.entry = {.count = 1, .reusable = false}}, SHIFT(390), + [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1555), + [9] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1897), + [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), - [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(510), - [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1724), + [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(512), + [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1733), [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(791), [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), - [23] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1756), - [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), - [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1758), - [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(549), - [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), - [33] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1837), - [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1845), - [37] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2089), - [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(584), + [23] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1765), + [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), + [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1767), + [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(529), + [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), + [33] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1842), + [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1860), + [37] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2094), + [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(583), [41] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement, 1), - [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2095), - [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(704), - [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2048), + [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2100), + [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(697), + [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2053), [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(139), - [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2094), - [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1129), - [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1821), - [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(546), - [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(547), - [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2072), - [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1279), - [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(472), - [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(633), - [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1721), - [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(885), - [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1738), - [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1066), - [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1780), - [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1308), - [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1824), + [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2099), + [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1172), + [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1825), + [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(547), + [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(545), + [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2077), + [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1268), + [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(465), + [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(636), + [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1719), + [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(855), + [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1774), + [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(803), + [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1750), + [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1306), + [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1818), [83] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement, 1), - [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(594), - [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2093), - [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(710), - [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2087), - [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(140), - [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2100), - [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1261), - [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1809), - [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(573), - [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(571), - [105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2044), - [107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1297), - [109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(481), - [111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(614), - [113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1712), - [115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(878), - [117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1741), - [119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1094), - [121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1787), - [123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1372), - [125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1830), - [127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(182), - [129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2050), - [131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), - [133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2049), - [135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2046), - [137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1288), - [139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(301), - [141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(308), - [143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), - [145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1139), - [147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(340), - [149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(165), - [151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(626), - [153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1719), - [155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(987), - [157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), - [159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1760), - [161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), - [163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1759), - [165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(448), - [167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), - [169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1819), - [171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2000), - [173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1518), - [175] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(182), - [178] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(2050), - [181] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(687), - [184] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(2049), - [187] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(140), - [190] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(2046), - [193] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1288), - [196] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1809), - [199] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(301), - [202] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(308), - [205] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(2044), - [208] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(9), - [211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), - [213] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(340), - [216] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(165), - [219] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(626), - [222] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1719), - [225] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(987), - [228] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(987), - [231] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1760), - [234] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1082), - [237] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1759), - [240] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(448), - [243] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(448), - [246] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1819), - [249] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(2000), - [252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1138), - [254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1514), - [256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408), - [258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1211), - [260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1216), - [262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1392), - [264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1226), - [266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1227), - [268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), - [270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1236), - [272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), - [274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1237), - [276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1712), - [278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), - [280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1741), - [282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), - [284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1787), - [286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1372), - [288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1830), - [290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1206), - [292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1205), - [294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1195), - [296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1242), - [298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(170), - [300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1157), - [302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2101), - [304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), - [306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1956), - [308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2071), - [310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1159), - [312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(288), - [314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(287), - [316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), - [318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(304), - [320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(158), - [322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(625), - [324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1730), - [326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1059), - [328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1059), - [330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1761), - [332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1084), - [334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1744), - [336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(386), - [338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), - [340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1838), - [342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), - [344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1189), - [346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1239), - [348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1240), - [350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188), - [352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1187), - [354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1186), - [356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1185), - [358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), - [360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1181), - [362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(682), - [364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2069), - [366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), - [368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2070), - [370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2097), - [372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(601), - [374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(599), - [376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1400), - [378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(505), - [380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(634), - [382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1720), - [384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1032), - [386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), - [388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1785), - [390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), - [392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1782), - [394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1228), - [396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1196), - [398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1174), - [400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1173), - [402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1172), - [404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1170), - [406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1167), - [408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1166), - [410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1164), - [412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1162), - [414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1158), - [416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1155), - [418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1154), - [420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1153), - [422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1152), - [424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1151), - [426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1224), - [428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1225), - [430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), - [432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1149), - [434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1148), - [436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1147), - [438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1260), - [440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1264), - [442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), - [444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1145), - [446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1143), - [448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1142), - [450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(638), - [452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1141), - [454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2086), - [456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), - [458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2023), - [460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2088), - [462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1140), - [464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(589), - [466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(591), - [468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1371), - [470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(504), - [472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(631), - [474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1737), - [476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1068), - [478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), - [480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1742), - [482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), - [484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1762), - [486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1308), - [488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1824), - [490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1735), - [492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_case, 4, .production_id = 30), - [494] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_case, 4, .production_id = 30), - [496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1254), - [498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1252), - [500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1736), - [502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_default, 3), - [504] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_default, 3), - [506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1723), - [508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_case, 3, .production_id = 30), - [510] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_case, 3, .production_id = 30), - [512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1265), - [514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1258), - [516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1219), - [518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1220), - [520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1213), - [522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1218), - [524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1247), - [526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1212), - [528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1250), - [530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1259), - [532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1215), - [534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1214), - [536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1209), - [538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1208), - [540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1245), - [542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1248), - [544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1200), - [546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1199), - [548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1198), - [550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1197), - [552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), - [554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1721), - [556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), - [558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1738), - [560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), - [562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1780), - [564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1717), - [566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_default, 2), - [568] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_default, 2), - [570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1243), - [572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1244), - [574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1161), - [576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1169), - [578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1177), - [580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1178), - [582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1190), - [584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1193), - [586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1815), - [588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1829), - [590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1834), - [592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1823), - [594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(674), - [596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1737), - [598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1742), - [600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(888), - [602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1762), - [604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1805), - [606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1789), - [608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1278), - [610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1280), - [612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1705), - [614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1700), - [616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1704), - [618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1701), - [620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(693), - [622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1720), - [624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1785), - [626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(830), - [628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1782), - [630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1274), - [632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1275), - [634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1803), - [636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1788), - [638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1179), - [640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1221), - [642] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_concat, 3, .production_id = 8), - [644] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__exp, 1), - [646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), - [648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1559), - [650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(669), - [652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace, 1, .production_id = 1), - [654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_concat, 3, .production_id = 8), - [656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(210), - [658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__exp, 1), + [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(217), + [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2055), + [89] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), + [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2054), + [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(137), + [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2051), + [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1287), + [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1815), + [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(311), + [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(310), + [105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2049), + [107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), + [109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1537), + [111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(336), + [113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(169), + [115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(630), + [117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1731), + [119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(938), + [121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), + [123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1749), + [125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), + [127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1744), + [129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(441), + [131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), + [133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1841), + [135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1971), + [137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(594), + [139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2098), + [141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(707), + [143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2092), + [145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2105), + [147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1234), + [149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(568), + [151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(572), + [153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1298), + [155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(498), + [157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(615), + [159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1724), + [161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(892), + [163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1758), + [165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(822), + [167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1760), + [169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1383), + [171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1843), + [173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1541), + [175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1245), + [177] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(217), + [180] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(2055), + [183] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(645), + [186] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(2054), + [189] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(137), + [192] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(2051), + [195] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1287), + [198] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1815), + [201] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(311), + [204] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(310), + [207] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(2049), + [210] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(12), + [213] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), + [215] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(336), + [218] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(169), + [221] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(630), + [224] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1731), + [227] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(938), + [230] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(938), + [233] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1749), + [236] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1102), + [239] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1744), + [242] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(441), + [245] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(441), + [248] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1841), + [251] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1971), + [254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1254), + [256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), + [258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1126), + [260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1425), + [262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1402), + [264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1257), + [266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1195), + [268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), + [270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(695), + [272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1210), + [274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2074), + [276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), + [278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2075), + [280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2102), + [282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1209), + [284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(604), + [286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(598), + [288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1400), + [290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(505), + [292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(622), + [294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1738), + [296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(910), + [298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), + [300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1777), + [302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), + [304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1743), + [306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1383), + [308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1843), + [310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1135), + [312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), + [314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1134), + [316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), + [318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1719), + [320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), + [322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1774), + [324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), + [326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1750), + [328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1306), + [330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1818), + [332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1138), + [334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1136), + [336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(620), + [338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188), + [340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2091), + [342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), + [344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2028), + [346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2093), + [348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1189), + [350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(596), + [352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(589), + [354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1334), + [356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(504), + [358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(626), + [360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1736), + [362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(980), + [364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), + [366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1771), + [368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1073), + [370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1764), + [372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1143), + [374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1140), + [376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1145), + [378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1144), + [380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1147), + [382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1146), + [384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1149), + [386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1148), + [388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1162), + [390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1124), + [392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1164), + [394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1163), + [396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1166), + [398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1165), + [400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), + [402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1132), + [404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1193), + [406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1190), + [408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1181), + [410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1186), + [412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), + [414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1192), + [416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1180), + [418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1183), + [420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1176), + [422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1177), + [424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1184), + [426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1185), + [428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1178), + [430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1179), + [432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1247), + [434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), + [436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1253), + [438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1724), + [440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), + [442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1758), + [444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), + [446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1760), + [448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1198), + [450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1231), + [452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1199), + [454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1239), + [456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1246), + [458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1219), + [460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1200), + [462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1230), + [464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1203), + [466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1202), + [468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1208), + [470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1206), + [472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1214), + [474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1215), + [476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1213), + [478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1211), + [480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1220), + [482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1216), + [484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1218), + [486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1222), + [488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1727), + [490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_case, 4, .production_id = 30), + [492] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_case, 4, .production_id = 30), + [494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1225), + [496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1221), + [498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1229), + [500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1232), + [502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1263), + [504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1256), + [506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1259), + [508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1255), + [510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1204), + [512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1205), + [514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1224), + [516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1223), + [518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1250), + [520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1233), + [522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), + [524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1128), + [526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1131), + [528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1130), + [530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(175), + [532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2106), + [534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), + [536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1957), + [538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2076), + [540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(294), + [542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(295), + [544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(312), + [546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(158), + [548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(635), + [550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1730), + [552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(928), + [554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), + [556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1790), + [558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), + [560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1773), + [562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(372), + [564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), + [566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1819), + [568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1722), + [570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_default, 3), + [572] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_default, 3), + [574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1720), + [576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_case, 3, .production_id = 30), + [578] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_case, 3, .production_id = 30), + [580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1711), + [582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_default, 2), + [584] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_default, 2), + [586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1837), + [588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1844), + [590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1847), + [592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1817), + [594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(678), + [596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1736), + [598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1771), + [600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1073), + [602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1764), + [604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1279), + [606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1271), + [608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(680), + [610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1738), + [612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1777), + [614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1077), + [616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1743), + [618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1702), + [620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1701), + [622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1798), + [624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1799), + [626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1274), + [628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1273), + [630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1708), + [632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1703), + [634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1793), + [636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1794), + [638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1236), + [640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1168), + [642] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__exp, 1), + [644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), + [646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(184), + [648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(665), + [650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace, 1, .production_id = 1), + [652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__exp, 1), + [654] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_concat, 3, .production_id = 8), + [656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1557), + [658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_concat, 3, .production_id = 8), [660] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_print_statement, 1), - [662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(683), - [664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), + [662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(703), + [664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), [666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1730), - [668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1761), - [670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1084), - [672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1744), - [674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1838), + [668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1790), + [670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1011), + [672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1773), + [674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1819), [676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 1), - [678] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_getline_input, 2), - [680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_getline_input, 2), - [682] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_exp, 2, .production_id = 3), - [684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_exp, 2, .production_id = 3), - [686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), - [688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(662), - [690] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ns_qualified_name, 4), - [692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ns_qualified_name, 4), - [694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(228), - [696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(687), - [698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), - [700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1719), - [702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1760), - [704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1082), - [706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1759), - [708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1819), - [710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(159), - [712] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_getline_input, 1), - [714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_getline_input, 1), - [716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), - [718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(366), - [720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1005), - [722] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_ref, 4, .production_id = 16), - [724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_ref, 4, .production_id = 16), - [726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(451), - [728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(977), - [730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), - [732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1115), - [734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(185), - [736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1021), - [738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), - [740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(476), - [742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(971), - [744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), - [746] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_getline_file, 3, .production_id = 5), - [748] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_getline_file, 3, .production_id = 5), - [750] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_regex, 4, .production_id = 15), - [752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_regex, 4, .production_id = 15), - [754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1034), - [756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(433), - [758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(832), - [760] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_func_call, 4, .production_id = 9), - [762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_func_call, 4, .production_id = 9), - [764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(247), - [766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(879), - [768] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_func_call, 3, .production_id = 9), - [770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_func_call, 3, .production_id = 9), + [678] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ns_qualified_name, 4), + [680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ns_qualified_name, 4), + [682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), + [684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(693), + [686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(228), + [688] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_getline_input, 2), + [690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_getline_input, 2), + [692] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_exp, 2, .production_id = 3), + [694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_exp, 2, .production_id = 3), + [696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(882), + [698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(645), + [700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), + [702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1731), + [704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1749), + [706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1102), + [708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1744), + [710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1841), + [712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), + [714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(436), + [716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(982), + [718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), + [720] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_ref, 4, .production_id = 16), + [722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_ref, 4, .production_id = 16), + [724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(162), + [726] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_getline_input, 1), + [728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_getline_input, 1), + [730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(391), + [732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1010), + [734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(190), + [736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1026), + [738] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_regex, 3, .production_id = 6), + [740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_regex, 3, .production_id = 6), + [742] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_piped_io_exp, 3, .production_id = 12), + [744] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_piped_io_exp, 3, .production_id = 12), + [746] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_exp, 2, .production_id = 4), + [748] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_exp, 2, .production_id = 4), + [750] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_indirect_func_call, 2), + [752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_indirect_func_call, 2), + [754] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_regex_constant, 2), + [756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_regex_constant, 2), + [758] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_grouping, 3), + [760] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_grouping, 3), + [762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1039), + [764] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_func_call, 4, .production_id = 9), + [766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_func_call, 4, .production_id = 9), + [768] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_exp, 1, .production_id = 2), + [770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_exp, 1, .production_id = 2), [772] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_number, 1), [774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_number, 1), - [776] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_getline_file, 4, .production_id = 14), - [778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_getline_file, 4, .production_id = 14), - [780] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_ref, 2), - [782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_ref, 2), - [784] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_piped_io_exp, 3, .production_id = 12), - [786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_piped_io_exp, 3, .production_id = 12), - [788] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_exp, 1, .production_id = 2), - [790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_exp, 1, .production_id = 2), - [792] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_exp, 3, .production_id = 11), - [794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_exp, 3, .production_id = 11), - [796] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_regex, 3, .production_id = 6), - [798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_regex, 3, .production_id = 6), - [800] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 2), - [802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 2), - [804] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_regex_constant, 2), - [806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_regex_constant, 2), - [808] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_exp, 2, .production_id = 4), - [810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_exp, 2, .production_id = 4), - [812] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 3), - [814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 3), - [816] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_indirect_func_call, 2), - [818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_indirect_func_call, 2), - [820] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_grouping, 3), - [822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_grouping, 3), - [824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(178), + [776] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_exp, 3, .production_id = 11), + [778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_exp, 3, .production_id = 11), + [780] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_func_call, 3, .production_id = 9), + [782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_func_call, 3, .production_id = 9), + [784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(171), + [786] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_ref, 2), + [788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_ref, 2), + [790] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_getline_file, 3, .production_id = 5), + [792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_getline_file, 3, .production_id = 5), + [794] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_getline_file, 4, .production_id = 14), + [796] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_getline_file, 4, .production_id = 14), + [798] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_regex, 4, .production_id = 15), + [800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_regex, 4, .production_id = 15), + [802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), + [804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(452), + [806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(837), + [808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(240), + [810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(884), + [812] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 2), + [814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 2), + [816] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 3), + [818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 3), + [820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(466), + [822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(836), + [824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), [826] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_regex, 3, .production_id = 7), - [828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(184), + [828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(204), [830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_regex, 3, .production_id = 7), [832] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_regex, 2), - [834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(206), + [834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(182), [836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_regex, 2), - [838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(904), - [840] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__binary_in, 3, .production_id = 11), - [842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(835), - [844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(836), - [846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(837), - [848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(838), + [838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(909), + [840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(841), + [842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(842), + [844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(843), + [846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(236), + [848] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_exp, 3, .production_id = 8), [850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(839), - [852] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_in, 3, .production_id = 11), - [854] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_exp, 3, .production_id = 8), - [856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(834), - [858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1892), - [860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1017), - [862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(840), - [864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(841), - [866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_exp, 3, .production_id = 8), - [868] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__binary_in, 5, .production_id = 17), - [870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_in, 5, .production_id = 17), - [872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(244), - [874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(231), + [852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(840), + [854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1861), + [856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1099), + [858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(844), + [860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(845), + [862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(846), + [864] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_exp, 3, .production_id = 8), + [866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(245), + [868] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__binary_in, 3, .production_id = 11), + [870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_in, 3, .production_id = 11), + [872] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_exp, 2, .production_id = 3), + [874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_exp, 2, .production_id = 3), [876] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ternary_exp, 5, .production_id = 19), [878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ternary_exp, 5, .production_id = 19), - [880] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_exp, 2, .production_id = 3), - [882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_exp, 2, .production_id = 3), - [884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(850), - [886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(849), - [888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(848), - [890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(852), - [892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(851), - [894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1882), - [896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1020), - [898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(845), - [900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(843), - [902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(842), - [904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), - [906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), - [908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), - [910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1559), - [912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(309), - [914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(993), - [916] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 1), - [918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 1), - [920] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_exit_statement, 1), - [922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exit_statement, 1), - [924] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 1), - [926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(303), - [928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), - [930] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(395), - [933] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1558), - [936] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1881), - [939] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(664), - [942] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(5), - [945] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(510), - [948] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1724), - [951] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(791), - [954] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(791), - [957] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1756), - [960] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(794), - [963] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1758), - [966] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(549), - [969] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(549), - [972] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1837), - [975] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1845), - [978] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2089), - [981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(348), - [983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(667), - [985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(333), - [987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(965), - [989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1115), - [991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1007), - [993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(318), - [995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(326), - [997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(819), - [999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(668), - [1001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(352), - [1003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(844), - [1005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(673), - [1007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(979), - [1009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(355), - [1011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(368), - [1013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(356), - [1015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(973), - [1017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(691), - [1019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(787), - [1021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(790), - [1023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1037), - [1025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(778), - [1027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(779), - [1029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(780), - [1031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(781), - [1033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(951), - [1035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1018), - [1037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(782), - [1039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), - [1041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), - [1043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(923), - [1045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), - [1047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1886), - [1049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(453), - [1051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(407), - [1053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(877), - [1055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(454), - [1057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), - [1059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(925), - [1061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), - [1063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), - [1065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(406), - [1067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(430), - [1069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(295), - [1071] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__print_args, 1), + [880] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__binary_in, 5, .production_id = 17), + [882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_in, 5, .production_id = 17), + [884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1030), + [886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1032), + [888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1034), + [890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1029), + [892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1036), + [894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1027), + [896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1045), + [898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1037), + [900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1038), + [902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1877), + [904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), + [906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1557), + [908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), + [910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), + [912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 1), + [914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(307), + [916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(998), + [918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(302), + [920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), + [922] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(390), + [925] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1555), + [928] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1897), + [931] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(696), + [934] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(5), + [937] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(512), + [940] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1733), + [943] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(791), + [946] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(791), + [949] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1765), + [952] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(799), + [955] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1767), + [958] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(529), + [961] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(529), + [964] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1842), + [967] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1860), + [970] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2094), + [973] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_exit_statement, 1), + [975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exit_statement, 1), + [977] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 1), + [979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 1), + [981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(343), + [983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), + [985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(648), + [987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(322), + [989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(824), + [991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1012), + [993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(334), + [995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(339), + [997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(970), + [999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(393), + [1001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(399), + [1003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(849), + [1005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(676), + [1007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(387), + [1009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(668), + [1011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(353), + [1013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(848), + [1015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(984), + [1017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(289), + [1019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(806), + [1021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(682), + [1023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(781), + [1025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(782), + [1027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(783), + [1029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(454), + [1031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(423), + [1033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(779), + [1035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(780), + [1037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(784), + [1039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(785), + [1041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), + [1043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), + [1045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1006), + [1047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), + [1049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(457), + [1051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(921), + [1053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1097), + [1055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(786), + [1057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), + [1059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(979), + [1061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), + [1063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), + [1065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(428), + [1067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1884), + [1069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(434), + [1071] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_exp_list, 2), [1073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1694), - [1075] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__print_args, 1), - [1077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(967), - [1079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(966), - [1081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(964), - [1083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(858), - [1085] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_exp_list, 2), - [1087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exp_list, 2), - [1089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(970), - [1091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(968), - [1093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(915), - [1095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(963), - [1097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(962), - [1099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(957), - [1101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1880), - [1103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(460), - [1105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(468), - [1107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1884), - [1109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(346), - [1111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1866), - [1113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(345), - [1115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(914), - [1117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(911), - [1119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), - [1121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(910), - [1123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(909), - [1125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), - [1127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(864), - [1129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031), - [1131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), - [1133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), - [1135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), - [1137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1872), - [1139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1872), - [1141] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 2), - [1143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2), - [1145] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_piped_io_statement, 3, .production_id = 13), - [1147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_piped_io_statement, 3, .production_id = 13), - [1149] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_exit_statement, 2), - [1151] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exit_statement, 2), - [1153] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_redirected_io_statement, 3, .production_id = 5), - [1155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_redirected_io_statement, 3, .production_id = 5), - [1157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(508), - [1159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(924), - [1161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(511), - [1163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(889), - [1165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), - [1167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(514), - [1169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(919), - [1171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(516), - [1173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(985), - [1175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), - [1177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(554), - [1179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(543), - [1181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), - [1183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(932), - [1185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(933), - [1187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(939), - [1189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), - [1191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(940), - [1193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), - [1195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), - [1197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), - [1199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1870), - [1201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1870), - [1203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), - [1205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), - [1207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(563), - [1209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(538), - [1211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), - [1213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(595), - [1215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1096), - [1217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1876), - [1219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1876), - [1221] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 1), - [1223] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern, 1), - [1225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), - [1227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, .production_id = 10), - [1229] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, .production_id = 10), - [1231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1334), - [1233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(822), - [1235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), - [1237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1321), - [1239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(827), - [1241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), - [1243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(602), - [1245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1114), - [1247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1411), - [1249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(917), - [1251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), - [1253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1095), - [1255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1360), - [1257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(813), - [1259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(776), - [1261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(675), - [1263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(816), - [1265] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_printf_statement, 2), - [1267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_printf_statement, 2), - [1269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(732), - [1271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), - [1273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1432), - [1275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1710), - [1277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1088), - [1279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), - [1281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1763), - [1283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), - [1285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1772), - [1287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1501), - [1289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1501), - [1291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1833), - [1293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1065), - [1295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1075), - [1297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1081), - [1299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1086), - [1301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), - [1303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1053), - [1305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1087), - [1307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1093), - [1309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1867), - [1311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1010), - [1313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1097), - [1315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), - [1317] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_printf_statement, 4), - [1319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_printf_statement, 4), - [1321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(759), - [1323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(795), - [1325] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_print_statement, 2), - [1327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 2), + [1075] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exp_list, 2), + [1077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(831), + [1079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(830), + [1081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(827), + [1083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(834), + [1085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(832), + [1087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(826), + [1089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(825), + [1091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(464), + [1093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(815), + [1095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1071), + [1097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1871), + [1099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1868), + [1101] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__print_args, 1), + [1103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__print_args, 1), + [1105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(474), + [1107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(971), + [1109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(333), + [1111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1870), + [1113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(330), + [1115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1023), + [1117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), + [1119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1056), + [1121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1015), + [1123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1013), + [1125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), + [1127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), + [1129] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 2), + [1131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2), + [1133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1059), + [1135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), + [1137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), + [1139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), + [1141] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_exit_statement, 2), + [1143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exit_statement, 2), + [1145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1896), + [1147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1896), + [1149] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_redirected_io_statement, 3, .production_id = 5), + [1151] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_redirected_io_statement, 3, .production_id = 5), + [1153] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_piped_io_statement, 3, .production_id = 13), + [1155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_piped_io_statement, 3, .production_id = 13), + [1157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(511), + [1159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(509), + [1161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1048), + [1163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), + [1165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(814), + [1167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(518), + [1169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(521), + [1171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(878), + [1173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(562), + [1175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(535), + [1177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), + [1179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1043), + [1181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(559), + [1183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(987), + [1185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(988), + [1187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), + [1189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1086), + [1191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1086), + [1193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(994), + [1195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), + [1197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), + [1199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), + [1201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1894), + [1203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1894), + [1205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), + [1207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), + [1209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(541), + [1211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 1), + [1213] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern, 1), + [1215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), + [1217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1864), + [1219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1864), + [1221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(592), + [1223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(850), + [1225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), + [1227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1348), + [1229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1095), + [1231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), + [1233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, .production_id = 10), + [1235] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, .production_id = 10), + [1237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(607), + [1239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(877), + [1241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1301), + [1243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1090), + [1245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), + [1247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(829), + [1249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1358), + [1251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1017), + [1253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1410), + [1255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(935), + [1257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), + [1259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(658), + [1261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1004), + [1263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(866), + [1265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1042), + [1267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1040), + [1269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1080), + [1271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(990), + [1273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(977), + [1275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(972), + [1277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(969), + [1279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(759), + [1281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(795), + [1283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), + [1285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(739), + [1287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), + [1289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1429), + [1291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1726), + [1293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1104), + [1295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1104), + [1297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1779), + [1299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), + [1301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1746), + [1303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1501), + [1305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1501), + [1307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1834), + [1309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1066), + [1311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), + [1313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(853), + [1315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(966), + [1317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), + [1319] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_printf_statement, 2), + [1321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_printf_statement, 2), + [1323] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_print_statement, 2), + [1325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 2), + [1327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1890), [1329] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_print_statement, 4), [1331] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 4), - [1333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1061), - [1335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), - [1337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1089), - [1339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(777), - [1341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1038), - [1343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1868), - [1345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1012), - [1347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1039), - [1349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1040), - [1351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1041), - [1353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1042), - [1355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1044), - [1357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1045), - [1359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(946), - [1361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(999), - [1363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1052), - [1365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), - [1367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(817), - [1369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), - [1371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), - [1373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), - [1375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(793), - [1377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), - [1379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), - [1381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1415), - [1383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), - [1385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), - [1387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), - [1389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), - [1391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), - [1393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1516), - [1395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1382), - [1397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1566), - [1399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), - [1401] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_exp_list_repeat1, 2), SHIFT_REPEAT(732), - [1404] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_exp_list_repeat1, 2), SHIFT_REPEAT(670), - [1407] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_exp_list_repeat1, 2), SHIFT_REPEAT(1432), - [1410] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_exp_list_repeat1, 2), SHIFT_REPEAT(1710), - [1413] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_exp_list_repeat1, 2), SHIFT_REPEAT(1088), - [1416] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_exp_list_repeat1, 2), SHIFT_REPEAT(1088), - [1419] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_exp_list_repeat1, 2), SHIFT_REPEAT(1763), - [1422] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_exp_list_repeat1, 2), SHIFT_REPEAT(1112), - [1425] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_exp_list_repeat1, 2), SHIFT_REPEAT(1772), - [1428] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_exp_list_repeat1, 2), SHIFT_REPEAT(1501), - [1431] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_exp_list_repeat1, 2), SHIFT_REPEAT(1501), - [1434] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_exp_list_repeat1, 2), SHIFT_REPEAT(1833), - [1437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), - [1439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1273), - [1441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), - [1443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), - [1445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), - [1447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), - [1449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), - [1451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), - [1453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), - [1455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), - [1457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), - [1459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), - [1461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1276), - [1463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), - [1465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), - [1467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), - [1469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), - [1471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), - [1473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), - [1475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), - [1477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), - [1479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), - [1481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), - [1483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), - [1485] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__io_statement, 1), - [1487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(978), - [1489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(976), - [1491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__io_statement, 1), - [1493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), - [1495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), - [1497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), - [1499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), - [1501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), - [1503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), - [1505] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delete_statement, 2), - [1507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete_statement, 2), - [1509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), - [1511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), - [1513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), - [1515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), - [1517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(800), - [1519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), - [1521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1266), - [1523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), - [1525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), - [1527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1277), - [1529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), - [1531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), - [1533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), - [1535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), - [1537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), - [1539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1504), - [1541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(854), - [1543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), - [1545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1272), - [1547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), - [1549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), - [1551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1271), - [1553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), - [1555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), - [1557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(164), - [1559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), - [1561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(588), - [1563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1714), - [1565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1090), - [1567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), - [1569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1747), - [1571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1784), - [1573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(219), - [1575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), - [1577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1814), - [1579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(167), - [1581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(285), - [1583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1731), - [1585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1753), - [1587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1740), - [1589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(585), - [1591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1256), - [1593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1726), - [1595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1771), - [1597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1778), - [1599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(372), - [1601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(506), - [1603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1727), - [1605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1773), - [1607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1775), - [1609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(650), - [1611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1367), - [1613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1715), - [1615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1777), - [1617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1754), - [1619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(283), - [1621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), - [1623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(384), - [1625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1718), - [1627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1027), - [1629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), - [1631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1770), - [1633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1765), - [1635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(329), - [1637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), - [1639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1825), - [1641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), - [1643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(632), - [1645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1722), - [1647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(880), - [1649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), - [1651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1764), - [1653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1749), - [1655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(172), - [1657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(913), - [1659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(912), - [1661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1014), - [1663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(908), - [1665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(907), - [1667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(902), - [1669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(884), - [1671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(875), - [1673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(874), - [1675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(156), - [1677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), - [1679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(604), - [1681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1716), - [1683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(883), - [1685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), - [1687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1768), - [1689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1783), - [1691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(194), - [1693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), - [1695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1822), - [1697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(596), - [1699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1268), - [1701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1725), - [1703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1767), - [1705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1786), - [1707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), - [1709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(191), - [1711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1728), - [1713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1035), - [1715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), - [1717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1739), - [1719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1766), - [1721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(187), - [1723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(312), - [1725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1711), - [1727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1779), - [1729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1781), - [1731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(769), - [1733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1412), - [1735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1709), - [1737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1750), - [1739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1748), - [1741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), - [1743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(176), - [1745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1734), - [1747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1062), - [1749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062), - [1751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1746), - [1753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1752), - [1755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), - [1757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(654), - [1759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1729), - [1761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(859), - [1763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), - [1765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1755), - [1767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1743), - [1769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(586), - [1771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(983), - [1773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(984), - [1775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(566), - [1777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(641), - [1779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1312), - [1781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1733), - [1783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1751), - [1785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1776), - [1787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1758), - [1789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(400), - [1791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(188), - [1793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(958), - [1795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), - [1797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(575), - [1799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1732), - [1801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1074), - [1803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), - [1805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1745), - [1807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1769), - [1809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(716), - [1811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(950), - [1813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(948), - [1815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1019), - [1817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(947), - [1819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(945), - [1821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(944), - [1823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(943), - [1825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(942), - [1827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(941), - [1829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1269), - [1831] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement_separated, 2), - [1833] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement_separated, 2), - [1835] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement, 2), - [1837] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement, 2), - [1839] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 3), - [1841] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 3), + [1333] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_printf_statement, 4), + [1335] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_printf_statement, 4), + [1337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1094), + [1339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1060), + [1341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1049), + [1343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1058), + [1345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1891), + [1347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(820), + [1349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1062), + [1351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(973), + [1353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1098), + [1355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1114), + [1357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1113), + [1359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(890), + [1361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1083), + [1363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), + [1365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1116), + [1367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), + [1369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1551), + [1371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), + [1373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1368), + [1375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), + [1377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(951), + [1379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), + [1381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1513), + [1383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(778), + [1385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), + [1387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), + [1389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1342), + [1391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1326), + [1393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1422), + [1395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), + [1397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), + [1399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), + [1401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), + [1403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1275), + [1405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), + [1407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), + [1409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), + [1411] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_exp_list_repeat1, 2), SHIFT_REPEAT(739), + [1414] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_exp_list_repeat1, 2), SHIFT_REPEAT(701), + [1417] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_exp_list_repeat1, 2), SHIFT_REPEAT(1429), + [1420] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_exp_list_repeat1, 2), SHIFT_REPEAT(1726), + [1423] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_exp_list_repeat1, 2), SHIFT_REPEAT(1104), + [1426] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_exp_list_repeat1, 2), SHIFT_REPEAT(1104), + [1429] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_exp_list_repeat1, 2), SHIFT_REPEAT(1779), + [1432] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_exp_list_repeat1, 2), SHIFT_REPEAT(1044), + [1435] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_exp_list_repeat1, 2), SHIFT_REPEAT(1746), + [1438] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_exp_list_repeat1, 2), SHIFT_REPEAT(1501), + [1441] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_exp_list_repeat1, 2), SHIFT_REPEAT(1501), + [1444] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_exp_list_repeat1, 2), SHIFT_REPEAT(1834), + [1447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), + [1449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), + [1451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), + [1453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), + [1455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1276), + [1457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), + [1459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), + [1461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), + [1463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), + [1465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), + [1467] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delete_statement, 2), + [1469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete_statement, 2), + [1471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1514), + [1473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1022), + [1475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), + [1477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), + [1479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), + [1481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), + [1483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), + [1485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), + [1487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), + [1489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), + [1491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), + [1493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), + [1495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), + [1497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), + [1499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), + [1501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), + [1503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), + [1505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), + [1507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), + [1509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), + [1511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), + [1513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), + [1515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(821), + [1517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), + [1519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), + [1521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), + [1523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), + [1525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), + [1527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1278), + [1529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), + [1531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), + [1533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), + [1535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), + [1537] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__io_statement, 1), + [1539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(914), + [1541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(913), + [1543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__io_statement, 1), + [1545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1269), + [1547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), + [1549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1280), + [1551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), + [1553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1266), + [1555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), + [1557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(593), + [1559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1272), + [1561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1723), + [1563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1770), + [1565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1742), + [1567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(179), + [1569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(290), + [1571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1737), + [1573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1785), + [1575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1739), + [1577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(587), + [1579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1197), + [1581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1713), + [1583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1776), + [1585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1740), + [1587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(371), + [1589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(507), + [1591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1714), + [1593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1741), + [1595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1747), + [1597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(161), + [1599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), + [1601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(612), + [1603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1725), + [1605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(883), + [1607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), + [1609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1766), + [1611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1783), + [1613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(235), + [1615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), + [1617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1828), + [1619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(206), + [1621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(304), + [1623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1732), + [1625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1745), + [1627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1757), + [1629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(284), + [1631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), + [1633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(374), + [1635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1735), + [1637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(859), + [1639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), + [1641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1780), + [1643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1781), + [1645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(327), + [1647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), + [1649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1824), + [1651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(925), + [1653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(924), + [1655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(796), + [1657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(923), + [1659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(922), + [1661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(918), + [1663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(917), + [1665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(912), + [1667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(889), + [1669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(155), + [1671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), + [1673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(579), + [1675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1715), + [1677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(812), + [1679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), + [1681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1754), + [1683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1748), + [1685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(195), + [1687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), + [1689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1840), + [1691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(170), + [1693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), + [1695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(599), + [1697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1710), + [1699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(862), + [1701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), + [1703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1772), + [1705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1762), + [1707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), + [1709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(586), + [1711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1721), + [1713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(817), + [1715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), + [1717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1759), + [1719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1753), + [1721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1767), + [1723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(211), + [1725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), + [1727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(180), + [1729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1716), + [1731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(932), + [1733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), + [1735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1778), + [1737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1768), + [1739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1047), + [1741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1046), + [1743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(725), + [1745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), + [1747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(210), + [1749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1718), + [1751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(915), + [1753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), + [1755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1752), + [1757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1782), + [1759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1063), + [1761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(732), + [1763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1421), + [1765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1729), + [1767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1784), + [1769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1786), + [1771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(582), + [1773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(588), + [1775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(642), + [1777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1321), + [1779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1734), + [1781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1769), + [1783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1763), + [1785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(675), + [1787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1363), + [1789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1717), + [1791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1751), + [1793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1789), + [1795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), + [1797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(654), + [1799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1712), + [1801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(967), + [1803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), + [1805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1755), + [1807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1775), + [1809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(398), + [1811] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_body, 2), + [1813] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_body, 2), + [1815] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 3), + [1817] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 3), + [1819] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 27), + [1821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1170), + [1823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 27), + [1825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(986), + [1827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(974), + [1829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1081), + [1831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(964), + [1833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(963), + [1835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(962), + [1837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(961), + [1839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(958), + [1841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(957), [1843] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 2), [1845] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2), [1847] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 10, .production_id = 31), - [1849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1128), - [1851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 10, .production_id = 31), - [1853] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, .production_id = 31), - [1855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, .production_id = 31), - [1857] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, .production_id = 29), - [1859] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, .production_id = 29), - [1861] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, .production_id = 28), - [1863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, .production_id = 28), - [1865] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, .production_id = 27), - [1867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, .production_id = 27), + [1849] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 10, .production_id = 31), + [1851] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, .production_id = 31), + [1853] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, .production_id = 31), + [1855] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, .production_id = 29), + [1857] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, .production_id = 29), + [1859] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, .production_id = 28), + [1861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, .production_id = 28), + [1863] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, .production_id = 27), + [1865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, .production_id = 27), + [1867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1277), [1869] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 29), [1871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 29), [1873] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 28), [1875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 28), [1877] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 26), [1879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 26), - [1881] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 5, .production_id = 20), - [1883] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 5, .production_id = 20), - [1885] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_statement, 5), - [1887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_statement, 5), - [1889] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 6, .production_id = 20), - [1891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 6, .production_id = 20), - [1893] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_statement, 8, .production_id = 25), - [1895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_statement, 8, .production_id = 25), - [1897] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 27), - [1899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 27), - [1901] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 24), - [1903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 24), - [1905] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_while_statement, 6, .production_id = 21), - [1907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_while_statement, 6, .production_id = 21), - [1909] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 23), - [1911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 23), - [1913] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 8, .production_id = 20), - [1915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 8, .production_id = 20), - [1917] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 2), - [1919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 2), - [1921] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6), - [1923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6), - [1925] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_body, 3), - [1927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_body, 3), - [1929] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 26), - [1931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 26), - [1933] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_body, 2), - [1935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_body, 2), - [1937] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_statement, 6), - [1939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_statement, 6), - [1941] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_statement, 7, .production_id = 25), - [1943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_statement, 7, .production_id = 25), - [1945] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 24), - [1947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 24), - [1949] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 23), - [1951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 23), - [1953] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7), - [1955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7), - [1957] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 7, .production_id = 20), - [1959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 7, .production_id = 20), - [1961] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_while_statement, 7, .production_id = 22), - [1963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_while_statement, 7, .production_id = 22), - [1965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1262), - [1967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1080), - [1969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1078), - [1971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1078), - [1973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1076), - [1975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1073), - [1977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), - [1979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1072), - [1981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1282), - [1983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), - [1985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1879), - [1987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1879), - [1989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), - [1991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1071), - [1993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), - [1995] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 2), - [1997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 2), - [1999] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 2), SHIFT_REPEAT(2000), - [2002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1298), - [2004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1290), - [2006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(826), + [1881] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_statement, 8, .production_id = 25), + [1883] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_statement, 8, .production_id = 25), + [1885] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 8, .production_id = 20), + [1887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 8, .production_id = 20), + [1889] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 24), + [1891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 24), + [1893] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 23), + [1895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 23), + [1897] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 2), + [1899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 2), + [1901] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_body, 3), + [1903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_body, 3), + [1905] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement_separated, 2), + [1907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement_separated, 2), + [1909] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_statement, 6), + [1911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_statement, 6), + [1913] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement, 2), + [1915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement, 2), + [1917] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 7, .production_id = 20), + [1919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 7, .production_id = 20), + [1921] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_while_statement, 7, .production_id = 22), + [1923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_while_statement, 7, .production_id = 22), + [1925] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7), + [1927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7), + [1929] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 5, .production_id = 20), + [1931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 5, .production_id = 20), + [1933] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 23), + [1935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 23), + [1937] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_statement, 7, .production_id = 25), + [1939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_statement, 7, .production_id = 25), + [1941] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_statement, 5), + [1943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_statement, 5), + [1945] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 6, .production_id = 20), + [1947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 6, .production_id = 20), + [1949] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_while_statement, 6, .production_id = 21), + [1951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_while_statement, 6, .production_id = 21), + [1953] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6), + [1955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6), + [1957] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 26), + [1959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 26), + [1961] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 24), + [1963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 24), + [1965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1235), + [1967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1285), + [1969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1296), + [1971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1091), + [1973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1106), + [1975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1111), + [1977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1111), + [1979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1112), + [1981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1117), + [1983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1106), + [1985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), + [1987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), + [1989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1873), + [1991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1873), + [1993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), + [1995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), + [1997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), + [1999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1289), + [2001] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 2), + [2003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 2), + [2005] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 2), SHIFT_REPEAT(1971), [2008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1820), - [2010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(661), - [2012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1302), - [2014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(812), - [2016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1307), - [2018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1843), - [2020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1810), - [2022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1811), - [2024] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, .production_id = 20), - [2026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1808), - [2028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1844), - [2030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1832), - [2032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1795), - [2034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1303), - [2036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(821), - [2038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(666), + [2010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1324), + [2012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1317), + [2014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1109), + [2016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1833), + [2018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(643), + [2020] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, .production_id = 20), + [2022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1797), + [2024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1333), + [2026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(885), + [2028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1809), + [2030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1816), + [2032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1814), + [2034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1832), + [2036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1823), + [2038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(651), [2040] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__block_content, 1), - [2042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(671), - [2044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(829), - [2046] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_comment, 2), - [2048] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comment, 2), - [2050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1336), - [2052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(918), - [2054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(677), - [2056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(814), - [2058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(824), - [2060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1333), - [2062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1328), - [2064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1406), - [2066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1077), - [2068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(916), - [2070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(786), - [2072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(785), - [2074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(783), - [2076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(789), - [2078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(788), - [2080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1011), - [2082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(796), - [2084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(798), - [2086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(799), - [2088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1897), - [2090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1430), - [2092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(934), - [2094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1434), - [2096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1049), - [2098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1358), - [2100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1342), - [2102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1377), - [2104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1341), - [2106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1443), - [2108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1050), - [2110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1048), - [2112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1883), - [2114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1013), - [2116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1047), - [2118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(991), - [2120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(981), - [2122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(969), - [2124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(960), - [2126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(959), - [2128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1395), - [2130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1439), - [2132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(815), - [2134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1859), - [2136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1091), - [2138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1398), - [2140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1459), - [2142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(855), - [2144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1878), - [2146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(949), - [2148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1472), + [2042] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_comment, 2), + [2044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comment, 2), + [2046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(673), + [2048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1089), + [2050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1364), + [2052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(936), + [2054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1315), + [2056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1303), + [2058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(687), + [2060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1092), + [2062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1401), + [2064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1082), + [2066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1033), + [2068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1433), + [2070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1054), + [2072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1356), + [2074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1353), + [2076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1346), + [2078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1343), + [2080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1426), + [2082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(939), + [2084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(926), + [2086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(790), + [2088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(788), + [2090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1055), + [2092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(792), + [2094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(805), + [2096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(794), + [2098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(801), + [2100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(847), + [2102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(819), + [2104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1885), + [2106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1074), + [2108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1072), + [2110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1069), + [2112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1396), + [2114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1415), + [2116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1865), + [2118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1454), + [2120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1076), + [2122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1075), + [2124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1862), + [2126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(818), + [2128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1067), + [2130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1065), + [2132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1064), + [2134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1460), + [2136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(887), + [2138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1096), + [2140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1440), + [2142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1108), + [2144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(954), + [2146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1468), + [2148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(876), [2150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1467), - [2152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1102), - [2154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1063), - [2156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(894), - [2158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(895), - [2160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1015), - [2162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(896), - [2164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(897), - [2166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(898), - [2168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(899), - [2170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(900), - [2172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(901), - [2174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(784), - [2176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), - [2178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(831), - [2180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(872), - [2182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(871), - [2184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(870), - [2186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(867), - [2188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(865), - [2190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(792), - [2192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1085), - [2194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), - [2196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1517), - [2198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1023), - [2200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(863), - [2202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(861), - [2204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1520), - [2206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1111), - [2208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110), - [2210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1108), - [2212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1108), - [2214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), - [2216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1111), - [2218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1104), - [2220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1563), - [2222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1545), - [2224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), - [2226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1875), - [2228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1875), - [2230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1107), - [2232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), - [2234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), + [2152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1879), + [2154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1068), + [2156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(900), + [2158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(901), + [2160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(902), + [2162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(903), + [2164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(904), + [2166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1057), + [2168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), + [2170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(899), + [2172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(895), + [2174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(905), + [2176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(906), + [2178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(789), + [2180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1538), + [2182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1531), + [2184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), + [2186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1005), + [2188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(944), + [2190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(945), + [2192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(854), + [2194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(948), + [2196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(949), + [2198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(953), + [2200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(956), + [2202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(959), + [2204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(965), + [2206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), + [2208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(897), + [2210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), + [2212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(929), + [2214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), + [2216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), + [2218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), + [2220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), + [2222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1888), + [2224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1888), + [2226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), + [2228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), + [2230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), + [2232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1563), + [2234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1554), [2236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rule, 1), [2238] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_rule, 1), - [2240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1877), - [2242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1877), - [2244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_directive, 2), - [2246] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_directive, 2), - [2248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rule, 2), - [2250] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_rule, 2), - [2252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_func_def, 6, .production_id = 18), - [2254] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_func_def, 6, .production_id = 18), - [2256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_func_def, 5, .production_id = 18), - [2258] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_func_def, 5, .production_id = 18), + [2240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_func_def, 5, .production_id = 18), + [2242] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_func_def, 5, .production_id = 18), + [2244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_func_def, 6, .production_id = 18), + [2246] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_func_def, 6, .production_id = 18), + [2248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_directive, 2), + [2250] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_directive, 2), + [2252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1900), + [2254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1900), + [2256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rule, 2), + [2258] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_rule, 2), [2260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1694), - [2262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), + [2262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), [2264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_args, 1), - [2266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1356), - [2268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), - [2270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), - [2272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), - [2274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1511), - [2276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1311), - [2278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), - [2280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), - [2282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), - [2284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), - [2286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), - [2288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), - [2290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1292), - [2292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1497), - [2294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), - [2296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), - [2298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_args_repeat1, 2), - [2300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1525), - [2302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), - [2304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), - [2306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), - [2308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1327), - [2310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1324), - [2312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), - [2314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), - [2316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), - [2318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), - [2320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), - [2322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), - [2324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), - [2326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), - [2328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), - [2330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), - [2332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), - [2334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), - [2336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), - [2338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1194), - [2340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), - [2342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1802), - [2344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), - [2346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), - [2348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), - [2350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), - [2352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1201), - [2354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), - [2356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), - [2358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), - [2360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), - [2362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), - [2364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), - [2366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), - [2368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), - [2370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), - [2372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), - [2374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), - [2376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), - [2378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), - [2380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1171), - [2382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), - [2384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1207), - [2386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), - [2388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), - [2390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), - [2392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), - [2394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), - [2396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), - [2398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), - [2400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), - [2402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), - [2404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), - [2406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), - [2408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), - [2410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), - [2412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), - [2414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), - [2416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), - [2418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), - [2420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), - [2422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), - [2424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), - [2426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), - [2428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057), - [2430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), - [2432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), - [2434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), - [2436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), - [2438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), - [2440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), - [2442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), - [2444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), - [2446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), - [2448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), - [2450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), - [2452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), - [2454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), - [2456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), - [2458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), - [2460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1804), - [2462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), - [2464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), - [2466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), - [2468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), - [2470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), - [2472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), - [2474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), - [2476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), - [2478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), - [2480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), - [2482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), - [2484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), - [2486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), - [2488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), - [2490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), - [2492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), - [2494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), - [2496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), - [2498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), - [2500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), - [2502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), - [2504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), - [2506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), - [2508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), - [2510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), - [2512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), - [2514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), - [2516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), - [2518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), - [2520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), - [2522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), - [2524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1073), - [2526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), - [2528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), - [2530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), - [2532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), - [2534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), - [2536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1048), - [2538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), - [2540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), - [2542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), - [2544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), - [2546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), - [2548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), - [2550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), - [2552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), - [2554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), - [2556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), - [2558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), - [2560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), - [2562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), - [2564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), - [2566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), - [2568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), - [2570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), - [2572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), - [2574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), - [2576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), - [2578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), - [2580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), - [2582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), - [2584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), - [2586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), - [2588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), - [2590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), - [2592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), - [2594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), - [2596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), - [2598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), - [2600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), - [2602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), - [2604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), - [2606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), - [2608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), - [2610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), - [2612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), - [2614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), - [2616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), - [2618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), - [2620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), - [2622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), - [2624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), - [2626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), - [2628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), - [2630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), - [2632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), - [2634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), - [2636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), - [2638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), - [2640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), - [2642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), - [2644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), - [2646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), - [2648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1086), - [2650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), - [2652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), - [2654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), - [2656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), - [2658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), - [2660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), - [2662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), - [2664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), - [2666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), - [2668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), - [2670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), - [2672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), - [2674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), - [2676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), - [2678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), - [2680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), - [2682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), - [2684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), + [2266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), + [2268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1384), + [2270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1499), + [2272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), + [2274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_args_repeat1, 2), + [2276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1286), + [2278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), + [2280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), + [2282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1322), + [2284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), + [2286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), + [2288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), + [2290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1539), + [2292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), + [2294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), + [2296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), + [2298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), + [2300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), + [2302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), + [2304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), + [2306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), + [2308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), + [2310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), + [2312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1494), + [2314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), + [2316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), + [2318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), + [2320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), + [2322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), + [2324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1217), + [2326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), + [2328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), + [2330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), + [2332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), + [2334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), + [2336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), + [2338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), + [2340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), + [2342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1261), + [2344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), + [2346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), + [2348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), + [2350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), + [2352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), + [2354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), + [2356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), + [2358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), + [2360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), + [2362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), + [2364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), + [2366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), + [2368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), + [2370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), + [2372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1803), + [2374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), + [2376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), + [2378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), + [2380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), + [2382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), + [2384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), + [2386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), + [2388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), + [2390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), + [2392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1187), + [2394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), + [2396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), + [2398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), + [2400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), + [2402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), + [2404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), + [2406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), + [2408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), + [2410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), + [2412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), + [2414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), + [2416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), + [2418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1807), + [2420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1175), + [2422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), + [2424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), + [2426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), + [2428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), + [2430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), + [2432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), + [2434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), + [2436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), + [2438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), + [2440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), + [2442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), + [2444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), + [2446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), + [2448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), + [2450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), + [2452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), + [2454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), + [2456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), + [2458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), + [2460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), + [2462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), + [2464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), + [2466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), + [2468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), + [2470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), + [2472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), + [2474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1072), + [2476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), + [2478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), + [2480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), + [2482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), + [2484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), + [2486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), + [2488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), + [2490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), + [2492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), + [2494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), + [2496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), + [2498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), + [2500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), + [2502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), + [2504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), + [2506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), + [2508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), + [2510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), + [2512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), + [2514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), + [2516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), + [2518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), + [2520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), + [2522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), + [2524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), + [2526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), + [2528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), + [2530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), + [2532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), + [2534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), + [2536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), + [2538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), + [2540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), + [2542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), + [2544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), + [2546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), + [2548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), + [2550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), + [2552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), + [2554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), + [2556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), + [2558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), + [2560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), + [2562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), + [2564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), + [2566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), + [2568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), + [2570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), + [2572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), + [2574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), + [2576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), + [2578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1045), + [2580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), + [2582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), + [2584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), + [2586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), + [2588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), + [2590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), + [2592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), + [2594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), + [2596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), + [2598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), + [2600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), + [2602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), + [2604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), + [2606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), + [2608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), + [2610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1071), + [2612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), + [2614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), + [2616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), + [2618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), + [2620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), + [2622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), + [2624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), + [2626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), + [2628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), + [2630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), + [2632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), + [2634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), + [2636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), + [2638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), + [2640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), + [2642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), + [2644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), + [2646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), + [2648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), + [2650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), + [2652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1059), + [2654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), + [2656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), + [2658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1049), + [2660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), + [2662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), + [2664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062), + [2666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), + [2668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), + [2670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), + [2672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), + [2674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), + [2676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), + [2678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), + [2680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), + [2682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), + [2684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), [2686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), - [2688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), - [2690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), - [2692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), - [2694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), - [2696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1045), + [2688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), + [2690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), + [2692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), + [2694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), + [2696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), [2698] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_exp_list_repeat1, 2), [2700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_exp_list_repeat1, 2), - [2702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(860), - [2704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(876), - [2706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(833), - [2708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(853), - [2710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1029), - [2712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1030), - [2714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1229), - [2716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1707), - [2718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1991), - [2720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1056), - [2722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1055), - [2724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1791), - [2726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1796), - [2728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1183), - [2730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1180), - [2732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2), - [2734] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(1707), - [2737] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(1991), - [2740] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(2089), - [2743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1713), - [2745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2004), - [2747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2004), - [2749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1813), - [2751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1204), - [2753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1471), - [2755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1757), - [2757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1854), - [2759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1506), - [2761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), - [2763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1409), - [2765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1903), - [2767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), - [2769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1445), - [2771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), - [2773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), - [2775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), - [2777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1476), - [2779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1389), - [2781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), - [2783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), - [2785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1384), - [2787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1306), - [2789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), - [2791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), - [2793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1124), - [2795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), - [2797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), - [2799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), - [2801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1428), - [2803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), - [2805] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_case, 5, .production_id = 30), - [2807] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_default, 4), - [2809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1446), - [2811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1284), - [2813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), - [2815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), - [2817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1894), - [2819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1301), - [2821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), - [2823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), - [2825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1863), - [2827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1902), - [2829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), - [2831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1864), - [2833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1860), - [2835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1460), - [2837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), - [2839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1267), - [2841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), - [2843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1889), - [2845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), - [2847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109), - [2849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1893), - [2851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), - [2853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), - [2855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), - [2857] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_regex_pattern, 1), - [2859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1774), - [2861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1873), - [2863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1862), - [2865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), - [2867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), - [2869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), - [2871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1101), - [2873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1887), - [2875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1468), - [2877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), - [2879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1289), - [2881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), - [2883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), - [2885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1896), - [2887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), - [2889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), - [2891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_regex_pattern_repeat1, 2), - [2893] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_regex_pattern_repeat1, 2), SHIFT_REPEAT(1774), - [2896] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_regex_pattern_repeat1, 2), SHIFT_REPEAT(1854), - [2899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1885), - [2901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1890), - [2903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), - [2905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), - [2907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), - [2909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1898), - [2911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1891), - [2913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), - [2915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1790), - [2917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1792), - [2919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), - [2921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), - [2923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), - [2925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), - [2927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), - [2929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), - [2931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1708), - [2933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1702), - [2935] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 2), SHIFT_REPEAT(2089), - [2938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), - [2940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1851), - [2942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1850), - [2944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(232), - [2946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1842), - [2948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1510), - [2950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1818), - [2952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(245), - [2954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1812), - [2956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1965), - [2958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(409), - [2960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(213), - [2962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1519), - [2964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(415), - [2966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1816), - [2968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1849), - [2970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), - [2972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(207), - [2974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1817), - [2976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1990), - [2978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1330), - [2980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1827), - [2982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(343), - [2984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1831), - [2986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(396), - [2988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1323), - [2990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1352), - [2992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1957), - [2994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1375), - [2996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1828), - [2998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(325), - [3000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1858), - [3002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1540), - [3004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1835), - [3006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1960), - [3008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1535), - [3010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1839), - [3012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1839), - [3014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1841), - [3016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(548), - [3018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1840), - [3020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(394), - [3022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1826), - [3024] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__regex_char_list_repeat1, 2), SHIFT_REPEAT(1839), - [3027] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__regex_char_list_repeat1, 2), SHIFT_REPEAT(1839), - [3030] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__regex_char_list_repeat1, 2), - [3032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(542), - [3034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__regex_char_list, 3), - [3036] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2), - [3038] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(1842), - [3041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1852), - [3043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1846), - [3045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1874), - [3047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), - [3049] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_param_list_repeat1, 2), SHIFT_REPEAT(1937), - [3052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_param_list_repeat1, 2), - [3054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1937), - [3056] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_list, 2), - [3058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), - [3060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), - [3062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), - [3064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), - [3066] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_args, 2), - [3068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1836), - [3070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1857), - [3072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1900), - [3074] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_args_repeat1, 2), SHIFT_REPEAT(1001), - [3077] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_list, 1), - [3079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), - [3081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1230), - [3083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), - [3085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), - [3087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), - [3089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), - [3091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), - [3093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), - [3095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), - [3097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1855), - [3099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1390), - [3101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), - [3103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1431), - [3105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1270), - [3107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), - [3109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), - [3111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), - [3113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1241), - [3115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), - [3117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), - [3119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), - [3121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), - [3123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), - [3125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), - [3127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), - [3129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1125), - [3131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), - [3133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), - [3135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), - [3137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), - [3139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2024), - [3141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2029), - [3143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2043), - [3145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2011), - [3147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2008), - [3149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2020), - [3151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2001), - [3153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2014), - [3155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), - [3157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1993), - [3159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2007), - [3161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1305), - [3163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1987), - [3165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1996), - [3167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), - [3169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), - [3171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1981), - [3173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2015), - [3175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1387), - [3177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1976), - [3179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1998), - [3181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1901), - [3183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1397), - [3185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1972), - [3187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2085), - [3189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1888), - [3191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1287), - [3193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1967), - [3195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2031), - [3197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), - [3199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1300), - [3201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1962), - [3203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2092), - [3205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1427), - [3207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1959), - [3209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1948), - [3211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1943), - [3213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1911), - [3215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1106), - [3217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), - [3219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1899), - [3221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), - [3223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), - [3225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1447), - [3227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), - [3229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), - [3231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), - [3233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), - [3235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), - [3237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), - [3239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1310), - [3241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), - [3243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), - [3245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), - [3247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), - [3249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), - [3251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), - [3253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), - [3255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), - [3257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), - [3259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2040), - [3261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1957), - [3263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1444), - [3265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), - [3267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403), - [3269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), - [3271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), - [3273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), - [3275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1346), - [3277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), - [3279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), - [3281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), - [3283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), - [3285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), - [3287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1295), - [3289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1483), - [3291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2035), - [3293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), - [3295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), - [3297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), - [3299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1480), - [3301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1513), - [3303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), - [3305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1335), - [3307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), - [3309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), - [3311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2080), - [3313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1990), - [3315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), - [3317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), - [3319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), - [3321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2055), - [3323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), - [3325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), - [3327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1997), - [3329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), - [3331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1562), - [3333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), - [3335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), - [3337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1488), - [3339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2096), - [3341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), - [3343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), - [3345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), - [3347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), - [3349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), - [3351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), - [3353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), - [3355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), - [3357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), - [3359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2084), - [3361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), - [3363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), - [3365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), - [3367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2021), - [3369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), - [3371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), - [3373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2005), - [3375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1999), - [3377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1907), - [3379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1913), - [3381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1917), - [3383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1921), - [3385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1925), - [3387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1930), - [3389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1934), - [3391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1939), - [3393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1944), - [3395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1949), - [3397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1952), - [3399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1953), - [3401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1954), - [3403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), - [3405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), - [3407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), - [3409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), - [3411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1486), - [3413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1960), - [3415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2025), - [3417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), - [3419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1965), - [3421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), - [3423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), - [3425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2079), - [3427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), - [3429] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [3431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2073), - [3433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), - [3435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), - [3437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), - [3439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), - [3441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1436), - [3443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1536), - [3445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), - [3447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), - [3449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), - [3451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), - [3453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), - [3455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), - [3457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), - [3459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), - [3461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), - [3463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), + [2702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1948), + [2704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(908), + [2706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(894), + [2708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1021), + [2710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1020), + [2712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(888), + [2714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(891), + [2716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1169), + [2718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1704), + [2720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1930), + [2722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1243), + [2724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1811), + [2726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1801), + [2728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1728), + [2730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1969), + [2732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1969), + [2734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1821), + [2736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1228), + [2738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), + [2740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1079), + [2742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1078), + [2744] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2), + [2746] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(1704), + [2749] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(1930), + [2752] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(2094), + [2755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), + [2757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1761), + [2759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1810), + [2761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1127), + [2763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1309), + [2765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), + [2767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), + [2769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), + [2771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1449), + [2773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), + [2775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), + [2777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), + [2779] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_default, 4), + [2781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1337), + [2783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1393), + [2785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), + [2787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1524), + [2789] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_case, 5, .production_id = 30), + [2791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1867), + [2793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1464), + [2795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), + [2797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), + [2799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), + [2801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), + [2803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1427), + [2805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), + [2807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1458), + [2809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), + [2811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1495), + [2813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1898), + [2815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1906), + [2817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), + [2819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), + [2821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1892), + [2823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1882), + [2825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1881), + [2827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), + [2829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), + [2831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1872), + [2833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1866), + [2835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1901), + [2837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), + [2839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), + [2841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1903), + [2843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1294), + [2845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), + [2847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), + [2849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1889), + [2851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), + [2853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), + [2855] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__regex_bracket_exp_repeat1, 2), SHIFT_REPEAT(1756), + [2858] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__regex_bracket_exp_repeat1, 2), SHIFT_REPEAT(1756), + [2861] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__regex_bracket_exp_repeat1, 2), SHIFT_REPEAT(2019), + [2864] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__regex_bracket_exp_repeat1, 2), + [2866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1886), + [2868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1314), + [2870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), + [2872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_regex_pattern, 1), + [2874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1787), + [2876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), + [2878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), + [2880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1863), + [2882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1270), + [2884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031), + [2886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), + [2888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1283), + [2890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), + [2892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1895), + [2894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1115), + [2896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1875), + [2898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), + [2900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), + [2902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1470), + [2904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), + [2906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1444), + [2908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), + [2910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), + [2912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), + [2914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1878), + [2916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_regex_pattern_repeat1, 2), + [2918] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_regex_pattern_repeat1, 2), SHIFT_REPEAT(1787), + [2921] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_regex_pattern_repeat1, 2), SHIFT_REPEAT(1810), + [2924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1756), + [2926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1756), + [2928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2019), + [2930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1836), + [2932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), + [2934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), + [2936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1706), + [2938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), + [2940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1808), + [2942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1705), + [2944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), + [2946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), + [2948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1796), + [2950] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 2), SHIFT_REPEAT(2094), + [2953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), + [2955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), + [2957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), + [2959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1788), + [2961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(451), + [2963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1831), + [2965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1848), + [2967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), + [2969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1852), + [2971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1968), + [2973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1323), + [2975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1838), + [2977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(376), + [2979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1835), + [2981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1854), + [2983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1540), + [2985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1826), + [2987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(320), + [2989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1856), + [2991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(345), + [2993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1822), + [2995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), + [2997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1506), + [2999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1335), + [3001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(248), + [3003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1846), + [3005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1536), + [3007] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__regex_char_class, 5), + [3009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__regex_char_class, 5), + [3011] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2), + [3013] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(1831), + [3016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1859), + [3018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1849), + [3020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1527), + [3022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1829), + [3024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(367), + [3026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__regex_bracket_exp, 3), + [3028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1997), + [3030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1328), + [3032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(534), + [3034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(212), + [3036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1845), + [3038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(404), + [3040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1813), + [3042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(544), + [3044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1839), + [3046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1388), + [3048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1827), + [3050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1959), + [3052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(215), + [3054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(243), + [3056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1962), + [3058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), + [3060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), + [3062] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_args_repeat1, 2), SHIFT_REPEAT(875), + [3065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1936), + [3067] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_list, 2), + [3069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), + [3071] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_param_list_repeat1, 2), SHIFT_REPEAT(1936), + [3074] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_param_list_repeat1, 2), + [3076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), + [3078] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_args, 2), + [3080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), + [3082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_list, 1), + [3084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1857), + [3086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1876), + [3088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), + [3090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1902), + [3092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), + [3094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1242), + [3096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), + [3098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), + [3100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1196), + [3102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), + [3104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), + [3106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), + [3108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), + [3110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), + [3112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), + [3114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), + [3116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1267), + [3118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), + [3120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), + [3122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), + [3124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1137), + [3126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1398), + [3128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), + [3130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), + [3132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), + [3134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), + [3136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), + [3138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1430), + [3140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1858), + [3142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), + [3144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), + [3146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1428), + [3148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2089), + [3150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2047), + [3152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), + [3154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2031), + [3156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2040), + [3158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1952), + [3160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2057), + [3162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2104), + [3164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2022), + [3166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2034), + [3168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2078), + [3170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2017), + [3172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1965), + [3174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2097), + [3176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), + [3178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2042), + [3180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2013), + [3182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1967), + [3184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2085), + [3186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1887), + [3188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1966), + [3190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2008), + [3192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1913), + [3194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), + [3196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), + [3198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2003), + [3200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1964), + [3202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1830), + [3204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1946), + [3206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2037), + [3208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1999), + [3210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1943), + [3212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), + [3214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1996), + [3216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1994), + [3218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1992), + [3220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1970), + [3222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), + [3224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2096), + [3226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1101), + [3228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1899), + [3230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), + [3232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2082), + [3234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), + [3236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), + [3238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), + [3240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), + [3242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1084), + [3244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1976), + [3246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1288), + [3248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1517), + [3250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), + [3252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1502), + [3254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), + [3256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), + [3258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), + [3260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), + [3262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1973), + [3264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), + [3266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), + [3268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1308), + [3270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1340), + [3272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), + [3274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), + [3276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), + [3278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), + [3280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1394), + [3282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1905), + [3284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1293), + [3286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), + [3288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1313), + [3290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1959), + [3292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), + [3294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), + [3296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1459), + [3298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), + [3300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1341), + [3302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), + [3304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), + [3306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), + [3308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1325), + [3310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), + [3312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), + [3314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), + [3316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), + [3318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1332), + [3320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), + [3322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), + [3324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), + [3326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1695), + [3328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), + [3330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438), + [3332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), + [3334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1997), + [3336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418), + [3338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), + [3340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1958), + [3342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), + [3344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), + [3346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2004), + [3348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1336), + [3350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), + [3352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), + [3354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), + [3356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1491), + [3358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), + [3360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), + [3362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1489), + [3364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), + [3366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1367), + [3368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), + [3370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), + [3372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), + [3374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), + [3376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), + [3378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), + [3380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1928), + [3382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), + [3384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), + [3386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), + [3388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2026), + [3390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), + [3392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1934), + [3394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1561), + [3396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1918), + [3398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1931), + [3400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1949), + [3402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1914), + [3404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1920), + [3406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1926), + [3408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1932), + [3410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1938), + [3412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1944), + [3414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1950), + [3416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1953), + [3418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1954), + [3420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1955), + [3422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), + [3424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), + [3426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), + [3428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), + [3430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1107), + [3432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1962), + [3434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2030), + [3436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1466), + [3438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), + [3440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1968), + [3442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), + [3444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), + [3446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), + [3448] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [3450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), + [3452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), + [3454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), + [3456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), + [3458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), + [3460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), + [3462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), + [3464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1478), + [3466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), + [3468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), + [3470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), + [3472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), + [3474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), + [3476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), + [3478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), + [3480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), }; #ifdef __cplusplus diff --git a/test/corpus/expression.txt b/test/corpus/expression.txt index 81a91da..6c6306d 100644 --- a/test/corpus/expression.txt +++ b/test/corpus/expression.txt @@ -467,6 +467,55 @@ Regex constant (regex (regex_pattern))))))) +==================================== +Regex charachter class +==================================== + +{ + /[[:alnum:]]/ + /[[:alpha:]]/ + /[[:blank:]]/ + /[[:cntrl:]]/ + /[[:digit:]]/ + /[[:graph:]]/ + /[[:lower:]]/ + /[[:punct:]]/ + /[[:print:]]/ + /[[:space:]]/ + /[[:upper:]]/ + /[[:xdigit:]]/ +} + +------------------------------------ + +(program + (rule + (block + (regex + (regex_pattern)) + (regex + (regex_pattern)) + (regex + (regex_pattern)) + (regex + (regex_pattern)) + (regex + (regex_pattern)) + (regex + (regex_pattern)) + (regex + (regex_pattern)) + (regex + (regex_pattern)) + (regex + (regex_pattern)) + (regex + (regex_pattern)) + (regex + (regex_pattern)) + (regex + (regex_pattern))))) + ==================================== Number ====================================