From 0965151762728ab3d16809f984b9ebb794260685 Mon Sep 17 00:00:00 2001 From: Beaglefoot Date: Sun, 5 Nov 2023 12:50:05 +0300 Subject: [PATCH] Fix empty switch default --- grammar.js | 2 +- src/grammar.json | 54 +- src/parser.c | 31875 ++++++++++++++++++------------------ test/corpus/statement.txt | 20 + 4 files changed, 15996 insertions(+), 15955 deletions(-) diff --git a/grammar.js b/grammar.js index e845f9c..8ae580c 100644 --- a/grammar.js +++ b/grammar.js @@ -174,7 +174,7 @@ module.exports = grammar({ ) ), - switch_default: $ => seq('default', ':', repeat($.comment), $._statement), + switch_default: $ => prec.right(seq('default', ':', repeat($.comment), optional($._statement))), _io_statement: $ => choice( diff --git a/src/grammar.json b/src/grammar.json index 09830ed..20139f9 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -895,28 +895,40 @@ } }, "switch_default": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "default" - }, - { - "type": "STRING", - "value": ":" - }, - { - "type": "REPEAT", - "content": { - "type": "SYMBOL", - "name": "comment" + "type": "PREC_RIGHT", + "value": 0, + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "default" + }, + { + "type": "STRING", + "value": ":" + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "comment" + } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_statement" + }, + { + "type": "BLANK" + } + ] } - }, - { - "type": "SYMBOL", - "name": "_statement" - } - ] + ] + } }, "_io_statement": { "type": "CHOICE", diff --git a/src/parser.c b/src/parser.c index 33f16f5..f81e368 100644 --- a/src/parser.c +++ b/src/parser.c @@ -1361,7 +1361,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [57] = 28, [58] = 26, [59] = 25, - [60] = 18, + [60] = 60, [61] = 61, [62] = 46, [63] = 16, @@ -1384,7 +1384,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [80] = 26, [81] = 28, [82] = 18, - [83] = 35, + [83] = 18, [84] = 16, [85] = 31, [86] = 73, @@ -1394,13 +1394,13 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [90] = 33, [91] = 34, [92] = 35, - [93] = 34, - [94] = 33, + [93] = 35, + [94] = 34, [95] = 15, [96] = 27, [97] = 17, [98] = 17, - [99] = 32, + [99] = 99, [100] = 46, [101] = 21, [102] = 22, @@ -1412,7 +1412,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [108] = 16, [109] = 18, [110] = 24, - [111] = 31, + [111] = 33, [112] = 34, [113] = 73, [114] = 33, @@ -1422,7 +1422,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [118] = 32, [119] = 31, [120] = 28, - [121] = 73, + [121] = 32, [122] = 22, [123] = 15, [124] = 28, @@ -1433,21 +1433,21 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [129] = 28, [130] = 25, [131] = 24, - [132] = 21, + [132] = 31, [133] = 13, [134] = 22, - [135] = 135, - [136] = 136, - [137] = 136, - [138] = 135, - [139] = 2, - [140] = 2, - [141] = 141, + [135] = 21, + [136] = 73, + [137] = 137, + [138] = 138, + [139] = 138, + [140] = 137, + [141] = 2, [142] = 142, [143] = 142, [144] = 142, - [145] = 145, - [146] = 142, + [145] = 142, + [146] = 2, [147] = 142, [148] = 142, [149] = 149, @@ -5555,14 +5555,14 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [136] = {.lex_state = 46}, [137] = {.lex_state = 46}, [138] = {.lex_state = 46}, - [139] = {.lex_state = 4, .external_lex_state = 2}, - [140] = {.lex_state = 4}, - [141] = {.lex_state = 46}, + [139] = {.lex_state = 46}, + [140] = {.lex_state = 46}, + [141] = {.lex_state = 4, .external_lex_state = 2}, [142] = {.lex_state = 46}, [143] = {.lex_state = 46}, [144] = {.lex_state = 46}, [145] = {.lex_state = 46}, - [146] = {.lex_state = 46}, + [146] = {.lex_state = 4}, [147] = {.lex_state = 46}, [148] = {.lex_state = 46}, [149] = {.lex_state = 46}, @@ -9054,7 +9054,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [20] = { [sym__statement] = STATE(1242), - [sym__statement_separated] = STATE(140), + [sym__statement_separated] = STATE(146), [sym__control_statement] = STATE(1242), [sym_if_statement] = STATE(1242), [sym_while_statement] = STATE(1242), @@ -9788,8 +9788,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string] = STATE(434), [sym_func_call] = STATE(434), [sym_indirect_func_call] = STATE(485), - [sym_comment] = STATE(83), - [aux_sym_if_statement_repeat1] = STATE(83), + [sym_comment] = STATE(93), + [aux_sym_if_statement_repeat1] = STATE(93), [sym_identifier] = ACTIONS(127), [anon_sym_SEMI] = ACTIONS(402), [anon_sym_if] = ACTIONS(129), @@ -10594,7 +10594,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [40] = { [sym__statement] = STATE(1123), - [sym__statement_separated] = STATE(139), + [sym__statement_separated] = STATE(141), [sym__control_statement] = STATE(1123), [sym_if_statement] = STATE(1123), [sym_while_statement] = STATE(1123), @@ -10671,7 +10671,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [41] = { [sym__statement] = STATE(1211), - [sym__statement_separated] = STATE(140), + [sym__statement_separated] = STATE(146), [sym__control_statement] = STATE(1211), [sym_if_statement] = STATE(1211), [sym_while_statement] = STATE(1211), @@ -10748,7 +10748,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [42] = { [sym__statement] = STATE(1197), - [sym__statement_separated] = STATE(140), + [sym__statement_separated] = STATE(146), [sym__control_statement] = STATE(1197), [sym_if_statement] = STATE(1197), [sym_while_statement] = STATE(1197), @@ -10825,7 +10825,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [43] = { [sym__statement] = STATE(1192), - [sym__statement_separated] = STATE(140), + [sym__statement_separated] = STATE(146), [sym__control_statement] = STATE(1192), [sym_if_statement] = STATE(1192), [sym_while_statement] = STATE(1192), @@ -11056,7 +11056,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [46] = { [sym__statement] = STATE(1130), - [sym__statement_separated] = STATE(139), + [sym__statement_separated] = STATE(141), [sym__control_statement] = STATE(1130), [sym_if_statement] = STATE(1130), [sym_while_statement] = STATE(1130), @@ -11133,7 +11133,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [47] = { [sym__statement] = STATE(1135), - [sym__statement_separated] = STATE(139), + [sym__statement_separated] = STATE(141), [sym__control_statement] = STATE(1135), [sym_if_statement] = STATE(1135), [sym_while_statement] = STATE(1135), @@ -11210,7 +11210,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [48] = { [sym__statement] = STATE(1185), - [sym__statement_separated] = STATE(140), + [sym__statement_separated] = STATE(146), [sym__control_statement] = STATE(1185), [sym_if_statement] = STATE(1185), [sym_while_statement] = STATE(1185), @@ -11287,7 +11287,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [49] = { [sym__statement] = STATE(1183), - [sym__statement_separated] = STATE(140), + [sym__statement_separated] = STATE(146), [sym__control_statement] = STATE(1183), [sym_if_statement] = STATE(1183), [sym_while_statement] = STATE(1183), @@ -11364,7 +11364,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [50] = { [sym__statement] = STATE(1181), - [sym__statement_separated] = STATE(140), + [sym__statement_separated] = STATE(146), [sym__control_statement] = STATE(1181), [sym_if_statement] = STATE(1181), [sym_while_statement] = STATE(1181), @@ -11441,7 +11441,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [51] = { [sym__statement] = STATE(1179), - [sym__statement_separated] = STATE(140), + [sym__statement_separated] = STATE(146), [sym__control_statement] = STATE(1179), [sym_if_statement] = STATE(1179), [sym_while_statement] = STATE(1179), @@ -11518,7 +11518,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [52] = { [sym__statement] = STATE(1177), - [sym__statement_separated] = STATE(140), + [sym__statement_separated] = STATE(146), [sym__control_statement] = STATE(1177), [sym_if_statement] = STATE(1177), [sym_while_statement] = STATE(1177), @@ -11903,7 +11903,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [57] = { [sym__statement] = STATE(1235), - [sym__statement_separated] = STATE(140), + [sym__statement_separated] = STATE(146), [sym__control_statement] = STATE(1235), [sym_if_statement] = STATE(1235), [sym_while_statement] = STATE(1235), @@ -11980,7 +11980,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [58] = { [sym__statement] = STATE(1217), - [sym__statement_separated] = STATE(140), + [sym__statement_separated] = STATE(146), [sym__control_statement] = STATE(1217), [sym_if_statement] = STATE(1217), [sym_while_statement] = STATE(1217), @@ -12057,7 +12057,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [59] = { [sym__statement] = STATE(1220), - [sym__statement_separated] = STATE(140), + [sym__statement_separated] = STATE(146), [sym__control_statement] = STATE(1220), [sym_if_statement] = STATE(1220), [sym_while_statement] = STATE(1220), @@ -12133,80 +12133,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(171), }, [60] = { - [sym__statement] = STATE(1137), - [sym__statement_separated] = STATE(139), - [sym__control_statement] = STATE(1137), - [sym_if_statement] = STATE(1137), - [sym_while_statement] = STATE(1137), - [sym_do_while_statement] = STATE(1137), - [sym_for_statement] = STATE(1137), - [sym_for_in_statement] = STATE(1137), - [sym_delete_statement] = STATE(1137), - [sym_exit_statement] = STATE(1137), - [sym_return_statement] = STATE(1137), - [sym_switch_statement] = STATE(1137), - [sym__io_statement] = STATE(1137), - [sym__getline_exp] = STATE(1507), - [sym_getline_input] = STATE(1507), - [sym_getline_file] = STATE(1507), - [sym_print_statement] = STATE(1658), - [sym_printf_statement] = STATE(1658), - [sym_redirected_io_statement] = STATE(1137), - [sym_piped_io_statement] = STATE(1137), - [sym_block] = STATE(1138), - [sym__exp] = STATE(1507), - [sym_ternary_exp] = STATE(1413), - [sym_binary_exp] = STATE(1413), - [sym__binary_in] = STATE(1293), - [sym_unary_exp] = STATE(1413), - [sym_update_exp] = STATE(1507), - [sym_assignment_exp] = STATE(1507), - [sym_piped_io_exp] = STATE(1507), - [sym_string_concat] = STATE(1413), - [sym_field_ref] = STATE(1025), - [sym_array_ref] = STATE(697), - [sym_regex] = STATE(1507), - [sym_regex_constant] = STATE(1507), - [sym_grouping] = STATE(1413), - [sym__primitive] = STATE(1413), - [sym_namespace] = STATE(1958), - [sym_ns_qualified_name] = STATE(676), - [sym_number] = STATE(1413), - [sym_string] = STATE(1413), - [sym_func_call] = STATE(1413), - [sym_indirect_func_call] = STATE(1507), + [sym__statement] = STATE(1671), + [sym__statement_separated] = STATE(3), + [sym__control_statement] = STATE(1671), + [sym_if_statement] = STATE(1671), + [sym_while_statement] = STATE(1671), + [sym_do_while_statement] = STATE(1671), + [sym_for_statement] = STATE(1671), + [sym_for_in_statement] = STATE(1671), + [sym_delete_statement] = STATE(1671), + [sym_exit_statement] = STATE(1671), + [sym_return_statement] = STATE(1671), + [sym_switch_statement] = STATE(1671), + [sym__io_statement] = STATE(1671), + [sym__getline_exp] = STATE(1439), + [sym_getline_input] = STATE(1439), + [sym_getline_file] = STATE(1439), + [sym_print_statement] = STATE(1657), + [sym_printf_statement] = STATE(1657), + [sym_redirected_io_statement] = STATE(1671), + [sym_piped_io_statement] = STATE(1671), + [sym__exp] = STATE(1439), + [sym_ternary_exp] = STATE(1377), + [sym_binary_exp] = STATE(1377), + [sym__binary_in] = STATE(1341), + [sym_unary_exp] = STATE(1377), + [sym_update_exp] = STATE(1439), + [sym_assignment_exp] = STATE(1439), + [sym_piped_io_exp] = STATE(1439), + [sym_string_concat] = STATE(1377), + [sym_field_ref] = STATE(646), + [sym_array_ref] = STATE(591), + [sym_regex] = STATE(1439), + [sym_regex_constant] = STATE(1439), + [sym_grouping] = STATE(1377), + [sym__primitive] = STATE(1377), + [sym_namespace] = STATE(1881), + [sym_ns_qualified_name] = STATE(586), + [sym_number] = STATE(1377), + [sym_string] = STATE(1377), + [sym_func_call] = STATE(1377), + [sym_indirect_func_call] = STATE(1439), [sym_comment] = STATE(1239), [aux_sym_if_statement_repeat1] = STATE(1239), - [sym_identifier] = ACTIONS(450), - [anon_sym_SEMI] = ACTIONS(342), - [anon_sym_if] = ACTIONS(452), - [anon_sym_LPAREN] = ACTIONS(454), - [anon_sym_while] = ACTIONS(456), - [anon_sym_do] = ACTIONS(49), - [anon_sym_for] = ACTIONS(458), - [sym_break_statement] = ACTIONS(344), - [sym_continue_statement] = ACTIONS(344), - [anon_sym_delete] = ACTIONS(55), - [anon_sym_exit] = ACTIONS(460), - [anon_sym_return] = ACTIONS(462), - [anon_sym_switch] = ACTIONS(61), - [anon_sym_LBRACE] = ACTIONS(312), - [anon_sym_getline] = ACTIONS(464), - [sym_next_statement] = ACTIONS(344), - [sym_nextfile_statement] = ACTIONS(344), - [anon_sym_print] = ACTIONS(466), - [anon_sym_printf] = ACTIONS(468), - [anon_sym_SLASH] = ACTIONS(470), - [anon_sym_PLUS] = ACTIONS(472), - [anon_sym_DASH] = ACTIONS(472), - [anon_sym_BANG] = ACTIONS(474), - [anon_sym_PLUS_PLUS] = ACTIONS(476), - [anon_sym_DASH_DASH] = ACTIONS(476), - [anon_sym_DOLLAR] = ACTIONS(478), - [anon_sym_AT] = ACTIONS(480), - [aux_sym_number_token1] = ACTIONS(79), - [aux_sym_number_token2] = ACTIONS(482), - [anon_sym_DQUOTE] = ACTIONS(484), + [sym_identifier] = ACTIONS(85), + [anon_sym_if] = ACTIONS(87), + [anon_sym_LPAREN] = ACTIONS(266), + [anon_sym_while] = ACTIONS(91), + [anon_sym_do] = ACTIONS(93), + [anon_sym_for] = ACTIONS(95), + [sym_break_statement] = ACTIONS(524), + [sym_continue_statement] = ACTIONS(524), + [anon_sym_delete] = ACTIONS(99), + [anon_sym_exit] = ACTIONS(101), + [anon_sym_return] = ACTIONS(103), + [anon_sym_switch] = ACTIONS(105), + [anon_sym_RBRACE] = ACTIONS(526), + [anon_sym_case] = ACTIONS(528), + [anon_sym_default] = ACTIONS(528), + [anon_sym_getline] = ACTIONS(107), + [sym_next_statement] = ACTIONS(524), + [sym_nextfile_statement] = ACTIONS(524), + [anon_sym_print] = ACTIONS(109), + [anon_sym_printf] = ACTIONS(111), + [anon_sym_SLASH] = ACTIONS(272), + [anon_sym_PLUS] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(115), + [anon_sym_BANG] = ACTIONS(274), + [anon_sym_PLUS_PLUS] = ACTIONS(276), + [anon_sym_DASH_DASH] = ACTIONS(276), + [anon_sym_DOLLAR] = ACTIONS(278), + [anon_sym_AT] = ACTIONS(280), + [aux_sym_number_token1] = ACTIONS(123), + [aux_sym_number_token2] = ACTIONS(282), + [anon_sym_DQUOTE] = ACTIONS(284), [anon_sym_POUND] = ACTIONS(171), }, [61] = { @@ -12259,18 +12259,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(91), [anon_sym_do] = ACTIONS(93), [anon_sym_for] = ACTIONS(95), - [sym_break_statement] = ACTIONS(524), - [sym_continue_statement] = ACTIONS(524), + [sym_break_statement] = ACTIONS(530), + [sym_continue_statement] = ACTIONS(530), [anon_sym_delete] = ACTIONS(99), [anon_sym_exit] = ACTIONS(101), [anon_sym_return] = ACTIONS(103), [anon_sym_switch] = ACTIONS(105), - [anon_sym_RBRACE] = ACTIONS(526), - [anon_sym_case] = ACTIONS(528), - [anon_sym_default] = ACTIONS(528), + [anon_sym_RBRACE] = ACTIONS(532), + [anon_sym_case] = ACTIONS(534), + [anon_sym_default] = ACTIONS(534), [anon_sym_getline] = ACTIONS(107), - [sym_next_statement] = ACTIONS(524), - [sym_nextfile_statement] = ACTIONS(524), + [sym_next_statement] = ACTIONS(530), + [sym_nextfile_statement] = ACTIONS(530), [anon_sym_print] = ACTIONS(109), [anon_sym_printf] = ACTIONS(111), [anon_sym_SLASH] = ACTIONS(272), @@ -12332,22 +12332,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = STATE(54), [aux_sym_if_statement_repeat1] = STATE(54), [sym_identifier] = ACTIONS(127), - [anon_sym_SEMI] = ACTIONS(530), + [anon_sym_SEMI] = ACTIONS(536), [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(532), - [sym_continue_statement] = ACTIONS(532), + [sym_break_statement] = ACTIONS(538), + [sym_continue_statement] = ACTIONS(538), [anon_sym_delete] = ACTIONS(99), [anon_sym_exit] = ACTIONS(139), [anon_sym_return] = ACTIONS(141), [anon_sym_switch] = ACTIONS(105), [anon_sym_LBRACE] = ACTIONS(270), [anon_sym_getline] = ACTIONS(147), - [sym_next_statement] = ACTIONS(532), - [sym_nextfile_statement] = ACTIONS(532), + [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), @@ -12409,22 +12409,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = STATE(1239), [aux_sym_if_statement_repeat1] = STATE(1239), [sym_identifier] = ACTIONS(127), - [anon_sym_SEMI] = ACTIONS(534), + [anon_sym_SEMI] = ACTIONS(540), [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(536), - [sym_continue_statement] = ACTIONS(536), + [sym_break_statement] = ACTIONS(542), + [sym_continue_statement] = ACTIONS(542), [anon_sym_delete] = ACTIONS(99), [anon_sym_exit] = ACTIONS(139), [anon_sym_return] = ACTIONS(141), [anon_sym_switch] = ACTIONS(105), [anon_sym_LBRACE] = ACTIONS(270), [anon_sym_getline] = ACTIONS(147), - [sym_next_statement] = ACTIONS(536), - [sym_nextfile_statement] = ACTIONS(536), + [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), @@ -12488,7 +12488,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(39), [anon_sym_SEMI] = ACTIONS(410), [anon_sym_if] = ACTIONS(43), - [anon_sym_LPAREN] = ACTIONS(538), + [anon_sym_LPAREN] = ACTIONS(544), [anon_sym_while] = ACTIONS(47), [anon_sym_do] = ACTIONS(49), [anon_sym_for] = ACTIONS(51), @@ -12504,14 +12504,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nextfile_statement] = ACTIONS(412), [anon_sym_print] = ACTIONS(65), [anon_sym_printf] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(540), + [anon_sym_SLASH] = ACTIONS(546), [anon_sym_PLUS] = ACTIONS(71), [anon_sym_DASH] = ACTIONS(71), - [anon_sym_BANG] = ACTIONS(542), - [anon_sym_PLUS_PLUS] = ACTIONS(544), - [anon_sym_DASH_DASH] = ACTIONS(544), - [anon_sym_DOLLAR] = ACTIONS(546), - [anon_sym_AT] = ACTIONS(548), + [anon_sym_BANG] = ACTIONS(548), + [anon_sym_PLUS_PLUS] = ACTIONS(550), + [anon_sym_DASH_DASH] = ACTIONS(550), + [anon_sym_DOLLAR] = ACTIONS(552), + [anon_sym_AT] = ACTIONS(554), [aux_sym_number_token1] = ACTIONS(79), [aux_sym_number_token2] = ACTIONS(482), [anon_sym_DQUOTE] = ACTIONS(484), @@ -12519,7 +12519,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [65] = { [sym__statement] = STATE(1222), - [sym__statement_separated] = STATE(140), + [sym__statement_separated] = STATE(146), [sym__control_statement] = STATE(1222), [sym_if_statement] = STATE(1222), [sym_while_statement] = STATE(1222), @@ -12563,22 +12563,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = STATE(1239), [aux_sym_if_statement_repeat1] = STATE(1239), [sym_identifier] = ACTIONS(346), - [anon_sym_SEMI] = ACTIONS(550), + [anon_sym_SEMI] = ACTIONS(556), [anon_sym_if] = ACTIONS(348), [anon_sym_LPAREN] = ACTIONS(350), [anon_sym_while] = ACTIONS(352), [anon_sym_do] = ACTIONS(93), [anon_sym_for] = ACTIONS(354), - [sym_break_statement] = ACTIONS(552), - [sym_continue_statement] = ACTIONS(552), + [sym_break_statement] = ACTIONS(558), + [sym_continue_statement] = ACTIONS(558), [anon_sym_delete] = ACTIONS(99), [anon_sym_exit] = ACTIONS(356), [anon_sym_return] = ACTIONS(358), [anon_sym_switch] = ACTIONS(105), [anon_sym_LBRACE] = ACTIONS(270), [anon_sym_getline] = ACTIONS(360), - [sym_next_statement] = ACTIONS(552), - [sym_nextfile_statement] = ACTIONS(552), + [sym_next_statement] = ACTIONS(558), + [sym_nextfile_statement] = ACTIONS(558), [anon_sym_print] = ACTIONS(362), [anon_sym_printf] = ACTIONS(364), [anon_sym_SLASH] = ACTIONS(366), @@ -12596,7 +12596,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [66] = { [sym__statement] = STATE(1172), - [sym__statement_separated] = STATE(140), + [sym__statement_separated] = STATE(146), [sym__control_statement] = STATE(1172), [sym_if_statement] = STATE(1172), [sym_while_statement] = STATE(1172), @@ -12719,7 +12719,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(39), [anon_sym_SEMI] = ACTIONS(494), [anon_sym_if] = ACTIONS(43), - [anon_sym_LPAREN] = ACTIONS(538), + [anon_sym_LPAREN] = ACTIONS(544), [anon_sym_while] = ACTIONS(47), [anon_sym_do] = ACTIONS(49), [anon_sym_for] = ACTIONS(51), @@ -12735,14 +12735,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nextfile_statement] = ACTIONS(496), [anon_sym_print] = ACTIONS(65), [anon_sym_printf] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(540), + [anon_sym_SLASH] = ACTIONS(546), [anon_sym_PLUS] = ACTIONS(71), [anon_sym_DASH] = ACTIONS(71), - [anon_sym_BANG] = ACTIONS(542), - [anon_sym_PLUS_PLUS] = ACTIONS(544), - [anon_sym_DASH_DASH] = ACTIONS(544), - [anon_sym_DOLLAR] = ACTIONS(546), - [anon_sym_AT] = ACTIONS(548), + [anon_sym_BANG] = ACTIONS(548), + [anon_sym_PLUS_PLUS] = ACTIONS(550), + [anon_sym_DASH_DASH] = ACTIONS(550), + [anon_sym_DOLLAR] = ACTIONS(552), + [anon_sym_AT] = ACTIONS(554), [aux_sym_number_token1] = ACTIONS(79), [aux_sym_number_token2] = ACTIONS(482), [anon_sym_DQUOTE] = ACTIONS(484), @@ -12796,7 +12796,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(39), [anon_sym_SEMI] = ACTIONS(296), [anon_sym_if] = ACTIONS(43), - [anon_sym_LPAREN] = ACTIONS(538), + [anon_sym_LPAREN] = ACTIONS(544), [anon_sym_while] = ACTIONS(47), [anon_sym_do] = ACTIONS(49), [anon_sym_for] = ACTIONS(51), @@ -12812,14 +12812,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nextfile_statement] = ACTIONS(306), [anon_sym_print] = ACTIONS(65), [anon_sym_printf] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(540), + [anon_sym_SLASH] = ACTIONS(546), [anon_sym_PLUS] = ACTIONS(71), [anon_sym_DASH] = ACTIONS(71), - [anon_sym_BANG] = ACTIONS(542), - [anon_sym_PLUS_PLUS] = ACTIONS(544), - [anon_sym_DASH_DASH] = ACTIONS(544), - [anon_sym_DOLLAR] = ACTIONS(546), - [anon_sym_AT] = ACTIONS(548), + [anon_sym_BANG] = ACTIONS(548), + [anon_sym_PLUS_PLUS] = ACTIONS(550), + [anon_sym_DASH_DASH] = ACTIONS(550), + [anon_sym_DOLLAR] = ACTIONS(552), + [anon_sym_AT] = ACTIONS(554), [aux_sym_number_token1] = ACTIONS(79), [aux_sym_number_token2] = ACTIONS(482), [anon_sym_DQUOTE] = ACTIONS(484), @@ -12871,22 +12871,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = STATE(1239), [aux_sym_if_statement_repeat1] = STATE(1239), [sym_identifier] = ACTIONS(127), - [anon_sym_SEMI] = ACTIONS(554), + [anon_sym_SEMI] = ACTIONS(560), [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(556), - [sym_continue_statement] = ACTIONS(556), + [sym_break_statement] = ACTIONS(562), + [sym_continue_statement] = ACTIONS(562), [anon_sym_delete] = ACTIONS(99), [anon_sym_exit] = ACTIONS(139), [anon_sym_return] = ACTIONS(141), [anon_sym_switch] = ACTIONS(105), [anon_sym_LBRACE] = ACTIONS(270), [anon_sym_getline] = ACTIONS(147), - [sym_next_statement] = ACTIONS(556), - [sym_nextfile_statement] = ACTIONS(556), + [sym_next_statement] = ACTIONS(562), + [sym_nextfile_statement] = ACTIONS(562), [anon_sym_print] = ACTIONS(149), [anon_sym_printf] = ACTIONS(151), [anon_sym_SLASH] = ACTIONS(153), @@ -12904,7 +12904,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [70] = { [sym__statement] = STATE(1226), - [sym__statement_separated] = STATE(140), + [sym__statement_separated] = STATE(146), [sym__control_statement] = STATE(1226), [sym_if_statement] = STATE(1226), [sym_while_statement] = STATE(1226), @@ -12948,22 +12948,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = STATE(82), [aux_sym_if_statement_repeat1] = STATE(82), [sym_identifier] = ACTIONS(346), - [anon_sym_SEMI] = ACTIONS(558), + [anon_sym_SEMI] = ACTIONS(564), [anon_sym_if] = ACTIONS(348), [anon_sym_LPAREN] = ACTIONS(350), [anon_sym_while] = ACTIONS(352), [anon_sym_do] = ACTIONS(93), [anon_sym_for] = ACTIONS(354), - [sym_break_statement] = ACTIONS(560), - [sym_continue_statement] = ACTIONS(560), + [sym_break_statement] = ACTIONS(566), + [sym_continue_statement] = ACTIONS(566), [anon_sym_delete] = ACTIONS(99), [anon_sym_exit] = ACTIONS(356), [anon_sym_return] = ACTIONS(358), [anon_sym_switch] = ACTIONS(105), [anon_sym_LBRACE] = ACTIONS(270), [anon_sym_getline] = ACTIONS(360), - [sym_next_statement] = ACTIONS(560), - [sym_nextfile_statement] = ACTIONS(560), + [sym_next_statement] = ACTIONS(566), + [sym_nextfile_statement] = ACTIONS(566), [anon_sym_print] = ACTIONS(362), [anon_sym_printf] = ACTIONS(364), [anon_sym_SLASH] = ACTIONS(366), @@ -12981,7 +12981,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [71] = { [sym__statement] = STATE(1228), - [sym__statement_separated] = STATE(140), + [sym__statement_separated] = STATE(146), [sym__control_statement] = STATE(1228), [sym_if_statement] = STATE(1228), [sym_while_statement] = STATE(1228), @@ -13025,22 +13025,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = STATE(84), [aux_sym_if_statement_repeat1] = STATE(84), [sym_identifier] = ACTIONS(346), - [anon_sym_SEMI] = ACTIONS(562), + [anon_sym_SEMI] = ACTIONS(568), [anon_sym_if] = ACTIONS(348), [anon_sym_LPAREN] = ACTIONS(350), [anon_sym_while] = ACTIONS(352), [anon_sym_do] = ACTIONS(93), [anon_sym_for] = ACTIONS(354), - [sym_break_statement] = ACTIONS(564), - [sym_continue_statement] = ACTIONS(564), + [sym_break_statement] = ACTIONS(570), + [sym_continue_statement] = ACTIONS(570), [anon_sym_delete] = ACTIONS(99), [anon_sym_exit] = ACTIONS(356), [anon_sym_return] = ACTIONS(358), [anon_sym_switch] = ACTIONS(105), [anon_sym_LBRACE] = ACTIONS(270), [anon_sym_getline] = ACTIONS(360), - [sym_next_statement] = ACTIONS(564), - [sym_nextfile_statement] = ACTIONS(564), + [sym_next_statement] = ACTIONS(570), + [sym_nextfile_statement] = ACTIONS(570), [anon_sym_print] = ACTIONS(362), [anon_sym_printf] = ACTIONS(364), [anon_sym_SLASH] = ACTIONS(366), @@ -13104,7 +13104,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(39), [anon_sym_SEMI] = ACTIONS(342), [anon_sym_if] = ACTIONS(43), - [anon_sym_LPAREN] = ACTIONS(538), + [anon_sym_LPAREN] = ACTIONS(544), [anon_sym_while] = ACTIONS(47), [anon_sym_do] = ACTIONS(49), [anon_sym_for] = ACTIONS(51), @@ -13120,14 +13120,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nextfile_statement] = ACTIONS(344), [anon_sym_print] = ACTIONS(65), [anon_sym_printf] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(540), + [anon_sym_SLASH] = ACTIONS(546), [anon_sym_PLUS] = ACTIONS(71), [anon_sym_DASH] = ACTIONS(71), - [anon_sym_BANG] = ACTIONS(542), - [anon_sym_PLUS_PLUS] = ACTIONS(544), - [anon_sym_DASH_DASH] = ACTIONS(544), - [anon_sym_DOLLAR] = ACTIONS(546), - [anon_sym_AT] = ACTIONS(548), + [anon_sym_BANG] = ACTIONS(548), + [anon_sym_PLUS_PLUS] = ACTIONS(550), + [anon_sym_DASH_DASH] = ACTIONS(550), + [anon_sym_DOLLAR] = ACTIONS(552), + [anon_sym_AT] = ACTIONS(554), [aux_sym_number_token1] = ACTIONS(79), [aux_sym_number_token2] = ACTIONS(482), [anon_sym_DQUOTE] = ACTIONS(484), @@ -13179,32 +13179,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = STATE(1239), [aux_sym_if_statement_repeat1] = STATE(1239), [sym_identifier] = ACTIONS(39), - [anon_sym_SEMI] = ACTIONS(566), + [anon_sym_SEMI] = ACTIONS(572), [anon_sym_if] = ACTIONS(43), - [anon_sym_LPAREN] = ACTIONS(538), + [anon_sym_LPAREN] = ACTIONS(544), [anon_sym_while] = ACTIONS(47), [anon_sym_do] = ACTIONS(49), [anon_sym_for] = ACTIONS(51), - [sym_break_statement] = ACTIONS(568), - [sym_continue_statement] = ACTIONS(568), + [sym_break_statement] = ACTIONS(574), + [sym_continue_statement] = ACTIONS(574), [anon_sym_delete] = ACTIONS(55), [anon_sym_exit] = ACTIONS(57), [anon_sym_return] = ACTIONS(59), [anon_sym_switch] = ACTIONS(61), [anon_sym_LBRACE] = ACTIONS(312), [anon_sym_getline] = ACTIONS(63), - [sym_next_statement] = ACTIONS(568), - [sym_nextfile_statement] = ACTIONS(568), + [sym_next_statement] = ACTIONS(574), + [sym_nextfile_statement] = ACTIONS(574), [anon_sym_print] = ACTIONS(65), [anon_sym_printf] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(540), + [anon_sym_SLASH] = ACTIONS(546), [anon_sym_PLUS] = ACTIONS(71), [anon_sym_DASH] = ACTIONS(71), - [anon_sym_BANG] = ACTIONS(542), - [anon_sym_PLUS_PLUS] = ACTIONS(544), - [anon_sym_DASH_DASH] = ACTIONS(544), - [anon_sym_DOLLAR] = ACTIONS(546), - [anon_sym_AT] = ACTIONS(548), + [anon_sym_BANG] = ACTIONS(548), + [anon_sym_PLUS_PLUS] = ACTIONS(550), + [anon_sym_DASH_DASH] = ACTIONS(550), + [anon_sym_DOLLAR] = ACTIONS(552), + [anon_sym_AT] = ACTIONS(554), [aux_sym_number_token1] = ACTIONS(79), [aux_sym_number_token2] = ACTIONS(482), [anon_sym_DQUOTE] = ACTIONS(484), @@ -13258,7 +13258,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(39), [anon_sym_SEMI] = ACTIONS(378), [anon_sym_if] = ACTIONS(43), - [anon_sym_LPAREN] = ACTIONS(538), + [anon_sym_LPAREN] = ACTIONS(544), [anon_sym_while] = ACTIONS(47), [anon_sym_do] = ACTIONS(49), [anon_sym_for] = ACTIONS(51), @@ -13274,14 +13274,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nextfile_statement] = ACTIONS(380), [anon_sym_print] = ACTIONS(65), [anon_sym_printf] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(540), + [anon_sym_SLASH] = ACTIONS(546), [anon_sym_PLUS] = ACTIONS(71), [anon_sym_DASH] = ACTIONS(71), - [anon_sym_BANG] = ACTIONS(542), - [anon_sym_PLUS_PLUS] = ACTIONS(544), - [anon_sym_DASH_DASH] = ACTIONS(544), - [anon_sym_DOLLAR] = ACTIONS(546), - [anon_sym_AT] = ACTIONS(548), + [anon_sym_BANG] = ACTIONS(548), + [anon_sym_PLUS_PLUS] = ACTIONS(550), + [anon_sym_DASH_DASH] = ACTIONS(550), + [anon_sym_DOLLAR] = ACTIONS(552), + [anon_sym_AT] = ACTIONS(554), [aux_sym_number_token1] = ACTIONS(79), [aux_sym_number_token2] = ACTIONS(482), [anon_sym_DQUOTE] = ACTIONS(484), @@ -13289,7 +13289,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [75] = { [sym__statement] = STATE(1230), - [sym__statement_separated] = STATE(140), + [sym__statement_separated] = STATE(146), [sym__control_statement] = STATE(1230), [sym_if_statement] = STATE(1230), [sym_while_statement] = STATE(1230), @@ -13333,22 +13333,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = STATE(1239), [aux_sym_if_statement_repeat1] = STATE(1239), [sym_identifier] = ACTIONS(346), - [anon_sym_SEMI] = ACTIONS(570), + [anon_sym_SEMI] = ACTIONS(576), [anon_sym_if] = ACTIONS(348), [anon_sym_LPAREN] = ACTIONS(350), [anon_sym_while] = ACTIONS(352), [anon_sym_do] = ACTIONS(93), [anon_sym_for] = ACTIONS(354), - [sym_break_statement] = ACTIONS(572), - [sym_continue_statement] = ACTIONS(572), + [sym_break_statement] = ACTIONS(578), + [sym_continue_statement] = ACTIONS(578), [anon_sym_delete] = ACTIONS(99), [anon_sym_exit] = ACTIONS(356), [anon_sym_return] = ACTIONS(358), [anon_sym_switch] = ACTIONS(105), [anon_sym_LBRACE] = ACTIONS(270), [anon_sym_getline] = ACTIONS(360), - [sym_next_statement] = ACTIONS(572), - [sym_nextfile_statement] = ACTIONS(572), + [sym_next_statement] = ACTIONS(578), + [sym_nextfile_statement] = ACTIONS(578), [anon_sym_print] = ACTIONS(362), [anon_sym_printf] = ACTIONS(364), [anon_sym_SLASH] = ACTIONS(366), @@ -13412,7 +13412,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(39), [anon_sym_SEMI] = ACTIONS(382), [anon_sym_if] = ACTIONS(43), - [anon_sym_LPAREN] = ACTIONS(538), + [anon_sym_LPAREN] = ACTIONS(544), [anon_sym_while] = ACTIONS(47), [anon_sym_do] = ACTIONS(49), [anon_sym_for] = ACTIONS(51), @@ -13428,14 +13428,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nextfile_statement] = ACTIONS(384), [anon_sym_print] = ACTIONS(65), [anon_sym_printf] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(540), + [anon_sym_SLASH] = ACTIONS(546), [anon_sym_PLUS] = ACTIONS(71), [anon_sym_DASH] = ACTIONS(71), - [anon_sym_BANG] = ACTIONS(542), - [anon_sym_PLUS_PLUS] = ACTIONS(544), - [anon_sym_DASH_DASH] = ACTIONS(544), - [anon_sym_DOLLAR] = ACTIONS(546), - [anon_sym_AT] = ACTIONS(548), + [anon_sym_BANG] = ACTIONS(548), + [anon_sym_PLUS_PLUS] = ACTIONS(550), + [anon_sym_DASH_DASH] = ACTIONS(550), + [anon_sym_DOLLAR] = ACTIONS(552), + [anon_sym_AT] = ACTIONS(554), [aux_sym_number_token1] = ACTIONS(79), [aux_sym_number_token2] = ACTIONS(482), [anon_sym_DQUOTE] = ACTIONS(484), @@ -13489,7 +13489,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(39), [anon_sym_SEMI] = ACTIONS(386), [anon_sym_if] = ACTIONS(43), - [anon_sym_LPAREN] = ACTIONS(538), + [anon_sym_LPAREN] = ACTIONS(544), [anon_sym_while] = ACTIONS(47), [anon_sym_do] = ACTIONS(49), [anon_sym_for] = ACTIONS(51), @@ -13505,14 +13505,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nextfile_statement] = ACTIONS(388), [anon_sym_print] = ACTIONS(65), [anon_sym_printf] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(540), + [anon_sym_SLASH] = ACTIONS(546), [anon_sym_PLUS] = ACTIONS(71), [anon_sym_DASH] = ACTIONS(71), - [anon_sym_BANG] = ACTIONS(542), - [anon_sym_PLUS_PLUS] = ACTIONS(544), - [anon_sym_DASH_DASH] = ACTIONS(544), - [anon_sym_DOLLAR] = ACTIONS(546), - [anon_sym_AT] = ACTIONS(548), + [anon_sym_BANG] = ACTIONS(548), + [anon_sym_PLUS_PLUS] = ACTIONS(550), + [anon_sym_DASH_DASH] = ACTIONS(550), + [anon_sym_DOLLAR] = ACTIONS(552), + [anon_sym_AT] = ACTIONS(554), [aux_sym_number_token1] = ACTIONS(79), [aux_sym_number_token2] = ACTIONS(482), [anon_sym_DQUOTE] = ACTIONS(484), @@ -13566,7 +13566,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(39), [anon_sym_SEMI] = ACTIONS(390), [anon_sym_if] = ACTIONS(43), - [anon_sym_LPAREN] = ACTIONS(538), + [anon_sym_LPAREN] = ACTIONS(544), [anon_sym_while] = ACTIONS(47), [anon_sym_do] = ACTIONS(49), [anon_sym_for] = ACTIONS(51), @@ -13582,14 +13582,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nextfile_statement] = ACTIONS(392), [anon_sym_print] = ACTIONS(65), [anon_sym_printf] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(540), + [anon_sym_SLASH] = ACTIONS(546), [anon_sym_PLUS] = ACTIONS(71), [anon_sym_DASH] = ACTIONS(71), - [anon_sym_BANG] = ACTIONS(542), - [anon_sym_PLUS_PLUS] = ACTIONS(544), - [anon_sym_DASH_DASH] = ACTIONS(544), - [anon_sym_DOLLAR] = ACTIONS(546), - [anon_sym_AT] = ACTIONS(548), + [anon_sym_BANG] = ACTIONS(548), + [anon_sym_PLUS_PLUS] = ACTIONS(550), + [anon_sym_DASH_DASH] = ACTIONS(550), + [anon_sym_DOLLAR] = ACTIONS(552), + [anon_sym_AT] = ACTIONS(554), [aux_sym_number_token1] = ACTIONS(79), [aux_sym_number_token2] = ACTIONS(482), [anon_sym_DQUOTE] = ACTIONS(484), @@ -13643,7 +13643,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(39), [anon_sym_SEMI] = ACTIONS(394), [anon_sym_if] = ACTIONS(43), - [anon_sym_LPAREN] = ACTIONS(538), + [anon_sym_LPAREN] = ACTIONS(544), [anon_sym_while] = ACTIONS(47), [anon_sym_do] = ACTIONS(49), [anon_sym_for] = ACTIONS(51), @@ -13659,14 +13659,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nextfile_statement] = ACTIONS(396), [anon_sym_print] = ACTIONS(65), [anon_sym_printf] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(540), + [anon_sym_SLASH] = ACTIONS(546), [anon_sym_PLUS] = ACTIONS(71), [anon_sym_DASH] = ACTIONS(71), - [anon_sym_BANG] = ACTIONS(542), - [anon_sym_PLUS_PLUS] = ACTIONS(544), - [anon_sym_DASH_DASH] = ACTIONS(544), - [anon_sym_DOLLAR] = ACTIONS(546), - [anon_sym_AT] = ACTIONS(548), + [anon_sym_BANG] = ACTIONS(548), + [anon_sym_PLUS_PLUS] = ACTIONS(550), + [anon_sym_DASH_DASH] = ACTIONS(550), + [anon_sym_DOLLAR] = ACTIONS(552), + [anon_sym_AT] = ACTIONS(554), [aux_sym_number_token1] = ACTIONS(79), [aux_sym_number_token2] = ACTIONS(482), [anon_sym_DQUOTE] = ACTIONS(484), @@ -13720,7 +13720,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(39), [anon_sym_SEMI] = ACTIONS(398), [anon_sym_if] = ACTIONS(43), - [anon_sym_LPAREN] = ACTIONS(538), + [anon_sym_LPAREN] = ACTIONS(544), [anon_sym_while] = ACTIONS(47), [anon_sym_do] = ACTIONS(49), [anon_sym_for] = ACTIONS(51), @@ -13736,14 +13736,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nextfile_statement] = ACTIONS(400), [anon_sym_print] = ACTIONS(65), [anon_sym_printf] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(540), + [anon_sym_SLASH] = ACTIONS(546), [anon_sym_PLUS] = ACTIONS(71), [anon_sym_DASH] = ACTIONS(71), - [anon_sym_BANG] = ACTIONS(542), - [anon_sym_PLUS_PLUS] = ACTIONS(544), - [anon_sym_DASH_DASH] = ACTIONS(544), - [anon_sym_DOLLAR] = ACTIONS(546), - [anon_sym_AT] = ACTIONS(548), + [anon_sym_BANG] = ACTIONS(548), + [anon_sym_PLUS_PLUS] = ACTIONS(550), + [anon_sym_DASH_DASH] = ACTIONS(550), + [anon_sym_DOLLAR] = ACTIONS(552), + [anon_sym_AT] = ACTIONS(554), [aux_sym_number_token1] = ACTIONS(79), [aux_sym_number_token2] = ACTIONS(482), [anon_sym_DQUOTE] = ACTIONS(484), @@ -13797,7 +13797,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(39), [anon_sym_SEMI] = ACTIONS(406), [anon_sym_if] = ACTIONS(43), - [anon_sym_LPAREN] = ACTIONS(538), + [anon_sym_LPAREN] = ACTIONS(544), [anon_sym_while] = ACTIONS(47), [anon_sym_do] = ACTIONS(49), [anon_sym_for] = ACTIONS(51), @@ -13813,14 +13813,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nextfile_statement] = ACTIONS(408), [anon_sym_print] = ACTIONS(65), [anon_sym_printf] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(540), + [anon_sym_SLASH] = ACTIONS(546), [anon_sym_PLUS] = ACTIONS(71), [anon_sym_DASH] = ACTIONS(71), - [anon_sym_BANG] = ACTIONS(542), - [anon_sym_PLUS_PLUS] = ACTIONS(544), - [anon_sym_DASH_DASH] = ACTIONS(544), - [anon_sym_DOLLAR] = ACTIONS(546), - [anon_sym_AT] = ACTIONS(548), + [anon_sym_BANG] = ACTIONS(548), + [anon_sym_PLUS_PLUS] = ACTIONS(550), + [anon_sym_DASH_DASH] = ACTIONS(550), + [anon_sym_DOLLAR] = ACTIONS(552), + [anon_sym_AT] = ACTIONS(554), [aux_sym_number_token1] = ACTIONS(79), [aux_sym_number_token2] = ACTIONS(482), [anon_sym_DQUOTE] = ACTIONS(484), @@ -13828,7 +13828,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [82] = { [sym__statement] = STATE(1232), - [sym__statement_separated] = STATE(140), + [sym__statement_separated] = STATE(146), [sym__control_statement] = STATE(1232), [sym_if_statement] = STATE(1232), [sym_while_statement] = STATE(1232), @@ -13872,22 +13872,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = STATE(1239), [aux_sym_if_statement_repeat1] = STATE(1239), [sym_identifier] = ACTIONS(346), - [anon_sym_SEMI] = ACTIONS(554), + [anon_sym_SEMI] = ACTIONS(560), [anon_sym_if] = ACTIONS(348), [anon_sym_LPAREN] = ACTIONS(350), [anon_sym_while] = ACTIONS(352), [anon_sym_do] = ACTIONS(93), [anon_sym_for] = ACTIONS(354), - [sym_break_statement] = ACTIONS(556), - [sym_continue_statement] = ACTIONS(556), + [sym_break_statement] = ACTIONS(562), + [sym_continue_statement] = ACTIONS(562), [anon_sym_delete] = ACTIONS(99), [anon_sym_exit] = ACTIONS(356), [anon_sym_return] = ACTIONS(358), [anon_sym_switch] = ACTIONS(105), [anon_sym_LBRACE] = ACTIONS(270), [anon_sym_getline] = ACTIONS(360), - [sym_next_statement] = ACTIONS(556), - [sym_nextfile_statement] = ACTIONS(556), + [sym_next_statement] = ACTIONS(562), + [sym_nextfile_statement] = ACTIONS(562), [anon_sym_print] = ACTIONS(362), [anon_sym_printf] = ACTIONS(364), [anon_sym_SLASH] = ACTIONS(366), @@ -13904,85 +13904,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(171), }, [83] = { - [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(485), - [sym_getline_input] = STATE(485), - [sym_getline_file] = STATE(485), - [sym_print_statement] = STATE(852), - [sym_printf_statement] = STATE(852), - [sym_redirected_io_statement] = STATE(1185), - [sym_piped_io_statement] = STATE(1185), - [sym_block] = STATE(1186), - [sym__exp] = STATE(485), - [sym_ternary_exp] = STATE(434), - [sym_binary_exp] = STATE(434), - [sym__binary_in] = STATE(432), - [sym_unary_exp] = STATE(434), - [sym_update_exp] = STATE(485), - [sym_assignment_exp] = STATE(485), - [sym_piped_io_exp] = STATE(485), - [sym_string_concat] = STATE(434), - [sym_field_ref] = STATE(268), - [sym_array_ref] = STATE(253), - [sym_regex] = STATE(485), - [sym_regex_constant] = STATE(485), - [sym_grouping] = STATE(434), - [sym__primitive] = STATE(434), - [sym_namespace] = STATE(1881), - [sym_ns_qualified_name] = STATE(239), - [sym_number] = STATE(434), - [sym_string] = STATE(434), - [sym_func_call] = STATE(434), - [sym_indirect_func_call] = STATE(485), + [sym__statement] = STATE(1137), + [sym__statement_separated] = STATE(141), + [sym__control_statement] = STATE(1137), + [sym_if_statement] = STATE(1137), + [sym_while_statement] = STATE(1137), + [sym_do_while_statement] = STATE(1137), + [sym_for_statement] = STATE(1137), + [sym_for_in_statement] = STATE(1137), + [sym_delete_statement] = STATE(1137), + [sym_exit_statement] = STATE(1137), + [sym_return_statement] = STATE(1137), + [sym_switch_statement] = STATE(1137), + [sym__io_statement] = STATE(1137), + [sym__getline_exp] = STATE(1507), + [sym_getline_input] = STATE(1507), + [sym_getline_file] = STATE(1507), + [sym_print_statement] = STATE(1658), + [sym_printf_statement] = STATE(1658), + [sym_redirected_io_statement] = STATE(1137), + [sym_piped_io_statement] = STATE(1137), + [sym_block] = STATE(1138), + [sym__exp] = STATE(1507), + [sym_ternary_exp] = STATE(1413), + [sym_binary_exp] = STATE(1413), + [sym__binary_in] = STATE(1293), + [sym_unary_exp] = STATE(1413), + [sym_update_exp] = STATE(1507), + [sym_assignment_exp] = STATE(1507), + [sym_piped_io_exp] = STATE(1507), + [sym_string_concat] = STATE(1413), + [sym_field_ref] = STATE(1025), + [sym_array_ref] = STATE(697), + [sym_regex] = STATE(1507), + [sym_regex_constant] = STATE(1507), + [sym_grouping] = STATE(1413), + [sym__primitive] = STATE(1413), + [sym_namespace] = STATE(1958), + [sym_ns_qualified_name] = STATE(676), + [sym_number] = STATE(1413), + [sym_string] = STATE(1413), + [sym_func_call] = STATE(1413), + [sym_indirect_func_call] = STATE(1507), [sym_comment] = STATE(1239), [aux_sym_if_statement_repeat1] = STATE(1239), - [sym_identifier] = ACTIONS(127), - [anon_sym_SEMI] = ACTIONS(446), - [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(448), - [sym_continue_statement] = ACTIONS(448), - [anon_sym_delete] = ACTIONS(99), - [anon_sym_exit] = ACTIONS(139), - [anon_sym_return] = ACTIONS(141), - [anon_sym_switch] = ACTIONS(105), - [anon_sym_LBRACE] = ACTIONS(270), - [anon_sym_getline] = ACTIONS(147), - [sym_next_statement] = ACTIONS(448), - [sym_nextfile_statement] = ACTIONS(448), - [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), + [sym_identifier] = ACTIONS(450), + [anon_sym_SEMI] = ACTIONS(342), + [anon_sym_if] = ACTIONS(452), + [anon_sym_LPAREN] = ACTIONS(454), + [anon_sym_while] = ACTIONS(456), + [anon_sym_do] = ACTIONS(49), + [anon_sym_for] = ACTIONS(458), + [sym_break_statement] = ACTIONS(344), + [sym_continue_statement] = ACTIONS(344), + [anon_sym_delete] = ACTIONS(55), + [anon_sym_exit] = ACTIONS(460), + [anon_sym_return] = ACTIONS(462), + [anon_sym_switch] = ACTIONS(61), + [anon_sym_LBRACE] = ACTIONS(312), + [anon_sym_getline] = ACTIONS(464), + [sym_next_statement] = ACTIONS(344), + [sym_nextfile_statement] = ACTIONS(344), + [anon_sym_print] = ACTIONS(466), + [anon_sym_printf] = ACTIONS(468), + [anon_sym_SLASH] = ACTIONS(470), + [anon_sym_PLUS] = ACTIONS(472), + [anon_sym_DASH] = ACTIONS(472), + [anon_sym_BANG] = ACTIONS(474), + [anon_sym_PLUS_PLUS] = ACTIONS(476), + [anon_sym_DASH_DASH] = ACTIONS(476), + [anon_sym_DOLLAR] = ACTIONS(478), + [anon_sym_AT] = ACTIONS(480), + [aux_sym_number_token1] = ACTIONS(79), + [aux_sym_number_token2] = ACTIONS(482), + [anon_sym_DQUOTE] = ACTIONS(484), [anon_sym_POUND] = ACTIONS(171), }, [84] = { [sym__statement] = STATE(1234), - [sym__statement_separated] = STATE(140), + [sym__statement_separated] = STATE(146), [sym__control_statement] = STATE(1234), [sym_if_statement] = STATE(1234), [sym_while_statement] = STATE(1234), @@ -14026,22 +14026,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = STATE(1239), [aux_sym_if_statement_repeat1] = STATE(1239), [sym_identifier] = ACTIONS(346), - [anon_sym_SEMI] = ACTIONS(534), + [anon_sym_SEMI] = ACTIONS(540), [anon_sym_if] = ACTIONS(348), [anon_sym_LPAREN] = ACTIONS(350), [anon_sym_while] = ACTIONS(352), [anon_sym_do] = ACTIONS(93), [anon_sym_for] = ACTIONS(354), - [sym_break_statement] = ACTIONS(536), - [sym_continue_statement] = ACTIONS(536), + [sym_break_statement] = ACTIONS(542), + [sym_continue_statement] = ACTIONS(542), [anon_sym_delete] = ACTIONS(99), [anon_sym_exit] = ACTIONS(356), [anon_sym_return] = ACTIONS(358), [anon_sym_switch] = ACTIONS(105), [anon_sym_LBRACE] = ACTIONS(270), [anon_sym_getline] = ACTIONS(360), - [sym_next_statement] = ACTIONS(536), - [sym_nextfile_statement] = ACTIONS(536), + [sym_next_statement] = ACTIONS(542), + [sym_nextfile_statement] = ACTIONS(542), [anon_sym_print] = ACTIONS(362), [anon_sym_printf] = ACTIONS(364), [anon_sym_SLASH] = ACTIONS(366), @@ -14105,7 +14105,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(39), [anon_sym_SEMI] = ACTIONS(414), [anon_sym_if] = ACTIONS(43), - [anon_sym_LPAREN] = ACTIONS(538), + [anon_sym_LPAREN] = ACTIONS(544), [anon_sym_while] = ACTIONS(47), [anon_sym_do] = ACTIONS(49), [anon_sym_for] = ACTIONS(51), @@ -14121,14 +14121,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nextfile_statement] = ACTIONS(416), [anon_sym_print] = ACTIONS(65), [anon_sym_printf] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(540), + [anon_sym_SLASH] = ACTIONS(546), [anon_sym_PLUS] = ACTIONS(71), [anon_sym_DASH] = ACTIONS(71), - [anon_sym_BANG] = ACTIONS(542), - [anon_sym_PLUS_PLUS] = ACTIONS(544), - [anon_sym_DASH_DASH] = ACTIONS(544), - [anon_sym_DOLLAR] = ACTIONS(546), - [anon_sym_AT] = ACTIONS(548), + [anon_sym_BANG] = ACTIONS(548), + [anon_sym_PLUS_PLUS] = ACTIONS(550), + [anon_sym_DASH_DASH] = ACTIONS(550), + [anon_sym_DOLLAR] = ACTIONS(552), + [anon_sym_AT] = ACTIONS(554), [aux_sym_number_token1] = ACTIONS(79), [aux_sym_number_token2] = ACTIONS(482), [anon_sym_DQUOTE] = ACTIONS(484), @@ -14180,22 +14180,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = STATE(1239), [aux_sym_if_statement_repeat1] = STATE(1239), [sym_identifier] = ACTIONS(127), - [anon_sym_SEMI] = ACTIONS(570), + [anon_sym_SEMI] = ACTIONS(576), [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(572), - [sym_continue_statement] = ACTIONS(572), + [sym_break_statement] = ACTIONS(578), + [sym_continue_statement] = ACTIONS(578), [anon_sym_delete] = ACTIONS(99), [anon_sym_exit] = ACTIONS(139), [anon_sym_return] = ACTIONS(141), [anon_sym_switch] = ACTIONS(105), [anon_sym_LBRACE] = ACTIONS(270), [anon_sym_getline] = ACTIONS(147), - [sym_next_statement] = ACTIONS(572), - [sym_nextfile_statement] = ACTIONS(572), + [sym_next_statement] = ACTIONS(578), + [sym_nextfile_statement] = ACTIONS(578), [anon_sym_print] = ACTIONS(149), [anon_sym_printf] = ACTIONS(151), [anon_sym_SLASH] = ACTIONS(153), @@ -14259,7 +14259,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(39), [anon_sym_SEMI] = ACTIONS(442), [anon_sym_if] = ACTIONS(43), - [anon_sym_LPAREN] = ACTIONS(538), + [anon_sym_LPAREN] = ACTIONS(544), [anon_sym_while] = ACTIONS(47), [anon_sym_do] = ACTIONS(49), [anon_sym_for] = ACTIONS(51), @@ -14275,14 +14275,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nextfile_statement] = ACTIONS(444), [anon_sym_print] = ACTIONS(65), [anon_sym_printf] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(540), + [anon_sym_SLASH] = ACTIONS(546), [anon_sym_PLUS] = ACTIONS(71), [anon_sym_DASH] = ACTIONS(71), - [anon_sym_BANG] = ACTIONS(542), - [anon_sym_PLUS_PLUS] = ACTIONS(544), - [anon_sym_DASH_DASH] = ACTIONS(544), - [anon_sym_DOLLAR] = ACTIONS(546), - [anon_sym_AT] = ACTIONS(548), + [anon_sym_BANG] = ACTIONS(548), + [anon_sym_PLUS_PLUS] = ACTIONS(550), + [anon_sym_DASH_DASH] = ACTIONS(550), + [anon_sym_DOLLAR] = ACTIONS(552), + [anon_sym_AT] = ACTIONS(554), [aux_sym_number_token1] = ACTIONS(79), [aux_sym_number_token2] = ACTIONS(482), [anon_sym_DQUOTE] = ACTIONS(484), @@ -14411,22 +14411,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = STATE(1239), [aux_sym_if_statement_repeat1] = STATE(1239), [sym_identifier] = ACTIONS(294), - [anon_sym_SEMI] = ACTIONS(566), + [anon_sym_SEMI] = ACTIONS(572), [anon_sym_if] = ACTIONS(298), [anon_sym_LPAREN] = ACTIONS(300), [anon_sym_while] = ACTIONS(302), [anon_sym_do] = ACTIONS(49), [anon_sym_for] = ACTIONS(304), - [sym_break_statement] = ACTIONS(568), - [sym_continue_statement] = ACTIONS(568), + [sym_break_statement] = ACTIONS(574), + [sym_continue_statement] = ACTIONS(574), [anon_sym_delete] = ACTIONS(55), [anon_sym_exit] = ACTIONS(308), [anon_sym_return] = ACTIONS(310), [anon_sym_switch] = ACTIONS(61), [anon_sym_LBRACE] = ACTIONS(312), [anon_sym_getline] = ACTIONS(314), - [sym_next_statement] = ACTIONS(568), - [sym_nextfile_statement] = ACTIONS(568), + [sym_next_statement] = ACTIONS(574), + [sym_nextfile_statement] = ACTIONS(574), [anon_sym_print] = ACTIONS(316), [anon_sym_printf] = ACTIONS(318), [anon_sym_SLASH] = ACTIONS(320), @@ -14490,7 +14490,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(39), [anon_sym_SEMI] = ACTIONS(422), [anon_sym_if] = ACTIONS(43), - [anon_sym_LPAREN] = ACTIONS(538), + [anon_sym_LPAREN] = ACTIONS(544), [anon_sym_while] = ACTIONS(47), [anon_sym_do] = ACTIONS(49), [anon_sym_for] = ACTIONS(51), @@ -14506,14 +14506,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nextfile_statement] = ACTIONS(424), [anon_sym_print] = ACTIONS(65), [anon_sym_printf] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(540), + [anon_sym_SLASH] = ACTIONS(546), [anon_sym_PLUS] = ACTIONS(71), [anon_sym_DASH] = ACTIONS(71), - [anon_sym_BANG] = ACTIONS(542), - [anon_sym_PLUS_PLUS] = ACTIONS(544), - [anon_sym_DASH_DASH] = ACTIONS(544), - [anon_sym_DOLLAR] = ACTIONS(546), - [anon_sym_AT] = ACTIONS(548), + [anon_sym_BANG] = ACTIONS(548), + [anon_sym_PLUS_PLUS] = ACTIONS(550), + [anon_sym_DASH_DASH] = ACTIONS(550), + [anon_sym_DOLLAR] = ACTIONS(552), + [anon_sym_AT] = ACTIONS(554), [aux_sym_number_token1] = ACTIONS(79), [aux_sym_number_token2] = ACTIONS(482), [anon_sym_DQUOTE] = ACTIONS(484), @@ -14567,7 +14567,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(39), [anon_sym_SEMI] = ACTIONS(426), [anon_sym_if] = ACTIONS(43), - [anon_sym_LPAREN] = ACTIONS(538), + [anon_sym_LPAREN] = ACTIONS(544), [anon_sym_while] = ACTIONS(47), [anon_sym_do] = ACTIONS(49), [anon_sym_for] = ACTIONS(51), @@ -14583,14 +14583,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nextfile_statement] = ACTIONS(428), [anon_sym_print] = ACTIONS(65), [anon_sym_printf] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(540), + [anon_sym_SLASH] = ACTIONS(546), [anon_sym_PLUS] = ACTIONS(71), [anon_sym_DASH] = ACTIONS(71), - [anon_sym_BANG] = ACTIONS(542), - [anon_sym_PLUS_PLUS] = ACTIONS(544), - [anon_sym_DASH_DASH] = ACTIONS(544), - [anon_sym_DOLLAR] = ACTIONS(546), - [anon_sym_AT] = ACTIONS(548), + [anon_sym_BANG] = ACTIONS(548), + [anon_sym_PLUS_PLUS] = ACTIONS(550), + [anon_sym_DASH_DASH] = ACTIONS(550), + [anon_sym_DOLLAR] = ACTIONS(552), + [anon_sym_AT] = ACTIONS(554), [aux_sym_number_token1] = ACTIONS(79), [aux_sym_number_token2] = ACTIONS(482), [anon_sym_DQUOTE] = ACTIONS(484), @@ -14644,7 +14644,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(39), [anon_sym_SEMI] = ACTIONS(430), [anon_sym_if] = ACTIONS(43), - [anon_sym_LPAREN] = ACTIONS(538), + [anon_sym_LPAREN] = ACTIONS(544), [anon_sym_while] = ACTIONS(47), [anon_sym_do] = ACTIONS(49), [anon_sym_for] = ACTIONS(51), @@ -14660,41 +14660,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nextfile_statement] = ACTIONS(432), [anon_sym_print] = ACTIONS(65), [anon_sym_printf] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(540), + [anon_sym_SLASH] = ACTIONS(546), [anon_sym_PLUS] = ACTIONS(71), [anon_sym_DASH] = ACTIONS(71), - [anon_sym_BANG] = ACTIONS(542), - [anon_sym_PLUS_PLUS] = ACTIONS(544), - [anon_sym_DASH_DASH] = ACTIONS(544), - [anon_sym_DOLLAR] = ACTIONS(546), - [anon_sym_AT] = ACTIONS(548), + [anon_sym_BANG] = ACTIONS(548), + [anon_sym_PLUS_PLUS] = ACTIONS(550), + [anon_sym_DASH_DASH] = ACTIONS(550), + [anon_sym_DOLLAR] = ACTIONS(552), + [anon_sym_AT] = ACTIONS(554), [aux_sym_number_token1] = ACTIONS(79), [aux_sym_number_token2] = ACTIONS(482), [anon_sym_DQUOTE] = ACTIONS(484), [anon_sym_POUND] = ACTIONS(171), }, [93] = { - [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__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(485), [sym_getline_input] = STATE(485), [sym_getline_file] = STATE(485), [sym_print_statement] = STATE(852), [sym_printf_statement] = STATE(852), - [sym_redirected_io_statement] = STATE(1183), - [sym_piped_io_statement] = STATE(1183), - [sym_block] = STATE(1184), + [sym_redirected_io_statement] = STATE(1185), + [sym_piped_io_statement] = STATE(1185), + [sym_block] = STATE(1186), [sym__exp] = STATE(485), [sym_ternary_exp] = STATE(434), [sym_binary_exp] = STATE(434), @@ -14716,25 +14716,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string] = STATE(434), [sym_func_call] = STATE(434), [sym_indirect_func_call] = STATE(485), - [sym_comment] = STATE(120), - [aux_sym_if_statement_repeat1] = STATE(120), + [sym_comment] = STATE(1239), + [aux_sym_if_statement_repeat1] = STATE(1239), [sym_identifier] = ACTIONS(127), - [anon_sym_SEMI] = ACTIONS(486), + [anon_sym_SEMI] = ACTIONS(446), [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(488), - [sym_continue_statement] = ACTIONS(488), + [sym_break_statement] = ACTIONS(448), + [sym_continue_statement] = ACTIONS(448), [anon_sym_delete] = ACTIONS(99), [anon_sym_exit] = ACTIONS(139), [anon_sym_return] = ACTIONS(141), [anon_sym_switch] = ACTIONS(105), [anon_sym_LBRACE] = ACTIONS(270), [anon_sym_getline] = ACTIONS(147), - [sym_next_statement] = ACTIONS(488), - [sym_nextfile_statement] = ACTIONS(488), + [sym_next_statement] = ACTIONS(448), + [sym_nextfile_statement] = ACTIONS(448), [anon_sym_print] = ACTIONS(149), [anon_sym_printf] = ACTIONS(151), [anon_sym_SLASH] = ACTIONS(153), @@ -14751,27 +14751,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(171), }, [94] = { - [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__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(485), [sym_getline_input] = STATE(485), [sym_getline_file] = STATE(485), [sym_print_statement] = STATE(852), [sym_printf_statement] = STATE(852), - [sym_redirected_io_statement] = STATE(1181), - [sym_piped_io_statement] = STATE(1181), - [sym_block] = STATE(1182), + [sym_redirected_io_statement] = STATE(1183), + [sym_piped_io_statement] = STATE(1183), + [sym_block] = STATE(1184), [sym__exp] = STATE(485), [sym_ternary_exp] = STATE(434), [sym_binary_exp] = STATE(434), @@ -14793,25 +14793,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string] = STATE(434), [sym_func_call] = STATE(434), [sym_indirect_func_call] = STATE(485), - [sym_comment] = STATE(117), - [aux_sym_if_statement_repeat1] = STATE(117), + [sym_comment] = STATE(120), + [aux_sym_if_statement_repeat1] = STATE(120), [sym_identifier] = ACTIONS(127), - [anon_sym_SEMI] = ACTIONS(490), + [anon_sym_SEMI] = ACTIONS(486), [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(492), - [sym_continue_statement] = ACTIONS(492), + [sym_break_statement] = ACTIONS(488), + [sym_continue_statement] = ACTIONS(488), [anon_sym_delete] = ACTIONS(99), [anon_sym_exit] = ACTIONS(139), [anon_sym_return] = ACTIONS(141), [anon_sym_switch] = ACTIONS(105), [anon_sym_LBRACE] = ACTIONS(270), [anon_sym_getline] = ACTIONS(147), - [sym_next_statement] = ACTIONS(492), - [sym_nextfile_statement] = ACTIONS(492), + [sym_next_statement] = ACTIONS(488), + [sym_nextfile_statement] = ACTIONS(488), [anon_sym_print] = ACTIONS(149), [anon_sym_printf] = ACTIONS(151), [anon_sym_SLASH] = ACTIONS(153), @@ -14829,7 +14829,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [95] = { [sym__statement] = STATE(1128), - [sym__statement_separated] = STATE(139), + [sym__statement_separated] = STATE(141), [sym__control_statement] = STATE(1128), [sym_if_statement] = STATE(1128), [sym_while_statement] = STATE(1128), @@ -14952,7 +14952,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(39), [anon_sym_SEMI] = ACTIONS(434), [anon_sym_if] = ACTIONS(43), - [anon_sym_LPAREN] = ACTIONS(538), + [anon_sym_LPAREN] = ACTIONS(544), [anon_sym_while] = ACTIONS(47), [anon_sym_do] = ACTIONS(49), [anon_sym_for] = ACTIONS(51), @@ -14968,14 +14968,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nextfile_statement] = ACTIONS(436), [anon_sym_print] = ACTIONS(65), [anon_sym_printf] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(540), + [anon_sym_SLASH] = ACTIONS(546), [anon_sym_PLUS] = ACTIONS(71), [anon_sym_DASH] = ACTIONS(71), - [anon_sym_BANG] = ACTIONS(542), - [anon_sym_PLUS_PLUS] = ACTIONS(544), - [anon_sym_DASH_DASH] = ACTIONS(544), - [anon_sym_DOLLAR] = ACTIONS(546), - [anon_sym_AT] = ACTIONS(548), + [anon_sym_BANG] = ACTIONS(548), + [anon_sym_PLUS_PLUS] = ACTIONS(550), + [anon_sym_DASH_DASH] = ACTIONS(550), + [anon_sym_DOLLAR] = ACTIONS(552), + [anon_sym_AT] = ACTIONS(554), [aux_sym_number_token1] = ACTIONS(79), [aux_sym_number_token2] = ACTIONS(482), [anon_sym_DQUOTE] = ACTIONS(484), @@ -15029,7 +15029,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(39), [anon_sym_SEMI] = ACTIONS(438), [anon_sym_if] = ACTIONS(43), - [anon_sym_LPAREN] = ACTIONS(538), + [anon_sym_LPAREN] = ACTIONS(544), [anon_sym_while] = ACTIONS(47), [anon_sym_do] = ACTIONS(49), [anon_sym_for] = ACTIONS(51), @@ -15045,14 +15045,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nextfile_statement] = ACTIONS(440), [anon_sym_print] = ACTIONS(65), [anon_sym_printf] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(540), + [anon_sym_SLASH] = ACTIONS(546), [anon_sym_PLUS] = ACTIONS(71), [anon_sym_DASH] = ACTIONS(71), - [anon_sym_BANG] = ACTIONS(542), - [anon_sym_PLUS_PLUS] = ACTIONS(544), - [anon_sym_DASH_DASH] = ACTIONS(544), - [anon_sym_DOLLAR] = ACTIONS(546), - [anon_sym_AT] = ACTIONS(548), + [anon_sym_BANG] = ACTIONS(548), + [anon_sym_PLUS_PLUS] = ACTIONS(550), + [anon_sym_DASH_DASH] = ACTIONS(550), + [anon_sym_DOLLAR] = ACTIONS(552), + [anon_sym_AT] = ACTIONS(554), [aux_sym_number_token1] = ACTIONS(79), [aux_sym_number_token2] = ACTIONS(482), [anon_sym_DQUOTE] = ACTIONS(484), @@ -15060,7 +15060,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [98] = { [sym__statement] = STATE(1121), - [sym__statement_separated] = STATE(139), + [sym__statement_separated] = STATE(141), [sym__control_statement] = STATE(1121), [sym_if_statement] = STATE(1121), [sym_while_statement] = STATE(1121), @@ -15136,85 +15136,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(171), }, [99] = { - [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(485), - [sym_getline_input] = STATE(485), - [sym_getline_file] = STATE(485), - [sym_print_statement] = STATE(852), - [sym_printf_statement] = STATE(852), - [sym_redirected_io_statement] = STATE(1179), - [sym_piped_io_statement] = STATE(1179), - [sym_block] = STATE(1180), - [sym__exp] = STATE(485), - [sym_ternary_exp] = STATE(434), - [sym_binary_exp] = STATE(434), - [sym__binary_in] = STATE(432), - [sym_unary_exp] = STATE(434), - [sym_update_exp] = STATE(485), - [sym_assignment_exp] = STATE(485), - [sym_piped_io_exp] = STATE(485), - [sym_string_concat] = STATE(434), - [sym_field_ref] = STATE(268), - [sym_array_ref] = STATE(253), - [sym_regex] = STATE(485), - [sym_regex_constant] = STATE(485), - [sym_grouping] = STATE(434), - [sym__primitive] = STATE(434), + [sym__statement] = STATE(1672), + [sym__statement_separated] = STATE(3), + [sym__control_statement] = STATE(1672), + [sym_if_statement] = STATE(1672), + [sym_while_statement] = STATE(1672), + [sym_do_while_statement] = STATE(1672), + [sym_for_statement] = STATE(1672), + [sym_for_in_statement] = STATE(1672), + [sym_delete_statement] = STATE(1672), + [sym_exit_statement] = STATE(1672), + [sym_return_statement] = STATE(1672), + [sym_switch_statement] = STATE(1672), + [sym__io_statement] = STATE(1672), + [sym__getline_exp] = STATE(1439), + [sym_getline_input] = STATE(1439), + [sym_getline_file] = STATE(1439), + [sym_print_statement] = STATE(1657), + [sym_printf_statement] = STATE(1657), + [sym_redirected_io_statement] = STATE(1672), + [sym_piped_io_statement] = STATE(1672), + [sym__exp] = STATE(1439), + [sym_ternary_exp] = STATE(1377), + [sym_binary_exp] = STATE(1377), + [sym__binary_in] = STATE(1341), + [sym_unary_exp] = STATE(1377), + [sym_update_exp] = STATE(1439), + [sym_assignment_exp] = STATE(1439), + [sym_piped_io_exp] = STATE(1439), + [sym_string_concat] = STATE(1377), + [sym_field_ref] = STATE(646), + [sym_array_ref] = STATE(591), + [sym_regex] = STATE(1439), + [sym_regex_constant] = STATE(1439), + [sym_grouping] = STATE(1377), + [sym__primitive] = STATE(1377), [sym_namespace] = STATE(1881), - [sym_ns_qualified_name] = STATE(239), - [sym_number] = STATE(434), - [sym_string] = STATE(434), - [sym_func_call] = STATE(434), - [sym_indirect_func_call] = STATE(485), - [sym_comment] = STATE(110), - [aux_sym_if_statement_repeat1] = STATE(110), - [sym_identifier] = ACTIONS(127), - [anon_sym_SEMI] = ACTIONS(498), - [anon_sym_if] = ACTIONS(129), - [anon_sym_LPAREN] = ACTIONS(131), - [anon_sym_while] = ACTIONS(133), + [sym_ns_qualified_name] = STATE(586), + [sym_number] = STATE(1377), + [sym_string] = STATE(1377), + [sym_func_call] = STATE(1377), + [sym_indirect_func_call] = STATE(1439), + [sym_comment] = STATE(60), + [aux_sym_if_statement_repeat1] = STATE(60), + [sym_identifier] = ACTIONS(85), + [anon_sym_if] = ACTIONS(87), + [anon_sym_LPAREN] = ACTIONS(266), + [anon_sym_while] = ACTIONS(91), [anon_sym_do] = ACTIONS(93), - [anon_sym_for] = ACTIONS(135), - [sym_break_statement] = ACTIONS(500), - [sym_continue_statement] = ACTIONS(500), + [anon_sym_for] = ACTIONS(95), + [sym_break_statement] = ACTIONS(580), + [sym_continue_statement] = ACTIONS(580), [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(270), - [anon_sym_getline] = ACTIONS(147), - [sym_next_statement] = ACTIONS(500), - [sym_nextfile_statement] = ACTIONS(500), - [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_RBRACE] = ACTIONS(582), + [anon_sym_case] = ACTIONS(584), + [anon_sym_default] = ACTIONS(584), + [anon_sym_getline] = ACTIONS(107), + [sym_next_statement] = ACTIONS(580), + [sym_nextfile_statement] = ACTIONS(580), + [anon_sym_print] = ACTIONS(109), + [anon_sym_printf] = ACTIONS(111), + [anon_sym_SLASH] = ACTIONS(272), + [anon_sym_PLUS] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(115), + [anon_sym_BANG] = ACTIONS(274), + [anon_sym_PLUS_PLUS] = ACTIONS(276), + [anon_sym_DASH_DASH] = ACTIONS(276), + [anon_sym_DOLLAR] = ACTIONS(278), + [anon_sym_AT] = ACTIONS(280), + [aux_sym_number_token1] = ACTIONS(123), + [aux_sym_number_token2] = ACTIONS(282), + [anon_sym_DQUOTE] = ACTIONS(284), [anon_sym_POUND] = ACTIONS(171), }, [100] = { [sym__statement] = STATE(1237), - [sym__statement_separated] = STATE(140), + [sym__statement_separated] = STATE(146), [sym__control_statement] = STATE(1237), [sym_if_statement] = STATE(1237), [sym_while_statement] = STATE(1237), @@ -15258,22 +15258,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = STATE(20), [aux_sym_if_statement_repeat1] = STATE(20), [sym_identifier] = ACTIONS(346), - [anon_sym_SEMI] = ACTIONS(530), + [anon_sym_SEMI] = ACTIONS(536), [anon_sym_if] = ACTIONS(348), [anon_sym_LPAREN] = ACTIONS(350), [anon_sym_while] = ACTIONS(352), [anon_sym_do] = ACTIONS(93), [anon_sym_for] = ACTIONS(354), - [sym_break_statement] = ACTIONS(532), - [sym_continue_statement] = ACTIONS(532), + [sym_break_statement] = ACTIONS(538), + [sym_continue_statement] = ACTIONS(538), [anon_sym_delete] = ACTIONS(99), [anon_sym_exit] = ACTIONS(356), [anon_sym_return] = ACTIONS(358), [anon_sym_switch] = ACTIONS(105), [anon_sym_LBRACE] = ACTIONS(270), [anon_sym_getline] = ACTIONS(360), - [sym_next_statement] = ACTIONS(532), - [sym_nextfile_statement] = ACTIONS(532), + [sym_next_statement] = ACTIONS(538), + [sym_nextfile_statement] = ACTIONS(538), [anon_sym_print] = ACTIONS(362), [anon_sym_printf] = ACTIONS(364), [anon_sym_SLASH] = ACTIONS(366), @@ -15335,22 +15335,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = STATE(63), [aux_sym_if_statement_repeat1] = STATE(63), [sym_identifier] = ACTIONS(127), - [anon_sym_SEMI] = ACTIONS(562), + [anon_sym_SEMI] = ACTIONS(568), [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(564), - [sym_continue_statement] = ACTIONS(564), + [sym_break_statement] = ACTIONS(570), + [sym_continue_statement] = ACTIONS(570), [anon_sym_delete] = ACTIONS(99), [anon_sym_exit] = ACTIONS(139), [anon_sym_return] = ACTIONS(141), [anon_sym_switch] = ACTIONS(105), [anon_sym_LBRACE] = ACTIONS(270), [anon_sym_getline] = ACTIONS(147), - [sym_next_statement] = ACTIONS(564), - [sym_nextfile_statement] = ACTIONS(564), + [sym_next_statement] = ACTIONS(570), + [sym_nextfile_statement] = ACTIONS(570), [anon_sym_print] = ACTIONS(149), [anon_sym_printf] = ACTIONS(151), [anon_sym_SLASH] = ACTIONS(153), @@ -15412,22 +15412,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = STATE(69), [aux_sym_if_statement_repeat1] = STATE(69), [sym_identifier] = ACTIONS(127), - [anon_sym_SEMI] = ACTIONS(558), + [anon_sym_SEMI] = ACTIONS(564), [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(560), - [sym_continue_statement] = ACTIONS(560), + [sym_break_statement] = ACTIONS(566), + [sym_continue_statement] = ACTIONS(566), [anon_sym_delete] = ACTIONS(99), [anon_sym_exit] = ACTIONS(139), [anon_sym_return] = ACTIONS(141), [anon_sym_switch] = ACTIONS(105), [anon_sym_LBRACE] = ACTIONS(270), [anon_sym_getline] = ACTIONS(147), - [sym_next_statement] = ACTIONS(560), - [sym_nextfile_statement] = ACTIONS(560), + [sym_next_statement] = ACTIONS(566), + [sym_nextfile_statement] = ACTIONS(566), [anon_sym_print] = ACTIONS(149), [anon_sym_printf] = ACTIONS(151), [anon_sym_SLASH] = ACTIONS(153), @@ -15522,7 +15522,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [104] = { [sym__statement] = STATE(1119), - [sym__statement_separated] = STATE(139), + [sym__statement_separated] = STATE(141), [sym__control_statement] = STATE(1119), [sym_if_statement] = STATE(1119), [sym_while_statement] = STATE(1119), @@ -15599,7 +15599,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [105] = { [sym__statement] = STATE(1170), - [sym__statement_separated] = STATE(139), + [sym__statement_separated] = STATE(141), [sym__control_statement] = STATE(1170), [sym_if_statement] = STATE(1170), [sym_while_statement] = STATE(1170), @@ -15722,7 +15722,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(39), [anon_sym_SEMI] = ACTIONS(418), [anon_sym_if] = ACTIONS(43), - [anon_sym_LPAREN] = ACTIONS(538), + [anon_sym_LPAREN] = ACTIONS(544), [anon_sym_while] = ACTIONS(47), [anon_sym_do] = ACTIONS(49), [anon_sym_for] = ACTIONS(51), @@ -15738,14 +15738,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nextfile_statement] = ACTIONS(420), [anon_sym_print] = ACTIONS(65), [anon_sym_printf] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(540), + [anon_sym_SLASH] = ACTIONS(546), [anon_sym_PLUS] = ACTIONS(71), [anon_sym_DASH] = ACTIONS(71), - [anon_sym_BANG] = ACTIONS(542), - [anon_sym_PLUS_PLUS] = ACTIONS(544), - [anon_sym_DASH_DASH] = ACTIONS(544), - [anon_sym_DOLLAR] = ACTIONS(546), - [anon_sym_AT] = ACTIONS(548), + [anon_sym_BANG] = ACTIONS(548), + [anon_sym_PLUS_PLUS] = ACTIONS(550), + [anon_sym_DASH_DASH] = ACTIONS(550), + [anon_sym_DOLLAR] = ACTIONS(552), + [anon_sym_AT] = ACTIONS(554), [aux_sym_number_token1] = ACTIONS(79), [aux_sym_number_token2] = ACTIONS(482), [anon_sym_DQUOTE] = ACTIONS(484), @@ -15797,22 +15797,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = STATE(14), [aux_sym_if_statement_repeat1] = STATE(14), [sym_identifier] = ACTIONS(85), - [anon_sym_SEMI] = ACTIONS(530), + [anon_sym_SEMI] = ACTIONS(536), [anon_sym_if] = ACTIONS(87), [anon_sym_LPAREN] = ACTIONS(266), [anon_sym_while] = ACTIONS(91), [anon_sym_do] = ACTIONS(93), [anon_sym_for] = ACTIONS(95), - [sym_break_statement] = ACTIONS(532), - [sym_continue_statement] = ACTIONS(532), + [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(270), [anon_sym_getline] = ACTIONS(107), - [sym_next_statement] = ACTIONS(532), - [sym_nextfile_statement] = ACTIONS(532), + [sym_next_statement] = ACTIONS(538), + [sym_nextfile_statement] = ACTIONS(538), [anon_sym_print] = ACTIONS(109), [anon_sym_printf] = ACTIONS(111), [anon_sym_SLASH] = ACTIONS(272), @@ -15874,22 +15874,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = STATE(1239), [aux_sym_if_statement_repeat1] = STATE(1239), [sym_identifier] = ACTIONS(85), - [anon_sym_SEMI] = ACTIONS(534), + [anon_sym_SEMI] = ACTIONS(540), [anon_sym_if] = ACTIONS(87), [anon_sym_LPAREN] = ACTIONS(266), [anon_sym_while] = ACTIONS(91), [anon_sym_do] = ACTIONS(93), [anon_sym_for] = ACTIONS(95), - [sym_break_statement] = ACTIONS(536), - [sym_continue_statement] = ACTIONS(536), + [sym_break_statement] = ACTIONS(542), + [sym_continue_statement] = ACTIONS(542), [anon_sym_delete] = ACTIONS(99), [anon_sym_exit] = ACTIONS(101), [anon_sym_return] = ACTIONS(103), [anon_sym_switch] = ACTIONS(105), [anon_sym_LBRACE] = ACTIONS(270), [anon_sym_getline] = ACTIONS(107), - [sym_next_statement] = ACTIONS(536), - [sym_nextfile_statement] = ACTIONS(536), + [sym_next_statement] = ACTIONS(542), + [sym_nextfile_statement] = ACTIONS(542), [anon_sym_print] = ACTIONS(109), [anon_sym_printf] = ACTIONS(111), [anon_sym_SLASH] = ACTIONS(272), @@ -15951,22 +15951,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = STATE(1239), [aux_sym_if_statement_repeat1] = STATE(1239), [sym_identifier] = ACTIONS(85), - [anon_sym_SEMI] = ACTIONS(554), + [anon_sym_SEMI] = ACTIONS(560), [anon_sym_if] = ACTIONS(87), [anon_sym_LPAREN] = ACTIONS(266), [anon_sym_while] = ACTIONS(91), [anon_sym_do] = ACTIONS(93), [anon_sym_for] = ACTIONS(95), - [sym_break_statement] = ACTIONS(556), - [sym_continue_statement] = ACTIONS(556), + [sym_break_statement] = ACTIONS(562), + [sym_continue_statement] = ACTIONS(562), [anon_sym_delete] = ACTIONS(99), [anon_sym_exit] = ACTIONS(101), [anon_sym_return] = ACTIONS(103), [anon_sym_switch] = ACTIONS(105), [anon_sym_LBRACE] = ACTIONS(270), [anon_sym_getline] = ACTIONS(107), - [sym_next_statement] = ACTIONS(556), - [sym_nextfile_statement] = ACTIONS(556), + [sym_next_statement] = ACTIONS(562), + [sym_nextfile_statement] = ACTIONS(562), [anon_sym_print] = ACTIONS(109), [anon_sym_printf] = ACTIONS(111), [anon_sym_SLASH] = ACTIONS(272), @@ -16028,22 +16028,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = STATE(1239), [aux_sym_if_statement_repeat1] = STATE(1239), [sym_identifier] = ACTIONS(127), - [anon_sym_SEMI] = ACTIONS(550), + [anon_sym_SEMI] = ACTIONS(556), [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(552), - [sym_continue_statement] = ACTIONS(552), + [sym_break_statement] = ACTIONS(558), + [sym_continue_statement] = ACTIONS(558), [anon_sym_delete] = ACTIONS(99), [anon_sym_exit] = ACTIONS(139), [anon_sym_return] = ACTIONS(141), [anon_sym_switch] = ACTIONS(105), [anon_sym_LBRACE] = ACTIONS(270), [anon_sym_getline] = ACTIONS(147), - [sym_next_statement] = ACTIONS(552), - [sym_nextfile_statement] = ACTIONS(552), + [sym_next_statement] = ACTIONS(558), + [sym_nextfile_statement] = ACTIONS(558), [anon_sym_print] = ACTIONS(149), [anon_sym_printf] = ACTIONS(151), [anon_sym_SLASH] = ACTIONS(153), @@ -16060,27 +16060,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(171), }, [111] = { - [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__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(485), [sym_getline_input] = STATE(485), [sym_getline_file] = STATE(485), [sym_print_statement] = STATE(852), [sym_printf_statement] = STATE(852), - [sym_redirected_io_statement] = STATE(1177), - [sym_piped_io_statement] = STATE(1177), - [sym_block] = STATE(1178), + [sym_redirected_io_statement] = STATE(1181), + [sym_piped_io_statement] = STATE(1181), + [sym_block] = STATE(1182), [sym__exp] = STATE(485), [sym_ternary_exp] = STATE(434), [sym_binary_exp] = STATE(434), @@ -16102,25 +16102,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string] = STATE(434), [sym_func_call] = STATE(434), [sym_indirect_func_call] = STATE(485), - [sym_comment] = STATE(103), - [aux_sym_if_statement_repeat1] = STATE(103), + [sym_comment] = STATE(117), + [aux_sym_if_statement_repeat1] = STATE(117), [sym_identifier] = ACTIONS(127), - [anon_sym_SEMI] = ACTIONS(502), + [anon_sym_SEMI] = ACTIONS(490), [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(504), - [sym_continue_statement] = ACTIONS(504), + [sym_break_statement] = ACTIONS(492), + [sym_continue_statement] = ACTIONS(492), [anon_sym_delete] = ACTIONS(99), [anon_sym_exit] = ACTIONS(139), [anon_sym_return] = ACTIONS(141), [anon_sym_switch] = ACTIONS(105), [anon_sym_LBRACE] = ACTIONS(270), [anon_sym_getline] = ACTIONS(147), - [sym_next_statement] = ACTIONS(504), - [sym_nextfile_statement] = ACTIONS(504), + [sym_next_statement] = ACTIONS(492), + [sym_nextfile_statement] = ACTIONS(492), [anon_sym_print] = ACTIONS(149), [anon_sym_printf] = ACTIONS(151), [anon_sym_SLASH] = ACTIONS(153), @@ -16138,7 +16138,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [112] = { [sym__statement] = STATE(1168), - [sym__statement_separated] = STATE(139), + [sym__statement_separated] = STATE(141), [sym__control_statement] = STATE(1168), [sym_if_statement] = STATE(1168), [sym_while_statement] = STATE(1168), @@ -16259,22 +16259,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = STATE(1239), [aux_sym_if_statement_repeat1] = STATE(1239), [sym_identifier] = ACTIONS(85), - [anon_sym_SEMI] = ACTIONS(570), + [anon_sym_SEMI] = ACTIONS(576), [anon_sym_if] = ACTIONS(87), [anon_sym_LPAREN] = ACTIONS(266), [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), + [sym_break_statement] = ACTIONS(578), + [sym_continue_statement] = ACTIONS(578), [anon_sym_delete] = ACTIONS(99), [anon_sym_exit] = ACTIONS(101), [anon_sym_return] = ACTIONS(103), [anon_sym_switch] = ACTIONS(105), [anon_sym_LBRACE] = ACTIONS(270), [anon_sym_getline] = ACTIONS(107), - [sym_next_statement] = ACTIONS(572), - [sym_nextfile_statement] = ACTIONS(572), + [sym_next_statement] = ACTIONS(578), + [sym_nextfile_statement] = ACTIONS(578), [anon_sym_print] = ACTIONS(109), [anon_sym_printf] = ACTIONS(111), [anon_sym_SLASH] = ACTIONS(272), @@ -16292,7 +16292,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [114] = { [sym__statement] = STATE(1100), - [sym__statement_separated] = STATE(139), + [sym__statement_separated] = STATE(141), [sym__control_statement] = STATE(1100), [sym_if_statement] = STATE(1100), [sym_while_statement] = STATE(1100), @@ -16490,22 +16490,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = STATE(108), [aux_sym_if_statement_repeat1] = STATE(108), [sym_identifier] = ACTIONS(85), - [anon_sym_SEMI] = ACTIONS(562), + [anon_sym_SEMI] = ACTIONS(568), [anon_sym_if] = ACTIONS(87), [anon_sym_LPAREN] = ACTIONS(266), [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), + [sym_break_statement] = ACTIONS(570), + [sym_continue_statement] = ACTIONS(570), [anon_sym_delete] = ACTIONS(99), [anon_sym_exit] = ACTIONS(101), [anon_sym_return] = ACTIONS(103), [anon_sym_switch] = ACTIONS(105), [anon_sym_LBRACE] = ACTIONS(270), [anon_sym_getline] = ACTIONS(107), - [sym_next_statement] = ACTIONS(564), - [sym_nextfile_statement] = ACTIONS(564), + [sym_next_statement] = ACTIONS(570), + [sym_nextfile_statement] = ACTIONS(570), [anon_sym_print] = ACTIONS(109), [anon_sym_printf] = ACTIONS(111), [anon_sym_SLASH] = ACTIONS(272), @@ -16600,7 +16600,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [118] = { [sym__statement] = STATE(1162), - [sym__statement_separated] = STATE(139), + [sym__statement_separated] = STATE(141), [sym__control_statement] = STATE(1162), [sym_if_statement] = STATE(1162), [sym_while_statement] = STATE(1162), @@ -16677,7 +16677,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [119] = { [sym__statement] = STATE(1160), - [sym__statement_separated] = STATE(139), + [sym__statement_separated] = STATE(141), [sym__control_statement] = STATE(1160), [sym_if_statement] = STATE(1160), [sym_while_statement] = STATE(1160), @@ -16830,80 +16830,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(171), }, [121] = { - [sym__statement] = STATE(1139), - [sym__statement_separated] = STATE(139), - [sym__control_statement] = STATE(1139), - [sym_if_statement] = STATE(1139), - [sym_while_statement] = STATE(1139), - [sym_do_while_statement] = STATE(1139), - [sym_for_statement] = STATE(1139), - [sym_for_in_statement] = STATE(1139), - [sym_delete_statement] = STATE(1139), - [sym_exit_statement] = STATE(1139), - [sym_return_statement] = STATE(1139), - [sym_switch_statement] = STATE(1139), - [sym__io_statement] = STATE(1139), - [sym__getline_exp] = STATE(1507), - [sym_getline_input] = STATE(1507), - [sym_getline_file] = STATE(1507), - [sym_print_statement] = STATE(1658), - [sym_printf_statement] = STATE(1658), - [sym_redirected_io_statement] = STATE(1139), - [sym_piped_io_statement] = STATE(1139), - [sym_block] = STATE(1140), - [sym__exp] = STATE(1507), - [sym_ternary_exp] = STATE(1413), - [sym_binary_exp] = STATE(1413), - [sym__binary_in] = STATE(1293), - [sym_unary_exp] = STATE(1413), - [sym_update_exp] = STATE(1507), - [sym_assignment_exp] = STATE(1507), - [sym_piped_io_exp] = STATE(1507), - [sym_string_concat] = STATE(1413), - [sym_field_ref] = STATE(1025), - [sym_array_ref] = STATE(697), - [sym_regex] = STATE(1507), - [sym_regex_constant] = STATE(1507), - [sym_grouping] = STATE(1413), - [sym__primitive] = STATE(1413), - [sym_namespace] = STATE(1958), - [sym_ns_qualified_name] = STATE(676), - [sym_number] = STATE(1413), - [sym_string] = STATE(1413), - [sym_func_call] = STATE(1413), - [sym_indirect_func_call] = STATE(1507), - [sym_comment] = STATE(1239), - [aux_sym_if_statement_repeat1] = STATE(1239), - [sym_identifier] = ACTIONS(450), - [anon_sym_SEMI] = ACTIONS(566), - [anon_sym_if] = ACTIONS(452), - [anon_sym_LPAREN] = ACTIONS(454), - [anon_sym_while] = ACTIONS(456), - [anon_sym_do] = ACTIONS(49), - [anon_sym_for] = ACTIONS(458), - [sym_break_statement] = ACTIONS(568), - [sym_continue_statement] = ACTIONS(568), - [anon_sym_delete] = ACTIONS(55), - [anon_sym_exit] = ACTIONS(460), - [anon_sym_return] = ACTIONS(462), - [anon_sym_switch] = ACTIONS(61), - [anon_sym_LBRACE] = ACTIONS(312), - [anon_sym_getline] = ACTIONS(464), - [sym_next_statement] = ACTIONS(568), - [sym_nextfile_statement] = ACTIONS(568), - [anon_sym_print] = ACTIONS(466), - [anon_sym_printf] = ACTIONS(468), - [anon_sym_SLASH] = ACTIONS(470), - [anon_sym_PLUS] = ACTIONS(472), - [anon_sym_DASH] = ACTIONS(472), - [anon_sym_BANG] = ACTIONS(474), - [anon_sym_PLUS_PLUS] = ACTIONS(476), - [anon_sym_DASH_DASH] = ACTIONS(476), - [anon_sym_DOLLAR] = ACTIONS(478), - [anon_sym_AT] = ACTIONS(480), - [aux_sym_number_token1] = ACTIONS(79), - [aux_sym_number_token2] = ACTIONS(482), - [anon_sym_DQUOTE] = ACTIONS(484), + [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(485), + [sym_getline_input] = STATE(485), + [sym_getline_file] = STATE(485), + [sym_print_statement] = STATE(852), + [sym_printf_statement] = STATE(852), + [sym_redirected_io_statement] = STATE(1179), + [sym_piped_io_statement] = STATE(1179), + [sym_block] = STATE(1180), + [sym__exp] = STATE(485), + [sym_ternary_exp] = STATE(434), + [sym_binary_exp] = STATE(434), + [sym__binary_in] = STATE(432), + [sym_unary_exp] = STATE(434), + [sym_update_exp] = STATE(485), + [sym_assignment_exp] = STATE(485), + [sym_piped_io_exp] = STATE(485), + [sym_string_concat] = STATE(434), + [sym_field_ref] = STATE(268), + [sym_array_ref] = STATE(253), + [sym_regex] = STATE(485), + [sym_regex_constant] = STATE(485), + [sym_grouping] = STATE(434), + [sym__primitive] = STATE(434), + [sym_namespace] = STATE(1881), + [sym_ns_qualified_name] = STATE(239), + [sym_number] = STATE(434), + [sym_string] = STATE(434), + [sym_func_call] = STATE(434), + [sym_indirect_func_call] = STATE(485), + [sym_comment] = STATE(110), + [aux_sym_if_statement_repeat1] = STATE(110), + [sym_identifier] = ACTIONS(127), + [anon_sym_SEMI] = ACTIONS(498), + [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(500), + [sym_continue_statement] = ACTIONS(500), + [anon_sym_delete] = ACTIONS(99), + [anon_sym_exit] = ACTIONS(139), + [anon_sym_return] = ACTIONS(141), + [anon_sym_switch] = ACTIONS(105), + [anon_sym_LBRACE] = ACTIONS(270), + [anon_sym_getline] = ACTIONS(147), + [sym_next_statement] = ACTIONS(500), + [sym_nextfile_statement] = ACTIONS(500), + [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), }, [122] = { @@ -16952,22 +16952,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = STATE(109), [aux_sym_if_statement_repeat1] = STATE(109), [sym_identifier] = ACTIONS(85), - [anon_sym_SEMI] = ACTIONS(558), + [anon_sym_SEMI] = ACTIONS(564), [anon_sym_if] = ACTIONS(87), [anon_sym_LPAREN] = ACTIONS(266), [anon_sym_while] = ACTIONS(91), [anon_sym_do] = ACTIONS(93), [anon_sym_for] = ACTIONS(95), - [sym_break_statement] = ACTIONS(560), - [sym_continue_statement] = ACTIONS(560), + [sym_break_statement] = ACTIONS(566), + [sym_continue_statement] = ACTIONS(566), [anon_sym_delete] = ACTIONS(99), [anon_sym_exit] = ACTIONS(101), [anon_sym_return] = ACTIONS(103), [anon_sym_switch] = ACTIONS(105), [anon_sym_LBRACE] = ACTIONS(270), [anon_sym_getline] = ACTIONS(107), - [sym_next_statement] = ACTIONS(560), - [sym_nextfile_statement] = ACTIONS(560), + [sym_next_statement] = ACTIONS(566), + [sym_nextfile_statement] = ACTIONS(566), [anon_sym_print] = ACTIONS(109), [anon_sym_printf] = ACTIONS(111), [anon_sym_SLASH] = ACTIONS(272), @@ -17062,7 +17062,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [124] = { [sym__statement] = STATE(1153), - [sym__statement_separated] = STATE(139), + [sym__statement_separated] = STATE(141), [sym__control_statement] = STATE(1153), [sym_if_statement] = STATE(1153), [sym_while_statement] = STATE(1153), @@ -17183,22 +17183,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = STATE(1239), [aux_sym_if_statement_repeat1] = STATE(1239), [sym_identifier] = ACTIONS(85), - [anon_sym_SEMI] = ACTIONS(550), + [anon_sym_SEMI] = ACTIONS(556), [anon_sym_if] = ACTIONS(87), [anon_sym_LPAREN] = ACTIONS(266), [anon_sym_while] = ACTIONS(91), [anon_sym_do] = ACTIONS(93), [anon_sym_for] = ACTIONS(95), - [sym_break_statement] = ACTIONS(552), - [sym_continue_statement] = ACTIONS(552), + [sym_break_statement] = ACTIONS(558), + [sym_continue_statement] = ACTIONS(558), [anon_sym_delete] = ACTIONS(99), [anon_sym_exit] = ACTIONS(101), [anon_sym_return] = ACTIONS(103), [anon_sym_switch] = ACTIONS(105), [anon_sym_LBRACE] = ACTIONS(270), [anon_sym_getline] = ACTIONS(107), - [sym_next_statement] = ACTIONS(552), - [sym_nextfile_statement] = ACTIONS(552), + [sym_next_statement] = ACTIONS(558), + [sym_nextfile_statement] = ACTIONS(558), [anon_sym_print] = ACTIONS(109), [anon_sym_printf] = ACTIONS(111), [anon_sym_SLASH] = ACTIONS(272), @@ -17293,7 +17293,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [127] = { [sym__statement] = STATE(1151), - [sym__statement_separated] = STATE(139), + [sym__statement_separated] = STATE(141), [sym__control_statement] = STATE(1151), [sym_if_statement] = STATE(1151), [sym_while_statement] = STATE(1151), @@ -17524,7 +17524,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [130] = { [sym__statement] = STATE(1149), - [sym__statement_separated] = STATE(139), + [sym__statement_separated] = STATE(141), [sym__control_statement] = STATE(1149), [sym_if_statement] = STATE(1149), [sym_while_statement] = STATE(1149), @@ -17565,8 +17565,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string] = STATE(1413), [sym_func_call] = STATE(1413), [sym_indirect_func_call] = STATE(1507), - [sym_comment] = STATE(121), - [aux_sym_if_statement_repeat1] = STATE(121), + [sym_comment] = STATE(136), + [aux_sym_if_statement_repeat1] = STATE(136), [sym_identifier] = ACTIONS(450), [anon_sym_SEMI] = ACTIONS(394), [anon_sym_if] = ACTIONS(452), @@ -17601,7 +17601,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [131] = { [sym__statement] = STATE(1147), - [sym__statement_separated] = STATE(139), + [sym__statement_separated] = STATE(141), [sym__control_statement] = STATE(1147), [sym_if_statement] = STATE(1147), [sym_while_statement] = STATE(1147), @@ -17677,27 +17677,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(171), }, [132] = { - [sym__statement] = STATE(1141), - [sym__statement_separated] = STATE(139), - [sym__control_statement] = STATE(1141), - [sym_if_statement] = STATE(1141), - [sym_while_statement] = STATE(1141), - [sym_do_while_statement] = STATE(1141), - [sym_for_statement] = STATE(1141), - [sym_for_in_statement] = STATE(1141), - [sym_delete_statement] = STATE(1141), - [sym_exit_statement] = STATE(1141), - [sym_return_statement] = STATE(1141), - [sym_switch_statement] = STATE(1141), - [sym__io_statement] = STATE(1141), + [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(485), + [sym_getline_input] = STATE(485), + [sym_getline_file] = STATE(485), + [sym_print_statement] = STATE(852), + [sym_printf_statement] = STATE(852), + [sym_redirected_io_statement] = STATE(1177), + [sym_piped_io_statement] = STATE(1177), + [sym_block] = STATE(1178), + [sym__exp] = STATE(485), + [sym_ternary_exp] = STATE(434), + [sym_binary_exp] = STATE(434), + [sym__binary_in] = STATE(432), + [sym_unary_exp] = STATE(434), + [sym_update_exp] = STATE(485), + [sym_assignment_exp] = STATE(485), + [sym_piped_io_exp] = STATE(485), + [sym_string_concat] = STATE(434), + [sym_field_ref] = STATE(268), + [sym_array_ref] = STATE(253), + [sym_regex] = STATE(485), + [sym_regex_constant] = STATE(485), + [sym_grouping] = STATE(434), + [sym__primitive] = STATE(434), + [sym_namespace] = STATE(1881), + [sym_ns_qualified_name] = STATE(239), + [sym_number] = STATE(434), + [sym_string] = STATE(434), + [sym_func_call] = STATE(434), + [sym_indirect_func_call] = STATE(485), + [sym_comment] = STATE(103), + [aux_sym_if_statement_repeat1] = STATE(103), + [sym_identifier] = ACTIONS(127), + [anon_sym_SEMI] = ACTIONS(502), + [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(504), + [sym_continue_statement] = ACTIONS(504), + [anon_sym_delete] = ACTIONS(99), + [anon_sym_exit] = ACTIONS(139), + [anon_sym_return] = ACTIONS(141), + [anon_sym_switch] = ACTIONS(105), + [anon_sym_LBRACE] = ACTIONS(270), + [anon_sym_getline] = ACTIONS(147), + [sym_next_statement] = ACTIONS(504), + [sym_nextfile_statement] = ACTIONS(504), + [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), + }, + [133] = { + [sym__statement] = STATE(1145), + [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(1507), [sym_getline_input] = STATE(1507), [sym_getline_file] = STATE(1507), [sym_print_statement] = STATE(1658), [sym_printf_statement] = STATE(1658), - [sym_redirected_io_statement] = STATE(1141), - [sym_piped_io_statement] = STATE(1141), - [sym_block] = STATE(1142), + [sym_redirected_io_statement] = STATE(1145), + [sym_piped_io_statement] = STATE(1145), + [sym_block] = STATE(1146), [sym__exp] = STATE(1507), [sym_ternary_exp] = STATE(1413), [sym_binary_exp] = STATE(1413), @@ -17719,25 +17796,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string] = STATE(1413), [sym_func_call] = STATE(1413), [sym_indirect_func_call] = STATE(1507), - [sym_comment] = STATE(47), - [aux_sym_if_statement_repeat1] = STATE(47), + [sym_comment] = STATE(1239), + [aux_sym_if_statement_repeat1] = STATE(1239), [sym_identifier] = ACTIONS(450), - [anon_sym_SEMI] = ACTIONS(378), + [anon_sym_SEMI] = ACTIONS(386), [anon_sym_if] = ACTIONS(452), [anon_sym_LPAREN] = ACTIONS(454), [anon_sym_while] = ACTIONS(456), [anon_sym_do] = ACTIONS(49), [anon_sym_for] = ACTIONS(458), - [sym_break_statement] = ACTIONS(380), - [sym_continue_statement] = ACTIONS(380), + [sym_break_statement] = ACTIONS(388), + [sym_continue_statement] = ACTIONS(388), [anon_sym_delete] = ACTIONS(55), [anon_sym_exit] = ACTIONS(460), [anon_sym_return] = ACTIONS(462), [anon_sym_switch] = ACTIONS(61), [anon_sym_LBRACE] = ACTIONS(312), [anon_sym_getline] = ACTIONS(464), - [sym_next_statement] = ACTIONS(380), - [sym_nextfile_statement] = ACTIONS(380), + [sym_next_statement] = ACTIONS(388), + [sym_nextfile_statement] = ACTIONS(388), [anon_sym_print] = ACTIONS(466), [anon_sym_printf] = ACTIONS(468), [anon_sym_SLASH] = ACTIONS(470), @@ -17753,28 +17830,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(484), [anon_sym_POUND] = ACTIONS(171), }, - [133] = { - [sym__statement] = STATE(1145), - [sym__statement_separated] = STATE(139), - [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), + [134] = { + [sym__statement] = STATE(1143), + [sym__statement_separated] = STATE(141), + [sym__control_statement] = STATE(1143), + [sym_if_statement] = STATE(1143), + [sym_while_statement] = STATE(1143), + [sym_do_while_statement] = STATE(1143), + [sym_for_statement] = STATE(1143), + [sym_for_in_statement] = STATE(1143), + [sym_delete_statement] = STATE(1143), + [sym_exit_statement] = STATE(1143), + [sym_return_statement] = STATE(1143), + [sym_switch_statement] = STATE(1143), + [sym__io_statement] = STATE(1143), [sym__getline_exp] = STATE(1507), [sym_getline_input] = STATE(1507), [sym_getline_file] = STATE(1507), [sym_print_statement] = STATE(1658), [sym_printf_statement] = STATE(1658), - [sym_redirected_io_statement] = STATE(1145), - [sym_piped_io_statement] = STATE(1145), - [sym_block] = STATE(1146), + [sym_redirected_io_statement] = STATE(1143), + [sym_piped_io_statement] = STATE(1143), + [sym_block] = STATE(1144), [sym__exp] = STATE(1507), [sym_ternary_exp] = STATE(1413), [sym_binary_exp] = STATE(1413), @@ -17796,25 +17873,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string] = STATE(1413), [sym_func_call] = STATE(1413), [sym_indirect_func_call] = STATE(1507), - [sym_comment] = STATE(1239), - [aux_sym_if_statement_repeat1] = STATE(1239), + [sym_comment] = STATE(83), + [aux_sym_if_statement_repeat1] = STATE(83), [sym_identifier] = ACTIONS(450), - [anon_sym_SEMI] = ACTIONS(386), + [anon_sym_SEMI] = ACTIONS(382), [anon_sym_if] = ACTIONS(452), [anon_sym_LPAREN] = ACTIONS(454), [anon_sym_while] = ACTIONS(456), [anon_sym_do] = ACTIONS(49), [anon_sym_for] = ACTIONS(458), - [sym_break_statement] = ACTIONS(388), - [sym_continue_statement] = ACTIONS(388), + [sym_break_statement] = ACTIONS(384), + [sym_continue_statement] = ACTIONS(384), [anon_sym_delete] = ACTIONS(55), [anon_sym_exit] = ACTIONS(460), [anon_sym_return] = ACTIONS(462), [anon_sym_switch] = ACTIONS(61), [anon_sym_LBRACE] = ACTIONS(312), [anon_sym_getline] = ACTIONS(464), - [sym_next_statement] = ACTIONS(388), - [sym_nextfile_statement] = ACTIONS(388), + [sym_next_statement] = ACTIONS(384), + [sym_nextfile_statement] = ACTIONS(384), [anon_sym_print] = ACTIONS(466), [anon_sym_printf] = ACTIONS(468), [anon_sym_SLASH] = ACTIONS(470), @@ -17830,28 +17907,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(484), [anon_sym_POUND] = ACTIONS(171), }, - [134] = { - [sym__statement] = STATE(1143), - [sym__statement_separated] = STATE(139), - [sym__control_statement] = STATE(1143), - [sym_if_statement] = STATE(1143), - [sym_while_statement] = STATE(1143), - [sym_do_while_statement] = STATE(1143), - [sym_for_statement] = STATE(1143), - [sym_for_in_statement] = STATE(1143), - [sym_delete_statement] = STATE(1143), - [sym_exit_statement] = STATE(1143), - [sym_return_statement] = STATE(1143), - [sym_switch_statement] = STATE(1143), - [sym__io_statement] = STATE(1143), + [135] = { + [sym__statement] = STATE(1141), + [sym__statement_separated] = STATE(141), + [sym__control_statement] = STATE(1141), + [sym_if_statement] = STATE(1141), + [sym_while_statement] = STATE(1141), + [sym_do_while_statement] = STATE(1141), + [sym_for_statement] = STATE(1141), + [sym_for_in_statement] = STATE(1141), + [sym_delete_statement] = STATE(1141), + [sym_exit_statement] = STATE(1141), + [sym_return_statement] = STATE(1141), + [sym_switch_statement] = STATE(1141), + [sym__io_statement] = STATE(1141), [sym__getline_exp] = STATE(1507), [sym_getline_input] = STATE(1507), [sym_getline_file] = STATE(1507), [sym_print_statement] = STATE(1658), [sym_printf_statement] = STATE(1658), - [sym_redirected_io_statement] = STATE(1143), - [sym_piped_io_statement] = STATE(1143), - [sym_block] = STATE(1144), + [sym_redirected_io_statement] = STATE(1141), + [sym_piped_io_statement] = STATE(1141), + [sym_block] = STATE(1142), [sym__exp] = STATE(1507), [sym_ternary_exp] = STATE(1413), [sym_binary_exp] = STATE(1413), @@ -17873,25 +17950,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string] = STATE(1413), [sym_func_call] = STATE(1413), [sym_indirect_func_call] = STATE(1507), - [sym_comment] = STATE(60), - [aux_sym_if_statement_repeat1] = STATE(60), + [sym_comment] = STATE(47), + [aux_sym_if_statement_repeat1] = STATE(47), [sym_identifier] = ACTIONS(450), - [anon_sym_SEMI] = ACTIONS(382), + [anon_sym_SEMI] = ACTIONS(378), [anon_sym_if] = ACTIONS(452), [anon_sym_LPAREN] = ACTIONS(454), [anon_sym_while] = ACTIONS(456), [anon_sym_do] = ACTIONS(49), [anon_sym_for] = ACTIONS(458), - [sym_break_statement] = ACTIONS(384), - [sym_continue_statement] = ACTIONS(384), + [sym_break_statement] = ACTIONS(380), + [sym_continue_statement] = ACTIONS(380), [anon_sym_delete] = ACTIONS(55), [anon_sym_exit] = ACTIONS(460), [anon_sym_return] = ACTIONS(462), [anon_sym_switch] = ACTIONS(61), [anon_sym_LBRACE] = ACTIONS(312), [anon_sym_getline] = ACTIONS(464), - [sym_next_statement] = ACTIONS(384), - [sym_nextfile_statement] = ACTIONS(384), + [sym_next_statement] = ACTIONS(380), + [sym_nextfile_statement] = ACTIONS(380), [anon_sym_print] = ACTIONS(466), [anon_sym_printf] = ACTIONS(468), [anon_sym_SLASH] = ACTIONS(470), @@ -17907,9 +17984,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(484), [anon_sym_POUND] = ACTIONS(171), }, - [135] = { + [136] = { + [sym__statement] = STATE(1139), + [sym__statement_separated] = STATE(141), + [sym__control_statement] = STATE(1139), + [sym_if_statement] = STATE(1139), + [sym_while_statement] = STATE(1139), + [sym_do_while_statement] = STATE(1139), + [sym_for_statement] = STATE(1139), + [sym_for_in_statement] = STATE(1139), + [sym_delete_statement] = STATE(1139), + [sym_exit_statement] = STATE(1139), + [sym_return_statement] = STATE(1139), + [sym_switch_statement] = STATE(1139), + [sym__io_statement] = STATE(1139), + [sym__getline_exp] = STATE(1507), + [sym_getline_input] = STATE(1507), + [sym_getline_file] = STATE(1507), + [sym_print_statement] = STATE(1658), + [sym_printf_statement] = STATE(1658), + [sym_redirected_io_statement] = STATE(1139), + [sym_piped_io_statement] = STATE(1139), + [sym_block] = STATE(1140), + [sym__exp] = STATE(1507), + [sym_ternary_exp] = STATE(1413), + [sym_binary_exp] = STATE(1413), + [sym__binary_in] = STATE(1293), + [sym_unary_exp] = STATE(1413), + [sym_update_exp] = STATE(1507), + [sym_assignment_exp] = STATE(1507), + [sym_piped_io_exp] = STATE(1507), + [sym_string_concat] = STATE(1413), + [sym_field_ref] = STATE(1025), + [sym_array_ref] = STATE(697), + [sym_regex] = STATE(1507), + [sym_regex_constant] = STATE(1507), + [sym_grouping] = STATE(1413), + [sym__primitive] = STATE(1413), + [sym_namespace] = STATE(1958), + [sym_ns_qualified_name] = STATE(676), + [sym_number] = STATE(1413), + [sym_string] = STATE(1413), + [sym_func_call] = STATE(1413), + [sym_indirect_func_call] = STATE(1507), + [sym_comment] = STATE(1239), + [aux_sym_if_statement_repeat1] = STATE(1239), + [sym_identifier] = ACTIONS(450), + [anon_sym_SEMI] = ACTIONS(572), + [anon_sym_if] = ACTIONS(452), + [anon_sym_LPAREN] = ACTIONS(454), + [anon_sym_while] = ACTIONS(456), + [anon_sym_do] = ACTIONS(49), + [anon_sym_for] = ACTIONS(458), + [sym_break_statement] = ACTIONS(574), + [sym_continue_statement] = ACTIONS(574), + [anon_sym_delete] = ACTIONS(55), + [anon_sym_exit] = ACTIONS(460), + [anon_sym_return] = ACTIONS(462), + [anon_sym_switch] = ACTIONS(61), + [anon_sym_LBRACE] = ACTIONS(312), + [anon_sym_getline] = ACTIONS(464), + [sym_next_statement] = ACTIONS(574), + [sym_nextfile_statement] = ACTIONS(574), + [anon_sym_print] = ACTIONS(466), + [anon_sym_printf] = ACTIONS(468), + [anon_sym_SLASH] = ACTIONS(470), + [anon_sym_PLUS] = ACTIONS(472), + [anon_sym_DASH] = ACTIONS(472), + [anon_sym_BANG] = ACTIONS(474), + [anon_sym_PLUS_PLUS] = ACTIONS(476), + [anon_sym_DASH_DASH] = ACTIONS(476), + [anon_sym_DOLLAR] = ACTIONS(478), + [anon_sym_AT] = ACTIONS(480), + [aux_sym_number_token1] = ACTIONS(79), + [aux_sym_number_token2] = ACTIONS(482), + [anon_sym_DQUOTE] = ACTIONS(484), + [anon_sym_POUND] = ACTIONS(171), + }, + [137] = { [sym__statement] = STATE(1762), - [sym__statement_separated] = STATE(140), + [sym__statement_separated] = STATE(146), [sym__control_statement] = STATE(1762), [sym_if_statement] = STATE(1762), [sym_while_statement] = STATE(1762), @@ -17950,24 +18104,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string] = STATE(1437), [sym_func_call] = STATE(1437), [sym_indirect_func_call] = STATE(1532), - [sym_comment] = STATE(136), - [aux_sym_if_statement_repeat1] = STATE(136), + [sym_comment] = STATE(138), + [aux_sym_if_statement_repeat1] = STATE(138), [sym_identifier] = ACTIONS(346), [anon_sym_if] = ACTIONS(348), [anon_sym_LPAREN] = ACTIONS(350), [anon_sym_while] = ACTIONS(352), [anon_sym_do] = ACTIONS(93), [anon_sym_for] = ACTIONS(354), - [sym_break_statement] = ACTIONS(574), - [sym_continue_statement] = ACTIONS(574), + [sym_break_statement] = ACTIONS(586), + [sym_continue_statement] = ACTIONS(586), [anon_sym_delete] = ACTIONS(99), [anon_sym_exit] = ACTIONS(356), [anon_sym_return] = ACTIONS(358), [anon_sym_switch] = ACTIONS(105), [anon_sym_LBRACE] = ACTIONS(13), [anon_sym_getline] = ACTIONS(360), - [sym_next_statement] = ACTIONS(574), - [sym_nextfile_statement] = ACTIONS(574), + [sym_next_statement] = ACTIONS(586), + [sym_nextfile_statement] = ACTIONS(586), [anon_sym_print] = ACTIONS(362), [anon_sym_printf] = ACTIONS(364), [anon_sym_SLASH] = ACTIONS(366), @@ -17983,9 +18137,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(284), [anon_sym_POUND] = ACTIONS(171), }, - [136] = { + [138] = { [sym__statement] = STATE(1761), - [sym__statement_separated] = STATE(140), + [sym__statement_separated] = STATE(146), [sym__control_statement] = STATE(1761), [sym_if_statement] = STATE(1761), [sym_while_statement] = STATE(1761), @@ -18034,16 +18188,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(352), [anon_sym_do] = ACTIONS(93), [anon_sym_for] = ACTIONS(354), - [sym_break_statement] = ACTIONS(576), - [sym_continue_statement] = ACTIONS(576), + [sym_break_statement] = ACTIONS(588), + [sym_continue_statement] = ACTIONS(588), [anon_sym_delete] = ACTIONS(99), [anon_sym_exit] = ACTIONS(356), [anon_sym_return] = ACTIONS(358), [anon_sym_switch] = ACTIONS(105), [anon_sym_LBRACE] = ACTIONS(13), [anon_sym_getline] = ACTIONS(360), - [sym_next_statement] = ACTIONS(576), - [sym_nextfile_statement] = ACTIONS(576), + [sym_next_statement] = ACTIONS(588), + [sym_nextfile_statement] = ACTIONS(588), [anon_sym_print] = ACTIONS(362), [anon_sym_printf] = ACTIONS(364), [anon_sym_SLASH] = ACTIONS(366), @@ -18059,9 +18213,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(284), [anon_sym_POUND] = ACTIONS(171), }, - [137] = { + [139] = { [sym__statement] = STATE(1763), - [sym__statement_separated] = STATE(140), + [sym__statement_separated] = STATE(146), [sym__control_statement] = STATE(1763), [sym_if_statement] = STATE(1763), [sym_while_statement] = STATE(1763), @@ -18110,16 +18264,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(352), [anon_sym_do] = ACTIONS(93), [anon_sym_for] = ACTIONS(354), - [sym_break_statement] = ACTIONS(578), - [sym_continue_statement] = ACTIONS(578), + [sym_break_statement] = ACTIONS(590), + [sym_continue_statement] = ACTIONS(590), [anon_sym_delete] = ACTIONS(99), [anon_sym_exit] = ACTIONS(356), [anon_sym_return] = ACTIONS(358), [anon_sym_switch] = ACTIONS(105), [anon_sym_LBRACE] = ACTIONS(13), [anon_sym_getline] = ACTIONS(360), - [sym_next_statement] = ACTIONS(578), - [sym_nextfile_statement] = ACTIONS(578), + [sym_next_statement] = ACTIONS(590), + [sym_nextfile_statement] = ACTIONS(590), [anon_sym_print] = ACTIONS(362), [anon_sym_printf] = ACTIONS(364), [anon_sym_SLASH] = ACTIONS(366), @@ -18135,9 +18289,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(284), [anon_sym_POUND] = ACTIONS(171), }, - [138] = { + [140] = { [sym__statement] = STATE(1772), - [sym__statement_separated] = STATE(140), + [sym__statement_separated] = STATE(146), [sym__control_statement] = STATE(1772), [sym_if_statement] = STATE(1772), [sym_while_statement] = STATE(1772), @@ -18178,24 +18332,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string] = STATE(1437), [sym_func_call] = STATE(1437), [sym_indirect_func_call] = STATE(1532), - [sym_comment] = STATE(137), - [aux_sym_if_statement_repeat1] = STATE(137), + [sym_comment] = STATE(139), + [aux_sym_if_statement_repeat1] = STATE(139), [sym_identifier] = ACTIONS(346), [anon_sym_if] = ACTIONS(348), [anon_sym_LPAREN] = ACTIONS(350), [anon_sym_while] = ACTIONS(352), [anon_sym_do] = ACTIONS(93), [anon_sym_for] = ACTIONS(354), - [sym_break_statement] = ACTIONS(580), - [sym_continue_statement] = ACTIONS(580), + [sym_break_statement] = ACTIONS(592), + [sym_continue_statement] = ACTIONS(592), [anon_sym_delete] = ACTIONS(99), [anon_sym_exit] = ACTIONS(356), [anon_sym_return] = ACTIONS(358), [anon_sym_switch] = ACTIONS(105), [anon_sym_LBRACE] = ACTIONS(13), [anon_sym_getline] = ACTIONS(360), - [sym_next_statement] = ACTIONS(580), - [sym_nextfile_statement] = ACTIONS(580), + [sym_next_statement] = ACTIONS(592), + [sym_nextfile_statement] = ACTIONS(592), [anon_sym_print] = ACTIONS(362), [anon_sym_printf] = ACTIONS(364), [anon_sym_SLASH] = ACTIONS(366), @@ -18211,9 +18365,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(284), [anon_sym_POUND] = ACTIONS(171), }, - [139] = { + [141] = { [sym__statement] = STATE(1133), - [sym__statement_separated] = STATE(139), + [sym__statement_separated] = STATE(141), [sym__control_statement] = STATE(1133), [sym_if_statement] = STATE(1133), [sym_while_statement] = STATE(1133), @@ -18258,7 +18412,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LF] = ACTIONS(41), [anon_sym_CR_LF] = ACTIONS(41), [anon_sym_if] = ACTIONS(452), - [anon_sym_LPAREN] = ACTIONS(582), + [anon_sym_LPAREN] = ACTIONS(594), [anon_sym_while] = ACTIONS(41), [anon_sym_do] = ACTIONS(49), [anon_sym_for] = ACTIONS(458), @@ -18273,167 +18427,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nextfile_statement] = ACTIONS(53), [anon_sym_print] = ACTIONS(466), [anon_sym_printf] = ACTIONS(468), - [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_SLASH] = ACTIONS(596), [anon_sym_PLUS] = ACTIONS(472), [anon_sym_DASH] = ACTIONS(472), [anon_sym_BANG] = ACTIONS(472), - [anon_sym_PLUS_PLUS] = ACTIONS(586), - [anon_sym_DASH_DASH] = ACTIONS(586), - [anon_sym_DOLLAR] = ACTIONS(588), - [anon_sym_AT] = ACTIONS(590), + [anon_sym_PLUS_PLUS] = ACTIONS(598), + [anon_sym_DASH_DASH] = ACTIONS(598), + [anon_sym_DOLLAR] = ACTIONS(600), + [anon_sym_AT] = ACTIONS(602), [aux_sym_number_token1] = ACTIONS(79), [aux_sym_number_token2] = ACTIONS(79), [anon_sym_DQUOTE] = ACTIONS(81), [sym__if_else_separator] = ACTIONS(83), }, - [140] = { - [sym__statement] = STATE(1224), - [sym__statement_separated] = STATE(140), - [sym__control_statement] = STATE(1224), - [sym_if_statement] = STATE(1224), - [sym_while_statement] = STATE(1224), - [sym_do_while_statement] = STATE(1224), - [sym_for_statement] = STATE(1224), - [sym_for_in_statement] = STATE(1224), - [sym_delete_statement] = STATE(1224), - [sym_exit_statement] = STATE(1224), - [sym_return_statement] = STATE(1224), - [sym_switch_statement] = STATE(1224), - [sym__io_statement] = STATE(1224), - [sym__getline_exp] = STATE(1532), - [sym_getline_input] = STATE(1532), - [sym_getline_file] = STATE(1532), - [sym_print_statement] = STATE(1665), - [sym_printf_statement] = STATE(1665), - [sym_redirected_io_statement] = STATE(1224), - [sym_piped_io_statement] = STATE(1224), - [sym__exp] = STATE(1532), - [sym_ternary_exp] = STATE(1437), - [sym_binary_exp] = STATE(1437), - [sym__binary_in] = STATE(1341), - [sym_unary_exp] = STATE(1437), - [sym_update_exp] = STATE(1532), - [sym_assignment_exp] = STATE(1532), - [sym_piped_io_exp] = STATE(1532), - [sym_string_concat] = STATE(1437), - [sym_field_ref] = STATE(1158), - [sym_array_ref] = STATE(1039), - [sym_regex] = STATE(1532), - [sym_regex_constant] = STATE(1532), - [sym_grouping] = STATE(1437), - [sym__primitive] = STATE(1437), - [sym_namespace] = STATE(1881), - [sym_ns_qualified_name] = STATE(709), - [sym_number] = STATE(1437), - [sym_string] = STATE(1437), - [sym_func_call] = STATE(1437), - [sym_indirect_func_call] = STATE(1532), - [sym_identifier] = ACTIONS(346), - [anon_sym_SEMI] = ACTIONS(41), - [anon_sym_LF] = ACTIONS(41), - [anon_sym_CR_LF] = ACTIONS(41), - [anon_sym_if] = ACTIONS(348), - [anon_sym_LPAREN] = ACTIONS(592), - [anon_sym_while] = ACTIONS(41), - [anon_sym_do] = ACTIONS(93), - [anon_sym_for] = ACTIONS(354), - [sym_break_statement] = ACTIONS(97), - [sym_continue_statement] = ACTIONS(97), - [anon_sym_delete] = ACTIONS(99), - [anon_sym_exit] = ACTIONS(356), - [anon_sym_return] = ACTIONS(358), - [anon_sym_switch] = ACTIONS(105), - [anon_sym_getline] = ACTIONS(360), - [sym_next_statement] = ACTIONS(97), - [sym_nextfile_statement] = ACTIONS(97), - [anon_sym_print] = ACTIONS(362), - [anon_sym_printf] = ACTIONS(364), - [anon_sym_SLASH] = ACTIONS(594), - [anon_sym_PLUS] = ACTIONS(368), - [anon_sym_DASH] = ACTIONS(368), - [anon_sym_BANG] = ACTIONS(368), - [anon_sym_PLUS_PLUS] = ACTIONS(596), - [anon_sym_DASH_DASH] = ACTIONS(596), - [anon_sym_DOLLAR] = ACTIONS(598), - [anon_sym_AT] = ACTIONS(600), - [aux_sym_number_token1] = ACTIONS(123), - [aux_sym_number_token2] = ACTIONS(123), - [anon_sym_DQUOTE] = ACTIONS(125), - }, - [141] = { - [sym__statement] = STATE(1672), - [sym__statement_separated] = STATE(3), - [sym__control_statement] = STATE(1672), - [sym_if_statement] = STATE(1672), - [sym_while_statement] = STATE(1672), - [sym_do_while_statement] = STATE(1672), - [sym_for_statement] = STATE(1672), - [sym_for_in_statement] = STATE(1672), - [sym_delete_statement] = STATE(1672), - [sym_exit_statement] = STATE(1672), - [sym_return_statement] = STATE(1672), - [sym_switch_statement] = STATE(1672), - [sym__io_statement] = STATE(1672), - [sym__getline_exp] = STATE(1439), - [sym_getline_input] = STATE(1439), - [sym_getline_file] = STATE(1439), - [sym_print_statement] = STATE(1657), - [sym_printf_statement] = STATE(1657), - [sym_redirected_io_statement] = STATE(1672), - [sym_piped_io_statement] = STATE(1672), - [sym__exp] = STATE(1439), - [sym_ternary_exp] = STATE(1377), - [sym_binary_exp] = STATE(1377), - [sym__binary_in] = STATE(1341), - [sym_unary_exp] = STATE(1377), - [sym_update_exp] = STATE(1439), - [sym_assignment_exp] = STATE(1439), - [sym_piped_io_exp] = STATE(1439), - [sym_string_concat] = STATE(1377), - [sym_field_ref] = STATE(646), - [sym_array_ref] = STATE(591), - [sym_regex] = STATE(1439), - [sym_regex_constant] = STATE(1439), - [sym_grouping] = STATE(1377), - [sym__primitive] = STATE(1377), - [sym_namespace] = STATE(1881), - [sym_ns_qualified_name] = STATE(586), - [sym_number] = STATE(1377), - [sym_string] = STATE(1377), - [sym_func_call] = STATE(1377), - [sym_indirect_func_call] = STATE(1439), - [sym_comment] = STATE(145), - [aux_sym_if_statement_repeat1] = STATE(145), - [sym_identifier] = ACTIONS(85), - [anon_sym_if] = ACTIONS(87), - [anon_sym_LPAREN] = ACTIONS(266), - [anon_sym_while] = ACTIONS(91), - [anon_sym_do] = ACTIONS(93), - [anon_sym_for] = ACTIONS(95), - [sym_break_statement] = ACTIONS(602), - [sym_continue_statement] = ACTIONS(602), - [anon_sym_delete] = ACTIONS(99), - [anon_sym_exit] = ACTIONS(101), - [anon_sym_return] = ACTIONS(103), - [anon_sym_switch] = ACTIONS(105), - [anon_sym_getline] = ACTIONS(107), - [sym_next_statement] = ACTIONS(602), - [sym_nextfile_statement] = ACTIONS(602), - [anon_sym_print] = ACTIONS(109), - [anon_sym_printf] = ACTIONS(111), - [anon_sym_SLASH] = ACTIONS(272), - [anon_sym_PLUS] = ACTIONS(115), - [anon_sym_DASH] = ACTIONS(115), - [anon_sym_BANG] = ACTIONS(274), - [anon_sym_PLUS_PLUS] = ACTIONS(276), - [anon_sym_DASH_DASH] = ACTIONS(276), - [anon_sym_DOLLAR] = ACTIONS(278), - [anon_sym_AT] = ACTIONS(280), - [aux_sym_number_token1] = ACTIONS(123), - [aux_sym_number_token2] = ACTIONS(282), - [anon_sym_DQUOTE] = ACTIONS(284), - [anon_sym_POUND] = ACTIONS(171), - }, [142] = { [sym__statement] = STATE(1669), [sym__statement_separated] = STATE(2), @@ -18480,7 +18486,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(39), [anon_sym_SEMI] = ACTIONS(604), [anon_sym_if] = ACTIONS(43), - [anon_sym_LPAREN] = ACTIONS(538), + [anon_sym_LPAREN] = ACTIONS(544), [anon_sym_while] = ACTIONS(47), [anon_sym_do] = ACTIONS(49), [anon_sym_for] = ACTIONS(51), @@ -18496,14 +18502,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nextfile_statement] = ACTIONS(606), [anon_sym_print] = ACTIONS(65), [anon_sym_printf] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(540), + [anon_sym_SLASH] = ACTIONS(546), [anon_sym_PLUS] = ACTIONS(71), [anon_sym_DASH] = ACTIONS(71), - [anon_sym_BANG] = ACTIONS(542), - [anon_sym_PLUS_PLUS] = ACTIONS(544), - [anon_sym_DASH_DASH] = ACTIONS(544), - [anon_sym_DOLLAR] = ACTIONS(546), - [anon_sym_AT] = ACTIONS(548), + [anon_sym_BANG] = ACTIONS(548), + [anon_sym_PLUS_PLUS] = ACTIONS(550), + [anon_sym_DASH_DASH] = ACTIONS(550), + [anon_sym_DOLLAR] = ACTIONS(552), + [anon_sym_AT] = ACTIONS(554), [aux_sym_number_token1] = ACTIONS(79), [aux_sym_number_token2] = ACTIONS(482), [anon_sym_DQUOTE] = ACTIONS(484), @@ -18583,154 +18589,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(336), }, [144] = { - [sym__statement] = STATE(1661), - [sym__statement_separated] = STATE(2), - [sym__control_statement] = STATE(1661), - [sym_if_statement] = STATE(1661), - [sym_while_statement] = STATE(1661), - [sym_do_while_statement] = STATE(1661), - [sym_for_statement] = STATE(1661), - [sym_for_in_statement] = STATE(1661), - [sym_delete_statement] = STATE(1661), - [sym_exit_statement] = STATE(1661), - [sym_return_statement] = STATE(1661), - [sym_switch_statement] = STATE(1661), - [sym__io_statement] = STATE(1661), - [sym__getline_exp] = STATE(1416), - [sym_getline_input] = STATE(1416), - [sym_getline_file] = STATE(1416), - [sym_print_statement] = STATE(1656), - [sym_printf_statement] = STATE(1656), - [sym_redirected_io_statement] = STATE(1661), - [sym_piped_io_statement] = STATE(1661), - [sym_block] = STATE(1660), - [sym__exp] = STATE(1416), - [sym_ternary_exp] = STATE(1314), - [sym_binary_exp] = STATE(1314), + [sym__statement] = STATE(1731), + [sym__statement_separated] = STATE(141), + [sym__control_statement] = STATE(1731), + [sym_if_statement] = STATE(1731), + [sym_while_statement] = STATE(1731), + [sym_do_while_statement] = STATE(1731), + [sym_for_statement] = STATE(1731), + [sym_for_in_statement] = STATE(1731), + [sym_delete_statement] = STATE(1731), + [sym_exit_statement] = STATE(1731), + [sym_return_statement] = STATE(1731), + [sym_switch_statement] = STATE(1731), + [sym__io_statement] = STATE(1731), + [sym__getline_exp] = STATE(1507), + [sym_getline_input] = STATE(1507), + [sym_getline_file] = STATE(1507), + [sym_print_statement] = STATE(1658), + [sym_printf_statement] = STATE(1658), + [sym_redirected_io_statement] = STATE(1731), + [sym_piped_io_statement] = STATE(1731), + [sym_block] = STATE(1733), + [sym__exp] = STATE(1507), + [sym_ternary_exp] = STATE(1413), + [sym_binary_exp] = STATE(1413), [sym__binary_in] = STATE(1293), - [sym_unary_exp] = STATE(1314), - [sym_update_exp] = STATE(1416), - [sym_assignment_exp] = STATE(1416), - [sym_piped_io_exp] = STATE(1416), - [sym_string_concat] = STATE(1314), - [sym_field_ref] = STATE(614), - [sym_array_ref] = STATE(580), - [sym_regex] = STATE(1416), - [sym_regex_constant] = STATE(1416), - [sym_grouping] = STATE(1314), - [sym__primitive] = STATE(1314), + [sym_unary_exp] = STATE(1413), + [sym_update_exp] = STATE(1507), + [sym_assignment_exp] = STATE(1507), + [sym_piped_io_exp] = STATE(1507), + [sym_string_concat] = STATE(1413), + [sym_field_ref] = STATE(1025), + [sym_array_ref] = STATE(697), + [sym_regex] = STATE(1507), + [sym_regex_constant] = STATE(1507), + [sym_grouping] = STATE(1413), + [sym__primitive] = STATE(1413), [sym_namespace] = STATE(1958), - [sym_ns_qualified_name] = STATE(575), - [sym_number] = STATE(1314), - [sym_string] = STATE(1314), - [sym_func_call] = STATE(1314), - [sym_indirect_func_call] = STATE(1416), - [sym_identifier] = ACTIONS(39), + [sym_ns_qualified_name] = STATE(676), + [sym_number] = STATE(1413), + [sym_string] = STATE(1413), + [sym_func_call] = STATE(1413), + [sym_indirect_func_call] = STATE(1507), + [sym_identifier] = ACTIONS(450), [anon_sym_SEMI] = ACTIONS(612), - [anon_sym_if] = ACTIONS(43), - [anon_sym_LPAREN] = ACTIONS(538), - [anon_sym_while] = ACTIONS(47), + [anon_sym_if] = ACTIONS(452), + [anon_sym_LPAREN] = ACTIONS(454), + [anon_sym_while] = ACTIONS(456), [anon_sym_do] = ACTIONS(49), - [anon_sym_for] = ACTIONS(51), + [anon_sym_for] = ACTIONS(458), [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_exit] = ACTIONS(460), + [anon_sym_return] = ACTIONS(462), [anon_sym_switch] = ACTIONS(61), [anon_sym_LBRACE] = ACTIONS(312), - [anon_sym_getline] = ACTIONS(63), + [anon_sym_getline] = ACTIONS(464), [sym_next_statement] = ACTIONS(614), [sym_nextfile_statement] = ACTIONS(614), - [anon_sym_print] = ACTIONS(65), - [anon_sym_printf] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(540), - [anon_sym_PLUS] = ACTIONS(71), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_BANG] = ACTIONS(542), - [anon_sym_PLUS_PLUS] = ACTIONS(544), - [anon_sym_DASH_DASH] = ACTIONS(544), - [anon_sym_DOLLAR] = ACTIONS(546), - [anon_sym_AT] = ACTIONS(548), + [anon_sym_print] = ACTIONS(466), + [anon_sym_printf] = ACTIONS(468), + [anon_sym_SLASH] = ACTIONS(470), + [anon_sym_PLUS] = ACTIONS(472), + [anon_sym_DASH] = ACTIONS(472), + [anon_sym_BANG] = ACTIONS(474), + [anon_sym_PLUS_PLUS] = ACTIONS(476), + [anon_sym_DASH_DASH] = ACTIONS(476), + [anon_sym_DOLLAR] = ACTIONS(478), + [anon_sym_AT] = ACTIONS(480), [aux_sym_number_token1] = ACTIONS(79), [aux_sym_number_token2] = ACTIONS(482), [anon_sym_DQUOTE] = ACTIONS(484), }, [145] = { - [sym__statement] = STATE(1671), - [sym__statement_separated] = STATE(3), - [sym__control_statement] = STATE(1671), - [sym_if_statement] = STATE(1671), - [sym_while_statement] = STATE(1671), - [sym_do_while_statement] = STATE(1671), - [sym_for_statement] = STATE(1671), - [sym_for_in_statement] = STATE(1671), - [sym_delete_statement] = STATE(1671), - [sym_exit_statement] = STATE(1671), - [sym_return_statement] = STATE(1671), - [sym_switch_statement] = STATE(1671), - [sym__io_statement] = STATE(1671), - [sym__getline_exp] = STATE(1439), - [sym_getline_input] = STATE(1439), - [sym_getline_file] = STATE(1439), - [sym_print_statement] = STATE(1657), - [sym_printf_statement] = STATE(1657), - [sym_redirected_io_statement] = STATE(1671), - [sym_piped_io_statement] = STATE(1671), - [sym__exp] = STATE(1439), - [sym_ternary_exp] = STATE(1377), - [sym_binary_exp] = STATE(1377), - [sym__binary_in] = STATE(1341), - [sym_unary_exp] = STATE(1377), - [sym_update_exp] = STATE(1439), - [sym_assignment_exp] = STATE(1439), - [sym_piped_io_exp] = STATE(1439), - [sym_string_concat] = STATE(1377), - [sym_field_ref] = STATE(646), - [sym_array_ref] = STATE(591), - [sym_regex] = STATE(1439), - [sym_regex_constant] = STATE(1439), - [sym_grouping] = STATE(1377), - [sym__primitive] = STATE(1377), - [sym_namespace] = STATE(1881), - [sym_ns_qualified_name] = STATE(586), - [sym_number] = STATE(1377), - [sym_string] = STATE(1377), - [sym_func_call] = STATE(1377), - [sym_indirect_func_call] = STATE(1439), - [sym_comment] = STATE(1239), - [aux_sym_if_statement_repeat1] = STATE(1239), - [sym_identifier] = ACTIONS(85), - [anon_sym_if] = ACTIONS(87), - [anon_sym_LPAREN] = ACTIONS(266), - [anon_sym_while] = ACTIONS(91), - [anon_sym_do] = ACTIONS(93), - [anon_sym_for] = ACTIONS(95), - [sym_break_statement] = ACTIONS(616), - [sym_continue_statement] = ACTIONS(616), - [anon_sym_delete] = ACTIONS(99), - [anon_sym_exit] = ACTIONS(101), - [anon_sym_return] = ACTIONS(103), - [anon_sym_switch] = ACTIONS(105), - [anon_sym_getline] = ACTIONS(107), - [sym_next_statement] = ACTIONS(616), - [sym_nextfile_statement] = ACTIONS(616), - [anon_sym_print] = ACTIONS(109), - [anon_sym_printf] = ACTIONS(111), - [anon_sym_SLASH] = ACTIONS(272), - [anon_sym_PLUS] = ACTIONS(115), - [anon_sym_DASH] = ACTIONS(115), - [anon_sym_BANG] = ACTIONS(274), - [anon_sym_PLUS_PLUS] = ACTIONS(276), - [anon_sym_DASH_DASH] = ACTIONS(276), - [anon_sym_DOLLAR] = ACTIONS(278), - [anon_sym_AT] = ACTIONS(280), - [aux_sym_number_token1] = ACTIONS(123), - [aux_sym_number_token2] = ACTIONS(282), - [anon_sym_DQUOTE] = ACTIONS(284), - [anon_sym_POUND] = ACTIONS(171), - }, - [146] = { [sym__statement] = STATE(1248), [sym__statement_separated] = STATE(1248), [sym__control_statement] = STATE(1248), @@ -18774,22 +18706,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_func_call] = STATE(380), [sym_indirect_func_call] = STATE(472), [sym_identifier] = ACTIONS(294), - [anon_sym_SEMI] = ACTIONS(618), + [anon_sym_SEMI] = ACTIONS(616), [anon_sym_if] = ACTIONS(298), [anon_sym_LPAREN] = ACTIONS(300), [anon_sym_while] = ACTIONS(302), [anon_sym_do] = ACTIONS(49), [anon_sym_for] = ACTIONS(304), - [sym_break_statement] = ACTIONS(620), - [sym_continue_statement] = ACTIONS(620), + [sym_break_statement] = ACTIONS(618), + [sym_continue_statement] = ACTIONS(618), [anon_sym_delete] = ACTIONS(55), [anon_sym_exit] = ACTIONS(308), [anon_sym_return] = ACTIONS(310), [anon_sym_switch] = ACTIONS(61), [anon_sym_LBRACE] = ACTIONS(312), [anon_sym_getline] = ACTIONS(314), - [sym_next_statement] = ACTIONS(620), - [sym_nextfile_statement] = ACTIONS(620), + [sym_next_statement] = ACTIONS(618), + [sym_nextfile_statement] = ACTIONS(618), [anon_sym_print] = ACTIONS(316), [anon_sym_printf] = ACTIONS(318), [anon_sym_SLASH] = ACTIONS(320), @@ -18804,83 +18736,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_number_token2] = ACTIONS(334), [anon_sym_DQUOTE] = ACTIONS(336), }, - [147] = { - [sym__statement] = STATE(1731), - [sym__statement_separated] = STATE(139), - [sym__control_statement] = STATE(1731), - [sym_if_statement] = STATE(1731), - [sym_while_statement] = STATE(1731), - [sym_do_while_statement] = STATE(1731), - [sym_for_statement] = STATE(1731), - [sym_for_in_statement] = STATE(1731), - [sym_delete_statement] = STATE(1731), - [sym_exit_statement] = STATE(1731), - [sym_return_statement] = STATE(1731), - [sym_switch_statement] = STATE(1731), - [sym__io_statement] = STATE(1731), - [sym__getline_exp] = STATE(1507), - [sym_getline_input] = STATE(1507), - [sym_getline_file] = STATE(1507), - [sym_print_statement] = STATE(1658), - [sym_printf_statement] = STATE(1658), - [sym_redirected_io_statement] = STATE(1731), - [sym_piped_io_statement] = STATE(1731), - [sym_block] = STATE(1733), - [sym__exp] = STATE(1507), - [sym_ternary_exp] = STATE(1413), - [sym_binary_exp] = STATE(1413), - [sym__binary_in] = STATE(1293), - [sym_unary_exp] = STATE(1413), - [sym_update_exp] = STATE(1507), - [sym_assignment_exp] = STATE(1507), - [sym_piped_io_exp] = STATE(1507), - [sym_string_concat] = STATE(1413), - [sym_field_ref] = STATE(1025), - [sym_array_ref] = STATE(697), - [sym_regex] = STATE(1507), - [sym_regex_constant] = STATE(1507), - [sym_grouping] = STATE(1413), - [sym__primitive] = STATE(1413), - [sym_namespace] = STATE(1958), - [sym_ns_qualified_name] = STATE(676), - [sym_number] = STATE(1413), - [sym_string] = STATE(1413), - [sym_func_call] = STATE(1413), - [sym_indirect_func_call] = STATE(1507), - [sym_identifier] = ACTIONS(450), - [anon_sym_SEMI] = ACTIONS(622), - [anon_sym_if] = ACTIONS(452), - [anon_sym_LPAREN] = ACTIONS(454), - [anon_sym_while] = ACTIONS(456), - [anon_sym_do] = ACTIONS(49), - [anon_sym_for] = ACTIONS(458), - [sym_break_statement] = ACTIONS(624), - [sym_continue_statement] = ACTIONS(624), - [anon_sym_delete] = ACTIONS(55), - [anon_sym_exit] = ACTIONS(460), - [anon_sym_return] = ACTIONS(462), - [anon_sym_switch] = ACTIONS(61), - [anon_sym_LBRACE] = ACTIONS(312), - [anon_sym_getline] = ACTIONS(464), - [sym_next_statement] = ACTIONS(624), - [sym_nextfile_statement] = ACTIONS(624), - [anon_sym_print] = ACTIONS(466), - [anon_sym_printf] = ACTIONS(468), - [anon_sym_SLASH] = ACTIONS(470), - [anon_sym_PLUS] = ACTIONS(472), - [anon_sym_DASH] = ACTIONS(472), - [anon_sym_BANG] = ACTIONS(474), - [anon_sym_PLUS_PLUS] = ACTIONS(476), - [anon_sym_DASH_DASH] = ACTIONS(476), - [anon_sym_DOLLAR] = ACTIONS(478), - [anon_sym_AT] = ACTIONS(480), - [aux_sym_number_token1] = ACTIONS(79), - [aux_sym_number_token2] = ACTIONS(482), - [anon_sym_DQUOTE] = ACTIONS(484), + [146] = { + [sym__statement] = STATE(1224), + [sym__statement_separated] = STATE(146), + [sym__control_statement] = STATE(1224), + [sym_if_statement] = STATE(1224), + [sym_while_statement] = STATE(1224), + [sym_do_while_statement] = STATE(1224), + [sym_for_statement] = STATE(1224), + [sym_for_in_statement] = STATE(1224), + [sym_delete_statement] = STATE(1224), + [sym_exit_statement] = STATE(1224), + [sym_return_statement] = STATE(1224), + [sym_switch_statement] = STATE(1224), + [sym__io_statement] = STATE(1224), + [sym__getline_exp] = STATE(1532), + [sym_getline_input] = STATE(1532), + [sym_getline_file] = STATE(1532), + [sym_print_statement] = STATE(1665), + [sym_printf_statement] = STATE(1665), + [sym_redirected_io_statement] = STATE(1224), + [sym_piped_io_statement] = STATE(1224), + [sym__exp] = STATE(1532), + [sym_ternary_exp] = STATE(1437), + [sym_binary_exp] = STATE(1437), + [sym__binary_in] = STATE(1341), + [sym_unary_exp] = STATE(1437), + [sym_update_exp] = STATE(1532), + [sym_assignment_exp] = STATE(1532), + [sym_piped_io_exp] = STATE(1532), + [sym_string_concat] = STATE(1437), + [sym_field_ref] = STATE(1158), + [sym_array_ref] = STATE(1039), + [sym_regex] = STATE(1532), + [sym_regex_constant] = STATE(1532), + [sym_grouping] = STATE(1437), + [sym__primitive] = STATE(1437), + [sym_namespace] = STATE(1881), + [sym_ns_qualified_name] = STATE(709), + [sym_number] = STATE(1437), + [sym_string] = STATE(1437), + [sym_func_call] = STATE(1437), + [sym_indirect_func_call] = STATE(1532), + [sym_identifier] = ACTIONS(346), + [anon_sym_SEMI] = ACTIONS(41), + [anon_sym_LF] = ACTIONS(41), + [anon_sym_CR_LF] = ACTIONS(41), + [anon_sym_if] = ACTIONS(348), + [anon_sym_LPAREN] = ACTIONS(620), + [anon_sym_while] = ACTIONS(41), + [anon_sym_do] = ACTIONS(93), + [anon_sym_for] = ACTIONS(354), + [sym_break_statement] = ACTIONS(97), + [sym_continue_statement] = ACTIONS(97), + [anon_sym_delete] = ACTIONS(99), + [anon_sym_exit] = ACTIONS(356), + [anon_sym_return] = ACTIONS(358), + [anon_sym_switch] = ACTIONS(105), + [anon_sym_getline] = ACTIONS(360), + [sym_next_statement] = ACTIONS(97), + [sym_nextfile_statement] = ACTIONS(97), + [anon_sym_print] = ACTIONS(362), + [anon_sym_printf] = ACTIONS(364), + [anon_sym_SLASH] = ACTIONS(622), + [anon_sym_PLUS] = ACTIONS(368), + [anon_sym_DASH] = ACTIONS(368), + [anon_sym_BANG] = ACTIONS(368), + [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), }, - [148] = { + [147] = { [sym__statement] = STATE(1735), - [sym__statement_separated] = STATE(139), + [sym__statement_separated] = STATE(141), [sym__control_statement] = STATE(1735), [sym_if_statement] = STATE(1735), [sym_while_statement] = STATE(1735), @@ -18922,22 +18854,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_func_call] = STATE(1413), [sym_indirect_func_call] = STATE(1507), [sym_identifier] = ACTIONS(450), - [anon_sym_SEMI] = ACTIONS(626), + [anon_sym_SEMI] = ACTIONS(630), [anon_sym_if] = ACTIONS(452), [anon_sym_LPAREN] = ACTIONS(454), [anon_sym_while] = ACTIONS(456), [anon_sym_do] = ACTIONS(49), [anon_sym_for] = ACTIONS(458), - [sym_break_statement] = ACTIONS(628), - [sym_continue_statement] = ACTIONS(628), + [sym_break_statement] = ACTIONS(632), + [sym_continue_statement] = ACTIONS(632), [anon_sym_delete] = ACTIONS(55), [anon_sym_exit] = ACTIONS(460), [anon_sym_return] = ACTIONS(462), [anon_sym_switch] = ACTIONS(61), [anon_sym_LBRACE] = ACTIONS(312), [anon_sym_getline] = ACTIONS(464), - [sym_next_statement] = ACTIONS(628), - [sym_nextfile_statement] = ACTIONS(628), + [sym_next_statement] = ACTIONS(632), + [sym_nextfile_statement] = ACTIONS(632), [anon_sym_print] = ACTIONS(466), [anon_sym_printf] = ACTIONS(468), [anon_sym_SLASH] = ACTIONS(470), @@ -18952,82 +18884,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_number_token2] = ACTIONS(482), [anon_sym_DQUOTE] = ACTIONS(484), }, - [149] = { - [sym__statement] = STATE(1175), - [sym__statement_separated] = STATE(3), - [sym__control_statement] = STATE(1175), - [sym_if_statement] = STATE(1175), - [sym_while_statement] = STATE(1175), - [sym_do_while_statement] = STATE(1175), - [sym_for_statement] = STATE(1175), - [sym_for_in_statement] = STATE(1175), - [sym_delete_statement] = STATE(1175), - [sym_exit_statement] = STATE(1175), - [sym_return_statement] = STATE(1175), - [sym_switch_statement] = STATE(1175), - [sym__io_statement] = STATE(1175), - [sym__getline_exp] = STATE(1439), - [sym_getline_input] = STATE(1439), - [sym_getline_file] = STATE(1439), - [sym_print_statement] = STATE(1657), - [sym_printf_statement] = STATE(1657), - [sym_redirected_io_statement] = STATE(1175), - [sym_piped_io_statement] = STATE(1175), - [sym_block] = STATE(1174), - [sym__exp] = STATE(1439), - [sym_ternary_exp] = STATE(1377), - [sym_binary_exp] = STATE(1377), - [sym__binary_in] = STATE(1341), - [sym_unary_exp] = STATE(1377), - [sym_update_exp] = STATE(1439), - [sym_assignment_exp] = STATE(1439), - [sym_piped_io_exp] = STATE(1439), - [sym_string_concat] = STATE(1377), - [sym_field_ref] = STATE(646), - [sym_array_ref] = STATE(591), - [sym_regex] = STATE(1439), - [sym_regex_constant] = STATE(1439), - [sym_grouping] = STATE(1377), - [sym__primitive] = STATE(1377), - [sym_namespace] = STATE(1881), - [sym_ns_qualified_name] = STATE(586), - [sym_number] = STATE(1377), - [sym_string] = STATE(1377), - [sym_func_call] = STATE(1377), - [sym_indirect_func_call] = STATE(1439), - [sym_identifier] = ACTIONS(85), - [anon_sym_if] = ACTIONS(87), - [anon_sym_LPAREN] = ACTIONS(266), - [anon_sym_while] = ACTIONS(91), - [anon_sym_do] = ACTIONS(93), - [anon_sym_for] = ACTIONS(95), - [sym_break_statement] = ACTIONS(630), - [sym_continue_statement] = ACTIONS(630), - [anon_sym_delete] = ACTIONS(99), - [anon_sym_exit] = ACTIONS(101), - [anon_sym_return] = ACTIONS(103), - [anon_sym_switch] = ACTIONS(105), - [anon_sym_LBRACE] = ACTIONS(270), - [anon_sym_getline] = ACTIONS(107), - [sym_next_statement] = ACTIONS(630), - [sym_nextfile_statement] = ACTIONS(630), - [anon_sym_print] = ACTIONS(109), - [anon_sym_printf] = ACTIONS(111), - [anon_sym_SLASH] = ACTIONS(272), - [anon_sym_PLUS] = ACTIONS(115), - [anon_sym_DASH] = ACTIONS(115), - [anon_sym_BANG] = ACTIONS(274), - [anon_sym_PLUS_PLUS] = ACTIONS(276), - [anon_sym_DASH_DASH] = ACTIONS(276), - [anon_sym_DOLLAR] = ACTIONS(278), - [anon_sym_AT] = ACTIONS(280), - [aux_sym_number_token1] = ACTIONS(123), - [aux_sym_number_token2] = ACTIONS(282), - [anon_sym_DQUOTE] = ACTIONS(284), + [148] = { + [sym__statement] = STATE(1661), + [sym__statement_separated] = STATE(2), + [sym__control_statement] = STATE(1661), + [sym_if_statement] = STATE(1661), + [sym_while_statement] = STATE(1661), + [sym_do_while_statement] = STATE(1661), + [sym_for_statement] = STATE(1661), + [sym_for_in_statement] = STATE(1661), + [sym_delete_statement] = STATE(1661), + [sym_exit_statement] = STATE(1661), + [sym_return_statement] = STATE(1661), + [sym_switch_statement] = STATE(1661), + [sym__io_statement] = STATE(1661), + [sym__getline_exp] = STATE(1416), + [sym_getline_input] = STATE(1416), + [sym_getline_file] = STATE(1416), + [sym_print_statement] = STATE(1656), + [sym_printf_statement] = STATE(1656), + [sym_redirected_io_statement] = STATE(1661), + [sym_piped_io_statement] = STATE(1661), + [sym_block] = STATE(1660), + [sym__exp] = STATE(1416), + [sym_ternary_exp] = STATE(1314), + [sym_binary_exp] = STATE(1314), + [sym__binary_in] = STATE(1293), + [sym_unary_exp] = STATE(1314), + [sym_update_exp] = STATE(1416), + [sym_assignment_exp] = STATE(1416), + [sym_piped_io_exp] = STATE(1416), + [sym_string_concat] = STATE(1314), + [sym_field_ref] = STATE(614), + [sym_array_ref] = STATE(580), + [sym_regex] = STATE(1416), + [sym_regex_constant] = STATE(1416), + [sym_grouping] = STATE(1314), + [sym__primitive] = STATE(1314), + [sym_namespace] = STATE(1958), + [sym_ns_qualified_name] = STATE(575), + [sym_number] = STATE(1314), + [sym_string] = STATE(1314), + [sym_func_call] = STATE(1314), + [sym_indirect_func_call] = STATE(1416), + [sym_identifier] = ACTIONS(39), + [anon_sym_SEMI] = ACTIONS(634), + [anon_sym_if] = ACTIONS(43), + [anon_sym_LPAREN] = ACTIONS(544), + [anon_sym_while] = ACTIONS(47), + [anon_sym_do] = ACTIONS(49), + [anon_sym_for] = ACTIONS(51), + [sym_break_statement] = ACTIONS(636), + [sym_continue_statement] = ACTIONS(636), + [anon_sym_delete] = ACTIONS(55), + [anon_sym_exit] = ACTIONS(57), + [anon_sym_return] = ACTIONS(59), + [anon_sym_switch] = ACTIONS(61), + [anon_sym_LBRACE] = ACTIONS(312), + [anon_sym_getline] = ACTIONS(63), + [sym_next_statement] = ACTIONS(636), + [sym_nextfile_statement] = ACTIONS(636), + [anon_sym_print] = ACTIONS(65), + [anon_sym_printf] = ACTIONS(67), + [anon_sym_SLASH] = ACTIONS(546), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(71), + [anon_sym_BANG] = ACTIONS(548), + [anon_sym_PLUS_PLUS] = ACTIONS(550), + [anon_sym_DASH_DASH] = ACTIONS(550), + [anon_sym_DOLLAR] = ACTIONS(552), + [anon_sym_AT] = ACTIONS(554), + [aux_sym_number_token1] = ACTIONS(79), + [aux_sym_number_token2] = ACTIONS(482), + [anon_sym_DQUOTE] = ACTIONS(484), }, - [150] = { + [149] = { [sym__statement] = STATE(1157), - [sym__statement_separated] = STATE(139), + [sym__statement_separated] = STATE(2), [sym__control_statement] = STATE(1157), [sym_if_statement] = STATE(1157), [sym_while_statement] = STATE(1157), @@ -19039,66 +18972,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_return_statement] = STATE(1157), [sym_switch_statement] = STATE(1157), [sym__io_statement] = STATE(1157), - [sym__getline_exp] = STATE(1507), - [sym_getline_input] = STATE(1507), - [sym_getline_file] = STATE(1507), - [sym_print_statement] = STATE(1658), - [sym_printf_statement] = STATE(1658), + [sym__getline_exp] = STATE(1416), + [sym_getline_input] = STATE(1416), + [sym_getline_file] = STATE(1416), + [sym_print_statement] = STATE(1656), + [sym_printf_statement] = STATE(1656), [sym_redirected_io_statement] = STATE(1157), [sym_piped_io_statement] = STATE(1157), [sym_block] = STATE(1156), - [sym__exp] = STATE(1507), - [sym_ternary_exp] = STATE(1413), - [sym_binary_exp] = STATE(1413), + [sym__exp] = STATE(1416), + [sym_ternary_exp] = STATE(1314), + [sym_binary_exp] = STATE(1314), [sym__binary_in] = STATE(1293), - [sym_unary_exp] = STATE(1413), - [sym_update_exp] = STATE(1507), - [sym_assignment_exp] = STATE(1507), - [sym_piped_io_exp] = STATE(1507), - [sym_string_concat] = STATE(1413), - [sym_field_ref] = STATE(1025), - [sym_array_ref] = STATE(697), - [sym_regex] = STATE(1507), - [sym_regex_constant] = STATE(1507), - [sym_grouping] = STATE(1413), - [sym__primitive] = STATE(1413), + [sym_unary_exp] = STATE(1314), + [sym_update_exp] = STATE(1416), + [sym_assignment_exp] = STATE(1416), + [sym_piped_io_exp] = STATE(1416), + [sym_string_concat] = STATE(1314), + [sym_field_ref] = STATE(614), + [sym_array_ref] = STATE(580), + [sym_regex] = STATE(1416), + [sym_regex_constant] = STATE(1416), + [sym_grouping] = STATE(1314), + [sym__primitive] = STATE(1314), [sym_namespace] = STATE(1958), - [sym_ns_qualified_name] = STATE(676), - [sym_number] = STATE(1413), - [sym_string] = STATE(1413), - [sym_func_call] = STATE(1413), - [sym_indirect_func_call] = STATE(1507), - [sym_identifier] = ACTIONS(450), - [anon_sym_if] = ACTIONS(452), - [anon_sym_LPAREN] = ACTIONS(454), - [anon_sym_while] = ACTIONS(456), + [sym_ns_qualified_name] = STATE(575), + [sym_number] = STATE(1314), + [sym_string] = STATE(1314), + [sym_func_call] = STATE(1314), + [sym_indirect_func_call] = STATE(1416), + [sym_identifier] = ACTIONS(39), + [anon_sym_if] = ACTIONS(43), + [anon_sym_LPAREN] = ACTIONS(544), + [anon_sym_while] = ACTIONS(47), [anon_sym_do] = ACTIONS(49), - [anon_sym_for] = ACTIONS(458), - [sym_break_statement] = ACTIONS(632), - [sym_continue_statement] = ACTIONS(632), + [anon_sym_for] = ACTIONS(51), + [sym_break_statement] = ACTIONS(638), + [sym_continue_statement] = ACTIONS(638), [anon_sym_delete] = ACTIONS(55), - [anon_sym_exit] = ACTIONS(460), - [anon_sym_return] = ACTIONS(462), + [anon_sym_exit] = ACTIONS(57), + [anon_sym_return] = ACTIONS(59), [anon_sym_switch] = ACTIONS(61), [anon_sym_LBRACE] = ACTIONS(312), - [anon_sym_getline] = ACTIONS(464), - [sym_next_statement] = ACTIONS(632), - [sym_nextfile_statement] = ACTIONS(632), - [anon_sym_print] = ACTIONS(466), - [anon_sym_printf] = ACTIONS(468), - [anon_sym_SLASH] = ACTIONS(470), - [anon_sym_PLUS] = ACTIONS(472), - [anon_sym_DASH] = ACTIONS(472), - [anon_sym_BANG] = ACTIONS(474), - [anon_sym_PLUS_PLUS] = ACTIONS(476), - [anon_sym_DASH_DASH] = ACTIONS(476), - [anon_sym_DOLLAR] = ACTIONS(478), - [anon_sym_AT] = ACTIONS(480), + [anon_sym_getline] = ACTIONS(63), + [sym_next_statement] = ACTIONS(638), + [sym_nextfile_statement] = ACTIONS(638), + [anon_sym_print] = ACTIONS(65), + [anon_sym_printf] = ACTIONS(67), + [anon_sym_SLASH] = ACTIONS(546), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(71), + [anon_sym_BANG] = ACTIONS(548), + [anon_sym_PLUS_PLUS] = ACTIONS(550), + [anon_sym_DASH_DASH] = ACTIONS(550), + [anon_sym_DOLLAR] = ACTIONS(552), + [anon_sym_AT] = ACTIONS(554), [aux_sym_number_token1] = ACTIONS(79), [aux_sym_number_token2] = ACTIONS(482), [anon_sym_DQUOTE] = ACTIONS(484), }, - [151] = { + [150] = { [sym__statement] = STATE(1175), [sym__statement_separated] = STATE(1175), [sym__control_statement] = STATE(1175), @@ -19147,16 +19080,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(133), [anon_sym_do] = ACTIONS(93), [anon_sym_for] = ACTIONS(135), - [sym_break_statement] = ACTIONS(630), - [sym_continue_statement] = ACTIONS(630), + [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(270), [anon_sym_getline] = ACTIONS(147), - [sym_next_statement] = ACTIONS(630), - [sym_nextfile_statement] = ACTIONS(630), + [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), @@ -19171,6 +19104,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_number_token2] = ACTIONS(167), [anon_sym_DQUOTE] = ACTIONS(169), }, + [151] = { + [sym__statement] = STATE(1157), + [sym__statement_separated] = STATE(141), + [sym__control_statement] = STATE(1157), + [sym_if_statement] = STATE(1157), + [sym_while_statement] = STATE(1157), + [sym_do_while_statement] = STATE(1157), + [sym_for_statement] = STATE(1157), + [sym_for_in_statement] = STATE(1157), + [sym_delete_statement] = STATE(1157), + [sym_exit_statement] = STATE(1157), + [sym_return_statement] = STATE(1157), + [sym_switch_statement] = STATE(1157), + [sym__io_statement] = STATE(1157), + [sym__getline_exp] = STATE(1507), + [sym_getline_input] = STATE(1507), + [sym_getline_file] = STATE(1507), + [sym_print_statement] = STATE(1658), + [sym_printf_statement] = STATE(1658), + [sym_redirected_io_statement] = STATE(1157), + [sym_piped_io_statement] = STATE(1157), + [sym_block] = STATE(1156), + [sym__exp] = STATE(1507), + [sym_ternary_exp] = STATE(1413), + [sym_binary_exp] = STATE(1413), + [sym__binary_in] = STATE(1293), + [sym_unary_exp] = STATE(1413), + [sym_update_exp] = STATE(1507), + [sym_assignment_exp] = STATE(1507), + [sym_piped_io_exp] = STATE(1507), + [sym_string_concat] = STATE(1413), + [sym_field_ref] = STATE(1025), + [sym_array_ref] = STATE(697), + [sym_regex] = STATE(1507), + [sym_regex_constant] = STATE(1507), + [sym_grouping] = STATE(1413), + [sym__primitive] = STATE(1413), + [sym_namespace] = STATE(1958), + [sym_ns_qualified_name] = STATE(676), + [sym_number] = STATE(1413), + [sym_string] = STATE(1413), + [sym_func_call] = STATE(1413), + [sym_indirect_func_call] = STATE(1507), + [sym_identifier] = ACTIONS(450), + [anon_sym_if] = ACTIONS(452), + [anon_sym_LPAREN] = ACTIONS(454), + [anon_sym_while] = ACTIONS(456), + [anon_sym_do] = ACTIONS(49), + [anon_sym_for] = ACTIONS(458), + [sym_break_statement] = ACTIONS(638), + [sym_continue_statement] = ACTIONS(638), + [anon_sym_delete] = ACTIONS(55), + [anon_sym_exit] = ACTIONS(460), + [anon_sym_return] = ACTIONS(462), + [anon_sym_switch] = ACTIONS(61), + [anon_sym_LBRACE] = ACTIONS(312), + [anon_sym_getline] = ACTIONS(464), + [sym_next_statement] = ACTIONS(638), + [sym_nextfile_statement] = ACTIONS(638), + [anon_sym_print] = ACTIONS(466), + [anon_sym_printf] = ACTIONS(468), + [anon_sym_SLASH] = ACTIONS(470), + [anon_sym_PLUS] = ACTIONS(472), + [anon_sym_DASH] = ACTIONS(472), + [anon_sym_BANG] = ACTIONS(474), + [anon_sym_PLUS_PLUS] = ACTIONS(476), + [anon_sym_DASH_DASH] = ACTIONS(476), + [anon_sym_DOLLAR] = ACTIONS(478), + [anon_sym_AT] = ACTIONS(480), + [aux_sym_number_token1] = ACTIONS(79), + [aux_sym_number_token2] = ACTIONS(482), + [anon_sym_DQUOTE] = ACTIONS(484), + }, [152] = { [sym__statement] = STATE(1157), [sym__statement_separated] = STATE(1157), @@ -19220,16 +19226,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(302), [anon_sym_do] = ACTIONS(49), [anon_sym_for] = ACTIONS(304), - [sym_break_statement] = ACTIONS(632), - [sym_continue_statement] = ACTIONS(632), + [sym_break_statement] = ACTIONS(638), + [sym_continue_statement] = ACTIONS(638), [anon_sym_delete] = ACTIONS(55), [anon_sym_exit] = ACTIONS(308), [anon_sym_return] = ACTIONS(310), [anon_sym_switch] = ACTIONS(61), [anon_sym_LBRACE] = ACTIONS(312), [anon_sym_getline] = ACTIONS(314), - [sym_next_statement] = ACTIONS(632), - [sym_nextfile_statement] = ACTIONS(632), + [sym_next_statement] = ACTIONS(638), + [sym_nextfile_statement] = ACTIONS(638), [anon_sym_print] = ACTIONS(316), [anon_sym_printf] = ACTIONS(318), [anon_sym_SLASH] = ACTIONS(320), @@ -19246,7 +19252,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [153] = { [sym__statement] = STATE(1175), - [sym__statement_separated] = STATE(140), + [sym__statement_separated] = STATE(146), [sym__control_statement] = STATE(1175), [sym_if_statement] = STATE(1175), [sym_while_statement] = STATE(1175), @@ -19293,16 +19299,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(352), [anon_sym_do] = ACTIONS(93), [anon_sym_for] = ACTIONS(354), - [sym_break_statement] = ACTIONS(630), - [sym_continue_statement] = ACTIONS(630), + [sym_break_statement] = ACTIONS(640), + [sym_continue_statement] = ACTIONS(640), [anon_sym_delete] = ACTIONS(99), [anon_sym_exit] = ACTIONS(356), [anon_sym_return] = ACTIONS(358), [anon_sym_switch] = ACTIONS(105), [anon_sym_LBRACE] = ACTIONS(270), [anon_sym_getline] = ACTIONS(360), - [sym_next_statement] = ACTIONS(630), - [sym_nextfile_statement] = ACTIONS(630), + [sym_next_statement] = ACTIONS(640), + [sym_nextfile_statement] = ACTIONS(640), [anon_sym_print] = ACTIONS(362), [anon_sym_printf] = ACTIONS(364), [anon_sym_SLASH] = ACTIONS(366), @@ -19318,217 +19324,217 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(284), }, [154] = { - [sym__statement] = STATE(1157), - [sym__statement_separated] = STATE(2), - [sym__control_statement] = STATE(1157), - [sym_if_statement] = STATE(1157), - [sym_while_statement] = STATE(1157), - [sym_do_while_statement] = STATE(1157), - [sym_for_statement] = STATE(1157), - [sym_for_in_statement] = STATE(1157), - [sym_delete_statement] = STATE(1157), - [sym_exit_statement] = STATE(1157), - [sym_return_statement] = STATE(1157), - [sym_switch_statement] = STATE(1157), - [sym__io_statement] = STATE(1157), - [sym__getline_exp] = STATE(1416), - [sym_getline_input] = STATE(1416), - [sym_getline_file] = STATE(1416), - [sym_print_statement] = STATE(1656), - [sym_printf_statement] = STATE(1656), - [sym_redirected_io_statement] = STATE(1157), - [sym_piped_io_statement] = STATE(1157), - [sym_block] = STATE(1156), - [sym__exp] = STATE(1416), - [sym_ternary_exp] = STATE(1314), - [sym_binary_exp] = STATE(1314), - [sym__binary_in] = STATE(1293), - [sym_unary_exp] = STATE(1314), - [sym_update_exp] = STATE(1416), - [sym_assignment_exp] = STATE(1416), - [sym_piped_io_exp] = STATE(1416), - [sym_string_concat] = STATE(1314), - [sym_field_ref] = STATE(614), - [sym_array_ref] = STATE(580), - [sym_regex] = STATE(1416), - [sym_regex_constant] = STATE(1416), - [sym_grouping] = STATE(1314), - [sym__primitive] = STATE(1314), - [sym_namespace] = STATE(1958), - [sym_ns_qualified_name] = STATE(575), - [sym_number] = STATE(1314), - [sym_string] = STATE(1314), - [sym_func_call] = STATE(1314), - [sym_indirect_func_call] = STATE(1416), - [sym_identifier] = ACTIONS(39), - [anon_sym_if] = ACTIONS(43), - [anon_sym_LPAREN] = ACTIONS(538), - [anon_sym_while] = ACTIONS(47), - [anon_sym_do] = ACTIONS(49), - [anon_sym_for] = ACTIONS(51), - [sym_break_statement] = ACTIONS(632), - [sym_continue_statement] = ACTIONS(632), - [anon_sym_delete] = ACTIONS(55), - [anon_sym_exit] = ACTIONS(57), - [anon_sym_return] = ACTIONS(59), - [anon_sym_switch] = ACTIONS(61), - [anon_sym_LBRACE] = ACTIONS(312), - [anon_sym_getline] = ACTIONS(63), - [sym_next_statement] = ACTIONS(632), - [sym_nextfile_statement] = ACTIONS(632), - [anon_sym_print] = ACTIONS(65), - [anon_sym_printf] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(540), - [anon_sym_PLUS] = ACTIONS(71), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_BANG] = ACTIONS(542), - [anon_sym_PLUS_PLUS] = ACTIONS(544), - [anon_sym_DASH_DASH] = ACTIONS(544), - [anon_sym_DOLLAR] = ACTIONS(546), - [anon_sym_AT] = ACTIONS(548), - [aux_sym_number_token1] = ACTIONS(79), - [aux_sym_number_token2] = ACTIONS(482), - [anon_sym_DQUOTE] = ACTIONS(484), + [sym__statement] = STATE(1175), + [sym__statement_separated] = STATE(3), + [sym__control_statement] = STATE(1175), + [sym_if_statement] = STATE(1175), + [sym_while_statement] = STATE(1175), + [sym_do_while_statement] = STATE(1175), + [sym_for_statement] = STATE(1175), + [sym_for_in_statement] = STATE(1175), + [sym_delete_statement] = STATE(1175), + [sym_exit_statement] = STATE(1175), + [sym_return_statement] = STATE(1175), + [sym_switch_statement] = STATE(1175), + [sym__io_statement] = STATE(1175), + [sym__getline_exp] = STATE(1439), + [sym_getline_input] = STATE(1439), + [sym_getline_file] = STATE(1439), + [sym_print_statement] = STATE(1657), + [sym_printf_statement] = STATE(1657), + [sym_redirected_io_statement] = STATE(1175), + [sym_piped_io_statement] = STATE(1175), + [sym_block] = STATE(1174), + [sym__exp] = STATE(1439), + [sym_ternary_exp] = STATE(1377), + [sym_binary_exp] = STATE(1377), + [sym__binary_in] = STATE(1341), + [sym_unary_exp] = STATE(1377), + [sym_update_exp] = STATE(1439), + [sym_assignment_exp] = STATE(1439), + [sym_piped_io_exp] = STATE(1439), + [sym_string_concat] = STATE(1377), + [sym_field_ref] = STATE(646), + [sym_array_ref] = STATE(591), + [sym_regex] = STATE(1439), + [sym_regex_constant] = STATE(1439), + [sym_grouping] = STATE(1377), + [sym__primitive] = STATE(1377), + [sym_namespace] = STATE(1881), + [sym_ns_qualified_name] = STATE(586), + [sym_number] = STATE(1377), + [sym_string] = STATE(1377), + [sym_func_call] = STATE(1377), + [sym_indirect_func_call] = STATE(1439), + [sym_identifier] = ACTIONS(85), + [anon_sym_if] = ACTIONS(87), + [anon_sym_LPAREN] = ACTIONS(266), + [anon_sym_while] = ACTIONS(91), + [anon_sym_do] = ACTIONS(93), + [anon_sym_for] = ACTIONS(95), + [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(270), + [anon_sym_getline] = ACTIONS(107), + [sym_next_statement] = ACTIONS(640), + [sym_nextfile_statement] = ACTIONS(640), + [anon_sym_print] = ACTIONS(109), + [anon_sym_printf] = ACTIONS(111), + [anon_sym_SLASH] = ACTIONS(272), + [anon_sym_PLUS] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(115), + [anon_sym_BANG] = ACTIONS(274), + [anon_sym_PLUS_PLUS] = ACTIONS(276), + [anon_sym_DASH_DASH] = ACTIONS(276), + [anon_sym_DOLLAR] = ACTIONS(278), + [anon_sym_AT] = ACTIONS(280), + [aux_sym_number_token1] = ACTIONS(123), + [aux_sym_number_token2] = ACTIONS(282), + [anon_sym_DQUOTE] = ACTIONS(284), }, [155] = { - [sym_identifier] = ACTIONS(634), - [anon_sym_COMMA] = ACTIONS(634), - [anon_sym_SEMI] = ACTIONS(634), - [anon_sym_LF] = ACTIONS(634), - [anon_sym_CR_LF] = ACTIONS(634), - [anon_sym_if] = ACTIONS(634), - [anon_sym_LPAREN] = ACTIONS(634), - [anon_sym_while] = ACTIONS(634), - [anon_sym_do] = ACTIONS(634), - [anon_sym_for] = ACTIONS(634), - [anon_sym_in] = ACTIONS(636), - [sym_break_statement] = ACTIONS(634), - [sym_continue_statement] = ACTIONS(634), - [anon_sym_delete] = ACTIONS(634), - [anon_sym_exit] = ACTIONS(634), - [anon_sym_return] = ACTIONS(634), - [anon_sym_switch] = ACTIONS(634), - [anon_sym_LBRACE] = ACTIONS(634), - [anon_sym_RBRACE] = ACTIONS(634), - [anon_sym_case] = ACTIONS(634), - [anon_sym_default] = ACTIONS(634), - [anon_sym_getline] = ACTIONS(634), - [anon_sym_LT] = ACTIONS(636), - [sym_next_statement] = ACTIONS(634), - [sym_nextfile_statement] = ACTIONS(634), - [anon_sym_print] = ACTIONS(634), - [anon_sym_LPAREN2] = ACTIONS(638), - [anon_sym_printf] = ACTIONS(634), - [anon_sym_GT] = ACTIONS(636), - [anon_sym_GT_GT] = ACTIONS(634), - [anon_sym_PIPE] = ACTIONS(636), - [anon_sym_PIPE_AMP] = ACTIONS(636), - [anon_sym_QMARK] = ACTIONS(636), - [anon_sym_CARET] = ACTIONS(636), - [anon_sym_STAR_STAR] = ACTIONS(636), - [anon_sym_STAR] = ACTIONS(636), - [anon_sym_SLASH] = ACTIONS(636), - [anon_sym_PERCENT] = ACTIONS(636), - [anon_sym_PLUS] = ACTIONS(636), - [anon_sym_DASH] = ACTIONS(636), - [anon_sym_LT_EQ] = ACTIONS(636), - [anon_sym_GT_EQ] = ACTIONS(636), - [anon_sym_EQ_EQ] = ACTIONS(636), - [anon_sym_BANG_EQ] = ACTIONS(636), - [anon_sym_TILDE] = ACTIONS(636), - [anon_sym_BANG_TILDE] = ACTIONS(636), - [anon_sym_AMP_AMP] = ACTIONS(636), - [anon_sym_PIPE_PIPE] = ACTIONS(636), - [anon_sym_BANG] = ACTIONS(634), - [anon_sym_PLUS_PLUS] = ACTIONS(640), - [anon_sym_DASH_DASH] = ACTIONS(640), - [anon_sym_EQ] = ACTIONS(634), - [anon_sym_PLUS_EQ] = ACTIONS(634), - [anon_sym_DASH_EQ] = ACTIONS(634), - [anon_sym_STAR_EQ] = ACTIONS(634), - [anon_sym_SLASH_EQ] = ACTIONS(634), - [anon_sym_PERCENT_EQ] = ACTIONS(634), - [anon_sym_CARET_EQ] = ACTIONS(634), - [anon_sym_DOLLAR] = ACTIONS(634), - [anon_sym_LBRACK] = ACTIONS(642), - [anon_sym_AT] = ACTIONS(634), - [anon_sym_COLON_COLON] = ACTIONS(644), - [aux_sym_number_token1] = ACTIONS(634), - [aux_sym_number_token2] = ACTIONS(634), - [anon_sym_DQUOTE] = ACTIONS(634), - [anon_sym_POUND] = ACTIONS(634), - [sym_concatenating_space] = ACTIONS(646), - [sym__if_else_separator] = ACTIONS(646), - }, - [156] = { - [sym_identifier] = ACTIONS(636), - [anon_sym_COMMA] = ACTIONS(636), - [anon_sym_SEMI] = ACTIONS(636), - [anon_sym_LF] = ACTIONS(636), - [anon_sym_CR_LF] = ACTIONS(636), - [anon_sym_if] = ACTIONS(636), - [anon_sym_LPAREN] = ACTIONS(636), - [anon_sym_while] = ACTIONS(636), - [anon_sym_do] = ACTIONS(636), - [anon_sym_for] = ACTIONS(636), - [anon_sym_in] = ACTIONS(636), - [sym_break_statement] = ACTIONS(636), - [sym_continue_statement] = ACTIONS(636), - [anon_sym_delete] = ACTIONS(636), - [anon_sym_exit] = ACTIONS(636), - [anon_sym_return] = ACTIONS(636), - [anon_sym_switch] = ACTIONS(636), - [anon_sym_LBRACE] = ACTIONS(636), - [anon_sym_RBRACE] = ACTIONS(636), - [anon_sym_case] = ACTIONS(636), - [anon_sym_default] = ACTIONS(636), - [anon_sym_getline] = ACTIONS(636), - [anon_sym_LT] = ACTIONS(636), - [sym_next_statement] = ACTIONS(636), - [sym_nextfile_statement] = ACTIONS(636), - [anon_sym_print] = ACTIONS(636), - [anon_sym_LPAREN2] = ACTIONS(638), - [anon_sym_printf] = ACTIONS(636), - [anon_sym_GT] = ACTIONS(636), - [anon_sym_GT_GT] = ACTIONS(636), - [anon_sym_PIPE] = ACTIONS(636), - [anon_sym_PIPE_AMP] = ACTIONS(636), - [anon_sym_QMARK] = ACTIONS(636), - [anon_sym_CARET] = ACTIONS(636), - [anon_sym_STAR_STAR] = ACTIONS(636), - [anon_sym_STAR] = ACTIONS(636), - [anon_sym_SLASH] = ACTIONS(636), - [anon_sym_PERCENT] = ACTIONS(636), - [anon_sym_PLUS] = ACTIONS(636), - [anon_sym_DASH] = ACTIONS(636), - [anon_sym_LT_EQ] = ACTIONS(636), - [anon_sym_GT_EQ] = ACTIONS(636), - [anon_sym_EQ_EQ] = ACTIONS(636), - [anon_sym_BANG_EQ] = ACTIONS(636), - [anon_sym_TILDE] = ACTIONS(636), - [anon_sym_BANG_TILDE] = ACTIONS(636), - [anon_sym_AMP_AMP] = ACTIONS(636), - [anon_sym_PIPE_PIPE] = ACTIONS(636), - [anon_sym_BANG] = ACTIONS(636), + [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(636), - [anon_sym_PLUS_EQ] = ACTIONS(636), - [anon_sym_DASH_EQ] = ACTIONS(636), - [anon_sym_STAR_EQ] = ACTIONS(636), - [anon_sym_SLASH_EQ] = ACTIONS(636), - [anon_sym_PERCENT_EQ] = ACTIONS(636), - [anon_sym_CARET_EQ] = ACTIONS(636), - [anon_sym_DOLLAR] = ACTIONS(636), - [anon_sym_LBRACK] = ACTIONS(642), - [anon_sym_AT] = ACTIONS(636), - [anon_sym_COLON_COLON] = ACTIONS(644), - [aux_sym_number_token1] = ACTIONS(636), - [aux_sym_number_token2] = ACTIONS(636), - [anon_sym_DQUOTE] = ACTIONS(636), - [anon_sym_POUND] = ACTIONS(636), - [sym_concatenating_space] = ACTIONS(650), - [sym__if_else_separator] = ACTIONS(650), + [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), + [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), + }, + [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), + [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), + [sym_concatenating_space] = ACTIONS(658), + [sym__if_else_separator] = ACTIONS(658), }, [157] = { [sym__getline_exp] = STATE(422), @@ -19559,323 +19565,530 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_indirect_func_call] = STATE(422), [aux_sym_exp_list_repeat1] = STATE(754), [sym_identifier] = ACTIONS(294), - [anon_sym_SEMI] = ACTIONS(652), - [anon_sym_LF] = ACTIONS(652), - [anon_sym_CR_LF] = ACTIONS(652), - [anon_sym_if] = ACTIONS(652), - [anon_sym_LPAREN] = ACTIONS(654), - [anon_sym_while] = ACTIONS(652), - [anon_sym_do] = ACTIONS(652), - [anon_sym_for] = ACTIONS(652), - [sym_break_statement] = ACTIONS(652), - [sym_continue_statement] = ACTIONS(652), - [anon_sym_delete] = ACTIONS(652), - [anon_sym_exit] = ACTIONS(652), - [anon_sym_return] = ACTIONS(652), - [anon_sym_switch] = ACTIONS(652), - [anon_sym_LBRACE] = ACTIONS(652), - [anon_sym_RBRACE] = ACTIONS(652), + [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(662), + [anon_sym_while] = ACTIONS(660), + [anon_sym_do] = ACTIONS(660), + [anon_sym_for] = ACTIONS(660), + [sym_break_statement] = ACTIONS(660), + [sym_continue_statement] = ACTIONS(660), + [anon_sym_delete] = ACTIONS(660), + [anon_sym_exit] = ACTIONS(660), + [anon_sym_return] = ACTIONS(660), + [anon_sym_switch] = ACTIONS(660), + [anon_sym_LBRACE] = ACTIONS(660), + [anon_sym_RBRACE] = ACTIONS(660), [anon_sym_getline] = ACTIONS(314), - [sym_next_statement] = ACTIONS(652), - [sym_nextfile_statement] = ACTIONS(652), - [anon_sym_print] = ACTIONS(652), - [anon_sym_LPAREN2] = ACTIONS(656), - [anon_sym_printf] = ACTIONS(652), - [anon_sym_GT] = ACTIONS(652), - [anon_sym_GT_GT] = ACTIONS(652), - [anon_sym_PIPE] = ACTIONS(652), - [anon_sym_PIPE_AMP] = ACTIONS(652), - [anon_sym_SLASH] = ACTIONS(658), + [sym_next_statement] = ACTIONS(660), + [sym_nextfile_statement] = ACTIONS(660), + [anon_sym_print] = ACTIONS(660), + [anon_sym_LPAREN2] = ACTIONS(664), + [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(666), [anon_sym_PLUS] = ACTIONS(322), [anon_sym_DASH] = ACTIONS(322), [anon_sym_BANG] = ACTIONS(322), - [anon_sym_PLUS_PLUS] = ACTIONS(660), - [anon_sym_DASH_DASH] = ACTIONS(660), - [anon_sym_DOLLAR] = ACTIONS(662), - [anon_sym_AT] = ACTIONS(664), + [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(332), [aux_sym_number_token2] = ACTIONS(332), - [anon_sym_DQUOTE] = ACTIONS(666), - [anon_sym_POUND] = ACTIONS(652), - [sym__if_else_separator] = ACTIONS(668), + [anon_sym_DQUOTE] = ACTIONS(674), + [anon_sym_POUND] = ACTIONS(660), + [sym__if_else_separator] = ACTIONS(676), }, [158] = { - [sym_identifier] = ACTIONS(636), - [anon_sym_COMMA] = ACTIONS(636), - [anon_sym_SEMI] = ACTIONS(636), - [anon_sym_LF] = ACTIONS(636), - [anon_sym_CR_LF] = ACTIONS(636), - [anon_sym_if] = ACTIONS(636), - [anon_sym_LPAREN] = ACTIONS(636), - [anon_sym_while] = ACTIONS(636), - [anon_sym_do] = ACTIONS(636), - [anon_sym_for] = ACTIONS(636), - [anon_sym_in] = ACTIONS(636), - [sym_break_statement] = ACTIONS(636), - [sym_continue_statement] = ACTIONS(636), - [anon_sym_delete] = ACTIONS(636), - [anon_sym_exit] = ACTIONS(636), - [anon_sym_return] = ACTIONS(636), - [anon_sym_switch] = ACTIONS(636), - [anon_sym_LBRACE] = ACTIONS(636), - [anon_sym_RBRACE] = ACTIONS(636), - [anon_sym_case] = ACTIONS(636), - [anon_sym_default] = ACTIONS(636), - [anon_sym_getline] = ACTIONS(636), - [anon_sym_LT] = ACTIONS(636), - [sym_next_statement] = ACTIONS(636), - [sym_nextfile_statement] = ACTIONS(636), - [anon_sym_print] = ACTIONS(636), - [anon_sym_LPAREN2] = ACTIONS(638), - [anon_sym_printf] = ACTIONS(636), - [anon_sym_GT] = ACTIONS(636), - [anon_sym_GT_GT] = ACTIONS(636), - [anon_sym_PIPE] = ACTIONS(636), - [anon_sym_PIPE_AMP] = ACTIONS(636), - [anon_sym_QMARK] = ACTIONS(636), - [anon_sym_CARET] = ACTIONS(636), - [anon_sym_STAR_STAR] = ACTIONS(636), - [anon_sym_STAR] = ACTIONS(636), - [anon_sym_SLASH] = ACTIONS(636), - [anon_sym_PERCENT] = ACTIONS(636), - [anon_sym_PLUS] = ACTIONS(636), - [anon_sym_DASH] = ACTIONS(636), - [anon_sym_LT_EQ] = ACTIONS(636), - [anon_sym_GT_EQ] = ACTIONS(636), - [anon_sym_EQ_EQ] = ACTIONS(636), - [anon_sym_BANG_EQ] = ACTIONS(636), - [anon_sym_TILDE] = ACTIONS(636), - [anon_sym_BANG_TILDE] = ACTIONS(636), - [anon_sym_AMP_AMP] = ACTIONS(636), - [anon_sym_PIPE_PIPE] = ACTIONS(636), - [anon_sym_BANG] = ACTIONS(636), - [anon_sym_PLUS_PLUS] = ACTIONS(648), - [anon_sym_DASH_DASH] = ACTIONS(648), - [anon_sym_EQ] = ACTIONS(636), - [anon_sym_PLUS_EQ] = ACTIONS(636), - [anon_sym_DASH_EQ] = ACTIONS(636), - [anon_sym_STAR_EQ] = ACTIONS(636), - [anon_sym_SLASH_EQ] = ACTIONS(636), - [anon_sym_PERCENT_EQ] = ACTIONS(636), - [anon_sym_CARET_EQ] = ACTIONS(636), - [anon_sym_DOLLAR] = ACTIONS(636), - [anon_sym_LBRACK] = ACTIONS(642), - [anon_sym_AT] = ACTIONS(636), - [aux_sym_number_token1] = ACTIONS(636), - [aux_sym_number_token2] = ACTIONS(636), - [anon_sym_DQUOTE] = ACTIONS(636), - [anon_sym_POUND] = ACTIONS(636), - [sym_concatenating_space] = ACTIONS(650), - [sym__if_else_separator] = ACTIONS(650), + [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), + [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), + [sym_concatenating_space] = ACTIONS(658), + [sym__if_else_separator] = ACTIONS(658), }, [159] = { - [sym_identifier] = ACTIONS(634), - [anon_sym_COMMA] = ACTIONS(634), - [anon_sym_SEMI] = ACTIONS(634), - [anon_sym_LF] = ACTIONS(634), - [anon_sym_CR_LF] = ACTIONS(634), - [anon_sym_if] = ACTIONS(634), - [anon_sym_LPAREN] = ACTIONS(634), - [anon_sym_while] = ACTIONS(634), - [anon_sym_do] = ACTIONS(634), - [anon_sym_for] = ACTIONS(634), - [anon_sym_in] = ACTIONS(636), - [sym_break_statement] = ACTIONS(634), - [sym_continue_statement] = ACTIONS(634), - [anon_sym_delete] = ACTIONS(634), - [anon_sym_exit] = ACTIONS(634), - [anon_sym_return] = ACTIONS(634), - [anon_sym_switch] = ACTIONS(634), - [anon_sym_LBRACE] = ACTIONS(634), - [anon_sym_RBRACE] = ACTIONS(634), - [anon_sym_case] = ACTIONS(634), - [anon_sym_default] = ACTIONS(634), - [anon_sym_getline] = ACTIONS(634), - [anon_sym_LT] = ACTIONS(636), - [sym_next_statement] = ACTIONS(634), - [sym_nextfile_statement] = ACTIONS(634), - [anon_sym_print] = ACTIONS(634), - [anon_sym_LPAREN2] = ACTIONS(638), - [anon_sym_printf] = ACTIONS(634), - [anon_sym_GT] = ACTIONS(636), - [anon_sym_GT_GT] = ACTIONS(634), - [anon_sym_PIPE] = ACTIONS(636), - [anon_sym_PIPE_AMP] = ACTIONS(636), - [anon_sym_QMARK] = ACTIONS(636), - [anon_sym_CARET] = ACTIONS(636), - [anon_sym_STAR_STAR] = ACTIONS(636), - [anon_sym_STAR] = ACTIONS(636), - [anon_sym_SLASH] = ACTIONS(636), - [anon_sym_PERCENT] = ACTIONS(636), - [anon_sym_PLUS] = ACTIONS(636), - [anon_sym_DASH] = ACTIONS(636), - [anon_sym_LT_EQ] = ACTIONS(636), - [anon_sym_GT_EQ] = ACTIONS(636), - [anon_sym_EQ_EQ] = ACTIONS(636), - [anon_sym_BANG_EQ] = ACTIONS(636), - [anon_sym_TILDE] = ACTIONS(636), - [anon_sym_BANG_TILDE] = ACTIONS(636), - [anon_sym_AMP_AMP] = ACTIONS(636), - [anon_sym_PIPE_PIPE] = ACTIONS(636), - [anon_sym_BANG] = ACTIONS(634), - [anon_sym_PLUS_PLUS] = ACTIONS(640), - [anon_sym_DASH_DASH] = ACTIONS(640), - [anon_sym_EQ] = ACTIONS(634), - [anon_sym_PLUS_EQ] = ACTIONS(634), - [anon_sym_DASH_EQ] = ACTIONS(634), - [anon_sym_STAR_EQ] = ACTIONS(634), - [anon_sym_SLASH_EQ] = ACTIONS(634), - [anon_sym_PERCENT_EQ] = ACTIONS(634), - [anon_sym_CARET_EQ] = ACTIONS(634), - [anon_sym_DOLLAR] = ACTIONS(634), - [anon_sym_LBRACK] = ACTIONS(642), - [anon_sym_AT] = ACTIONS(634), - [aux_sym_number_token1] = ACTIONS(634), - [aux_sym_number_token2] = ACTIONS(634), - [anon_sym_DQUOTE] = ACTIONS(634), - [anon_sym_POUND] = ACTIONS(634), - [sym_concatenating_space] = ACTIONS(646), - [sym__if_else_separator] = ACTIONS(646), + [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), }, [160] = { - [sym_identifier] = ACTIONS(670), - [anon_sym_COMMA] = ACTIONS(670), - [anon_sym_SEMI] = ACTIONS(670), - [anon_sym_LF] = ACTIONS(670), - [anon_sym_CR_LF] = ACTIONS(670), - [anon_sym_if] = ACTIONS(670), - [anon_sym_LPAREN] = ACTIONS(670), - [anon_sym_while] = ACTIONS(670), - [anon_sym_do] = ACTIONS(670), - [anon_sym_for] = ACTIONS(670), - [anon_sym_in] = ACTIONS(670), - [sym_break_statement] = ACTIONS(670), - [sym_continue_statement] = ACTIONS(670), - [anon_sym_delete] = ACTIONS(670), - [anon_sym_exit] = ACTIONS(670), - [anon_sym_return] = ACTIONS(670), - [anon_sym_switch] = ACTIONS(670), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_RBRACE] = ACTIONS(670), - [anon_sym_case] = ACTIONS(670), - [anon_sym_default] = ACTIONS(670), - [anon_sym_getline] = ACTIONS(670), - [anon_sym_LT] = ACTIONS(670), - [sym_next_statement] = ACTIONS(670), - [sym_nextfile_statement] = ACTIONS(670), - [anon_sym_print] = ACTIONS(670), - [anon_sym_printf] = ACTIONS(670), - [anon_sym_GT] = ACTIONS(670), - [anon_sym_GT_GT] = ACTIONS(670), - [anon_sym_PIPE] = ACTIONS(670), - [anon_sym_PIPE_AMP] = ACTIONS(670), - [anon_sym_QMARK] = ACTIONS(670), - [anon_sym_CARET] = ACTIONS(670), - [anon_sym_STAR_STAR] = ACTIONS(670), - [anon_sym_STAR] = ACTIONS(670), - [anon_sym_SLASH] = ACTIONS(670), - [anon_sym_PERCENT] = ACTIONS(670), - [anon_sym_PLUS] = ACTIONS(670), - [anon_sym_DASH] = ACTIONS(670), - [anon_sym_LT_EQ] = ACTIONS(670), - [anon_sym_GT_EQ] = ACTIONS(670), - [anon_sym_EQ_EQ] = ACTIONS(670), - [anon_sym_BANG_EQ] = ACTIONS(670), - [anon_sym_TILDE] = ACTIONS(670), - [anon_sym_BANG_TILDE] = ACTIONS(670), - [anon_sym_AMP_AMP] = ACTIONS(670), - [anon_sym_PIPE_PIPE] = ACTIONS(670), - [anon_sym_BANG] = ACTIONS(670), - [anon_sym_PLUS_PLUS] = ACTIONS(670), - [anon_sym_DASH_DASH] = ACTIONS(670), - [anon_sym_EQ] = ACTIONS(670), - [anon_sym_PLUS_EQ] = ACTIONS(670), - [anon_sym_DASH_EQ] = ACTIONS(670), - [anon_sym_STAR_EQ] = ACTIONS(670), - [anon_sym_SLASH_EQ] = ACTIONS(670), - [anon_sym_PERCENT_EQ] = ACTIONS(670), - [anon_sym_CARET_EQ] = ACTIONS(670), - [anon_sym_DOLLAR] = ACTIONS(670), - [anon_sym_LBRACK] = ACTIONS(642), - [anon_sym_AT] = ACTIONS(670), - [anon_sym_COLON_COLON] = ACTIONS(644), - [aux_sym_number_token1] = ACTIONS(670), - [aux_sym_number_token2] = ACTIONS(670), - [anon_sym_DQUOTE] = ACTIONS(670), - [anon_sym_POUND] = ACTIONS(670), - [sym_concatenating_space] = ACTIONS(672), - [sym__if_else_separator] = ACTIONS(672), + [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(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), }, [161] = { - [sym_identifier] = ACTIONS(674), - [anon_sym_COMMA] = ACTIONS(674), - [anon_sym_SEMI] = ACTIONS(674), - [anon_sym_LF] = ACTIONS(674), - [anon_sym_CR_LF] = ACTIONS(674), - [anon_sym_if] = ACTIONS(674), - [anon_sym_LPAREN] = ACTIONS(674), - [anon_sym_while] = ACTIONS(674), - [anon_sym_do] = ACTIONS(674), - [anon_sym_for] = ACTIONS(674), - [anon_sym_in] = ACTIONS(674), - [sym_break_statement] = ACTIONS(674), - [sym_continue_statement] = ACTIONS(674), - [anon_sym_delete] = ACTIONS(674), - [anon_sym_exit] = ACTIONS(674), - [anon_sym_return] = ACTIONS(674), - [anon_sym_switch] = ACTIONS(674), - [anon_sym_LBRACE] = ACTIONS(674), - [anon_sym_RBRACE] = ACTIONS(674), - [anon_sym_case] = ACTIONS(674), - [anon_sym_default] = ACTIONS(674), - [anon_sym_getline] = ACTIONS(674), - [anon_sym_LT] = ACTIONS(674), - [sym_next_statement] = ACTIONS(674), - [sym_nextfile_statement] = ACTIONS(674), - [anon_sym_print] = ACTIONS(674), - [anon_sym_printf] = ACTIONS(674), - [anon_sym_GT] = ACTIONS(674), - [anon_sym_GT_GT] = ACTIONS(674), - [anon_sym_PIPE] = ACTIONS(674), - [anon_sym_PIPE_AMP] = ACTIONS(674), - [anon_sym_QMARK] = ACTIONS(674), - [anon_sym_CARET] = ACTIONS(674), - [anon_sym_STAR_STAR] = ACTIONS(674), - [anon_sym_STAR] = ACTIONS(674), - [anon_sym_SLASH] = ACTIONS(674), - [anon_sym_PERCENT] = ACTIONS(674), - [anon_sym_PLUS] = ACTIONS(674), - [anon_sym_DASH] = ACTIONS(674), - [anon_sym_LT_EQ] = ACTIONS(674), - [anon_sym_GT_EQ] = ACTIONS(674), - [anon_sym_EQ_EQ] = ACTIONS(674), - [anon_sym_BANG_EQ] = ACTIONS(674), - [anon_sym_TILDE] = ACTIONS(674), - [anon_sym_BANG_TILDE] = ACTIONS(674), - [anon_sym_AMP_AMP] = ACTIONS(674), - [anon_sym_PIPE_PIPE] = ACTIONS(674), - [anon_sym_BANG] = ACTIONS(674), - [anon_sym_PLUS_PLUS] = ACTIONS(674), - [anon_sym_DASH_DASH] = ACTIONS(674), - [anon_sym_EQ] = ACTIONS(674), - [anon_sym_PLUS_EQ] = ACTIONS(674), - [anon_sym_DASH_EQ] = ACTIONS(674), - [anon_sym_STAR_EQ] = ACTIONS(674), - [anon_sym_SLASH_EQ] = ACTIONS(674), - [anon_sym_PERCENT_EQ] = ACTIONS(674), - [anon_sym_CARET_EQ] = ACTIONS(674), - [anon_sym_DOLLAR] = ACTIONS(674), - [anon_sym_LBRACK] = ACTIONS(642), - [anon_sym_AT] = ACTIONS(674), - [anon_sym_COLON_COLON] = ACTIONS(644), - [aux_sym_number_token1] = ACTIONS(674), - [aux_sym_number_token2] = ACTIONS(674), - [anon_sym_DQUOTE] = ACTIONS(674), - [anon_sym_POUND] = ACTIONS(674), - [sym_concatenating_space] = ACTIONS(676), - [sym__if_else_separator] = ACTIONS(676), + [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), }, [162] = { + [sym_identifier] = ACTIONS(686), + [anon_sym_COMMA] = ACTIONS(686), + [anon_sym_SEMI] = ACTIONS(686), + [anon_sym_LF] = ACTIONS(686), + [anon_sym_CR_LF] = ACTIONS(686), + [anon_sym_if] = ACTIONS(686), + [anon_sym_LPAREN] = ACTIONS(686), + [anon_sym_while] = ACTIONS(686), + [anon_sym_do] = ACTIONS(686), + [anon_sym_for] = ACTIONS(686), + [anon_sym_in] = ACTIONS(686), + [sym_break_statement] = ACTIONS(686), + [sym_continue_statement] = ACTIONS(686), + [anon_sym_delete] = ACTIONS(686), + [anon_sym_exit] = ACTIONS(686), + [anon_sym_return] = ACTIONS(686), + [anon_sym_switch] = ACTIONS(686), + [anon_sym_LBRACE] = ACTIONS(686), + [anon_sym_RBRACE] = ACTIONS(686), + [anon_sym_case] = ACTIONS(686), + [anon_sym_default] = ACTIONS(686), + [anon_sym_getline] = ACTIONS(686), + [anon_sym_LT] = ACTIONS(686), + [sym_next_statement] = ACTIONS(686), + [sym_nextfile_statement] = ACTIONS(686), + [anon_sym_print] = ACTIONS(686), + [anon_sym_LPAREN2] = ACTIONS(688), + [anon_sym_printf] = ACTIONS(686), + [anon_sym_GT] = ACTIONS(686), + [anon_sym_GT_GT] = ACTIONS(686), + [anon_sym_PIPE] = ACTIONS(686), + [anon_sym_PIPE_AMP] = ACTIONS(686), + [anon_sym_QMARK] = ACTIONS(686), + [anon_sym_CARET] = ACTIONS(686), + [anon_sym_STAR_STAR] = ACTIONS(686), + [anon_sym_STAR] = ACTIONS(686), + [anon_sym_SLASH] = ACTIONS(686), + [anon_sym_PERCENT] = ACTIONS(686), + [anon_sym_PLUS] = ACTIONS(686), + [anon_sym_DASH] = ACTIONS(686), + [anon_sym_LT_EQ] = ACTIONS(686), + [anon_sym_GT_EQ] = ACTIONS(686), + [anon_sym_EQ_EQ] = ACTIONS(686), + [anon_sym_BANG_EQ] = ACTIONS(686), + [anon_sym_TILDE] = ACTIONS(686), + [anon_sym_BANG_TILDE] = ACTIONS(686), + [anon_sym_AMP_AMP] = ACTIONS(686), + [anon_sym_PIPE_PIPE] = ACTIONS(686), + [anon_sym_BANG] = ACTIONS(686), + [anon_sym_PLUS_PLUS] = ACTIONS(686), + [anon_sym_DASH_DASH] = ACTIONS(686), + [anon_sym_EQ] = ACTIONS(686), + [anon_sym_PLUS_EQ] = ACTIONS(686), + [anon_sym_DASH_EQ] = ACTIONS(686), + [anon_sym_STAR_EQ] = ACTIONS(686), + [anon_sym_SLASH_EQ] = ACTIONS(686), + [anon_sym_PERCENT_EQ] = ACTIONS(686), + [anon_sym_CARET_EQ] = ACTIONS(686), + [anon_sym_DOLLAR] = ACTIONS(686), + [anon_sym_LBRACK] = ACTIONS(686), + [anon_sym_AT] = ACTIONS(686), + [aux_sym_number_token1] = ACTIONS(686), + [aux_sym_number_token2] = ACTIONS(686), + [anon_sym_DQUOTE] = ACTIONS(686), + [anon_sym_POUND] = ACTIONS(686), + [sym_concatenating_space] = ACTIONS(688), + [sym__if_else_separator] = ACTIONS(688), + }, + [163] = { + [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(690), + [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(692), + [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), + }, + [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(690), + [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(692), + [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), + }, + [165] = { [sym_identifier] = ACTIONS(678), [anon_sym_COMMA] = ACTIONS(678), [anon_sym_SEMI] = ACTIONS(678), @@ -19902,7 +20115,6 @@ 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), @@ -19935,7 +20147,7 @@ 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(678), + [anon_sym_LBRACK] = ACTIONS(650), [anon_sym_AT] = ACTIONS(678), [aux_sym_number_token1] = ACTIONS(678), [aux_sym_number_token2] = ACTIONS(678), @@ -19944,602 +20156,330 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_concatenating_space] = ACTIONS(680), [sym__if_else_separator] = ACTIONS(680), }, - [163] = { - [sym_identifier] = ACTIONS(634), - [anon_sym_COMMA] = ACTIONS(634), - [anon_sym_SEMI] = ACTIONS(634), - [anon_sym_LF] = ACTIONS(634), - [anon_sym_CR_LF] = ACTIONS(634), - [anon_sym_if] = ACTIONS(634), - [anon_sym_LPAREN] = ACTIONS(634), - [anon_sym_while] = ACTIONS(634), - [anon_sym_do] = ACTIONS(634), - [anon_sym_for] = ACTIONS(634), - [anon_sym_in] = ACTIONS(636), - [sym_break_statement] = ACTIONS(634), - [sym_continue_statement] = ACTIONS(634), - [anon_sym_delete] = ACTIONS(634), - [anon_sym_exit] = ACTIONS(634), - [anon_sym_return] = ACTIONS(634), - [anon_sym_switch] = ACTIONS(634), - [anon_sym_LBRACE] = ACTIONS(634), - [anon_sym_RBRACE] = ACTIONS(634), - [anon_sym_case] = ACTIONS(634), - [anon_sym_default] = ACTIONS(634), - [anon_sym_getline] = ACTIONS(634), - [anon_sym_LT] = ACTIONS(636), - [sym_next_statement] = ACTIONS(634), - [sym_nextfile_statement] = ACTIONS(634), - [anon_sym_print] = ACTIONS(634), - [anon_sym_LPAREN2] = ACTIONS(682), - [anon_sym_printf] = ACTIONS(634), - [anon_sym_GT] = ACTIONS(636), - [anon_sym_GT_GT] = ACTIONS(634), - [anon_sym_PIPE] = ACTIONS(636), - [anon_sym_PIPE_AMP] = ACTIONS(636), - [anon_sym_QMARK] = ACTIONS(636), - [anon_sym_CARET] = ACTIONS(636), - [anon_sym_STAR_STAR] = ACTIONS(636), - [anon_sym_STAR] = ACTIONS(636), - [anon_sym_SLASH] = ACTIONS(636), - [anon_sym_PERCENT] = ACTIONS(636), - [anon_sym_PLUS] = ACTIONS(636), - [anon_sym_DASH] = ACTIONS(636), - [anon_sym_LT_EQ] = ACTIONS(636), - [anon_sym_GT_EQ] = ACTIONS(636), - [anon_sym_EQ_EQ] = ACTIONS(636), - [anon_sym_BANG_EQ] = ACTIONS(636), - [anon_sym_TILDE] = ACTIONS(636), - [anon_sym_BANG_TILDE] = ACTIONS(636), - [anon_sym_AMP_AMP] = ACTIONS(636), - [anon_sym_PIPE_PIPE] = ACTIONS(636), - [anon_sym_BANG] = ACTIONS(634), - [anon_sym_PLUS_PLUS] = ACTIONS(640), - [anon_sym_DASH_DASH] = ACTIONS(640), - [anon_sym_EQ] = ACTIONS(634), - [anon_sym_PLUS_EQ] = ACTIONS(634), - [anon_sym_DASH_EQ] = ACTIONS(634), - [anon_sym_STAR_EQ] = ACTIONS(634), - [anon_sym_SLASH_EQ] = ACTIONS(634), - [anon_sym_PERCENT_EQ] = ACTIONS(634), - [anon_sym_CARET_EQ] = ACTIONS(634), - [anon_sym_DOLLAR] = ACTIONS(634), - [anon_sym_LBRACK] = ACTIONS(684), - [anon_sym_AT] = ACTIONS(634), - [anon_sym_COLON_COLON] = ACTIONS(644), - [aux_sym_number_token1] = ACTIONS(634), - [aux_sym_number_token2] = ACTIONS(634), - [anon_sym_DQUOTE] = ACTIONS(634), - [anon_sym_POUND] = ACTIONS(634), - [sym_concatenating_space] = ACTIONS(646), - }, - [164] = { - [sym_identifier] = ACTIONS(636), - [anon_sym_COMMA] = ACTIONS(636), - [anon_sym_SEMI] = ACTIONS(636), - [anon_sym_LF] = ACTIONS(636), - [anon_sym_CR_LF] = ACTIONS(636), - [anon_sym_if] = ACTIONS(636), - [anon_sym_LPAREN] = ACTIONS(636), - [anon_sym_while] = ACTIONS(636), - [anon_sym_do] = ACTIONS(636), - [anon_sym_for] = ACTIONS(636), - [anon_sym_in] = ACTIONS(636), - [sym_break_statement] = ACTIONS(636), - [sym_continue_statement] = ACTIONS(636), - [anon_sym_delete] = ACTIONS(636), - [anon_sym_exit] = ACTIONS(636), - [anon_sym_return] = ACTIONS(636), - [anon_sym_switch] = ACTIONS(636), - [anon_sym_LBRACE] = ACTIONS(636), - [anon_sym_RBRACE] = ACTIONS(636), - [anon_sym_case] = ACTIONS(636), - [anon_sym_default] = ACTIONS(636), - [anon_sym_getline] = ACTIONS(636), - [anon_sym_LT] = ACTIONS(636), - [sym_next_statement] = ACTIONS(636), - [sym_nextfile_statement] = ACTIONS(636), - [anon_sym_print] = ACTIONS(636), - [anon_sym_LPAREN2] = ACTIONS(682), - [anon_sym_printf] = ACTIONS(636), - [anon_sym_GT] = ACTIONS(636), - [anon_sym_GT_GT] = ACTIONS(636), - [anon_sym_PIPE] = ACTIONS(636), - [anon_sym_PIPE_AMP] = ACTIONS(636), - [anon_sym_QMARK] = ACTIONS(636), - [anon_sym_CARET] = ACTIONS(636), - [anon_sym_STAR_STAR] = ACTIONS(636), - [anon_sym_STAR] = ACTIONS(636), - [anon_sym_SLASH] = ACTIONS(636), - [anon_sym_PERCENT] = ACTIONS(636), - [anon_sym_PLUS] = ACTIONS(636), - [anon_sym_DASH] = ACTIONS(636), - [anon_sym_LT_EQ] = ACTIONS(636), - [anon_sym_GT_EQ] = ACTIONS(636), - [anon_sym_EQ_EQ] = ACTIONS(636), - [anon_sym_BANG_EQ] = ACTIONS(636), - [anon_sym_TILDE] = ACTIONS(636), - [anon_sym_BANG_TILDE] = ACTIONS(636), - [anon_sym_AMP_AMP] = ACTIONS(636), - [anon_sym_PIPE_PIPE] = ACTIONS(636), - [anon_sym_BANG] = ACTIONS(636), - [anon_sym_PLUS_PLUS] = ACTIONS(686), - [anon_sym_DASH_DASH] = ACTIONS(686), - [anon_sym_EQ] = ACTIONS(636), - [anon_sym_PLUS_EQ] = ACTIONS(636), - [anon_sym_DASH_EQ] = ACTIONS(636), - [anon_sym_STAR_EQ] = ACTIONS(636), - [anon_sym_SLASH_EQ] = ACTIONS(636), - [anon_sym_PERCENT_EQ] = ACTIONS(636), - [anon_sym_CARET_EQ] = ACTIONS(636), - [anon_sym_DOLLAR] = ACTIONS(636), - [anon_sym_LBRACK] = ACTIONS(684), - [anon_sym_AT] = ACTIONS(636), - [anon_sym_COLON_COLON] = ACTIONS(644), - [aux_sym_number_token1] = ACTIONS(636), - [aux_sym_number_token2] = ACTIONS(636), - [anon_sym_DQUOTE] = ACTIONS(636), - [anon_sym_POUND] = ACTIONS(636), - [sym_concatenating_space] = ACTIONS(650), - }, - [165] = { - [sym_identifier] = ACTIONS(670), - [anon_sym_COMMA] = ACTIONS(670), - [anon_sym_SEMI] = ACTIONS(670), - [anon_sym_LF] = ACTIONS(670), - [anon_sym_CR_LF] = ACTIONS(670), - [anon_sym_if] = ACTIONS(670), - [anon_sym_LPAREN] = ACTIONS(670), - [anon_sym_while] = ACTIONS(670), - [anon_sym_do] = ACTIONS(670), - [anon_sym_for] = ACTIONS(670), - [anon_sym_in] = ACTIONS(670), - [sym_break_statement] = ACTIONS(670), - [sym_continue_statement] = ACTIONS(670), - [anon_sym_delete] = ACTIONS(670), - [anon_sym_exit] = ACTIONS(670), - [anon_sym_return] = ACTIONS(670), - [anon_sym_switch] = ACTIONS(670), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_RBRACE] = ACTIONS(670), - [anon_sym_case] = ACTIONS(670), - [anon_sym_default] = ACTIONS(670), - [anon_sym_getline] = ACTIONS(670), - [anon_sym_LT] = ACTIONS(670), - [sym_next_statement] = ACTIONS(670), - [sym_nextfile_statement] = ACTIONS(670), - [anon_sym_print] = ACTIONS(670), - [anon_sym_printf] = ACTIONS(670), - [anon_sym_GT] = ACTIONS(670), - [anon_sym_GT_GT] = ACTIONS(670), - [anon_sym_PIPE] = ACTIONS(670), - [anon_sym_PIPE_AMP] = ACTIONS(670), - [anon_sym_QMARK] = ACTIONS(670), - [anon_sym_CARET] = ACTIONS(670), - [anon_sym_STAR_STAR] = ACTIONS(670), - [anon_sym_STAR] = ACTIONS(670), - [anon_sym_SLASH] = ACTIONS(670), - [anon_sym_PERCENT] = ACTIONS(670), - [anon_sym_PLUS] = ACTIONS(670), - [anon_sym_DASH] = ACTIONS(670), - [anon_sym_LT_EQ] = ACTIONS(670), - [anon_sym_GT_EQ] = ACTIONS(670), - [anon_sym_EQ_EQ] = ACTIONS(670), - [anon_sym_BANG_EQ] = ACTIONS(670), - [anon_sym_TILDE] = ACTIONS(670), - [anon_sym_BANG_TILDE] = ACTIONS(670), - [anon_sym_AMP_AMP] = ACTIONS(670), - [anon_sym_PIPE_PIPE] = ACTIONS(670), - [anon_sym_BANG] = ACTIONS(670), - [anon_sym_PLUS_PLUS] = ACTIONS(670), - [anon_sym_DASH_DASH] = ACTIONS(670), - [anon_sym_EQ] = ACTIONS(670), - [anon_sym_PLUS_EQ] = ACTIONS(670), - [anon_sym_DASH_EQ] = ACTIONS(670), - [anon_sym_STAR_EQ] = ACTIONS(670), - [anon_sym_SLASH_EQ] = ACTIONS(670), - [anon_sym_PERCENT_EQ] = ACTIONS(670), - [anon_sym_CARET_EQ] = ACTIONS(670), - [anon_sym_DOLLAR] = ACTIONS(670), - [anon_sym_LBRACK] = ACTIONS(642), - [anon_sym_AT] = ACTIONS(670), - [aux_sym_number_token1] = ACTIONS(670), - [aux_sym_number_token2] = ACTIONS(670), - [anon_sym_DQUOTE] = ACTIONS(670), - [anon_sym_POUND] = ACTIONS(670), - [sym_concatenating_space] = ACTIONS(672), - [sym__if_else_separator] = ACTIONS(672), - }, [166] = { - [sym_identifier] = ACTIONS(636), - [anon_sym_COMMA] = ACTIONS(636), - [anon_sym_SEMI] = ACTIONS(636), - [anon_sym_LF] = ACTIONS(636), - [anon_sym_CR_LF] = ACTIONS(636), - [anon_sym_if] = ACTIONS(636), - [anon_sym_LPAREN] = ACTIONS(636), - [anon_sym_while] = ACTIONS(636), - [anon_sym_do] = ACTIONS(636), - [anon_sym_for] = ACTIONS(636), - [anon_sym_in] = ACTIONS(636), - [sym_break_statement] = ACTIONS(636), - [sym_continue_statement] = ACTIONS(636), - [anon_sym_delete] = ACTIONS(636), - [anon_sym_exit] = ACTIONS(636), - [anon_sym_return] = ACTIONS(636), - [anon_sym_switch] = ACTIONS(636), - [anon_sym_LBRACE] = ACTIONS(636), - [anon_sym_RBRACE] = ACTIONS(636), - [anon_sym_case] = ACTIONS(636), - [anon_sym_default] = ACTIONS(636), - [anon_sym_getline] = ACTIONS(636), - [anon_sym_LT] = ACTIONS(636), - [sym_next_statement] = ACTIONS(636), - [sym_nextfile_statement] = ACTIONS(636), - [anon_sym_print] = ACTIONS(636), - [anon_sym_LPAREN2] = ACTIONS(682), - [anon_sym_printf] = ACTIONS(636), - [anon_sym_GT] = ACTIONS(636), - [anon_sym_GT_GT] = ACTIONS(636), - [anon_sym_PIPE] = ACTIONS(636), - [anon_sym_PIPE_AMP] = ACTIONS(636), - [anon_sym_QMARK] = ACTIONS(636), - [anon_sym_CARET] = ACTIONS(636), - [anon_sym_STAR_STAR] = ACTIONS(636), - [anon_sym_STAR] = ACTIONS(636), - [anon_sym_SLASH] = ACTIONS(636), - [anon_sym_PERCENT] = ACTIONS(636), - [anon_sym_PLUS] = ACTIONS(636), - [anon_sym_DASH] = ACTIONS(636), - [anon_sym_LT_EQ] = ACTIONS(636), - [anon_sym_GT_EQ] = ACTIONS(636), - [anon_sym_EQ_EQ] = ACTIONS(636), - [anon_sym_BANG_EQ] = ACTIONS(636), - [anon_sym_TILDE] = ACTIONS(636), - [anon_sym_BANG_TILDE] = ACTIONS(636), - [anon_sym_AMP_AMP] = ACTIONS(636), - [anon_sym_PIPE_PIPE] = ACTIONS(636), - [anon_sym_BANG] = ACTIONS(636), - [anon_sym_PLUS_PLUS] = ACTIONS(686), - [anon_sym_DASH_DASH] = ACTIONS(686), - [anon_sym_EQ] = ACTIONS(636), - [anon_sym_PLUS_EQ] = ACTIONS(636), - [anon_sym_DASH_EQ] = ACTIONS(636), - [anon_sym_STAR_EQ] = ACTIONS(636), - [anon_sym_SLASH_EQ] = ACTIONS(636), - [anon_sym_PERCENT_EQ] = ACTIONS(636), - [anon_sym_CARET_EQ] = ACTIONS(636), - [anon_sym_DOLLAR] = ACTIONS(636), - [anon_sym_LBRACK] = ACTIONS(684), - [anon_sym_AT] = ACTIONS(636), - [aux_sym_number_token1] = ACTIONS(636), - [aux_sym_number_token2] = ACTIONS(636), - [anon_sym_DQUOTE] = ACTIONS(636), - [anon_sym_POUND] = ACTIONS(636), - [sym_concatenating_space] = ACTIONS(650), + [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(690), + [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(692), + [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), }, [167] = { - [sym_identifier] = ACTIONS(636), - [anon_sym_COMMA] = ACTIONS(636), - [anon_sym_SEMI] = ACTIONS(636), - [anon_sym_LF] = ACTIONS(636), - [anon_sym_CR_LF] = ACTIONS(636), - [anon_sym_if] = ACTIONS(636), - [anon_sym_LPAREN] = ACTIONS(636), - [anon_sym_while] = ACTIONS(636), - [anon_sym_do] = ACTIONS(636), - [anon_sym_for] = ACTIONS(636), - [anon_sym_in] = ACTIONS(636), - [sym_break_statement] = ACTIONS(636), - [sym_continue_statement] = ACTIONS(636), - [anon_sym_delete] = ACTIONS(636), - [anon_sym_exit] = ACTIONS(636), - [anon_sym_return] = ACTIONS(636), - [anon_sym_switch] = ACTIONS(636), - [anon_sym_LBRACE] = ACTIONS(636), - [anon_sym_RBRACE] = ACTIONS(636), - [anon_sym_case] = ACTIONS(636), - [anon_sym_default] = ACTIONS(636), - [anon_sym_getline] = ACTIONS(636), - [anon_sym_LT] = ACTIONS(636), - [sym_next_statement] = ACTIONS(636), - [sym_nextfile_statement] = ACTIONS(636), - [anon_sym_print] = ACTIONS(636), - [anon_sym_printf] = ACTIONS(636), - [anon_sym_GT] = ACTIONS(636), - [anon_sym_GT_GT] = ACTIONS(636), - [anon_sym_PIPE] = ACTIONS(636), - [anon_sym_PIPE_AMP] = ACTIONS(636), - [anon_sym_QMARK] = ACTIONS(636), - [anon_sym_CARET] = ACTIONS(636), - [anon_sym_STAR_STAR] = ACTIONS(636), - [anon_sym_STAR] = ACTIONS(636), - [anon_sym_SLASH] = ACTIONS(636), - [anon_sym_PERCENT] = ACTIONS(636), - [anon_sym_PLUS] = ACTIONS(636), - [anon_sym_DASH] = ACTIONS(636), - [anon_sym_LT_EQ] = ACTIONS(636), - [anon_sym_GT_EQ] = ACTIONS(636), - [anon_sym_EQ_EQ] = ACTIONS(636), - [anon_sym_BANG_EQ] = ACTIONS(636), - [anon_sym_TILDE] = ACTIONS(636), - [anon_sym_BANG_TILDE] = ACTIONS(636), - [anon_sym_AMP_AMP] = ACTIONS(636), - [anon_sym_PIPE_PIPE] = ACTIONS(636), - [anon_sym_BANG] = ACTIONS(636), - [anon_sym_PLUS_PLUS] = ACTIONS(648), - [anon_sym_DASH_DASH] = ACTIONS(648), - [anon_sym_EQ] = ACTIONS(636), - [anon_sym_PLUS_EQ] = ACTIONS(636), - [anon_sym_DASH_EQ] = ACTIONS(636), - [anon_sym_STAR_EQ] = ACTIONS(636), - [anon_sym_SLASH_EQ] = ACTIONS(636), - [anon_sym_PERCENT_EQ] = ACTIONS(636), - [anon_sym_CARET_EQ] = ACTIONS(636), - [anon_sym_DOLLAR] = ACTIONS(636), - [anon_sym_LBRACK] = ACTIONS(642), - [anon_sym_AT] = ACTIONS(636), - [aux_sym_number_token1] = ACTIONS(636), - [aux_sym_number_token2] = ACTIONS(636), - [anon_sym_DQUOTE] = ACTIONS(636), - [anon_sym_POUND] = ACTIONS(636), - [sym_concatenating_space] = ACTIONS(650), - [sym__if_else_separator] = ACTIONS(650), + [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_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), }, [168] = { - [sym_identifier] = ACTIONS(634), - [anon_sym_COMMA] = ACTIONS(634), - [anon_sym_SEMI] = ACTIONS(634), - [anon_sym_LF] = ACTIONS(634), - [anon_sym_CR_LF] = ACTIONS(634), - [anon_sym_if] = ACTIONS(634), - [anon_sym_LPAREN] = ACTIONS(634), - [anon_sym_while] = ACTIONS(634), - [anon_sym_do] = ACTIONS(634), - [anon_sym_for] = ACTIONS(634), - [anon_sym_in] = ACTIONS(636), - [sym_break_statement] = ACTIONS(634), - [sym_continue_statement] = ACTIONS(634), - [anon_sym_delete] = ACTIONS(634), - [anon_sym_exit] = ACTIONS(634), - [anon_sym_return] = ACTIONS(634), - [anon_sym_switch] = ACTIONS(634), - [anon_sym_LBRACE] = ACTIONS(634), - [anon_sym_RBRACE] = ACTIONS(634), - [anon_sym_case] = ACTIONS(634), - [anon_sym_default] = ACTIONS(634), - [anon_sym_getline] = ACTIONS(634), - [anon_sym_LT] = ACTIONS(636), - [sym_next_statement] = ACTIONS(634), - [sym_nextfile_statement] = ACTIONS(634), - [anon_sym_print] = ACTIONS(634), - [anon_sym_printf] = ACTIONS(634), - [anon_sym_GT] = ACTIONS(636), - [anon_sym_GT_GT] = ACTIONS(634), - [anon_sym_PIPE] = ACTIONS(636), - [anon_sym_PIPE_AMP] = ACTIONS(636), - [anon_sym_QMARK] = ACTIONS(636), - [anon_sym_CARET] = ACTIONS(636), - [anon_sym_STAR_STAR] = ACTIONS(636), - [anon_sym_STAR] = ACTIONS(636), - [anon_sym_SLASH] = ACTIONS(636), - [anon_sym_PERCENT] = ACTIONS(636), - [anon_sym_PLUS] = ACTIONS(636), - [anon_sym_DASH] = ACTIONS(636), - [anon_sym_LT_EQ] = ACTIONS(636), - [anon_sym_GT_EQ] = ACTIONS(636), - [anon_sym_EQ_EQ] = ACTIONS(636), - [anon_sym_BANG_EQ] = ACTIONS(636), - [anon_sym_TILDE] = ACTIONS(636), - [anon_sym_BANG_TILDE] = ACTIONS(636), - [anon_sym_AMP_AMP] = ACTIONS(636), - [anon_sym_PIPE_PIPE] = ACTIONS(636), - [anon_sym_BANG] = ACTIONS(634), - [anon_sym_PLUS_PLUS] = ACTIONS(640), - [anon_sym_DASH_DASH] = ACTIONS(640), - [anon_sym_EQ] = ACTIONS(634), - [anon_sym_PLUS_EQ] = ACTIONS(634), - [anon_sym_DASH_EQ] = ACTIONS(634), - [anon_sym_STAR_EQ] = ACTIONS(634), - [anon_sym_SLASH_EQ] = ACTIONS(634), - [anon_sym_PERCENT_EQ] = ACTIONS(634), - [anon_sym_CARET_EQ] = ACTIONS(634), - [anon_sym_DOLLAR] = ACTIONS(634), - [anon_sym_LBRACK] = ACTIONS(642), - [anon_sym_AT] = ACTIONS(634), - [aux_sym_number_token1] = ACTIONS(634), - [aux_sym_number_token2] = ACTIONS(634), - [anon_sym_DQUOTE] = ACTIONS(634), - [anon_sym_POUND] = ACTIONS(634), - [sym_concatenating_space] = ACTIONS(646), - [sym__if_else_separator] = ACTIONS(646), + [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_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), }, [169] = { - [sym_identifier] = ACTIONS(636), - [anon_sym_COMMA] = ACTIONS(636), - [anon_sym_SEMI] = ACTIONS(636), - [anon_sym_LF] = ACTIONS(636), - [anon_sym_CR_LF] = ACTIONS(636), - [anon_sym_if] = ACTIONS(636), - [anon_sym_LPAREN] = ACTIONS(636), - [anon_sym_while] = ACTIONS(636), - [anon_sym_do] = ACTIONS(636), - [anon_sym_for] = ACTIONS(636), - [anon_sym_in] = ACTIONS(636), - [sym_break_statement] = ACTIONS(636), - [sym_continue_statement] = ACTIONS(636), - [anon_sym_delete] = ACTIONS(636), - [anon_sym_exit] = ACTIONS(636), - [anon_sym_return] = ACTIONS(636), - [anon_sym_switch] = ACTIONS(636), - [anon_sym_LBRACE] = ACTIONS(636), - [anon_sym_RBRACE] = ACTIONS(636), - [anon_sym_getline] = ACTIONS(636), - [anon_sym_LT] = ACTIONS(636), - [sym_next_statement] = ACTIONS(636), - [sym_nextfile_statement] = ACTIONS(636), - [anon_sym_print] = ACTIONS(636), - [anon_sym_LPAREN2] = ACTIONS(688), - [anon_sym_printf] = ACTIONS(636), - [anon_sym_GT] = ACTIONS(636), - [anon_sym_GT_GT] = ACTIONS(636), - [anon_sym_PIPE] = ACTIONS(636), - [anon_sym_PIPE_AMP] = ACTIONS(636), - [anon_sym_QMARK] = ACTIONS(636), - [anon_sym_CARET] = ACTIONS(636), - [anon_sym_STAR_STAR] = ACTIONS(636), - [anon_sym_STAR] = ACTIONS(636), - [anon_sym_SLASH] = ACTIONS(636), - [anon_sym_PERCENT] = ACTIONS(636), - [anon_sym_PLUS] = ACTIONS(636), - [anon_sym_DASH] = ACTIONS(636), - [anon_sym_LT_EQ] = ACTIONS(636), - [anon_sym_GT_EQ] = ACTIONS(636), - [anon_sym_EQ_EQ] = ACTIONS(636), - [anon_sym_BANG_EQ] = ACTIONS(636), - [anon_sym_TILDE] = ACTIONS(636), - [anon_sym_BANG_TILDE] = ACTIONS(636), - [anon_sym_AMP_AMP] = ACTIONS(636), - [anon_sym_PIPE_PIPE] = ACTIONS(636), - [anon_sym_BANG] = ACTIONS(636), - [anon_sym_PLUS_PLUS] = ACTIONS(690), - [anon_sym_DASH_DASH] = ACTIONS(690), - [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(636), - [anon_sym_LBRACK] = ACTIONS(642), - [anon_sym_AT] = ACTIONS(636), - [anon_sym_COLON_COLON] = ACTIONS(644), - [aux_sym_number_token1] = ACTIONS(636), - [aux_sym_number_token2] = ACTIONS(636), - [anon_sym_DQUOTE] = ACTIONS(636), - [anon_sym_POUND] = ACTIONS(636), - [sym_concatenating_space] = ACTIONS(650), - [sym__if_else_separator] = ACTIONS(650), + [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(696), + [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(698), + [anon_sym_DASH_DASH] = ACTIONS(698), + [anon_sym_EQ] = ACTIONS(700), + [anon_sym_PLUS_EQ] = ACTIONS(700), + [anon_sym_DASH_EQ] = ACTIONS(700), + [anon_sym_STAR_EQ] = ACTIONS(700), + [anon_sym_SLASH_EQ] = ACTIONS(700), + [anon_sym_PERCENT_EQ] = ACTIONS(700), + [anon_sym_CARET_EQ] = ACTIONS(700), + [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(658), + [sym__if_else_separator] = ACTIONS(658), }, [170] = { [sym_array_ref] = STATE(165), [sym_namespace] = STATE(1961), [sym_ns_qualified_name] = STATE(234), - [sym_identifier] = ACTIONS(694), - [anon_sym_COMMA] = ACTIONS(696), - [anon_sym_SEMI] = ACTIONS(696), - [anon_sym_LF] = ACTIONS(696), - [anon_sym_CR_LF] = ACTIONS(696), - [anon_sym_if] = ACTIONS(696), - [anon_sym_LPAREN] = ACTIONS(696), - [anon_sym_while] = ACTIONS(696), - [anon_sym_do] = ACTIONS(696), - [anon_sym_for] = ACTIONS(696), - [anon_sym_in] = ACTIONS(696), - [sym_break_statement] = ACTIONS(696), - [sym_continue_statement] = ACTIONS(696), - [anon_sym_delete] = ACTIONS(696), - [anon_sym_exit] = ACTIONS(696), - [anon_sym_return] = ACTIONS(696), - [anon_sym_switch] = ACTIONS(696), - [anon_sym_LBRACE] = ACTIONS(696), - [anon_sym_RBRACE] = ACTIONS(696), - [anon_sym_getline] = ACTIONS(696), - [anon_sym_LT] = ACTIONS(698), - [sym_next_statement] = ACTIONS(696), - [sym_nextfile_statement] = ACTIONS(696), - [anon_sym_print] = ACTIONS(696), - [anon_sym_printf] = ACTIONS(696), - [anon_sym_GT] = ACTIONS(696), - [anon_sym_GT_GT] = ACTIONS(696), - [anon_sym_PIPE] = ACTIONS(696), - [anon_sym_PIPE_AMP] = ACTIONS(696), - [anon_sym_QMARK] = ACTIONS(696), - [anon_sym_CARET] = ACTIONS(696), - [anon_sym_STAR_STAR] = ACTIONS(696), - [anon_sym_STAR] = ACTIONS(696), - [anon_sym_SLASH] = ACTIONS(696), - [anon_sym_PERCENT] = ACTIONS(696), - [anon_sym_PLUS] = ACTIONS(696), - [anon_sym_DASH] = ACTIONS(696), - [anon_sym_LT_EQ] = ACTIONS(696), - [anon_sym_GT_EQ] = ACTIONS(696), - [anon_sym_EQ_EQ] = ACTIONS(696), - [anon_sym_BANG_EQ] = ACTIONS(696), - [anon_sym_TILDE] = ACTIONS(696), - [anon_sym_BANG_TILDE] = ACTIONS(696), - [anon_sym_AMP_AMP] = ACTIONS(696), - [anon_sym_PIPE_PIPE] = ACTIONS(696), - [anon_sym_BANG] = ACTIONS(696), - [anon_sym_PLUS_PLUS] = ACTIONS(696), - [anon_sym_DASH_DASH] = ACTIONS(696), - [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(696), - [anon_sym_AT] = ACTIONS(696), - [aux_sym_number_token1] = ACTIONS(696), - [aux_sym_number_token2] = ACTIONS(696), - [anon_sym_DQUOTE] = ACTIONS(696), - [anon_sym_POUND] = ACTIONS(696), - [sym_concatenating_space] = ACTIONS(700), - [sym__if_else_separator] = ACTIONS(700), - }, - [171] = { - [sym_identifier] = ACTIONS(636), - [anon_sym_COMMA] = ACTIONS(636), - [anon_sym_SEMI] = ACTIONS(636), - [anon_sym_LF] = ACTIONS(636), - [anon_sym_CR_LF] = ACTIONS(636), - [anon_sym_if] = ACTIONS(636), - [anon_sym_LPAREN] = ACTIONS(636), - [anon_sym_while] = ACTIONS(636), - [anon_sym_do] = ACTIONS(636), - [anon_sym_for] = ACTIONS(636), - [anon_sym_in] = ACTIONS(636), - [sym_break_statement] = ACTIONS(636), - [sym_continue_statement] = ACTIONS(636), - [anon_sym_delete] = ACTIONS(636), - [anon_sym_exit] = ACTIONS(636), - [anon_sym_return] = ACTIONS(636), - [anon_sym_switch] = ACTIONS(636), - [anon_sym_LBRACE] = ACTIONS(636), - [anon_sym_RBRACE] = ACTIONS(636), - [anon_sym_getline] = ACTIONS(636), - [anon_sym_LT] = ACTIONS(636), - [sym_next_statement] = ACTIONS(636), - [sym_nextfile_statement] = ACTIONS(636), - [anon_sym_print] = ACTIONS(636), - [anon_sym_LPAREN2] = ACTIONS(688), - [anon_sym_printf] = ACTIONS(636), - [anon_sym_GT] = ACTIONS(636), - [anon_sym_GT_GT] = ACTIONS(636), - [anon_sym_PIPE] = ACTIONS(636), - [anon_sym_PIPE_AMP] = ACTIONS(636), - [anon_sym_QMARK] = ACTIONS(636), - [anon_sym_CARET] = ACTIONS(636), - [anon_sym_STAR_STAR] = ACTIONS(636), - [anon_sym_STAR] = ACTIONS(636), - [anon_sym_SLASH] = ACTIONS(636), - [anon_sym_PERCENT] = ACTIONS(636), - [anon_sym_PLUS] = ACTIONS(636), - [anon_sym_DASH] = ACTIONS(636), - [anon_sym_LT_EQ] = ACTIONS(636), - [anon_sym_GT_EQ] = ACTIONS(636), - [anon_sym_EQ_EQ] = ACTIONS(636), - [anon_sym_BANG_EQ] = ACTIONS(636), - [anon_sym_TILDE] = ACTIONS(636), - [anon_sym_BANG_TILDE] = ACTIONS(636), - [anon_sym_AMP_AMP] = ACTIONS(636), - [anon_sym_PIPE_PIPE] = ACTIONS(636), - [anon_sym_BANG] = ACTIONS(636), - [anon_sym_PLUS_PLUS] = ACTIONS(702), - [anon_sym_DASH_DASH] = ACTIONS(702), + [sym_identifier] = ACTIONS(702), + [anon_sym_COMMA] = ACTIONS(704), + [anon_sym_SEMI] = ACTIONS(704), + [anon_sym_LF] = ACTIONS(704), + [anon_sym_CR_LF] = ACTIONS(704), + [anon_sym_if] = ACTIONS(704), + [anon_sym_LPAREN] = ACTIONS(704), + [anon_sym_while] = ACTIONS(704), + [anon_sym_do] = ACTIONS(704), + [anon_sym_for] = ACTIONS(704), + [anon_sym_in] = ACTIONS(704), + [sym_break_statement] = ACTIONS(704), + [sym_continue_statement] = ACTIONS(704), + [anon_sym_delete] = ACTIONS(704), + [anon_sym_exit] = ACTIONS(704), + [anon_sym_return] = ACTIONS(704), + [anon_sym_switch] = ACTIONS(704), + [anon_sym_LBRACE] = ACTIONS(704), + [anon_sym_RBRACE] = ACTIONS(704), + [anon_sym_getline] = ACTIONS(704), + [anon_sym_LT] = ACTIONS(706), + [sym_next_statement] = ACTIONS(704), + [sym_nextfile_statement] = ACTIONS(704), + [anon_sym_print] = ACTIONS(704), + [anon_sym_printf] = ACTIONS(704), + [anon_sym_GT] = ACTIONS(704), + [anon_sym_GT_GT] = ACTIONS(704), + [anon_sym_PIPE] = ACTIONS(704), + [anon_sym_PIPE_AMP] = ACTIONS(704), + [anon_sym_QMARK] = ACTIONS(704), + [anon_sym_CARET] = ACTIONS(704), + [anon_sym_STAR_STAR] = ACTIONS(704), + [anon_sym_STAR] = ACTIONS(704), + [anon_sym_SLASH] = ACTIONS(704), + [anon_sym_PERCENT] = ACTIONS(704), + [anon_sym_PLUS] = ACTIONS(704), + [anon_sym_DASH] = ACTIONS(704), + [anon_sym_LT_EQ] = ACTIONS(704), + [anon_sym_GT_EQ] = ACTIONS(704), + [anon_sym_EQ_EQ] = ACTIONS(704), + [anon_sym_BANG_EQ] = ACTIONS(704), + [anon_sym_TILDE] = ACTIONS(704), + [anon_sym_BANG_TILDE] = ACTIONS(704), + [anon_sym_AMP_AMP] = ACTIONS(704), + [anon_sym_PIPE_PIPE] = ACTIONS(704), + [anon_sym_BANG] = ACTIONS(704), + [anon_sym_PLUS_PLUS] = ACTIONS(704), + [anon_sym_DASH_DASH] = ACTIONS(704), [anon_sym_EQ] = ACTIONS(704), [anon_sym_PLUS_EQ] = ACTIONS(704), [anon_sym_DASH_EQ] = ACTIONS(704), @@ -20547,356 +20487,422 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH_EQ] = ACTIONS(704), [anon_sym_PERCENT_EQ] = ACTIONS(704), [anon_sym_CARET_EQ] = ACTIONS(704), - [anon_sym_DOLLAR] = ACTIONS(636), - [anon_sym_LBRACK] = ACTIONS(642), - [anon_sym_AT] = ACTIONS(636), - [anon_sym_COLON_COLON] = ACTIONS(644), - [aux_sym_number_token1] = ACTIONS(636), - [aux_sym_number_token2] = ACTIONS(636), - [anon_sym_DQUOTE] = ACTIONS(636), - [anon_sym_POUND] = ACTIONS(636), - [sym_concatenating_space] = ACTIONS(706), - [sym__if_else_separator] = ACTIONS(650), + [anon_sym_DOLLAR] = ACTIONS(704), + [anon_sym_AT] = ACTIONS(704), + [aux_sym_number_token1] = ACTIONS(704), + [aux_sym_number_token2] = ACTIONS(704), + [anon_sym_DQUOTE] = ACTIONS(704), + [anon_sym_POUND] = ACTIONS(704), + [sym_concatenating_space] = ACTIONS(708), + [sym__if_else_separator] = ACTIONS(708), + }, + [171] = { + [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(696), + [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(710), + [anon_sym_DASH_DASH] = ACTIONS(710), + [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(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(714), + [sym__if_else_separator] = ACTIONS(658), }, [172] = { - [sym_identifier] = ACTIONS(674), - [anon_sym_COMMA] = ACTIONS(674), - [anon_sym_SEMI] = ACTIONS(674), - [anon_sym_LF] = ACTIONS(674), - [anon_sym_CR_LF] = ACTIONS(674), - [anon_sym_if] = ACTIONS(674), - [anon_sym_LPAREN] = ACTIONS(674), - [anon_sym_while] = ACTIONS(674), - [anon_sym_do] = ACTIONS(674), - [anon_sym_for] = ACTIONS(674), - [anon_sym_in] = ACTIONS(674), - [sym_break_statement] = ACTIONS(674), - [sym_continue_statement] = ACTIONS(674), - [anon_sym_delete] = ACTIONS(674), - [anon_sym_exit] = ACTIONS(674), - [anon_sym_return] = ACTIONS(674), - [anon_sym_switch] = ACTIONS(674), - [anon_sym_LBRACE] = ACTIONS(674), - [anon_sym_RBRACE] = ACTIONS(674), - [anon_sym_case] = ACTIONS(674), - [anon_sym_default] = ACTIONS(674), - [anon_sym_getline] = ACTIONS(674), - [anon_sym_LT] = ACTIONS(674), - [sym_next_statement] = ACTIONS(674), - [sym_nextfile_statement] = ACTIONS(674), - [anon_sym_print] = ACTIONS(674), - [anon_sym_printf] = ACTIONS(674), - [anon_sym_GT] = ACTIONS(674), - [anon_sym_GT_GT] = ACTIONS(674), - [anon_sym_PIPE] = ACTIONS(674), - [anon_sym_PIPE_AMP] = ACTIONS(674), - [anon_sym_QMARK] = ACTIONS(674), - [anon_sym_CARET] = ACTIONS(674), - [anon_sym_STAR_STAR] = ACTIONS(674), - [anon_sym_STAR] = ACTIONS(674), - [anon_sym_SLASH] = ACTIONS(674), - [anon_sym_PERCENT] = ACTIONS(674), - [anon_sym_PLUS] = ACTIONS(674), - [anon_sym_DASH] = ACTIONS(674), - [anon_sym_LT_EQ] = ACTIONS(674), - [anon_sym_GT_EQ] = ACTIONS(674), - [anon_sym_EQ_EQ] = ACTIONS(674), - [anon_sym_BANG_EQ] = ACTIONS(674), - [anon_sym_TILDE] = ACTIONS(674), - [anon_sym_BANG_TILDE] = ACTIONS(674), - [anon_sym_AMP_AMP] = ACTIONS(674), - [anon_sym_PIPE_PIPE] = ACTIONS(674), - [anon_sym_BANG] = ACTIONS(674), - [anon_sym_PLUS_PLUS] = ACTIONS(674), - [anon_sym_DASH_DASH] = ACTIONS(674), - [anon_sym_EQ] = ACTIONS(674), - [anon_sym_PLUS_EQ] = ACTIONS(674), - [anon_sym_DASH_EQ] = ACTIONS(674), - [anon_sym_STAR_EQ] = ACTIONS(674), - [anon_sym_SLASH_EQ] = ACTIONS(674), - [anon_sym_PERCENT_EQ] = ACTIONS(674), - [anon_sym_CARET_EQ] = ACTIONS(674), - [anon_sym_DOLLAR] = ACTIONS(674), - [anon_sym_LBRACK] = ACTIONS(684), - [anon_sym_AT] = ACTIONS(674), - [anon_sym_COLON_COLON] = ACTIONS(644), - [aux_sym_number_token1] = ACTIONS(674), - [aux_sym_number_token2] = ACTIONS(674), - [anon_sym_DQUOTE] = ACTIONS(674), - [anon_sym_POUND] = ACTIONS(674), - [sym_concatenating_space] = ACTIONS(676), + [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(692), + [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), }, [173] = { - [sym_identifier] = ACTIONS(634), - [anon_sym_COMMA] = ACTIONS(634), - [anon_sym_SEMI] = ACTIONS(634), - [anon_sym_LF] = ACTIONS(634), - [anon_sym_CR_LF] = ACTIONS(634), - [anon_sym_if] = ACTIONS(634), - [anon_sym_LPAREN] = ACTIONS(634), - [anon_sym_while] = ACTIONS(634), - [anon_sym_do] = ACTIONS(634), - [anon_sym_for] = ACTIONS(634), - [anon_sym_in] = ACTIONS(636), - [sym_break_statement] = ACTIONS(634), - [sym_continue_statement] = ACTIONS(634), - [anon_sym_delete] = ACTIONS(634), - [anon_sym_exit] = ACTIONS(634), - [anon_sym_return] = ACTIONS(634), - [anon_sym_switch] = ACTIONS(634), - [anon_sym_LBRACE] = ACTIONS(634), - [anon_sym_RBRACE] = ACTIONS(634), - [anon_sym_case] = ACTIONS(634), - [anon_sym_default] = ACTIONS(634), - [anon_sym_getline] = ACTIONS(634), - [anon_sym_LT] = ACTIONS(636), - [sym_next_statement] = ACTIONS(634), - [sym_nextfile_statement] = ACTIONS(634), - [anon_sym_print] = ACTIONS(634), - [anon_sym_LPAREN2] = ACTIONS(682), - [anon_sym_printf] = ACTIONS(634), - [anon_sym_GT] = ACTIONS(636), - [anon_sym_GT_GT] = ACTIONS(634), - [anon_sym_PIPE] = ACTIONS(636), - [anon_sym_PIPE_AMP] = ACTIONS(636), - [anon_sym_QMARK] = ACTIONS(636), - [anon_sym_CARET] = ACTIONS(636), - [anon_sym_STAR_STAR] = ACTIONS(636), - [anon_sym_STAR] = ACTIONS(636), - [anon_sym_SLASH] = ACTIONS(636), - [anon_sym_PERCENT] = ACTIONS(636), - [anon_sym_PLUS] = ACTIONS(636), - [anon_sym_DASH] = ACTIONS(636), - [anon_sym_LT_EQ] = ACTIONS(636), - [anon_sym_GT_EQ] = ACTIONS(636), - [anon_sym_EQ_EQ] = ACTIONS(636), - [anon_sym_BANG_EQ] = ACTIONS(636), - [anon_sym_TILDE] = ACTIONS(636), - [anon_sym_BANG_TILDE] = ACTIONS(636), - [anon_sym_AMP_AMP] = ACTIONS(636), - [anon_sym_PIPE_PIPE] = ACTIONS(636), - [anon_sym_BANG] = ACTIONS(634), - [anon_sym_PLUS_PLUS] = ACTIONS(640), - [anon_sym_DASH_DASH] = ACTIONS(640), - [anon_sym_EQ] = ACTIONS(634), - [anon_sym_PLUS_EQ] = ACTIONS(634), - [anon_sym_DASH_EQ] = ACTIONS(634), - [anon_sym_STAR_EQ] = ACTIONS(634), - [anon_sym_SLASH_EQ] = ACTIONS(634), - [anon_sym_PERCENT_EQ] = ACTIONS(634), - [anon_sym_CARET_EQ] = ACTIONS(634), - [anon_sym_DOLLAR] = ACTIONS(634), - [anon_sym_LBRACK] = ACTIONS(684), - [anon_sym_AT] = ACTIONS(634), - [aux_sym_number_token1] = ACTIONS(634), - [aux_sym_number_token2] = ACTIONS(634), - [anon_sym_DQUOTE] = ACTIONS(634), - [anon_sym_POUND] = ACTIONS(634), - [sym_concatenating_space] = ACTIONS(646), + [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(690), + [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(692), + [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), }, [174] = { - [sym_identifier] = ACTIONS(634), - [anon_sym_COMMA] = ACTIONS(634), - [anon_sym_SEMI] = ACTIONS(634), - [anon_sym_LF] = ACTIONS(634), - [anon_sym_CR_LF] = ACTIONS(634), - [anon_sym_if] = ACTIONS(634), - [anon_sym_LPAREN] = ACTIONS(634), - [anon_sym_while] = ACTIONS(634), - [anon_sym_do] = ACTIONS(634), - [anon_sym_for] = ACTIONS(634), - [anon_sym_in] = ACTIONS(636), - [sym_break_statement] = ACTIONS(634), - [sym_continue_statement] = ACTIONS(634), - [anon_sym_delete] = ACTIONS(634), - [anon_sym_exit] = ACTIONS(634), - [anon_sym_return] = ACTIONS(634), - [anon_sym_switch] = ACTIONS(634), - [anon_sym_LBRACE] = ACTIONS(634), - [anon_sym_RBRACE] = ACTIONS(634), - [anon_sym_case] = ACTIONS(634), - [anon_sym_default] = ACTIONS(634), - [anon_sym_getline] = ACTIONS(634), - [anon_sym_LT] = ACTIONS(636), - [sym_next_statement] = ACTIONS(634), - [sym_nextfile_statement] = ACTIONS(634), - [anon_sym_print] = ACTIONS(634), - [anon_sym_printf] = ACTIONS(634), - [anon_sym_GT] = ACTIONS(636), - [anon_sym_GT_GT] = ACTIONS(634), - [anon_sym_PIPE] = ACTIONS(636), - [anon_sym_PIPE_AMP] = ACTIONS(636), - [anon_sym_QMARK] = ACTIONS(636), - [anon_sym_CARET] = ACTIONS(636), - [anon_sym_STAR_STAR] = ACTIONS(636), - [anon_sym_STAR] = ACTIONS(636), - [anon_sym_SLASH] = ACTIONS(636), - [anon_sym_PERCENT] = ACTIONS(636), - [anon_sym_PLUS] = ACTIONS(636), - [anon_sym_DASH] = ACTIONS(636), - [anon_sym_LT_EQ] = ACTIONS(636), - [anon_sym_GT_EQ] = ACTIONS(636), - [anon_sym_EQ_EQ] = ACTIONS(636), - [anon_sym_BANG_EQ] = ACTIONS(636), - [anon_sym_TILDE] = ACTIONS(636), - [anon_sym_BANG_TILDE] = ACTIONS(636), - [anon_sym_AMP_AMP] = ACTIONS(636), - [anon_sym_PIPE_PIPE] = ACTIONS(636), - [anon_sym_BANG] = ACTIONS(634), - [anon_sym_PLUS_PLUS] = ACTIONS(640), - [anon_sym_DASH_DASH] = ACTIONS(640), - [anon_sym_EQ] = ACTIONS(708), - [anon_sym_PLUS_EQ] = ACTIONS(708), - [anon_sym_DASH_EQ] = ACTIONS(708), - [anon_sym_STAR_EQ] = ACTIONS(708), - [anon_sym_SLASH_EQ] = ACTIONS(708), - [anon_sym_PERCENT_EQ] = ACTIONS(708), - [anon_sym_CARET_EQ] = ACTIONS(708), - [anon_sym_DOLLAR] = ACTIONS(634), - [anon_sym_LBRACK] = ACTIONS(642), - [anon_sym_AT] = ACTIONS(634), - [aux_sym_number_token1] = ACTIONS(634), - [aux_sym_number_token2] = ACTIONS(634), - [anon_sym_DQUOTE] = ACTIONS(634), - [anon_sym_POUND] = ACTIONS(634), - [sym_concatenating_space] = ACTIONS(646), - [sym__if_else_separator] = ACTIONS(646), + [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(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(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), }, [175] = { [sym_array_ref] = STATE(165), [sym_namespace] = STATE(1961), [sym_ns_qualified_name] = STATE(165), - [sym_identifier] = ACTIONS(710), - [anon_sym_COMMA] = ACTIONS(696), - [anon_sym_SEMI] = ACTIONS(696), - [anon_sym_LF] = ACTIONS(696), - [anon_sym_CR_LF] = ACTIONS(696), - [anon_sym_if] = ACTIONS(696), - [anon_sym_LPAREN] = ACTIONS(696), - [anon_sym_while] = ACTIONS(696), - [anon_sym_do] = ACTIONS(696), - [anon_sym_for] = ACTIONS(696), - [anon_sym_in] = ACTIONS(696), - [sym_break_statement] = ACTIONS(696), - [sym_continue_statement] = ACTIONS(696), - [anon_sym_delete] = ACTIONS(696), - [anon_sym_exit] = ACTIONS(696), - [anon_sym_return] = ACTIONS(696), - [anon_sym_switch] = ACTIONS(696), - [anon_sym_LBRACE] = ACTIONS(696), - [anon_sym_RBRACE] = ACTIONS(696), - [anon_sym_getline] = ACTIONS(696), - [anon_sym_LT] = ACTIONS(696), - [sym_next_statement] = ACTIONS(696), - [sym_nextfile_statement] = ACTIONS(696), - [anon_sym_print] = ACTIONS(696), - [anon_sym_printf] = ACTIONS(696), - [anon_sym_GT] = ACTIONS(696), - [anon_sym_GT_GT] = ACTIONS(696), - [anon_sym_PIPE] = ACTIONS(696), - [anon_sym_PIPE_AMP] = ACTIONS(696), - [anon_sym_QMARK] = ACTIONS(696), - [anon_sym_CARET] = ACTIONS(696), - [anon_sym_STAR_STAR] = ACTIONS(696), - [anon_sym_STAR] = ACTIONS(696), - [anon_sym_SLASH] = ACTIONS(696), - [anon_sym_PERCENT] = ACTIONS(696), - [anon_sym_PLUS] = ACTIONS(696), - [anon_sym_DASH] = ACTIONS(696), - [anon_sym_LT_EQ] = ACTIONS(696), - [anon_sym_GT_EQ] = ACTIONS(696), - [anon_sym_EQ_EQ] = ACTIONS(696), - [anon_sym_BANG_EQ] = ACTIONS(696), - [anon_sym_TILDE] = ACTIONS(696), - [anon_sym_BANG_TILDE] = ACTIONS(696), - [anon_sym_AMP_AMP] = ACTIONS(696), - [anon_sym_PIPE_PIPE] = ACTIONS(696), - [anon_sym_BANG] = ACTIONS(696), - [anon_sym_PLUS_PLUS] = ACTIONS(696), - [anon_sym_DASH_DASH] = ACTIONS(696), - [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(696), - [anon_sym_AT] = ACTIONS(696), - [aux_sym_number_token1] = ACTIONS(696), - [aux_sym_number_token2] = ACTIONS(696), - [anon_sym_DQUOTE] = ACTIONS(696), - [anon_sym_POUND] = ACTIONS(696), - [sym_concatenating_space] = ACTIONS(700), - [sym__if_else_separator] = ACTIONS(700), + [sym_identifier] = ACTIONS(718), + [anon_sym_COMMA] = ACTIONS(704), + [anon_sym_SEMI] = ACTIONS(704), + [anon_sym_LF] = ACTIONS(704), + [anon_sym_CR_LF] = ACTIONS(704), + [anon_sym_if] = ACTIONS(704), + [anon_sym_LPAREN] = ACTIONS(704), + [anon_sym_while] = ACTIONS(704), + [anon_sym_do] = ACTIONS(704), + [anon_sym_for] = ACTIONS(704), + [anon_sym_in] = ACTIONS(704), + [sym_break_statement] = ACTIONS(704), + [sym_continue_statement] = ACTIONS(704), + [anon_sym_delete] = ACTIONS(704), + [anon_sym_exit] = ACTIONS(704), + [anon_sym_return] = ACTIONS(704), + [anon_sym_switch] = ACTIONS(704), + [anon_sym_LBRACE] = ACTIONS(704), + [anon_sym_RBRACE] = ACTIONS(704), + [anon_sym_getline] = ACTIONS(704), + [anon_sym_LT] = ACTIONS(704), + [sym_next_statement] = ACTIONS(704), + [sym_nextfile_statement] = ACTIONS(704), + [anon_sym_print] = ACTIONS(704), + [anon_sym_printf] = ACTIONS(704), + [anon_sym_GT] = ACTIONS(704), + [anon_sym_GT_GT] = ACTIONS(704), + [anon_sym_PIPE] = ACTIONS(704), + [anon_sym_PIPE_AMP] = ACTIONS(704), + [anon_sym_QMARK] = ACTIONS(704), + [anon_sym_CARET] = ACTIONS(704), + [anon_sym_STAR_STAR] = ACTIONS(704), + [anon_sym_STAR] = ACTIONS(704), + [anon_sym_SLASH] = ACTIONS(704), + [anon_sym_PERCENT] = ACTIONS(704), + [anon_sym_PLUS] = ACTIONS(704), + [anon_sym_DASH] = ACTIONS(704), + [anon_sym_LT_EQ] = ACTIONS(704), + [anon_sym_GT_EQ] = ACTIONS(704), + [anon_sym_EQ_EQ] = ACTIONS(704), + [anon_sym_BANG_EQ] = ACTIONS(704), + [anon_sym_TILDE] = ACTIONS(704), + [anon_sym_BANG_TILDE] = ACTIONS(704), + [anon_sym_AMP_AMP] = ACTIONS(704), + [anon_sym_PIPE_PIPE] = ACTIONS(704), + [anon_sym_BANG] = ACTIONS(704), + [anon_sym_PLUS_PLUS] = ACTIONS(704), + [anon_sym_DASH_DASH] = ACTIONS(704), + [anon_sym_EQ] = ACTIONS(704), + [anon_sym_PLUS_EQ] = ACTIONS(704), + [anon_sym_DASH_EQ] = ACTIONS(704), + [anon_sym_STAR_EQ] = ACTIONS(704), + [anon_sym_SLASH_EQ] = ACTIONS(704), + [anon_sym_PERCENT_EQ] = ACTIONS(704), + [anon_sym_CARET_EQ] = ACTIONS(704), + [anon_sym_DOLLAR] = ACTIONS(704), + [anon_sym_AT] = ACTIONS(704), + [aux_sym_number_token1] = ACTIONS(704), + [aux_sym_number_token2] = ACTIONS(704), + [anon_sym_DQUOTE] = ACTIONS(704), + [anon_sym_POUND] = ACTIONS(704), + [sym_concatenating_space] = ACTIONS(708), + [sym__if_else_separator] = ACTIONS(708), }, [176] = { - [sym_identifier] = ACTIONS(712), - [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_case] = ACTIONS(712), - [anon_sym_default] = 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_LBRACK] = 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_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), }, [177] = { [sym__getline_exp] = STATE(457), @@ -20927,250 +20933,182 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_indirect_func_call] = STATE(457), [aux_sym_exp_list_repeat1] = STATE(719), [sym_identifier] = ACTIONS(127), - [anon_sym_SEMI] = ACTIONS(652), - [anon_sym_LF] = ACTIONS(652), - [anon_sym_CR_LF] = ACTIONS(652), - [anon_sym_if] = ACTIONS(652), - [anon_sym_LPAREN] = ACTIONS(716), - [anon_sym_while] = ACTIONS(652), - [anon_sym_do] = ACTIONS(652), - [anon_sym_for] = ACTIONS(652), - [sym_break_statement] = ACTIONS(652), - [sym_continue_statement] = ACTIONS(652), - [anon_sym_delete] = ACTIONS(652), - [anon_sym_exit] = ACTIONS(652), - [anon_sym_return] = ACTIONS(652), - [anon_sym_switch] = ACTIONS(652), - [anon_sym_LBRACE] = ACTIONS(652), - [anon_sym_RBRACE] = ACTIONS(652), + [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(724), + [anon_sym_while] = ACTIONS(660), + [anon_sym_do] = ACTIONS(660), + [anon_sym_for] = ACTIONS(660), + [sym_break_statement] = ACTIONS(660), + [sym_continue_statement] = ACTIONS(660), + [anon_sym_delete] = ACTIONS(660), + [anon_sym_exit] = ACTIONS(660), + [anon_sym_return] = ACTIONS(660), + [anon_sym_switch] = ACTIONS(660), + [anon_sym_LBRACE] = ACTIONS(660), + [anon_sym_RBRACE] = ACTIONS(660), [anon_sym_getline] = ACTIONS(147), - [sym_next_statement] = ACTIONS(652), - [sym_nextfile_statement] = ACTIONS(652), - [anon_sym_print] = ACTIONS(652), - [anon_sym_LPAREN2] = ACTIONS(718), - [anon_sym_printf] = ACTIONS(652), - [anon_sym_GT] = ACTIONS(652), - [anon_sym_GT_GT] = ACTIONS(652), - [anon_sym_PIPE] = ACTIONS(652), - [anon_sym_PIPE_AMP] = ACTIONS(652), - [anon_sym_SLASH] = ACTIONS(720), + [sym_next_statement] = ACTIONS(660), + [sym_nextfile_statement] = ACTIONS(660), + [anon_sym_print] = ACTIONS(660), + [anon_sym_LPAREN2] = ACTIONS(726), + [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(728), [anon_sym_PLUS] = ACTIONS(155), [anon_sym_DASH] = ACTIONS(155), [anon_sym_BANG] = ACTIONS(155), - [anon_sym_PLUS_PLUS] = ACTIONS(722), - [anon_sym_DASH_DASH] = ACTIONS(722), - [anon_sym_DOLLAR] = ACTIONS(724), - [anon_sym_AT] = ACTIONS(726), + [anon_sym_PLUS_PLUS] = ACTIONS(730), + [anon_sym_DASH_DASH] = ACTIONS(730), + [anon_sym_DOLLAR] = ACTIONS(732), + [anon_sym_AT] = ACTIONS(734), [aux_sym_number_token1] = ACTIONS(165), [aux_sym_number_token2] = ACTIONS(165), - [anon_sym_DQUOTE] = ACTIONS(728), - [anon_sym_POUND] = ACTIONS(652), + [anon_sym_DQUOTE] = ACTIONS(736), + [anon_sym_POUND] = ACTIONS(660), }, [178] = { - [sym_identifier] = ACTIONS(634), - [anon_sym_COMMA] = ACTIONS(634), - [anon_sym_SEMI] = ACTIONS(634), - [anon_sym_LF] = ACTIONS(634), - [anon_sym_CR_LF] = ACTIONS(634), - [anon_sym_if] = ACTIONS(634), - [anon_sym_LPAREN] = ACTIONS(634), - [anon_sym_while] = ACTIONS(634), - [anon_sym_do] = ACTIONS(634), - [anon_sym_for] = ACTIONS(634), - [anon_sym_in] = ACTIONS(636), - [sym_break_statement] = ACTIONS(634), - [sym_continue_statement] = ACTIONS(634), - [anon_sym_delete] = ACTIONS(634), - [anon_sym_exit] = ACTIONS(634), - [anon_sym_return] = ACTIONS(634), - [anon_sym_switch] = ACTIONS(634), - [anon_sym_LBRACE] = ACTIONS(634), - [anon_sym_RBRACE] = ACTIONS(634), - [anon_sym_getline] = ACTIONS(634), - [anon_sym_LT] = ACTIONS(636), - [sym_next_statement] = ACTIONS(634), - [sym_nextfile_statement] = ACTIONS(634), - [anon_sym_print] = ACTIONS(634), - [anon_sym_LPAREN2] = ACTIONS(688), - [anon_sym_printf] = ACTIONS(634), - [anon_sym_GT] = ACTIONS(636), - [anon_sym_GT_GT] = ACTIONS(634), - [anon_sym_PIPE] = ACTIONS(636), - [anon_sym_PIPE_AMP] = ACTIONS(636), - [anon_sym_QMARK] = ACTIONS(636), - [anon_sym_CARET] = ACTIONS(636), - [anon_sym_STAR_STAR] = ACTIONS(636), - [anon_sym_STAR] = ACTIONS(636), - [anon_sym_SLASH] = ACTIONS(636), - [anon_sym_PERCENT] = ACTIONS(636), - [anon_sym_PLUS] = ACTIONS(636), - [anon_sym_DASH] = ACTIONS(636), - [anon_sym_LT_EQ] = ACTIONS(636), - [anon_sym_GT_EQ] = ACTIONS(636), - [anon_sym_EQ_EQ] = ACTIONS(636), - [anon_sym_BANG_EQ] = ACTIONS(636), - [anon_sym_TILDE] = ACTIONS(636), - [anon_sym_BANG_TILDE] = ACTIONS(636), - [anon_sym_AMP_AMP] = ACTIONS(636), - [anon_sym_PIPE_PIPE] = ACTIONS(636), - [anon_sym_BANG] = ACTIONS(634), - [anon_sym_PLUS_PLUS] = ACTIONS(640), - [anon_sym_DASH_DASH] = ACTIONS(640), - [anon_sym_EQ] = ACTIONS(708), - [anon_sym_PLUS_EQ] = ACTIONS(708), - [anon_sym_DASH_EQ] = ACTIONS(708), - [anon_sym_STAR_EQ] = ACTIONS(708), - [anon_sym_SLASH_EQ] = ACTIONS(708), - [anon_sym_PERCENT_EQ] = ACTIONS(708), - [anon_sym_CARET_EQ] = ACTIONS(708), - [anon_sym_DOLLAR] = ACTIONS(634), - [anon_sym_LBRACK] = ACTIONS(642), - [anon_sym_AT] = ACTIONS(634), - [anon_sym_COLON_COLON] = ACTIONS(644), - [aux_sym_number_token1] = ACTIONS(634), - [aux_sym_number_token2] = ACTIONS(634), - [anon_sym_DQUOTE] = ACTIONS(634), - [anon_sym_POUND] = ACTIONS(634), - [sym_concatenating_space] = ACTIONS(646), - [sym__if_else_separator] = ACTIONS(646), + [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(696), + [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(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(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), }, [179] = { - [sym_identifier] = ACTIONS(674), - [anon_sym_COMMA] = ACTIONS(674), - [anon_sym_SEMI] = ACTIONS(674), - [anon_sym_LF] = ACTIONS(674), - [anon_sym_CR_LF] = ACTIONS(674), - [anon_sym_if] = ACTIONS(674), - [anon_sym_LPAREN] = ACTIONS(674), - [anon_sym_while] = ACTIONS(674), - [anon_sym_do] = ACTIONS(674), - [anon_sym_for] = ACTIONS(674), - [anon_sym_in] = ACTIONS(674), - [sym_break_statement] = ACTIONS(674), - [sym_continue_statement] = ACTIONS(674), - [anon_sym_delete] = ACTIONS(674), - [anon_sym_exit] = ACTIONS(674), - [anon_sym_return] = ACTIONS(674), - [anon_sym_switch] = ACTIONS(674), - [anon_sym_LBRACE] = ACTIONS(674), - [anon_sym_RBRACE] = ACTIONS(674), - [anon_sym_case] = ACTIONS(674), - [anon_sym_default] = ACTIONS(674), - [anon_sym_getline] = ACTIONS(674), - [anon_sym_LT] = ACTIONS(674), - [sym_next_statement] = ACTIONS(674), - [sym_nextfile_statement] = ACTIONS(674), - [anon_sym_print] = ACTIONS(674), - [anon_sym_printf] = ACTIONS(674), - [anon_sym_GT] = ACTIONS(674), - [anon_sym_GT_GT] = ACTIONS(674), - [anon_sym_PIPE] = ACTIONS(674), - [anon_sym_PIPE_AMP] = ACTIONS(674), - [anon_sym_QMARK] = ACTIONS(674), - [anon_sym_CARET] = ACTIONS(674), - [anon_sym_STAR_STAR] = ACTIONS(674), - [anon_sym_STAR] = ACTIONS(674), - [anon_sym_SLASH] = ACTIONS(674), - [anon_sym_PERCENT] = ACTIONS(674), - [anon_sym_PLUS] = ACTIONS(674), - [anon_sym_DASH] = ACTIONS(674), - [anon_sym_LT_EQ] = ACTIONS(674), - [anon_sym_GT_EQ] = ACTIONS(674), - [anon_sym_EQ_EQ] = ACTIONS(674), - [anon_sym_BANG_EQ] = ACTIONS(674), - [anon_sym_TILDE] = ACTIONS(674), - [anon_sym_BANG_TILDE] = ACTIONS(674), - [anon_sym_AMP_AMP] = ACTIONS(674), - [anon_sym_PIPE_PIPE] = ACTIONS(674), - [anon_sym_BANG] = ACTIONS(674), - [anon_sym_PLUS_PLUS] = ACTIONS(674), - [anon_sym_DASH_DASH] = ACTIONS(674), - [anon_sym_EQ] = ACTIONS(674), - [anon_sym_PLUS_EQ] = ACTIONS(674), - [anon_sym_DASH_EQ] = ACTIONS(674), - [anon_sym_STAR_EQ] = ACTIONS(674), - [anon_sym_SLASH_EQ] = ACTIONS(674), - [anon_sym_PERCENT_EQ] = ACTIONS(674), - [anon_sym_CARET_EQ] = ACTIONS(674), - [anon_sym_DOLLAR] = ACTIONS(674), - [anon_sym_LBRACK] = ACTIONS(642), - [anon_sym_AT] = ACTIONS(674), - [aux_sym_number_token1] = ACTIONS(674), - [aux_sym_number_token2] = ACTIONS(674), - [anon_sym_DQUOTE] = ACTIONS(674), - [anon_sym_POUND] = ACTIONS(674), - [sym_concatenating_space] = ACTIONS(676), - [sym__if_else_separator] = ACTIONS(676), + [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), }, [180] = { - [sym_identifier] = ACTIONS(670), - [anon_sym_COMMA] = ACTIONS(670), - [anon_sym_SEMI] = ACTIONS(670), - [anon_sym_LF] = ACTIONS(670), - [anon_sym_CR_LF] = ACTIONS(670), - [anon_sym_if] = ACTIONS(670), - [anon_sym_LPAREN] = ACTIONS(670), - [anon_sym_while] = ACTIONS(670), - [anon_sym_do] = ACTIONS(670), - [anon_sym_for] = ACTIONS(670), - [anon_sym_in] = ACTIONS(670), - [sym_break_statement] = ACTIONS(670), - [sym_continue_statement] = ACTIONS(670), - [anon_sym_delete] = ACTIONS(670), - [anon_sym_exit] = ACTIONS(670), - [anon_sym_return] = ACTIONS(670), - [anon_sym_switch] = ACTIONS(670), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_RBRACE] = ACTIONS(670), - [anon_sym_case] = ACTIONS(670), - [anon_sym_default] = ACTIONS(670), - [anon_sym_getline] = ACTIONS(670), - [anon_sym_LT] = ACTIONS(670), - [sym_next_statement] = ACTIONS(670), - [sym_nextfile_statement] = ACTIONS(670), - [anon_sym_print] = ACTIONS(670), - [anon_sym_printf] = ACTIONS(670), - [anon_sym_GT] = ACTIONS(670), - [anon_sym_GT_GT] = ACTIONS(670), - [anon_sym_PIPE] = ACTIONS(670), - [anon_sym_PIPE_AMP] = ACTIONS(670), - [anon_sym_QMARK] = ACTIONS(670), - [anon_sym_CARET] = ACTIONS(670), - [anon_sym_STAR_STAR] = ACTIONS(670), - [anon_sym_STAR] = ACTIONS(670), - [anon_sym_SLASH] = ACTIONS(670), - [anon_sym_PERCENT] = ACTIONS(670), - [anon_sym_PLUS] = ACTIONS(670), - [anon_sym_DASH] = ACTIONS(670), - [anon_sym_LT_EQ] = ACTIONS(670), - [anon_sym_GT_EQ] = ACTIONS(670), - [anon_sym_EQ_EQ] = ACTIONS(670), - [anon_sym_BANG_EQ] = ACTIONS(670), - [anon_sym_TILDE] = ACTIONS(670), - [anon_sym_BANG_TILDE] = ACTIONS(670), - [anon_sym_AMP_AMP] = ACTIONS(670), - [anon_sym_PIPE_PIPE] = ACTIONS(670), - [anon_sym_BANG] = ACTIONS(670), - [anon_sym_PLUS_PLUS] = ACTIONS(670), - [anon_sym_DASH_DASH] = ACTIONS(670), - [anon_sym_EQ] = ACTIONS(670), - [anon_sym_PLUS_EQ] = ACTIONS(670), - [anon_sym_DASH_EQ] = ACTIONS(670), - [anon_sym_STAR_EQ] = ACTIONS(670), - [anon_sym_SLASH_EQ] = ACTIONS(670), - [anon_sym_PERCENT_EQ] = ACTIONS(670), - [anon_sym_CARET_EQ] = ACTIONS(670), - [anon_sym_DOLLAR] = ACTIONS(670), - [anon_sym_LBRACK] = ACTIONS(684), - [anon_sym_AT] = ACTIONS(670), - [anon_sym_COLON_COLON] = ACTIONS(644), - [aux_sym_number_token1] = ACTIONS(670), - [aux_sym_number_token2] = ACTIONS(670), - [anon_sym_DQUOTE] = ACTIONS(670), - [anon_sym_POUND] = ACTIONS(670), - [sym_concatenating_space] = ACTIONS(672), - }, - [181] = { [sym_identifier] = ACTIONS(678), [anon_sym_COMMA] = ACTIONS(678), [anon_sym_SEMI] = ACTIONS(678), @@ -21197,7 +21135,6 @@ 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), @@ -21230,283 +21167,218 @@ 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(678), + [anon_sym_LBRACK] = ACTIONS(692), [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), }, - [182] = { - [sym_identifier] = ACTIONS(634), - [anon_sym_COMMA] = ACTIONS(634), - [anon_sym_SEMI] = ACTIONS(634), - [anon_sym_LF] = ACTIONS(634), - [anon_sym_CR_LF] = ACTIONS(634), - [anon_sym_if] = ACTIONS(634), - [anon_sym_LPAREN] = ACTIONS(634), - [anon_sym_while] = ACTIONS(634), - [anon_sym_do] = ACTIONS(634), - [anon_sym_for] = ACTIONS(634), - [anon_sym_in] = ACTIONS(636), - [sym_break_statement] = ACTIONS(634), - [sym_continue_statement] = ACTIONS(634), - [anon_sym_delete] = ACTIONS(634), - [anon_sym_exit] = ACTIONS(634), - [anon_sym_return] = ACTIONS(634), - [anon_sym_switch] = ACTIONS(634), - [anon_sym_LBRACE] = ACTIONS(634), - [anon_sym_RBRACE] = ACTIONS(634), - [anon_sym_getline] = ACTIONS(634), - [anon_sym_LT] = ACTIONS(636), - [sym_next_statement] = ACTIONS(634), - [sym_nextfile_statement] = ACTIONS(634), - [anon_sym_print] = ACTIONS(634), + [181] = { + [sym_identifier] = ACTIONS(686), + [anon_sym_COMMA] = ACTIONS(686), + [anon_sym_SEMI] = ACTIONS(686), + [anon_sym_LF] = ACTIONS(686), + [anon_sym_CR_LF] = ACTIONS(686), + [anon_sym_if] = ACTIONS(686), + [anon_sym_LPAREN] = ACTIONS(686), + [anon_sym_while] = ACTIONS(686), + [anon_sym_do] = ACTIONS(686), + [anon_sym_for] = ACTIONS(686), + [anon_sym_in] = ACTIONS(686), + [sym_break_statement] = ACTIONS(686), + [sym_continue_statement] = ACTIONS(686), + [anon_sym_delete] = ACTIONS(686), + [anon_sym_exit] = ACTIONS(686), + [anon_sym_return] = ACTIONS(686), + [anon_sym_switch] = ACTIONS(686), + [anon_sym_LBRACE] = ACTIONS(686), + [anon_sym_RBRACE] = ACTIONS(686), + [anon_sym_case] = ACTIONS(686), + [anon_sym_default] = ACTIONS(686), + [anon_sym_getline] = ACTIONS(686), + [anon_sym_LT] = ACTIONS(686), + [sym_next_statement] = ACTIONS(686), + [sym_nextfile_statement] = ACTIONS(686), + [anon_sym_print] = ACTIONS(686), [anon_sym_LPAREN2] = ACTIONS(688), - [anon_sym_printf] = ACTIONS(634), - [anon_sym_GT] = ACTIONS(636), - [anon_sym_GT_GT] = ACTIONS(634), - [anon_sym_PIPE] = ACTIONS(636), - [anon_sym_PIPE_AMP] = ACTIONS(636), - [anon_sym_QMARK] = ACTIONS(636), - [anon_sym_CARET] = ACTIONS(636), - [anon_sym_STAR_STAR] = ACTIONS(636), - [anon_sym_STAR] = ACTIONS(636), - [anon_sym_SLASH] = ACTIONS(636), - [anon_sym_PERCENT] = ACTIONS(636), - [anon_sym_PLUS] = ACTIONS(636), - [anon_sym_DASH] = ACTIONS(636), - [anon_sym_LT_EQ] = ACTIONS(636), - [anon_sym_GT_EQ] = ACTIONS(636), - [anon_sym_EQ_EQ] = ACTIONS(636), - [anon_sym_BANG_EQ] = ACTIONS(636), - [anon_sym_TILDE] = ACTIONS(636), - [anon_sym_BANG_TILDE] = ACTIONS(636), - [anon_sym_AMP_AMP] = ACTIONS(636), - [anon_sym_PIPE_PIPE] = ACTIONS(636), - [anon_sym_BANG] = ACTIONS(634), - [anon_sym_PLUS_PLUS] = ACTIONS(640), - [anon_sym_DASH_DASH] = ACTIONS(640), - [anon_sym_EQ] = ACTIONS(708), - [anon_sym_PLUS_EQ] = ACTIONS(708), - [anon_sym_DASH_EQ] = ACTIONS(708), - [anon_sym_STAR_EQ] = ACTIONS(708), - [anon_sym_SLASH_EQ] = ACTIONS(708), - [anon_sym_PERCENT_EQ] = ACTIONS(708), - [anon_sym_CARET_EQ] = ACTIONS(708), - [anon_sym_DOLLAR] = ACTIONS(634), - [anon_sym_LBRACK] = ACTIONS(642), - [anon_sym_AT] = ACTIONS(634), - [aux_sym_number_token1] = ACTIONS(634), - [aux_sym_number_token2] = ACTIONS(634), - [anon_sym_DQUOTE] = ACTIONS(634), - [anon_sym_POUND] = ACTIONS(634), - [sym_concatenating_space] = ACTIONS(646), - [sym__if_else_separator] = ACTIONS(646), + [anon_sym_printf] = ACTIONS(686), + [anon_sym_GT] = ACTIONS(686), + [anon_sym_GT_GT] = ACTIONS(686), + [anon_sym_PIPE] = ACTIONS(686), + [anon_sym_PIPE_AMP] = ACTIONS(686), + [anon_sym_QMARK] = ACTIONS(686), + [anon_sym_CARET] = ACTIONS(686), + [anon_sym_STAR_STAR] = ACTIONS(686), + [anon_sym_STAR] = ACTIONS(686), + [anon_sym_SLASH] = ACTIONS(686), + [anon_sym_PERCENT] = ACTIONS(686), + [anon_sym_PLUS] = ACTIONS(686), + [anon_sym_DASH] = ACTIONS(686), + [anon_sym_LT_EQ] = ACTIONS(686), + [anon_sym_GT_EQ] = ACTIONS(686), + [anon_sym_EQ_EQ] = ACTIONS(686), + [anon_sym_BANG_EQ] = ACTIONS(686), + [anon_sym_TILDE] = ACTIONS(686), + [anon_sym_BANG_TILDE] = ACTIONS(686), + [anon_sym_AMP_AMP] = ACTIONS(686), + [anon_sym_PIPE_PIPE] = ACTIONS(686), + [anon_sym_BANG] = ACTIONS(686), + [anon_sym_PLUS_PLUS] = ACTIONS(686), + [anon_sym_DASH_DASH] = ACTIONS(686), + [anon_sym_EQ] = ACTIONS(686), + [anon_sym_PLUS_EQ] = ACTIONS(686), + [anon_sym_DASH_EQ] = ACTIONS(686), + [anon_sym_STAR_EQ] = ACTIONS(686), + [anon_sym_SLASH_EQ] = ACTIONS(686), + [anon_sym_PERCENT_EQ] = ACTIONS(686), + [anon_sym_CARET_EQ] = ACTIONS(686), + [anon_sym_DOLLAR] = ACTIONS(686), + [anon_sym_LBRACK] = ACTIONS(686), + [anon_sym_AT] = ACTIONS(686), + [aux_sym_number_token1] = ACTIONS(686), + [aux_sym_number_token2] = ACTIONS(686), + [anon_sym_DQUOTE] = ACTIONS(686), + [anon_sym_POUND] = ACTIONS(686), + [sym_concatenating_space] = ACTIONS(688), + }, + [182] = { + [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(696), + [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(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(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), }, [183] = { - [sym_identifier] = ACTIONS(634), - [anon_sym_COMMA] = ACTIONS(634), - [anon_sym_SEMI] = ACTIONS(634), - [anon_sym_LF] = ACTIONS(634), - [anon_sym_CR_LF] = ACTIONS(634), - [anon_sym_if] = ACTIONS(634), - [anon_sym_LPAREN] = ACTIONS(634), - [anon_sym_while] = ACTIONS(634), - [anon_sym_do] = ACTIONS(634), - [anon_sym_for] = ACTIONS(634), - [anon_sym_in] = ACTIONS(636), - [sym_break_statement] = ACTIONS(634), - [sym_continue_statement] = ACTIONS(634), - [anon_sym_delete] = ACTIONS(634), - [anon_sym_exit] = ACTIONS(634), - [anon_sym_return] = ACTIONS(634), - [anon_sym_switch] = ACTIONS(634), - [anon_sym_LBRACE] = ACTIONS(634), - [anon_sym_RBRACE] = ACTIONS(634), - [anon_sym_getline] = ACTIONS(634), - [anon_sym_LT] = ACTIONS(636), - [sym_next_statement] = ACTIONS(634), - [sym_nextfile_statement] = ACTIONS(634), - [anon_sym_print] = ACTIONS(634), - [anon_sym_LPAREN2] = ACTIONS(730), - [anon_sym_printf] = ACTIONS(634), - [anon_sym_GT] = ACTIONS(636), - [anon_sym_GT_GT] = ACTIONS(634), - [anon_sym_PIPE] = ACTIONS(636), - [anon_sym_PIPE_AMP] = ACTIONS(636), - [anon_sym_QMARK] = ACTIONS(636), - [anon_sym_CARET] = ACTIONS(636), - [anon_sym_STAR_STAR] = ACTIONS(636), - [anon_sym_STAR] = ACTIONS(636), - [anon_sym_SLASH] = ACTIONS(636), - [anon_sym_PERCENT] = ACTIONS(636), - [anon_sym_PLUS] = ACTIONS(636), - [anon_sym_DASH] = ACTIONS(636), - [anon_sym_LT_EQ] = ACTIONS(636), - [anon_sym_GT_EQ] = ACTIONS(636), - [anon_sym_EQ_EQ] = ACTIONS(636), - [anon_sym_BANG_EQ] = ACTIONS(636), - [anon_sym_TILDE] = ACTIONS(636), - [anon_sym_BANG_TILDE] = ACTIONS(636), - [anon_sym_AMP_AMP] = ACTIONS(636), - [anon_sym_PIPE_PIPE] = ACTIONS(636), - [anon_sym_BANG] = ACTIONS(634), - [anon_sym_PLUS_PLUS] = ACTIONS(640), - [anon_sym_DASH_DASH] = ACTIONS(640), - [anon_sym_EQ] = ACTIONS(708), - [anon_sym_PLUS_EQ] = ACTIONS(708), - [anon_sym_DASH_EQ] = ACTIONS(708), - [anon_sym_STAR_EQ] = ACTIONS(708), - [anon_sym_SLASH_EQ] = ACTIONS(708), - [anon_sym_PERCENT_EQ] = ACTIONS(708), - [anon_sym_CARET_EQ] = ACTIONS(708), - [anon_sym_DOLLAR] = ACTIONS(634), - [anon_sym_LBRACK] = ACTIONS(684), - [anon_sym_AT] = ACTIONS(634), - [anon_sym_COLON_COLON] = ACTIONS(644), - [aux_sym_number_token1] = ACTIONS(634), - [aux_sym_number_token2] = ACTIONS(634), - [anon_sym_DQUOTE] = ACTIONS(634), - [anon_sym_POUND] = ACTIONS(634), - [sym_concatenating_space] = ACTIONS(646), + [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(738), + [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(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(692), + [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), }, [184] = { - [sym_identifier] = ACTIONS(732), - [anon_sym_COMMA] = ACTIONS(732), - [anon_sym_SEMI] = ACTIONS(732), - [anon_sym_LF] = ACTIONS(732), - [anon_sym_CR_LF] = ACTIONS(732), - [anon_sym_if] = ACTIONS(732), - [anon_sym_LPAREN] = ACTIONS(732), - [anon_sym_while] = ACTIONS(732), - [anon_sym_do] = ACTIONS(732), - [anon_sym_for] = ACTIONS(732), - [anon_sym_in] = ACTIONS(732), - [sym_break_statement] = ACTIONS(732), - [sym_continue_statement] = ACTIONS(732), - [anon_sym_delete] = ACTIONS(732), - [anon_sym_exit] = ACTIONS(732), - [anon_sym_return] = ACTIONS(732), - [anon_sym_switch] = ACTIONS(732), - [anon_sym_LBRACE] = ACTIONS(732), - [anon_sym_RBRACE] = ACTIONS(732), - [anon_sym_case] = ACTIONS(732), - [anon_sym_default] = ACTIONS(732), - [anon_sym_getline] = ACTIONS(732), - [anon_sym_LT] = ACTIONS(732), - [sym_next_statement] = ACTIONS(732), - [sym_nextfile_statement] = ACTIONS(732), - [anon_sym_print] = ACTIONS(732), - [anon_sym_printf] = ACTIONS(732), - [anon_sym_GT] = ACTIONS(732), - [anon_sym_GT_GT] = ACTIONS(732), - [anon_sym_PIPE] = ACTIONS(732), - [anon_sym_PIPE_AMP] = ACTIONS(732), - [anon_sym_QMARK] = ACTIONS(732), - [anon_sym_CARET] = ACTIONS(732), - [anon_sym_STAR_STAR] = ACTIONS(732), - [anon_sym_STAR] = ACTIONS(732), - [anon_sym_SLASH] = ACTIONS(732), - [anon_sym_PERCENT] = ACTIONS(732), - [anon_sym_PLUS] = ACTIONS(732), - [anon_sym_DASH] = ACTIONS(732), - [anon_sym_LT_EQ] = ACTIONS(732), - [anon_sym_GT_EQ] = ACTIONS(732), - [anon_sym_EQ_EQ] = ACTIONS(732), - [anon_sym_BANG_EQ] = ACTIONS(732), - [anon_sym_TILDE] = ACTIONS(732), - [anon_sym_BANG_TILDE] = ACTIONS(732), - [anon_sym_AMP_AMP] = ACTIONS(732), - [anon_sym_PIPE_PIPE] = ACTIONS(732), - [anon_sym_BANG] = ACTIONS(732), - [anon_sym_PLUS_PLUS] = ACTIONS(732), - [anon_sym_DASH_DASH] = ACTIONS(732), - [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(732), - [anon_sym_AT] = ACTIONS(732), - [aux_sym_number_token1] = ACTIONS(732), - [aux_sym_number_token2] = ACTIONS(732), - [anon_sym_DQUOTE] = ACTIONS(732), - [anon_sym_POUND] = ACTIONS(732), - [sym_concatenating_space] = ACTIONS(734), - [sym__if_else_separator] = ACTIONS(734), - }, - [185] = { - [sym_identifier] = ACTIONS(736), - [anon_sym_COMMA] = ACTIONS(736), - [anon_sym_SEMI] = ACTIONS(736), - [anon_sym_LF] = ACTIONS(736), - [anon_sym_CR_LF] = ACTIONS(736), - [anon_sym_if] = ACTIONS(736), - [anon_sym_LPAREN] = ACTIONS(736), - [anon_sym_while] = ACTIONS(736), - [anon_sym_do] = ACTIONS(736), - [anon_sym_for] = ACTIONS(736), - [anon_sym_in] = ACTIONS(736), - [sym_break_statement] = ACTIONS(736), - [sym_continue_statement] = ACTIONS(736), - [anon_sym_delete] = ACTIONS(736), - [anon_sym_exit] = ACTIONS(736), - [anon_sym_return] = ACTIONS(736), - [anon_sym_switch] = ACTIONS(736), - [anon_sym_LBRACE] = ACTIONS(736), - [anon_sym_RBRACE] = ACTIONS(736), - [anon_sym_case] = ACTIONS(736), - [anon_sym_default] = ACTIONS(736), - [anon_sym_getline] = ACTIONS(736), - [anon_sym_LT] = ACTIONS(736), - [sym_next_statement] = ACTIONS(736), - [sym_nextfile_statement] = ACTIONS(736), - [anon_sym_print] = ACTIONS(736), - [anon_sym_printf] = ACTIONS(736), - [anon_sym_GT] = ACTIONS(736), - [anon_sym_GT_GT] = ACTIONS(736), - [anon_sym_PIPE] = ACTIONS(736), - [anon_sym_PIPE_AMP] = ACTIONS(736), - [anon_sym_QMARK] = ACTIONS(736), - [anon_sym_CARET] = ACTIONS(736), - [anon_sym_STAR_STAR] = ACTIONS(736), - [anon_sym_STAR] = ACTIONS(736), - [anon_sym_SLASH] = ACTIONS(736), - [anon_sym_PERCENT] = ACTIONS(736), - [anon_sym_PLUS] = ACTIONS(736), - [anon_sym_DASH] = ACTIONS(736), - [anon_sym_LT_EQ] = ACTIONS(736), - [anon_sym_GT_EQ] = ACTIONS(736), - [anon_sym_EQ_EQ] = ACTIONS(736), - [anon_sym_BANG_EQ] = ACTIONS(736), - [anon_sym_TILDE] = ACTIONS(736), - [anon_sym_BANG_TILDE] = ACTIONS(736), - [anon_sym_AMP_AMP] = ACTIONS(736), - [anon_sym_PIPE_PIPE] = ACTIONS(736), - [anon_sym_BANG] = ACTIONS(736), - [anon_sym_PLUS_PLUS] = ACTIONS(736), - [anon_sym_DASH_DASH] = ACTIONS(736), - [anon_sym_EQ] = ACTIONS(736), - [anon_sym_PLUS_EQ] = ACTIONS(736), - [anon_sym_DASH_EQ] = ACTIONS(736), - [anon_sym_STAR_EQ] = ACTIONS(736), - [anon_sym_SLASH_EQ] = ACTIONS(736), - [anon_sym_PERCENT_EQ] = ACTIONS(736), - [anon_sym_CARET_EQ] = ACTIONS(736), - [anon_sym_DOLLAR] = ACTIONS(736), - [anon_sym_AT] = ACTIONS(736), - [aux_sym_number_token1] = ACTIONS(736), - [aux_sym_number_token2] = ACTIONS(736), - [anon_sym_DQUOTE] = ACTIONS(736), - [anon_sym_POUND] = ACTIONS(736), - [sym_concatenating_space] = ACTIONS(738), - [sym__if_else_separator] = ACTIONS(738), - }, - [186] = { [sym_identifier] = ACTIONS(740), [anon_sym_COMMA] = ACTIONS(740), [anon_sym_SEMI] = ACTIONS(740), @@ -21573,610 +21445,543 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_concatenating_space] = ACTIONS(742), [sym__if_else_separator] = ACTIONS(742), }, + [185] = { + [sym_identifier] = ACTIONS(744), + [anon_sym_COMMA] = ACTIONS(744), + [anon_sym_SEMI] = ACTIONS(744), + [anon_sym_LF] = ACTIONS(744), + [anon_sym_CR_LF] = ACTIONS(744), + [anon_sym_if] = ACTIONS(744), + [anon_sym_LPAREN] = ACTIONS(744), + [anon_sym_while] = ACTIONS(744), + [anon_sym_do] = ACTIONS(744), + [anon_sym_for] = ACTIONS(744), + [anon_sym_in] = ACTIONS(744), + [sym_break_statement] = ACTIONS(744), + [sym_continue_statement] = ACTIONS(744), + [anon_sym_delete] = ACTIONS(744), + [anon_sym_exit] = ACTIONS(744), + [anon_sym_return] = ACTIONS(744), + [anon_sym_switch] = ACTIONS(744), + [anon_sym_LBRACE] = ACTIONS(744), + [anon_sym_RBRACE] = ACTIONS(744), + [anon_sym_case] = ACTIONS(744), + [anon_sym_default] = ACTIONS(744), + [anon_sym_getline] = ACTIONS(744), + [anon_sym_LT] = ACTIONS(744), + [sym_next_statement] = ACTIONS(744), + [sym_nextfile_statement] = ACTIONS(744), + [anon_sym_print] = ACTIONS(744), + [anon_sym_printf] = ACTIONS(744), + [anon_sym_GT] = ACTIONS(744), + [anon_sym_GT_GT] = ACTIONS(744), + [anon_sym_PIPE] = ACTIONS(744), + [anon_sym_PIPE_AMP] = ACTIONS(744), + [anon_sym_QMARK] = ACTIONS(744), + [anon_sym_CARET] = ACTIONS(744), + [anon_sym_STAR_STAR] = ACTIONS(744), + [anon_sym_STAR] = ACTIONS(744), + [anon_sym_SLASH] = ACTIONS(744), + [anon_sym_PERCENT] = ACTIONS(744), + [anon_sym_PLUS] = ACTIONS(744), + [anon_sym_DASH] = ACTIONS(744), + [anon_sym_LT_EQ] = ACTIONS(744), + [anon_sym_GT_EQ] = ACTIONS(744), + [anon_sym_EQ_EQ] = ACTIONS(744), + [anon_sym_BANG_EQ] = ACTIONS(744), + [anon_sym_TILDE] = ACTIONS(744), + [anon_sym_BANG_TILDE] = ACTIONS(744), + [anon_sym_AMP_AMP] = ACTIONS(744), + [anon_sym_PIPE_PIPE] = ACTIONS(744), + [anon_sym_BANG] = ACTIONS(744), + [anon_sym_PLUS_PLUS] = ACTIONS(744), + [anon_sym_DASH_DASH] = ACTIONS(744), + [anon_sym_EQ] = ACTIONS(744), + [anon_sym_PLUS_EQ] = ACTIONS(744), + [anon_sym_DASH_EQ] = ACTIONS(744), + [anon_sym_STAR_EQ] = ACTIONS(744), + [anon_sym_SLASH_EQ] = ACTIONS(744), + [anon_sym_PERCENT_EQ] = ACTIONS(744), + [anon_sym_CARET_EQ] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(744), + [anon_sym_AT] = ACTIONS(744), + [aux_sym_number_token1] = ACTIONS(744), + [aux_sym_number_token2] = ACTIONS(744), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_POUND] = ACTIONS(744), + [sym_concatenating_space] = ACTIONS(746), + [sym__if_else_separator] = ACTIONS(746), + }, + [186] = { + [sym_identifier] = ACTIONS(748), + [anon_sym_COMMA] = ACTIONS(748), + [anon_sym_SEMI] = ACTIONS(748), + [anon_sym_LF] = ACTIONS(748), + [anon_sym_CR_LF] = ACTIONS(748), + [anon_sym_if] = ACTIONS(748), + [anon_sym_LPAREN] = ACTIONS(748), + [anon_sym_while] = ACTIONS(748), + [anon_sym_do] = ACTIONS(748), + [anon_sym_for] = ACTIONS(748), + [anon_sym_in] = ACTIONS(748), + [sym_break_statement] = ACTIONS(748), + [sym_continue_statement] = ACTIONS(748), + [anon_sym_delete] = ACTIONS(748), + [anon_sym_exit] = ACTIONS(748), + [anon_sym_return] = ACTIONS(748), + [anon_sym_switch] = ACTIONS(748), + [anon_sym_LBRACE] = ACTIONS(748), + [anon_sym_RBRACE] = ACTIONS(748), + [anon_sym_case] = ACTIONS(748), + [anon_sym_default] = ACTIONS(748), + [anon_sym_getline] = ACTIONS(748), + [anon_sym_LT] = ACTIONS(748), + [sym_next_statement] = ACTIONS(748), + [sym_nextfile_statement] = ACTIONS(748), + [anon_sym_print] = ACTIONS(748), + [anon_sym_printf] = ACTIONS(748), + [anon_sym_GT] = ACTIONS(748), + [anon_sym_GT_GT] = ACTIONS(748), + [anon_sym_PIPE] = ACTIONS(748), + [anon_sym_PIPE_AMP] = ACTIONS(748), + [anon_sym_QMARK] = ACTIONS(748), + [anon_sym_CARET] = ACTIONS(748), + [anon_sym_STAR_STAR] = ACTIONS(748), + [anon_sym_STAR] = ACTIONS(748), + [anon_sym_SLASH] = ACTIONS(748), + [anon_sym_PERCENT] = ACTIONS(748), + [anon_sym_PLUS] = ACTIONS(748), + [anon_sym_DASH] = ACTIONS(748), + [anon_sym_LT_EQ] = ACTIONS(748), + [anon_sym_GT_EQ] = ACTIONS(748), + [anon_sym_EQ_EQ] = ACTIONS(748), + [anon_sym_BANG_EQ] = ACTIONS(748), + [anon_sym_TILDE] = ACTIONS(748), + [anon_sym_BANG_TILDE] = ACTIONS(748), + [anon_sym_AMP_AMP] = ACTIONS(748), + [anon_sym_PIPE_PIPE] = ACTIONS(748), + [anon_sym_BANG] = ACTIONS(748), + [anon_sym_PLUS_PLUS] = ACTIONS(748), + [anon_sym_DASH_DASH] = ACTIONS(748), + [anon_sym_EQ] = ACTIONS(748), + [anon_sym_PLUS_EQ] = ACTIONS(748), + [anon_sym_DASH_EQ] = ACTIONS(748), + [anon_sym_STAR_EQ] = ACTIONS(748), + [anon_sym_SLASH_EQ] = ACTIONS(748), + [anon_sym_PERCENT_EQ] = ACTIONS(748), + [anon_sym_CARET_EQ] = ACTIONS(748), + [anon_sym_DOLLAR] = ACTIONS(748), + [anon_sym_AT] = ACTIONS(748), + [aux_sym_number_token1] = ACTIONS(748), + [aux_sym_number_token2] = ACTIONS(748), + [anon_sym_DQUOTE] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(748), + [sym_concatenating_space] = ACTIONS(750), + [sym__if_else_separator] = ACTIONS(750), + }, [187] = { - [sym_identifier] = ACTIONS(634), - [anon_sym_COMMA] = ACTIONS(634), - [anon_sym_SEMI] = ACTIONS(634), - [anon_sym_LF] = ACTIONS(634), - [anon_sym_CR_LF] = ACTIONS(634), - [anon_sym_if] = ACTIONS(634), - [anon_sym_LPAREN] = ACTIONS(634), - [anon_sym_while] = ACTIONS(634), - [anon_sym_do] = ACTIONS(634), - [anon_sym_for] = ACTIONS(634), - [anon_sym_in] = ACTIONS(636), - [sym_break_statement] = ACTIONS(634), - [sym_continue_statement] = ACTIONS(634), - [anon_sym_delete] = ACTIONS(634), - [anon_sym_exit] = ACTIONS(634), - [anon_sym_return] = ACTIONS(634), - [anon_sym_switch] = ACTIONS(634), - [anon_sym_LBRACE] = ACTIONS(634), - [anon_sym_RBRACE] = ACTIONS(634), - [anon_sym_case] = ACTIONS(634), - [anon_sym_default] = ACTIONS(634), - [anon_sym_getline] = ACTIONS(634), - [anon_sym_LT] = ACTIONS(636), - [sym_next_statement] = ACTIONS(634), - [sym_nextfile_statement] = ACTIONS(634), - [anon_sym_print] = ACTIONS(634), - [anon_sym_printf] = ACTIONS(634), - [anon_sym_GT] = ACTIONS(636), - [anon_sym_GT_GT] = ACTIONS(634), - [anon_sym_PIPE] = ACTIONS(636), - [anon_sym_PIPE_AMP] = ACTIONS(636), - [anon_sym_QMARK] = ACTIONS(636), - [anon_sym_CARET] = ACTIONS(636), - [anon_sym_STAR_STAR] = ACTIONS(636), - [anon_sym_STAR] = ACTIONS(636), - [anon_sym_SLASH] = ACTIONS(636), - [anon_sym_PERCENT] = ACTIONS(636), - [anon_sym_PLUS] = ACTIONS(636), - [anon_sym_DASH] = ACTIONS(636), - [anon_sym_LT_EQ] = ACTIONS(636), - [anon_sym_GT_EQ] = ACTIONS(636), - [anon_sym_EQ_EQ] = ACTIONS(636), - [anon_sym_BANG_EQ] = ACTIONS(636), - [anon_sym_TILDE] = ACTIONS(636), - [anon_sym_BANG_TILDE] = ACTIONS(636), - [anon_sym_AMP_AMP] = ACTIONS(636), - [anon_sym_PIPE_PIPE] = ACTIONS(636), - [anon_sym_BANG] = ACTIONS(634), - [anon_sym_PLUS_PLUS] = ACTIONS(634), - [anon_sym_DASH_DASH] = ACTIONS(634), - [anon_sym_EQ] = ACTIONS(634), - [anon_sym_PLUS_EQ] = ACTIONS(634), - [anon_sym_DASH_EQ] = ACTIONS(634), - [anon_sym_STAR_EQ] = ACTIONS(634), - [anon_sym_SLASH_EQ] = ACTIONS(634), - [anon_sym_PERCENT_EQ] = ACTIONS(634), - [anon_sym_CARET_EQ] = ACTIONS(634), - [anon_sym_DOLLAR] = ACTIONS(634), - [anon_sym_AT] = ACTIONS(634), - [aux_sym_number_token1] = ACTIONS(634), - [aux_sym_number_token2] = ACTIONS(634), - [anon_sym_DQUOTE] = ACTIONS(634), - [anon_sym_POUND] = ACTIONS(634), - [sym_concatenating_space] = ACTIONS(646), - [sym__if_else_separator] = ACTIONS(646), + [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(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_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), }, [188] = { - [sym_identifier] = ACTIONS(634), - [anon_sym_COMMA] = ACTIONS(634), - [anon_sym_SEMI] = ACTIONS(634), - [anon_sym_LF] = ACTIONS(634), - [anon_sym_CR_LF] = ACTIONS(634), - [anon_sym_if] = ACTIONS(634), - [anon_sym_LPAREN] = ACTIONS(634), - [anon_sym_while] = ACTIONS(634), - [anon_sym_do] = ACTIONS(634), - [anon_sym_for] = ACTIONS(634), - [anon_sym_in] = ACTIONS(636), - [sym_break_statement] = ACTIONS(634), - [sym_continue_statement] = ACTIONS(634), - [anon_sym_delete] = ACTIONS(634), - [anon_sym_exit] = ACTIONS(634), - [anon_sym_return] = ACTIONS(634), - [anon_sym_switch] = ACTIONS(634), - [anon_sym_LBRACE] = ACTIONS(634), - [anon_sym_RBRACE] = ACTIONS(634), - [anon_sym_case] = ACTIONS(634), - [anon_sym_default] = ACTIONS(634), - [anon_sym_getline] = ACTIONS(634), - [anon_sym_LT] = ACTIONS(636), - [sym_next_statement] = ACTIONS(634), - [sym_nextfile_statement] = ACTIONS(634), - [anon_sym_print] = ACTIONS(634), - [anon_sym_printf] = ACTIONS(634), - [anon_sym_GT] = ACTIONS(636), - [anon_sym_GT_GT] = ACTIONS(634), - [anon_sym_PIPE] = ACTIONS(636), - [anon_sym_PIPE_AMP] = ACTIONS(636), - [anon_sym_QMARK] = ACTIONS(636), - [anon_sym_CARET] = ACTIONS(636), - [anon_sym_STAR_STAR] = ACTIONS(636), - [anon_sym_STAR] = ACTIONS(636), - [anon_sym_SLASH] = ACTIONS(636), - [anon_sym_PERCENT] = ACTIONS(636), - [anon_sym_PLUS] = ACTIONS(636), - [anon_sym_DASH] = ACTIONS(636), - [anon_sym_LT_EQ] = ACTIONS(636), - [anon_sym_GT_EQ] = ACTIONS(636), - [anon_sym_EQ_EQ] = ACTIONS(636), - [anon_sym_BANG_EQ] = ACTIONS(636), - [anon_sym_TILDE] = ACTIONS(636), - [anon_sym_BANG_TILDE] = ACTIONS(636), - [anon_sym_AMP_AMP] = ACTIONS(636), - [anon_sym_PIPE_PIPE] = ACTIONS(636), - [anon_sym_BANG] = ACTIONS(634), - [anon_sym_PLUS_PLUS] = ACTIONS(640), - [anon_sym_DASH_DASH] = ACTIONS(640), - [anon_sym_EQ] = ACTIONS(634), - [anon_sym_PLUS_EQ] = ACTIONS(634), - [anon_sym_DASH_EQ] = ACTIONS(634), - [anon_sym_STAR_EQ] = ACTIONS(634), - [anon_sym_SLASH_EQ] = ACTIONS(634), - [anon_sym_PERCENT_EQ] = ACTIONS(634), - [anon_sym_CARET_EQ] = ACTIONS(634), - [anon_sym_DOLLAR] = ACTIONS(634), - [anon_sym_AT] = ACTIONS(634), - [aux_sym_number_token1] = ACTIONS(634), - [aux_sym_number_token2] = ACTIONS(634), - [anon_sym_DQUOTE] = ACTIONS(634), - [anon_sym_POUND] = ACTIONS(634), - [sym_concatenating_space] = ACTIONS(646), - [sym__if_else_separator] = ACTIONS(646), + [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), }, [189] = { - [sym_identifier] = ACTIONS(636), - [anon_sym_COMMA] = ACTIONS(636), - [anon_sym_SEMI] = ACTIONS(636), - [anon_sym_LF] = ACTIONS(636), - [anon_sym_CR_LF] = ACTIONS(636), - [anon_sym_if] = ACTIONS(636), - [anon_sym_LPAREN] = ACTIONS(636), - [anon_sym_while] = ACTIONS(636), - [anon_sym_do] = ACTIONS(636), - [anon_sym_for] = ACTIONS(636), - [anon_sym_in] = ACTIONS(636), - [sym_break_statement] = ACTIONS(636), - [sym_continue_statement] = ACTIONS(636), - [anon_sym_delete] = ACTIONS(636), - [anon_sym_exit] = ACTIONS(636), - [anon_sym_return] = ACTIONS(636), - [anon_sym_switch] = ACTIONS(636), - [anon_sym_LBRACE] = ACTIONS(636), - [anon_sym_RBRACE] = ACTIONS(636), - [anon_sym_getline] = ACTIONS(636), - [anon_sym_LT] = ACTIONS(636), - [sym_next_statement] = ACTIONS(636), - [sym_nextfile_statement] = ACTIONS(636), - [anon_sym_print] = ACTIONS(636), - [anon_sym_LPAREN2] = ACTIONS(688), - [anon_sym_printf] = ACTIONS(636), - [anon_sym_GT] = ACTIONS(636), - [anon_sym_GT_GT] = ACTIONS(636), - [anon_sym_PIPE] = ACTIONS(636), - [anon_sym_PIPE_AMP] = ACTIONS(636), - [anon_sym_QMARK] = ACTIONS(636), - [anon_sym_CARET] = ACTIONS(636), - [anon_sym_STAR_STAR] = ACTIONS(636), - [anon_sym_STAR] = ACTIONS(636), - [anon_sym_SLASH] = ACTIONS(636), - [anon_sym_PERCENT] = ACTIONS(636), - [anon_sym_PLUS] = ACTIONS(636), - [anon_sym_DASH] = ACTIONS(636), - [anon_sym_LT_EQ] = ACTIONS(636), - [anon_sym_GT_EQ] = ACTIONS(636), - [anon_sym_EQ_EQ] = ACTIONS(636), - [anon_sym_BANG_EQ] = ACTIONS(636), - [anon_sym_TILDE] = ACTIONS(636), - [anon_sym_BANG_TILDE] = ACTIONS(636), - [anon_sym_AMP_AMP] = ACTIONS(636), - [anon_sym_PIPE_PIPE] = ACTIONS(636), - [anon_sym_BANG] = ACTIONS(636), - [anon_sym_PLUS_PLUS] = ACTIONS(690), - [anon_sym_DASH_DASH] = ACTIONS(690), - [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(636), - [anon_sym_LBRACK] = ACTIONS(642), - [anon_sym_AT] = ACTIONS(636), - [aux_sym_number_token1] = ACTIONS(636), - [aux_sym_number_token2] = ACTIONS(636), - [anon_sym_DQUOTE] = ACTIONS(636), - [anon_sym_POUND] = ACTIONS(636), - [sym_concatenating_space] = ACTIONS(650), - [sym__if_else_separator] = ACTIONS(650), + [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(696), + [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(698), + [anon_sym_DASH_DASH] = ACTIONS(698), + [anon_sym_EQ] = ACTIONS(700), + [anon_sym_PLUS_EQ] = ACTIONS(700), + [anon_sym_DASH_EQ] = ACTIONS(700), + [anon_sym_STAR_EQ] = ACTIONS(700), + [anon_sym_SLASH_EQ] = ACTIONS(700), + [anon_sym_PERCENT_EQ] = ACTIONS(700), + [anon_sym_CARET_EQ] = ACTIONS(700), + [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), }, [190] = { - [sym_identifier] = ACTIONS(636), - [anon_sym_COMMA] = ACTIONS(636), - [anon_sym_SEMI] = ACTIONS(636), - [anon_sym_LF] = ACTIONS(636), - [anon_sym_CR_LF] = ACTIONS(636), - [anon_sym_if] = ACTIONS(636), - [anon_sym_LPAREN] = ACTIONS(636), - [anon_sym_while] = ACTIONS(636), - [anon_sym_do] = ACTIONS(636), - [anon_sym_for] = ACTIONS(636), - [anon_sym_in] = ACTIONS(636), - [sym_break_statement] = ACTIONS(636), - [sym_continue_statement] = ACTIONS(636), - [anon_sym_delete] = ACTIONS(636), - [anon_sym_exit] = ACTIONS(636), - [anon_sym_return] = ACTIONS(636), - [anon_sym_switch] = ACTIONS(636), - [anon_sym_LBRACE] = ACTIONS(636), - [anon_sym_RBRACE] = ACTIONS(636), - [anon_sym_getline] = ACTIONS(636), - [anon_sym_LT] = ACTIONS(636), - [sym_next_statement] = ACTIONS(636), - [sym_nextfile_statement] = ACTIONS(636), - [anon_sym_print] = ACTIONS(636), - [anon_sym_LPAREN2] = ACTIONS(730), - [anon_sym_printf] = ACTIONS(636), - [anon_sym_GT] = ACTIONS(636), - [anon_sym_GT_GT] = ACTIONS(636), - [anon_sym_PIPE] = ACTIONS(636), - [anon_sym_PIPE_AMP] = ACTIONS(636), - [anon_sym_QMARK] = ACTIONS(636), - [anon_sym_CARET] = ACTIONS(636), - [anon_sym_STAR_STAR] = ACTIONS(636), - [anon_sym_STAR] = ACTIONS(636), - [anon_sym_SLASH] = ACTIONS(636), - [anon_sym_PERCENT] = ACTIONS(636), - [anon_sym_PLUS] = ACTIONS(636), - [anon_sym_DASH] = ACTIONS(636), - [anon_sym_LT_EQ] = ACTIONS(636), - [anon_sym_GT_EQ] = ACTIONS(636), - [anon_sym_EQ_EQ] = ACTIONS(636), - [anon_sym_BANG_EQ] = ACTIONS(636), - [anon_sym_TILDE] = ACTIONS(636), - [anon_sym_BANG_TILDE] = ACTIONS(636), - [anon_sym_AMP_AMP] = ACTIONS(636), - [anon_sym_PIPE_PIPE] = ACTIONS(636), - [anon_sym_BANG] = ACTIONS(636), - [anon_sym_PLUS_PLUS] = ACTIONS(744), - [anon_sym_DASH_DASH] = ACTIONS(744), - [anon_sym_EQ] = ACTIONS(746), - [anon_sym_PLUS_EQ] = ACTIONS(746), - [anon_sym_DASH_EQ] = ACTIONS(746), - [anon_sym_STAR_EQ] = ACTIONS(746), - [anon_sym_SLASH_EQ] = ACTIONS(746), - [anon_sym_PERCENT_EQ] = ACTIONS(746), - [anon_sym_CARET_EQ] = ACTIONS(746), - [anon_sym_DOLLAR] = ACTIONS(636), - [anon_sym_LBRACK] = ACTIONS(684), - [anon_sym_AT] = ACTIONS(636), - [anon_sym_COLON_COLON] = ACTIONS(644), - [aux_sym_number_token1] = ACTIONS(636), - [aux_sym_number_token2] = ACTIONS(636), - [anon_sym_DQUOTE] = ACTIONS(636), - [anon_sym_POUND] = ACTIONS(636), - [sym_concatenating_space] = ACTIONS(748), + [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(752), + [anon_sym_DASH_DASH] = ACTIONS(752), + [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(644), + [anon_sym_LBRACK] = ACTIONS(692), + [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(756), }, [191] = { [sym_array_ref] = STATE(216), [sym_namespace] = STATE(1956), [sym_ns_qualified_name] = STATE(251), - [sym_identifier] = ACTIONS(750), - [anon_sym_COMMA] = ACTIONS(696), - [anon_sym_SEMI] = ACTIONS(696), - [anon_sym_LF] = ACTIONS(696), - [anon_sym_CR_LF] = ACTIONS(696), - [anon_sym_if] = ACTIONS(696), - [anon_sym_LPAREN] = ACTIONS(696), - [anon_sym_while] = ACTIONS(696), - [anon_sym_do] = ACTIONS(696), - [anon_sym_for] = ACTIONS(696), - [anon_sym_in] = ACTIONS(696), - [sym_break_statement] = ACTIONS(696), - [sym_continue_statement] = ACTIONS(696), - [anon_sym_delete] = ACTIONS(696), - [anon_sym_exit] = ACTIONS(696), - [anon_sym_return] = ACTIONS(696), - [anon_sym_switch] = ACTIONS(696), - [anon_sym_LBRACE] = ACTIONS(696), - [anon_sym_RBRACE] = ACTIONS(696), - [anon_sym_getline] = ACTIONS(696), - [anon_sym_LT] = ACTIONS(752), - [sym_next_statement] = ACTIONS(696), - [sym_nextfile_statement] = ACTIONS(696), - [anon_sym_print] = ACTIONS(696), - [anon_sym_printf] = ACTIONS(696), - [anon_sym_GT] = ACTIONS(696), - [anon_sym_GT_GT] = ACTIONS(696), - [anon_sym_PIPE] = ACTIONS(696), - [anon_sym_PIPE_AMP] = ACTIONS(696), - [anon_sym_QMARK] = ACTIONS(696), - [anon_sym_CARET] = ACTIONS(696), - [anon_sym_STAR_STAR] = ACTIONS(696), - [anon_sym_STAR] = ACTIONS(696), - [anon_sym_SLASH] = ACTIONS(696), - [anon_sym_PERCENT] = ACTIONS(696), - [anon_sym_PLUS] = ACTIONS(696), - [anon_sym_DASH] = ACTIONS(696), - [anon_sym_LT_EQ] = ACTIONS(696), - [anon_sym_GT_EQ] = ACTIONS(696), - [anon_sym_EQ_EQ] = ACTIONS(696), - [anon_sym_BANG_EQ] = ACTIONS(696), - [anon_sym_TILDE] = ACTIONS(696), - [anon_sym_BANG_TILDE] = ACTIONS(696), - [anon_sym_AMP_AMP] = ACTIONS(696), - [anon_sym_PIPE_PIPE] = ACTIONS(696), - [anon_sym_BANG] = ACTIONS(696), - [anon_sym_PLUS_PLUS] = ACTIONS(696), - [anon_sym_DASH_DASH] = ACTIONS(696), - [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(696), - [anon_sym_AT] = ACTIONS(696), - [aux_sym_number_token1] = ACTIONS(696), - [aux_sym_number_token2] = ACTIONS(696), - [anon_sym_DQUOTE] = ACTIONS(696), - [anon_sym_POUND] = ACTIONS(696), - [sym_concatenating_space] = ACTIONS(700), + [sym_identifier] = ACTIONS(758), + [anon_sym_COMMA] = ACTIONS(704), + [anon_sym_SEMI] = ACTIONS(704), + [anon_sym_LF] = ACTIONS(704), + [anon_sym_CR_LF] = ACTIONS(704), + [anon_sym_if] = ACTIONS(704), + [anon_sym_LPAREN] = ACTIONS(704), + [anon_sym_while] = ACTIONS(704), + [anon_sym_do] = ACTIONS(704), + [anon_sym_for] = ACTIONS(704), + [anon_sym_in] = ACTIONS(704), + [sym_break_statement] = ACTIONS(704), + [sym_continue_statement] = ACTIONS(704), + [anon_sym_delete] = ACTIONS(704), + [anon_sym_exit] = ACTIONS(704), + [anon_sym_return] = ACTIONS(704), + [anon_sym_switch] = ACTIONS(704), + [anon_sym_LBRACE] = ACTIONS(704), + [anon_sym_RBRACE] = ACTIONS(704), + [anon_sym_getline] = ACTIONS(704), + [anon_sym_LT] = ACTIONS(760), + [sym_next_statement] = ACTIONS(704), + [sym_nextfile_statement] = ACTIONS(704), + [anon_sym_print] = ACTIONS(704), + [anon_sym_printf] = ACTIONS(704), + [anon_sym_GT] = ACTIONS(704), + [anon_sym_GT_GT] = ACTIONS(704), + [anon_sym_PIPE] = ACTIONS(704), + [anon_sym_PIPE_AMP] = ACTIONS(704), + [anon_sym_QMARK] = ACTIONS(704), + [anon_sym_CARET] = ACTIONS(704), + [anon_sym_STAR_STAR] = ACTIONS(704), + [anon_sym_STAR] = ACTIONS(704), + [anon_sym_SLASH] = ACTIONS(704), + [anon_sym_PERCENT] = ACTIONS(704), + [anon_sym_PLUS] = ACTIONS(704), + [anon_sym_DASH] = ACTIONS(704), + [anon_sym_LT_EQ] = ACTIONS(704), + [anon_sym_GT_EQ] = ACTIONS(704), + [anon_sym_EQ_EQ] = ACTIONS(704), + [anon_sym_BANG_EQ] = ACTIONS(704), + [anon_sym_TILDE] = ACTIONS(704), + [anon_sym_BANG_TILDE] = ACTIONS(704), + [anon_sym_AMP_AMP] = ACTIONS(704), + [anon_sym_PIPE_PIPE] = ACTIONS(704), + [anon_sym_BANG] = ACTIONS(704), + [anon_sym_PLUS_PLUS] = ACTIONS(704), + [anon_sym_DASH_DASH] = ACTIONS(704), + [anon_sym_EQ] = ACTIONS(704), + [anon_sym_PLUS_EQ] = ACTIONS(704), + [anon_sym_DASH_EQ] = ACTIONS(704), + [anon_sym_STAR_EQ] = ACTIONS(704), + [anon_sym_SLASH_EQ] = ACTIONS(704), + [anon_sym_PERCENT_EQ] = ACTIONS(704), + [anon_sym_CARET_EQ] = ACTIONS(704), + [anon_sym_DOLLAR] = ACTIONS(704), + [anon_sym_AT] = ACTIONS(704), + [aux_sym_number_token1] = ACTIONS(704), + [aux_sym_number_token2] = ACTIONS(704), + [anon_sym_DQUOTE] = ACTIONS(704), + [anon_sym_POUND] = ACTIONS(704), + [sym_concatenating_space] = ACTIONS(708), }, [192] = { - [sym_identifier] = ACTIONS(670), - [anon_sym_COMMA] = ACTIONS(670), - [anon_sym_SEMI] = ACTIONS(670), - [anon_sym_LF] = ACTIONS(670), - [anon_sym_CR_LF] = ACTIONS(670), - [anon_sym_if] = ACTIONS(670), - [anon_sym_LPAREN] = ACTIONS(670), - [anon_sym_while] = ACTIONS(670), - [anon_sym_do] = ACTIONS(670), - [anon_sym_for] = ACTIONS(670), - [anon_sym_in] = ACTIONS(670), - [sym_break_statement] = ACTIONS(670), - [sym_continue_statement] = ACTIONS(670), - [anon_sym_delete] = ACTIONS(670), - [anon_sym_exit] = ACTIONS(670), - [anon_sym_return] = ACTIONS(670), - [anon_sym_switch] = ACTIONS(670), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_RBRACE] = ACTIONS(670), - [anon_sym_getline] = ACTIONS(670), - [anon_sym_LT] = ACTIONS(754), - [sym_next_statement] = ACTIONS(670), - [sym_nextfile_statement] = ACTIONS(670), - [anon_sym_print] = ACTIONS(670), - [anon_sym_printf] = ACTIONS(670), - [anon_sym_GT] = ACTIONS(670), - [anon_sym_GT_GT] = ACTIONS(670), - [anon_sym_PIPE] = ACTIONS(670), - [anon_sym_PIPE_AMP] = ACTIONS(670), - [anon_sym_QMARK] = ACTIONS(670), - [anon_sym_CARET] = ACTIONS(670), - [anon_sym_STAR_STAR] = ACTIONS(670), - [anon_sym_STAR] = ACTIONS(670), - [anon_sym_SLASH] = ACTIONS(670), - [anon_sym_PERCENT] = ACTIONS(670), - [anon_sym_PLUS] = ACTIONS(670), - [anon_sym_DASH] = ACTIONS(670), - [anon_sym_LT_EQ] = ACTIONS(670), - [anon_sym_GT_EQ] = ACTIONS(670), - [anon_sym_EQ_EQ] = ACTIONS(670), - [anon_sym_BANG_EQ] = ACTIONS(670), - [anon_sym_TILDE] = ACTIONS(670), - [anon_sym_BANG_TILDE] = ACTIONS(670), - [anon_sym_AMP_AMP] = ACTIONS(670), - [anon_sym_PIPE_PIPE] = ACTIONS(670), - [anon_sym_BANG] = ACTIONS(670), - [anon_sym_PLUS_PLUS] = ACTIONS(670), - [anon_sym_DASH_DASH] = ACTIONS(670), - [anon_sym_EQ] = ACTIONS(670), - [anon_sym_PLUS_EQ] = ACTIONS(670), - [anon_sym_DASH_EQ] = ACTIONS(670), - [anon_sym_STAR_EQ] = ACTIONS(670), - [anon_sym_SLASH_EQ] = ACTIONS(670), - [anon_sym_PERCENT_EQ] = ACTIONS(670), - [anon_sym_CARET_EQ] = ACTIONS(670), - [anon_sym_DOLLAR] = ACTIONS(670), - [anon_sym_LBRACK] = ACTIONS(642), - [anon_sym_AT] = ACTIONS(670), - [anon_sym_COLON_COLON] = ACTIONS(644), - [aux_sym_number_token1] = ACTIONS(670), - [aux_sym_number_token2] = ACTIONS(670), - [anon_sym_DQUOTE] = ACTIONS(670), - [anon_sym_POUND] = ACTIONS(670), - [sym_concatenating_space] = ACTIONS(672), - [sym__if_else_separator] = ACTIONS(672), + [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), + [anon_sym_LT] = ACTIONS(762), + [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), }, [193] = { - [sym_identifier] = ACTIONS(756), - [anon_sym_COMMA] = ACTIONS(756), - [anon_sym_SEMI] = ACTIONS(756), - [anon_sym_LF] = ACTIONS(756), - [anon_sym_CR_LF] = ACTIONS(756), - [anon_sym_if] = ACTIONS(756), - [anon_sym_LPAREN] = ACTIONS(756), - [anon_sym_while] = ACTIONS(756), - [anon_sym_do] = ACTIONS(756), - [anon_sym_for] = ACTIONS(756), - [anon_sym_in] = ACTIONS(756), - [sym_break_statement] = ACTIONS(756), - [sym_continue_statement] = ACTIONS(756), - [anon_sym_delete] = ACTIONS(756), - [anon_sym_exit] = ACTIONS(756), - [anon_sym_return] = ACTIONS(756), - [anon_sym_switch] = ACTIONS(756), - [anon_sym_LBRACE] = ACTIONS(756), - [anon_sym_RBRACE] = ACTIONS(756), - [anon_sym_case] = ACTIONS(756), - [anon_sym_default] = ACTIONS(756), - [anon_sym_getline] = ACTIONS(756), - [anon_sym_LT] = ACTIONS(756), - [sym_next_statement] = ACTIONS(756), - [sym_nextfile_statement] = ACTIONS(756), - [anon_sym_print] = ACTIONS(756), - [anon_sym_printf] = ACTIONS(756), - [anon_sym_GT] = ACTIONS(756), - [anon_sym_GT_GT] = ACTIONS(756), - [anon_sym_PIPE] = ACTIONS(756), - [anon_sym_PIPE_AMP] = ACTIONS(756), - [anon_sym_QMARK] = ACTIONS(756), - [anon_sym_CARET] = ACTIONS(756), - [anon_sym_STAR_STAR] = ACTIONS(756), - [anon_sym_STAR] = ACTIONS(756), - [anon_sym_SLASH] = ACTIONS(756), - [anon_sym_PERCENT] = ACTIONS(756), - [anon_sym_PLUS] = ACTIONS(756), - [anon_sym_DASH] = ACTIONS(756), - [anon_sym_LT_EQ] = ACTIONS(756), - [anon_sym_GT_EQ] = ACTIONS(756), - [anon_sym_EQ_EQ] = ACTIONS(756), - [anon_sym_BANG_EQ] = ACTIONS(756), - [anon_sym_TILDE] = ACTIONS(756), - [anon_sym_BANG_TILDE] = ACTIONS(756), - [anon_sym_AMP_AMP] = ACTIONS(756), - [anon_sym_PIPE_PIPE] = ACTIONS(756), - [anon_sym_BANG] = ACTIONS(756), - [anon_sym_PLUS_PLUS] = ACTIONS(756), - [anon_sym_DASH_DASH] = ACTIONS(756), - [anon_sym_EQ] = ACTIONS(756), - [anon_sym_PLUS_EQ] = ACTIONS(756), - [anon_sym_DASH_EQ] = ACTIONS(756), - [anon_sym_STAR_EQ] = ACTIONS(756), - [anon_sym_SLASH_EQ] = ACTIONS(756), - [anon_sym_PERCENT_EQ] = ACTIONS(756), - [anon_sym_CARET_EQ] = ACTIONS(756), - [anon_sym_DOLLAR] = ACTIONS(756), - [anon_sym_AT] = ACTIONS(756), - [aux_sym_number_token1] = ACTIONS(756), - [aux_sym_number_token2] = ACTIONS(756), - [anon_sym_DQUOTE] = ACTIONS(756), - [anon_sym_POUND] = ACTIONS(756), - [sym_concatenating_space] = ACTIONS(758), - [sym__if_else_separator] = ACTIONS(758), - }, - [194] = { - [sym_identifier] = ACTIONS(636), - [anon_sym_COMMA] = ACTIONS(636), - [anon_sym_SEMI] = ACTIONS(636), - [anon_sym_LF] = ACTIONS(636), - [anon_sym_CR_LF] = ACTIONS(636), - [anon_sym_if] = ACTIONS(636), - [anon_sym_LPAREN] = ACTIONS(636), - [anon_sym_while] = ACTIONS(636), - [anon_sym_do] = ACTIONS(636), - [anon_sym_for] = ACTIONS(636), - [anon_sym_in] = ACTIONS(636), - [sym_break_statement] = ACTIONS(636), - [sym_continue_statement] = ACTIONS(636), - [anon_sym_delete] = ACTIONS(636), - [anon_sym_exit] = ACTIONS(636), - [anon_sym_return] = ACTIONS(636), - [anon_sym_switch] = ACTIONS(636), - [anon_sym_LBRACE] = ACTIONS(636), - [anon_sym_RBRACE] = ACTIONS(636), - [anon_sym_getline] = ACTIONS(636), - [anon_sym_LT] = ACTIONS(636), - [sym_next_statement] = ACTIONS(636), - [sym_nextfile_statement] = ACTIONS(636), - [anon_sym_print] = ACTIONS(636), - [anon_sym_LPAREN2] = ACTIONS(730), - [anon_sym_printf] = ACTIONS(636), - [anon_sym_GT] = ACTIONS(636), - [anon_sym_GT_GT] = ACTIONS(636), - [anon_sym_PIPE] = ACTIONS(636), - [anon_sym_PIPE_AMP] = ACTIONS(636), - [anon_sym_QMARK] = ACTIONS(636), - [anon_sym_CARET] = ACTIONS(636), - [anon_sym_STAR_STAR] = ACTIONS(636), - [anon_sym_STAR] = ACTIONS(636), - [anon_sym_SLASH] = ACTIONS(636), - [anon_sym_PERCENT] = ACTIONS(636), - [anon_sym_PLUS] = ACTIONS(636), - [anon_sym_DASH] = ACTIONS(636), - [anon_sym_LT_EQ] = ACTIONS(636), - [anon_sym_GT_EQ] = ACTIONS(636), - [anon_sym_EQ_EQ] = ACTIONS(636), - [anon_sym_BANG_EQ] = ACTIONS(636), - [anon_sym_TILDE] = ACTIONS(636), - [anon_sym_BANG_TILDE] = ACTIONS(636), - [anon_sym_AMP_AMP] = ACTIONS(636), - [anon_sym_PIPE_PIPE] = ACTIONS(636), - [anon_sym_BANG] = ACTIONS(636), - [anon_sym_PLUS_PLUS] = ACTIONS(760), - [anon_sym_DASH_DASH] = ACTIONS(760), - [anon_sym_EQ] = ACTIONS(762), - [anon_sym_PLUS_EQ] = ACTIONS(762), - [anon_sym_DASH_EQ] = ACTIONS(762), - [anon_sym_STAR_EQ] = ACTIONS(762), - [anon_sym_SLASH_EQ] = ACTIONS(762), - [anon_sym_PERCENT_EQ] = ACTIONS(762), - [anon_sym_CARET_EQ] = ACTIONS(762), - [anon_sym_DOLLAR] = ACTIONS(636), - [anon_sym_LBRACK] = ACTIONS(684), - [anon_sym_AT] = ACTIONS(636), - [anon_sym_COLON_COLON] = ACTIONS(644), - [aux_sym_number_token1] = ACTIONS(636), - [aux_sym_number_token2] = ACTIONS(636), - [anon_sym_DQUOTE] = ACTIONS(636), - [anon_sym_POUND] = ACTIONS(636), - [sym_concatenating_space] = ACTIONS(650), - }, - [195] = { - [sym_identifier] = ACTIONS(712), - [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_case] = ACTIONS(712), - [anon_sym_default] = 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_LBRACK] = 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), - }, - [196] = { [sym_identifier] = ACTIONS(764), [anon_sym_COMMA] = ACTIONS(764), [anon_sym_SEMI] = ACTIONS(764), @@ -22243,74 +22048,141 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_concatenating_space] = ACTIONS(766), [sym__if_else_separator] = ACTIONS(766), }, - [197] = { - [sym_identifier] = ACTIONS(768), - [anon_sym_COMMA] = ACTIONS(768), - [anon_sym_SEMI] = ACTIONS(768), - [anon_sym_LF] = ACTIONS(768), - [anon_sym_CR_LF] = ACTIONS(768), - [anon_sym_if] = ACTIONS(768), - [anon_sym_LPAREN] = ACTIONS(768), - [anon_sym_while] = ACTIONS(768), - [anon_sym_do] = ACTIONS(768), - [anon_sym_for] = ACTIONS(768), - [anon_sym_in] = ACTIONS(768), - [sym_break_statement] = ACTIONS(768), - [sym_continue_statement] = ACTIONS(768), - [anon_sym_delete] = ACTIONS(768), - [anon_sym_exit] = ACTIONS(768), - [anon_sym_return] = ACTIONS(768), - [anon_sym_switch] = ACTIONS(768), - [anon_sym_LBRACE] = ACTIONS(768), - [anon_sym_RBRACE] = ACTIONS(768), - [anon_sym_case] = ACTIONS(768), - [anon_sym_default] = ACTIONS(768), - [anon_sym_getline] = ACTIONS(768), - [anon_sym_LT] = ACTIONS(768), - [sym_next_statement] = ACTIONS(768), - [sym_nextfile_statement] = ACTIONS(768), - [anon_sym_print] = ACTIONS(768), - [anon_sym_printf] = ACTIONS(768), - [anon_sym_GT] = ACTIONS(768), - [anon_sym_GT_GT] = ACTIONS(768), - [anon_sym_PIPE] = ACTIONS(768), - [anon_sym_PIPE_AMP] = ACTIONS(768), - [anon_sym_QMARK] = ACTIONS(768), - [anon_sym_CARET] = ACTIONS(768), - [anon_sym_STAR_STAR] = ACTIONS(768), - [anon_sym_STAR] = ACTIONS(768), - [anon_sym_SLASH] = ACTIONS(768), - [anon_sym_PERCENT] = ACTIONS(768), - [anon_sym_PLUS] = ACTIONS(768), - [anon_sym_DASH] = ACTIONS(768), - [anon_sym_LT_EQ] = ACTIONS(768), - [anon_sym_GT_EQ] = ACTIONS(768), - [anon_sym_EQ_EQ] = ACTIONS(768), - [anon_sym_BANG_EQ] = ACTIONS(768), - [anon_sym_TILDE] = ACTIONS(768), - [anon_sym_BANG_TILDE] = ACTIONS(768), - [anon_sym_AMP_AMP] = ACTIONS(768), - [anon_sym_PIPE_PIPE] = ACTIONS(768), - [anon_sym_BANG] = ACTIONS(768), + [194] = { + [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(768), [anon_sym_DASH_DASH] = ACTIONS(768), - [anon_sym_EQ] = ACTIONS(768), - [anon_sym_PLUS_EQ] = ACTIONS(768), - [anon_sym_DASH_EQ] = ACTIONS(768), - [anon_sym_STAR_EQ] = ACTIONS(768), - [anon_sym_SLASH_EQ] = ACTIONS(768), - [anon_sym_PERCENT_EQ] = ACTIONS(768), - [anon_sym_CARET_EQ] = ACTIONS(768), - [anon_sym_DOLLAR] = ACTIONS(768), - [anon_sym_AT] = ACTIONS(768), - [aux_sym_number_token1] = ACTIONS(768), - [aux_sym_number_token2] = ACTIONS(768), - [anon_sym_DQUOTE] = ACTIONS(768), - [anon_sym_POUND] = ACTIONS(768), - [sym_concatenating_space] = ACTIONS(770), - [sym__if_else_separator] = ACTIONS(770), + [anon_sym_EQ] = ACTIONS(770), + [anon_sym_PLUS_EQ] = ACTIONS(770), + [anon_sym_DASH_EQ] = ACTIONS(770), + [anon_sym_STAR_EQ] = ACTIONS(770), + [anon_sym_SLASH_EQ] = ACTIONS(770), + [anon_sym_PERCENT_EQ] = ACTIONS(770), + [anon_sym_CARET_EQ] = ACTIONS(770), + [anon_sym_DOLLAR] = ACTIONS(644), + [anon_sym_LBRACK] = ACTIONS(692), + [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), }, - [198] = { + [195] = { + [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), + }, + [196] = { [sym_identifier] = ACTIONS(772), [anon_sym_COMMA] = ACTIONS(772), [anon_sym_SEMI] = ACTIONS(772), @@ -22377,7 +22249,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_concatenating_space] = ACTIONS(774), [sym__if_else_separator] = ACTIONS(774), }, - [199] = { + [197] = { [sym_identifier] = ACTIONS(776), [anon_sym_COMMA] = ACTIONS(776), [anon_sym_SEMI] = ACTIONS(776), @@ -22444,275 +22316,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_concatenating_space] = ACTIONS(778), [sym__if_else_separator] = ACTIONS(778), }, - [200] = { - [sym_identifier] = ACTIONS(674), - [anon_sym_COMMA] = ACTIONS(674), - [anon_sym_SEMI] = ACTIONS(674), - [anon_sym_LF] = ACTIONS(674), - [anon_sym_CR_LF] = ACTIONS(674), - [anon_sym_if] = ACTIONS(674), - [anon_sym_LPAREN] = ACTIONS(674), - [anon_sym_while] = ACTIONS(674), - [anon_sym_do] = ACTIONS(674), - [anon_sym_for] = ACTIONS(674), - [anon_sym_in] = ACTIONS(674), - [sym_break_statement] = ACTIONS(674), - [sym_continue_statement] = ACTIONS(674), - [anon_sym_delete] = ACTIONS(674), - [anon_sym_exit] = ACTIONS(674), - [anon_sym_return] = ACTIONS(674), - [anon_sym_switch] = ACTIONS(674), - [anon_sym_LBRACE] = ACTIONS(674), - [anon_sym_RBRACE] = ACTIONS(674), - [anon_sym_case] = ACTIONS(674), - [anon_sym_default] = ACTIONS(674), - [anon_sym_getline] = ACTIONS(674), - [anon_sym_LT] = ACTIONS(674), - [sym_next_statement] = ACTIONS(674), - [sym_nextfile_statement] = ACTIONS(674), - [anon_sym_print] = ACTIONS(674), - [anon_sym_printf] = ACTIONS(674), - [anon_sym_GT] = ACTIONS(674), - [anon_sym_GT_GT] = ACTIONS(674), - [anon_sym_PIPE] = ACTIONS(674), - [anon_sym_PIPE_AMP] = ACTIONS(674), - [anon_sym_QMARK] = ACTIONS(674), - [anon_sym_CARET] = ACTIONS(674), - [anon_sym_STAR_STAR] = ACTIONS(674), - [anon_sym_STAR] = ACTIONS(674), - [anon_sym_SLASH] = ACTIONS(674), - [anon_sym_PERCENT] = ACTIONS(674), - [anon_sym_PLUS] = ACTIONS(674), - [anon_sym_DASH] = ACTIONS(674), - [anon_sym_LT_EQ] = ACTIONS(674), - [anon_sym_GT_EQ] = ACTIONS(674), - [anon_sym_EQ_EQ] = ACTIONS(674), - [anon_sym_BANG_EQ] = ACTIONS(674), - [anon_sym_TILDE] = ACTIONS(674), - [anon_sym_BANG_TILDE] = ACTIONS(674), - [anon_sym_AMP_AMP] = ACTIONS(674), - [anon_sym_PIPE_PIPE] = ACTIONS(674), - [anon_sym_BANG] = ACTIONS(674), - [anon_sym_PLUS_PLUS] = ACTIONS(674), - [anon_sym_DASH_DASH] = ACTIONS(674), - [anon_sym_EQ] = ACTIONS(674), - [anon_sym_PLUS_EQ] = ACTIONS(674), - [anon_sym_DASH_EQ] = ACTIONS(674), - [anon_sym_STAR_EQ] = ACTIONS(674), - [anon_sym_SLASH_EQ] = ACTIONS(674), - [anon_sym_PERCENT_EQ] = ACTIONS(674), - [anon_sym_CARET_EQ] = ACTIONS(674), - [anon_sym_DOLLAR] = ACTIONS(674), - [anon_sym_AT] = ACTIONS(674), - [aux_sym_number_token1] = ACTIONS(674), - [aux_sym_number_token2] = ACTIONS(674), - [anon_sym_DQUOTE] = ACTIONS(674), - [anon_sym_POUND] = ACTIONS(674), - [sym_concatenating_space] = ACTIONS(676), - [sym__if_else_separator] = ACTIONS(676), - }, - [201] = { - [sym_identifier] = ACTIONS(634), - [anon_sym_COMMA] = ACTIONS(634), - [anon_sym_SEMI] = ACTIONS(634), - [anon_sym_LF] = ACTIONS(634), - [anon_sym_CR_LF] = ACTIONS(634), - [anon_sym_if] = ACTIONS(634), - [anon_sym_LPAREN] = ACTIONS(634), - [anon_sym_while] = ACTIONS(634), - [anon_sym_do] = ACTIONS(634), - [anon_sym_for] = ACTIONS(634), - [anon_sym_in] = ACTIONS(636), - [sym_break_statement] = ACTIONS(634), - [sym_continue_statement] = ACTIONS(634), - [anon_sym_delete] = ACTIONS(634), - [anon_sym_exit] = ACTIONS(634), - [anon_sym_return] = ACTIONS(634), - [anon_sym_switch] = ACTIONS(634), - [anon_sym_LBRACE] = ACTIONS(634), - [anon_sym_RBRACE] = ACTIONS(634), - [anon_sym_case] = ACTIONS(634), - [anon_sym_default] = ACTIONS(634), - [anon_sym_getline] = ACTIONS(634), - [anon_sym_LT] = ACTIONS(636), - [sym_next_statement] = ACTIONS(634), - [sym_nextfile_statement] = ACTIONS(634), - [anon_sym_print] = ACTIONS(634), - [anon_sym_printf] = ACTIONS(634), - [anon_sym_GT] = ACTIONS(636), - [anon_sym_GT_GT] = ACTIONS(634), - [anon_sym_PIPE] = ACTIONS(636), - [anon_sym_PIPE_AMP] = ACTIONS(636), - [anon_sym_QMARK] = ACTIONS(636), - [anon_sym_CARET] = ACTIONS(636), - [anon_sym_STAR_STAR] = ACTIONS(636), - [anon_sym_STAR] = ACTIONS(636), - [anon_sym_SLASH] = ACTIONS(636), - [anon_sym_PERCENT] = ACTIONS(636), - [anon_sym_PLUS] = ACTIONS(636), - [anon_sym_DASH] = ACTIONS(636), - [anon_sym_LT_EQ] = ACTIONS(636), - [anon_sym_GT_EQ] = ACTIONS(636), - [anon_sym_EQ_EQ] = ACTIONS(636), - [anon_sym_BANG_EQ] = ACTIONS(636), - [anon_sym_TILDE] = ACTIONS(636), - [anon_sym_BANG_TILDE] = ACTIONS(636), - [anon_sym_AMP_AMP] = ACTIONS(636), - [anon_sym_PIPE_PIPE] = ACTIONS(636), - [anon_sym_BANG] = ACTIONS(634), - [anon_sym_PLUS_PLUS] = ACTIONS(640), - [anon_sym_DASH_DASH] = ACTIONS(640), - [anon_sym_EQ] = ACTIONS(634), - [anon_sym_PLUS_EQ] = ACTIONS(634), - [anon_sym_DASH_EQ] = ACTIONS(634), - [anon_sym_STAR_EQ] = ACTIONS(634), - [anon_sym_SLASH_EQ] = ACTIONS(634), - [anon_sym_PERCENT_EQ] = ACTIONS(634), - [anon_sym_CARET_EQ] = ACTIONS(634), - [anon_sym_DOLLAR] = ACTIONS(634), - [anon_sym_LBRACK] = ACTIONS(684), - [anon_sym_AT] = ACTIONS(634), - [aux_sym_number_token1] = ACTIONS(634), - [aux_sym_number_token2] = ACTIONS(634), - [anon_sym_DQUOTE] = ACTIONS(634), - [anon_sym_POUND] = ACTIONS(634), - [sym_concatenating_space] = ACTIONS(646), - }, - [202] = { - [sym_identifier] = ACTIONS(636), - [anon_sym_COMMA] = ACTIONS(636), - [anon_sym_SEMI] = ACTIONS(636), - [anon_sym_LF] = ACTIONS(636), - [anon_sym_CR_LF] = ACTIONS(636), - [anon_sym_if] = ACTIONS(636), - [anon_sym_LPAREN] = ACTIONS(636), - [anon_sym_while] = ACTIONS(636), - [anon_sym_do] = ACTIONS(636), - [anon_sym_for] = ACTIONS(636), - [anon_sym_in] = ACTIONS(636), - [sym_break_statement] = ACTIONS(636), - [sym_continue_statement] = ACTIONS(636), - [anon_sym_delete] = ACTIONS(636), - [anon_sym_exit] = ACTIONS(636), - [anon_sym_return] = ACTIONS(636), - [anon_sym_switch] = ACTIONS(636), - [anon_sym_LBRACE] = ACTIONS(636), - [anon_sym_RBRACE] = ACTIONS(636), - [anon_sym_case] = ACTIONS(636), - [anon_sym_default] = ACTIONS(636), - [anon_sym_getline] = ACTIONS(636), - [anon_sym_LT] = ACTIONS(636), - [sym_next_statement] = ACTIONS(636), - [sym_nextfile_statement] = ACTIONS(636), - [anon_sym_print] = ACTIONS(636), - [anon_sym_printf] = ACTIONS(636), - [anon_sym_GT] = ACTIONS(636), - [anon_sym_GT_GT] = ACTIONS(636), - [anon_sym_PIPE] = ACTIONS(636), - [anon_sym_PIPE_AMP] = ACTIONS(636), - [anon_sym_QMARK] = ACTIONS(636), - [anon_sym_CARET] = ACTIONS(636), - [anon_sym_STAR_STAR] = ACTIONS(636), - [anon_sym_STAR] = ACTIONS(636), - [anon_sym_SLASH] = ACTIONS(636), - [anon_sym_PERCENT] = ACTIONS(636), - [anon_sym_PLUS] = ACTIONS(636), - [anon_sym_DASH] = ACTIONS(636), - [anon_sym_LT_EQ] = ACTIONS(636), - [anon_sym_GT_EQ] = ACTIONS(636), - [anon_sym_EQ_EQ] = ACTIONS(636), - [anon_sym_BANG_EQ] = ACTIONS(636), - [anon_sym_TILDE] = ACTIONS(636), - [anon_sym_BANG_TILDE] = ACTIONS(636), - [anon_sym_AMP_AMP] = ACTIONS(636), - [anon_sym_PIPE_PIPE] = ACTIONS(636), - [anon_sym_BANG] = ACTIONS(636), - [anon_sym_PLUS_PLUS] = ACTIONS(648), - [anon_sym_DASH_DASH] = ACTIONS(648), - [anon_sym_EQ] = ACTIONS(636), - [anon_sym_PLUS_EQ] = ACTIONS(636), - [anon_sym_DASH_EQ] = ACTIONS(636), - [anon_sym_STAR_EQ] = ACTIONS(636), - [anon_sym_SLASH_EQ] = ACTIONS(636), - [anon_sym_PERCENT_EQ] = ACTIONS(636), - [anon_sym_CARET_EQ] = ACTIONS(636), - [anon_sym_DOLLAR] = ACTIONS(636), - [anon_sym_AT] = ACTIONS(636), - [aux_sym_number_token1] = ACTIONS(636), - [aux_sym_number_token2] = ACTIONS(636), - [anon_sym_DQUOTE] = ACTIONS(636), - [anon_sym_POUND] = ACTIONS(636), - [sym_concatenating_space] = ACTIONS(650), - [sym__if_else_separator] = ACTIONS(650), - }, - [203] = { - [sym_identifier] = ACTIONS(634), - [anon_sym_COMMA] = ACTIONS(634), - [anon_sym_SEMI] = ACTIONS(634), - [anon_sym_LF] = ACTIONS(634), - [anon_sym_CR_LF] = ACTIONS(634), - [anon_sym_if] = ACTIONS(634), - [anon_sym_LPAREN] = ACTIONS(634), - [anon_sym_while] = ACTIONS(634), - [anon_sym_do] = ACTIONS(634), - [anon_sym_for] = ACTIONS(634), - [anon_sym_in] = ACTIONS(636), - [sym_break_statement] = ACTIONS(634), - [sym_continue_statement] = ACTIONS(634), - [anon_sym_delete] = ACTIONS(634), - [anon_sym_exit] = ACTIONS(634), - [anon_sym_return] = ACTIONS(634), - [anon_sym_switch] = ACTIONS(634), - [anon_sym_LBRACE] = ACTIONS(634), - [anon_sym_RBRACE] = ACTIONS(634), - [anon_sym_case] = ACTIONS(634), - [anon_sym_default] = ACTIONS(634), - [anon_sym_getline] = ACTIONS(634), - [anon_sym_LT] = ACTIONS(636), - [sym_next_statement] = ACTIONS(634), - [sym_nextfile_statement] = ACTIONS(634), - [anon_sym_print] = ACTIONS(634), - [anon_sym_printf] = ACTIONS(634), - [anon_sym_GT] = ACTIONS(636), - [anon_sym_GT_GT] = ACTIONS(634), - [anon_sym_PIPE] = ACTIONS(636), - [anon_sym_PIPE_AMP] = ACTIONS(636), - [anon_sym_QMARK] = ACTIONS(636), - [anon_sym_CARET] = ACTIONS(636), - [anon_sym_STAR_STAR] = ACTIONS(636), - [anon_sym_STAR] = ACTIONS(636), - [anon_sym_SLASH] = ACTIONS(636), - [anon_sym_PERCENT] = ACTIONS(636), - [anon_sym_PLUS] = ACTIONS(636), - [anon_sym_DASH] = ACTIONS(636), - [anon_sym_LT_EQ] = ACTIONS(636), - [anon_sym_GT_EQ] = ACTIONS(636), - [anon_sym_EQ_EQ] = ACTIONS(636), - [anon_sym_BANG_EQ] = ACTIONS(636), - [anon_sym_TILDE] = ACTIONS(636), - [anon_sym_BANG_TILDE] = ACTIONS(636), - [anon_sym_AMP_AMP] = ACTIONS(636), - [anon_sym_PIPE_PIPE] = ACTIONS(636), - [anon_sym_BANG] = ACTIONS(634), - [anon_sym_PLUS_PLUS] = ACTIONS(640), - [anon_sym_DASH_DASH] = ACTIONS(640), - [anon_sym_EQ] = ACTIONS(708), - [anon_sym_PLUS_EQ] = ACTIONS(708), - [anon_sym_DASH_EQ] = ACTIONS(708), - [anon_sym_STAR_EQ] = ACTIONS(708), - [anon_sym_SLASH_EQ] = ACTIONS(708), - [anon_sym_PERCENT_EQ] = ACTIONS(708), - [anon_sym_CARET_EQ] = ACTIONS(708), - [anon_sym_DOLLAR] = ACTIONS(634), - [anon_sym_AT] = ACTIONS(634), - [aux_sym_number_token1] = ACTIONS(634), - [aux_sym_number_token2] = ACTIONS(634), - [anon_sym_DQUOTE] = ACTIONS(634), - [anon_sym_POUND] = ACTIONS(634), - [sym_concatenating_space] = ACTIONS(646), - [sym__if_else_separator] = ACTIONS(646), - }, - [204] = { + [198] = { [sym_identifier] = ACTIONS(780), [anon_sym_COMMA] = ACTIONS(780), [anon_sym_SEMI] = ACTIONS(780), @@ -22779,7 +22383,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_concatenating_space] = ACTIONS(782), [sym__if_else_separator] = ACTIONS(782), }, - [205] = { + [199] = { [sym_identifier] = ACTIONS(784), [anon_sym_COMMA] = ACTIONS(784), [anon_sym_SEMI] = ACTIONS(784), @@ -22846,141 +22450,275 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_concatenating_space] = ACTIONS(786), [sym__if_else_separator] = ACTIONS(786), }, - [206] = { - [sym_identifier] = ACTIONS(674), - [anon_sym_COMMA] = ACTIONS(674), - [anon_sym_SEMI] = ACTIONS(674), - [anon_sym_LF] = ACTIONS(674), - [anon_sym_CR_LF] = ACTIONS(674), - [anon_sym_if] = ACTIONS(674), - [anon_sym_LPAREN] = ACTIONS(674), - [anon_sym_while] = ACTIONS(674), - [anon_sym_do] = ACTIONS(674), - [anon_sym_for] = ACTIONS(674), - [anon_sym_in] = ACTIONS(674), - [sym_break_statement] = ACTIONS(674), - [sym_continue_statement] = ACTIONS(674), - [anon_sym_delete] = ACTIONS(674), - [anon_sym_exit] = ACTIONS(674), - [anon_sym_return] = ACTIONS(674), - [anon_sym_switch] = ACTIONS(674), - [anon_sym_LBRACE] = ACTIONS(674), - [anon_sym_RBRACE] = ACTIONS(674), - [anon_sym_case] = ACTIONS(674), - [anon_sym_default] = ACTIONS(674), - [anon_sym_getline] = ACTIONS(674), - [anon_sym_LT] = ACTIONS(674), - [sym_next_statement] = ACTIONS(674), - [sym_nextfile_statement] = ACTIONS(674), - [anon_sym_print] = ACTIONS(674), - [anon_sym_printf] = ACTIONS(674), - [anon_sym_GT] = ACTIONS(674), - [anon_sym_GT_GT] = ACTIONS(674), - [anon_sym_PIPE] = ACTIONS(674), - [anon_sym_PIPE_AMP] = ACTIONS(674), - [anon_sym_QMARK] = ACTIONS(674), - [anon_sym_CARET] = ACTIONS(674), - [anon_sym_STAR_STAR] = ACTIONS(674), - [anon_sym_STAR] = ACTIONS(674), - [anon_sym_SLASH] = ACTIONS(674), - [anon_sym_PERCENT] = ACTIONS(674), - [anon_sym_PLUS] = ACTIONS(674), - [anon_sym_DASH] = ACTIONS(674), - [anon_sym_LT_EQ] = ACTIONS(674), - [anon_sym_GT_EQ] = ACTIONS(674), - [anon_sym_EQ_EQ] = ACTIONS(674), - [anon_sym_BANG_EQ] = ACTIONS(674), - [anon_sym_TILDE] = ACTIONS(674), - [anon_sym_BANG_TILDE] = ACTIONS(674), - [anon_sym_AMP_AMP] = ACTIONS(674), - [anon_sym_PIPE_PIPE] = ACTIONS(674), - [anon_sym_BANG] = ACTIONS(674), - [anon_sym_PLUS_PLUS] = ACTIONS(674), - [anon_sym_DASH_DASH] = ACTIONS(674), - [anon_sym_EQ] = ACTIONS(674), - [anon_sym_PLUS_EQ] = ACTIONS(674), - [anon_sym_DASH_EQ] = ACTIONS(674), - [anon_sym_STAR_EQ] = ACTIONS(674), - [anon_sym_SLASH_EQ] = ACTIONS(674), - [anon_sym_PERCENT_EQ] = ACTIONS(674), - [anon_sym_CARET_EQ] = ACTIONS(674), - [anon_sym_DOLLAR] = ACTIONS(674), - [anon_sym_LBRACK] = ACTIONS(684), - [anon_sym_AT] = ACTIONS(674), - [aux_sym_number_token1] = ACTIONS(674), - [aux_sym_number_token2] = ACTIONS(674), - [anon_sym_DQUOTE] = ACTIONS(674), - [anon_sym_POUND] = ACTIONS(674), - [sym_concatenating_space] = ACTIONS(676), + [200] = { + [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), }, - [207] = { - [sym_identifier] = ACTIONS(634), - [anon_sym_COMMA] = ACTIONS(634), - [anon_sym_SEMI] = ACTIONS(634), - [anon_sym_LF] = ACTIONS(634), - [anon_sym_CR_LF] = ACTIONS(634), - [anon_sym_if] = ACTIONS(634), - [anon_sym_LPAREN] = ACTIONS(634), - [anon_sym_while] = ACTIONS(634), - [anon_sym_do] = ACTIONS(634), - [anon_sym_for] = ACTIONS(634), - [anon_sym_in] = ACTIONS(636), - [sym_break_statement] = ACTIONS(634), - [sym_continue_statement] = ACTIONS(634), - [anon_sym_delete] = ACTIONS(634), - [anon_sym_exit] = ACTIONS(634), - [anon_sym_return] = ACTIONS(634), - [anon_sym_switch] = ACTIONS(634), - [anon_sym_LBRACE] = ACTIONS(634), - [anon_sym_RBRACE] = ACTIONS(634), - [anon_sym_case] = ACTIONS(634), - [anon_sym_default] = ACTIONS(634), - [anon_sym_getline] = ACTIONS(634), - [anon_sym_LT] = ACTIONS(636), - [sym_next_statement] = ACTIONS(634), - [sym_nextfile_statement] = ACTIONS(634), - [anon_sym_print] = ACTIONS(634), - [anon_sym_printf] = ACTIONS(634), - [anon_sym_GT] = ACTIONS(636), - [anon_sym_GT_GT] = ACTIONS(634), - [anon_sym_PIPE] = ACTIONS(636), - [anon_sym_PIPE_AMP] = ACTIONS(636), - [anon_sym_QMARK] = ACTIONS(636), - [anon_sym_CARET] = ACTIONS(636), - [anon_sym_STAR_STAR] = ACTIONS(636), - [anon_sym_STAR] = ACTIONS(636), - [anon_sym_SLASH] = ACTIONS(636), - [anon_sym_PERCENT] = ACTIONS(636), - [anon_sym_PLUS] = ACTIONS(636), - [anon_sym_DASH] = ACTIONS(636), - [anon_sym_LT_EQ] = ACTIONS(636), - [anon_sym_GT_EQ] = ACTIONS(636), - [anon_sym_EQ_EQ] = ACTIONS(636), - [anon_sym_BANG_EQ] = ACTIONS(636), - [anon_sym_TILDE] = ACTIONS(636), - [anon_sym_BANG_TILDE] = ACTIONS(636), - [anon_sym_AMP_AMP] = ACTIONS(636), - [anon_sym_PIPE_PIPE] = ACTIONS(636), - [anon_sym_BANG] = ACTIONS(634), - [anon_sym_PLUS_PLUS] = ACTIONS(640), - [anon_sym_DASH_DASH] = ACTIONS(640), - [anon_sym_EQ] = ACTIONS(708), - [anon_sym_PLUS_EQ] = ACTIONS(708), - [anon_sym_DASH_EQ] = ACTIONS(708), - [anon_sym_STAR_EQ] = ACTIONS(708), - [anon_sym_SLASH_EQ] = ACTIONS(708), - [anon_sym_PERCENT_EQ] = ACTIONS(708), - [anon_sym_CARET_EQ] = ACTIONS(708), - [anon_sym_DOLLAR] = ACTIONS(634), - [anon_sym_LBRACK] = ACTIONS(684), - [anon_sym_AT] = ACTIONS(634), - [aux_sym_number_token1] = ACTIONS(634), - [aux_sym_number_token2] = ACTIONS(634), - [anon_sym_DQUOTE] = ACTIONS(634), - [anon_sym_POUND] = ACTIONS(634), - [sym_concatenating_space] = ACTIONS(646), + [201] = { + [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_LBRACK] = ACTIONS(692), + [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), }, - [208] = { + [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(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(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_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), + }, + [204] = { [sym_identifier] = ACTIONS(788), [anon_sym_COMMA] = ACTIONS(788), [anon_sym_SEMI] = ACTIONS(788), @@ -23047,7 +22785,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_concatenating_space] = ACTIONS(790), [sym__if_else_separator] = ACTIONS(790), }, - [209] = { + [205] = { [sym_identifier] = ACTIONS(792), [anon_sym_COMMA] = ACTIONS(792), [anon_sym_SEMI] = ACTIONS(792), @@ -23114,141 +22852,141 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_concatenating_space] = ACTIONS(794), [sym__if_else_separator] = ACTIONS(794), }, - [210] = { - [sym_identifier] = ACTIONS(636), - [anon_sym_COMMA] = ACTIONS(636), - [anon_sym_SEMI] = ACTIONS(636), - [anon_sym_LF] = ACTIONS(636), - [anon_sym_CR_LF] = ACTIONS(636), - [anon_sym_if] = ACTIONS(636), - [anon_sym_LPAREN] = ACTIONS(636), - [anon_sym_while] = ACTIONS(636), - [anon_sym_do] = ACTIONS(636), - [anon_sym_for] = ACTIONS(636), - [anon_sym_in] = ACTIONS(636), - [sym_break_statement] = ACTIONS(636), - [sym_continue_statement] = ACTIONS(636), - [anon_sym_delete] = ACTIONS(636), - [anon_sym_exit] = ACTIONS(636), - [anon_sym_return] = ACTIONS(636), - [anon_sym_switch] = ACTIONS(636), - [anon_sym_LBRACE] = ACTIONS(636), - [anon_sym_RBRACE] = ACTIONS(636), - [anon_sym_getline] = ACTIONS(636), - [anon_sym_LT] = ACTIONS(636), - [sym_next_statement] = ACTIONS(636), - [sym_nextfile_statement] = ACTIONS(636), - [anon_sym_print] = ACTIONS(636), - [anon_sym_LPAREN2] = ACTIONS(688), - [anon_sym_printf] = ACTIONS(636), - [anon_sym_GT] = ACTIONS(636), - [anon_sym_GT_GT] = ACTIONS(636), - [anon_sym_PIPE] = ACTIONS(636), - [anon_sym_PIPE_AMP] = ACTIONS(636), - [anon_sym_QMARK] = ACTIONS(636), - [anon_sym_CARET] = ACTIONS(636), - [anon_sym_STAR_STAR] = ACTIONS(636), - [anon_sym_STAR] = ACTIONS(636), - [anon_sym_SLASH] = ACTIONS(636), - [anon_sym_PERCENT] = ACTIONS(636), - [anon_sym_PLUS] = ACTIONS(636), - [anon_sym_DASH] = ACTIONS(636), - [anon_sym_LT_EQ] = ACTIONS(636), - [anon_sym_GT_EQ] = ACTIONS(636), - [anon_sym_EQ_EQ] = ACTIONS(636), - [anon_sym_BANG_EQ] = ACTIONS(636), - [anon_sym_TILDE] = ACTIONS(636), - [anon_sym_BANG_TILDE] = ACTIONS(636), - [anon_sym_AMP_AMP] = ACTIONS(636), - [anon_sym_PIPE_PIPE] = ACTIONS(636), - [anon_sym_BANG] = ACTIONS(636), - [anon_sym_PLUS_PLUS] = ACTIONS(702), - [anon_sym_DASH_DASH] = ACTIONS(702), - [anon_sym_EQ] = ACTIONS(704), - [anon_sym_PLUS_EQ] = ACTIONS(704), - [anon_sym_DASH_EQ] = ACTIONS(704), - [anon_sym_STAR_EQ] = ACTIONS(704), - [anon_sym_SLASH_EQ] = ACTIONS(704), - [anon_sym_PERCENT_EQ] = ACTIONS(704), - [anon_sym_CARET_EQ] = ACTIONS(704), - [anon_sym_DOLLAR] = ACTIONS(636), - [anon_sym_LBRACK] = ACTIONS(642), - [anon_sym_AT] = ACTIONS(636), - [aux_sym_number_token1] = ACTIONS(636), - [aux_sym_number_token2] = ACTIONS(636), - [anon_sym_DQUOTE] = ACTIONS(636), - [anon_sym_POUND] = ACTIONS(636), - [sym_concatenating_space] = ACTIONS(706), - [sym__if_else_separator] = ACTIONS(650), + [206] = { + [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(692), + [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), }, - [211] = { - [sym_identifier] = ACTIONS(636), - [anon_sym_COMMA] = ACTIONS(636), - [anon_sym_SEMI] = ACTIONS(636), - [anon_sym_LF] = ACTIONS(636), - [anon_sym_CR_LF] = ACTIONS(636), - [anon_sym_if] = ACTIONS(636), - [anon_sym_LPAREN] = ACTIONS(636), - [anon_sym_while] = ACTIONS(636), - [anon_sym_do] = ACTIONS(636), - [anon_sym_for] = ACTIONS(636), - [anon_sym_in] = ACTIONS(636), - [sym_break_statement] = ACTIONS(636), - [sym_continue_statement] = ACTIONS(636), - [anon_sym_delete] = ACTIONS(636), - [anon_sym_exit] = ACTIONS(636), - [anon_sym_return] = ACTIONS(636), - [anon_sym_switch] = ACTIONS(636), - [anon_sym_LBRACE] = ACTIONS(636), - [anon_sym_RBRACE] = ACTIONS(636), - [anon_sym_case] = ACTIONS(636), - [anon_sym_default] = ACTIONS(636), - [anon_sym_getline] = ACTIONS(636), - [anon_sym_LT] = ACTIONS(636), - [sym_next_statement] = ACTIONS(636), - [sym_nextfile_statement] = ACTIONS(636), - [anon_sym_print] = ACTIONS(636), - [anon_sym_printf] = ACTIONS(636), - [anon_sym_GT] = ACTIONS(636), - [anon_sym_GT_GT] = ACTIONS(636), - [anon_sym_PIPE] = ACTIONS(636), - [anon_sym_PIPE_AMP] = ACTIONS(636), - [anon_sym_QMARK] = ACTIONS(636), - [anon_sym_CARET] = ACTIONS(636), - [anon_sym_STAR_STAR] = ACTIONS(636), - [anon_sym_STAR] = ACTIONS(636), - [anon_sym_SLASH] = ACTIONS(636), - [anon_sym_PERCENT] = ACTIONS(636), - [anon_sym_PLUS] = ACTIONS(636), - [anon_sym_DASH] = ACTIONS(636), - [anon_sym_LT_EQ] = ACTIONS(636), - [anon_sym_GT_EQ] = ACTIONS(636), - [anon_sym_EQ_EQ] = ACTIONS(636), - [anon_sym_BANG_EQ] = ACTIONS(636), - [anon_sym_TILDE] = ACTIONS(636), - [anon_sym_BANG_TILDE] = ACTIONS(636), - [anon_sym_AMP_AMP] = ACTIONS(636), - [anon_sym_PIPE_PIPE] = ACTIONS(636), - [anon_sym_BANG] = ACTIONS(636), - [anon_sym_PLUS_PLUS] = ACTIONS(686), - [anon_sym_DASH_DASH] = ACTIONS(686), - [anon_sym_EQ] = ACTIONS(636), - [anon_sym_PLUS_EQ] = ACTIONS(636), - [anon_sym_DASH_EQ] = ACTIONS(636), - [anon_sym_STAR_EQ] = ACTIONS(636), - [anon_sym_SLASH_EQ] = ACTIONS(636), - [anon_sym_PERCENT_EQ] = ACTIONS(636), - [anon_sym_CARET_EQ] = ACTIONS(636), - [anon_sym_DOLLAR] = ACTIONS(636), - [anon_sym_LBRACK] = ACTIONS(684), - [anon_sym_AT] = ACTIONS(636), - [aux_sym_number_token1] = ACTIONS(636), - [aux_sym_number_token2] = ACTIONS(636), - [anon_sym_DQUOTE] = ACTIONS(636), - [anon_sym_POUND] = ACTIONS(636), - [sym_concatenating_space] = ACTIONS(650), + [207] = { + [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(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(692), + [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), }, - [212] = { + [208] = { [sym_identifier] = ACTIONS(796), [anon_sym_COMMA] = ACTIONS(796), [anon_sym_SEMI] = ACTIONS(796), @@ -23315,7 +23053,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_concatenating_space] = ACTIONS(798), [sym__if_else_separator] = ACTIONS(798), }, - [213] = { + [209] = { [sym_identifier] = ACTIONS(800), [anon_sym_COMMA] = ACTIONS(800), [anon_sym_SEMI] = ACTIONS(800), @@ -23382,7 +23120,141 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_concatenating_space] = ACTIONS(802), [sym__if_else_separator] = ACTIONS(802), }, - [214] = { + [210] = { + [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(696), + [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(710), + [anon_sym_DASH_DASH] = ACTIONS(710), + [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(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(714), + [sym__if_else_separator] = ACTIONS(658), + }, + [211] = { + [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(692), + [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), + }, + [212] = { [sym_identifier] = ACTIONS(804), [anon_sym_COMMA] = ACTIONS(804), [anon_sym_SEMI] = ACTIONS(804), @@ -23449,7 +23321,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_concatenating_space] = ACTIONS(806), [sym__if_else_separator] = ACTIONS(806), }, - [215] = { + [213] = { [sym_identifier] = ACTIONS(808), [anon_sym_COMMA] = ACTIONS(808), [anon_sym_SEMI] = ACTIONS(808), @@ -23516,147 +23388,281 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_concatenating_space] = ACTIONS(810), [sym__if_else_separator] = ACTIONS(810), }, + [214] = { + [sym_identifier] = ACTIONS(812), + [anon_sym_COMMA] = ACTIONS(812), + [anon_sym_SEMI] = ACTIONS(812), + [anon_sym_LF] = ACTIONS(812), + [anon_sym_CR_LF] = ACTIONS(812), + [anon_sym_if] = ACTIONS(812), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_while] = ACTIONS(812), + [anon_sym_do] = ACTIONS(812), + [anon_sym_for] = ACTIONS(812), + [anon_sym_in] = ACTIONS(812), + [sym_break_statement] = ACTIONS(812), + [sym_continue_statement] = ACTIONS(812), + [anon_sym_delete] = ACTIONS(812), + [anon_sym_exit] = ACTIONS(812), + [anon_sym_return] = ACTIONS(812), + [anon_sym_switch] = ACTIONS(812), + [anon_sym_LBRACE] = ACTIONS(812), + [anon_sym_RBRACE] = ACTIONS(812), + [anon_sym_case] = ACTIONS(812), + [anon_sym_default] = ACTIONS(812), + [anon_sym_getline] = ACTIONS(812), + [anon_sym_LT] = ACTIONS(812), + [sym_next_statement] = ACTIONS(812), + [sym_nextfile_statement] = ACTIONS(812), + [anon_sym_print] = ACTIONS(812), + [anon_sym_printf] = ACTIONS(812), + [anon_sym_GT] = ACTIONS(812), + [anon_sym_GT_GT] = ACTIONS(812), + [anon_sym_PIPE] = ACTIONS(812), + [anon_sym_PIPE_AMP] = ACTIONS(812), + [anon_sym_QMARK] = ACTIONS(812), + [anon_sym_CARET] = ACTIONS(812), + [anon_sym_STAR_STAR] = ACTIONS(812), + [anon_sym_STAR] = ACTIONS(812), + [anon_sym_SLASH] = ACTIONS(812), + [anon_sym_PERCENT] = ACTIONS(812), + [anon_sym_PLUS] = ACTIONS(812), + [anon_sym_DASH] = ACTIONS(812), + [anon_sym_LT_EQ] = ACTIONS(812), + [anon_sym_GT_EQ] = ACTIONS(812), + [anon_sym_EQ_EQ] = ACTIONS(812), + [anon_sym_BANG_EQ] = ACTIONS(812), + [anon_sym_TILDE] = ACTIONS(812), + [anon_sym_BANG_TILDE] = ACTIONS(812), + [anon_sym_AMP_AMP] = ACTIONS(812), + [anon_sym_PIPE_PIPE] = ACTIONS(812), + [anon_sym_BANG] = ACTIONS(812), + [anon_sym_PLUS_PLUS] = ACTIONS(812), + [anon_sym_DASH_DASH] = ACTIONS(812), + [anon_sym_EQ] = ACTIONS(812), + [anon_sym_PLUS_EQ] = ACTIONS(812), + [anon_sym_DASH_EQ] = ACTIONS(812), + [anon_sym_STAR_EQ] = ACTIONS(812), + [anon_sym_SLASH_EQ] = ACTIONS(812), + [anon_sym_PERCENT_EQ] = ACTIONS(812), + [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), + }, + [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(670), - [anon_sym_COMMA] = ACTIONS(670), - [anon_sym_SEMI] = ACTIONS(670), - [anon_sym_LF] = ACTIONS(670), - [anon_sym_CR_LF] = ACTIONS(670), - [anon_sym_if] = ACTIONS(670), - [anon_sym_LPAREN] = ACTIONS(670), - [anon_sym_while] = ACTIONS(670), - [anon_sym_do] = ACTIONS(670), - [anon_sym_for] = ACTIONS(670), - [anon_sym_in] = ACTIONS(670), - [sym_break_statement] = ACTIONS(670), - [sym_continue_statement] = ACTIONS(670), - [anon_sym_delete] = ACTIONS(670), - [anon_sym_exit] = ACTIONS(670), - [anon_sym_return] = ACTIONS(670), - [anon_sym_switch] = ACTIONS(670), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_RBRACE] = ACTIONS(670), - [anon_sym_case] = ACTIONS(670), - [anon_sym_default] = ACTIONS(670), - [anon_sym_getline] = ACTIONS(670), - [anon_sym_LT] = ACTIONS(670), - [sym_next_statement] = ACTIONS(670), - [sym_nextfile_statement] = ACTIONS(670), - [anon_sym_print] = ACTIONS(670), - [anon_sym_printf] = ACTIONS(670), - [anon_sym_GT] = ACTIONS(670), - [anon_sym_GT_GT] = ACTIONS(670), - [anon_sym_PIPE] = ACTIONS(670), - [anon_sym_PIPE_AMP] = ACTIONS(670), - [anon_sym_QMARK] = ACTIONS(670), - [anon_sym_CARET] = ACTIONS(670), - [anon_sym_STAR_STAR] = ACTIONS(670), - [anon_sym_STAR] = ACTIONS(670), - [anon_sym_SLASH] = ACTIONS(670), - [anon_sym_PERCENT] = ACTIONS(670), - [anon_sym_PLUS] = ACTIONS(670), - [anon_sym_DASH] = ACTIONS(670), - [anon_sym_LT_EQ] = ACTIONS(670), - [anon_sym_GT_EQ] = ACTIONS(670), - [anon_sym_EQ_EQ] = ACTIONS(670), - [anon_sym_BANG_EQ] = ACTIONS(670), - [anon_sym_TILDE] = ACTIONS(670), - [anon_sym_BANG_TILDE] = ACTIONS(670), - [anon_sym_AMP_AMP] = ACTIONS(670), - [anon_sym_PIPE_PIPE] = ACTIONS(670), - [anon_sym_BANG] = ACTIONS(670), - [anon_sym_PLUS_PLUS] = ACTIONS(670), - [anon_sym_DASH_DASH] = ACTIONS(670), - [anon_sym_EQ] = ACTIONS(670), - [anon_sym_PLUS_EQ] = ACTIONS(670), - [anon_sym_DASH_EQ] = ACTIONS(670), - [anon_sym_STAR_EQ] = ACTIONS(670), - [anon_sym_SLASH_EQ] = ACTIONS(670), - [anon_sym_PERCENT_EQ] = ACTIONS(670), - [anon_sym_CARET_EQ] = ACTIONS(670), - [anon_sym_DOLLAR] = ACTIONS(670), - [anon_sym_LBRACK] = ACTIONS(684), - [anon_sym_AT] = ACTIONS(670), - [aux_sym_number_token1] = ACTIONS(670), - [aux_sym_number_token2] = ACTIONS(670), - [anon_sym_DQUOTE] = ACTIONS(670), - [anon_sym_POUND] = ACTIONS(670), - [sym_concatenating_space] = ACTIONS(672), + [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(692), + [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), }, [217] = { [sym_array_ref] = STATE(216), [sym_namespace] = STATE(1956), [sym_ns_qualified_name] = STATE(216), - [sym_identifier] = ACTIONS(812), - [anon_sym_COMMA] = ACTIONS(696), - [anon_sym_SEMI] = ACTIONS(696), - [anon_sym_LF] = ACTIONS(696), - [anon_sym_CR_LF] = ACTIONS(696), - [anon_sym_if] = ACTIONS(696), - [anon_sym_LPAREN] = ACTIONS(696), - [anon_sym_while] = ACTIONS(696), - [anon_sym_do] = ACTIONS(696), - [anon_sym_for] = ACTIONS(696), - [anon_sym_in] = ACTIONS(696), - [sym_break_statement] = ACTIONS(696), - [sym_continue_statement] = ACTIONS(696), - [anon_sym_delete] = ACTIONS(696), - [anon_sym_exit] = ACTIONS(696), - [anon_sym_return] = ACTIONS(696), - [anon_sym_switch] = ACTIONS(696), - [anon_sym_LBRACE] = ACTIONS(696), - [anon_sym_RBRACE] = ACTIONS(696), - [anon_sym_getline] = ACTIONS(696), - [anon_sym_LT] = ACTIONS(696), - [sym_next_statement] = ACTIONS(696), - [sym_nextfile_statement] = ACTIONS(696), - [anon_sym_print] = ACTIONS(696), - [anon_sym_printf] = ACTIONS(696), - [anon_sym_GT] = ACTIONS(696), - [anon_sym_GT_GT] = ACTIONS(696), - [anon_sym_PIPE] = ACTIONS(696), - [anon_sym_PIPE_AMP] = ACTIONS(696), - [anon_sym_QMARK] = ACTIONS(696), - [anon_sym_CARET] = ACTIONS(696), - [anon_sym_STAR_STAR] = ACTIONS(696), - [anon_sym_STAR] = ACTIONS(696), - [anon_sym_SLASH] = ACTIONS(696), - [anon_sym_PERCENT] = ACTIONS(696), - [anon_sym_PLUS] = ACTIONS(696), - [anon_sym_DASH] = ACTIONS(696), - [anon_sym_LT_EQ] = ACTIONS(696), - [anon_sym_GT_EQ] = ACTIONS(696), - [anon_sym_EQ_EQ] = ACTIONS(696), - [anon_sym_BANG_EQ] = ACTIONS(696), - [anon_sym_TILDE] = ACTIONS(696), - [anon_sym_BANG_TILDE] = ACTIONS(696), - [anon_sym_AMP_AMP] = ACTIONS(696), - [anon_sym_PIPE_PIPE] = ACTIONS(696), - [anon_sym_BANG] = ACTIONS(696), - [anon_sym_PLUS_PLUS] = ACTIONS(696), - [anon_sym_DASH_DASH] = ACTIONS(696), - [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(696), - [anon_sym_AT] = ACTIONS(696), - [aux_sym_number_token1] = ACTIONS(696), - [aux_sym_number_token2] = ACTIONS(696), - [anon_sym_DQUOTE] = ACTIONS(696), - [anon_sym_POUND] = ACTIONS(696), - [sym_concatenating_space] = ACTIONS(700), + [sym_identifier] = ACTIONS(820), + [anon_sym_COMMA] = ACTIONS(704), + [anon_sym_SEMI] = ACTIONS(704), + [anon_sym_LF] = ACTIONS(704), + [anon_sym_CR_LF] = ACTIONS(704), + [anon_sym_if] = ACTIONS(704), + [anon_sym_LPAREN] = ACTIONS(704), + [anon_sym_while] = ACTIONS(704), + [anon_sym_do] = ACTIONS(704), + [anon_sym_for] = ACTIONS(704), + [anon_sym_in] = ACTIONS(704), + [sym_break_statement] = ACTIONS(704), + [sym_continue_statement] = ACTIONS(704), + [anon_sym_delete] = ACTIONS(704), + [anon_sym_exit] = ACTIONS(704), + [anon_sym_return] = ACTIONS(704), + [anon_sym_switch] = ACTIONS(704), + [anon_sym_LBRACE] = ACTIONS(704), + [anon_sym_RBRACE] = ACTIONS(704), + [anon_sym_getline] = ACTIONS(704), + [anon_sym_LT] = ACTIONS(704), + [sym_next_statement] = ACTIONS(704), + [sym_nextfile_statement] = ACTIONS(704), + [anon_sym_print] = ACTIONS(704), + [anon_sym_printf] = ACTIONS(704), + [anon_sym_GT] = ACTIONS(704), + [anon_sym_GT_GT] = ACTIONS(704), + [anon_sym_PIPE] = ACTIONS(704), + [anon_sym_PIPE_AMP] = ACTIONS(704), + [anon_sym_QMARK] = ACTIONS(704), + [anon_sym_CARET] = ACTIONS(704), + [anon_sym_STAR_STAR] = ACTIONS(704), + [anon_sym_STAR] = ACTIONS(704), + [anon_sym_SLASH] = ACTIONS(704), + [anon_sym_PERCENT] = ACTIONS(704), + [anon_sym_PLUS] = ACTIONS(704), + [anon_sym_DASH] = ACTIONS(704), + [anon_sym_LT_EQ] = ACTIONS(704), + [anon_sym_GT_EQ] = ACTIONS(704), + [anon_sym_EQ_EQ] = ACTIONS(704), + [anon_sym_BANG_EQ] = ACTIONS(704), + [anon_sym_TILDE] = ACTIONS(704), + [anon_sym_BANG_TILDE] = ACTIONS(704), + [anon_sym_AMP_AMP] = ACTIONS(704), + [anon_sym_PIPE_PIPE] = ACTIONS(704), + [anon_sym_BANG] = ACTIONS(704), + [anon_sym_PLUS_PLUS] = ACTIONS(704), + [anon_sym_DASH_DASH] = ACTIONS(704), + [anon_sym_EQ] = ACTIONS(704), + [anon_sym_PLUS_EQ] = ACTIONS(704), + [anon_sym_DASH_EQ] = ACTIONS(704), + [anon_sym_STAR_EQ] = ACTIONS(704), + [anon_sym_SLASH_EQ] = ACTIONS(704), + [anon_sym_PERCENT_EQ] = ACTIONS(704), + [anon_sym_CARET_EQ] = ACTIONS(704), + [anon_sym_DOLLAR] = ACTIONS(704), + [anon_sym_AT] = ACTIONS(704), + [aux_sym_number_token1] = ACTIONS(704), + [aux_sym_number_token2] = ACTIONS(704), + [anon_sym_DQUOTE] = ACTIONS(704), + [anon_sym_POUND] = ACTIONS(704), + [sym_concatenating_space] = ACTIONS(708), }, }; static const uint16_t ts_small_parse_table[] = { [0] = 2, - ACTIONS(676), 1, + ACTIONS(684), 1, sym_concatenating_space, - ACTIONS(674), 63, + ACTIONS(682), 63, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -23721,16 +23727,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [69] = 6, - ACTIONS(650), 1, + ACTIONS(658), 1, sym_concatenating_space, - ACTIONS(684), 1, + ACTIONS(692), 1, anon_sym_LBRACK, - ACTIONS(730), 1, + ACTIONS(738), 1, anon_sym_LPAREN2, - ACTIONS(760), 2, + ACTIONS(768), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(762), 7, + ACTIONS(770), 7, anon_sym_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -23738,7 +23744,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_CARET_EQ, - ACTIONS(636), 52, + ACTIONS(644), 52, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -23792,9 +23798,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [146] = 2, - ACTIONS(766), 1, + ACTIONS(774), 1, sym_concatenating_space, - ACTIONS(764), 63, + ACTIONS(772), 63, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -23859,9 +23865,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [215] = 2, - ACTIONS(758), 1, + ACTIONS(766), 1, sym_concatenating_space, - ACTIONS(756), 63, + ACTIONS(764), 63, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -23926,9 +23932,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [284] = 2, - ACTIONS(774), 1, + ACTIONS(782), 1, sym_concatenating_space, - ACTIONS(772), 63, + ACTIONS(780), 63, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -23993,9 +23999,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [353] = 2, - ACTIONS(742), 1, + ACTIONS(750), 1, sym_concatenating_space, - ACTIONS(740), 63, + ACTIONS(748), 63, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -24060,12 +24066,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [422] = 3, - ACTIONS(650), 1, + ACTIONS(658), 1, sym_concatenating_space, - ACTIONS(686), 2, + ACTIONS(694), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(636), 61, + ACTIONS(644), 61, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -24128,9 +24134,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [493] = 2, - ACTIONS(782), 1, + ACTIONS(790), 1, sym_concatenating_space, - ACTIONS(780), 63, + ACTIONS(788), 63, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -24195,9 +24201,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [562] = 2, - ACTIONS(794), 1, + ACTIONS(802), 1, sym_concatenating_space, - ACTIONS(792), 63, + ACTIONS(800), 63, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -24262,9 +24268,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [631] = 2, - ACTIONS(802), 1, + ACTIONS(810), 1, sym_concatenating_space, - ACTIONS(800), 63, + ACTIONS(808), 63, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -24329,9 +24335,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [700] = 2, - ACTIONS(810), 1, + ACTIONS(818), 1, sym_concatenating_space, - ACTIONS(808), 63, + ACTIONS(816), 63, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -24396,12 +24402,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [769] = 5, - ACTIONS(646), 1, + ACTIONS(654), 1, sym_concatenating_space, - ACTIONS(640), 2, + ACTIONS(648), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(708), 7, + ACTIONS(716), 7, anon_sym_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -24409,7 +24415,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_CARET_EQ, - ACTIONS(636), 21, + ACTIONS(644), 21, anon_sym_in, anon_sym_LT, anon_sym_GT, @@ -24431,7 +24437,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - ACTIONS(634), 33, + ACTIONS(642), 33, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -24466,16 +24472,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [844] = 6, - ACTIONS(642), 1, - anon_sym_LBRACK, ACTIONS(650), 1, + anon_sym_LBRACK, + ACTIONS(658), 1, sym__if_else_separator, - ACTIONS(706), 1, + ACTIONS(714), 1, sym_concatenating_space, - ACTIONS(702), 2, + ACTIONS(710), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(704), 7, + ACTIONS(712), 7, anon_sym_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -24483,7 +24489,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_CARET_EQ, - ACTIONS(636), 52, + ACTIONS(644), 52, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -24537,15 +24543,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [921] = 5, - ACTIONS(644), 1, + ACTIONS(652), 1, anon_sym_COLON_COLON, - ACTIONS(672), 1, + ACTIONS(680), 1, sym_concatenating_space, - ACTIONS(684), 1, + ACTIONS(692), 1, anon_sym_LBRACK, - ACTIONS(814), 1, + ACTIONS(822), 1, anon_sym_LT, - ACTIONS(670), 60, + ACTIONS(678), 60, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -24607,9 +24613,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [996] = 2, - ACTIONS(790), 1, + ACTIONS(798), 1, sym_concatenating_space, - ACTIONS(788), 63, + ACTIONS(796), 63, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -24674,9 +24680,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [1065] = 2, - ACTIONS(786), 1, + ACTIONS(794), 1, sym_concatenating_space, - ACTIONS(784), 63, + ACTIONS(792), 63, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -24741,14 +24747,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [1134] = 4, - ACTIONS(642), 1, + ACTIONS(650), 1, anon_sym_LBRACK, - ACTIONS(754), 1, + ACTIONS(762), 1, anon_sym_LT, - ACTIONS(672), 2, + ACTIONS(680), 2, sym_concatenating_space, sym__if_else_separator, - ACTIONS(670), 60, + ACTIONS(678), 60, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -24810,9 +24816,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [1207] = 2, - ACTIONS(738), 1, + ACTIONS(746), 1, sym_concatenating_space, - ACTIONS(736), 63, + ACTIONS(744), 63, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -24877,12 +24883,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [1276] = 4, - ACTIONS(646), 1, + ACTIONS(654), 1, sym_concatenating_space, - ACTIONS(640), 2, + ACTIONS(648), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(636), 21, + ACTIONS(644), 21, anon_sym_in, anon_sym_LT, anon_sym_GT, @@ -24904,7 +24910,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - ACTIONS(634), 40, + ACTIONS(642), 40, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -24946,9 +24952,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [1349] = 2, - ACTIONS(734), 1, + ACTIONS(742), 1, sym_concatenating_space, - ACTIONS(732), 63, + ACTIONS(740), 63, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -25013,16 +25019,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [1418] = 7, - ACTIONS(646), 1, + ACTIONS(654), 1, sym_concatenating_space, - ACTIONS(684), 1, + ACTIONS(692), 1, anon_sym_LBRACK, - ACTIONS(730), 1, + ACTIONS(738), 1, anon_sym_LPAREN2, - ACTIONS(640), 2, + ACTIONS(648), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(708), 7, + ACTIONS(716), 7, anon_sym_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -25030,7 +25036,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_CARET_EQ, - ACTIONS(636), 21, + ACTIONS(644), 21, anon_sym_in, anon_sym_LT, anon_sym_GT, @@ -25052,7 +25058,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - ACTIONS(634), 31, + ACTIONS(642), 31, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -25085,16 +25091,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [1497] = 6, - ACTIONS(684), 1, + ACTIONS(692), 1, anon_sym_LBRACK, - ACTIONS(730), 1, + ACTIONS(738), 1, anon_sym_LPAREN2, - ACTIONS(748), 1, + ACTIONS(756), 1, sym_concatenating_space, - ACTIONS(744), 2, + ACTIONS(752), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(746), 7, + ACTIONS(754), 7, anon_sym_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -25102,7 +25108,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_CARET_EQ, - ACTIONS(636), 52, + ACTIONS(644), 52, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -25156,9 +25162,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [1574] = 2, - ACTIONS(770), 1, + ACTIONS(778), 1, sym_concatenating_space, - ACTIONS(768), 63, + ACTIONS(776), 63, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -25223,10 +25229,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [1643] = 2, - ACTIONS(680), 2, + ACTIONS(688), 2, sym_concatenating_space, sym__if_else_separator, - ACTIONS(678), 62, + ACTIONS(686), 62, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -25290,12 +25296,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [1712] = 3, - ACTIONS(818), 1, + ACTIONS(826), 1, sym_regex_flags, - ACTIONS(820), 2, + ACTIONS(828), 2, sym_concatenating_space, sym__if_else_separator, - ACTIONS(816), 61, + ACTIONS(824), 61, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -25358,9 +25364,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [1783] = 3, - ACTIONS(646), 1, + ACTIONS(654), 1, sym_concatenating_space, - ACTIONS(636), 21, + ACTIONS(644), 21, anon_sym_in, anon_sym_LT, anon_sym_GT, @@ -25382,7 +25388,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - ACTIONS(634), 42, + ACTIONS(642), 42, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -25426,9 +25432,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [1854] = 2, - ACTIONS(778), 1, + ACTIONS(786), 1, sym_concatenating_space, - ACTIONS(776), 63, + ACTIONS(784), 63, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -25493,9 +25499,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [1923] = 2, - ACTIONS(798), 1, + ACTIONS(806), 1, sym_concatenating_space, - ACTIONS(796), 63, + ACTIONS(804), 63, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -25560,9 +25566,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [1992] = 2, - ACTIONS(806), 1, + ACTIONS(814), 1, sym_concatenating_space, - ACTIONS(804), 63, + ACTIONS(812), 63, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -25627,15 +25633,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [2061] = 5, - ACTIONS(642), 1, + ACTIONS(650), 1, anon_sym_LBRACK, - ACTIONS(650), 2, + ACTIONS(658), 2, sym_concatenating_space, sym__if_else_separator, - ACTIONS(690), 2, + ACTIONS(698), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(692), 7, + ACTIONS(700), 7, anon_sym_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -25643,7 +25649,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_CARET_EQ, - ACTIONS(636), 52, + ACTIONS(644), 52, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -25697,27 +25703,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [2136] = 6, - ACTIONS(766), 2, + ACTIONS(774), 2, sym_concatenating_space, sym__if_else_separator, - ACTIONS(824), 2, + ACTIONS(832), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(828), 2, + ACTIONS(836), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(826), 3, + ACTIONS(834), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(822), 6, + ACTIONS(830), 6, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(764), 48, + ACTIONS(772), 48, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -25767,30 +25773,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [2212] = 7, - ACTIONS(824), 2, + ACTIONS(832), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(828), 2, + ACTIONS(836), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(832), 2, + ACTIONS(840), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(834), 2, + ACTIONS(842), 2, sym_concatenating_space, sym__if_else_separator, - ACTIONS(826), 3, + ACTIONS(834), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(822), 6, + ACTIONS(830), 6, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(830), 46, + ACTIONS(838), 46, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -25838,41 +25844,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [2290] = 12, - ACTIONS(838), 1, + ACTIONS(846), 1, anon_sym_in, - ACTIONS(842), 1, + ACTIONS(850), 1, anon_sym_QMARK, - ACTIONS(844), 1, + ACTIONS(852), 1, anon_sym_AMP_AMP, - ACTIONS(846), 1, + ACTIONS(854), 1, anon_sym_PIPE_PIPE, - ACTIONS(824), 2, + ACTIONS(832), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(828), 2, + ACTIONS(836), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(832), 2, + ACTIONS(840), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(840), 2, + ACTIONS(848), 2, anon_sym_PIPE, anon_sym_PIPE_AMP, - ACTIONS(848), 2, + ACTIONS(856), 2, sym_concatenating_space, sym__if_else_separator, - ACTIONS(826), 3, + ACTIONS(834), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(822), 6, + ACTIONS(830), 6, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(836), 40, + ACTIONS(844), 40, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -25914,13 +25920,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [2378] = 4, - ACTIONS(672), 1, + ACTIONS(680), 1, sym_concatenating_space, - ACTIONS(684), 1, + ACTIONS(692), 1, anon_sym_LBRACK, - ACTIONS(814), 1, + ACTIONS(822), 1, anon_sym_LT, - ACTIONS(670), 60, + ACTIONS(678), 60, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -25982,38 +25988,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [2450] = 11, - ACTIONS(838), 1, + ACTIONS(846), 1, anon_sym_in, - ACTIONS(842), 1, + ACTIONS(850), 1, anon_sym_QMARK, - ACTIONS(844), 1, + ACTIONS(852), 1, anon_sym_AMP_AMP, - ACTIONS(846), 1, + ACTIONS(854), 1, anon_sym_PIPE_PIPE, - ACTIONS(824), 2, + ACTIONS(832), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(828), 2, + ACTIONS(836), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(832), 2, + ACTIONS(840), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(852), 2, + ACTIONS(860), 2, sym_concatenating_space, sym__if_else_separator, - ACTIONS(826), 3, + ACTIONS(834), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(822), 6, + ACTIONS(830), 6, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(850), 42, + ACTIONS(858), 42, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -26057,14 +26063,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [2536] = 5, - ACTIONS(684), 1, + ACTIONS(692), 1, anon_sym_LBRACK, - ACTIONS(748), 1, + ACTIONS(756), 1, sym_concatenating_space, - ACTIONS(744), 2, + ACTIONS(752), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(746), 7, + ACTIONS(754), 7, anon_sym_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -26072,7 +26078,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_CARET_EQ, - ACTIONS(636), 52, + ACTIONS(644), 52, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -26126,14 +26132,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [2610] = 5, - ACTIONS(650), 1, + ACTIONS(658), 1, sym__if_else_separator, - ACTIONS(706), 1, + ACTIONS(714), 1, sym_concatenating_space, - ACTIONS(702), 2, + ACTIONS(710), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(704), 7, + ACTIONS(712), 7, anon_sym_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -26141,7 +26147,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_CARET_EQ, - ACTIONS(636), 52, + ACTIONS(644), 52, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -26195,13 +26201,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [2684] = 4, - ACTIONS(650), 2, + ACTIONS(658), 2, sym_concatenating_space, sym__if_else_separator, - ACTIONS(690), 2, + ACTIONS(698), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(692), 7, + ACTIONS(700), 7, anon_sym_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -26209,7 +26215,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_CARET_EQ, - ACTIONS(636), 52, + ACTIONS(644), 52, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -26263,9 +26269,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [2756] = 2, - ACTIONS(680), 1, + ACTIONS(688), 1, sym_concatenating_space, - ACTIONS(678), 62, + ACTIONS(686), 62, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -26329,20 +26335,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [2824] = 5, - ACTIONS(824), 2, + ACTIONS(832), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(828), 2, + ACTIONS(836), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(856), 2, + ACTIONS(864), 2, sym_concatenating_space, sym__if_else_separator, - ACTIONS(826), 3, + ACTIONS(834), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(854), 54, + ACTIONS(862), 54, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -26398,34 +26404,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [2898] = 9, - ACTIONS(838), 1, + ACTIONS(846), 1, anon_sym_in, - ACTIONS(844), 1, + ACTIONS(852), 1, anon_sym_AMP_AMP, - ACTIONS(766), 2, + ACTIONS(774), 2, sym_concatenating_space, sym__if_else_separator, - ACTIONS(824), 2, + ACTIONS(832), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(828), 2, + ACTIONS(836), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(832), 2, + ACTIONS(840), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(826), 3, + ACTIONS(834), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(822), 6, + ACTIONS(830), 6, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(764), 44, + ACTIONS(772), 44, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -26471,32 +26477,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [2980] = 8, - ACTIONS(838), 1, + ACTIONS(846), 1, anon_sym_in, - ACTIONS(766), 2, + ACTIONS(774), 2, sym_concatenating_space, sym__if_else_separator, - ACTIONS(824), 2, + ACTIONS(832), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(828), 2, + ACTIONS(836), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(832), 2, + ACTIONS(840), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(826), 3, + ACTIONS(834), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(822), 6, + ACTIONS(830), 6, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(764), 45, + ACTIONS(772), 45, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -26543,17 +26549,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [3060] = 4, - ACTIONS(766), 2, + ACTIONS(774), 2, sym_concatenating_space, sym__if_else_separator, - ACTIONS(824), 2, + ACTIONS(832), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(826), 3, + ACTIONS(834), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(764), 56, + ACTIONS(772), 56, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -26611,14 +26617,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [3132] = 5, - ACTIONS(650), 1, + ACTIONS(658), 1, sym_concatenating_space, - ACTIONS(684), 1, + ACTIONS(692), 1, anon_sym_LBRACK, - ACTIONS(760), 2, + ACTIONS(768), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(762), 7, + ACTIONS(770), 7, anon_sym_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -26626,7 +26632,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_CARET_EQ, - ACTIONS(636), 52, + ACTIONS(644), 52, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -26680,13 +26686,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [3206] = 3, - ACTIONS(766), 2, + ACTIONS(774), 2, sym_concatenating_space, sym__if_else_separator, - ACTIONS(824), 2, + ACTIONS(832), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(764), 59, + ACTIONS(772), 59, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -26747,20 +26753,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [3276] = 5, - ACTIONS(766), 2, + ACTIONS(774), 2, sym_concatenating_space, sym__if_else_separator, - ACTIONS(824), 2, + ACTIONS(832), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(828), 2, + ACTIONS(836), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(826), 3, + ACTIONS(834), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(764), 54, + ACTIONS(772), 54, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -26816,30 +26822,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [3350] = 7, - ACTIONS(824), 2, + ACTIONS(832), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(828), 2, + ACTIONS(836), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(832), 2, + ACTIONS(840), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(860), 2, + ACTIONS(868), 2, sym_concatenating_space, sym__if_else_separator, - ACTIONS(826), 3, + ACTIONS(834), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(822), 6, + ACTIONS(830), 6, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(858), 46, + ACTIONS(866), 46, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -26887,11 +26893,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [3428] = 3, - ACTIONS(820), 1, + ACTIONS(828), 1, sym_concatenating_space, - ACTIONS(862), 1, + ACTIONS(870), 1, sym_regex_flags, - ACTIONS(816), 61, + ACTIONS(824), 61, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -26954,40 +26960,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [3498] = 12, - ACTIONS(848), 1, + ACTIONS(856), 1, sym_concatenating_space, - ACTIONS(864), 1, + ACTIONS(872), 1, anon_sym_in, - ACTIONS(870), 1, + ACTIONS(878), 1, anon_sym_QMARK, - ACTIONS(880), 1, + ACTIONS(888), 1, anon_sym_AMP_AMP, - ACTIONS(882), 1, + ACTIONS(890), 1, anon_sym_PIPE_PIPE, - ACTIONS(868), 2, + ACTIONS(876), 2, anon_sym_PIPE, anon_sym_PIPE_AMP, - ACTIONS(872), 2, + ACTIONS(880), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(876), 2, + ACTIONS(884), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(878), 2, + ACTIONS(886), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(874), 3, + ACTIONS(882), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(866), 6, + ACTIONS(874), 6, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(836), 40, + ACTIONS(844), 40, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -27029,33 +27035,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [3585] = 9, - ACTIONS(766), 1, + ACTIONS(774), 1, sym_concatenating_space, - ACTIONS(864), 1, + ACTIONS(872), 1, anon_sym_in, - ACTIONS(880), 1, + ACTIONS(888), 1, anon_sym_AMP_AMP, - ACTIONS(872), 2, + ACTIONS(880), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(876), 2, + ACTIONS(884), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(878), 2, + ACTIONS(886), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(874), 3, + ACTIONS(882), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(866), 6, + ACTIONS(874), 6, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(764), 44, + ACTIONS(772), 44, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -27101,12 +27107,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [3666] = 4, - ACTIONS(748), 1, + ACTIONS(756), 1, sym_concatenating_space, - ACTIONS(744), 2, + ACTIONS(752), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(746), 7, + ACTIONS(754), 7, anon_sym_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -27114,7 +27120,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_CARET_EQ, - ACTIONS(636), 52, + ACTIONS(644), 52, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -27168,16 +27174,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [3737] = 4, - ACTIONS(766), 1, + ACTIONS(774), 1, sym_concatenating_space, - ACTIONS(872), 2, + ACTIONS(880), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(874), 3, + ACTIONS(882), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(764), 56, + ACTIONS(772), 56, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -27235,26 +27241,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [3808] = 6, - ACTIONS(766), 1, + ACTIONS(774), 1, sym_concatenating_space, - ACTIONS(872), 2, + ACTIONS(880), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(876), 2, + ACTIONS(884), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(874), 3, + ACTIONS(882), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(866), 6, + ACTIONS(874), 6, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(764), 48, + ACTIONS(772), 48, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -27304,31 +27310,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [3883] = 8, - ACTIONS(766), 1, + ACTIONS(774), 1, sym_concatenating_space, - ACTIONS(864), 1, + ACTIONS(872), 1, anon_sym_in, - ACTIONS(872), 2, + ACTIONS(880), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(876), 2, + ACTIONS(884), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(878), 2, + ACTIONS(886), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(874), 3, + ACTIONS(882), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(866), 6, + ACTIONS(874), 6, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(764), 45, + ACTIONS(772), 45, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -27375,12 +27381,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [3962] = 3, - ACTIONS(766), 1, + ACTIONS(774), 1, sym_concatenating_space, - ACTIONS(872), 2, + ACTIONS(880), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(764), 59, + ACTIONS(772), 59, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -27441,19 +27447,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [4031] = 5, - ACTIONS(766), 1, + ACTIONS(774), 1, sym_concatenating_space, - ACTIONS(872), 2, + ACTIONS(880), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(876), 2, + ACTIONS(884), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(874), 3, + ACTIONS(882), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(764), 54, + ACTIONS(772), 54, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -27509,29 +27515,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [4104] = 7, - ACTIONS(860), 1, + ACTIONS(868), 1, sym_concatenating_space, - ACTIONS(872), 2, + ACTIONS(880), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(876), 2, + ACTIONS(884), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(878), 2, + ACTIONS(886), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(874), 3, + ACTIONS(882), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(866), 6, + ACTIONS(874), 6, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(858), 46, + ACTIONS(866), 46, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -27579,12 +27585,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [4181] = 4, - ACTIONS(650), 1, + ACTIONS(658), 1, sym_concatenating_space, - ACTIONS(760), 2, + ACTIONS(768), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(762), 7, + ACTIONS(770), 7, anon_sym_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -27592,7 +27598,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_CARET_EQ, - ACTIONS(636), 52, + ACTIONS(644), 52, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -27646,37 +27652,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [4252] = 11, - ACTIONS(852), 1, + ACTIONS(860), 1, sym_concatenating_space, - ACTIONS(864), 1, + ACTIONS(872), 1, anon_sym_in, - ACTIONS(870), 1, + ACTIONS(878), 1, anon_sym_QMARK, - ACTIONS(880), 1, + ACTIONS(888), 1, anon_sym_AMP_AMP, - ACTIONS(882), 1, + ACTIONS(890), 1, anon_sym_PIPE_PIPE, - ACTIONS(872), 2, + ACTIONS(880), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(876), 2, + ACTIONS(884), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(878), 2, + ACTIONS(886), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(874), 3, + ACTIONS(882), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(866), 6, + ACTIONS(874), 6, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(850), 42, + ACTIONS(858), 42, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -27720,29 +27726,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [4337] = 7, - ACTIONS(834), 1, + ACTIONS(842), 1, sym_concatenating_space, - ACTIONS(872), 2, + ACTIONS(880), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(876), 2, + ACTIONS(884), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(878), 2, + ACTIONS(886), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(874), 3, + ACTIONS(882), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(866), 6, + ACTIONS(874), 6, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(830), 46, + ACTIONS(838), 46, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -27790,19 +27796,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [4414] = 5, - ACTIONS(856), 1, + ACTIONS(864), 1, sym_concatenating_space, - ACTIONS(872), 2, + ACTIONS(880), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(876), 2, + ACTIONS(884), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(874), 3, + ACTIONS(882), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(854), 54, + ACTIONS(862), 54, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -27858,16 +27864,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [4487] = 6, - ACTIONS(644), 1, + ACTIONS(652), 1, anon_sym_COLON_COLON, - ACTIONS(884), 1, + ACTIONS(892), 1, anon_sym_LPAREN2, - ACTIONS(888), 1, + ACTIONS(896), 1, anon_sym_LBRACK, - ACTIONS(886), 2, + ACTIONS(894), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(636), 24, + ACTIONS(644), 24, anon_sym_BEGIN, anon_sym_END, anon_sym_BEGINFILE, @@ -27892,7 +27898,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, anon_sym_function, anon_sym_func, - ACTIONS(650), 31, + ACTIONS(658), 31, sym_concatenating_space, ts_builtin_sym_end, anon_sym_COMMA, @@ -27925,16 +27931,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [4560] = 8, - ACTIONS(644), 1, + ACTIONS(652), 1, anon_sym_COLON_COLON, - ACTIONS(884), 1, + ACTIONS(892), 1, anon_sym_LPAREN2, - ACTIONS(888), 1, + ACTIONS(896), 1, anon_sym_LBRACK, - ACTIONS(890), 2, + ACTIONS(898), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(636), 10, + ACTIONS(644), 10, anon_sym_in, anon_sym_LT, anon_sym_GT, @@ -27945,7 +27951,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(650), 11, + ACTIONS(658), 11, anon_sym_PIPE_AMP, anon_sym_QMARK, anon_sym_STAR_STAR, @@ -27957,7 +27963,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - ACTIONS(634), 14, + ACTIONS(642), 14, anon_sym_BEGIN, anon_sym_END, anon_sym_BEGINFILE, @@ -27972,7 +27978,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, anon_sym_function, anon_sym_func, - ACTIONS(646), 20, + ACTIONS(654), 20, sym_concatenating_space, ts_builtin_sym_end, anon_sym_COMMA, @@ -27994,14 +28000,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [4637] = 7, - ACTIONS(884), 1, + ACTIONS(892), 1, anon_sym_LPAREN2, - ACTIONS(888), 1, + ACTIONS(896), 1, anon_sym_LBRACK, - ACTIONS(890), 2, + ACTIONS(898), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(636), 10, + ACTIONS(644), 10, anon_sym_in, anon_sym_LT, anon_sym_GT, @@ -28012,7 +28018,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(650), 11, + ACTIONS(658), 11, anon_sym_PIPE_AMP, anon_sym_QMARK, anon_sym_STAR_STAR, @@ -28024,7 +28030,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - ACTIONS(634), 13, + ACTIONS(642), 13, anon_sym_BEGIN, anon_sym_END, anon_sym_BEGINFILE, @@ -28038,7 +28044,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, anon_sym_function, anon_sym_func, - ACTIONS(646), 21, + ACTIONS(654), 21, sym_concatenating_space, ts_builtin_sym_end, anon_sym_COMMA, @@ -28061,11 +28067,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [4711] = 4, - ACTIONS(644), 1, + ACTIONS(652), 1, anon_sym_COLON_COLON, - ACTIONS(888), 1, + ACTIONS(896), 1, anon_sym_LBRACK, - ACTIONS(674), 23, + ACTIONS(682), 23, anon_sym_BEGIN, anon_sym_END, anon_sym_BEGINFILE, @@ -28089,7 +28095,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, anon_sym_function, anon_sym_func, - ACTIONS(676), 34, + ACTIONS(684), 34, sym_concatenating_space, ts_builtin_sym_end, anon_sym_COMMA, @@ -28125,14 +28131,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [4779] = 5, - ACTIONS(884), 1, + ACTIONS(892), 1, anon_sym_LPAREN2, - ACTIONS(888), 1, + ACTIONS(896), 1, anon_sym_LBRACK, - ACTIONS(886), 2, + ACTIONS(894), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(636), 23, + ACTIONS(644), 23, anon_sym_BEGIN, anon_sym_END, anon_sym_BEGINFILE, @@ -28156,7 +28162,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, anon_sym_function, anon_sym_func, - ACTIONS(650), 32, + ACTIONS(658), 32, sym_concatenating_space, ts_builtin_sym_end, anon_sym_COMMA, @@ -28194,17 +28200,17 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(314), 1, anon_sym_getline, - ACTIONS(654), 1, + ACTIONS(662), 1, anon_sym_LPAREN, - ACTIONS(658), 1, + ACTIONS(666), 1, anon_sym_SLASH, - ACTIONS(662), 1, + ACTIONS(670), 1, anon_sym_DOLLAR, - ACTIONS(664), 1, + ACTIONS(672), 1, anon_sym_AT, - ACTIONS(666), 1, + ACTIONS(674), 1, anon_sym_DQUOTE, - ACTIONS(894), 1, + ACTIONS(902), 1, sym__if_else_separator, STATE(210), 1, sym_ns_qualified_name, @@ -28219,7 +28225,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(332), 2, aux_sym_number_token1, aux_sym_number_token2, - ACTIONS(660), 2, + ACTIONS(668), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, ACTIONS(322), 3, @@ -28247,7 +28253,7 @@ static const uint16_t ts_small_parse_table[] = { sym_regex, sym_regex_constant, sym_indirect_func_call, - ACTIONS(892), 20, + ACTIONS(900), 20, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, @@ -28269,17 +28275,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_printf, anon_sym_POUND, [4947] = 5, - ACTIONS(896), 1, + ACTIONS(904), 1, sym_identifier, STATE(1960), 1, sym_namespace, - ACTIONS(700), 2, + ACTIONS(708), 2, sym_concatenating_space, sym__if_else_separator, STATE(315), 2, sym_array_ref, sym_ns_qualified_name, - ACTIONS(696), 53, + ACTIONS(704), 53, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -28338,17 +28344,17 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(314), 1, anon_sym_getline, - ACTIONS(654), 1, + ACTIONS(662), 1, anon_sym_LPAREN, - ACTIONS(658), 1, + ACTIONS(666), 1, anon_sym_SLASH, - ACTIONS(662), 1, + ACTIONS(670), 1, anon_sym_DOLLAR, - ACTIONS(664), 1, + ACTIONS(672), 1, anon_sym_AT, - ACTIONS(666), 1, + ACTIONS(674), 1, anon_sym_DQUOTE, - ACTIONS(900), 1, + ACTIONS(908), 1, sym__if_else_separator, STATE(210), 1, sym_ns_qualified_name, @@ -28363,7 +28369,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(332), 2, aux_sym_number_token1, aux_sym_number_token2, - ACTIONS(660), 2, + ACTIONS(668), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, ACTIONS(322), 3, @@ -28391,7 +28397,7 @@ static const uint16_t ts_small_parse_table[] = { sym_regex, sym_regex_constant, sym_indirect_func_call, - ACTIONS(898), 20, + ACTIONS(906), 20, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, @@ -28413,11 +28419,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_printf, anon_sym_POUND, [5115] = 4, - ACTIONS(644), 1, + ACTIONS(652), 1, anon_sym_COLON_COLON, - ACTIONS(888), 1, + ACTIONS(896), 1, anon_sym_LBRACK, - ACTIONS(670), 23, + ACTIONS(678), 23, anon_sym_BEGIN, anon_sym_END, anon_sym_BEGINFILE, @@ -28441,7 +28447,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, anon_sym_function, anon_sym_func, - ACTIONS(672), 34, + ACTIONS(680), 34, sym_concatenating_space, ts_builtin_sym_end, anon_sym_COMMA, @@ -28477,7 +28483,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [5183] = 2, - ACTIONS(678), 23, + ACTIONS(686), 23, anon_sym_BEGIN, anon_sym_END, anon_sym_BEGINFILE, @@ -28501,7 +28507,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, anon_sym_function, anon_sym_func, - ACTIONS(680), 36, + ACTIONS(688), 36, sym_concatenating_space, ts_builtin_sym_end, anon_sym_COMMA, @@ -28539,31 +28545,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [5247] = 29, - ACTIONS(902), 1, + ACTIONS(910), 1, ts_builtin_sym_end, - ACTIONS(904), 1, + ACTIONS(912), 1, sym_identifier, - ACTIONS(913), 1, + ACTIONS(921), 1, anon_sym_LPAREN, - ACTIONS(916), 1, + ACTIONS(924), 1, anon_sym_LBRACE, - ACTIONS(919), 1, + ACTIONS(927), 1, anon_sym_getline, - ACTIONS(922), 1, + ACTIONS(930), 1, anon_sym_SLASH, - ACTIONS(928), 1, + ACTIONS(936), 1, anon_sym_BANG, - ACTIONS(934), 1, + ACTIONS(942), 1, anon_sym_DOLLAR, - ACTIONS(937), 1, + ACTIONS(945), 1, anon_sym_AT, - ACTIONS(940), 1, + ACTIONS(948), 1, aux_sym_number_token1, - ACTIONS(943), 1, + ACTIONS(951), 1, aux_sym_number_token2, - ACTIONS(946), 1, + ACTIONS(954), 1, anon_sym_DQUOTE, - ACTIONS(952), 1, + ACTIONS(960), 1, anon_sym_POUND, STATE(401), 1, sym_ns_qualified_name, @@ -28579,23 +28585,23 @@ static const uint16_t ts_small_parse_table[] = { sym_block, STATE(2039), 1, sym_namespace, - ACTIONS(925), 2, + ACTIONS(933), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(931), 2, + ACTIONS(939), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(949), 2, + ACTIONS(957), 2, anon_sym_function, anon_sym_func, STATE(1518), 2, sym_range_pattern, sym__special_pattern, - ACTIONS(910), 3, + ACTIONS(918), 3, anon_sym_ATinclude, anon_sym_ATload, anon_sym_ATnamespace, - ACTIONS(907), 4, + ACTIONS(915), 4, anon_sym_BEGIN, anon_sym_END, anon_sym_BEGINFILE, @@ -28652,7 +28658,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(37), 1, anon_sym_POUND, - ACTIONS(955), 1, + ACTIONS(963), 1, ts_builtin_sym_end, STATE(401), 1, sym_ns_qualified_name, @@ -28717,9 +28723,9 @@ static const uint16_t ts_small_parse_table[] = { sym_regex_constant, sym_indirect_func_call, [5483] = 7, - ACTIONS(957), 1, + ACTIONS(965), 1, sym_identifier, - ACTIONS(959), 1, + ACTIONS(967), 1, anon_sym_LT, STATE(313), 1, sym_ns_qualified_name, @@ -28727,10 +28733,10 @@ static const uint16_t ts_small_parse_table[] = { sym_array_ref, STATE(1960), 1, sym_namespace, - ACTIONS(700), 2, + ACTIONS(708), 2, sym_concatenating_space, sym__if_else_separator, - ACTIONS(696), 52, + ACTIONS(704), 52, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -28784,11 +28790,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [5557] = 7, - ACTIONS(700), 1, + ACTIONS(708), 1, sym_concatenating_space, - ACTIONS(961), 1, + ACTIONS(969), 1, sym_identifier, - ACTIONS(963), 1, + ACTIONS(971), 1, anon_sym_LT, STATE(348), 1, sym_array_ref, @@ -28796,7 +28802,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ns_qualified_name, STATE(1955), 1, sym_namespace, - ACTIONS(696), 52, + ACTIONS(704), 52, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -28850,9 +28856,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [5630] = 3, - ACTIONS(888), 1, + ACTIONS(896), 1, anon_sym_LBRACK, - ACTIONS(670), 22, + ACTIONS(678), 22, anon_sym_BEGIN, anon_sym_END, anon_sym_BEGINFILE, @@ -28875,7 +28881,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, anon_sym_function, anon_sym_func, - ACTIONS(672), 35, + ACTIONS(680), 35, sym_concatenating_space, ts_builtin_sym_end, anon_sym_COMMA, @@ -28912,14 +28918,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [5695] = 4, - ACTIONS(644), 1, + ACTIONS(652), 1, anon_sym_COLON_COLON, - ACTIONS(965), 1, + ACTIONS(973), 1, anon_sym_LBRACK, - ACTIONS(676), 2, + ACTIONS(684), 2, sym_concatenating_space, sym__if_else_separator, - ACTIONS(674), 54, + ACTIONS(682), 54, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -28975,21 +28981,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [5762] = 8, - ACTIONS(708), 1, + ACTIONS(716), 1, anon_sym_EQ, - ACTIONS(888), 1, + ACTIONS(896), 1, anon_sym_LBRACK, - ACTIONS(890), 2, + ACTIONS(898), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(967), 6, + ACTIONS(975), 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(636), 10, + ACTIONS(644), 10, anon_sym_in, anon_sym_LT, anon_sym_GT, @@ -29000,7 +29006,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(634), 11, + ACTIONS(642), 11, anon_sym_BEGIN, anon_sym_END, anon_sym_BEGINFILE, @@ -29012,7 +29018,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, anon_sym_function, anon_sym_func, - ACTIONS(650), 11, + ACTIONS(658), 11, anon_sym_PIPE_AMP, anon_sym_QMARK, anon_sym_STAR_STAR, @@ -29024,7 +29030,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - ACTIONS(646), 16, + ACTIONS(654), 16, sym_concatenating_space, ts_builtin_sym_end, anon_sym_COMMA, @@ -29042,16 +29048,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [5837] = 5, - ACTIONS(700), 1, + ACTIONS(708), 1, sym__if_else_separator, - ACTIONS(969), 1, + ACTIONS(977), 1, sym_identifier, STATE(1959), 1, sym_namespace, STATE(384), 2, sym_array_ref, sym_ns_qualified_name, - ACTIONS(696), 53, + ACTIONS(704), 53, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -29106,14 +29112,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [5906] = 4, - ACTIONS(644), 1, + ACTIONS(652), 1, anon_sym_COLON_COLON, - ACTIONS(965), 1, + ACTIONS(973), 1, anon_sym_LBRACK, - ACTIONS(672), 2, + ACTIONS(680), 2, sym_concatenating_space, sym__if_else_separator, - ACTIONS(670), 54, + ACTIONS(678), 54, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -29169,16 +29175,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [5973] = 5, - ACTIONS(700), 1, + ACTIONS(708), 1, sym_concatenating_space, - ACTIONS(971), 1, + ACTIONS(979), 1, sym_identifier, STATE(1955), 1, sym_namespace, STATE(348), 2, sym_array_ref, sym_ns_qualified_name, - ACTIONS(696), 53, + ACTIONS(704), 53, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -29233,9 +29239,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [6042] = 2, - ACTIONS(714), 1, + ACTIONS(722), 1, sym__if_else_separator, - ACTIONS(712), 57, + ACTIONS(720), 57, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -29294,9 +29300,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [6105] = 2, - ACTIONS(680), 1, + ACTIONS(688), 1, sym__if_else_separator, - ACTIONS(678), 57, + ACTIONS(686), 57, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -29359,15 +29365,15 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(147), 1, anon_sym_getline, - ACTIONS(716), 1, + ACTIONS(724), 1, anon_sym_LPAREN, - ACTIONS(720), 1, + ACTIONS(728), 1, anon_sym_SLASH, - ACTIONS(724), 1, + ACTIONS(732), 1, anon_sym_DOLLAR, - ACTIONS(726), 1, + ACTIONS(734), 1, anon_sym_AT, - ACTIONS(728), 1, + ACTIONS(736), 1, anon_sym_DQUOTE, STATE(239), 1, sym_ns_qualified_name, @@ -29382,7 +29388,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(165), 2, aux_sym_number_token1, aux_sym_number_token2, - ACTIONS(722), 2, + ACTIONS(730), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, ACTIONS(155), 3, @@ -29410,7 +29416,7 @@ static const uint16_t ts_small_parse_table[] = { sym_regex, sym_regex_constant, sym_indirect_func_call, - ACTIONS(898), 20, + ACTIONS(906), 20, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, @@ -29432,12 +29438,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_printf, anon_sym_POUND, [6263] = 6, - ACTIONS(888), 1, + ACTIONS(896), 1, anon_sym_LBRACK, - ACTIONS(890), 2, + ACTIONS(898), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(636), 10, + ACTIONS(644), 10, anon_sym_in, anon_sym_LT, anon_sym_GT, @@ -29448,7 +29454,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(650), 11, + ACTIONS(658), 11, anon_sym_PIPE_AMP, anon_sym_QMARK, anon_sym_STAR_STAR, @@ -29460,7 +29466,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - ACTIONS(634), 12, + ACTIONS(642), 12, anon_sym_BEGIN, anon_sym_END, anon_sym_BEGINFILE, @@ -29473,7 +29479,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, anon_sym_function, anon_sym_func, - ACTIONS(646), 22, + ACTIONS(654), 22, sym_concatenating_space, ts_builtin_sym_end, anon_sym_COMMA, @@ -29497,7 +29503,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [6334] = 2, - ACTIONS(712), 22, + ACTIONS(720), 22, anon_sym_BEGIN, anon_sym_END, anon_sym_BEGINFILE, @@ -29520,7 +29526,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, anon_sym_function, anon_sym_func, - ACTIONS(714), 36, + ACTIONS(722), 36, sym_concatenating_space, ts_builtin_sym_end, anon_sym_COMMA, @@ -29558,9 +29564,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [6397] = 3, - ACTIONS(888), 1, + ACTIONS(896), 1, anon_sym_LBRACK, - ACTIONS(674), 22, + ACTIONS(682), 22, anon_sym_BEGIN, anon_sym_END, anon_sym_BEGINFILE, @@ -29583,7 +29589,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, anon_sym_function, anon_sym_func, - ACTIONS(676), 35, + ACTIONS(684), 35, sym_concatenating_space, ts_builtin_sym_end, anon_sym_COMMA, @@ -29620,16 +29626,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [6462] = 5, - ACTIONS(644), 1, + ACTIONS(652), 1, anon_sym_COLON_COLON, - ACTIONS(965), 1, - anon_sym_LBRACK, ACTIONS(973), 1, + anon_sym_LBRACK, + ACTIONS(981), 1, anon_sym_LT, - ACTIONS(672), 2, + ACTIONS(680), 2, sym_concatenating_space, sym__if_else_separator, - ACTIONS(670), 53, + ACTIONS(678), 53, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -29688,15 +29694,15 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(147), 1, anon_sym_getline, - ACTIONS(716), 1, + ACTIONS(724), 1, anon_sym_LPAREN, - ACTIONS(720), 1, + ACTIONS(728), 1, anon_sym_SLASH, - ACTIONS(724), 1, + ACTIONS(732), 1, anon_sym_DOLLAR, - ACTIONS(726), 1, + ACTIONS(734), 1, anon_sym_AT, - ACTIONS(728), 1, + ACTIONS(736), 1, anon_sym_DQUOTE, STATE(239), 1, sym_ns_qualified_name, @@ -29711,7 +29717,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(165), 2, aux_sym_number_token1, aux_sym_number_token2, - ACTIONS(722), 2, + ACTIONS(730), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, ACTIONS(155), 3, @@ -29739,7 +29745,7 @@ static const uint16_t ts_small_parse_table[] = { sym_regex, sym_regex_constant, sym_indirect_func_call, - ACTIONS(892), 20, + ACTIONS(900), 20, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, @@ -29761,11 +29767,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_printf, anon_sym_POUND, [6626] = 7, - ACTIONS(700), 1, + ACTIONS(708), 1, sym__if_else_separator, - ACTIONS(975), 1, + ACTIONS(983), 1, sym_identifier, - ACTIONS(977), 1, + ACTIONS(985), 1, anon_sym_LT, STATE(347), 1, sym_ns_qualified_name, @@ -29773,7 +29779,7 @@ static const uint16_t ts_small_parse_table[] = { sym_array_ref, STATE(1959), 1, sym_namespace, - ACTIONS(696), 52, + ACTIONS(704), 52, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -29827,12 +29833,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [6699] = 4, - ACTIONS(888), 1, + ACTIONS(896), 1, anon_sym_LBRACK, - ACTIONS(886), 2, + ACTIONS(894), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(636), 22, + ACTIONS(644), 22, anon_sym_BEGIN, anon_sym_END, anon_sym_BEGINFILE, @@ -29855,7 +29861,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, anon_sym_function, anon_sym_func, - ACTIONS(650), 33, + ACTIONS(658), 33, sym_concatenating_space, ts_builtin_sym_end, anon_sym_COMMA, @@ -29890,7 +29896,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [6766] = 2, - ACTIONS(740), 22, + ACTIONS(748), 22, anon_sym_BEGIN, anon_sym_END, anon_sym_BEGINFILE, @@ -29913,7 +29919,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, anon_sym_function, anon_sym_func, - ACTIONS(742), 35, + ACTIONS(750), 35, sym_concatenating_space, ts_builtin_sym_end, anon_sym_COMMA, @@ -29950,7 +29956,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [6828] = 2, - ACTIONS(800), 22, + ACTIONS(808), 22, anon_sym_BEGIN, anon_sym_END, anon_sym_BEGINFILE, @@ -29973,7 +29979,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, anon_sym_function, anon_sym_func, - ACTIONS(802), 35, + ACTIONS(810), 35, sym_concatenating_space, ts_builtin_sym_end, anon_sym_COMMA, @@ -30010,7 +30016,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [6890] = 1, - ACTIONS(712), 57, + ACTIONS(720), 57, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -30069,7 +30075,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [6950] = 2, - ACTIONS(776), 22, + ACTIONS(784), 22, anon_sym_BEGIN, anon_sym_END, anon_sym_BEGINFILE, @@ -30092,7 +30098,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, anon_sym_function, anon_sym_func, - ACTIONS(778), 35, + ACTIONS(786), 35, sym_concatenating_space, ts_builtin_sym_end, anon_sym_COMMA, @@ -30129,14 +30135,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [7012] = 4, - ACTIONS(965), 1, - anon_sym_LBRACK, ACTIONS(973), 1, + anon_sym_LBRACK, + ACTIONS(981), 1, anon_sym_LT, - ACTIONS(672), 2, + ACTIONS(680), 2, sym_concatenating_space, sym__if_else_separator, - ACTIONS(670), 53, + ACTIONS(678), 53, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -30191,7 +30197,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [7078] = 2, - ACTIONS(788), 22, + ACTIONS(796), 22, anon_sym_BEGIN, anon_sym_END, anon_sym_BEGINFILE, @@ -30214,7 +30220,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, anon_sym_function, anon_sym_func, - ACTIONS(790), 35, + ACTIONS(798), 35, sym_concatenating_space, ts_builtin_sym_end, anon_sym_COMMA, @@ -30251,12 +30257,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [7140] = 3, - ACTIONS(965), 1, + ACTIONS(973), 1, anon_sym_LBRACK, - ACTIONS(672), 2, + ACTIONS(680), 2, sym_concatenating_space, sym__if_else_separator, - ACTIONS(670), 54, + ACTIONS(678), 54, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -30312,7 +30318,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [7204] = 2, - ACTIONS(784), 22, + ACTIONS(792), 22, anon_sym_BEGIN, anon_sym_END, anon_sym_BEGINFILE, @@ -30335,7 +30341,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, anon_sym_function, anon_sym_func, - ACTIONS(786), 35, + ACTIONS(794), 35, sym_concatenating_space, ts_builtin_sym_end, anon_sym_COMMA, @@ -30372,7 +30378,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [7266] = 4, - ACTIONS(636), 10, + ACTIONS(644), 10, anon_sym_in, anon_sym_LT, anon_sym_GT, @@ -30383,7 +30389,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(650), 11, + ACTIONS(658), 11, anon_sym_PIPE_AMP, anon_sym_QMARK, anon_sym_STAR_STAR, @@ -30395,7 +30401,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - ACTIONS(634), 12, + ACTIONS(642), 12, anon_sym_BEGIN, anon_sym_END, anon_sym_BEGINFILE, @@ -30408,7 +30414,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, anon_sym_function, anon_sym_func, - ACTIONS(646), 24, + ACTIONS(654), 24, sym_concatenating_space, ts_builtin_sym_end, anon_sym_COMMA, @@ -30434,15 +30440,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [7332] = 5, - ACTIONS(644), 1, + ACTIONS(652), 1, anon_sym_COLON_COLON, - ACTIONS(672), 1, + ACTIONS(680), 1, sym__if_else_separator, - ACTIONS(979), 1, + ACTIONS(987), 1, anon_sym_LT, - ACTIONS(981), 1, + ACTIONS(989), 1, anon_sym_LBRACK, - ACTIONS(670), 53, + ACTIONS(678), 53, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -30497,10 +30503,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [7400] = 2, - ACTIONS(714), 2, + ACTIONS(722), 2, sym_concatenating_space, sym__if_else_separator, - ACTIONS(712), 55, + ACTIONS(720), 55, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -30557,7 +30563,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [7462] = 2, - ACTIONS(804), 22, + ACTIONS(812), 22, anon_sym_BEGIN, anon_sym_END, anon_sym_BEGINFILE, @@ -30580,7 +30586,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, anon_sym_function, anon_sym_func, - ACTIONS(806), 35, + ACTIONS(814), 35, sym_concatenating_space, ts_builtin_sym_end, anon_sym_COMMA, @@ -30617,7 +30623,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [7524] = 2, - ACTIONS(736), 22, + ACTIONS(744), 22, anon_sym_BEGIN, anon_sym_END, anon_sym_BEGINFILE, @@ -30640,7 +30646,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, anon_sym_function, anon_sym_func, - ACTIONS(738), 35, + ACTIONS(746), 35, sym_concatenating_space, ts_builtin_sym_end, anon_sym_COMMA, @@ -30677,19 +30683,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [7586] = 7, - ACTIONS(708), 1, + ACTIONS(716), 1, anon_sym_EQ, - ACTIONS(890), 2, + ACTIONS(898), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(967), 6, + ACTIONS(975), 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(636), 10, + ACTIONS(644), 10, anon_sym_in, anon_sym_LT, anon_sym_GT, @@ -30700,7 +30706,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(634), 11, + ACTIONS(642), 11, anon_sym_BEGIN, anon_sym_END, anon_sym_BEGINFILE, @@ -30712,7 +30718,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, anon_sym_function, anon_sym_func, - ACTIONS(650), 11, + ACTIONS(658), 11, anon_sym_PIPE_AMP, anon_sym_QMARK, anon_sym_STAR_STAR, @@ -30724,7 +30730,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - ACTIONS(646), 16, + ACTIONS(654), 16, sym_concatenating_space, ts_builtin_sym_end, anon_sym_COMMA, @@ -30742,12 +30748,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [7658] = 3, - ACTIONS(983), 1, + ACTIONS(991), 1, sym_regex_flags, - ACTIONS(820), 2, + ACTIONS(828), 2, sym_concatenating_space, sym__if_else_separator, - ACTIONS(816), 54, + ACTIONS(824), 54, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -30803,13 +30809,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [7722] = 4, - ACTIONS(644), 1, + ACTIONS(652), 1, anon_sym_COLON_COLON, - ACTIONS(672), 1, + ACTIONS(680), 1, sym__if_else_separator, - ACTIONS(981), 1, + ACTIONS(989), 1, anon_sym_LBRACK, - ACTIONS(670), 54, + ACTIONS(678), 54, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -30865,7 +30871,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [7788] = 2, - ACTIONS(808), 22, + ACTIONS(816), 22, anon_sym_BEGIN, anon_sym_END, anon_sym_BEGINFILE, @@ -30888,7 +30894,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, anon_sym_function, anon_sym_func, - ACTIONS(810), 35, + ACTIONS(818), 35, sym_concatenating_space, ts_builtin_sym_end, anon_sym_COMMA, @@ -30925,10 +30931,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [7850] = 2, - ACTIONS(680), 2, + ACTIONS(688), 2, sym_concatenating_space, sym__if_else_separator, - ACTIONS(678), 55, + ACTIONS(686), 55, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -30985,10 +30991,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [7912] = 5, - ACTIONS(890), 2, + ACTIONS(898), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(636), 10, + ACTIONS(644), 10, anon_sym_in, anon_sym_LT, anon_sym_GT, @@ -30999,7 +31005,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(650), 11, + ACTIONS(658), 11, anon_sym_PIPE_AMP, anon_sym_QMARK, anon_sym_STAR_STAR, @@ -31011,7 +31017,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - ACTIONS(634), 12, + ACTIONS(642), 12, anon_sym_BEGIN, anon_sym_END, anon_sym_BEGINFILE, @@ -31024,7 +31030,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, anon_sym_function, anon_sym_func, - ACTIONS(646), 22, + ACTIONS(654), 22, sym_concatenating_space, ts_builtin_sym_end, anon_sym_COMMA, @@ -31048,7 +31054,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [7980] = 1, - ACTIONS(678), 57, + ACTIONS(686), 57, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -31107,13 +31113,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [8040] = 4, - ACTIONS(644), 1, + ACTIONS(652), 1, anon_sym_COLON_COLON, - ACTIONS(676), 1, + ACTIONS(684), 1, sym__if_else_separator, - ACTIONS(981), 1, + ACTIONS(989), 1, anon_sym_LBRACK, - ACTIONS(674), 54, + ACTIONS(682), 54, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -31169,15 +31175,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [8106] = 5, - ACTIONS(644), 1, + ACTIONS(652), 1, anon_sym_COLON_COLON, - ACTIONS(672), 1, + ACTIONS(680), 1, sym_concatenating_space, - ACTIONS(985), 1, + ACTIONS(993), 1, anon_sym_LT, - ACTIONS(987), 1, + ACTIONS(995), 1, anon_sym_LBRACK, - ACTIONS(670), 53, + ACTIONS(678), 53, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -31232,9 +31238,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [8174] = 6, - ACTIONS(989), 1, + ACTIONS(997), 1, sym_identifier, - ACTIONS(991), 1, + ACTIONS(999), 1, anon_sym_LT, STATE(423), 1, sym_ns_qualified_name, @@ -31242,7 +31248,7 @@ static const uint16_t ts_small_parse_table[] = { sym_array_ref, STATE(1949), 1, sym_namespace, - ACTIONS(696), 52, + ACTIONS(704), 52, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -31296,14 +31302,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [8244] = 4, - ACTIONS(993), 1, + ACTIONS(1001), 1, sym_identifier, STATE(1949), 1, sym_namespace, STATE(425), 2, sym_array_ref, sym_ns_qualified_name, - ACTIONS(696), 53, + ACTIONS(704), 53, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -31358,7 +31364,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [8310] = 2, - ACTIONS(764), 22, + ACTIONS(772), 22, anon_sym_BEGIN, anon_sym_END, anon_sym_BEGINFILE, @@ -31381,7 +31387,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, anon_sym_function, anon_sym_func, - ACTIONS(766), 35, + ACTIONS(774), 35, sym_concatenating_space, ts_builtin_sym_end, anon_sym_COMMA, @@ -31418,13 +31424,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [8372] = 4, - ACTIONS(644), 1, + ACTIONS(652), 1, anon_sym_COLON_COLON, - ACTIONS(672), 1, + ACTIONS(680), 1, sym_concatenating_space, - ACTIONS(987), 1, + ACTIONS(995), 1, anon_sym_LBRACK, - ACTIONS(670), 54, + ACTIONS(678), 54, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -31480,7 +31486,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [8438] = 2, - ACTIONS(674), 22, + ACTIONS(682), 22, anon_sym_BEGIN, anon_sym_END, anon_sym_BEGINFILE, @@ -31503,7 +31509,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, anon_sym_function, anon_sym_func, - ACTIONS(676), 35, + ACTIONS(684), 35, sym_concatenating_space, ts_builtin_sym_end, anon_sym_COMMA, @@ -31540,12 +31546,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [8500] = 3, - ACTIONS(965), 1, + ACTIONS(973), 1, anon_sym_LBRACK, - ACTIONS(676), 2, + ACTIONS(684), 2, sym_concatenating_space, sym__if_else_separator, - ACTIONS(674), 54, + ACTIONS(682), 54, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -31601,7 +31607,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [8564] = 2, - ACTIONS(756), 22, + ACTIONS(764), 22, anon_sym_BEGIN, anon_sym_END, anon_sym_BEGINFILE, @@ -31624,7 +31630,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, anon_sym_function, anon_sym_func, - ACTIONS(758), 35, + ACTIONS(766), 35, sym_concatenating_space, ts_builtin_sym_end, anon_sym_COMMA, @@ -31661,7 +31667,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [8626] = 2, - ACTIONS(772), 22, + ACTIONS(780), 22, anon_sym_BEGIN, anon_sym_END, anon_sym_BEGINFILE, @@ -31684,7 +31690,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, anon_sym_function, anon_sym_func, - ACTIONS(774), 35, + ACTIONS(782), 35, sym_concatenating_space, ts_builtin_sym_end, anon_sym_COMMA, @@ -31721,10 +31727,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [8688] = 3, - ACTIONS(886), 2, + ACTIONS(894), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(636), 22, + ACTIONS(644), 22, anon_sym_BEGIN, anon_sym_END, anon_sym_BEGINFILE, @@ -31747,7 +31753,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, anon_sym_function, anon_sym_func, - ACTIONS(650), 33, + ACTIONS(658), 33, sym_concatenating_space, ts_builtin_sym_end, anon_sym_COMMA, @@ -31782,7 +31788,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [8752] = 2, - ACTIONS(732), 22, + ACTIONS(740), 22, anon_sym_BEGIN, anon_sym_END, anon_sym_BEGINFILE, @@ -31805,7 +31811,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, anon_sym_function, anon_sym_func, - ACTIONS(734), 35, + ACTIONS(742), 35, sym_concatenating_space, ts_builtin_sym_end, anon_sym_COMMA, @@ -31842,13 +31848,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [8814] = 4, - ACTIONS(644), 1, + ACTIONS(652), 1, anon_sym_COLON_COLON, - ACTIONS(676), 1, + ACTIONS(684), 1, sym_concatenating_space, - ACTIONS(987), 1, + ACTIONS(995), 1, anon_sym_LBRACK, - ACTIONS(674), 54, + ACTIONS(682), 54, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -31904,7 +31910,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [8880] = 2, - ACTIONS(796), 22, + ACTIONS(804), 22, anon_sym_BEGIN, anon_sym_END, anon_sym_BEGINFILE, @@ -31927,7 +31933,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, anon_sym_function, anon_sym_func, - ACTIONS(798), 35, + ACTIONS(806), 35, sym_concatenating_space, ts_builtin_sym_end, anon_sym_COMMA, @@ -31964,7 +31970,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [8942] = 2, - ACTIONS(780), 22, + ACTIONS(788), 22, anon_sym_BEGIN, anon_sym_END, anon_sym_BEGINFILE, @@ -31987,7 +31993,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, anon_sym_function, anon_sym_func, - ACTIONS(782), 35, + ACTIONS(790), 35, sym_concatenating_space, ts_builtin_sym_end, anon_sym_COMMA, @@ -32024,7 +32030,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [9004] = 2, - ACTIONS(768), 22, + ACTIONS(776), 22, anon_sym_BEGIN, anon_sym_END, anon_sym_BEGINFILE, @@ -32047,7 +32053,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, anon_sym_function, anon_sym_func, - ACTIONS(770), 35, + ACTIONS(778), 35, sym_concatenating_space, ts_builtin_sym_end, anon_sym_COMMA, @@ -32084,7 +32090,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [9066] = 2, - ACTIONS(792), 22, + ACTIONS(800), 22, anon_sym_BEGIN, anon_sym_END, anon_sym_BEGINFILE, @@ -32107,7 +32113,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, anon_sym_function, anon_sym_func, - ACTIONS(794), 35, + ACTIONS(802), 35, sym_concatenating_space, ts_builtin_sym_end, anon_sym_COMMA, @@ -32144,10 +32150,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [9128] = 2, - ACTIONS(802), 2, + ACTIONS(810), 2, sym_concatenating_space, sym__if_else_separator, - ACTIONS(800), 54, + ACTIONS(808), 54, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -32203,13 +32209,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [9189] = 4, - ACTIONS(672), 1, + ACTIONS(680), 1, sym__if_else_separator, - ACTIONS(979), 1, + ACTIONS(987), 1, anon_sym_LT, - ACTIONS(981), 1, + ACTIONS(989), 1, anon_sym_LBRACK, - ACTIONS(670), 53, + ACTIONS(678), 53, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -32264,11 +32270,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [9254] = 3, - ACTIONS(672), 1, + ACTIONS(680), 1, sym_concatenating_space, - ACTIONS(987), 1, + ACTIONS(995), 1, anon_sym_LBRACK, - ACTIONS(670), 54, + ACTIONS(678), 54, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -32324,13 +32330,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [9317] = 4, - ACTIONS(672), 1, + ACTIONS(680), 1, sym_concatenating_space, - ACTIONS(985), 1, + ACTIONS(993), 1, anon_sym_LT, - ACTIONS(987), 1, + ACTIONS(995), 1, anon_sym_LBRACK, - ACTIONS(670), 53, + ACTIONS(678), 53, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -32385,10 +32391,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [9382] = 2, - ACTIONS(734), 2, + ACTIONS(742), 2, sym_concatenating_space, sym__if_else_separator, - ACTIONS(732), 54, + ACTIONS(740), 54, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -32444,10 +32450,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [9443] = 2, - ACTIONS(790), 2, + ACTIONS(798), 2, sym_concatenating_space, sym__if_else_separator, - ACTIONS(788), 54, + ACTIONS(796), 54, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -32503,10 +32509,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [9504] = 2, - ACTIONS(786), 2, + ACTIONS(794), 2, sym_concatenating_space, sym__if_else_separator, - ACTIONS(784), 54, + ACTIONS(792), 54, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -32562,27 +32568,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [9565] = 9, - ACTIONS(644), 1, + ACTIONS(652), 1, anon_sym_COLON_COLON, - ACTIONS(888), 1, + ACTIONS(896), 1, anon_sym_LBRACK, - ACTIONS(995), 1, + ACTIONS(1003), 1, anon_sym_LPAREN2, - ACTIONS(999), 1, + ACTIONS(1007), 1, anon_sym_EQ, - ACTIONS(1003), 1, + ACTIONS(1011), 1, sym_concatenating_space, - ACTIONS(997), 2, + ACTIONS(1005), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1001), 6, + ACTIONS(1009), 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(650), 21, + ACTIONS(658), 21, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_ATinclude, @@ -32604,7 +32610,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - ACTIONS(636), 22, + ACTIONS(644), 22, anon_sym_BEGIN, anon_sym_END, anon_sym_BEGINFILE, @@ -32628,41 +32634,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_function, anon_sym_func, [9640] = 12, - ACTIONS(1005), 1, + ACTIONS(1013), 1, anon_sym_in, - ACTIONS(1011), 1, + ACTIONS(1019), 1, anon_sym_QMARK, - ACTIONS(1021), 1, + ACTIONS(1029), 1, anon_sym_AMP_AMP, - ACTIONS(1023), 1, + ACTIONS(1031), 1, anon_sym_PIPE_PIPE, - ACTIONS(848), 2, + ACTIONS(856), 2, sym_concatenating_space, sym__if_else_separator, - ACTIONS(1009), 2, + ACTIONS(1017), 2, anon_sym_PIPE, anon_sym_PIPE_AMP, - ACTIONS(1013), 2, + ACTIONS(1021), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(1017), 2, + ACTIONS(1025), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1019), 2, + ACTIONS(1027), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(1015), 3, + ACTIONS(1023), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1007), 6, + ACTIONS(1015), 6, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(836), 33, + ACTIONS(844), 33, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -32697,10 +32703,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [9721] = 2, - ACTIONS(676), 2, + ACTIONS(684), 2, sym_concatenating_space, sym__if_else_separator, - ACTIONS(674), 54, + ACTIONS(682), 54, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -32756,10 +32762,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [9782] = 2, - ACTIONS(738), 2, + ACTIONS(746), 2, sym_concatenating_space, sym__if_else_separator, - ACTIONS(736), 54, + ACTIONS(744), 54, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -32815,38 +32821,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [9843] = 11, - ACTIONS(1005), 1, + ACTIONS(1013), 1, anon_sym_in, - ACTIONS(1011), 1, + ACTIONS(1019), 1, anon_sym_QMARK, - ACTIONS(1021), 1, + ACTIONS(1029), 1, anon_sym_AMP_AMP, - ACTIONS(1023), 1, + ACTIONS(1031), 1, anon_sym_PIPE_PIPE, - ACTIONS(852), 2, + ACTIONS(860), 2, sym_concatenating_space, sym__if_else_separator, - ACTIONS(1013), 2, + ACTIONS(1021), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(1017), 2, + ACTIONS(1025), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1019), 2, + ACTIONS(1027), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(1015), 3, + ACTIONS(1023), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1007), 6, + ACTIONS(1015), 6, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(850), 35, + ACTIONS(858), 35, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -32883,10 +32889,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [9922] = 2, - ACTIONS(742), 2, + ACTIONS(750), 2, sym_concatenating_space, sym__if_else_separator, - ACTIONS(740), 54, + ACTIONS(748), 54, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -32942,10 +32948,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [9983] = 3, - ACTIONS(646), 2, + ACTIONS(654), 2, sym_concatenating_space, sym__if_else_separator, - ACTIONS(636), 21, + ACTIONS(644), 21, anon_sym_in, anon_sym_LT, anon_sym_GT, @@ -32967,7 +32973,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - ACTIONS(634), 33, + ACTIONS(642), 33, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -33002,10 +33008,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [10046] = 2, - ACTIONS(778), 2, + ACTIONS(786), 2, sym_concatenating_space, sym__if_else_separator, - ACTIONS(776), 54, + ACTIONS(784), 54, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -33061,11 +33067,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [10107] = 3, - ACTIONS(644), 1, + ACTIONS(652), 1, anon_sym_COLON_COLON, - ACTIONS(1025), 1, + ACTIONS(1033), 1, anon_sym_LBRACK, - ACTIONS(670), 54, + ACTIONS(678), 54, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -33121,11 +33127,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [10170] = 3, - ACTIONS(676), 1, + ACTIONS(684), 1, sym__if_else_separator, - ACTIONS(981), 1, + ACTIONS(989), 1, anon_sym_LBRACK, - ACTIONS(674), 54, + ACTIONS(682), 54, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -33181,30 +33187,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [10233] = 7, - ACTIONS(834), 2, + ACTIONS(842), 2, sym_concatenating_space, sym__if_else_separator, - ACTIONS(1013), 2, + ACTIONS(1021), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(1017), 2, + ACTIONS(1025), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1019), 2, + ACTIONS(1027), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(1015), 3, + ACTIONS(1023), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1007), 6, + ACTIONS(1015), 6, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(830), 39, + ACTIONS(838), 39, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -33245,9 +33251,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [10304] = 2, - ACTIONS(714), 1, + ACTIONS(722), 1, sym_concatenating_space, - ACTIONS(712), 55, + ACTIONS(720), 55, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -33304,11 +33310,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [10365] = 3, - ACTIONS(644), 1, + ACTIONS(652), 1, anon_sym_COLON_COLON, - ACTIONS(1025), 1, + ACTIONS(1033), 1, anon_sym_LBRACK, - ACTIONS(674), 54, + ACTIONS(682), 54, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -33364,25 +33370,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [10428] = 8, - ACTIONS(644), 1, + ACTIONS(652), 1, anon_sym_COLON_COLON, - ACTIONS(888), 1, + ACTIONS(896), 1, anon_sym_LBRACK, - ACTIONS(995), 1, + ACTIONS(1003), 1, anon_sym_LPAREN2, - ACTIONS(1029), 1, + ACTIONS(1037), 1, anon_sym_EQ, - ACTIONS(1027), 2, + ACTIONS(1035), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1031), 6, + ACTIONS(1039), 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(636), 22, + ACTIONS(644), 22, anon_sym_BEGIN, anon_sym_END, anon_sym_BEGINFILE, @@ -33405,7 +33411,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, anon_sym_function, anon_sym_func, - ACTIONS(650), 22, + ACTIONS(658), 22, sym_concatenating_space, ts_builtin_sym_end, anon_sym_COMMA, @@ -33429,9 +33435,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [10501] = 7, - ACTIONS(1033), 1, + ACTIONS(1041), 1, sym_identifier, - ACTIONS(1035), 1, + ACTIONS(1043), 1, anon_sym_LT, STATE(293), 1, sym_array_ref, @@ -33439,7 +33445,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ns_qualified_name, STATE(1952), 1, sym_namespace, - ACTIONS(696), 20, + ACTIONS(704), 20, anon_sym_BEGIN, anon_sym_END, anon_sym_BEGINFILE, @@ -33460,7 +33466,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, anon_sym_function, anon_sym_func, - ACTIONS(700), 31, + ACTIONS(708), 31, sym_concatenating_space, ts_builtin_sym_end, anon_sym_COMMA, @@ -33493,34 +33499,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [10572] = 9, - ACTIONS(1005), 1, + ACTIONS(1013), 1, anon_sym_in, - ACTIONS(1021), 1, + ACTIONS(1029), 1, anon_sym_AMP_AMP, - ACTIONS(766), 2, + ACTIONS(774), 2, sym_concatenating_space, sym__if_else_separator, - ACTIONS(1013), 2, + ACTIONS(1021), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(1017), 2, + ACTIONS(1025), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1019), 2, + ACTIONS(1027), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(1015), 3, + ACTIONS(1023), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1007), 6, + ACTIONS(1015), 6, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(764), 37, + ACTIONS(772), 37, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -33559,11 +33565,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [10647] = 3, - ACTIONS(820), 1, + ACTIONS(828), 1, sym_concatenating_space, - ACTIONS(1037), 1, + ACTIONS(1045), 1, sym_regex_flags, - ACTIONS(816), 54, + ACTIONS(824), 54, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -33619,9 +33625,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [10710] = 2, - ACTIONS(680), 1, + ACTIONS(688), 1, sym_concatenating_space, - ACTIONS(678), 55, + ACTIONS(686), 55, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -33678,30 +33684,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [10771] = 7, - ACTIONS(860), 2, + ACTIONS(868), 2, sym_concatenating_space, sym__if_else_separator, - ACTIONS(1013), 2, + ACTIONS(1021), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(1017), 2, + ACTIONS(1025), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1019), 2, + ACTIONS(1027), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(1015), 3, + ACTIONS(1023), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1007), 6, + ACTIONS(1015), 6, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(858), 39, + ACTIONS(866), 39, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -33742,20 +33748,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [10842] = 5, - ACTIONS(856), 2, + ACTIONS(864), 2, sym_concatenating_space, sym__if_else_separator, - ACTIONS(1013), 2, + ACTIONS(1021), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(1017), 2, + ACTIONS(1025), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1015), 3, + ACTIONS(1023), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(854), 47, + ACTIONS(862), 47, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -33804,32 +33810,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [10909] = 8, - ACTIONS(1005), 1, + ACTIONS(1013), 1, anon_sym_in, - ACTIONS(766), 2, + ACTIONS(774), 2, sym_concatenating_space, sym__if_else_separator, - ACTIONS(1013), 2, + ACTIONS(1021), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(1017), 2, + ACTIONS(1025), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1019), 2, + ACTIONS(1027), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(1015), 3, + ACTIONS(1023), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1007), 6, + ACTIONS(1015), 6, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(764), 38, + ACTIONS(772), 38, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -33869,27 +33875,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [10982] = 6, - ACTIONS(766), 2, + ACTIONS(774), 2, sym_concatenating_space, sym__if_else_separator, - ACTIONS(1013), 2, + ACTIONS(1021), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(1017), 2, + ACTIONS(1025), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1015), 3, + ACTIONS(1023), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1007), 6, + ACTIONS(1015), 6, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(764), 41, + ACTIONS(772), 41, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -33932,10 +33938,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [11051] = 2, - ACTIONS(782), 2, + ACTIONS(790), 2, sym_concatenating_space, sym__if_else_separator, - ACTIONS(780), 54, + ACTIONS(788), 54, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -33991,10 +33997,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [11112] = 2, - ACTIONS(806), 2, + ACTIONS(814), 2, sym_concatenating_space, sym__if_else_separator, - ACTIONS(804), 54, + ACTIONS(812), 54, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -34050,10 +34056,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [11173] = 2, - ACTIONS(770), 2, + ACTIONS(778), 2, sym_concatenating_space, sym__if_else_separator, - ACTIONS(768), 54, + ACTIONS(776), 54, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -34109,17 +34115,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [11234] = 4, - ACTIONS(766), 2, + ACTIONS(774), 2, sym_concatenating_space, sym__if_else_separator, - ACTIONS(1013), 2, + ACTIONS(1021), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(1015), 3, + ACTIONS(1023), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(764), 49, + ACTIONS(772), 49, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -34170,10 +34176,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [11299] = 2, - ACTIONS(810), 2, + ACTIONS(818), 2, sym_concatenating_space, sym__if_else_separator, - ACTIONS(808), 54, + ACTIONS(816), 54, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -34229,11 +34235,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [11360] = 3, - ACTIONS(650), 1, + ACTIONS(658), 1, sym__if_else_separator, - ACTIONS(706), 1, + ACTIONS(714), 1, sym_concatenating_space, - ACTIONS(636), 54, + ACTIONS(644), 54, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -34289,20 +34295,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [11423] = 5, - ACTIONS(766), 2, + ACTIONS(774), 2, sym_concatenating_space, sym__if_else_separator, - ACTIONS(1013), 2, + ACTIONS(1021), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(1017), 2, + ACTIONS(1025), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1015), 3, + ACTIONS(1023), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(764), 47, + ACTIONS(772), 47, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -34351,10 +34357,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [11490] = 2, - ACTIONS(794), 2, + ACTIONS(802), 2, sym_concatenating_space, sym__if_else_separator, - ACTIONS(792), 54, + ACTIONS(800), 54, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -34410,10 +34416,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [11551] = 2, - ACTIONS(766), 2, + ACTIONS(774), 2, sym_concatenating_space, sym__if_else_separator, - ACTIONS(764), 54, + ACTIONS(772), 54, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -34469,11 +34475,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [11612] = 3, - ACTIONS(672), 1, + ACTIONS(680), 1, sym__if_else_separator, - ACTIONS(981), 1, + ACTIONS(989), 1, anon_sym_LBRACK, - ACTIONS(670), 54, + ACTIONS(678), 54, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -34529,10 +34535,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [11675] = 2, - ACTIONS(798), 2, + ACTIONS(806), 2, sym_concatenating_space, sym__if_else_separator, - ACTIONS(796), 54, + ACTIONS(804), 54, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -34588,13 +34594,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [11736] = 3, - ACTIONS(766), 2, + ACTIONS(774), 2, sym_concatenating_space, sym__if_else_separator, - ACTIONS(1013), 2, + ACTIONS(1021), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(764), 52, + ACTIONS(772), 52, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -34648,25 +34654,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [11799] = 10, - ACTIONS(644), 1, + ACTIONS(652), 1, anon_sym_COLON_COLON, - ACTIONS(708), 1, + ACTIONS(716), 1, anon_sym_EQ, - ACTIONS(888), 1, + ACTIONS(896), 1, anon_sym_LBRACK, - ACTIONS(995), 1, + ACTIONS(1003), 1, anon_sym_LPAREN2, - ACTIONS(890), 2, + ACTIONS(898), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(967), 6, + ACTIONS(975), 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(636), 10, + ACTIONS(644), 10, anon_sym_in, anon_sym_LT, anon_sym_GT, @@ -34677,7 +34683,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(646), 11, + ACTIONS(654), 11, sym_concatenating_space, ts_builtin_sym_end, anon_sym_COMMA, @@ -34689,7 +34695,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - ACTIONS(650), 11, + ACTIONS(658), 11, anon_sym_PIPE_AMP, anon_sym_QMARK, anon_sym_STAR_STAR, @@ -34701,7 +34707,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - ACTIONS(634), 12, + ACTIONS(642), 12, anon_sym_BEGIN, anon_sym_END, anon_sym_BEGINFILE, @@ -34715,10 +34721,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_function, anon_sym_func, [11876] = 2, - ACTIONS(774), 2, + ACTIONS(782), 2, sym_concatenating_space, sym__if_else_separator, - ACTIONS(772), 54, + ACTIONS(780), 54, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -34774,14 +34780,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [11937] = 5, - ACTIONS(1039), 1, + ACTIONS(1047), 1, sym_identifier, STATE(1952), 1, sym_namespace, STATE(293), 2, sym_array_ref, sym_ns_qualified_name, - ACTIONS(696), 21, + ACTIONS(704), 21, anon_sym_BEGIN, anon_sym_END, anon_sym_BEGINFILE, @@ -34803,7 +34809,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, anon_sym_function, anon_sym_func, - ACTIONS(700), 31, + ACTIONS(708), 31, sym_concatenating_space, ts_builtin_sym_end, anon_sym_COMMA, @@ -34836,11 +34842,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [12004] = 3, - ACTIONS(820), 1, + ACTIONS(828), 1, sym__if_else_separator, - ACTIONS(1041), 1, + ACTIONS(1049), 1, sym_regex_flags, - ACTIONS(816), 54, + ACTIONS(824), 54, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -34896,11 +34902,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [12067] = 3, - ACTIONS(676), 1, + ACTIONS(684), 1, sym_concatenating_space, - ACTIONS(987), 1, + ACTIONS(995), 1, anon_sym_LBRACK, - ACTIONS(674), 54, + ACTIONS(682), 54, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -34956,13 +34962,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [12130] = 4, - ACTIONS(644), 1, + ACTIONS(652), 1, anon_sym_COLON_COLON, - ACTIONS(1025), 1, + ACTIONS(1033), 1, anon_sym_LBRACK, - ACTIONS(1043), 1, + ACTIONS(1051), 1, anon_sym_LT, - ACTIONS(670), 53, + ACTIONS(678), 53, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -35017,10 +35023,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [12195] = 2, - ACTIONS(758), 2, + ACTIONS(766), 2, sym_concatenating_space, sym__if_else_separator, - ACTIONS(756), 54, + ACTIONS(764), 54, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -35076,9 +35082,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [12256] = 2, - ACTIONS(770), 1, + ACTIONS(778), 1, sym__if_else_separator, - ACTIONS(768), 54, + ACTIONS(776), 54, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -35134,9 +35140,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [12316] = 2, - ACTIONS(676), 1, + ACTIONS(684), 1, sym_concatenating_space, - ACTIONS(674), 54, + ACTIONS(682), 54, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -35192,16 +35198,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [12376] = 4, - ACTIONS(766), 1, + ACTIONS(774), 1, sym_concatenating_space, - ACTIONS(1045), 2, + ACTIONS(1053), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(1047), 3, + ACTIONS(1055), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(764), 49, + ACTIONS(772), 49, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -35252,12 +35258,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [12440] = 3, - ACTIONS(766), 1, + ACTIONS(774), 1, sym_concatenating_space, - ACTIONS(1045), 2, + ACTIONS(1053), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(764), 52, + ACTIONS(772), 52, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -35311,9 +35317,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [12502] = 2, - ACTIONS(766), 1, + ACTIONS(774), 1, sym_concatenating_space, - ACTIONS(764), 54, + ACTIONS(772), 54, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -35369,19 +35375,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [12562] = 5, - ACTIONS(766), 1, + ACTIONS(774), 1, sym_concatenating_space, - ACTIONS(1045), 2, + ACTIONS(1053), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(1049), 2, + ACTIONS(1057), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1047), 3, + ACTIONS(1055), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(764), 47, + ACTIONS(772), 47, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -35430,29 +35436,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [12628] = 7, - ACTIONS(860), 1, + ACTIONS(868), 1, sym_concatenating_space, - ACTIONS(1045), 2, + ACTIONS(1053), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(1049), 2, + ACTIONS(1057), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1053), 2, + ACTIONS(1061), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(1047), 3, + ACTIONS(1055), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1051), 6, + ACTIONS(1059), 6, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(858), 39, + ACTIONS(866), 39, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -35493,25 +35499,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [12698] = 8, - ACTIONS(888), 1, + ACTIONS(896), 1, anon_sym_LBRACK, - ACTIONS(995), 1, + ACTIONS(1003), 1, anon_sym_LPAREN2, - ACTIONS(999), 1, + ACTIONS(1007), 1, anon_sym_EQ, - ACTIONS(1003), 1, + ACTIONS(1011), 1, sym_concatenating_space, - ACTIONS(997), 2, + ACTIONS(1005), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1001), 6, + ACTIONS(1009), 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(650), 21, + ACTIONS(658), 21, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_ATinclude, @@ -35533,7 +35539,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - ACTIONS(636), 22, + ACTIONS(644), 22, anon_sym_BEGIN, anon_sym_END, anon_sym_BEGINFILE, @@ -35557,9 +35563,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_function, anon_sym_func, [12770] = 2, - ACTIONS(734), 1, + ACTIONS(742), 1, sym__if_else_separator, - ACTIONS(732), 54, + ACTIONS(740), 54, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -35615,9 +35621,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [12830] = 2, - ACTIONS(778), 1, + ACTIONS(786), 1, sym_concatenating_space, - ACTIONS(776), 54, + ACTIONS(784), 54, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -35673,9 +35679,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [12890] = 3, - ACTIONS(646), 1, + ACTIONS(654), 1, sym_concatenating_space, - ACTIONS(636), 21, + ACTIONS(644), 21, anon_sym_in, anon_sym_LT, anon_sym_GT, @@ -35697,7 +35703,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - ACTIONS(634), 33, + ACTIONS(642), 33, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -35732,9 +35738,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [12952] = 2, - ACTIONS(1055), 1, + ACTIONS(1063), 1, sym_regex_flags, - ACTIONS(816), 54, + ACTIONS(824), 54, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -35790,23 +35796,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [13012] = 9, - ACTIONS(708), 1, + ACTIONS(716), 1, anon_sym_EQ, - ACTIONS(888), 1, + ACTIONS(896), 1, anon_sym_LBRACK, - ACTIONS(995), 1, + ACTIONS(1003), 1, anon_sym_LPAREN2, - ACTIONS(890), 2, + ACTIONS(898), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(967), 6, + ACTIONS(975), 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(636), 10, + ACTIONS(644), 10, anon_sym_in, anon_sym_LT, anon_sym_GT, @@ -35817,7 +35823,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(646), 11, + ACTIONS(654), 11, sym_concatenating_space, ts_builtin_sym_end, anon_sym_COMMA, @@ -35829,7 +35835,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - ACTIONS(650), 11, + ACTIONS(658), 11, anon_sym_PIPE_AMP, anon_sym_QMARK, anon_sym_STAR_STAR, @@ -35841,7 +35847,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - ACTIONS(634), 12, + ACTIONS(642), 12, anon_sym_BEGIN, anon_sym_END, anon_sym_BEGINFILE, @@ -35855,9 +35861,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_function, anon_sym_func, [13086] = 2, - ACTIONS(738), 1, + ACTIONS(746), 1, sym_concatenating_space, - ACTIONS(736), 54, + ACTIONS(744), 54, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -35913,31 +35919,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [13146] = 8, - ACTIONS(766), 1, + ACTIONS(774), 1, sym_concatenating_space, - ACTIONS(1057), 1, + ACTIONS(1065), 1, anon_sym_in, - ACTIONS(1045), 2, + ACTIONS(1053), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(1049), 2, + ACTIONS(1057), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1053), 2, + ACTIONS(1061), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(1047), 3, + ACTIONS(1055), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1051), 6, + ACTIONS(1059), 6, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(764), 38, + ACTIONS(772), 38, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -35977,9 +35983,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [13218] = 2, - ACTIONS(806), 1, + ACTIONS(814), 1, sym_concatenating_space, - ACTIONS(804), 54, + ACTIONS(812), 54, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -36035,33 +36041,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [13278] = 9, - ACTIONS(766), 1, + ACTIONS(774), 1, sym_concatenating_space, - ACTIONS(1057), 1, + ACTIONS(1065), 1, anon_sym_in, - ACTIONS(1059), 1, + ACTIONS(1067), 1, anon_sym_AMP_AMP, - ACTIONS(1045), 2, + ACTIONS(1053), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(1049), 2, + ACTIONS(1057), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1053), 2, + ACTIONS(1061), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(1047), 3, + ACTIONS(1055), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1051), 6, + ACTIONS(1059), 6, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(764), 37, + ACTIONS(772), 37, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -36100,9 +36106,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [13352] = 2, - ACTIONS(790), 1, + ACTIONS(798), 1, sym__if_else_separator, - ACTIONS(788), 54, + ACTIONS(796), 54, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -36158,26 +36164,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [13412] = 6, - ACTIONS(766), 1, + ACTIONS(774), 1, sym_concatenating_space, - ACTIONS(1045), 2, + ACTIONS(1053), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(1049), 2, + ACTIONS(1057), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1047), 3, + ACTIONS(1055), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1051), 6, + ACTIONS(1059), 6, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(764), 41, + ACTIONS(772), 41, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -36220,9 +36226,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [13480] = 2, - ACTIONS(802), 1, + ACTIONS(810), 1, sym_concatenating_space, - ACTIONS(800), 54, + ACTIONS(808), 54, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -36278,9 +36284,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [13540] = 2, - ACTIONS(794), 1, + ACTIONS(802), 1, sym_concatenating_space, - ACTIONS(792), 54, + ACTIONS(800), 54, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -36336,9 +36342,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [13600] = 2, - ACTIONS(782), 1, + ACTIONS(790), 1, sym_concatenating_space, - ACTIONS(780), 54, + ACTIONS(788), 54, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -36394,9 +36400,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [13660] = 2, - ACTIONS(810), 1, + ACTIONS(818), 1, sym_concatenating_space, - ACTIONS(808), 54, + ACTIONS(816), 54, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -36452,9 +36458,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [13720] = 2, - ACTIONS(1025), 1, + ACTIONS(1033), 1, anon_sym_LBRACK, - ACTIONS(674), 54, + ACTIONS(682), 54, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -36510,9 +36516,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [13780] = 2, - ACTIONS(810), 1, + ACTIONS(818), 1, sym__if_else_separator, - ACTIONS(808), 54, + ACTIONS(816), 54, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -36568,19 +36574,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [13840] = 5, - ACTIONS(856), 1, + ACTIONS(864), 1, sym_concatenating_space, - ACTIONS(1045), 2, + ACTIONS(1053), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(1049), 2, + ACTIONS(1057), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1047), 3, + ACTIONS(1055), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(854), 47, + ACTIONS(862), 47, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -36629,9 +36635,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [13906] = 2, - ACTIONS(742), 1, + ACTIONS(750), 1, sym_concatenating_space, - ACTIONS(740), 54, + ACTIONS(748), 54, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -36687,40 +36693,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [13966] = 12, - ACTIONS(848), 1, + ACTIONS(856), 1, sym_concatenating_space, - ACTIONS(1057), 1, + ACTIONS(1065), 1, anon_sym_in, - ACTIONS(1059), 1, + ACTIONS(1067), 1, anon_sym_AMP_AMP, - ACTIONS(1063), 1, + ACTIONS(1071), 1, anon_sym_QMARK, - ACTIONS(1065), 1, + ACTIONS(1073), 1, anon_sym_PIPE_PIPE, - ACTIONS(1045), 2, + ACTIONS(1053), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(1049), 2, + ACTIONS(1057), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1053), 2, + ACTIONS(1061), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(1061), 2, + ACTIONS(1069), 2, anon_sym_PIPE, anon_sym_PIPE_AMP, - ACTIONS(1047), 3, + ACTIONS(1055), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1051), 6, + ACTIONS(1059), 6, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(836), 33, + ACTIONS(844), 33, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -36755,38 +36761,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [14046] = 12, - ACTIONS(1005), 1, + ACTIONS(1013), 1, anon_sym_in, - ACTIONS(1011), 1, + ACTIONS(1019), 1, anon_sym_QMARK, - ACTIONS(1021), 1, + ACTIONS(1029), 1, anon_sym_AMP_AMP, - ACTIONS(1023), 1, + ACTIONS(1031), 1, anon_sym_PIPE_PIPE, - ACTIONS(1069), 1, + ACTIONS(1077), 1, anon_sym_COMMA, - ACTIONS(1071), 1, + ACTIONS(1079), 1, sym__if_else_separator, - ACTIONS(1013), 2, + ACTIONS(1021), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(1017), 2, + ACTIONS(1025), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1019), 2, + ACTIONS(1027), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(1015), 3, + ACTIONS(1023), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1007), 5, + ACTIONS(1015), 5, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1067), 35, + ACTIONS(1075), 35, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, @@ -36823,11 +36829,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [14126] = 3, - ACTIONS(1025), 1, + ACTIONS(1033), 1, anon_sym_LBRACK, - ACTIONS(1043), 1, + ACTIONS(1051), 1, anon_sym_LT, - ACTIONS(670), 53, + ACTIONS(678), 53, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -36882,39 +36888,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [14188] = 12, - ACTIONS(1005), 1, + ACTIONS(1013), 1, anon_sym_in, - ACTIONS(1011), 1, + ACTIONS(1019), 1, anon_sym_QMARK, - ACTIONS(1021), 1, + ACTIONS(1029), 1, anon_sym_AMP_AMP, - ACTIONS(1023), 1, + ACTIONS(1031), 1, anon_sym_PIPE_PIPE, - ACTIONS(1069), 1, + ACTIONS(1077), 1, anon_sym_COMMA, - ACTIONS(1075), 1, + ACTIONS(1083), 1, sym__if_else_separator, - ACTIONS(1013), 2, + ACTIONS(1021), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(1017), 2, + ACTIONS(1025), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1019), 2, + ACTIONS(1027), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(1015), 3, + ACTIONS(1023), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1007), 6, + ACTIONS(1015), 6, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1073), 34, + ACTIONS(1081), 34, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, @@ -36950,9 +36956,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [14268] = 2, - ACTIONS(1025), 1, + ACTIONS(1033), 1, anon_sym_LBRACK, - ACTIONS(670), 54, + ACTIONS(678), 54, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -37008,9 +37014,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [14328] = 2, - ACTIONS(786), 1, + ACTIONS(794), 1, sym_concatenating_space, - ACTIONS(784), 54, + ACTIONS(792), 54, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -37066,9 +37072,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [14388] = 2, - ACTIONS(786), 1, + ACTIONS(794), 1, sym__if_else_separator, - ACTIONS(784), 54, + ACTIONS(792), 54, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -37124,9 +37130,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [14448] = 2, - ACTIONS(778), 1, + ACTIONS(786), 1, sym__if_else_separator, - ACTIONS(776), 54, + ACTIONS(784), 54, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -37182,9 +37188,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [14508] = 2, - ACTIONS(676), 1, + ACTIONS(684), 1, sym__if_else_separator, - ACTIONS(674), 54, + ACTIONS(682), 54, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -37240,29 +37246,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [14568] = 7, - ACTIONS(834), 1, + ACTIONS(842), 1, sym_concatenating_space, - ACTIONS(1045), 2, + ACTIONS(1053), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(1049), 2, + ACTIONS(1057), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1053), 2, + ACTIONS(1061), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(1047), 3, + ACTIONS(1055), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1051), 6, + ACTIONS(1059), 6, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(830), 39, + ACTIONS(838), 39, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -37303,23 +37309,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [14638] = 7, - ACTIONS(888), 1, + ACTIONS(896), 1, anon_sym_LBRACK, - ACTIONS(995), 1, + ACTIONS(1003), 1, anon_sym_LPAREN2, - ACTIONS(1029), 1, + ACTIONS(1037), 1, anon_sym_EQ, - ACTIONS(1027), 2, + ACTIONS(1035), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1031), 6, + ACTIONS(1039), 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(636), 22, + ACTIONS(644), 22, anon_sym_BEGIN, anon_sym_END, anon_sym_BEGINFILE, @@ -37342,7 +37348,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, anon_sym_function, anon_sym_func, - ACTIONS(650), 22, + ACTIONS(658), 22, sym_concatenating_space, ts_builtin_sym_end, anon_sym_COMMA, @@ -37366,9 +37372,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [14708] = 2, - ACTIONS(774), 1, + ACTIONS(782), 1, sym_concatenating_space, - ACTIONS(772), 54, + ACTIONS(780), 54, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -37424,13 +37430,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [14768] = 5, - ACTIONS(644), 1, + ACTIONS(652), 1, anon_sym_COLON_COLON, - ACTIONS(888), 1, + ACTIONS(896), 1, anon_sym_LBRACK, - ACTIONS(1077), 1, + ACTIONS(1085), 1, anon_sym_LT, - ACTIONS(670), 21, + ACTIONS(678), 21, anon_sym_BEGIN, anon_sym_END, anon_sym_BEGINFILE, @@ -37452,7 +37458,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, anon_sym_function, anon_sym_func, - ACTIONS(672), 31, + ACTIONS(680), 31, sym_concatenating_space, ts_builtin_sym_end, anon_sym_COMMA, @@ -37485,9 +37491,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [14834] = 2, - ACTIONS(748), 1, + ACTIONS(756), 1, sym_concatenating_space, - ACTIONS(636), 54, + ACTIONS(644), 54, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -37543,9 +37549,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [14894] = 2, - ACTIONS(802), 1, + ACTIONS(810), 1, sym__if_else_separator, - ACTIONS(800), 54, + ACTIONS(808), 54, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -37601,9 +37607,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [14954] = 2, - ACTIONS(770), 1, + ACTIONS(778), 1, sym_concatenating_space, - ACTIONS(768), 54, + ACTIONS(776), 54, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -37659,9 +37665,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [15014] = 2, - ACTIONS(758), 1, + ACTIONS(766), 1, sym_concatenating_space, - ACTIONS(756), 54, + ACTIONS(764), 54, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -37717,9 +37723,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [15074] = 2, - ACTIONS(794), 1, + ACTIONS(802), 1, sym__if_else_separator, - ACTIONS(792), 54, + ACTIONS(800), 54, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -37775,37 +37781,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [15134] = 11, - ACTIONS(852), 1, + ACTIONS(860), 1, sym_concatenating_space, - ACTIONS(1057), 1, + ACTIONS(1065), 1, anon_sym_in, - ACTIONS(1059), 1, + ACTIONS(1067), 1, anon_sym_AMP_AMP, - ACTIONS(1063), 1, + ACTIONS(1071), 1, anon_sym_QMARK, - ACTIONS(1065), 1, + ACTIONS(1073), 1, anon_sym_PIPE_PIPE, - ACTIONS(1045), 2, + ACTIONS(1053), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(1049), 2, + ACTIONS(1057), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1053), 2, + ACTIONS(1061), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(1047), 3, + ACTIONS(1055), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1051), 6, + ACTIONS(1059), 6, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(850), 35, + ACTIONS(858), 35, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -37842,9 +37848,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [15212] = 2, - ACTIONS(734), 1, + ACTIONS(742), 1, sym_concatenating_space, - ACTIONS(732), 54, + ACTIONS(740), 54, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -37900,9 +37906,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [15272] = 2, - ACTIONS(790), 1, + ACTIONS(798), 1, sym_concatenating_space, - ACTIONS(788), 54, + ACTIONS(796), 54, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -37958,9 +37964,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [15332] = 2, - ACTIONS(782), 1, + ACTIONS(790), 1, sym__if_else_separator, - ACTIONS(780), 54, + ACTIONS(788), 54, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -38016,9 +38022,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [15392] = 2, - ACTIONS(798), 1, + ACTIONS(806), 1, sym_concatenating_space, - ACTIONS(796), 54, + ACTIONS(804), 54, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -38074,40 +38080,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [15452] = 12, - ACTIONS(848), 1, + ACTIONS(856), 1, sym__if_else_separator, - ACTIONS(1005), 1, + ACTIONS(1013), 1, anon_sym_in, - ACTIONS(1011), 1, + ACTIONS(1019), 1, anon_sym_QMARK, - ACTIONS(1021), 1, + ACTIONS(1029), 1, anon_sym_AMP_AMP, - ACTIONS(1023), 1, + ACTIONS(1031), 1, anon_sym_PIPE_PIPE, - ACTIONS(1013), 2, + ACTIONS(1021), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(1017), 2, + ACTIONS(1025), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1019), 2, + ACTIONS(1027), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(1079), 2, + ACTIONS(1087), 2, anon_sym_PIPE, anon_sym_PIPE_AMP, - ACTIONS(1015), 3, + ACTIONS(1023), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1007), 6, + ACTIONS(1015), 6, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(836), 33, + ACTIONS(844), 33, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -38142,9 +38148,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [15532] = 2, - ACTIONS(742), 1, + ACTIONS(750), 1, sym__if_else_separator, - ACTIONS(740), 54, + ACTIONS(748), 54, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -38200,7 +38206,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [15592] = 1, - ACTIONS(792), 54, + ACTIONS(800), 54, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -38256,11 +38262,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [15649] = 4, - ACTIONS(888), 1, + ACTIONS(896), 1, anon_sym_LBRACK, - ACTIONS(1077), 1, + ACTIONS(1085), 1, anon_sym_LT, - ACTIONS(670), 21, + ACTIONS(678), 21, anon_sym_BEGIN, anon_sym_END, anon_sym_BEGINFILE, @@ -38282,7 +38288,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, anon_sym_function, anon_sym_func, - ACTIONS(672), 31, + ACTIONS(680), 31, sym_concatenating_space, ts_builtin_sym_end, anon_sym_COMMA, @@ -38315,7 +38321,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [15712] = 1, - ACTIONS(808), 54, + ACTIONS(816), 54, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -38371,37 +38377,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [15769] = 11, - ACTIONS(1057), 1, + ACTIONS(1065), 1, anon_sym_in, - ACTIONS(1059), 1, + ACTIONS(1067), 1, anon_sym_AMP_AMP, - ACTIONS(1063), 1, + ACTIONS(1071), 1, anon_sym_QMARK, - ACTIONS(1065), 1, + ACTIONS(1073), 1, anon_sym_PIPE_PIPE, - ACTIONS(1069), 1, + ACTIONS(1077), 1, anon_sym_COMMA, - ACTIONS(1045), 2, + ACTIONS(1053), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(1049), 2, + ACTIONS(1057), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1053), 2, + ACTIONS(1061), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(1047), 3, + ACTIONS(1055), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1051), 6, + ACTIONS(1059), 6, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1073), 34, + ACTIONS(1081), 34, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, @@ -38437,7 +38443,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [15846] = 1, - ACTIONS(784), 54, + ACTIONS(792), 54, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -38493,7 +38499,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [15903] = 1, - ACTIONS(768), 54, + ACTIONS(776), 54, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -38549,38 +38555,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [15960] = 11, - ACTIONS(1057), 1, + ACTIONS(1065), 1, anon_sym_in, - ACTIONS(1059), 1, + ACTIONS(1067), 1, anon_sym_AMP_AMP, - ACTIONS(1063), 1, + ACTIONS(1071), 1, anon_sym_QMARK, - ACTIONS(1065), 1, + ACTIONS(1073), 1, anon_sym_PIPE_PIPE, - ACTIONS(1045), 2, + ACTIONS(1053), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(1049), 2, + ACTIONS(1057), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1053), 2, + ACTIONS(1061), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(1081), 2, + ACTIONS(1089), 2, anon_sym_PIPE, anon_sym_PIPE_AMP, - ACTIONS(1047), 3, + ACTIONS(1055), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1051), 6, + ACTIONS(1059), 6, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(836), 33, + ACTIONS(844), 33, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -38629,9 +38635,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, ACTIONS(81), 1, anon_sym_DQUOTE, - ACTIONS(656), 1, + ACTIONS(664), 1, anon_sym_LPAREN2, - ACTIONS(668), 1, + ACTIONS(676), 1, sym__if_else_separator, STATE(575), 1, sym_ns_qualified_name, @@ -38679,7 +38685,7 @@ static const uint16_t ts_small_parse_table[] = { sym_regex, sym_regex_constant, sym_indirect_func_call, - ACTIONS(652), 11, + ACTIONS(660), 11, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, @@ -38692,7 +38698,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_AMP, anon_sym_POUND, [16136] = 1, - ACTIONS(740), 54, + ACTIONS(748), 54, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -38748,23 +38754,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [16193] = 7, - ACTIONS(888), 1, + ACTIONS(896), 1, anon_sym_LBRACK, - ACTIONS(999), 1, + ACTIONS(1007), 1, anon_sym_EQ, - ACTIONS(1003), 1, + ACTIONS(1011), 1, sym_concatenating_space, - ACTIONS(997), 2, + ACTIONS(1005), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1001), 6, + ACTIONS(1009), 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(636), 21, + ACTIONS(644), 21, anon_sym_BEGIN, anon_sym_END, anon_sym_BEGINFILE, @@ -38786,7 +38792,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, anon_sym_function, anon_sym_func, - ACTIONS(650), 22, + ACTIONS(658), 22, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_ATinclude, @@ -38810,7 +38816,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [16262] = 1, - ACTIONS(776), 54, + ACTIONS(784), 54, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -38866,36 +38872,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [16319] = 11, - ACTIONS(1057), 1, + ACTIONS(1065), 1, anon_sym_in, - ACTIONS(1059), 1, + ACTIONS(1067), 1, anon_sym_AMP_AMP, - ACTIONS(1063), 1, + ACTIONS(1071), 1, anon_sym_QMARK, - ACTIONS(1065), 1, + ACTIONS(1073), 1, anon_sym_PIPE_PIPE, - ACTIONS(1069), 1, + ACTIONS(1077), 1, anon_sym_COMMA, - ACTIONS(1045), 2, + ACTIONS(1053), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(1049), 2, + ACTIONS(1057), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1053), 2, + ACTIONS(1061), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(1047), 3, + ACTIONS(1055), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1051), 5, + ACTIONS(1059), 5, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1067), 35, + ACTIONS(1075), 35, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, @@ -38932,7 +38938,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [16396] = 1, - ACTIONS(788), 54, + ACTIONS(796), 54, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -38988,7 +38994,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [16453] = 1, - ACTIONS(780), 54, + ACTIONS(788), 54, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -39044,7 +39050,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [16510] = 1, - ACTIONS(732), 54, + ACTIONS(740), 54, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -39100,9 +39106,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [16567] = 3, - ACTIONS(1083), 1, + ACTIONS(1091), 1, sym_regex_flags, - ACTIONS(816), 22, + ACTIONS(824), 22, anon_sym_BEGIN, anon_sym_END, anon_sym_BEGINFILE, @@ -39125,7 +39131,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, anon_sym_function, anon_sym_func, - ACTIONS(820), 31, + ACTIONS(828), 31, sym_concatenating_space, ts_builtin_sym_end, anon_sym_COMMA, @@ -39158,7 +39164,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [16628] = 2, - ACTIONS(678), 22, + ACTIONS(686), 22, anon_sym_BEGIN, anon_sym_END, anon_sym_BEGINFILE, @@ -39181,7 +39187,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, anon_sym_function, anon_sym_func, - ACTIONS(680), 32, + ACTIONS(688), 32, sym_concatenating_space, ts_builtin_sym_end, anon_sym_COMMA, @@ -39215,7 +39221,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [16687] = 1, - ACTIONS(674), 54, + ACTIONS(682), 54, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -39271,21 +39277,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [16744] = 6, - ACTIONS(888), 1, + ACTIONS(896), 1, anon_sym_LBRACK, - ACTIONS(1029), 1, + ACTIONS(1037), 1, anon_sym_EQ, - ACTIONS(1027), 2, + ACTIONS(1035), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1031), 6, + ACTIONS(1039), 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(636), 21, + ACTIONS(644), 21, anon_sym_BEGIN, anon_sym_END, anon_sym_BEGINFILE, @@ -39307,7 +39313,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, anon_sym_function, anon_sym_func, - ACTIONS(650), 23, + ACTIONS(658), 23, sym_concatenating_space, ts_builtin_sym_end, anon_sym_COMMA, @@ -39332,7 +39338,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [16811] = 1, - ACTIONS(800), 54, + ACTIONS(808), 54, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -39388,19 +39394,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [16868] = 5, - ACTIONS(1029), 1, + ACTIONS(1037), 1, anon_sym_EQ, - ACTIONS(1027), 2, + ACTIONS(1035), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1031), 6, + ACTIONS(1039), 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(636), 21, + ACTIONS(644), 21, anon_sym_BEGIN, anon_sym_END, anon_sym_BEGINFILE, @@ -39422,7 +39428,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, anon_sym_function, anon_sym_func, - ACTIONS(650), 23, + ACTIONS(658), 23, sym_concatenating_space, ts_builtin_sym_end, anon_sym_COMMA, @@ -39447,11 +39453,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [16932] = 4, - ACTIONS(1085), 1, + ACTIONS(1093), 1, anon_sym_CARET, - ACTIONS(1087), 1, + ACTIONS(1095), 1, anon_sym_STAR_STAR, - ACTIONS(764), 21, + ACTIONS(772), 21, anon_sym_BEGIN, anon_sym_END, anon_sym_BEGINFILE, @@ -39473,7 +39479,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, anon_sym_function, anon_sym_func, - ACTIONS(766), 30, + ACTIONS(774), 30, sym_concatenating_space, ts_builtin_sym_end, anon_sym_COMMA, @@ -39505,18 +39511,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [16994] = 6, - ACTIONS(1085), 1, + ACTIONS(1093), 1, anon_sym_CARET, - ACTIONS(1087), 1, + ACTIONS(1095), 1, anon_sym_STAR_STAR, - ACTIONS(1091), 2, + ACTIONS(1099), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1089), 3, + ACTIONS(1097), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(764), 16, + ACTIONS(772), 16, anon_sym_BEGIN, anon_sym_END, anon_sym_BEGINFILE, @@ -39533,7 +39539,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, anon_sym_function, anon_sym_func, - ACTIONS(766), 30, + ACTIONS(774), 30, sym_concatenating_space, ts_builtin_sym_end, anon_sym_COMMA, @@ -39565,29 +39571,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [17060] = 9, - ACTIONS(1085), 1, + ACTIONS(1093), 1, anon_sym_CARET, - ACTIONS(1087), 1, + ACTIONS(1095), 1, anon_sym_STAR_STAR, - ACTIONS(1091), 2, + ACTIONS(1099), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1093), 2, + ACTIONS(1101), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1097), 2, + ACTIONS(1105), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(1089), 3, + ACTIONS(1097), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1095), 4, + ACTIONS(1103), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(830), 14, + ACTIONS(838), 14, anon_sym_BEGIN, anon_sym_END, anon_sym_BEGINFILE, @@ -39602,7 +39608,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, anon_sym_function, anon_sym_func, - ACTIONS(834), 24, + ACTIONS(842), 24, sym_concatenating_space, ts_builtin_sym_end, anon_sym_COMMA, @@ -39628,37 +39634,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [17132] = 13, - ACTIONS(1085), 1, + ACTIONS(1093), 1, anon_sym_CARET, - ACTIONS(1087), 1, + ACTIONS(1095), 1, anon_sym_STAR_STAR, - ACTIONS(1099), 1, + ACTIONS(1107), 1, anon_sym_in, - ACTIONS(1101), 1, + ACTIONS(1109), 1, anon_sym_QMARK, - ACTIONS(1103), 1, + ACTIONS(1111), 1, anon_sym_AMP_AMP, - ACTIONS(1105), 1, + ACTIONS(1113), 1, anon_sym_PIPE_PIPE, - ACTIONS(1091), 2, + ACTIONS(1099), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1093), 2, + ACTIONS(1101), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1097), 2, + ACTIONS(1105), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(1089), 3, + ACTIONS(1097), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1095), 4, + ACTIONS(1103), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(850), 13, + ACTIONS(858), 13, anon_sym_BEGIN, anon_sym_END, anon_sym_BEGINFILE, @@ -39672,7 +39678,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, anon_sym_function, anon_sym_func, - ACTIONS(852), 21, + ACTIONS(860), 21, sym_concatenating_space, ts_builtin_sym_end, anon_sym_COMMA, @@ -39695,26 +39701,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [17212] = 8, - ACTIONS(1085), 1, + ACTIONS(1093), 1, anon_sym_CARET, - ACTIONS(1087), 1, + ACTIONS(1095), 1, anon_sym_STAR_STAR, - ACTIONS(1091), 2, + ACTIONS(1099), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1093), 2, + ACTIONS(1101), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1089), 3, + ACTIONS(1097), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1095), 4, + ACTIONS(1103), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(764), 14, + ACTIONS(772), 14, anon_sym_BEGIN, anon_sym_END, anon_sym_BEGINFILE, @@ -39729,7 +39735,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, anon_sym_function, anon_sym_func, - ACTIONS(766), 26, + ACTIONS(774), 26, sym_concatenating_space, ts_builtin_sym_end, anon_sym_COMMA, @@ -39759,31 +39765,31 @@ static const uint16_t ts_small_parse_table[] = { [17282] = 12, ACTIONS(83), 1, sym__if_else_separator, - ACTIONS(1005), 1, + ACTIONS(1013), 1, anon_sym_in, - ACTIONS(1011), 1, + ACTIONS(1019), 1, anon_sym_QMARK, - ACTIONS(1021), 1, + ACTIONS(1029), 1, anon_sym_AMP_AMP, - ACTIONS(1023), 1, + ACTIONS(1031), 1, anon_sym_PIPE_PIPE, - ACTIONS(1013), 2, + ACTIONS(1021), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(1017), 2, + ACTIONS(1025), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1019), 2, + ACTIONS(1027), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(1079), 2, + ACTIONS(1087), 2, anon_sym_PIPE, anon_sym_PIPE_AMP, - ACTIONS(1015), 3, + ACTIONS(1023), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1007), 6, + ACTIONS(1015), 6, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, @@ -39823,33 +39829,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [17360] = 11, - ACTIONS(1085), 1, + ACTIONS(1093), 1, anon_sym_CARET, - ACTIONS(1087), 1, + ACTIONS(1095), 1, anon_sym_STAR_STAR, - ACTIONS(1099), 1, + ACTIONS(1107), 1, anon_sym_in, - ACTIONS(1103), 1, + ACTIONS(1111), 1, anon_sym_AMP_AMP, - ACTIONS(1091), 2, + ACTIONS(1099), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1093), 2, + ACTIONS(1101), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1097), 2, + ACTIONS(1105), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(1089), 3, + ACTIONS(1097), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1095), 4, + ACTIONS(1103), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(764), 13, + ACTIONS(772), 13, anon_sym_BEGIN, anon_sym_END, anon_sym_BEGINFILE, @@ -39863,7 +39869,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, anon_sym_function, anon_sym_func, - ACTIONS(766), 23, + ACTIONS(774), 23, sym_concatenating_space, ts_builtin_sym_end, anon_sym_COMMA, @@ -39888,40 +39894,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [17436] = 12, - ACTIONS(1005), 1, + ACTIONS(1013), 1, anon_sym_in, - ACTIONS(1011), 1, + ACTIONS(1019), 1, anon_sym_QMARK, - ACTIONS(1021), 1, + ACTIONS(1029), 1, anon_sym_AMP_AMP, - ACTIONS(1023), 1, + ACTIONS(1031), 1, anon_sym_PIPE_PIPE, - ACTIONS(1109), 1, + ACTIONS(1117), 1, sym__if_else_separator, - ACTIONS(1013), 2, + ACTIONS(1021), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(1017), 2, + ACTIONS(1025), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1019), 2, + ACTIONS(1027), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(1079), 2, + ACTIONS(1087), 2, anon_sym_PIPE, anon_sym_PIPE_AMP, - ACTIONS(1015), 3, + ACTIONS(1023), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1007), 6, + ACTIONS(1015), 6, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1107), 31, + ACTIONS(1115), 31, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, @@ -39954,40 +39960,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [17514] = 12, - ACTIONS(1005), 1, + ACTIONS(1013), 1, anon_sym_in, - ACTIONS(1011), 1, + ACTIONS(1019), 1, anon_sym_QMARK, - ACTIONS(1021), 1, + ACTIONS(1029), 1, anon_sym_AMP_AMP, - ACTIONS(1023), 1, + ACTIONS(1031), 1, anon_sym_PIPE_PIPE, - ACTIONS(1113), 1, + ACTIONS(1121), 1, sym__if_else_separator, - ACTIONS(1013), 2, + ACTIONS(1021), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(1017), 2, + ACTIONS(1025), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1019), 2, + ACTIONS(1027), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(1079), 2, + ACTIONS(1087), 2, anon_sym_PIPE, anon_sym_PIPE_AMP, - ACTIONS(1015), 3, + ACTIONS(1023), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1007), 6, + ACTIONS(1015), 6, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1111), 31, + ACTIONS(1119), 31, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, @@ -40034,7 +40040,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, ACTIONS(125), 1, anon_sym_DQUOTE, - ACTIONS(718), 1, + ACTIONS(726), 1, anon_sym_LPAREN2, STATE(586), 1, sym_ns_qualified_name, @@ -40082,7 +40088,7 @@ static const uint16_t ts_small_parse_table[] = { sym_regex, sym_regex_constant, sym_indirect_func_call, - ACTIONS(652), 11, + ACTIONS(660), 11, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, @@ -40095,29 +40101,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_AMP, anon_sym_POUND, [17688] = 9, - ACTIONS(1085), 1, + ACTIONS(1093), 1, anon_sym_CARET, - ACTIONS(1087), 1, + ACTIONS(1095), 1, anon_sym_STAR_STAR, - ACTIONS(1091), 2, + ACTIONS(1099), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1093), 2, + ACTIONS(1101), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1097), 2, + ACTIONS(1105), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(1089), 3, + ACTIONS(1097), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1095), 4, + ACTIONS(1103), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(858), 14, + ACTIONS(866), 14, anon_sym_BEGIN, anon_sym_END, anon_sym_BEGINFILE, @@ -40132,7 +40138,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, anon_sym_function, anon_sym_func, - ACTIONS(860), 24, + ACTIONS(868), 24, sym_concatenating_space, ts_builtin_sym_end, anon_sym_COMMA, @@ -40158,15 +40164,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [17760] = 5, - ACTIONS(1085), 1, + ACTIONS(1093), 1, anon_sym_CARET, - ACTIONS(1087), 1, + ACTIONS(1095), 1, anon_sym_STAR_STAR, - ACTIONS(1089), 3, + ACTIONS(1097), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(764), 18, + ACTIONS(772), 18, anon_sym_BEGIN, anon_sym_END, anon_sym_BEGINFILE, @@ -40185,7 +40191,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, anon_sym_function, anon_sym_func, - ACTIONS(766), 30, + ACTIONS(774), 30, sym_concatenating_space, ts_builtin_sym_end, anon_sym_COMMA, @@ -40217,21 +40223,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [17824] = 6, - ACTIONS(999), 1, + ACTIONS(1007), 1, anon_sym_EQ, - ACTIONS(1003), 1, + ACTIONS(1011), 1, sym_concatenating_space, - ACTIONS(997), 2, + ACTIONS(1005), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1001), 6, + ACTIONS(1009), 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(636), 21, + ACTIONS(644), 21, anon_sym_BEGIN, anon_sym_END, anon_sym_BEGINFILE, @@ -40253,7 +40259,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, anon_sym_function, anon_sym_func, - ACTIONS(650), 22, + ACTIONS(658), 22, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_ATinclude, @@ -40277,18 +40283,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [17890] = 6, - ACTIONS(1085), 1, + ACTIONS(1093), 1, anon_sym_CARET, - ACTIONS(1087), 1, + ACTIONS(1095), 1, anon_sym_STAR_STAR, - ACTIONS(1091), 2, + ACTIONS(1099), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1089), 3, + ACTIONS(1097), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(854), 16, + ACTIONS(862), 16, anon_sym_BEGIN, anon_sym_END, anon_sym_BEGINFILE, @@ -40305,7 +40311,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, anon_sym_function, anon_sym_func, - ACTIONS(856), 30, + ACTIONS(864), 30, sym_concatenating_space, ts_builtin_sym_end, anon_sym_COMMA, @@ -40337,41 +40343,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [17956] = 15, - ACTIONS(1085), 1, + ACTIONS(1093), 1, anon_sym_CARET, - ACTIONS(1087), 1, + ACTIONS(1095), 1, anon_sym_STAR_STAR, - ACTIONS(1099), 1, + ACTIONS(1107), 1, anon_sym_in, - ACTIONS(1101), 1, + ACTIONS(1109), 1, anon_sym_QMARK, - ACTIONS(1103), 1, + ACTIONS(1111), 1, anon_sym_AMP_AMP, - ACTIONS(1105), 1, + ACTIONS(1113), 1, anon_sym_PIPE_PIPE, - ACTIONS(1115), 1, + ACTIONS(1123), 1, anon_sym_PIPE, - ACTIONS(1117), 1, + ACTIONS(1125), 1, anon_sym_PIPE_AMP, - ACTIONS(1091), 2, + ACTIONS(1099), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1093), 2, + ACTIONS(1101), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1097), 2, + ACTIONS(1105), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(1089), 3, + ACTIONS(1097), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1095), 4, + ACTIONS(1103), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(836), 12, + ACTIONS(844), 12, anon_sym_BEGIN, anon_sym_END, anon_sym_BEGINFILE, @@ -40384,7 +40390,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, anon_sym_function, anon_sym_func, - ACTIONS(848), 20, + ACTIONS(856), 20, sym_concatenating_space, ts_builtin_sym_end, anon_sym_COMMA, @@ -40406,31 +40412,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [18040] = 10, - ACTIONS(1085), 1, + ACTIONS(1093), 1, anon_sym_CARET, - ACTIONS(1087), 1, + ACTIONS(1095), 1, anon_sym_STAR_STAR, - ACTIONS(1099), 1, + ACTIONS(1107), 1, anon_sym_in, - ACTIONS(1091), 2, + ACTIONS(1099), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1093), 2, + ACTIONS(1101), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1097), 2, + ACTIONS(1105), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(1089), 3, + ACTIONS(1097), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1095), 4, + ACTIONS(1103), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(764), 13, + ACTIONS(772), 13, anon_sym_BEGIN, anon_sym_END, anon_sym_BEGINFILE, @@ -40444,7 +40450,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, anon_sym_function, anon_sym_func, - ACTIONS(766), 24, + ACTIONS(774), 24, sym_concatenating_space, ts_builtin_sym_end, anon_sym_COMMA, @@ -40470,40 +40476,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [18114] = 12, - ACTIONS(1005), 1, + ACTIONS(1013), 1, anon_sym_in, - ACTIONS(1011), 1, + ACTIONS(1019), 1, anon_sym_QMARK, - ACTIONS(1021), 1, + ACTIONS(1029), 1, anon_sym_AMP_AMP, - ACTIONS(1023), 1, + ACTIONS(1031), 1, anon_sym_PIPE_PIPE, - ACTIONS(1121), 1, + ACTIONS(1129), 1, sym__if_else_separator, - ACTIONS(1013), 2, + ACTIONS(1021), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(1017), 2, + ACTIONS(1025), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1019), 2, + ACTIONS(1027), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(1079), 2, + ACTIONS(1087), 2, anon_sym_PIPE, anon_sym_PIPE_AMP, - ACTIONS(1015), 3, + ACTIONS(1023), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1007), 6, + ACTIONS(1015), 6, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1119), 31, + ACTIONS(1127), 31, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, @@ -40536,40 +40542,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [18192] = 12, - ACTIONS(1005), 1, + ACTIONS(1013), 1, anon_sym_in, - ACTIONS(1011), 1, + ACTIONS(1019), 1, anon_sym_QMARK, - ACTIONS(1021), 1, + ACTIONS(1029), 1, anon_sym_AMP_AMP, - ACTIONS(1023), 1, + ACTIONS(1031), 1, anon_sym_PIPE_PIPE, - ACTIONS(1125), 1, + ACTIONS(1133), 1, sym__if_else_separator, - ACTIONS(1013), 2, + ACTIONS(1021), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(1017), 2, + ACTIONS(1025), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1019), 2, + ACTIONS(1027), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(1079), 2, + ACTIONS(1087), 2, anon_sym_PIPE, anon_sym_PIPE_AMP, - ACTIONS(1015), 3, + ACTIONS(1023), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1007), 6, + ACTIONS(1015), 6, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1123), 31, + ACTIONS(1131), 31, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, @@ -40602,31 +40608,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [18270] = 11, - ACTIONS(1057), 1, + ACTIONS(1065), 1, anon_sym_in, - ACTIONS(1059), 1, + ACTIONS(1067), 1, anon_sym_AMP_AMP, - ACTIONS(1063), 1, + ACTIONS(1071), 1, anon_sym_QMARK, - ACTIONS(1065), 1, + ACTIONS(1073), 1, anon_sym_PIPE_PIPE, - ACTIONS(1045), 2, + ACTIONS(1053), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(1049), 2, + ACTIONS(1057), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1053), 2, + ACTIONS(1061), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(1081), 2, + ACTIONS(1089), 2, anon_sym_PIPE, anon_sym_PIPE_AMP, - ACTIONS(1047), 3, + ACTIONS(1055), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1051), 6, + ACTIONS(1059), 6, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, @@ -40666,38 +40672,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [18345] = 11, - ACTIONS(1057), 1, + ACTIONS(1065), 1, anon_sym_in, - ACTIONS(1059), 1, + ACTIONS(1067), 1, anon_sym_AMP_AMP, - ACTIONS(1063), 1, + ACTIONS(1071), 1, anon_sym_QMARK, - ACTIONS(1065), 1, + ACTIONS(1073), 1, anon_sym_PIPE_PIPE, - ACTIONS(1045), 2, + ACTIONS(1053), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(1049), 2, + ACTIONS(1057), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1053), 2, + ACTIONS(1061), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(1081), 2, + ACTIONS(1089), 2, anon_sym_PIPE, anon_sym_PIPE_AMP, - ACTIONS(1047), 3, + ACTIONS(1055), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1051), 6, + ACTIONS(1059), 6, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1107), 31, + ACTIONS(1115), 31, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, @@ -40730,38 +40736,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [18420] = 11, - ACTIONS(1057), 1, + ACTIONS(1065), 1, anon_sym_in, - ACTIONS(1059), 1, + ACTIONS(1067), 1, anon_sym_AMP_AMP, - ACTIONS(1063), 1, + ACTIONS(1071), 1, anon_sym_QMARK, - ACTIONS(1065), 1, + ACTIONS(1073), 1, anon_sym_PIPE_PIPE, - ACTIONS(1045), 2, + ACTIONS(1053), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(1049), 2, + ACTIONS(1057), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1053), 2, + ACTIONS(1061), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(1081), 2, + ACTIONS(1089), 2, anon_sym_PIPE, anon_sym_PIPE_AMP, - ACTIONS(1047), 3, + ACTIONS(1055), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1051), 6, + ACTIONS(1059), 6, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1111), 31, + ACTIONS(1119), 31, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, @@ -40794,38 +40800,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [18495] = 11, - ACTIONS(1057), 1, + ACTIONS(1065), 1, anon_sym_in, - ACTIONS(1059), 1, + ACTIONS(1067), 1, anon_sym_AMP_AMP, - ACTIONS(1063), 1, + ACTIONS(1071), 1, anon_sym_QMARK, - ACTIONS(1065), 1, + ACTIONS(1073), 1, anon_sym_PIPE_PIPE, - ACTIONS(1045), 2, + ACTIONS(1053), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(1049), 2, + ACTIONS(1057), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1053), 2, + ACTIONS(1061), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(1081), 2, + ACTIONS(1089), 2, anon_sym_PIPE, anon_sym_PIPE_AMP, - ACTIONS(1047), 3, + ACTIONS(1055), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1051), 6, + ACTIONS(1059), 6, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1123), 31, + ACTIONS(1131), 31, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, @@ -40858,38 +40864,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [18570] = 11, - ACTIONS(1057), 1, + ACTIONS(1065), 1, anon_sym_in, - ACTIONS(1059), 1, + ACTIONS(1067), 1, anon_sym_AMP_AMP, - ACTIONS(1063), 1, + ACTIONS(1071), 1, anon_sym_QMARK, - ACTIONS(1065), 1, + ACTIONS(1073), 1, anon_sym_PIPE_PIPE, - ACTIONS(1045), 2, + ACTIONS(1053), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(1049), 2, + ACTIONS(1057), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1053), 2, + ACTIONS(1061), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(1081), 2, + ACTIONS(1089), 2, anon_sym_PIPE, anon_sym_PIPE_AMP, - ACTIONS(1047), 3, + ACTIONS(1055), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1051), 6, + ACTIONS(1059), 6, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1119), 31, + ACTIONS(1127), 31, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, @@ -40928,17 +40934,17 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(464), 1, anon_sym_getline, - ACTIONS(582), 1, + ACTIONS(594), 1, anon_sym_LPAREN, - ACTIONS(584), 1, + ACTIONS(596), 1, anon_sym_SLASH, - ACTIONS(588), 1, + ACTIONS(600), 1, anon_sym_DOLLAR, - ACTIONS(590), 1, + ACTIONS(602), 1, anon_sym_AT, - ACTIONS(656), 1, + ACTIONS(664), 1, anon_sym_LPAREN2, - ACTIONS(668), 1, + ACTIONS(676), 1, sym__if_else_separator, STATE(676), 1, sym_ns_qualified_name, @@ -40955,7 +40961,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(79), 2, aux_sym_number_token1, aux_sym_number_token2, - ACTIONS(586), 2, + ACTIONS(598), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(622), 2, @@ -40965,7 +40971,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, - ACTIONS(652), 8, + ACTIONS(660), 8, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, @@ -41002,15 +41008,15 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(360), 1, anon_sym_getline, - ACTIONS(592), 1, + ACTIONS(620), 1, anon_sym_LPAREN, - ACTIONS(594), 1, + ACTIONS(622), 1, anon_sym_SLASH, - ACTIONS(598), 1, + ACTIONS(626), 1, anon_sym_DOLLAR, - ACTIONS(600), 1, + ACTIONS(628), 1, anon_sym_AT, - ACTIONS(718), 1, + ACTIONS(726), 1, anon_sym_LPAREN2, STATE(709), 1, sym_ns_qualified_name, @@ -41027,7 +41033,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(123), 2, aux_sym_number_token1, aux_sym_number_token2, - ACTIONS(596), 2, + ACTIONS(624), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(647), 2, @@ -41037,7 +41043,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, - ACTIONS(652), 8, + ACTIONS(660), 8, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, @@ -41068,9 +41074,9 @@ static const uint16_t ts_small_parse_table[] = { sym_regex_constant, sym_indirect_func_call, [18834] = 7, - ACTIONS(1127), 1, + ACTIONS(1135), 1, sym_identifier, - ACTIONS(1129), 1, + ACTIONS(1137), 1, anon_sym_LT, STATE(506), 1, sym_array_ref, @@ -41078,7 +41084,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ns_qualified_name, STATE(1951), 1, sym_namespace, - ACTIONS(696), 16, + ACTIONS(704), 16, anon_sym_BEGIN, anon_sym_END, anon_sym_BEGINFILE, @@ -41095,7 +41101,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, anon_sym_function, anon_sym_func, - ACTIONS(700), 28, + ACTIONS(708), 28, sym_concatenating_space, ts_builtin_sym_end, anon_sym_COMMA, @@ -41125,14 +41131,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [18898] = 5, - ACTIONS(1131), 1, + ACTIONS(1139), 1, sym_identifier, STATE(1951), 1, sym_namespace, STATE(506), 2, sym_array_ref, sym_ns_qualified_name, - ACTIONS(696), 17, + ACTIONS(704), 17, anon_sym_BEGIN, anon_sym_END, anon_sym_BEGINFILE, @@ -41150,7 +41156,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, anon_sym_function, anon_sym_func, - ACTIONS(700), 28, + ACTIONS(708), 28, sym_concatenating_space, ts_builtin_sym_end, anon_sym_COMMA, @@ -41180,11 +41186,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [18958] = 4, - ACTIONS(644), 1, + ACTIONS(652), 1, anon_sym_COLON_COLON, - ACTIONS(1133), 1, + ACTIONS(1141), 1, anon_sym_LBRACK, - ACTIONS(674), 18, + ACTIONS(682), 18, anon_sym_BEGIN, anon_sym_END, anon_sym_BEGINFILE, @@ -41203,7 +41209,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, anon_sym_function, anon_sym_func, - ACTIONS(676), 28, + ACTIONS(684), 28, sym_concatenating_space, ts_builtin_sym_end, anon_sym_COMMA, @@ -41233,11 +41239,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [19015] = 4, - ACTIONS(644), 1, + ACTIONS(652), 1, anon_sym_COLON_COLON, - ACTIONS(1133), 1, + ACTIONS(1141), 1, anon_sym_LBRACK, - ACTIONS(670), 18, + ACTIONS(678), 18, anon_sym_BEGIN, anon_sym_END, anon_sym_BEGINFILE, @@ -41256,7 +41262,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, anon_sym_function, anon_sym_func, - ACTIONS(672), 28, + ACTIONS(680), 28, sym_concatenating_space, ts_builtin_sym_end, anon_sym_COMMA, @@ -41286,9 +41292,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [19072] = 7, - ACTIONS(1135), 1, + ACTIONS(1143), 1, sym_identifier, - ACTIONS(1137), 1, + ACTIONS(1145), 1, anon_sym_LT, STATE(531), 1, sym_array_ref, @@ -41296,7 +41302,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ns_qualified_name, STATE(1872), 1, sym_namespace, - ACTIONS(696), 16, + ACTIONS(704), 16, anon_sym_BEGIN, anon_sym_END, anon_sym_BEGINFILE, @@ -41313,7 +41319,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, anon_sym_function, anon_sym_func, - ACTIONS(700), 27, + ACTIONS(708), 27, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_ATinclude, @@ -41342,13 +41348,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [19135] = 5, - ACTIONS(644), 1, + ACTIONS(652), 1, anon_sym_COLON_COLON, - ACTIONS(1133), 1, + ACTIONS(1141), 1, anon_sym_LBRACK, - ACTIONS(1139), 1, + ACTIONS(1147), 1, anon_sym_LT, - ACTIONS(670), 17, + ACTIONS(678), 17, anon_sym_BEGIN, anon_sym_END, anon_sym_BEGINFILE, @@ -41366,7 +41372,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, anon_sym_function, anon_sym_func, - ACTIONS(672), 28, + ACTIONS(680), 28, sym_concatenating_space, ts_builtin_sym_end, anon_sym_COMMA, @@ -41396,14 +41402,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [19194] = 5, - ACTIONS(1141), 1, + ACTIONS(1149), 1, sym_identifier, STATE(1872), 1, sym_namespace, STATE(531), 2, sym_array_ref, sym_ns_qualified_name, - ACTIONS(696), 17, + ACTIONS(704), 17, anon_sym_BEGIN, anon_sym_END, anon_sym_BEGINFILE, @@ -41421,7 +41427,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, anon_sym_function, anon_sym_func, - ACTIONS(700), 27, + ACTIONS(708), 27, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_ATinclude, @@ -41450,7 +41456,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [19253] = 2, - ACTIONS(712), 18, + ACTIONS(720), 18, anon_sym_BEGIN, anon_sym_END, anon_sym_BEGINFILE, @@ -41469,7 +41475,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, anon_sym_function, anon_sym_func, - ACTIONS(714), 29, + ACTIONS(722), 29, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_ATinclude, @@ -41500,13 +41506,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [19305] = 5, - ACTIONS(644), 1, + ACTIONS(652), 1, anon_sym_COLON_COLON, - ACTIONS(1143), 1, + ACTIONS(1151), 1, anon_sym_LT, - ACTIONS(1145), 1, + ACTIONS(1153), 1, anon_sym_LBRACK, - ACTIONS(670), 17, + ACTIONS(678), 17, anon_sym_BEGIN, anon_sym_END, anon_sym_BEGINFILE, @@ -41524,7 +41530,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, anon_sym_function, anon_sym_func, - ACTIONS(672), 27, + ACTIONS(680), 27, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_ATinclude, @@ -41553,7 +41559,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [19363] = 2, - ACTIONS(678), 18, + ACTIONS(686), 18, anon_sym_BEGIN, anon_sym_END, anon_sym_BEGINFILE, @@ -41572,7 +41578,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, anon_sym_function, anon_sym_func, - ACTIONS(680), 29, + ACTIONS(688), 29, sym_concatenating_space, ts_builtin_sym_end, anon_sym_COMMA, @@ -41603,9 +41609,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [19415] = 3, - ACTIONS(1133), 1, + ACTIONS(1141), 1, anon_sym_LBRACK, - ACTIONS(674), 18, + ACTIONS(682), 18, anon_sym_BEGIN, anon_sym_END, anon_sym_BEGINFILE, @@ -41624,7 +41630,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, anon_sym_function, anon_sym_func, - ACTIONS(676), 28, + ACTIONS(684), 28, sym_concatenating_space, ts_builtin_sym_end, anon_sym_COMMA, @@ -41654,7 +41660,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [19469] = 2, - ACTIONS(712), 18, + ACTIONS(720), 18, anon_sym_BEGIN, anon_sym_END, anon_sym_BEGINFILE, @@ -41673,7 +41679,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, anon_sym_function, anon_sym_func, - ACTIONS(714), 29, + ACTIONS(722), 29, sym_concatenating_space, ts_builtin_sym_end, anon_sym_COMMA, @@ -41704,11 +41710,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [19521] = 4, - ACTIONS(644), 1, + ACTIONS(652), 1, anon_sym_COLON_COLON, - ACTIONS(1145), 1, + ACTIONS(1153), 1, anon_sym_LBRACK, - ACTIONS(670), 18, + ACTIONS(678), 18, anon_sym_BEGIN, anon_sym_END, anon_sym_BEGINFILE, @@ -41727,7 +41733,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, anon_sym_function, anon_sym_func, - ACTIONS(672), 27, + ACTIONS(680), 27, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_ATinclude, @@ -41756,9 +41762,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [19577] = 3, - ACTIONS(1147), 1, + ACTIONS(1155), 1, sym_regex_flags, - ACTIONS(816), 18, + ACTIONS(824), 18, anon_sym_BEGIN, anon_sym_END, anon_sym_BEGINFILE, @@ -41777,7 +41783,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, anon_sym_function, anon_sym_func, - ACTIONS(820), 28, + ACTIONS(828), 28, sym_concatenating_space, ts_builtin_sym_end, anon_sym_COMMA, @@ -41807,9 +41813,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [19631] = 3, - ACTIONS(1133), 1, + ACTIONS(1141), 1, anon_sym_LBRACK, - ACTIONS(670), 18, + ACTIONS(678), 18, anon_sym_BEGIN, anon_sym_END, anon_sym_BEGINFILE, @@ -41828,7 +41834,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, anon_sym_function, anon_sym_func, - ACTIONS(672), 28, + ACTIONS(680), 28, sym_concatenating_space, ts_builtin_sym_end, anon_sym_COMMA, @@ -41858,11 +41864,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [19685] = 4, - ACTIONS(1133), 1, + ACTIONS(1141), 1, anon_sym_LBRACK, - ACTIONS(1139), 1, + ACTIONS(1147), 1, anon_sym_LT, - ACTIONS(670), 17, + ACTIONS(678), 17, anon_sym_BEGIN, anon_sym_END, anon_sym_BEGINFILE, @@ -41880,7 +41886,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, anon_sym_function, anon_sym_func, - ACTIONS(672), 28, + ACTIONS(680), 28, sym_concatenating_space, ts_builtin_sym_end, anon_sym_COMMA, @@ -41910,7 +41916,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [19741] = 2, - ACTIONS(678), 18, + ACTIONS(686), 18, anon_sym_BEGIN, anon_sym_END, anon_sym_BEGINFILE, @@ -41929,7 +41935,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, anon_sym_function, anon_sym_func, - ACTIONS(680), 29, + ACTIONS(688), 29, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_ATinclude, @@ -41960,11 +41966,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [19793] = 4, - ACTIONS(644), 1, + ACTIONS(652), 1, anon_sym_COLON_COLON, - ACTIONS(1145), 1, + ACTIONS(1153), 1, anon_sym_LBRACK, - ACTIONS(674), 18, + ACTIONS(682), 18, anon_sym_BEGIN, anon_sym_END, anon_sym_BEGINFILE, @@ -41983,7 +41989,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, anon_sym_function, anon_sym_func, - ACTIONS(676), 27, + ACTIONS(684), 27, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_ATinclude, @@ -42012,7 +42018,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [19849] = 2, - ACTIONS(756), 18, + ACTIONS(764), 18, anon_sym_BEGIN, anon_sym_END, anon_sym_BEGINFILE, @@ -42031,7 +42037,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, anon_sym_function, anon_sym_func, - ACTIONS(758), 28, + ACTIONS(766), 28, sym_concatenating_space, ts_builtin_sym_end, anon_sym_COMMA, @@ -42061,7 +42067,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [19900] = 2, - ACTIONS(740), 18, + ACTIONS(748), 18, anon_sym_BEGIN, anon_sym_END, anon_sym_BEGINFILE, @@ -42080,7 +42086,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, anon_sym_function, anon_sym_func, - ACTIONS(742), 28, + ACTIONS(750), 28, sym_concatenating_space, ts_builtin_sym_end, anon_sym_COMMA, @@ -42110,7 +42116,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [19951] = 2, - ACTIONS(808), 18, + ACTIONS(816), 18, anon_sym_BEGIN, anon_sym_END, anon_sym_BEGINFILE, @@ -42129,7 +42135,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, anon_sym_function, anon_sym_func, - ACTIONS(810), 28, + ACTIONS(818), 28, sym_concatenating_space, ts_builtin_sym_end, anon_sym_COMMA, @@ -42159,7 +42165,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [20002] = 2, - ACTIONS(776), 18, + ACTIONS(784), 18, anon_sym_BEGIN, anon_sym_END, anon_sym_BEGINFILE, @@ -42178,7 +42184,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, anon_sym_function, anon_sym_func, - ACTIONS(778), 28, + ACTIONS(786), 28, sym_concatenating_space, ts_builtin_sym_end, anon_sym_COMMA, @@ -42208,7 +42214,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [20053] = 2, - ACTIONS(804), 18, + ACTIONS(812), 18, anon_sym_BEGIN, anon_sym_END, anon_sym_BEGINFILE, @@ -42227,7 +42233,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, anon_sym_function, anon_sym_func, - ACTIONS(806), 28, + ACTIONS(814), 28, sym_concatenating_space, ts_builtin_sym_end, anon_sym_COMMA, @@ -42257,7 +42263,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [20104] = 2, - ACTIONS(784), 18, + ACTIONS(792), 18, anon_sym_BEGIN, anon_sym_END, anon_sym_BEGINFILE, @@ -42276,7 +42282,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, anon_sym_function, anon_sym_func, - ACTIONS(786), 28, + ACTIONS(794), 28, sym_concatenating_space, ts_builtin_sym_end, anon_sym_COMMA, @@ -42306,7 +42312,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [20155] = 2, - ACTIONS(732), 18, + ACTIONS(740), 18, anon_sym_BEGIN, anon_sym_END, anon_sym_BEGINFILE, @@ -42325,7 +42331,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, anon_sym_function, anon_sym_func, - ACTIONS(734), 28, + ACTIONS(742), 28, sym_concatenating_space, ts_builtin_sym_end, anon_sym_COMMA, @@ -42355,7 +42361,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [20206] = 2, - ACTIONS(788), 18, + ACTIONS(796), 18, anon_sym_BEGIN, anon_sym_END, anon_sym_BEGINFILE, @@ -42374,7 +42380,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, anon_sym_function, anon_sym_func, - ACTIONS(790), 28, + ACTIONS(798), 28, sym_concatenating_space, ts_builtin_sym_end, anon_sym_COMMA, @@ -42404,7 +42410,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [20257] = 2, - ACTIONS(772), 18, + ACTIONS(780), 18, anon_sym_BEGIN, anon_sym_END, anon_sym_BEGINFILE, @@ -42423,7 +42429,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, anon_sym_function, anon_sym_func, - ACTIONS(774), 28, + ACTIONS(782), 28, sym_concatenating_space, ts_builtin_sym_end, anon_sym_COMMA, @@ -42453,7 +42459,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [20308] = 4, - ACTIONS(636), 7, + ACTIONS(644), 7, anon_sym_in, anon_sym_LT, anon_sym_GT, @@ -42461,7 +42467,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(634), 11, + ACTIONS(642), 11, anon_sym_BEGIN, anon_sym_END, anon_sym_BEGINFILE, @@ -42473,7 +42479,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, anon_sym_function, anon_sym_func, - ACTIONS(646), 14, + ACTIONS(654), 14, sym_concatenating_space, ts_builtin_sym_end, anon_sym_COMMA, @@ -42488,7 +42494,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - ACTIONS(650), 14, + ACTIONS(658), 14, anon_sym_PIPE_AMP, anon_sym_QMARK, anon_sym_CARET, @@ -42504,9 +42510,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, [20363] = 3, - ACTIONS(1149), 1, + ACTIONS(1157), 1, sym_regex_flags, - ACTIONS(816), 18, + ACTIONS(824), 18, anon_sym_BEGIN, anon_sym_END, anon_sym_BEGINFILE, @@ -42525,7 +42531,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, anon_sym_function, anon_sym_func, - ACTIONS(820), 27, + ACTIONS(828), 27, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_ATinclude, @@ -42554,41 +42560,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [20416] = 15, - ACTIONS(1151), 1, + ACTIONS(1159), 1, anon_sym_in, - ACTIONS(1155), 1, + ACTIONS(1163), 1, anon_sym_PIPE, - ACTIONS(1157), 1, + ACTIONS(1165), 1, anon_sym_PIPE_AMP, - ACTIONS(1159), 1, + ACTIONS(1167), 1, anon_sym_QMARK, - ACTIONS(1163), 1, + ACTIONS(1171), 1, anon_sym_STAR, - ACTIONS(1173), 1, + ACTIONS(1181), 1, anon_sym_AMP_AMP, - ACTIONS(1175), 1, + ACTIONS(1183), 1, anon_sym_PIPE_PIPE, - ACTIONS(1153), 2, + ACTIONS(1161), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1161), 2, + ACTIONS(1169), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(1165), 2, + ACTIONS(1173), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1167), 2, + ACTIONS(1175), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1171), 2, + ACTIONS(1179), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(1169), 4, + ACTIONS(1177), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(836), 11, + ACTIONS(844), 11, anon_sym_BEGIN, anon_sym_END, anon_sym_BEGINFILE, @@ -42600,7 +42606,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, anon_sym_function, anon_sym_func, - ACTIONS(848), 14, + ACTIONS(856), 14, sym_concatenating_space, ts_builtin_sym_end, anon_sym_COMMA, @@ -42630,7 +42636,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, ACTIONS(81), 1, anon_sym_DQUOTE, - ACTIONS(894), 1, + ACTIONS(902), 1, sym__if_else_separator, STATE(575), 1, sym_ns_qualified_name, @@ -42652,7 +42658,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, - ACTIONS(892), 7, + ACTIONS(900), 7, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, @@ -42682,29 +42688,29 @@ static const uint16_t ts_small_parse_table[] = { sym_regex_constant, sym_indirect_func_call, [20578] = 9, - ACTIONS(1163), 1, + ACTIONS(1171), 1, anon_sym_STAR, - ACTIONS(1153), 2, + ACTIONS(1161), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1161), 2, + ACTIONS(1169), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(1165), 2, + ACTIONS(1173), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1167), 2, + ACTIONS(1175), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1171), 2, + ACTIONS(1179), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(1169), 4, + ACTIONS(1177), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(830), 13, + ACTIONS(838), 13, anon_sym_BEGIN, anon_sym_END, anon_sym_BEGINFILE, @@ -42718,7 +42724,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, anon_sym_function, anon_sym_func, - ACTIONS(834), 18, + ACTIONS(842), 18, sym_concatenating_space, ts_builtin_sym_end, anon_sym_COMMA, @@ -42738,9 +42744,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [20643] = 3, - ACTIONS(1003), 1, + ACTIONS(1011), 1, sym_concatenating_space, - ACTIONS(636), 18, + ACTIONS(644), 18, anon_sym_BEGIN, anon_sym_END, anon_sym_BEGINFILE, @@ -42759,7 +42765,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, anon_sym_function, anon_sym_func, - ACTIONS(650), 27, + ACTIONS(658), 27, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_ATinclude, @@ -42788,18 +42794,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [20696] = 6, - ACTIONS(1163), 1, + ACTIONS(1171), 1, anon_sym_STAR, - ACTIONS(1161), 2, + ACTIONS(1169), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(1165), 2, + ACTIONS(1173), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1167), 2, + ACTIONS(1175), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(764), 15, + ACTIONS(772), 15, anon_sym_BEGIN, anon_sym_END, anon_sym_BEGINFILE, @@ -42815,7 +42821,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, anon_sym_function, anon_sym_func, - ACTIONS(766), 24, + ACTIONS(774), 24, sym_concatenating_space, ts_builtin_sym_end, anon_sym_COMMA, @@ -42855,7 +42861,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, ACTIONS(81), 1, anon_sym_DQUOTE, - ACTIONS(900), 1, + ACTIONS(908), 1, sym__if_else_separator, STATE(575), 1, sym_ns_qualified_name, @@ -42877,7 +42883,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, - ACTIONS(898), 7, + ACTIONS(906), 7, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, @@ -42907,7 +42913,7 @@ static const uint16_t ts_small_parse_table[] = { sym_regex_constant, sym_indirect_func_call, [20840] = 2, - ACTIONS(764), 18, + ACTIONS(772), 18, anon_sym_BEGIN, anon_sym_END, anon_sym_BEGINFILE, @@ -42926,7 +42932,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, anon_sym_function, anon_sym_func, - ACTIONS(766), 28, + ACTIONS(774), 28, sym_concatenating_space, ts_builtin_sym_end, anon_sym_COMMA, @@ -42956,37 +42962,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [20891] = 13, - ACTIONS(1151), 1, - anon_sym_in, ACTIONS(1159), 1, + anon_sym_in, + ACTIONS(1167), 1, anon_sym_QMARK, - ACTIONS(1163), 1, + ACTIONS(1171), 1, anon_sym_STAR, - ACTIONS(1173), 1, + ACTIONS(1181), 1, anon_sym_AMP_AMP, - ACTIONS(1175), 1, + ACTIONS(1183), 1, anon_sym_PIPE_PIPE, - ACTIONS(1153), 2, + ACTIONS(1161), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1161), 2, + ACTIONS(1169), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(1165), 2, + ACTIONS(1173), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1167), 2, + ACTIONS(1175), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1171), 2, + ACTIONS(1179), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(1169), 4, + ACTIONS(1177), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(850), 12, + ACTIONS(858), 12, anon_sym_BEGIN, anon_sym_END, anon_sym_BEGINFILE, @@ -42999,7 +43005,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, anon_sym_function, anon_sym_func, - ACTIONS(852), 15, + ACTIONS(860), 15, sym_concatenating_space, ts_builtin_sym_end, anon_sym_COMMA, @@ -43016,29 +43022,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [20964] = 9, - ACTIONS(1163), 1, + ACTIONS(1171), 1, anon_sym_STAR, - ACTIONS(1153), 2, + ACTIONS(1161), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1161), 2, + ACTIONS(1169), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(1165), 2, + ACTIONS(1173), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1167), 2, + ACTIONS(1175), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1171), 2, + ACTIONS(1179), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(1169), 4, + ACTIONS(1177), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(858), 13, + ACTIONS(866), 13, anon_sym_BEGIN, anon_sym_END, anon_sym_BEGINFILE, @@ -43052,7 +43058,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, anon_sym_function, anon_sym_func, - ACTIONS(860), 18, + ACTIONS(868), 18, sym_concatenating_space, ts_builtin_sym_end, anon_sym_COMMA, @@ -43072,7 +43078,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [21029] = 2, - ACTIONS(736), 18, + ACTIONS(744), 18, anon_sym_BEGIN, anon_sym_END, anon_sym_BEGINFILE, @@ -43091,7 +43097,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, anon_sym_function, anon_sym_func, - ACTIONS(738), 28, + ACTIONS(746), 28, sym_concatenating_space, ts_builtin_sym_end, anon_sym_COMMA, @@ -43121,9 +43127,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [21080] = 3, - ACTIONS(1145), 1, + ACTIONS(1153), 1, anon_sym_LBRACK, - ACTIONS(670), 18, + ACTIONS(678), 18, anon_sym_BEGIN, anon_sym_END, anon_sym_BEGINFILE, @@ -43142,7 +43148,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, anon_sym_function, anon_sym_func, - ACTIONS(672), 27, + ACTIONS(680), 27, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_ATinclude, @@ -43171,17 +43177,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [21133] = 5, - ACTIONS(710), 1, + ACTIONS(718), 1, sym_identifier, STATE(1958), 1, sym_namespace, - ACTIONS(700), 2, + ACTIONS(708), 2, sym_concatenating_space, sym__if_else_separator, STATE(165), 2, sym_array_ref, sym_ns_qualified_name, - ACTIONS(696), 40, + ACTIONS(704), 40, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -43223,10 +43229,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_POUND, [21190] = 3, - ACTIONS(1161), 2, + ACTIONS(1169), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(764), 18, + ACTIONS(772), 18, anon_sym_BEGIN, anon_sym_END, anon_sym_BEGINFILE, @@ -43245,7 +43251,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, anon_sym_function, anon_sym_func, - ACTIONS(766), 26, + ACTIONS(774), 26, sym_concatenating_space, ts_builtin_sym_end, anon_sym_COMMA, @@ -43273,15 +43279,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [21243] = 5, - ACTIONS(1163), 1, + ACTIONS(1171), 1, anon_sym_STAR, - ACTIONS(1161), 2, + ACTIONS(1169), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(1165), 2, + ACTIONS(1173), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(764), 17, + ACTIONS(772), 17, anon_sym_BEGIN, anon_sym_END, anon_sym_BEGINFILE, @@ -43299,7 +43305,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, anon_sym_function, anon_sym_func, - ACTIONS(766), 24, + ACTIONS(774), 24, sym_concatenating_space, ts_builtin_sym_end, anon_sym_COMMA, @@ -43325,26 +43331,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [21300] = 8, - ACTIONS(1163), 1, + ACTIONS(1171), 1, anon_sym_STAR, - ACTIONS(1153), 2, + ACTIONS(1161), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1161), 2, + ACTIONS(1169), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(1165), 2, + ACTIONS(1173), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1167), 2, + ACTIONS(1175), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1169), 4, + ACTIONS(1177), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(764), 13, + ACTIONS(772), 13, anon_sym_BEGIN, anon_sym_END, anon_sym_BEGINFILE, @@ -43358,7 +43364,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, anon_sym_function, anon_sym_func, - ACTIONS(766), 20, + ACTIONS(774), 20, sym_concatenating_space, ts_builtin_sym_end, anon_sym_COMMA, @@ -43380,31 +43386,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [21363] = 10, - ACTIONS(1151), 1, + ACTIONS(1159), 1, anon_sym_in, - ACTIONS(1163), 1, + ACTIONS(1171), 1, anon_sym_STAR, - ACTIONS(1153), 2, + ACTIONS(1161), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1161), 2, + ACTIONS(1169), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(1165), 2, + ACTIONS(1173), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1167), 2, + ACTIONS(1175), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1171), 2, + ACTIONS(1179), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(1169), 4, + ACTIONS(1177), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(764), 12, + ACTIONS(772), 12, anon_sym_BEGIN, anon_sym_END, anon_sym_BEGINFILE, @@ -43417,7 +43423,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, anon_sym_function, anon_sym_func, - ACTIONS(766), 18, + ACTIONS(774), 18, sym_concatenating_space, ts_builtin_sym_end, anon_sym_COMMA, @@ -43437,33 +43443,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [21430] = 11, - ACTIONS(1151), 1, + ACTIONS(1159), 1, anon_sym_in, - ACTIONS(1163), 1, + ACTIONS(1171), 1, anon_sym_STAR, - ACTIONS(1173), 1, + ACTIONS(1181), 1, anon_sym_AMP_AMP, - ACTIONS(1153), 2, + ACTIONS(1161), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1161), 2, + ACTIONS(1169), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(1165), 2, + ACTIONS(1173), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1167), 2, + ACTIONS(1175), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1171), 2, + ACTIONS(1179), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(1169), 4, + ACTIONS(1177), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(764), 12, + ACTIONS(772), 12, anon_sym_BEGIN, anon_sym_END, anon_sym_BEGINFILE, @@ -43476,7 +43482,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, anon_sym_function, anon_sym_func, - ACTIONS(766), 17, + ACTIONS(774), 17, sym_concatenating_space, ts_builtin_sym_end, anon_sym_COMMA, @@ -43495,7 +43501,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [21499] = 2, - ACTIONS(732), 18, + ACTIONS(740), 18, anon_sym_BEGIN, anon_sym_END, anon_sym_BEGINFILE, @@ -43514,7 +43520,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, anon_sym_function, anon_sym_func, - ACTIONS(734), 28, + ACTIONS(742), 28, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_ATinclude, @@ -43544,7 +43550,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [21550] = 2, - ACTIONS(796), 18, + ACTIONS(804), 18, anon_sym_BEGIN, anon_sym_END, anon_sym_BEGINFILE, @@ -43563,7 +43569,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, anon_sym_function, anon_sym_func, - ACTIONS(798), 28, + ACTIONS(806), 28, sym_concatenating_space, ts_builtin_sym_end, anon_sym_COMMA, @@ -43593,7 +43599,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [21601] = 2, - ACTIONS(768), 18, + ACTIONS(776), 18, anon_sym_BEGIN, anon_sym_END, anon_sym_BEGINFILE, @@ -43612,7 +43618,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, anon_sym_function, anon_sym_func, - ACTIONS(770), 28, + ACTIONS(778), 28, sym_concatenating_space, ts_builtin_sym_end, anon_sym_COMMA, @@ -43642,7 +43648,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [21652] = 2, - ACTIONS(780), 18, + ACTIONS(788), 18, anon_sym_BEGIN, anon_sym_END, anon_sym_BEGINFILE, @@ -43661,7 +43667,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, anon_sym_function, anon_sym_func, - ACTIONS(782), 28, + ACTIONS(790), 28, sym_concatenating_space, ts_builtin_sym_end, anon_sym_COMMA, @@ -43691,7 +43697,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [21703] = 2, - ACTIONS(792), 18, + ACTIONS(800), 18, anon_sym_BEGIN, anon_sym_END, anon_sym_BEGINFILE, @@ -43710,7 +43716,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, anon_sym_function, anon_sym_func, - ACTIONS(794), 28, + ACTIONS(802), 28, sym_concatenating_space, ts_builtin_sym_end, anon_sym_COMMA, @@ -43740,9 +43746,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [21754] = 3, - ACTIONS(1145), 1, + ACTIONS(1153), 1, anon_sym_LBRACK, - ACTIONS(674), 18, + ACTIONS(682), 18, anon_sym_BEGIN, anon_sym_END, anon_sym_BEGINFILE, @@ -43761,7 +43767,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, anon_sym_function, anon_sym_func, - ACTIONS(676), 27, + ACTIONS(684), 27, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_ATinclude, @@ -43790,7 +43796,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [21807] = 2, - ACTIONS(800), 18, + ACTIONS(808), 18, anon_sym_BEGIN, anon_sym_END, anon_sym_BEGINFILE, @@ -43809,7 +43815,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, anon_sym_function, anon_sym_func, - ACTIONS(802), 28, + ACTIONS(810), 28, sym_concatenating_space, ts_builtin_sym_end, anon_sym_COMMA, @@ -43839,11 +43845,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [21858] = 4, - ACTIONS(1143), 1, + ACTIONS(1151), 1, anon_sym_LT, - ACTIONS(1145), 1, + ACTIONS(1153), 1, anon_sym_LBRACK, - ACTIONS(670), 17, + ACTIONS(678), 17, anon_sym_BEGIN, anon_sym_END, anon_sym_BEGINFILE, @@ -43861,7 +43867,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, anon_sym_function, anon_sym_func, - ACTIONS(672), 27, + ACTIONS(680), 27, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_ATinclude, @@ -43890,7 +43896,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [21913] = 2, - ACTIONS(674), 18, + ACTIONS(682), 18, anon_sym_BEGIN, anon_sym_END, anon_sym_BEGINFILE, @@ -43909,7 +43915,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, anon_sym_function, anon_sym_func, - ACTIONS(676), 28, + ACTIONS(684), 28, sym_concatenating_space, ts_builtin_sym_end, anon_sym_COMMA, @@ -43939,18 +43945,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [21964] = 6, - ACTIONS(1163), 1, + ACTIONS(1171), 1, anon_sym_STAR, - ACTIONS(1161), 2, + ACTIONS(1169), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(1165), 2, + ACTIONS(1173), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1167), 2, + ACTIONS(1175), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(854), 15, + ACTIONS(862), 15, anon_sym_BEGIN, anon_sym_END, anon_sym_BEGINFILE, @@ -43966,7 +43972,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, anon_sym_function, anon_sym_func, - ACTIONS(856), 24, + ACTIONS(864), 24, sym_concatenating_space, ts_builtin_sym_end, anon_sym_COMMA, @@ -43992,7 +43998,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [22023] = 2, - ACTIONS(808), 18, + ACTIONS(816), 18, anon_sym_BEGIN, anon_sym_END, anon_sym_BEGINFILE, @@ -44011,7 +44017,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, anon_sym_function, anon_sym_func, - ACTIONS(810), 27, + ACTIONS(818), 27, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_ATinclude, @@ -44040,7 +44046,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [22073] = 2, - ACTIONS(740), 18, + ACTIONS(748), 18, anon_sym_BEGIN, anon_sym_END, anon_sym_BEGINFILE, @@ -44059,7 +44065,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, anon_sym_function, anon_sym_func, - ACTIONS(742), 27, + ACTIONS(750), 27, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_ATinclude, @@ -44088,7 +44094,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [22123] = 2, - ACTIONS(674), 18, + ACTIONS(682), 18, anon_sym_BEGIN, anon_sym_END, anon_sym_BEGINFILE, @@ -44107,7 +44113,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, anon_sym_function, anon_sym_func, - ACTIONS(676), 27, + ACTIONS(684), 27, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_ATinclude, @@ -44136,7 +44142,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [22173] = 2, - ACTIONS(800), 18, + ACTIONS(808), 18, anon_sym_BEGIN, anon_sym_END, anon_sym_BEGINFILE, @@ -44155,7 +44161,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, anon_sym_function, anon_sym_func, - ACTIONS(802), 27, + ACTIONS(810), 27, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_ATinclude, @@ -44184,7 +44190,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [22223] = 2, - ACTIONS(792), 18, + ACTIONS(800), 18, anon_sym_BEGIN, anon_sym_END, anon_sym_BEGINFILE, @@ -44203,7 +44209,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, anon_sym_function, anon_sym_func, - ACTIONS(794), 27, + ACTIONS(802), 27, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_ATinclude, @@ -44232,7 +44238,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [22273] = 2, - ACTIONS(780), 18, + ACTIONS(788), 18, anon_sym_BEGIN, anon_sym_END, anon_sym_BEGINFILE, @@ -44251,7 +44257,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, anon_sym_function, anon_sym_func, - ACTIONS(782), 27, + ACTIONS(790), 27, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_ATinclude, @@ -44280,7 +44286,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [22323] = 2, - ACTIONS(784), 18, + ACTIONS(792), 18, anon_sym_BEGIN, anon_sym_END, anon_sym_BEGINFILE, @@ -44299,7 +44305,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, anon_sym_function, anon_sym_func, - ACTIONS(786), 27, + ACTIONS(794), 27, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_ATinclude, @@ -44328,41 +44334,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [22373] = 15, - ACTIONS(1151), 1, - anon_sym_in, ACTIONS(1159), 1, + anon_sym_in, + ACTIONS(1167), 1, anon_sym_QMARK, - ACTIONS(1163), 1, + ACTIONS(1171), 1, anon_sym_STAR, - ACTIONS(1173), 1, + ACTIONS(1181), 1, anon_sym_AMP_AMP, - ACTIONS(1175), 1, + ACTIONS(1183), 1, anon_sym_PIPE_PIPE, - ACTIONS(1177), 1, + ACTIONS(1185), 1, anon_sym_PIPE, - ACTIONS(1179), 1, + ACTIONS(1187), 1, anon_sym_PIPE_AMP, - ACTIONS(1153), 2, + ACTIONS(1161), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1161), 2, + ACTIONS(1169), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(1165), 2, + ACTIONS(1173), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1167), 2, + ACTIONS(1175), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1171), 2, + ACTIONS(1179), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(1169), 4, + ACTIONS(1177), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(836), 11, + ACTIONS(844), 11, anon_sym_BEGIN, anon_sym_END, anon_sym_BEGINFILE, @@ -44374,7 +44380,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, anon_sym_function, anon_sym_func, - ACTIONS(848), 13, + ACTIONS(856), 13, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_ATinclude, @@ -44389,7 +44395,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [22449] = 2, - ACTIONS(788), 18, + ACTIONS(796), 18, anon_sym_BEGIN, anon_sym_END, anon_sym_BEGINFILE, @@ -44408,7 +44414,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, anon_sym_function, anon_sym_func, - ACTIONS(790), 27, + ACTIONS(798), 27, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_ATinclude, @@ -44437,7 +44443,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [22499] = 2, - ACTIONS(776), 18, + ACTIONS(784), 18, anon_sym_BEGIN, anon_sym_END, anon_sym_BEGINFILE, @@ -44456,7 +44462,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, anon_sym_function, anon_sym_func, - ACTIONS(778), 27, + ACTIONS(786), 27, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_ATinclude, @@ -44485,43 +44491,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [22549] = 16, - ACTIONS(1151), 1, - anon_sym_in, ACTIONS(1159), 1, + anon_sym_in, + ACTIONS(1167), 1, anon_sym_QMARK, - ACTIONS(1163), 1, + ACTIONS(1171), 1, anon_sym_STAR, - ACTIONS(1173), 1, + ACTIONS(1181), 1, anon_sym_AMP_AMP, - ACTIONS(1175), 1, + ACTIONS(1183), 1, anon_sym_PIPE_PIPE, - ACTIONS(1177), 1, + ACTIONS(1185), 1, anon_sym_PIPE, - ACTIONS(1179), 1, + ACTIONS(1187), 1, anon_sym_PIPE_AMP, - ACTIONS(1185), 1, + ACTIONS(1193), 1, anon_sym_COMMA, - ACTIONS(1153), 2, + ACTIONS(1161), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1161), 2, + ACTIONS(1169), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(1165), 2, + ACTIONS(1173), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1167), 2, + ACTIONS(1175), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1171), 2, + ACTIONS(1179), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(1169), 4, + ACTIONS(1177), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1183), 11, + ACTIONS(1191), 11, anon_sym_BEGIN, anon_sym_END, anon_sym_BEGINFILE, @@ -44533,7 +44539,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, anon_sym_function, anon_sym_func, - ACTIONS(1181), 12, + ACTIONS(1189), 12, ts_builtin_sym_end, anon_sym_ATinclude, anon_sym_ATload, @@ -44547,19 +44553,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [22627] = 8, - ACTIONS(642), 1, + ACTIONS(650), 1, anon_sym_LBRACK, - ACTIONS(644), 1, + ACTIONS(652), 1, anon_sym_COLON_COLON, - ACTIONS(1187), 1, + ACTIONS(1195), 1, anon_sym_LPAREN2, - ACTIONS(640), 2, + ACTIONS(648), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(646), 2, + ACTIONS(654), 2, sym_concatenating_space, sym__if_else_separator, - ACTIONS(708), 7, + ACTIONS(716), 7, anon_sym_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -44567,7 +44573,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_CARET_EQ, - ACTIONS(634), 10, + ACTIONS(642), 10, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -44578,7 +44584,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_GT_GT, anon_sym_POUND, - ACTIONS(636), 21, + ACTIONS(644), 21, anon_sym_in, anon_sym_LT, anon_sym_GT, @@ -44635,7 +44641,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, - ACTIONS(898), 7, + ACTIONS(906), 7, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, @@ -44665,7 +44671,7 @@ static const uint16_t ts_small_parse_table[] = { sym_regex_constant, sym_indirect_func_call, [22771] = 2, - ACTIONS(768), 18, + ACTIONS(776), 18, anon_sym_BEGIN, anon_sym_END, anon_sym_BEGINFILE, @@ -44684,7 +44690,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, anon_sym_function, anon_sym_func, - ACTIONS(770), 27, + ACTIONS(778), 27, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_ATinclude, @@ -44713,16 +44719,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [22821] = 5, - ACTIONS(700), 1, + ACTIONS(708), 1, sym_concatenating_space, - ACTIONS(812), 1, + ACTIONS(820), 1, sym_identifier, STATE(1881), 1, sym_namespace, STATE(216), 2, sym_array_ref, sym_ns_qualified_name, - ACTIONS(696), 40, + ACTIONS(704), 40, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -44764,9 +44770,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_POUND, [22877] = 7, - ACTIONS(1189), 1, + ACTIONS(1197), 1, sym_identifier, - ACTIONS(1191), 1, + ACTIONS(1199), 1, anon_sym_LT, STATE(165), 1, sym_array_ref, @@ -44774,10 +44780,10 @@ static const uint16_t ts_small_parse_table[] = { sym_ns_qualified_name, STATE(1958), 1, sym_namespace, - ACTIONS(700), 2, + ACTIONS(708), 2, sym_concatenating_space, sym__if_else_separator, - ACTIONS(696), 38, + ACTIONS(704), 38, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -44851,7 +44857,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, - ACTIONS(892), 7, + ACTIONS(900), 7, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, @@ -44881,11 +44887,11 @@ static const uint16_t ts_small_parse_table[] = { sym_regex_constant, sym_indirect_func_call, [23019] = 7, - ACTIONS(700), 1, + ACTIONS(708), 1, sym_concatenating_space, - ACTIONS(1193), 1, + ACTIONS(1201), 1, sym_identifier, - ACTIONS(1195), 1, + ACTIONS(1203), 1, anon_sym_LT, STATE(216), 1, sym_array_ref, @@ -44893,7 +44899,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ns_qualified_name, STATE(1881), 1, sym_namespace, - ACTIONS(696), 38, + ACTIONS(704), 38, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -44933,19 +44939,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_POUND, [23078] = 7, - ACTIONS(642), 1, + ACTIONS(650), 1, anon_sym_LBRACK, - ACTIONS(644), 1, + ACTIONS(652), 1, anon_sym_COLON_COLON, - ACTIONS(1187), 1, + ACTIONS(1195), 1, anon_sym_LPAREN2, - ACTIONS(650), 2, + ACTIONS(658), 2, sym_concatenating_space, sym__if_else_separator, - ACTIONS(1197), 2, + ACTIONS(1205), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1199), 7, + ACTIONS(1207), 7, anon_sym_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -44953,7 +44959,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_CARET_EQ, - ACTIONS(636), 30, + ACTIONS(644), 30, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -44985,17 +44991,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_POUND, [23137] = 7, - ACTIONS(642), 1, + ACTIONS(650), 1, anon_sym_LBRACK, - ACTIONS(1187), 1, + ACTIONS(1195), 1, anon_sym_LPAREN2, - ACTIONS(640), 2, + ACTIONS(648), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(646), 2, + ACTIONS(654), 2, sym_concatenating_space, sym__if_else_separator, - ACTIONS(708), 7, + ACTIONS(716), 7, anon_sym_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -45003,7 +45009,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_CARET_EQ, - ACTIONS(634), 10, + ACTIONS(642), 10, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -45014,7 +45020,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_GT_GT, anon_sym_POUND, - ACTIONS(636), 21, + ACTIONS(644), 21, anon_sym_in, anon_sym_LT, anon_sym_GT, @@ -45037,18 +45043,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, [23196] = 8, - ACTIONS(644), 1, + ACTIONS(652), 1, anon_sym_COLON_COLON, - ACTIONS(646), 1, + ACTIONS(654), 1, sym_concatenating_space, - ACTIONS(684), 1, + ACTIONS(692), 1, anon_sym_LBRACK, - ACTIONS(1201), 1, + ACTIONS(1209), 1, anon_sym_LPAREN2, - ACTIONS(640), 2, + ACTIONS(648), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(708), 7, + ACTIONS(716), 7, anon_sym_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -45056,7 +45062,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_CARET_EQ, - ACTIONS(634), 10, + ACTIONS(642), 10, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -45067,7 +45073,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_GT_GT, anon_sym_POUND, - ACTIONS(636), 21, + ACTIONS(644), 21, anon_sym_in, anon_sym_LT, anon_sym_GT, @@ -45090,41 +45096,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, [23257] = 15, - ACTIONS(1151), 1, - anon_sym_in, ACTIONS(1159), 1, + anon_sym_in, + ACTIONS(1167), 1, anon_sym_QMARK, - ACTIONS(1163), 1, + ACTIONS(1171), 1, anon_sym_STAR, - ACTIONS(1173), 1, + ACTIONS(1181), 1, anon_sym_AMP_AMP, - ACTIONS(1175), 1, + ACTIONS(1183), 1, anon_sym_PIPE_PIPE, - ACTIONS(1177), 1, + ACTIONS(1185), 1, anon_sym_PIPE, - ACTIONS(1179), 1, + ACTIONS(1187), 1, anon_sym_PIPE_AMP, - ACTIONS(1153), 2, + ACTIONS(1161), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1161), 2, + ACTIONS(1169), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(1165), 2, + ACTIONS(1173), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1167), 2, + ACTIONS(1175), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1171), 2, + ACTIONS(1179), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(1169), 4, + ACTIONS(1177), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1205), 11, + ACTIONS(1213), 11, anon_sym_BEGIN, anon_sym_END, anon_sym_BEGINFILE, @@ -45136,7 +45142,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, anon_sym_function, anon_sym_func, - ACTIONS(1203), 12, + ACTIONS(1211), 12, ts_builtin_sym_end, anon_sym_ATinclude, anon_sym_ATload, @@ -45150,20 +45156,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [23332] = 8, - ACTIONS(642), 1, + ACTIONS(650), 1, anon_sym_LBRACK, - ACTIONS(644), 1, + ACTIONS(652), 1, anon_sym_COLON_COLON, - ACTIONS(650), 1, + ACTIONS(658), 1, sym__if_else_separator, - ACTIONS(1187), 1, + ACTIONS(1195), 1, anon_sym_LPAREN2, - ACTIONS(1211), 1, + ACTIONS(1219), 1, sym_concatenating_space, - ACTIONS(1207), 2, + ACTIONS(1215), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1209), 7, + ACTIONS(1217), 7, anon_sym_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -45171,7 +45177,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_CARET_EQ, - ACTIONS(636), 30, + ACTIONS(644), 30, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -45203,17 +45209,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_POUND, [23393] = 6, - ACTIONS(642), 1, + ACTIONS(650), 1, anon_sym_LBRACK, - ACTIONS(1187), 1, + ACTIONS(1195), 1, anon_sym_LPAREN2, - ACTIONS(650), 2, + ACTIONS(658), 2, sym_concatenating_space, sym__if_else_separator, - ACTIONS(1197), 2, + ACTIONS(1205), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1199), 7, + ACTIONS(1207), 7, anon_sym_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -45221,7 +45227,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_CARET_EQ, - ACTIONS(636), 30, + ACTIONS(644), 30, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -45253,16 +45259,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_POUND, [23449] = 7, - ACTIONS(646), 1, + ACTIONS(654), 1, sym_concatenating_space, - ACTIONS(684), 1, + ACTIONS(692), 1, anon_sym_LBRACK, - ACTIONS(1201), 1, + ACTIONS(1209), 1, anon_sym_LPAREN2, - ACTIONS(640), 2, + ACTIONS(648), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(708), 7, + ACTIONS(716), 7, anon_sym_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -45270,7 +45276,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_CARET_EQ, - ACTIONS(634), 10, + ACTIONS(642), 10, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -45281,7 +45287,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_GT_GT, anon_sym_POUND, - ACTIONS(636), 21, + ACTIONS(644), 21, anon_sym_in, anon_sym_LT, anon_sym_GT, @@ -45304,16 +45310,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, [23507] = 5, - ACTIONS(642), 1, + ACTIONS(650), 1, anon_sym_LBRACK, - ACTIONS(644), 1, + ACTIONS(652), 1, anon_sym_COLON_COLON, - ACTIONS(1213), 1, + ACTIONS(1221), 1, anon_sym_LT, - ACTIONS(672), 2, + ACTIONS(680), 2, sym_concatenating_space, sym__if_else_separator, - ACTIONS(670), 38, + ACTIONS(678), 38, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -45359,15 +45365,15 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(464), 1, anon_sym_getline, - ACTIONS(582), 1, + ACTIONS(594), 1, anon_sym_LPAREN, - ACTIONS(584), 1, + ACTIONS(596), 1, anon_sym_SLASH, - ACTIONS(588), 1, + ACTIONS(600), 1, anon_sym_DOLLAR, - ACTIONS(590), 1, + ACTIONS(602), 1, anon_sym_AT, - ACTIONS(900), 1, + ACTIONS(908), 1, sym__if_else_separator, STATE(676), 1, sym_ns_qualified_name, @@ -45382,14 +45388,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(79), 2, aux_sym_number_token1, aux_sym_number_token2, - ACTIONS(586), 2, + ACTIONS(598), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, ACTIONS(472), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, - ACTIONS(898), 4, + ACTIONS(906), 4, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, @@ -45416,18 +45422,18 @@ static const uint16_t ts_small_parse_table[] = { sym_regex_constant, sym_indirect_func_call, [23643] = 7, - ACTIONS(642), 1, - anon_sym_LBRACK, ACTIONS(650), 1, + anon_sym_LBRACK, + ACTIONS(658), 1, sym__if_else_separator, - ACTIONS(1187), 1, + ACTIONS(1195), 1, anon_sym_LPAREN2, - ACTIONS(1211), 1, + ACTIONS(1219), 1, sym_concatenating_space, - ACTIONS(1207), 2, + ACTIONS(1215), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1209), 7, + ACTIONS(1217), 7, anon_sym_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -45435,7 +45441,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_CARET_EQ, - ACTIONS(636), 30, + ACTIONS(644), 30, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -45473,15 +45479,15 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(464), 1, anon_sym_getline, - ACTIONS(582), 1, + ACTIONS(594), 1, anon_sym_LPAREN, - ACTIONS(584), 1, + ACTIONS(596), 1, anon_sym_SLASH, - ACTIONS(588), 1, + ACTIONS(600), 1, anon_sym_DOLLAR, - ACTIONS(590), 1, + ACTIONS(602), 1, anon_sym_AT, - ACTIONS(894), 1, + ACTIONS(902), 1, sym__if_else_separator, STATE(676), 1, sym_ns_qualified_name, @@ -45496,14 +45502,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(79), 2, aux_sym_number_token1, aux_sym_number_token2, - ACTIONS(586), 2, + ACTIONS(598), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, ACTIONS(472), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, - ACTIONS(892), 4, + ACTIONS(900), 4, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, @@ -45530,18 +45536,18 @@ static const uint16_t ts_small_parse_table[] = { sym_regex_constant, sym_indirect_func_call, [23783] = 7, - ACTIONS(644), 1, + ACTIONS(652), 1, anon_sym_COLON_COLON, - ACTIONS(684), 1, + ACTIONS(692), 1, anon_sym_LBRACK, - ACTIONS(1201), 1, + ACTIONS(1209), 1, anon_sym_LPAREN2, - ACTIONS(1219), 1, + ACTIONS(1227), 1, sym_concatenating_space, - ACTIONS(1215), 2, + ACTIONS(1223), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1217), 7, + ACTIONS(1225), 7, anon_sym_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -45549,7 +45555,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_CARET_EQ, - ACTIONS(636), 30, + ACTIONS(644), 30, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -45581,18 +45587,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_POUND, [23841] = 7, - ACTIONS(644), 1, + ACTIONS(652), 1, anon_sym_COLON_COLON, - ACTIONS(650), 1, + ACTIONS(658), 1, sym_concatenating_space, - ACTIONS(684), 1, + ACTIONS(692), 1, anon_sym_LBRACK, - ACTIONS(1201), 1, + ACTIONS(1209), 1, anon_sym_LPAREN2, - ACTIONS(1221), 2, + ACTIONS(1229), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1223), 7, + ACTIONS(1231), 7, anon_sym_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -45600,7 +45606,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_CARET_EQ, - ACTIONS(636), 30, + ACTIONS(644), 30, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -45632,15 +45638,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_POUND, [23899] = 5, - ACTIONS(644), 1, + ACTIONS(652), 1, anon_sym_COLON_COLON, - ACTIONS(672), 1, + ACTIONS(680), 1, sym_concatenating_space, - ACTIONS(684), 1, + ACTIONS(692), 1, anon_sym_LBRACK, - ACTIONS(1225), 1, + ACTIONS(1233), 1, anon_sym_LT, - ACTIONS(670), 38, + ACTIONS(678), 38, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -45680,16 +45686,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_POUND, [23952] = 6, - ACTIONS(642), 1, - anon_sym_LBRACK, ACTIONS(650), 1, + anon_sym_LBRACK, + ACTIONS(658), 1, sym__if_else_separator, - ACTIONS(1211), 1, + ACTIONS(1219), 1, sym_concatenating_space, - ACTIONS(1207), 2, + ACTIONS(1215), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1209), 7, + ACTIONS(1217), 7, anon_sym_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -45697,7 +45703,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_CARET_EQ, - ACTIONS(636), 30, + ACTIONS(644), 30, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -45729,14 +45735,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_POUND, [24007] = 4, - ACTIONS(642), 1, + ACTIONS(650), 1, anon_sym_LBRACK, - ACTIONS(1213), 1, + ACTIONS(1221), 1, anon_sym_LT, - ACTIONS(672), 2, + ACTIONS(680), 2, sym_concatenating_space, sym__if_else_separator, - ACTIONS(670), 38, + ACTIONS(678), 38, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -45776,9 +45782,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_POUND, [24058] = 7, - ACTIONS(1227), 1, + ACTIONS(1235), 1, sym_identifier, - ACTIONS(1229), 1, + ACTIONS(1237), 1, anon_sym_LT, STATE(165), 1, sym_array_ref, @@ -45786,10 +45792,10 @@ static const uint16_t ts_small_parse_table[] = { sym_ns_qualified_name, STATE(1958), 1, sym_namespace, - ACTIONS(700), 2, + ACTIONS(708), 2, sym_concatenating_space, sym__if_else_separator, - ACTIONS(696), 35, + ACTIONS(704), 35, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -45826,15 +45832,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT_EQ, anon_sym_CARET_EQ, [24115] = 5, - ACTIONS(642), 1, + ACTIONS(650), 1, anon_sym_LBRACK, - ACTIONS(650), 2, + ACTIONS(658), 2, sym_concatenating_space, sym__if_else_separator, - ACTIONS(1197), 2, + ACTIONS(1205), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1199), 7, + ACTIONS(1207), 7, anon_sym_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -45842,7 +45848,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_CARET_EQ, - ACTIONS(636), 30, + ACTIONS(644), 30, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -45874,16 +45880,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_POUND, [24168] = 6, - ACTIONS(650), 1, + ACTIONS(658), 1, sym_concatenating_space, - ACTIONS(684), 1, + ACTIONS(692), 1, anon_sym_LBRACK, - ACTIONS(1201), 1, + ACTIONS(1209), 1, anon_sym_LPAREN2, - ACTIONS(1221), 2, + ACTIONS(1229), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1223), 7, + ACTIONS(1231), 7, anon_sym_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -45891,7 +45897,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_CARET_EQ, - ACTIONS(636), 30, + ACTIONS(644), 30, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -45929,13 +45935,13 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(360), 1, anon_sym_getline, - ACTIONS(592), 1, + ACTIONS(620), 1, anon_sym_LPAREN, - ACTIONS(594), 1, + ACTIONS(622), 1, anon_sym_SLASH, - ACTIONS(598), 1, + ACTIONS(626), 1, anon_sym_DOLLAR, - ACTIONS(600), 1, + ACTIONS(628), 1, anon_sym_AT, STATE(709), 1, sym_ns_qualified_name, @@ -45950,14 +45956,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(123), 2, aux_sym_number_token1, aux_sym_number_token2, - ACTIONS(596), 2, + ACTIONS(624), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, ACTIONS(368), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, - ACTIONS(898), 4, + ACTIONS(906), 4, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, @@ -45984,16 +45990,16 @@ static const uint16_t ts_small_parse_table[] = { sym_regex_constant, sym_indirect_func_call, [24302] = 6, - ACTIONS(684), 1, + ACTIONS(692), 1, anon_sym_LBRACK, - ACTIONS(1201), 1, + ACTIONS(1209), 1, anon_sym_LPAREN2, - ACTIONS(1219), 1, + ACTIONS(1227), 1, sym_concatenating_space, - ACTIONS(1215), 2, + ACTIONS(1223), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1217), 7, + ACTIONS(1225), 7, anon_sym_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -46001,7 +46007,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_CARET_EQ, - ACTIONS(636), 30, + ACTIONS(644), 30, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -46039,13 +46045,13 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(360), 1, anon_sym_getline, - ACTIONS(592), 1, + ACTIONS(620), 1, anon_sym_LPAREN, - ACTIONS(594), 1, + ACTIONS(622), 1, anon_sym_SLASH, - ACTIONS(598), 1, + ACTIONS(626), 1, anon_sym_DOLLAR, - ACTIONS(600), 1, + ACTIONS(628), 1, anon_sym_AT, STATE(709), 1, sym_ns_qualified_name, @@ -46060,14 +46066,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(123), 2, aux_sym_number_token1, aux_sym_number_token2, - ACTIONS(596), 2, + ACTIONS(624), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, ACTIONS(368), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, - ACTIONS(892), 4, + ACTIONS(900), 4, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, @@ -46094,12 +46100,12 @@ static const uint16_t ts_small_parse_table[] = { sym_regex_constant, sym_indirect_func_call, [24436] = 3, - ACTIONS(818), 1, + ACTIONS(826), 1, sym_regex_flags, - ACTIONS(820), 2, + ACTIONS(828), 2, sym_concatenating_space, sym__if_else_separator, - ACTIONS(816), 39, + ACTIONS(824), 39, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -46140,32 +46146,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_POUND, [24485] = 8, - ACTIONS(1231), 1, + ACTIONS(1239), 1, anon_sym_in, - ACTIONS(766), 2, + ACTIONS(774), 2, sym_concatenating_space, sym__if_else_separator, - ACTIONS(1235), 2, + ACTIONS(1243), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(1239), 2, + ACTIONS(1247), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1241), 2, + ACTIONS(1249), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(1237), 3, + ACTIONS(1245), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1233), 6, + ACTIONS(1241), 6, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(764), 23, + ACTIONS(772), 23, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -46208,7 +46214,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, ACTIONS(484), 1, anon_sym_DQUOTE, - ACTIONS(1243), 1, + ACTIONS(1251), 1, anon_sym_LPAREN, STATE(676), 1, sym_ns_qualified_name, @@ -46253,14 +46259,14 @@ static const uint16_t ts_small_parse_table[] = { sym_regex_constant, sym_indirect_func_call, [24627] = 5, - ACTIONS(684), 1, + ACTIONS(692), 1, anon_sym_LBRACK, - ACTIONS(1219), 1, + ACTIONS(1227), 1, sym_concatenating_space, - ACTIONS(1215), 2, + ACTIONS(1223), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1217), 7, + ACTIONS(1225), 7, anon_sym_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -46268,7 +46274,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_CARET_EQ, - ACTIONS(636), 30, + ACTIONS(644), 30, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -46300,25 +46306,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_POUND, [24679] = 21, - ACTIONS(1245), 1, + ACTIONS(1253), 1, sym_identifier, - ACTIONS(1247), 1, + ACTIONS(1255), 1, anon_sym_LPAREN, - ACTIONS(1249), 1, + ACTIONS(1257), 1, anon_sym_getline, - ACTIONS(1251), 1, + ACTIONS(1259), 1, anon_sym_SLASH, - ACTIONS(1255), 1, + ACTIONS(1263), 1, anon_sym_BANG, - ACTIONS(1259), 1, + ACTIONS(1267), 1, anon_sym_DOLLAR, - ACTIONS(1261), 1, + ACTIONS(1269), 1, anon_sym_AT, - ACTIONS(1263), 1, + ACTIONS(1271), 1, aux_sym_number_token1, - ACTIONS(1265), 1, + ACTIONS(1273), 1, aux_sym_number_token2, - ACTIONS(1267), 1, + ACTIONS(1275), 1, anon_sym_DQUOTE, STATE(744), 1, aux_sym_exp_list_repeat1, @@ -46332,10 +46338,10 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_in, STATE(2039), 1, sym_namespace, - ACTIONS(1253), 2, + ACTIONS(1261), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1257), 2, + ACTIONS(1265), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(2028), 2, @@ -46363,25 +46369,25 @@ static const uint16_t ts_small_parse_table[] = { sym_regex_constant, sym_indirect_func_call, [24763] = 21, - ACTIONS(1245), 1, + ACTIONS(1253), 1, sym_identifier, - ACTIONS(1247), 1, + ACTIONS(1255), 1, anon_sym_LPAREN, - ACTIONS(1249), 1, + ACTIONS(1257), 1, anon_sym_getline, - ACTIONS(1251), 1, + ACTIONS(1259), 1, anon_sym_SLASH, - ACTIONS(1255), 1, + ACTIONS(1263), 1, anon_sym_BANG, - ACTIONS(1259), 1, + ACTIONS(1267), 1, anon_sym_DOLLAR, - ACTIONS(1261), 1, + ACTIONS(1269), 1, anon_sym_AT, - ACTIONS(1263), 1, + ACTIONS(1271), 1, aux_sym_number_token1, - ACTIONS(1265), 1, + ACTIONS(1273), 1, aux_sym_number_token2, - ACTIONS(1267), 1, + ACTIONS(1275), 1, anon_sym_DQUOTE, STATE(744), 1, aux_sym_exp_list_repeat1, @@ -46395,10 +46401,10 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_in, STATE(2039), 1, sym_namespace, - ACTIONS(1253), 2, + ACTIONS(1261), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1257), 2, + ACTIONS(1265), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(2038), 2, @@ -46426,38 +46432,38 @@ static const uint16_t ts_small_parse_table[] = { sym_regex_constant, sym_indirect_func_call, [24847] = 11, - ACTIONS(1231), 1, + ACTIONS(1239), 1, anon_sym_in, - ACTIONS(1269), 1, + ACTIONS(1277), 1, anon_sym_QMARK, - ACTIONS(1271), 1, + ACTIONS(1279), 1, anon_sym_AMP_AMP, - ACTIONS(1273), 1, + ACTIONS(1281), 1, anon_sym_PIPE_PIPE, - ACTIONS(852), 2, + ACTIONS(860), 2, sym_concatenating_space, sym__if_else_separator, - ACTIONS(1235), 2, + ACTIONS(1243), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(1239), 2, + ACTIONS(1247), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1241), 2, + ACTIONS(1249), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(1237), 3, + ACTIONS(1245), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1233), 6, + ACTIONS(1241), 6, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(850), 20, + ACTIONS(858), 20, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -46479,30 +46485,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_POUND, [24911] = 7, - ACTIONS(834), 2, + ACTIONS(842), 2, sym_concatenating_space, sym__if_else_separator, - ACTIONS(1235), 2, + ACTIONS(1243), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(1239), 2, + ACTIONS(1247), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1241), 2, + ACTIONS(1249), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(1237), 3, + ACTIONS(1245), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1233), 6, + ACTIONS(1241), 6, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(830), 24, + ACTIONS(838), 24, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -46528,34 +46534,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_POUND, [24967] = 9, - ACTIONS(1231), 1, + ACTIONS(1239), 1, anon_sym_in, - ACTIONS(1271), 1, + ACTIONS(1279), 1, anon_sym_AMP_AMP, - ACTIONS(766), 2, + ACTIONS(774), 2, sym_concatenating_space, sym__if_else_separator, - ACTIONS(1235), 2, + ACTIONS(1243), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(1239), 2, + ACTIONS(1247), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1241), 2, + ACTIONS(1249), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(1237), 3, + ACTIONS(1245), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1233), 6, + ACTIONS(1241), 6, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(764), 22, + ACTIONS(772), 22, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -46579,27 +46585,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_POUND, [25027] = 6, - ACTIONS(766), 2, + ACTIONS(774), 2, sym_concatenating_space, sym__if_else_separator, - ACTIONS(1235), 2, + ACTIONS(1243), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(1239), 2, + ACTIONS(1247), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1237), 3, + ACTIONS(1245), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1233), 6, + ACTIONS(1241), 6, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(764), 26, + ACTIONS(772), 26, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -46645,7 +46651,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, ACTIONS(336), 1, anon_sym_DQUOTE, - ACTIONS(1243), 1, + ACTIONS(1251), 1, anon_sym_LPAREN, STATE(210), 1, sym_ns_qualified_name, @@ -46690,17 +46696,17 @@ static const uint16_t ts_small_parse_table[] = { sym_regex_constant, sym_indirect_func_call, [25165] = 4, - ACTIONS(766), 2, + ACTIONS(774), 2, sym_concatenating_space, sym__if_else_separator, - ACTIONS(1235), 2, + ACTIONS(1243), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(1237), 3, + ACTIONS(1245), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(764), 34, + ACTIONS(772), 34, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -46736,13 +46742,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_POUND, [25215] = 3, - ACTIONS(766), 2, + ACTIONS(774), 2, sym_concatenating_space, sym__if_else_separator, - ACTIONS(1235), 2, + ACTIONS(1243), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(764), 37, + ACTIONS(772), 37, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -46781,13 +46787,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_POUND, [25263] = 4, - ACTIONS(672), 1, + ACTIONS(680), 1, sym_concatenating_space, - ACTIONS(684), 1, + ACTIONS(692), 1, anon_sym_LBRACK, - ACTIONS(1225), 1, + ACTIONS(1233), 1, anon_sym_LT, - ACTIONS(670), 38, + ACTIONS(678), 38, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -46827,20 +46833,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_POUND, [25313] = 5, - ACTIONS(766), 2, + ACTIONS(774), 2, sym_concatenating_space, sym__if_else_separator, - ACTIONS(1235), 2, + ACTIONS(1243), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(1239), 2, + ACTIONS(1247), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1237), 3, + ACTIONS(1245), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(764), 32, + ACTIONS(772), 32, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -46874,30 +46880,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_POUND, [25365] = 7, - ACTIONS(860), 2, + ACTIONS(868), 2, sym_concatenating_space, sym__if_else_separator, - ACTIONS(1235), 2, + ACTIONS(1243), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(1239), 2, + ACTIONS(1247), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1241), 2, + ACTIONS(1249), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(1237), 3, + ACTIONS(1245), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1233), 6, + ACTIONS(1241), 6, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(858), 24, + ACTIONS(866), 24, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -46923,19 +46929,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_POUND, [25421] = 7, - ACTIONS(642), 1, + ACTIONS(650), 1, anon_sym_LBRACK, - ACTIONS(644), 1, + ACTIONS(652), 1, anon_sym_COLON_COLON, - ACTIONS(1187), 1, + ACTIONS(1195), 1, anon_sym_LPAREN2, - ACTIONS(650), 2, + ACTIONS(658), 2, sym_concatenating_space, sym__if_else_separator, - ACTIONS(1197), 2, + ACTIONS(1205), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1275), 7, + ACTIONS(1283), 7, anon_sym_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -46943,7 +46949,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_CARET_EQ, - ACTIONS(636), 27, + ACTIONS(644), 27, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -46972,20 +46978,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, [25477] = 8, - ACTIONS(642), 1, + ACTIONS(650), 1, anon_sym_LBRACK, - ACTIONS(644), 1, + ACTIONS(652), 1, anon_sym_COLON_COLON, - ACTIONS(650), 1, + ACTIONS(658), 1, sym__if_else_separator, - ACTIONS(1187), 1, + ACTIONS(1195), 1, anon_sym_LPAREN2, - ACTIONS(1279), 1, + ACTIONS(1287), 1, sym_concatenating_space, - ACTIONS(1207), 2, + ACTIONS(1215), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1277), 7, + ACTIONS(1285), 7, anon_sym_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -46993,7 +46999,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_CARET_EQ, - ACTIONS(636), 27, + ACTIONS(644), 27, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -47040,7 +47046,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, ACTIONS(376), 1, anon_sym_AT, - ACTIONS(1281), 1, + ACTIONS(1289), 1, anon_sym_LPAREN, STATE(709), 1, sym_ns_qualified_name, @@ -47085,9 +47091,9 @@ static const uint16_t ts_small_parse_table[] = { sym_regex_constant, sym_indirect_func_call, [25619] = 2, - ACTIONS(1285), 1, + ACTIONS(1293), 1, sym__if_else_separator, - ACTIONS(1283), 40, + ACTIONS(1291), 40, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, @@ -47129,9 +47135,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [25665] = 2, - ACTIONS(1289), 1, + ACTIONS(1297), 1, sym__if_else_separator, - ACTIONS(1287), 40, + ACTIONS(1295), 40, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, @@ -47191,7 +47197,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, ACTIONS(284), 1, anon_sym_DQUOTE, - ACTIONS(1281), 1, + ACTIONS(1289), 1, anon_sym_LPAREN, STATE(586), 1, sym_ns_qualified_name, @@ -47236,20 +47242,20 @@ static const uint16_t ts_small_parse_table[] = { sym_regex_constant, sym_indirect_func_call, [25795] = 5, - ACTIONS(856), 2, + ACTIONS(864), 2, sym_concatenating_space, sym__if_else_separator, - ACTIONS(1235), 2, + ACTIONS(1243), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(1239), 2, + ACTIONS(1247), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1237), 3, + ACTIONS(1245), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(854), 32, + ACTIONS(862), 32, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -47283,41 +47289,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_POUND, [25847] = 12, - ACTIONS(1231), 1, + ACTIONS(1239), 1, anon_sym_in, - ACTIONS(1269), 1, + ACTIONS(1277), 1, anon_sym_QMARK, - ACTIONS(1271), 1, + ACTIONS(1279), 1, anon_sym_AMP_AMP, - ACTIONS(1273), 1, + ACTIONS(1281), 1, anon_sym_PIPE_PIPE, - ACTIONS(848), 2, + ACTIONS(856), 2, sym_concatenating_space, sym__if_else_separator, - ACTIONS(1235), 2, + ACTIONS(1243), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(1239), 2, + ACTIONS(1247), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1241), 2, + ACTIONS(1249), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(1291), 2, + ACTIONS(1299), 2, anon_sym_PIPE, anon_sym_PIPE_AMP, - ACTIONS(1237), 3, + ACTIONS(1245), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1233), 6, + ACTIONS(1241), 6, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(836), 18, + ACTIONS(844), 18, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -47337,14 +47343,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_POUND, [25913] = 5, - ACTIONS(650), 1, + ACTIONS(658), 1, sym_concatenating_space, - ACTIONS(684), 1, + ACTIONS(692), 1, anon_sym_LBRACK, - ACTIONS(1221), 2, + ACTIONS(1229), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1223), 7, + ACTIONS(1231), 7, anon_sym_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -47352,7 +47358,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_CARET_EQ, - ACTIONS(636), 30, + ACTIONS(644), 30, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -47384,11 +47390,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_POUND, [25965] = 7, - ACTIONS(700), 1, + ACTIONS(708), 1, sym_concatenating_space, - ACTIONS(1293), 1, + ACTIONS(1301), 1, sym_identifier, - ACTIONS(1295), 1, + ACTIONS(1303), 1, anon_sym_LT, STATE(216), 1, sym_array_ref, @@ -47396,7 +47402,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ns_qualified_name, STATE(1881), 1, sym_namespace, - ACTIONS(696), 35, + ACTIONS(704), 35, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -47433,14 +47439,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT_EQ, anon_sym_CARET_EQ, [26021] = 5, - ACTIONS(650), 1, + ACTIONS(658), 1, sym__if_else_separator, - ACTIONS(1211), 1, + ACTIONS(1219), 1, sym_concatenating_space, - ACTIONS(1207), 2, + ACTIONS(1215), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1209), 7, + ACTIONS(1217), 7, anon_sym_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -47448,7 +47454,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_CARET_EQ, - ACTIONS(636), 30, + ACTIONS(644), 30, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -47480,13 +47486,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_POUND, [26073] = 4, - ACTIONS(650), 2, + ACTIONS(658), 2, sym_concatenating_space, sym__if_else_separator, - ACTIONS(1197), 2, + ACTIONS(1205), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1199), 7, + ACTIONS(1207), 7, anon_sym_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -47494,7 +47500,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_CARET_EQ, - ACTIONS(636), 30, + ACTIONS(644), 30, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -47526,25 +47532,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_POUND, [26123] = 21, - ACTIONS(1245), 1, + ACTIONS(1253), 1, sym_identifier, - ACTIONS(1247), 1, + ACTIONS(1255), 1, anon_sym_LPAREN, - ACTIONS(1249), 1, + ACTIONS(1257), 1, anon_sym_getline, - ACTIONS(1251), 1, + ACTIONS(1259), 1, anon_sym_SLASH, - ACTIONS(1255), 1, + ACTIONS(1263), 1, anon_sym_BANG, - ACTIONS(1259), 1, + ACTIONS(1267), 1, anon_sym_DOLLAR, - ACTIONS(1261), 1, + ACTIONS(1269), 1, anon_sym_AT, - ACTIONS(1263), 1, + ACTIONS(1271), 1, aux_sym_number_token1, - ACTIONS(1265), 1, + ACTIONS(1273), 1, aux_sym_number_token2, - ACTIONS(1267), 1, + ACTIONS(1275), 1, anon_sym_DQUOTE, STATE(744), 1, aux_sym_exp_list_repeat1, @@ -47558,10 +47564,10 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_in, STATE(2039), 1, sym_namespace, - ACTIONS(1253), 2, + ACTIONS(1261), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1257), 2, + ACTIONS(1265), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(1935), 2, @@ -47599,15 +47605,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, ACTIONS(484), 1, anon_sym_DQUOTE, - ACTIONS(540), 1, + ACTIONS(546), 1, anon_sym_SLASH, - ACTIONS(542), 1, + ACTIONS(548), 1, anon_sym_BANG, - ACTIONS(546), 1, + ACTIONS(552), 1, anon_sym_DOLLAR, - ACTIONS(548), 1, + ACTIONS(554), 1, anon_sym_AT, - ACTIONS(1243), 1, + ACTIONS(1251), 1, anon_sym_LPAREN, STATE(575), 1, sym_ns_qualified_name, @@ -47624,7 +47630,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(71), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(544), 2, + ACTIONS(550), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(621), 2, @@ -47652,11 +47658,11 @@ static const uint16_t ts_small_parse_table[] = { sym_regex_constant, sym_indirect_func_call, [26291] = 3, - ACTIONS(820), 1, + ACTIONS(828), 1, sym_concatenating_space, - ACTIONS(862), 1, + ACTIONS(870), 1, sym_regex_flags, - ACTIONS(816), 39, + ACTIONS(824), 39, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -47697,25 +47703,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_POUND, [26339] = 21, - ACTIONS(1245), 1, + ACTIONS(1253), 1, sym_identifier, - ACTIONS(1247), 1, + ACTIONS(1255), 1, anon_sym_LPAREN, - ACTIONS(1249), 1, + ACTIONS(1257), 1, anon_sym_getline, - ACTIONS(1251), 1, + ACTIONS(1259), 1, anon_sym_SLASH, - ACTIONS(1255), 1, + ACTIONS(1263), 1, anon_sym_BANG, - ACTIONS(1259), 1, + ACTIONS(1267), 1, anon_sym_DOLLAR, - ACTIONS(1261), 1, + ACTIONS(1269), 1, anon_sym_AT, - ACTIONS(1263), 1, + ACTIONS(1271), 1, aux_sym_number_token1, - ACTIONS(1265), 1, + ACTIONS(1273), 1, aux_sym_number_token2, - ACTIONS(1267), 1, + ACTIONS(1275), 1, anon_sym_DQUOTE, STATE(744), 1, aux_sym_exp_list_repeat1, @@ -47729,10 +47735,10 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_in, STATE(2039), 1, sym_namespace, - ACTIONS(1253), 2, + ACTIONS(1261), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1257), 2, + ACTIONS(1265), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(1939), 2, @@ -47778,7 +47784,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, ACTIONS(169), 1, anon_sym_DQUOTE, - ACTIONS(1281), 1, + ACTIONS(1289), 1, anon_sym_LPAREN, STATE(239), 1, sym_ns_qualified_name, @@ -47823,9 +47829,9 @@ static const uint16_t ts_small_parse_table[] = { sym_regex_constant, sym_indirect_func_call, [26507] = 2, - ACTIONS(1299), 1, + ACTIONS(1307), 1, sym__if_else_separator, - ACTIONS(1297), 40, + ACTIONS(1305), 40, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, @@ -47867,9 +47873,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [26553] = 2, - ACTIONS(1303), 1, + ACTIONS(1311), 1, sym__if_else_separator, - ACTIONS(1301), 40, + ACTIONS(1309), 40, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, @@ -47911,27 +47917,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [26599] = 21, - ACTIONS(1245), 1, + ACTIONS(1253), 1, sym_identifier, - ACTIONS(1247), 1, + ACTIONS(1255), 1, anon_sym_LPAREN, - ACTIONS(1249), 1, + ACTIONS(1257), 1, anon_sym_getline, - ACTIONS(1251), 1, + ACTIONS(1259), 1, anon_sym_SLASH, - ACTIONS(1255), 1, + ACTIONS(1263), 1, anon_sym_BANG, - ACTIONS(1259), 1, + ACTIONS(1267), 1, anon_sym_DOLLAR, - ACTIONS(1261), 1, + ACTIONS(1269), 1, anon_sym_AT, - ACTIONS(1263), 1, + ACTIONS(1271), 1, aux_sym_number_token1, - ACTIONS(1265), 1, + ACTIONS(1273), 1, aux_sym_number_token2, - ACTIONS(1267), 1, + ACTIONS(1275), 1, anon_sym_DQUOTE, - ACTIONS(1305), 1, + ACTIONS(1313), 1, anon_sym_RPAREN, STATE(1091), 1, sym_ns_qualified_name, @@ -47945,10 +47951,10 @@ static const uint16_t ts_small_parse_table[] = { sym_args, STATE(2039), 1, sym_namespace, - ACTIONS(1253), 2, + ACTIONS(1261), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1257), 2, + ACTIONS(1265), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(1496), 9, @@ -47973,27 +47979,27 @@ static const uint16_t ts_small_parse_table[] = { sym_regex_constant, sym_indirect_func_call, [26682] = 21, - ACTIONS(1245), 1, + ACTIONS(1253), 1, sym_identifier, - ACTIONS(1247), 1, + ACTIONS(1255), 1, anon_sym_LPAREN, - ACTIONS(1249), 1, + ACTIONS(1257), 1, anon_sym_getline, - ACTIONS(1251), 1, + ACTIONS(1259), 1, anon_sym_SLASH, - ACTIONS(1255), 1, + ACTIONS(1263), 1, anon_sym_BANG, - ACTIONS(1259), 1, + ACTIONS(1267), 1, anon_sym_DOLLAR, - ACTIONS(1261), 1, + ACTIONS(1269), 1, anon_sym_AT, - ACTIONS(1263), 1, + ACTIONS(1271), 1, aux_sym_number_token1, - ACTIONS(1265), 1, + ACTIONS(1273), 1, aux_sym_number_token2, - ACTIONS(1267), 1, + ACTIONS(1275), 1, anon_sym_DQUOTE, - ACTIONS(1307), 1, + ACTIONS(1315), 1, anon_sym_RPAREN, STATE(1091), 1, sym_ns_qualified_name, @@ -48007,10 +48013,10 @@ static const uint16_t ts_small_parse_table[] = { sym_args, STATE(2039), 1, sym_namespace, - ACTIONS(1253), 2, + ACTIONS(1261), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1257), 2, + ACTIONS(1265), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(1496), 9, @@ -48035,19 +48041,19 @@ static const uint16_t ts_small_parse_table[] = { sym_regex_constant, sym_indirect_func_call, [26765] = 5, - ACTIONS(856), 1, + ACTIONS(864), 1, sym_concatenating_space, - ACTIONS(1309), 2, + ACTIONS(1317), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(1313), 2, + ACTIONS(1321), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1311), 3, + ACTIONS(1319), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(854), 32, + ACTIONS(862), 32, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -48081,25 +48087,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_POUND, [26816] = 21, - ACTIONS(1245), 1, + ACTIONS(1253), 1, sym_identifier, - ACTIONS(1247), 1, + ACTIONS(1255), 1, anon_sym_LPAREN, - ACTIONS(1249), 1, + ACTIONS(1257), 1, anon_sym_getline, - ACTIONS(1251), 1, + ACTIONS(1259), 1, anon_sym_SLASH, - ACTIONS(1255), 1, + ACTIONS(1263), 1, anon_sym_BANG, - ACTIONS(1259), 1, + ACTIONS(1267), 1, anon_sym_DOLLAR, - ACTIONS(1261), 1, + ACTIONS(1269), 1, anon_sym_AT, - ACTIONS(1263), 1, + ACTIONS(1271), 1, aux_sym_number_token1, - ACTIONS(1265), 1, + ACTIONS(1273), 1, aux_sym_number_token2, - ACTIONS(1267), 1, + ACTIONS(1275), 1, anon_sym_DQUOTE, STATE(744), 1, aux_sym_exp_list_repeat1, @@ -48115,10 +48121,10 @@ static const uint16_t ts_small_parse_table[] = { sym_exp_list, STATE(2039), 1, sym_namespace, - ACTIONS(1253), 2, + ACTIONS(1261), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1257), 2, + ACTIONS(1265), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(1496), 9, @@ -48143,25 +48149,25 @@ static const uint16_t ts_small_parse_table[] = { sym_regex_constant, sym_indirect_func_call, [26899] = 21, - ACTIONS(1245), 1, + ACTIONS(1253), 1, sym_identifier, - ACTIONS(1247), 1, + ACTIONS(1255), 1, anon_sym_LPAREN, - ACTIONS(1249), 1, + ACTIONS(1257), 1, anon_sym_getline, - ACTIONS(1251), 1, + ACTIONS(1259), 1, anon_sym_SLASH, - ACTIONS(1255), 1, + ACTIONS(1263), 1, anon_sym_BANG, - ACTIONS(1259), 1, + ACTIONS(1267), 1, anon_sym_DOLLAR, - ACTIONS(1261), 1, + ACTIONS(1269), 1, anon_sym_AT, - ACTIONS(1263), 1, + ACTIONS(1271), 1, aux_sym_number_token1, - ACTIONS(1265), 1, + ACTIONS(1273), 1, aux_sym_number_token2, - ACTIONS(1267), 1, + ACTIONS(1275), 1, anon_sym_DQUOTE, STATE(744), 1, aux_sym_exp_list_repeat1, @@ -48177,10 +48183,10 @@ static const uint16_t ts_small_parse_table[] = { sym_exp_list, STATE(2039), 1, sym_namespace, - ACTIONS(1253), 2, + ACTIONS(1261), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1257), 2, + ACTIONS(1265), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(1496), 9, @@ -48205,25 +48211,25 @@ static const uint16_t ts_small_parse_table[] = { sym_regex_constant, sym_indirect_func_call, [26982] = 21, - ACTIONS(1245), 1, + ACTIONS(1253), 1, sym_identifier, - ACTIONS(1247), 1, + ACTIONS(1255), 1, anon_sym_LPAREN, - ACTIONS(1249), 1, + ACTIONS(1257), 1, anon_sym_getline, - ACTIONS(1251), 1, + ACTIONS(1259), 1, anon_sym_SLASH, - ACTIONS(1255), 1, + ACTIONS(1263), 1, anon_sym_BANG, - ACTIONS(1259), 1, + ACTIONS(1267), 1, anon_sym_DOLLAR, - ACTIONS(1261), 1, + ACTIONS(1269), 1, anon_sym_AT, - ACTIONS(1263), 1, + ACTIONS(1271), 1, aux_sym_number_token1, - ACTIONS(1265), 1, + ACTIONS(1273), 1, aux_sym_number_token2, - ACTIONS(1267), 1, + ACTIONS(1275), 1, anon_sym_DQUOTE, STATE(744), 1, aux_sym_exp_list_repeat1, @@ -48239,10 +48245,10 @@ static const uint16_t ts_small_parse_table[] = { sym_exp_list, STATE(2039), 1, sym_namespace, - ACTIONS(1253), 2, + ACTIONS(1261), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1257), 2, + ACTIONS(1265), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(1496), 9, @@ -48267,27 +48273,27 @@ static const uint16_t ts_small_parse_table[] = { sym_regex_constant, sym_indirect_func_call, [27065] = 21, - ACTIONS(1245), 1, + ACTIONS(1253), 1, sym_identifier, - ACTIONS(1247), 1, + ACTIONS(1255), 1, anon_sym_LPAREN, - ACTIONS(1249), 1, + ACTIONS(1257), 1, anon_sym_getline, - ACTIONS(1251), 1, + ACTIONS(1259), 1, anon_sym_SLASH, - ACTIONS(1255), 1, + ACTIONS(1263), 1, anon_sym_BANG, - ACTIONS(1259), 1, + ACTIONS(1267), 1, anon_sym_DOLLAR, - ACTIONS(1261), 1, + ACTIONS(1269), 1, anon_sym_AT, - ACTIONS(1263), 1, + ACTIONS(1271), 1, aux_sym_number_token1, - ACTIONS(1265), 1, + ACTIONS(1273), 1, aux_sym_number_token2, - ACTIONS(1267), 1, + ACTIONS(1275), 1, anon_sym_DQUOTE, - ACTIONS(1315), 1, + ACTIONS(1323), 1, anon_sym_RPAREN, STATE(1091), 1, sym_ns_qualified_name, @@ -48301,10 +48307,10 @@ static const uint16_t ts_small_parse_table[] = { sym_args, STATE(2039), 1, sym_namespace, - ACTIONS(1253), 2, + ACTIONS(1261), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1257), 2, + ACTIONS(1265), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(1496), 9, @@ -48329,27 +48335,27 @@ static const uint16_t ts_small_parse_table[] = { sym_regex_constant, sym_indirect_func_call, [27148] = 21, - ACTIONS(1245), 1, + ACTIONS(1253), 1, sym_identifier, - ACTIONS(1247), 1, + ACTIONS(1255), 1, anon_sym_LPAREN, - ACTIONS(1249), 1, + ACTIONS(1257), 1, anon_sym_getline, - ACTIONS(1251), 1, + ACTIONS(1259), 1, anon_sym_SLASH, - ACTIONS(1255), 1, + ACTIONS(1263), 1, anon_sym_BANG, - ACTIONS(1259), 1, + ACTIONS(1267), 1, anon_sym_DOLLAR, - ACTIONS(1261), 1, + ACTIONS(1269), 1, anon_sym_AT, - ACTIONS(1263), 1, + ACTIONS(1271), 1, aux_sym_number_token1, - ACTIONS(1265), 1, + ACTIONS(1273), 1, aux_sym_number_token2, - ACTIONS(1267), 1, + ACTIONS(1275), 1, anon_sym_DQUOTE, - ACTIONS(1317), 1, + ACTIONS(1325), 1, anon_sym_RPAREN, STATE(1091), 1, sym_ns_qualified_name, @@ -48363,10 +48369,10 @@ static const uint16_t ts_small_parse_table[] = { sym_args, STATE(2039), 1, sym_namespace, - ACTIONS(1253), 2, + ACTIONS(1261), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1257), 2, + ACTIONS(1265), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(1496), 9, @@ -48391,25 +48397,25 @@ static const uint16_t ts_small_parse_table[] = { sym_regex_constant, sym_indirect_func_call, [27231] = 21, - ACTIONS(1245), 1, + ACTIONS(1253), 1, sym_identifier, - ACTIONS(1247), 1, + ACTIONS(1255), 1, anon_sym_LPAREN, - ACTIONS(1249), 1, + ACTIONS(1257), 1, anon_sym_getline, - ACTIONS(1251), 1, + ACTIONS(1259), 1, anon_sym_SLASH, - ACTIONS(1255), 1, + ACTIONS(1263), 1, anon_sym_BANG, - ACTIONS(1259), 1, + ACTIONS(1267), 1, anon_sym_DOLLAR, - ACTIONS(1261), 1, + ACTIONS(1269), 1, anon_sym_AT, - ACTIONS(1263), 1, + ACTIONS(1271), 1, aux_sym_number_token1, - ACTIONS(1265), 1, + ACTIONS(1273), 1, aux_sym_number_token2, - ACTIONS(1267), 1, + ACTIONS(1275), 1, anon_sym_DQUOTE, STATE(744), 1, aux_sym_exp_list_repeat1, @@ -48425,10 +48431,10 @@ static const uint16_t ts_small_parse_table[] = { sym_exp_list, STATE(2039), 1, sym_namespace, - ACTIONS(1253), 2, + ACTIONS(1261), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1257), 2, + ACTIONS(1265), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(1496), 9, @@ -48453,25 +48459,25 @@ static const uint16_t ts_small_parse_table[] = { sym_regex_constant, sym_indirect_func_call, [27314] = 21, - ACTIONS(1245), 1, + ACTIONS(1253), 1, sym_identifier, - ACTIONS(1247), 1, + ACTIONS(1255), 1, anon_sym_LPAREN, - ACTIONS(1249), 1, + ACTIONS(1257), 1, anon_sym_getline, - ACTIONS(1251), 1, + ACTIONS(1259), 1, anon_sym_SLASH, - ACTIONS(1255), 1, + ACTIONS(1263), 1, anon_sym_BANG, - ACTIONS(1259), 1, + ACTIONS(1267), 1, anon_sym_DOLLAR, - ACTIONS(1261), 1, + ACTIONS(1269), 1, anon_sym_AT, - ACTIONS(1263), 1, + ACTIONS(1271), 1, aux_sym_number_token1, - ACTIONS(1265), 1, + ACTIONS(1273), 1, aux_sym_number_token2, - ACTIONS(1267), 1, + ACTIONS(1275), 1, anon_sym_DQUOTE, STATE(744), 1, aux_sym_exp_list_repeat1, @@ -48487,10 +48493,10 @@ static const uint16_t ts_small_parse_table[] = { sym_exp_list, STATE(2039), 1, sym_namespace, - ACTIONS(1253), 2, + ACTIONS(1261), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1257), 2, + ACTIONS(1265), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(1496), 9, @@ -48515,25 +48521,25 @@ static const uint16_t ts_small_parse_table[] = { sym_regex_constant, sym_indirect_func_call, [27397] = 21, - ACTIONS(1245), 1, + ACTIONS(1253), 1, sym_identifier, - ACTIONS(1247), 1, + ACTIONS(1255), 1, anon_sym_LPAREN, - ACTIONS(1249), 1, + ACTIONS(1257), 1, anon_sym_getline, - ACTIONS(1251), 1, + ACTIONS(1259), 1, anon_sym_SLASH, - ACTIONS(1255), 1, + ACTIONS(1263), 1, anon_sym_BANG, - ACTIONS(1259), 1, + ACTIONS(1267), 1, anon_sym_DOLLAR, - ACTIONS(1261), 1, + ACTIONS(1269), 1, anon_sym_AT, - ACTIONS(1263), 1, + ACTIONS(1271), 1, aux_sym_number_token1, - ACTIONS(1265), 1, + ACTIONS(1273), 1, aux_sym_number_token2, - ACTIONS(1267), 1, + ACTIONS(1275), 1, anon_sym_DQUOTE, STATE(744), 1, aux_sym_exp_list_repeat1, @@ -48549,10 +48555,10 @@ static const uint16_t ts_small_parse_table[] = { sym_exp_list, STATE(2039), 1, sym_namespace, - ACTIONS(1253), 2, + ACTIONS(1261), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1257), 2, + ACTIONS(1265), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(1496), 9, @@ -48577,25 +48583,25 @@ static const uint16_t ts_small_parse_table[] = { sym_regex_constant, sym_indirect_func_call, [27480] = 21, - ACTIONS(1245), 1, + ACTIONS(1253), 1, sym_identifier, - ACTIONS(1247), 1, + ACTIONS(1255), 1, anon_sym_LPAREN, - ACTIONS(1249), 1, + ACTIONS(1257), 1, anon_sym_getline, - ACTIONS(1251), 1, + ACTIONS(1259), 1, anon_sym_SLASH, - ACTIONS(1255), 1, + ACTIONS(1263), 1, anon_sym_BANG, - ACTIONS(1259), 1, + ACTIONS(1267), 1, anon_sym_DOLLAR, - ACTIONS(1261), 1, + ACTIONS(1269), 1, anon_sym_AT, - ACTIONS(1263), 1, + ACTIONS(1271), 1, aux_sym_number_token1, - ACTIONS(1265), 1, + ACTIONS(1273), 1, aux_sym_number_token2, - ACTIONS(1267), 1, + ACTIONS(1275), 1, anon_sym_DQUOTE, STATE(744), 1, aux_sym_exp_list_repeat1, @@ -48611,10 +48617,10 @@ static const uint16_t ts_small_parse_table[] = { sym_exp_list, STATE(2039), 1, sym_namespace, - ACTIONS(1253), 2, + ACTIONS(1261), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1257), 2, + ACTIONS(1265), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(1496), 9, @@ -48639,25 +48645,25 @@ static const uint16_t ts_small_parse_table[] = { sym_regex_constant, sym_indirect_func_call, [27563] = 21, - ACTIONS(1245), 1, + ACTIONS(1253), 1, sym_identifier, - ACTIONS(1247), 1, + ACTIONS(1255), 1, anon_sym_LPAREN, - ACTIONS(1249), 1, + ACTIONS(1257), 1, anon_sym_getline, - ACTIONS(1251), 1, + ACTIONS(1259), 1, anon_sym_SLASH, - ACTIONS(1255), 1, + ACTIONS(1263), 1, anon_sym_BANG, - ACTIONS(1259), 1, + ACTIONS(1267), 1, anon_sym_DOLLAR, - ACTIONS(1261), 1, + ACTIONS(1269), 1, anon_sym_AT, - ACTIONS(1263), 1, + ACTIONS(1271), 1, aux_sym_number_token1, - ACTIONS(1265), 1, + ACTIONS(1273), 1, aux_sym_number_token2, - ACTIONS(1267), 1, + ACTIONS(1275), 1, anon_sym_DQUOTE, STATE(744), 1, aux_sym_exp_list_repeat1, @@ -48673,10 +48679,10 @@ static const uint16_t ts_small_parse_table[] = { sym_exp_list, STATE(2039), 1, sym_namespace, - ACTIONS(1253), 2, + ACTIONS(1261), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1257), 2, + ACTIONS(1265), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(1496), 9, @@ -48701,25 +48707,25 @@ static const uint16_t ts_small_parse_table[] = { sym_regex_constant, sym_indirect_func_call, [27646] = 21, - ACTIONS(1245), 1, + ACTIONS(1253), 1, sym_identifier, - ACTIONS(1247), 1, + ACTIONS(1255), 1, anon_sym_LPAREN, - ACTIONS(1249), 1, + ACTIONS(1257), 1, anon_sym_getline, - ACTIONS(1251), 1, + ACTIONS(1259), 1, anon_sym_SLASH, - ACTIONS(1255), 1, + ACTIONS(1263), 1, anon_sym_BANG, - ACTIONS(1259), 1, + ACTIONS(1267), 1, anon_sym_DOLLAR, - ACTIONS(1261), 1, + ACTIONS(1269), 1, anon_sym_AT, - ACTIONS(1263), 1, + ACTIONS(1271), 1, aux_sym_number_token1, - ACTIONS(1265), 1, + ACTIONS(1273), 1, aux_sym_number_token2, - ACTIONS(1267), 1, + ACTIONS(1275), 1, anon_sym_DQUOTE, STATE(744), 1, aux_sym_exp_list_repeat1, @@ -48735,10 +48741,10 @@ static const uint16_t ts_small_parse_table[] = { sym_exp_list, STATE(2039), 1, sym_namespace, - ACTIONS(1253), 2, + ACTIONS(1261), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1257), 2, + ACTIONS(1265), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(1496), 9, @@ -48763,25 +48769,25 @@ static const uint16_t ts_small_parse_table[] = { sym_regex_constant, sym_indirect_func_call, [27729] = 21, - ACTIONS(1245), 1, + ACTIONS(1253), 1, sym_identifier, - ACTIONS(1247), 1, + ACTIONS(1255), 1, anon_sym_LPAREN, - ACTIONS(1249), 1, + ACTIONS(1257), 1, anon_sym_getline, - ACTIONS(1251), 1, + ACTIONS(1259), 1, anon_sym_SLASH, - ACTIONS(1255), 1, + ACTIONS(1263), 1, anon_sym_BANG, - ACTIONS(1259), 1, + ACTIONS(1267), 1, anon_sym_DOLLAR, - ACTIONS(1261), 1, + ACTIONS(1269), 1, anon_sym_AT, - ACTIONS(1263), 1, + ACTIONS(1271), 1, aux_sym_number_token1, - ACTIONS(1265), 1, + ACTIONS(1273), 1, aux_sym_number_token2, - ACTIONS(1267), 1, + ACTIONS(1275), 1, anon_sym_DQUOTE, STATE(744), 1, aux_sym_exp_list_repeat1, @@ -48797,10 +48803,10 @@ static const uint16_t ts_small_parse_table[] = { sym_exp_list, STATE(2039), 1, sym_namespace, - ACTIONS(1253), 2, + ACTIONS(1261), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1257), 2, + ACTIONS(1265), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(1496), 9, @@ -48825,25 +48831,25 @@ static const uint16_t ts_small_parse_table[] = { sym_regex_constant, sym_indirect_func_call, [27812] = 21, - ACTIONS(1245), 1, + ACTIONS(1253), 1, sym_identifier, - ACTIONS(1247), 1, + ACTIONS(1255), 1, anon_sym_LPAREN, - ACTIONS(1249), 1, + ACTIONS(1257), 1, anon_sym_getline, - ACTIONS(1251), 1, + ACTIONS(1259), 1, anon_sym_SLASH, - ACTIONS(1255), 1, + ACTIONS(1263), 1, anon_sym_BANG, - ACTIONS(1259), 1, + ACTIONS(1267), 1, anon_sym_DOLLAR, - ACTIONS(1261), 1, + ACTIONS(1269), 1, anon_sym_AT, - ACTIONS(1263), 1, + ACTIONS(1271), 1, aux_sym_number_token1, - ACTIONS(1265), 1, + ACTIONS(1273), 1, aux_sym_number_token2, - ACTIONS(1267), 1, + ACTIONS(1275), 1, anon_sym_DQUOTE, STATE(744), 1, aux_sym_exp_list_repeat1, @@ -48859,10 +48865,10 @@ static const uint16_t ts_small_parse_table[] = { sym_exp_list, STATE(2039), 1, sym_namespace, - ACTIONS(1253), 2, + ACTIONS(1261), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1257), 2, + ACTIONS(1265), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(1496), 9, @@ -48887,25 +48893,25 @@ static const uint16_t ts_small_parse_table[] = { sym_regex_constant, sym_indirect_func_call, [27895] = 21, - ACTIONS(1245), 1, + ACTIONS(1253), 1, sym_identifier, - ACTIONS(1247), 1, + ACTIONS(1255), 1, anon_sym_LPAREN, - ACTIONS(1249), 1, + ACTIONS(1257), 1, anon_sym_getline, - ACTIONS(1251), 1, + ACTIONS(1259), 1, anon_sym_SLASH, - ACTIONS(1255), 1, + ACTIONS(1263), 1, anon_sym_BANG, - ACTIONS(1259), 1, + ACTIONS(1267), 1, anon_sym_DOLLAR, - ACTIONS(1261), 1, + ACTIONS(1269), 1, anon_sym_AT, - ACTIONS(1263), 1, + ACTIONS(1271), 1, aux_sym_number_token1, - ACTIONS(1265), 1, + ACTIONS(1273), 1, aux_sym_number_token2, - ACTIONS(1267), 1, + ACTIONS(1275), 1, anon_sym_DQUOTE, STATE(744), 1, aux_sym_exp_list_repeat1, @@ -48921,10 +48927,10 @@ static const uint16_t ts_small_parse_table[] = { sym_exp_list, STATE(2039), 1, sym_namespace, - ACTIONS(1253), 2, + ACTIONS(1261), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1257), 2, + ACTIONS(1265), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(1496), 9, @@ -48949,40 +48955,40 @@ static const uint16_t ts_small_parse_table[] = { sym_regex_constant, sym_indirect_func_call, [27978] = 12, - ACTIONS(848), 1, + ACTIONS(856), 1, sym_concatenating_space, - ACTIONS(1319), 1, + ACTIONS(1327), 1, anon_sym_in, - ACTIONS(1325), 1, + ACTIONS(1333), 1, anon_sym_QMARK, - ACTIONS(1329), 1, + ACTIONS(1337), 1, anon_sym_AMP_AMP, - ACTIONS(1331), 1, + ACTIONS(1339), 1, anon_sym_PIPE_PIPE, - ACTIONS(1309), 2, + ACTIONS(1317), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(1313), 2, + ACTIONS(1321), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1323), 2, + ACTIONS(1331), 2, anon_sym_PIPE, anon_sym_PIPE_AMP, - ACTIONS(1327), 2, + ACTIONS(1335), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(1311), 3, + ACTIONS(1319), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1321), 6, + ACTIONS(1329), 6, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(836), 18, + ACTIONS(844), 18, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -49002,27 +49008,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_POUND, [28043] = 21, - ACTIONS(1245), 1, + ACTIONS(1253), 1, sym_identifier, - ACTIONS(1247), 1, + ACTIONS(1255), 1, anon_sym_LPAREN, - ACTIONS(1249), 1, + ACTIONS(1257), 1, anon_sym_getline, - ACTIONS(1251), 1, + ACTIONS(1259), 1, anon_sym_SLASH, - ACTIONS(1255), 1, + ACTIONS(1263), 1, anon_sym_BANG, - ACTIONS(1259), 1, + ACTIONS(1267), 1, anon_sym_DOLLAR, - ACTIONS(1261), 1, + ACTIONS(1269), 1, anon_sym_AT, - ACTIONS(1263), 1, + ACTIONS(1271), 1, aux_sym_number_token1, - ACTIONS(1265), 1, + ACTIONS(1273), 1, aux_sym_number_token2, - ACTIONS(1267), 1, + ACTIONS(1275), 1, anon_sym_DQUOTE, - ACTIONS(1333), 1, + ACTIONS(1341), 1, anon_sym_RPAREN, STATE(1091), 1, sym_ns_qualified_name, @@ -49036,10 +49042,10 @@ static const uint16_t ts_small_parse_table[] = { sym_namespace, STATE(2042), 1, sym_args, - ACTIONS(1253), 2, + ACTIONS(1261), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1257), 2, + ACTIONS(1265), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(1496), 9, @@ -49064,27 +49070,27 @@ static const uint16_t ts_small_parse_table[] = { sym_regex_constant, sym_indirect_func_call, [28126] = 21, - ACTIONS(1245), 1, + ACTIONS(1253), 1, sym_identifier, - ACTIONS(1247), 1, + ACTIONS(1255), 1, anon_sym_LPAREN, - ACTIONS(1249), 1, + ACTIONS(1257), 1, anon_sym_getline, - ACTIONS(1251), 1, + ACTIONS(1259), 1, anon_sym_SLASH, - ACTIONS(1255), 1, + ACTIONS(1263), 1, anon_sym_BANG, - ACTIONS(1259), 1, + ACTIONS(1267), 1, anon_sym_DOLLAR, - ACTIONS(1261), 1, + ACTIONS(1269), 1, anon_sym_AT, - ACTIONS(1263), 1, + ACTIONS(1271), 1, aux_sym_number_token1, - ACTIONS(1265), 1, + ACTIONS(1273), 1, aux_sym_number_token2, - ACTIONS(1267), 1, + ACTIONS(1275), 1, anon_sym_DQUOTE, - ACTIONS(1335), 1, + ACTIONS(1343), 1, anon_sym_RPAREN, STATE(1091), 1, sym_ns_qualified_name, @@ -49098,10 +49104,10 @@ static const uint16_t ts_small_parse_table[] = { sym_args, STATE(2039), 1, sym_namespace, - ACTIONS(1253), 2, + ACTIONS(1261), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1257), 2, + ACTIONS(1265), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(1496), 9, @@ -49126,25 +49132,25 @@ static const uint16_t ts_small_parse_table[] = { sym_regex_constant, sym_indirect_func_call, [28209] = 21, - ACTIONS(1245), 1, + ACTIONS(1253), 1, sym_identifier, - ACTIONS(1247), 1, + ACTIONS(1255), 1, anon_sym_LPAREN, - ACTIONS(1249), 1, + ACTIONS(1257), 1, anon_sym_getline, - ACTIONS(1251), 1, + ACTIONS(1259), 1, anon_sym_SLASH, - ACTIONS(1255), 1, + ACTIONS(1263), 1, anon_sym_BANG, - ACTIONS(1259), 1, + ACTIONS(1267), 1, anon_sym_DOLLAR, - ACTIONS(1261), 1, + ACTIONS(1269), 1, anon_sym_AT, - ACTIONS(1263), 1, + ACTIONS(1271), 1, aux_sym_number_token1, - ACTIONS(1265), 1, + ACTIONS(1273), 1, aux_sym_number_token2, - ACTIONS(1267), 1, + ACTIONS(1275), 1, anon_sym_DQUOTE, STATE(744), 1, aux_sym_exp_list_repeat1, @@ -49160,10 +49166,10 @@ static const uint16_t ts_small_parse_table[] = { sym_exp_list, STATE(2039), 1, sym_namespace, - ACTIONS(1253), 2, + ACTIONS(1261), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1257), 2, + ACTIONS(1265), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(1496), 9, @@ -49188,16 +49194,16 @@ static const uint16_t ts_small_parse_table[] = { sym_regex_constant, sym_indirect_func_call, [28292] = 5, - ACTIONS(642), 1, + ACTIONS(650), 1, anon_sym_LBRACK, - ACTIONS(644), 1, + ACTIONS(652), 1, anon_sym_COLON_COLON, - ACTIONS(1337), 1, + ACTIONS(1345), 1, anon_sym_LT, - ACTIONS(672), 2, + ACTIONS(680), 2, sym_concatenating_space, sym__if_else_separator, - ACTIONS(670), 35, + ACTIONS(678), 35, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -49234,27 +49240,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT_EQ, anon_sym_CARET_EQ, [28343] = 21, - ACTIONS(1245), 1, + ACTIONS(1253), 1, sym_identifier, - ACTIONS(1247), 1, + ACTIONS(1255), 1, anon_sym_LPAREN, - ACTIONS(1249), 1, + ACTIONS(1257), 1, anon_sym_getline, - ACTIONS(1251), 1, + ACTIONS(1259), 1, anon_sym_SLASH, - ACTIONS(1255), 1, + ACTIONS(1263), 1, anon_sym_BANG, - ACTIONS(1259), 1, + ACTIONS(1267), 1, anon_sym_DOLLAR, - ACTIONS(1261), 1, + ACTIONS(1269), 1, anon_sym_AT, - ACTIONS(1263), 1, + ACTIONS(1271), 1, aux_sym_number_token1, - ACTIONS(1265), 1, + ACTIONS(1273), 1, aux_sym_number_token2, - ACTIONS(1267), 1, + ACTIONS(1275), 1, anon_sym_DQUOTE, - ACTIONS(1339), 1, + ACTIONS(1347), 1, anon_sym_RPAREN, STATE(1091), 1, sym_ns_qualified_name, @@ -49268,10 +49274,10 @@ static const uint16_t ts_small_parse_table[] = { sym_args, STATE(2039), 1, sym_namespace, - ACTIONS(1253), 2, + ACTIONS(1261), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1257), 2, + ACTIONS(1265), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(1496), 9, @@ -49296,12 +49302,12 @@ static const uint16_t ts_small_parse_table[] = { sym_regex_constant, sym_indirect_func_call, [28426] = 4, - ACTIONS(1219), 1, + ACTIONS(1227), 1, sym_concatenating_space, - ACTIONS(1215), 2, + ACTIONS(1223), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1217), 7, + ACTIONS(1225), 7, anon_sym_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -49309,7 +49315,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_CARET_EQ, - ACTIONS(636), 30, + ACTIONS(644), 30, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -49341,7 +49347,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_POUND, [28475] = 1, - ACTIONS(1301), 40, + ACTIONS(1309), 40, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, @@ -49383,25 +49389,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [28518] = 21, - ACTIONS(1245), 1, + ACTIONS(1253), 1, sym_identifier, - ACTIONS(1247), 1, + ACTIONS(1255), 1, anon_sym_LPAREN, - ACTIONS(1249), 1, + ACTIONS(1257), 1, anon_sym_getline, - ACTIONS(1251), 1, + ACTIONS(1259), 1, anon_sym_SLASH, - ACTIONS(1255), 1, + ACTIONS(1263), 1, anon_sym_BANG, - ACTIONS(1259), 1, + ACTIONS(1267), 1, anon_sym_DOLLAR, - ACTIONS(1261), 1, + ACTIONS(1269), 1, anon_sym_AT, - ACTIONS(1263), 1, + ACTIONS(1271), 1, aux_sym_number_token1, - ACTIONS(1265), 1, + ACTIONS(1273), 1, aux_sym_number_token2, - ACTIONS(1267), 1, + ACTIONS(1275), 1, anon_sym_DQUOTE, STATE(744), 1, aux_sym_exp_list_repeat1, @@ -49417,10 +49423,10 @@ static const uint16_t ts_small_parse_table[] = { sym_exp_list, STATE(2039), 1, sym_namespace, - ACTIONS(1253), 2, + ACTIONS(1261), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1257), 2, + ACTIONS(1265), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(1496), 9, @@ -49445,25 +49451,25 @@ static const uint16_t ts_small_parse_table[] = { sym_regex_constant, sym_indirect_func_call, [28601] = 21, - ACTIONS(1245), 1, + ACTIONS(1253), 1, sym_identifier, - ACTIONS(1247), 1, + ACTIONS(1255), 1, anon_sym_LPAREN, - ACTIONS(1249), 1, + ACTIONS(1257), 1, anon_sym_getline, - ACTIONS(1251), 1, + ACTIONS(1259), 1, anon_sym_SLASH, - ACTIONS(1255), 1, + ACTIONS(1263), 1, anon_sym_BANG, - ACTIONS(1259), 1, + ACTIONS(1267), 1, anon_sym_DOLLAR, - ACTIONS(1261), 1, + ACTIONS(1269), 1, anon_sym_AT, - ACTIONS(1263), 1, + ACTIONS(1271), 1, aux_sym_number_token1, - ACTIONS(1265), 1, + ACTIONS(1273), 1, aux_sym_number_token2, - ACTIONS(1267), 1, + ACTIONS(1275), 1, anon_sym_DQUOTE, STATE(744), 1, aux_sym_exp_list_repeat1, @@ -49479,10 +49485,10 @@ static const uint16_t ts_small_parse_table[] = { sym_exp_list, STATE(2039), 1, sym_namespace, - ACTIONS(1253), 2, + ACTIONS(1261), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1257), 2, + ACTIONS(1265), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(1496), 9, @@ -49507,7 +49513,7 @@ static const uint16_t ts_small_parse_table[] = { sym_regex_constant, sym_indirect_func_call, [28684] = 1, - ACTIONS(1297), 40, + ACTIONS(1305), 40, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, @@ -49549,25 +49555,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [28727] = 21, - ACTIONS(1245), 1, + ACTIONS(1253), 1, sym_identifier, - ACTIONS(1247), 1, + ACTIONS(1255), 1, anon_sym_LPAREN, - ACTIONS(1249), 1, + ACTIONS(1257), 1, anon_sym_getline, - ACTIONS(1251), 1, + ACTIONS(1259), 1, anon_sym_SLASH, - ACTIONS(1255), 1, + ACTIONS(1263), 1, anon_sym_BANG, - ACTIONS(1259), 1, + ACTIONS(1267), 1, anon_sym_DOLLAR, - ACTIONS(1261), 1, + ACTIONS(1269), 1, anon_sym_AT, - ACTIONS(1263), 1, + ACTIONS(1271), 1, aux_sym_number_token1, - ACTIONS(1265), 1, + ACTIONS(1273), 1, aux_sym_number_token2, - ACTIONS(1267), 1, + ACTIONS(1275), 1, anon_sym_DQUOTE, STATE(744), 1, aux_sym_exp_list_repeat1, @@ -49583,10 +49589,10 @@ static const uint16_t ts_small_parse_table[] = { sym_namespace, STATE(2045), 1, sym_exp_list, - ACTIONS(1253), 2, + ACTIONS(1261), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1257), 2, + ACTIONS(1265), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(1496), 9, @@ -49611,25 +49617,25 @@ static const uint16_t ts_small_parse_table[] = { sym_regex_constant, sym_indirect_func_call, [28810] = 21, - ACTIONS(1245), 1, + ACTIONS(1253), 1, sym_identifier, - ACTIONS(1247), 1, + ACTIONS(1255), 1, anon_sym_LPAREN, - ACTIONS(1249), 1, + ACTIONS(1257), 1, anon_sym_getline, - ACTIONS(1251), 1, + ACTIONS(1259), 1, anon_sym_SLASH, - ACTIONS(1255), 1, + ACTIONS(1263), 1, anon_sym_BANG, - ACTIONS(1259), 1, + ACTIONS(1267), 1, anon_sym_DOLLAR, - ACTIONS(1261), 1, + ACTIONS(1269), 1, anon_sym_AT, - ACTIONS(1263), 1, + ACTIONS(1271), 1, aux_sym_number_token1, - ACTIONS(1265), 1, + ACTIONS(1273), 1, aux_sym_number_token2, - ACTIONS(1267), 1, + ACTIONS(1275), 1, anon_sym_DQUOTE, STATE(744), 1, aux_sym_exp_list_repeat1, @@ -49645,10 +49651,10 @@ static const uint16_t ts_small_parse_table[] = { sym_namespace, STATE(2052), 1, sym_exp_list, - ACTIONS(1253), 2, + ACTIONS(1261), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1257), 2, + ACTIONS(1265), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(1496), 9, @@ -49673,25 +49679,25 @@ static const uint16_t ts_small_parse_table[] = { sym_regex_constant, sym_indirect_func_call, [28893] = 21, - ACTIONS(1245), 1, + ACTIONS(1253), 1, sym_identifier, - ACTIONS(1247), 1, + ACTIONS(1255), 1, anon_sym_LPAREN, - ACTIONS(1249), 1, + ACTIONS(1257), 1, anon_sym_getline, - ACTIONS(1251), 1, + ACTIONS(1259), 1, anon_sym_SLASH, - ACTIONS(1255), 1, + ACTIONS(1263), 1, anon_sym_BANG, - ACTIONS(1259), 1, + ACTIONS(1267), 1, anon_sym_DOLLAR, - ACTIONS(1261), 1, + ACTIONS(1269), 1, anon_sym_AT, - ACTIONS(1263), 1, + ACTIONS(1271), 1, aux_sym_number_token1, - ACTIONS(1265), 1, + ACTIONS(1273), 1, aux_sym_number_token2, - ACTIONS(1267), 1, + ACTIONS(1275), 1, anon_sym_DQUOTE, STATE(744), 1, aux_sym_exp_list_repeat1, @@ -49707,10 +49713,10 @@ static const uint16_t ts_small_parse_table[] = { sym_exp_list, STATE(2039), 1, sym_namespace, - ACTIONS(1253), 2, + ACTIONS(1261), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1257), 2, + ACTIONS(1265), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(1496), 9, @@ -49735,29 +49741,29 @@ static const uint16_t ts_small_parse_table[] = { sym_regex_constant, sym_indirect_func_call, [28976] = 7, - ACTIONS(860), 1, + ACTIONS(868), 1, sym_concatenating_space, - ACTIONS(1309), 2, + ACTIONS(1317), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(1313), 2, + ACTIONS(1321), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1327), 2, + ACTIONS(1335), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(1311), 3, + ACTIONS(1319), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1321), 6, + ACTIONS(1329), 6, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(858), 24, + ACTIONS(866), 24, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -49783,27 +49789,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_POUND, [29031] = 21, - ACTIONS(1245), 1, + ACTIONS(1253), 1, sym_identifier, - ACTIONS(1247), 1, + ACTIONS(1255), 1, anon_sym_LPAREN, - ACTIONS(1249), 1, + ACTIONS(1257), 1, anon_sym_getline, - ACTIONS(1251), 1, + ACTIONS(1259), 1, anon_sym_SLASH, - ACTIONS(1255), 1, + ACTIONS(1263), 1, anon_sym_BANG, - ACTIONS(1259), 1, + ACTIONS(1267), 1, anon_sym_DOLLAR, - ACTIONS(1261), 1, + ACTIONS(1269), 1, anon_sym_AT, - ACTIONS(1263), 1, + ACTIONS(1271), 1, aux_sym_number_token1, - ACTIONS(1265), 1, + ACTIONS(1273), 1, aux_sym_number_token2, - ACTIONS(1267), 1, + ACTIONS(1275), 1, anon_sym_DQUOTE, - ACTIONS(1341), 1, + ACTIONS(1349), 1, anon_sym_RPAREN, STATE(1091), 1, sym_ns_qualified_name, @@ -49817,10 +49823,10 @@ static const uint16_t ts_small_parse_table[] = { sym_args, STATE(2039), 1, sym_namespace, - ACTIONS(1253), 2, + ACTIONS(1261), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1257), 2, + ACTIONS(1265), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(1496), 9, @@ -49845,27 +49851,27 @@ static const uint16_t ts_small_parse_table[] = { sym_regex_constant, sym_indirect_func_call, [29114] = 21, - ACTIONS(1245), 1, + ACTIONS(1253), 1, sym_identifier, - ACTIONS(1247), 1, + ACTIONS(1255), 1, anon_sym_LPAREN, - ACTIONS(1249), 1, + ACTIONS(1257), 1, anon_sym_getline, - ACTIONS(1251), 1, + ACTIONS(1259), 1, anon_sym_SLASH, - ACTIONS(1255), 1, + ACTIONS(1263), 1, anon_sym_BANG, - ACTIONS(1259), 1, + ACTIONS(1267), 1, anon_sym_DOLLAR, - ACTIONS(1261), 1, + ACTIONS(1269), 1, anon_sym_AT, - ACTIONS(1263), 1, + ACTIONS(1271), 1, aux_sym_number_token1, - ACTIONS(1265), 1, + ACTIONS(1273), 1, aux_sym_number_token2, - ACTIONS(1267), 1, + ACTIONS(1275), 1, anon_sym_DQUOTE, - ACTIONS(1343), 1, + ACTIONS(1351), 1, anon_sym_RPAREN, STATE(1091), 1, sym_ns_qualified_name, @@ -49879,10 +49885,10 @@ static const uint16_t ts_small_parse_table[] = { sym_args, STATE(2039), 1, sym_namespace, - ACTIONS(1253), 2, + ACTIONS(1261), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1257), 2, + ACTIONS(1265), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(1496), 9, @@ -49907,19 +49913,19 @@ static const uint16_t ts_small_parse_table[] = { sym_regex_constant, sym_indirect_func_call, [29197] = 5, - ACTIONS(766), 1, + ACTIONS(774), 1, sym_concatenating_space, - ACTIONS(1309), 2, + ACTIONS(1317), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(1313), 2, + ACTIONS(1321), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1311), 3, + ACTIONS(1319), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(764), 32, + ACTIONS(772), 32, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -49953,25 +49959,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_POUND, [29248] = 21, - ACTIONS(1245), 1, + ACTIONS(1253), 1, sym_identifier, - ACTIONS(1247), 1, + ACTIONS(1255), 1, anon_sym_LPAREN, - ACTIONS(1249), 1, + ACTIONS(1257), 1, anon_sym_getline, - ACTIONS(1251), 1, + ACTIONS(1259), 1, anon_sym_SLASH, - ACTIONS(1255), 1, + ACTIONS(1263), 1, anon_sym_BANG, - ACTIONS(1259), 1, + ACTIONS(1267), 1, anon_sym_DOLLAR, - ACTIONS(1261), 1, + ACTIONS(1269), 1, anon_sym_AT, - ACTIONS(1263), 1, + ACTIONS(1271), 1, aux_sym_number_token1, - ACTIONS(1265), 1, + ACTIONS(1273), 1, aux_sym_number_token2, - ACTIONS(1267), 1, + ACTIONS(1275), 1, anon_sym_DQUOTE, STATE(744), 1, aux_sym_exp_list_repeat1, @@ -49987,10 +49993,10 @@ static const uint16_t ts_small_parse_table[] = { sym_exp_list, STATE(2039), 1, sym_namespace, - ACTIONS(1253), 2, + ACTIONS(1261), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1257), 2, + ACTIONS(1265), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(1496), 9, @@ -50015,18 +50021,18 @@ static const uint16_t ts_small_parse_table[] = { sym_regex_constant, sym_indirect_func_call, [29331] = 7, - ACTIONS(644), 1, + ACTIONS(652), 1, anon_sym_COLON_COLON, - ACTIONS(684), 1, + ACTIONS(692), 1, anon_sym_LBRACK, - ACTIONS(1201), 1, + ACTIONS(1209), 1, anon_sym_LPAREN2, - ACTIONS(1347), 1, + ACTIONS(1355), 1, sym_concatenating_space, - ACTIONS(1215), 2, + ACTIONS(1223), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1345), 7, + ACTIONS(1353), 7, anon_sym_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -50034,7 +50040,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_CARET_EQ, - ACTIONS(636), 27, + ACTIONS(644), 27, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -50063,25 +50069,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, [29386] = 21, - ACTIONS(1245), 1, + ACTIONS(1253), 1, sym_identifier, - ACTIONS(1247), 1, + ACTIONS(1255), 1, anon_sym_LPAREN, - ACTIONS(1249), 1, + ACTIONS(1257), 1, anon_sym_getline, - ACTIONS(1251), 1, + ACTIONS(1259), 1, anon_sym_SLASH, - ACTIONS(1255), 1, + ACTIONS(1263), 1, anon_sym_BANG, - ACTIONS(1259), 1, + ACTIONS(1267), 1, anon_sym_DOLLAR, - ACTIONS(1261), 1, + ACTIONS(1269), 1, anon_sym_AT, - ACTIONS(1263), 1, + ACTIONS(1271), 1, aux_sym_number_token1, - ACTIONS(1265), 1, + ACTIONS(1273), 1, aux_sym_number_token2, - ACTIONS(1267), 1, + ACTIONS(1275), 1, anon_sym_DQUOTE, STATE(744), 1, aux_sym_exp_list_repeat1, @@ -50097,10 +50103,10 @@ static const uint16_t ts_small_parse_table[] = { sym_exp_list, STATE(2039), 1, sym_namespace, - ACTIONS(1253), 2, + ACTIONS(1261), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1257), 2, + ACTIONS(1265), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(1496), 9, @@ -50125,27 +50131,27 @@ static const uint16_t ts_small_parse_table[] = { sym_regex_constant, sym_indirect_func_call, [29469] = 21, - ACTIONS(1245), 1, + ACTIONS(1253), 1, sym_identifier, - ACTIONS(1247), 1, + ACTIONS(1255), 1, anon_sym_LPAREN, - ACTIONS(1249), 1, + ACTIONS(1257), 1, anon_sym_getline, - ACTIONS(1251), 1, + ACTIONS(1259), 1, anon_sym_SLASH, - ACTIONS(1255), 1, + ACTIONS(1263), 1, anon_sym_BANG, - ACTIONS(1259), 1, + ACTIONS(1267), 1, anon_sym_DOLLAR, - ACTIONS(1261), 1, + ACTIONS(1269), 1, anon_sym_AT, - ACTIONS(1263), 1, + ACTIONS(1271), 1, aux_sym_number_token1, - ACTIONS(1265), 1, + ACTIONS(1273), 1, aux_sym_number_token2, - ACTIONS(1267), 1, + ACTIONS(1275), 1, anon_sym_DQUOTE, - ACTIONS(1349), 1, + ACTIONS(1357), 1, anon_sym_RPAREN, STATE(1091), 1, sym_ns_qualified_name, @@ -50159,10 +50165,10 @@ static const uint16_t ts_small_parse_table[] = { sym_args, STATE(2039), 1, sym_namespace, - ACTIONS(1253), 2, + ACTIONS(1261), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1257), 2, + ACTIONS(1265), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(1496), 9, @@ -50187,12 +50193,12 @@ static const uint16_t ts_small_parse_table[] = { sym_regex_constant, sym_indirect_func_call, [29552] = 3, - ACTIONS(766), 1, + ACTIONS(774), 1, sym_concatenating_space, - ACTIONS(1309), 2, + ACTIONS(1317), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(764), 37, + ACTIONS(772), 37, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -50231,16 +50237,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_POUND, [29599] = 4, - ACTIONS(766), 1, + ACTIONS(774), 1, sym_concatenating_space, - ACTIONS(1309), 2, + ACTIONS(1317), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(1311), 3, + ACTIONS(1319), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(764), 34, + ACTIONS(772), 34, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -50276,26 +50282,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_POUND, [29648] = 6, - ACTIONS(766), 1, + ACTIONS(774), 1, sym_concatenating_space, - ACTIONS(1309), 2, + ACTIONS(1317), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(1313), 2, + ACTIONS(1321), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1311), 3, + ACTIONS(1319), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1321), 6, + ACTIONS(1329), 6, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(764), 26, + ACTIONS(772), 26, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -50323,27 +50329,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_POUND, [29701] = 21, - ACTIONS(1245), 1, + ACTIONS(1253), 1, sym_identifier, - ACTIONS(1247), 1, + ACTIONS(1255), 1, anon_sym_LPAREN, - ACTIONS(1249), 1, + ACTIONS(1257), 1, anon_sym_getline, - ACTIONS(1251), 1, + ACTIONS(1259), 1, anon_sym_SLASH, - ACTIONS(1255), 1, + ACTIONS(1263), 1, anon_sym_BANG, - ACTIONS(1259), 1, + ACTIONS(1267), 1, anon_sym_DOLLAR, - ACTIONS(1261), 1, + ACTIONS(1269), 1, anon_sym_AT, - ACTIONS(1263), 1, + ACTIONS(1271), 1, aux_sym_number_token1, - ACTIONS(1265), 1, + ACTIONS(1273), 1, aux_sym_number_token2, - ACTIONS(1267), 1, + ACTIONS(1275), 1, anon_sym_DQUOTE, - ACTIONS(1351), 1, + ACTIONS(1359), 1, anon_sym_RPAREN, STATE(1091), 1, sym_ns_qualified_name, @@ -50357,10 +50363,10 @@ static const uint16_t ts_small_parse_table[] = { sym_args, STATE(2039), 1, sym_namespace, - ACTIONS(1253), 2, + ACTIONS(1261), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1257), 2, + ACTIONS(1265), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(1496), 9, @@ -50385,31 +50391,31 @@ static const uint16_t ts_small_parse_table[] = { sym_regex_constant, sym_indirect_func_call, [29784] = 8, - ACTIONS(766), 1, + ACTIONS(774), 1, sym_concatenating_space, - ACTIONS(1319), 1, + ACTIONS(1327), 1, anon_sym_in, - ACTIONS(1309), 2, + ACTIONS(1317), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(1313), 2, + ACTIONS(1321), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1327), 2, + ACTIONS(1335), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(1311), 3, + ACTIONS(1319), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1321), 6, + ACTIONS(1329), 6, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(764), 23, + ACTIONS(772), 23, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -50434,33 +50440,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_POUND, [29841] = 9, - ACTIONS(766), 1, + ACTIONS(774), 1, sym_concatenating_space, - ACTIONS(1319), 1, + ACTIONS(1327), 1, anon_sym_in, - ACTIONS(1329), 1, + ACTIONS(1337), 1, anon_sym_AMP_AMP, - ACTIONS(1309), 2, + ACTIONS(1317), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(1313), 2, + ACTIONS(1321), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1327), 2, + ACTIONS(1335), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(1311), 3, + ACTIONS(1319), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1321), 6, + ACTIONS(1329), 6, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(764), 22, + ACTIONS(772), 22, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -50484,14 +50490,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_POUND, [29900] = 5, - ACTIONS(1039), 1, + ACTIONS(1047), 1, sym_identifier, STATE(2039), 1, sym_namespace, STATE(293), 2, sym_array_ref, sym_ns_qualified_name, - ACTIONS(696), 11, + ACTIONS(704), 11, anon_sym_in, anon_sym_LT, anon_sym_GT, @@ -50503,7 +50509,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ, - ACTIONS(700), 25, + ACTIONS(708), 25, sym_concatenating_space, anon_sym_COMMA, anon_sym_SEMI, @@ -50530,25 +50536,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_RBRACK, [29951] = 21, - ACTIONS(1245), 1, + ACTIONS(1253), 1, sym_identifier, - ACTIONS(1247), 1, + ACTIONS(1255), 1, anon_sym_LPAREN, - ACTIONS(1249), 1, + ACTIONS(1257), 1, anon_sym_getline, - ACTIONS(1251), 1, + ACTIONS(1259), 1, anon_sym_SLASH, - ACTIONS(1255), 1, + ACTIONS(1263), 1, anon_sym_BANG, - ACTIONS(1259), 1, + ACTIONS(1267), 1, anon_sym_DOLLAR, - ACTIONS(1261), 1, + ACTIONS(1269), 1, anon_sym_AT, - ACTIONS(1263), 1, + ACTIONS(1271), 1, aux_sym_number_token1, - ACTIONS(1265), 1, + ACTIONS(1273), 1, aux_sym_number_token2, - ACTIONS(1267), 1, + ACTIONS(1275), 1, anon_sym_DQUOTE, STATE(744), 1, aux_sym_exp_list_repeat1, @@ -50564,10 +50570,10 @@ static const uint16_t ts_small_parse_table[] = { sym_exp_list, STATE(2039), 1, sym_namespace, - ACTIONS(1253), 2, + ACTIONS(1261), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1257), 2, + ACTIONS(1265), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(1496), 9, @@ -50592,29 +50598,29 @@ static const uint16_t ts_small_parse_table[] = { sym_regex_constant, sym_indirect_func_call, [30034] = 7, - ACTIONS(834), 1, + ACTIONS(842), 1, sym_concatenating_space, - ACTIONS(1309), 2, + ACTIONS(1317), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(1313), 2, + ACTIONS(1321), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1327), 2, + ACTIONS(1335), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(1311), 3, + ACTIONS(1319), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1321), 6, + ACTIONS(1329), 6, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(830), 24, + ACTIONS(838), 24, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -50640,37 +50646,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_POUND, [30089] = 11, - ACTIONS(852), 1, + ACTIONS(860), 1, sym_concatenating_space, - ACTIONS(1319), 1, + ACTIONS(1327), 1, anon_sym_in, - ACTIONS(1325), 1, + ACTIONS(1333), 1, anon_sym_QMARK, - ACTIONS(1329), 1, + ACTIONS(1337), 1, anon_sym_AMP_AMP, - ACTIONS(1331), 1, + ACTIONS(1339), 1, anon_sym_PIPE_PIPE, - ACTIONS(1309), 2, + ACTIONS(1317), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(1313), 2, + ACTIONS(1321), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1327), 2, + ACTIONS(1335), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(1311), 3, + ACTIONS(1319), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1321), 6, + ACTIONS(1329), 6, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(850), 20, + ACTIONS(858), 20, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -50692,12 +50698,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_POUND, [30152] = 4, - ACTIONS(650), 1, + ACTIONS(658), 1, sym_concatenating_space, - ACTIONS(1221), 2, + ACTIONS(1229), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1223), 7, + ACTIONS(1231), 7, anon_sym_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -50705,7 +50711,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_CARET_EQ, - ACTIONS(636), 30, + ACTIONS(644), 30, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -50737,25 +50743,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_POUND, [30201] = 21, - ACTIONS(1245), 1, + ACTIONS(1253), 1, sym_identifier, - ACTIONS(1247), 1, + ACTIONS(1255), 1, anon_sym_LPAREN, - ACTIONS(1249), 1, + ACTIONS(1257), 1, anon_sym_getline, - ACTIONS(1251), 1, + ACTIONS(1259), 1, anon_sym_SLASH, - ACTIONS(1255), 1, + ACTIONS(1263), 1, anon_sym_BANG, - ACTIONS(1259), 1, + ACTIONS(1267), 1, anon_sym_DOLLAR, - ACTIONS(1261), 1, + ACTIONS(1269), 1, anon_sym_AT, - ACTIONS(1263), 1, + ACTIONS(1271), 1, aux_sym_number_token1, - ACTIONS(1265), 1, + ACTIONS(1273), 1, aux_sym_number_token2, - ACTIONS(1267), 1, + ACTIONS(1275), 1, anon_sym_DQUOTE, STATE(744), 1, aux_sym_exp_list_repeat1, @@ -50771,10 +50777,10 @@ static const uint16_t ts_small_parse_table[] = { sym_exp_list, STATE(2039), 1, sym_namespace, - ACTIONS(1253), 2, + ACTIONS(1261), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1257), 2, + ACTIONS(1265), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(1496), 9, @@ -50799,18 +50805,18 @@ static const uint16_t ts_small_parse_table[] = { sym_regex_constant, sym_indirect_func_call, [30284] = 7, - ACTIONS(644), 1, + ACTIONS(652), 1, anon_sym_COLON_COLON, - ACTIONS(650), 1, + ACTIONS(658), 1, sym_concatenating_space, - ACTIONS(684), 1, + ACTIONS(692), 1, anon_sym_LBRACK, - ACTIONS(1201), 1, + ACTIONS(1209), 1, anon_sym_LPAREN2, - ACTIONS(1221), 2, + ACTIONS(1229), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1353), 7, + ACTIONS(1361), 7, anon_sym_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -50818,7 +50824,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_CARET_EQ, - ACTIONS(636), 27, + ACTIONS(644), 27, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -50847,25 +50853,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, [30339] = 21, - ACTIONS(1245), 1, + ACTIONS(1253), 1, sym_identifier, - ACTIONS(1247), 1, + ACTIONS(1255), 1, anon_sym_LPAREN, - ACTIONS(1249), 1, + ACTIONS(1257), 1, anon_sym_getline, - ACTIONS(1251), 1, + ACTIONS(1259), 1, anon_sym_SLASH, - ACTIONS(1255), 1, + ACTIONS(1263), 1, anon_sym_BANG, - ACTIONS(1259), 1, + ACTIONS(1267), 1, anon_sym_DOLLAR, - ACTIONS(1261), 1, + ACTIONS(1269), 1, anon_sym_AT, - ACTIONS(1263), 1, + ACTIONS(1271), 1, aux_sym_number_token1, - ACTIONS(1265), 1, + ACTIONS(1273), 1, aux_sym_number_token2, - ACTIONS(1267), 1, + ACTIONS(1275), 1, anon_sym_DQUOTE, STATE(744), 1, aux_sym_exp_list_repeat1, @@ -50881,10 +50887,10 @@ static const uint16_t ts_small_parse_table[] = { sym_exp_list, STATE(2039), 1, sym_namespace, - ACTIONS(1253), 2, + ACTIONS(1261), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1257), 2, + ACTIONS(1265), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(1496), 9, @@ -50909,18 +50915,18 @@ static const uint16_t ts_small_parse_table[] = { sym_regex_constant, sym_indirect_func_call, [30422] = 7, - ACTIONS(642), 1, - anon_sym_LBRACK, ACTIONS(650), 1, + anon_sym_LBRACK, + ACTIONS(658), 1, sym__if_else_separator, - ACTIONS(1187), 1, + ACTIONS(1195), 1, anon_sym_LPAREN2, - ACTIONS(1279), 1, + ACTIONS(1287), 1, sym_concatenating_space, - ACTIONS(1207), 2, + ACTIONS(1215), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1277), 7, + ACTIONS(1285), 7, anon_sym_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -50928,7 +50934,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_CARET_EQ, - ACTIONS(636), 27, + ACTIONS(644), 27, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -50957,25 +50963,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, [30477] = 21, - ACTIONS(1245), 1, + ACTIONS(1253), 1, sym_identifier, - ACTIONS(1247), 1, + ACTIONS(1255), 1, anon_sym_LPAREN, - ACTIONS(1249), 1, + ACTIONS(1257), 1, anon_sym_getline, - ACTIONS(1251), 1, + ACTIONS(1259), 1, anon_sym_SLASH, - ACTIONS(1255), 1, + ACTIONS(1263), 1, anon_sym_BANG, - ACTIONS(1259), 1, + ACTIONS(1267), 1, anon_sym_DOLLAR, - ACTIONS(1261), 1, + ACTIONS(1269), 1, anon_sym_AT, - ACTIONS(1263), 1, + ACTIONS(1271), 1, aux_sym_number_token1, - ACTIONS(1265), 1, + ACTIONS(1273), 1, aux_sym_number_token2, - ACTIONS(1267), 1, + ACTIONS(1275), 1, anon_sym_DQUOTE, STATE(744), 1, aux_sym_exp_list_repeat1, @@ -50991,10 +50997,10 @@ static const uint16_t ts_small_parse_table[] = { sym_exp_list, STATE(2039), 1, sym_namespace, - ACTIONS(1253), 2, + ACTIONS(1261), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1257), 2, + ACTIONS(1265), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(1496), 9, @@ -51019,17 +51025,17 @@ static const uint16_t ts_small_parse_table[] = { sym_regex_constant, sym_indirect_func_call, [30560] = 6, - ACTIONS(642), 1, + ACTIONS(650), 1, anon_sym_LBRACK, - ACTIONS(1187), 1, + ACTIONS(1195), 1, anon_sym_LPAREN2, - ACTIONS(650), 2, + ACTIONS(658), 2, sym_concatenating_space, sym__if_else_separator, - ACTIONS(1197), 2, + ACTIONS(1205), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1275), 7, + ACTIONS(1283), 7, anon_sym_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -51037,7 +51043,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_CARET_EQ, - ACTIONS(636), 27, + ACTIONS(644), 27, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -51066,25 +51072,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, [30613] = 21, - ACTIONS(1245), 1, + ACTIONS(1253), 1, sym_identifier, - ACTIONS(1247), 1, + ACTIONS(1255), 1, anon_sym_LPAREN, - ACTIONS(1249), 1, + ACTIONS(1257), 1, anon_sym_getline, - ACTIONS(1251), 1, + ACTIONS(1259), 1, anon_sym_SLASH, - ACTIONS(1255), 1, + ACTIONS(1263), 1, anon_sym_BANG, - ACTIONS(1259), 1, + ACTIONS(1267), 1, anon_sym_DOLLAR, - ACTIONS(1261), 1, + ACTIONS(1269), 1, anon_sym_AT, - ACTIONS(1263), 1, + ACTIONS(1271), 1, aux_sym_number_token1, - ACTIONS(1265), 1, + ACTIONS(1273), 1, aux_sym_number_token2, - ACTIONS(1267), 1, + ACTIONS(1275), 1, anon_sym_DQUOTE, STATE(744), 1, aux_sym_exp_list_repeat1, @@ -51100,10 +51106,10 @@ static const uint16_t ts_small_parse_table[] = { sym_exp_list, STATE(2039), 1, sym_namespace, - ACTIONS(1253), 2, + ACTIONS(1261), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1257), 2, + ACTIONS(1265), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(1496), 9, @@ -51128,25 +51134,25 @@ static const uint16_t ts_small_parse_table[] = { sym_regex_constant, sym_indirect_func_call, [30696] = 21, - ACTIONS(1245), 1, + ACTIONS(1253), 1, sym_identifier, - ACTIONS(1247), 1, + ACTIONS(1255), 1, anon_sym_LPAREN, - ACTIONS(1249), 1, + ACTIONS(1257), 1, anon_sym_getline, - ACTIONS(1251), 1, + ACTIONS(1259), 1, anon_sym_SLASH, - ACTIONS(1255), 1, + ACTIONS(1263), 1, anon_sym_BANG, - ACTIONS(1259), 1, + ACTIONS(1267), 1, anon_sym_DOLLAR, - ACTIONS(1261), 1, + ACTIONS(1269), 1, anon_sym_AT, - ACTIONS(1263), 1, + ACTIONS(1271), 1, aux_sym_number_token1, - ACTIONS(1265), 1, + ACTIONS(1273), 1, aux_sym_number_token2, - ACTIONS(1267), 1, + ACTIONS(1275), 1, anon_sym_DQUOTE, STATE(744), 1, aux_sym_exp_list_repeat1, @@ -51162,10 +51168,10 @@ static const uint16_t ts_small_parse_table[] = { sym_exp_list, STATE(2039), 1, sym_namespace, - ACTIONS(1253), 2, + ACTIONS(1261), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1257), 2, + ACTIONS(1265), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(1496), 9, @@ -51190,25 +51196,25 @@ static const uint16_t ts_small_parse_table[] = { sym_regex_constant, sym_indirect_func_call, [30779] = 21, - ACTIONS(1245), 1, + ACTIONS(1253), 1, sym_identifier, - ACTIONS(1247), 1, + ACTIONS(1255), 1, anon_sym_LPAREN, - ACTIONS(1249), 1, + ACTIONS(1257), 1, anon_sym_getline, - ACTIONS(1251), 1, + ACTIONS(1259), 1, anon_sym_SLASH, - ACTIONS(1255), 1, + ACTIONS(1263), 1, anon_sym_BANG, - ACTIONS(1259), 1, + ACTIONS(1267), 1, anon_sym_DOLLAR, - ACTIONS(1261), 1, + ACTIONS(1269), 1, anon_sym_AT, - ACTIONS(1263), 1, + ACTIONS(1271), 1, aux_sym_number_token1, - ACTIONS(1265), 1, + ACTIONS(1273), 1, aux_sym_number_token2, - ACTIONS(1267), 1, + ACTIONS(1275), 1, anon_sym_DQUOTE, STATE(744), 1, aux_sym_exp_list_repeat1, @@ -51224,10 +51230,10 @@ static const uint16_t ts_small_parse_table[] = { sym_exp_list, STATE(2039), 1, sym_namespace, - ACTIONS(1253), 2, + ACTIONS(1261), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1257), 2, + ACTIONS(1265), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(1496), 9, @@ -51252,25 +51258,25 @@ static const uint16_t ts_small_parse_table[] = { sym_regex_constant, sym_indirect_func_call, [30862] = 21, - ACTIONS(1245), 1, + ACTIONS(1253), 1, sym_identifier, - ACTIONS(1247), 1, + ACTIONS(1255), 1, anon_sym_LPAREN, - ACTIONS(1249), 1, + ACTIONS(1257), 1, anon_sym_getline, - ACTIONS(1251), 1, + ACTIONS(1259), 1, anon_sym_SLASH, - ACTIONS(1255), 1, + ACTIONS(1263), 1, anon_sym_BANG, - ACTIONS(1259), 1, + ACTIONS(1267), 1, anon_sym_DOLLAR, - ACTIONS(1261), 1, + ACTIONS(1269), 1, anon_sym_AT, - ACTIONS(1263), 1, + ACTIONS(1271), 1, aux_sym_number_token1, - ACTIONS(1265), 1, + ACTIONS(1273), 1, aux_sym_number_token2, - ACTIONS(1267), 1, + ACTIONS(1275), 1, anon_sym_DQUOTE, STATE(744), 1, aux_sym_exp_list_repeat1, @@ -51286,10 +51292,10 @@ static const uint16_t ts_small_parse_table[] = { sym_exp_list, STATE(2039), 1, sym_namespace, - ACTIONS(1253), 2, + ACTIONS(1261), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1257), 2, + ACTIONS(1265), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(1496), 9, @@ -51314,25 +51320,25 @@ static const uint16_t ts_small_parse_table[] = { sym_regex_constant, sym_indirect_func_call, [30945] = 21, - ACTIONS(1245), 1, + ACTIONS(1253), 1, sym_identifier, - ACTIONS(1247), 1, + ACTIONS(1255), 1, anon_sym_LPAREN, - ACTIONS(1249), 1, + ACTIONS(1257), 1, anon_sym_getline, - ACTIONS(1251), 1, + ACTIONS(1259), 1, anon_sym_SLASH, - ACTIONS(1255), 1, + ACTIONS(1263), 1, anon_sym_BANG, - ACTIONS(1259), 1, + ACTIONS(1267), 1, anon_sym_DOLLAR, - ACTIONS(1261), 1, + ACTIONS(1269), 1, anon_sym_AT, - ACTIONS(1263), 1, + ACTIONS(1271), 1, aux_sym_number_token1, - ACTIONS(1265), 1, + ACTIONS(1273), 1, aux_sym_number_token2, - ACTIONS(1267), 1, + ACTIONS(1275), 1, anon_sym_DQUOTE, STATE(744), 1, aux_sym_exp_list_repeat1, @@ -51348,10 +51354,10 @@ static const uint16_t ts_small_parse_table[] = { sym_exp_list, STATE(2039), 1, sym_namespace, - ACTIONS(1253), 2, + ACTIONS(1261), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1257), 2, + ACTIONS(1265), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(1496), 9, @@ -51376,27 +51382,27 @@ static const uint16_t ts_small_parse_table[] = { sym_regex_constant, sym_indirect_func_call, [31028] = 21, - ACTIONS(1245), 1, + ACTIONS(1253), 1, sym_identifier, - ACTIONS(1247), 1, + ACTIONS(1255), 1, anon_sym_LPAREN, - ACTIONS(1249), 1, + ACTIONS(1257), 1, anon_sym_getline, - ACTIONS(1251), 1, + ACTIONS(1259), 1, anon_sym_SLASH, - ACTIONS(1255), 1, + ACTIONS(1263), 1, anon_sym_BANG, - ACTIONS(1259), 1, + ACTIONS(1267), 1, anon_sym_DOLLAR, - ACTIONS(1261), 1, + ACTIONS(1269), 1, anon_sym_AT, - ACTIONS(1263), 1, + ACTIONS(1271), 1, aux_sym_number_token1, - ACTIONS(1265), 1, + ACTIONS(1273), 1, aux_sym_number_token2, - ACTIONS(1267), 1, + ACTIONS(1275), 1, anon_sym_DQUOTE, - ACTIONS(1355), 1, + ACTIONS(1363), 1, anon_sym_RPAREN, STATE(1091), 1, sym_ns_qualified_name, @@ -51410,10 +51416,10 @@ static const uint16_t ts_small_parse_table[] = { sym_args, STATE(2039), 1, sym_namespace, - ACTIONS(1253), 2, + ACTIONS(1261), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1257), 2, + ACTIONS(1265), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(1496), 9, @@ -51438,27 +51444,27 @@ static const uint16_t ts_small_parse_table[] = { sym_regex_constant, sym_indirect_func_call, [31111] = 21, - ACTIONS(1245), 1, + ACTIONS(1253), 1, sym_identifier, - ACTIONS(1247), 1, + ACTIONS(1255), 1, anon_sym_LPAREN, - ACTIONS(1249), 1, + ACTIONS(1257), 1, anon_sym_getline, - ACTIONS(1251), 1, + ACTIONS(1259), 1, anon_sym_SLASH, - ACTIONS(1255), 1, + ACTIONS(1263), 1, anon_sym_BANG, - ACTIONS(1259), 1, + ACTIONS(1267), 1, anon_sym_DOLLAR, - ACTIONS(1261), 1, + ACTIONS(1269), 1, anon_sym_AT, - ACTIONS(1263), 1, + ACTIONS(1271), 1, aux_sym_number_token1, - ACTIONS(1265), 1, + ACTIONS(1273), 1, aux_sym_number_token2, - ACTIONS(1267), 1, + ACTIONS(1275), 1, anon_sym_DQUOTE, - ACTIONS(1357), 1, + ACTIONS(1365), 1, anon_sym_RPAREN, STATE(1091), 1, sym_ns_qualified_name, @@ -51472,10 +51478,10 @@ static const uint16_t ts_small_parse_table[] = { sym_args, STATE(2039), 1, sym_namespace, - ACTIONS(1253), 2, + ACTIONS(1261), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1257), 2, + ACTIONS(1265), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(1496), 9, @@ -51500,27 +51506,27 @@ static const uint16_t ts_small_parse_table[] = { sym_regex_constant, sym_indirect_func_call, [31194] = 21, - ACTIONS(1245), 1, + ACTIONS(1253), 1, sym_identifier, - ACTIONS(1247), 1, + ACTIONS(1255), 1, anon_sym_LPAREN, - ACTIONS(1249), 1, + ACTIONS(1257), 1, anon_sym_getline, - ACTIONS(1251), 1, + ACTIONS(1259), 1, anon_sym_SLASH, - ACTIONS(1255), 1, + ACTIONS(1263), 1, anon_sym_BANG, - ACTIONS(1259), 1, + ACTIONS(1267), 1, anon_sym_DOLLAR, - ACTIONS(1261), 1, + ACTIONS(1269), 1, anon_sym_AT, - ACTIONS(1263), 1, + ACTIONS(1271), 1, aux_sym_number_token1, - ACTIONS(1265), 1, + ACTIONS(1273), 1, aux_sym_number_token2, - ACTIONS(1267), 1, + ACTIONS(1275), 1, anon_sym_DQUOTE, - ACTIONS(1359), 1, + ACTIONS(1367), 1, anon_sym_RPAREN, STATE(1091), 1, sym_ns_qualified_name, @@ -51534,10 +51540,10 @@ static const uint16_t ts_small_parse_table[] = { sym_args, STATE(2039), 1, sym_namespace, - ACTIONS(1253), 2, + ACTIONS(1261), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1257), 2, + ACTIONS(1265), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(1496), 9, @@ -51562,27 +51568,27 @@ static const uint16_t ts_small_parse_table[] = { sym_regex_constant, sym_indirect_func_call, [31277] = 21, - ACTIONS(1245), 1, + ACTIONS(1253), 1, sym_identifier, - ACTIONS(1247), 1, + ACTIONS(1255), 1, anon_sym_LPAREN, - ACTIONS(1249), 1, + ACTIONS(1257), 1, anon_sym_getline, - ACTIONS(1251), 1, + ACTIONS(1259), 1, anon_sym_SLASH, - ACTIONS(1255), 1, + ACTIONS(1263), 1, anon_sym_BANG, - ACTIONS(1259), 1, + ACTIONS(1267), 1, anon_sym_DOLLAR, - ACTIONS(1261), 1, + ACTIONS(1269), 1, anon_sym_AT, - ACTIONS(1263), 1, + ACTIONS(1271), 1, aux_sym_number_token1, - ACTIONS(1265), 1, + ACTIONS(1273), 1, aux_sym_number_token2, - ACTIONS(1267), 1, + ACTIONS(1275), 1, anon_sym_DQUOTE, - ACTIONS(1361), 1, + ACTIONS(1369), 1, anon_sym_RPAREN, STATE(1091), 1, sym_ns_qualified_name, @@ -51596,10 +51602,10 @@ static const uint16_t ts_small_parse_table[] = { sym_namespace, STATE(2040), 1, sym_args, - ACTIONS(1253), 2, + ACTIONS(1261), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1257), 2, + ACTIONS(1265), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(1496), 9, @@ -51624,7 +51630,7 @@ static const uint16_t ts_small_parse_table[] = { sym_regex_constant, sym_indirect_func_call, [31360] = 1, - ACTIONS(1283), 40, + ACTIONS(1291), 40, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, @@ -51666,7 +51672,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [31403] = 1, - ACTIONS(1287), 40, + ACTIONS(1295), 40, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, @@ -51708,25 +51714,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [31446] = 21, - ACTIONS(1245), 1, + ACTIONS(1253), 1, sym_identifier, - ACTIONS(1247), 1, + ACTIONS(1255), 1, anon_sym_LPAREN, - ACTIONS(1249), 1, + ACTIONS(1257), 1, anon_sym_getline, - ACTIONS(1251), 1, + ACTIONS(1259), 1, anon_sym_SLASH, - ACTIONS(1255), 1, + ACTIONS(1263), 1, anon_sym_BANG, - ACTIONS(1259), 1, + ACTIONS(1267), 1, anon_sym_DOLLAR, - ACTIONS(1261), 1, + ACTIONS(1269), 1, anon_sym_AT, - ACTIONS(1263), 1, + ACTIONS(1271), 1, aux_sym_number_token1, - ACTIONS(1265), 1, + ACTIONS(1273), 1, aux_sym_number_token2, - ACTIONS(1267), 1, + ACTIONS(1275), 1, anon_sym_DQUOTE, STATE(744), 1, aux_sym_exp_list_repeat1, @@ -51742,10 +51748,10 @@ static const uint16_t ts_small_parse_table[] = { sym_exp_list, STATE(2039), 1, sym_namespace, - ACTIONS(1253), 2, + ACTIONS(1261), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1257), 2, + ACTIONS(1265), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(1496), 9, @@ -51770,9 +51776,9 @@ static const uint16_t ts_small_parse_table[] = { sym_regex_constant, sym_indirect_func_call, [31529] = 7, - ACTIONS(1363), 1, + ACTIONS(1371), 1, sym_identifier, - ACTIONS(1365), 1, + ACTIONS(1373), 1, anon_sym_LT, STATE(293), 1, sym_array_ref, @@ -51780,7 +51786,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ns_qualified_name, STATE(2039), 1, sym_namespace, - ACTIONS(696), 10, + ACTIONS(704), 10, anon_sym_in, anon_sym_GT, anon_sym_PIPE, @@ -51791,7 +51797,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ, - ACTIONS(700), 25, + ACTIONS(708), 25, sym_concatenating_space, anon_sym_COMMA, anon_sym_SEMI, @@ -51818,25 +51824,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_RBRACK, [31584] = 21, - ACTIONS(1245), 1, + ACTIONS(1253), 1, sym_identifier, - ACTIONS(1247), 1, + ACTIONS(1255), 1, anon_sym_LPAREN, - ACTIONS(1249), 1, + ACTIONS(1257), 1, anon_sym_getline, - ACTIONS(1251), 1, + ACTIONS(1259), 1, anon_sym_SLASH, - ACTIONS(1255), 1, + ACTIONS(1263), 1, anon_sym_BANG, - ACTIONS(1259), 1, + ACTIONS(1267), 1, anon_sym_DOLLAR, - ACTIONS(1261), 1, + ACTIONS(1269), 1, anon_sym_AT, - ACTIONS(1263), 1, + ACTIONS(1271), 1, aux_sym_number_token1, - ACTIONS(1265), 1, + ACTIONS(1273), 1, aux_sym_number_token2, - ACTIONS(1267), 1, + ACTIONS(1275), 1, anon_sym_DQUOTE, STATE(744), 1, aux_sym_exp_list_repeat1, @@ -51852,10 +51858,10 @@ static const uint16_t ts_small_parse_table[] = { sym_exp_list, STATE(2039), 1, sym_namespace, - ACTIONS(1253), 2, + ACTIONS(1261), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1257), 2, + ACTIONS(1265), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(1496), 9, @@ -51880,25 +51886,25 @@ static const uint16_t ts_small_parse_table[] = { sym_regex_constant, sym_indirect_func_call, [31667] = 8, - ACTIONS(644), 1, + ACTIONS(652), 1, anon_sym_COLON_COLON, - ACTIONS(888), 1, + ACTIONS(896), 1, anon_sym_LBRACK, - ACTIONS(1367), 1, + ACTIONS(1375), 1, anon_sym_LPAREN2, - ACTIONS(1371), 1, + ACTIONS(1379), 1, anon_sym_EQ, - ACTIONS(1369), 2, + ACTIONS(1377), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1373), 6, + ACTIONS(1381), 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(636), 10, + ACTIONS(644), 10, anon_sym_COLON, anon_sym_LT, anon_sym_GT, @@ -51909,7 +51915,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(650), 17, + ACTIONS(658), 17, sym_concatenating_space, anon_sym_COMMA, anon_sym_SEMI, @@ -51928,27 +51934,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_RBRACK, [31723] = 20, - ACTIONS(1245), 1, + ACTIONS(1253), 1, sym_identifier, - ACTIONS(1247), 1, + ACTIONS(1255), 1, anon_sym_LPAREN, - ACTIONS(1249), 1, + ACTIONS(1257), 1, anon_sym_getline, - ACTIONS(1251), 1, + ACTIONS(1259), 1, anon_sym_SLASH, - ACTIONS(1255), 1, + ACTIONS(1263), 1, anon_sym_BANG, - ACTIONS(1259), 1, + ACTIONS(1267), 1, anon_sym_DOLLAR, - ACTIONS(1261), 1, + ACTIONS(1269), 1, anon_sym_AT, - ACTIONS(1263), 1, + ACTIONS(1271), 1, aux_sym_number_token1, - ACTIONS(1265), 1, + ACTIONS(1273), 1, aux_sym_number_token2, - ACTIONS(1267), 1, + ACTIONS(1275), 1, anon_sym_DQUOTE, - ACTIONS(1375), 1, + ACTIONS(1383), 1, anon_sym_SEMI, STATE(1091), 1, sym_ns_qualified_name, @@ -51960,10 +51966,10 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_in, STATE(2039), 1, sym_namespace, - ACTIONS(1253), 2, + ACTIONS(1261), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1257), 2, + ACTIONS(1265), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(1496), 9, @@ -51988,27 +51994,27 @@ static const uint16_t ts_small_parse_table[] = { sym_regex_constant, sym_indirect_func_call, [31803] = 20, - ACTIONS(1245), 1, + ACTIONS(1253), 1, sym_identifier, - ACTIONS(1247), 1, + ACTIONS(1255), 1, anon_sym_LPAREN, - ACTIONS(1249), 1, + ACTIONS(1257), 1, anon_sym_getline, - ACTIONS(1251), 1, + ACTIONS(1259), 1, anon_sym_SLASH, - ACTIONS(1255), 1, + ACTIONS(1263), 1, anon_sym_BANG, - ACTIONS(1259), 1, + ACTIONS(1267), 1, anon_sym_DOLLAR, - ACTIONS(1261), 1, + ACTIONS(1269), 1, anon_sym_AT, - ACTIONS(1263), 1, + ACTIONS(1271), 1, aux_sym_number_token1, - ACTIONS(1265), 1, + ACTIONS(1273), 1, aux_sym_number_token2, - ACTIONS(1267), 1, + ACTIONS(1275), 1, anon_sym_DQUOTE, - ACTIONS(1377), 1, + ACTIONS(1385), 1, anon_sym_RPAREN, STATE(1091), 1, sym_ns_qualified_name, @@ -52020,10 +52026,10 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_in, STATE(2039), 1, sym_namespace, - ACTIONS(1253), 2, + ACTIONS(1261), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1257), 2, + ACTIONS(1265), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(1496), 9, @@ -52048,27 +52054,27 @@ static const uint16_t ts_small_parse_table[] = { sym_regex_constant, sym_indirect_func_call, [31883] = 20, - ACTIONS(1245), 1, + ACTIONS(1253), 1, sym_identifier, - ACTIONS(1247), 1, + ACTIONS(1255), 1, anon_sym_LPAREN, - ACTIONS(1249), 1, + ACTIONS(1257), 1, anon_sym_getline, - ACTIONS(1251), 1, + ACTIONS(1259), 1, anon_sym_SLASH, - ACTIONS(1255), 1, + ACTIONS(1263), 1, anon_sym_BANG, - ACTIONS(1259), 1, + ACTIONS(1267), 1, anon_sym_DOLLAR, - ACTIONS(1261), 1, + ACTIONS(1269), 1, anon_sym_AT, - ACTIONS(1263), 1, + ACTIONS(1271), 1, aux_sym_number_token1, - ACTIONS(1265), 1, + ACTIONS(1273), 1, aux_sym_number_token2, - ACTIONS(1267), 1, + ACTIONS(1275), 1, anon_sym_DQUOTE, - ACTIONS(1379), 1, + ACTIONS(1387), 1, anon_sym_SEMI, STATE(1091), 1, sym_ns_qualified_name, @@ -52080,10 +52086,10 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_in, STATE(2039), 1, sym_namespace, - ACTIONS(1253), 2, + ACTIONS(1261), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1257), 2, + ACTIONS(1265), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(1496), 9, @@ -52108,16 +52114,16 @@ static const uint16_t ts_small_parse_table[] = { sym_regex_constant, sym_indirect_func_call, [31963] = 6, - ACTIONS(642), 1, - anon_sym_LBRACK, ACTIONS(650), 1, + anon_sym_LBRACK, + ACTIONS(658), 1, sym__if_else_separator, - ACTIONS(1279), 1, + ACTIONS(1287), 1, sym_concatenating_space, - ACTIONS(1207), 2, + ACTIONS(1215), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1277), 7, + ACTIONS(1285), 7, anon_sym_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -52125,7 +52131,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_CARET_EQ, - ACTIONS(636), 27, + ACTIONS(644), 27, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -52154,27 +52160,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, [32015] = 20, - ACTIONS(1245), 1, + ACTIONS(1253), 1, sym_identifier, - ACTIONS(1247), 1, + ACTIONS(1255), 1, anon_sym_LPAREN, - ACTIONS(1249), 1, + ACTIONS(1257), 1, anon_sym_getline, - ACTIONS(1251), 1, + ACTIONS(1259), 1, anon_sym_SLASH, - ACTIONS(1255), 1, + ACTIONS(1263), 1, anon_sym_BANG, - ACTIONS(1259), 1, + ACTIONS(1267), 1, anon_sym_DOLLAR, - ACTIONS(1261), 1, + ACTIONS(1269), 1, anon_sym_AT, - ACTIONS(1263), 1, + ACTIONS(1271), 1, aux_sym_number_token1, - ACTIONS(1265), 1, + ACTIONS(1273), 1, aux_sym_number_token2, - ACTIONS(1267), 1, + ACTIONS(1275), 1, anon_sym_DQUOTE, - ACTIONS(1381), 1, + ACTIONS(1389), 1, anon_sym_RPAREN, STATE(1091), 1, sym_ns_qualified_name, @@ -52186,10 +52192,10 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_in, STATE(2039), 1, sym_namespace, - ACTIONS(1253), 2, + ACTIONS(1261), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1257), 2, + ACTIONS(1265), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(1496), 9, @@ -52214,27 +52220,27 @@ static const uint16_t ts_small_parse_table[] = { sym_regex_constant, sym_indirect_func_call, [32095] = 20, - ACTIONS(1245), 1, + ACTIONS(1253), 1, sym_identifier, - ACTIONS(1247), 1, + ACTIONS(1255), 1, anon_sym_LPAREN, - ACTIONS(1249), 1, + ACTIONS(1257), 1, anon_sym_getline, - ACTIONS(1251), 1, + ACTIONS(1259), 1, anon_sym_SLASH, - ACTIONS(1255), 1, + ACTIONS(1263), 1, anon_sym_BANG, - ACTIONS(1259), 1, + ACTIONS(1267), 1, anon_sym_DOLLAR, - ACTIONS(1261), 1, + ACTIONS(1269), 1, anon_sym_AT, - ACTIONS(1263), 1, + ACTIONS(1271), 1, aux_sym_number_token1, - ACTIONS(1265), 1, + ACTIONS(1273), 1, aux_sym_number_token2, - ACTIONS(1267), 1, + ACTIONS(1275), 1, anon_sym_DQUOTE, - ACTIONS(1383), 1, + ACTIONS(1391), 1, anon_sym_SEMI, STATE(1091), 1, sym_ns_qualified_name, @@ -52246,10 +52252,10 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_in, STATE(2039), 1, sym_namespace, - ACTIONS(1253), 2, + ACTIONS(1261), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1257), 2, + ACTIONS(1265), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(1496), 9, @@ -52274,15 +52280,15 @@ static const uint16_t ts_small_parse_table[] = { sym_regex_constant, sym_indirect_func_call, [32175] = 5, - ACTIONS(642), 1, + ACTIONS(650), 1, anon_sym_LBRACK, - ACTIONS(650), 2, + ACTIONS(658), 2, sym_concatenating_space, sym__if_else_separator, - ACTIONS(1197), 2, + ACTIONS(1205), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1275), 7, + ACTIONS(1283), 7, anon_sym_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -52290,7 +52296,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_CARET_EQ, - ACTIONS(636), 27, + ACTIONS(644), 27, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -52319,27 +52325,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, [32225] = 20, - ACTIONS(1245), 1, + ACTIONS(1253), 1, sym_identifier, - ACTIONS(1247), 1, + ACTIONS(1255), 1, anon_sym_LPAREN, - ACTIONS(1249), 1, + ACTIONS(1257), 1, anon_sym_getline, - ACTIONS(1251), 1, + ACTIONS(1259), 1, anon_sym_SLASH, - ACTIONS(1255), 1, + ACTIONS(1263), 1, anon_sym_BANG, - ACTIONS(1259), 1, + ACTIONS(1267), 1, anon_sym_DOLLAR, - ACTIONS(1261), 1, + ACTIONS(1269), 1, anon_sym_AT, - ACTIONS(1263), 1, + ACTIONS(1271), 1, aux_sym_number_token1, - ACTIONS(1265), 1, + ACTIONS(1273), 1, aux_sym_number_token2, - ACTIONS(1267), 1, + ACTIONS(1275), 1, anon_sym_DQUOTE, - ACTIONS(1385), 1, + ACTIONS(1393), 1, anon_sym_RPAREN, STATE(1091), 1, sym_ns_qualified_name, @@ -52351,10 +52357,10 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_in, STATE(2039), 1, sym_namespace, - ACTIONS(1253), 2, + ACTIONS(1261), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1257), 2, + ACTIONS(1265), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(1496), 9, @@ -52379,27 +52385,27 @@ static const uint16_t ts_small_parse_table[] = { sym_regex_constant, sym_indirect_func_call, [32305] = 20, - ACTIONS(1245), 1, + ACTIONS(1253), 1, sym_identifier, - ACTIONS(1247), 1, + ACTIONS(1255), 1, anon_sym_LPAREN, - ACTIONS(1249), 1, + ACTIONS(1257), 1, anon_sym_getline, - ACTIONS(1251), 1, + ACTIONS(1259), 1, anon_sym_SLASH, - ACTIONS(1255), 1, + ACTIONS(1263), 1, anon_sym_BANG, - ACTIONS(1259), 1, + ACTIONS(1267), 1, anon_sym_DOLLAR, - ACTIONS(1261), 1, + ACTIONS(1269), 1, anon_sym_AT, - ACTIONS(1263), 1, + ACTIONS(1271), 1, aux_sym_number_token1, - ACTIONS(1265), 1, + ACTIONS(1273), 1, aux_sym_number_token2, - ACTIONS(1267), 1, + ACTIONS(1275), 1, anon_sym_DQUOTE, - ACTIONS(1387), 1, + ACTIONS(1395), 1, anon_sym_RPAREN, STATE(1091), 1, sym_ns_qualified_name, @@ -52411,10 +52417,10 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_in, STATE(2039), 1, sym_namespace, - ACTIONS(1253), 2, + ACTIONS(1261), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1257), 2, + ACTIONS(1265), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(1496), 9, @@ -52439,16 +52445,16 @@ static const uint16_t ts_small_parse_table[] = { sym_regex_constant, sym_indirect_func_call, [32385] = 6, - ACTIONS(650), 1, + ACTIONS(658), 1, sym_concatenating_space, - ACTIONS(684), 1, + ACTIONS(692), 1, anon_sym_LBRACK, - ACTIONS(1201), 1, + ACTIONS(1209), 1, anon_sym_LPAREN2, - ACTIONS(1221), 2, + ACTIONS(1229), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1353), 7, + ACTIONS(1361), 7, anon_sym_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -52456,7 +52462,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_CARET_EQ, - ACTIONS(636), 27, + ACTIONS(644), 27, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -52485,12 +52491,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, [32437] = 3, - ACTIONS(818), 1, + ACTIONS(826), 1, sym_regex_flags, - ACTIONS(820), 2, + ACTIONS(828), 2, sym_concatenating_space, sym__if_else_separator, - ACTIONS(816), 36, + ACTIONS(824), 36, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -52588,27 +52594,27 @@ static const uint16_t ts_small_parse_table[] = { sym_regex_constant, sym_indirect_func_call, [32563] = 20, - ACTIONS(1245), 1, + ACTIONS(1253), 1, sym_identifier, - ACTIONS(1247), 1, + ACTIONS(1255), 1, anon_sym_LPAREN, - ACTIONS(1249), 1, + ACTIONS(1257), 1, anon_sym_getline, - ACTIONS(1251), 1, + ACTIONS(1259), 1, anon_sym_SLASH, - ACTIONS(1255), 1, + ACTIONS(1263), 1, anon_sym_BANG, - ACTIONS(1259), 1, + ACTIONS(1267), 1, anon_sym_DOLLAR, - ACTIONS(1261), 1, + ACTIONS(1269), 1, anon_sym_AT, - ACTIONS(1263), 1, + ACTIONS(1271), 1, aux_sym_number_token1, - ACTIONS(1265), 1, + ACTIONS(1273), 1, aux_sym_number_token2, - ACTIONS(1267), 1, + ACTIONS(1275), 1, anon_sym_DQUOTE, - ACTIONS(1389), 1, + ACTIONS(1397), 1, anon_sym_RPAREN, STATE(1091), 1, sym_ns_qualified_name, @@ -52620,10 +52626,10 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_in, STATE(2039), 1, sym_namespace, - ACTIONS(1253), 2, + ACTIONS(1261), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1257), 2, + ACTIONS(1265), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(1496), 9, @@ -52648,27 +52654,27 @@ static const uint16_t ts_small_parse_table[] = { sym_regex_constant, sym_indirect_func_call, [32643] = 20, - ACTIONS(1245), 1, + ACTIONS(1253), 1, sym_identifier, - ACTIONS(1247), 1, + ACTIONS(1255), 1, anon_sym_LPAREN, - ACTIONS(1249), 1, + ACTIONS(1257), 1, anon_sym_getline, - ACTIONS(1251), 1, + ACTIONS(1259), 1, anon_sym_SLASH, - ACTIONS(1255), 1, + ACTIONS(1263), 1, anon_sym_BANG, - ACTIONS(1259), 1, + ACTIONS(1267), 1, anon_sym_DOLLAR, - ACTIONS(1261), 1, + ACTIONS(1269), 1, anon_sym_AT, - ACTIONS(1263), 1, + ACTIONS(1271), 1, aux_sym_number_token1, - ACTIONS(1265), 1, + ACTIONS(1273), 1, aux_sym_number_token2, - ACTIONS(1267), 1, + ACTIONS(1275), 1, anon_sym_DQUOTE, - ACTIONS(1391), 1, + ACTIONS(1399), 1, anon_sym_RPAREN, STATE(1091), 1, sym_ns_qualified_name, @@ -52680,10 +52686,10 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_in, STATE(2039), 1, sym_namespace, - ACTIONS(1253), 2, + ACTIONS(1261), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1257), 2, + ACTIONS(1265), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(1496), 9, @@ -52708,27 +52714,27 @@ static const uint16_t ts_small_parse_table[] = { sym_regex_constant, sym_indirect_func_call, [32723] = 20, - ACTIONS(1245), 1, + ACTIONS(1253), 1, sym_identifier, - ACTIONS(1247), 1, + ACTIONS(1255), 1, anon_sym_LPAREN, - ACTIONS(1249), 1, + ACTIONS(1257), 1, anon_sym_getline, - ACTIONS(1251), 1, + ACTIONS(1259), 1, anon_sym_SLASH, - ACTIONS(1255), 1, + ACTIONS(1263), 1, anon_sym_BANG, - ACTIONS(1259), 1, + ACTIONS(1267), 1, anon_sym_DOLLAR, - ACTIONS(1261), 1, + ACTIONS(1269), 1, anon_sym_AT, - ACTIONS(1263), 1, + ACTIONS(1271), 1, aux_sym_number_token1, - ACTIONS(1265), 1, + ACTIONS(1273), 1, aux_sym_number_token2, - ACTIONS(1267), 1, + ACTIONS(1275), 1, anon_sym_DQUOTE, - ACTIONS(1393), 1, + ACTIONS(1401), 1, anon_sym_RPAREN, STATE(1091), 1, sym_ns_qualified_name, @@ -52740,10 +52746,10 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_in, STATE(2039), 1, sym_namespace, - ACTIONS(1253), 2, + ACTIONS(1261), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1257), 2, + ACTIONS(1265), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(1496), 9, @@ -52768,16 +52774,16 @@ static const uint16_t ts_small_parse_table[] = { sym_regex_constant, sym_indirect_func_call, [32803] = 6, - ACTIONS(684), 1, + ACTIONS(692), 1, anon_sym_LBRACK, - ACTIONS(1201), 1, + ACTIONS(1209), 1, anon_sym_LPAREN2, - ACTIONS(1347), 1, + ACTIONS(1355), 1, sym_concatenating_space, - ACTIONS(1215), 2, + ACTIONS(1223), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1345), 7, + ACTIONS(1353), 7, anon_sym_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -52785,7 +52791,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_CARET_EQ, - ACTIONS(636), 27, + ACTIONS(644), 27, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -52814,27 +52820,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, [32855] = 20, - ACTIONS(1245), 1, + ACTIONS(1253), 1, sym_identifier, - ACTIONS(1247), 1, + ACTIONS(1255), 1, anon_sym_LPAREN, - ACTIONS(1249), 1, + ACTIONS(1257), 1, anon_sym_getline, - ACTIONS(1251), 1, + ACTIONS(1259), 1, anon_sym_SLASH, - ACTIONS(1255), 1, + ACTIONS(1263), 1, anon_sym_BANG, - ACTIONS(1259), 1, + ACTIONS(1267), 1, anon_sym_DOLLAR, - ACTIONS(1261), 1, + ACTIONS(1269), 1, anon_sym_AT, - ACTIONS(1263), 1, + ACTIONS(1271), 1, aux_sym_number_token1, - ACTIONS(1265), 1, + ACTIONS(1273), 1, aux_sym_number_token2, - ACTIONS(1267), 1, + ACTIONS(1275), 1, anon_sym_DQUOTE, - ACTIONS(1395), 1, + ACTIONS(1403), 1, anon_sym_RPAREN, STATE(1091), 1, sym_ns_qualified_name, @@ -52846,10 +52852,10 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_in, STATE(2039), 1, sym_namespace, - ACTIONS(1253), 2, + ACTIONS(1261), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1257), 2, + ACTIONS(1265), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(1496), 9, @@ -52874,27 +52880,27 @@ static const uint16_t ts_small_parse_table[] = { sym_regex_constant, sym_indirect_func_call, [32935] = 20, - ACTIONS(1245), 1, + ACTIONS(1253), 1, sym_identifier, - ACTIONS(1247), 1, + ACTIONS(1255), 1, anon_sym_LPAREN, - ACTIONS(1249), 1, + ACTIONS(1257), 1, anon_sym_getline, - ACTIONS(1251), 1, + ACTIONS(1259), 1, anon_sym_SLASH, - ACTIONS(1255), 1, + ACTIONS(1263), 1, anon_sym_BANG, - ACTIONS(1259), 1, + ACTIONS(1267), 1, anon_sym_DOLLAR, - ACTIONS(1261), 1, + ACTIONS(1269), 1, anon_sym_AT, - ACTIONS(1263), 1, + ACTIONS(1271), 1, aux_sym_number_token1, - ACTIONS(1265), 1, + ACTIONS(1273), 1, aux_sym_number_token2, - ACTIONS(1267), 1, + ACTIONS(1275), 1, anon_sym_DQUOTE, - ACTIONS(1397), 1, + ACTIONS(1405), 1, anon_sym_RPAREN, STATE(1091), 1, sym_ns_qualified_name, @@ -52906,10 +52912,10 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_in, STATE(2039), 1, sym_namespace, - ACTIONS(1253), 2, + ACTIONS(1261), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1257), 2, + ACTIONS(1265), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(1496), 9, @@ -52934,27 +52940,27 @@ static const uint16_t ts_small_parse_table[] = { sym_regex_constant, sym_indirect_func_call, [33015] = 20, - ACTIONS(1245), 1, + ACTIONS(1253), 1, sym_identifier, - ACTIONS(1247), 1, + ACTIONS(1255), 1, anon_sym_LPAREN, - ACTIONS(1249), 1, + ACTIONS(1257), 1, anon_sym_getline, - ACTIONS(1251), 1, + ACTIONS(1259), 1, anon_sym_SLASH, - ACTIONS(1255), 1, + ACTIONS(1263), 1, anon_sym_BANG, - ACTIONS(1259), 1, + ACTIONS(1267), 1, anon_sym_DOLLAR, - ACTIONS(1261), 1, + ACTIONS(1269), 1, anon_sym_AT, - ACTIONS(1263), 1, + ACTIONS(1271), 1, aux_sym_number_token1, - ACTIONS(1265), 1, + ACTIONS(1273), 1, aux_sym_number_token2, - ACTIONS(1267), 1, + ACTIONS(1275), 1, anon_sym_DQUOTE, - ACTIONS(1399), 1, + ACTIONS(1407), 1, anon_sym_RPAREN, STATE(1091), 1, sym_ns_qualified_name, @@ -52966,10 +52972,10 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_in, STATE(2039), 1, sym_namespace, - ACTIONS(1253), 2, + ACTIONS(1261), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1257), 2, + ACTIONS(1265), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(1496), 9, @@ -52994,27 +53000,27 @@ static const uint16_t ts_small_parse_table[] = { sym_regex_constant, sym_indirect_func_call, [33095] = 20, - ACTIONS(1245), 1, + ACTIONS(1253), 1, sym_identifier, - ACTIONS(1247), 1, + ACTIONS(1255), 1, anon_sym_LPAREN, - ACTIONS(1249), 1, + ACTIONS(1257), 1, anon_sym_getline, - ACTIONS(1251), 1, + ACTIONS(1259), 1, anon_sym_SLASH, - ACTIONS(1255), 1, + ACTIONS(1263), 1, anon_sym_BANG, - ACTIONS(1259), 1, + ACTIONS(1267), 1, anon_sym_DOLLAR, - ACTIONS(1261), 1, + ACTIONS(1269), 1, anon_sym_AT, - ACTIONS(1263), 1, + ACTIONS(1271), 1, aux_sym_number_token1, - ACTIONS(1265), 1, + ACTIONS(1273), 1, aux_sym_number_token2, - ACTIONS(1267), 1, + ACTIONS(1275), 1, anon_sym_DQUOTE, - ACTIONS(1401), 1, + ACTIONS(1409), 1, anon_sym_SEMI, STATE(1091), 1, sym_ns_qualified_name, @@ -53026,10 +53032,10 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_in, STATE(2039), 1, sym_namespace, - ACTIONS(1253), 2, + ACTIONS(1261), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1257), 2, + ACTIONS(1265), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(1496), 9, @@ -53054,27 +53060,27 @@ static const uint16_t ts_small_parse_table[] = { sym_regex_constant, sym_indirect_func_call, [33175] = 20, - ACTIONS(1247), 1, + ACTIONS(1255), 1, anon_sym_LPAREN, - ACTIONS(1249), 1, + ACTIONS(1257), 1, anon_sym_getline, - ACTIONS(1251), 1, + ACTIONS(1259), 1, anon_sym_SLASH, - ACTIONS(1255), 1, + ACTIONS(1263), 1, anon_sym_BANG, - ACTIONS(1259), 1, + ACTIONS(1267), 1, anon_sym_DOLLAR, - ACTIONS(1261), 1, + ACTIONS(1269), 1, anon_sym_AT, - ACTIONS(1263), 1, + ACTIONS(1271), 1, aux_sym_number_token1, - ACTIONS(1265), 1, + ACTIONS(1273), 1, aux_sym_number_token2, - ACTIONS(1267), 1, + ACTIONS(1275), 1, anon_sym_DQUOTE, - ACTIONS(1403), 1, + ACTIONS(1411), 1, sym_identifier, - ACTIONS(1405), 1, + ACTIONS(1413), 1, anon_sym_SEMI, STATE(1132), 1, sym_array_ref, @@ -53086,10 +53092,10 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_in, STATE(2039), 1, sym_namespace, - ACTIONS(1253), 2, + ACTIONS(1261), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1257), 2, + ACTIONS(1265), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(1496), 9, @@ -53114,27 +53120,27 @@ static const uint16_t ts_small_parse_table[] = { sym_regex_constant, sym_indirect_func_call, [33255] = 20, - ACTIONS(1245), 1, + ACTIONS(1253), 1, sym_identifier, - ACTIONS(1247), 1, + ACTIONS(1255), 1, anon_sym_LPAREN, - ACTIONS(1249), 1, + ACTIONS(1257), 1, anon_sym_getline, - ACTIONS(1251), 1, + ACTIONS(1259), 1, anon_sym_SLASH, - ACTIONS(1255), 1, + ACTIONS(1263), 1, anon_sym_BANG, - ACTIONS(1259), 1, + ACTIONS(1267), 1, anon_sym_DOLLAR, - ACTIONS(1261), 1, + ACTIONS(1269), 1, anon_sym_AT, - ACTIONS(1263), 1, + ACTIONS(1271), 1, aux_sym_number_token1, - ACTIONS(1265), 1, + ACTIONS(1273), 1, aux_sym_number_token2, - ACTIONS(1267), 1, + ACTIONS(1275), 1, anon_sym_DQUOTE, - ACTIONS(1407), 1, + ACTIONS(1415), 1, anon_sym_RPAREN, STATE(1091), 1, sym_ns_qualified_name, @@ -53146,10 +53152,10 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_in, STATE(2039), 1, sym_namespace, - ACTIONS(1253), 2, + ACTIONS(1261), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1257), 2, + ACTIONS(1265), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(1496), 9, @@ -53174,27 +53180,27 @@ static const uint16_t ts_small_parse_table[] = { sym_regex_constant, sym_indirect_func_call, [33335] = 20, - ACTIONS(1247), 1, + ACTIONS(1255), 1, anon_sym_LPAREN, - ACTIONS(1249), 1, + ACTIONS(1257), 1, anon_sym_getline, - ACTIONS(1251), 1, + ACTIONS(1259), 1, anon_sym_SLASH, - ACTIONS(1255), 1, + ACTIONS(1263), 1, anon_sym_BANG, - ACTIONS(1259), 1, + ACTIONS(1267), 1, anon_sym_DOLLAR, - ACTIONS(1261), 1, + ACTIONS(1269), 1, anon_sym_AT, - ACTIONS(1263), 1, + ACTIONS(1271), 1, aux_sym_number_token1, - ACTIONS(1265), 1, + ACTIONS(1273), 1, aux_sym_number_token2, - ACTIONS(1267), 1, + ACTIONS(1275), 1, anon_sym_DQUOTE, - ACTIONS(1409), 1, + ACTIONS(1417), 1, sym_identifier, - ACTIONS(1411), 1, + ACTIONS(1419), 1, anon_sym_SEMI, STATE(1132), 1, sym_array_ref, @@ -53206,10 +53212,10 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_in, STATE(2039), 1, sym_namespace, - ACTIONS(1253), 2, + ACTIONS(1261), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1257), 2, + ACTIONS(1265), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(1496), 9, @@ -53234,27 +53240,27 @@ static const uint16_t ts_small_parse_table[] = { sym_regex_constant, sym_indirect_func_call, [33415] = 20, - ACTIONS(1245), 1, + ACTIONS(1253), 1, sym_identifier, - ACTIONS(1247), 1, + ACTIONS(1255), 1, anon_sym_LPAREN, - ACTIONS(1249), 1, + ACTIONS(1257), 1, anon_sym_getline, - ACTIONS(1251), 1, + ACTIONS(1259), 1, anon_sym_SLASH, - ACTIONS(1255), 1, + ACTIONS(1263), 1, anon_sym_BANG, - ACTIONS(1259), 1, + ACTIONS(1267), 1, anon_sym_DOLLAR, - ACTIONS(1261), 1, + ACTIONS(1269), 1, anon_sym_AT, - ACTIONS(1263), 1, + ACTIONS(1271), 1, aux_sym_number_token1, - ACTIONS(1265), 1, + ACTIONS(1273), 1, aux_sym_number_token2, - ACTIONS(1267), 1, + ACTIONS(1275), 1, anon_sym_DQUOTE, - ACTIONS(1413), 1, + ACTIONS(1421), 1, anon_sym_RPAREN, STATE(1091), 1, sym_ns_qualified_name, @@ -53266,10 +53272,10 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_in, STATE(2039), 1, sym_namespace, - ACTIONS(1253), 2, + ACTIONS(1261), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1257), 2, + ACTIONS(1265), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(1496), 9, @@ -53294,27 +53300,27 @@ static const uint16_t ts_small_parse_table[] = { sym_regex_constant, sym_indirect_func_call, [33495] = 20, - ACTIONS(1245), 1, + ACTIONS(1253), 1, sym_identifier, - ACTIONS(1247), 1, + ACTIONS(1255), 1, anon_sym_LPAREN, - ACTIONS(1249), 1, + ACTIONS(1257), 1, anon_sym_getline, - ACTIONS(1251), 1, + ACTIONS(1259), 1, anon_sym_SLASH, - ACTIONS(1255), 1, + ACTIONS(1263), 1, anon_sym_BANG, - ACTIONS(1259), 1, + ACTIONS(1267), 1, anon_sym_DOLLAR, - ACTIONS(1261), 1, + ACTIONS(1269), 1, anon_sym_AT, - ACTIONS(1263), 1, + ACTIONS(1271), 1, aux_sym_number_token1, - ACTIONS(1265), 1, + ACTIONS(1273), 1, aux_sym_number_token2, - ACTIONS(1267), 1, + ACTIONS(1275), 1, anon_sym_DQUOTE, - ACTIONS(1415), 1, + ACTIONS(1423), 1, anon_sym_RPAREN, STATE(1091), 1, sym_ns_qualified_name, @@ -53326,10 +53332,10 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_in, STATE(2039), 1, sym_namespace, - ACTIONS(1253), 2, + ACTIONS(1261), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1257), 2, + ACTIONS(1265), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(1496), 9, @@ -53414,15 +53420,15 @@ static const uint16_t ts_small_parse_table[] = { sym_regex_constant, sym_indirect_func_call, [33655] = 4, - ACTIONS(1423), 1, + ACTIONS(1431), 1, sym__if_else_separator, - ACTIONS(1419), 2, + ACTIONS(1427), 2, anon_sym_GT, anon_sym_GT_GT, - ACTIONS(1421), 2, + ACTIONS(1429), 2, anon_sym_PIPE, anon_sym_PIPE_AMP, - ACTIONS(1417), 34, + ACTIONS(1425), 34, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, @@ -53458,27 +53464,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [33703] = 20, - ACTIONS(1245), 1, + ACTIONS(1253), 1, sym_identifier, - ACTIONS(1247), 1, + ACTIONS(1255), 1, anon_sym_LPAREN, - ACTIONS(1249), 1, + ACTIONS(1257), 1, anon_sym_getline, - ACTIONS(1251), 1, + ACTIONS(1259), 1, anon_sym_SLASH, - ACTIONS(1255), 1, + ACTIONS(1263), 1, anon_sym_BANG, - ACTIONS(1259), 1, + ACTIONS(1267), 1, anon_sym_DOLLAR, - ACTIONS(1261), 1, + ACTIONS(1269), 1, anon_sym_AT, - ACTIONS(1263), 1, + ACTIONS(1271), 1, aux_sym_number_token1, - ACTIONS(1265), 1, + ACTIONS(1273), 1, aux_sym_number_token2, - ACTIONS(1267), 1, + ACTIONS(1275), 1, anon_sym_DQUOTE, - ACTIONS(1425), 1, + ACTIONS(1433), 1, anon_sym_RPAREN, STATE(1091), 1, sym_ns_qualified_name, @@ -53490,10 +53496,10 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_in, STATE(2039), 1, sym_namespace, - ACTIONS(1253), 2, + ACTIONS(1261), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1257), 2, + ACTIONS(1265), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(1496), 9, @@ -53518,27 +53524,27 @@ static const uint16_t ts_small_parse_table[] = { sym_regex_constant, sym_indirect_func_call, [33783] = 20, - ACTIONS(1245), 1, + ACTIONS(1253), 1, sym_identifier, - ACTIONS(1247), 1, + ACTIONS(1255), 1, anon_sym_LPAREN, - ACTIONS(1249), 1, + ACTIONS(1257), 1, anon_sym_getline, - ACTIONS(1251), 1, + ACTIONS(1259), 1, anon_sym_SLASH, - ACTIONS(1255), 1, + ACTIONS(1263), 1, anon_sym_BANG, - ACTIONS(1259), 1, + ACTIONS(1267), 1, anon_sym_DOLLAR, - ACTIONS(1261), 1, + ACTIONS(1269), 1, anon_sym_AT, - ACTIONS(1263), 1, + ACTIONS(1271), 1, aux_sym_number_token1, - ACTIONS(1265), 1, + ACTIONS(1273), 1, aux_sym_number_token2, - ACTIONS(1267), 1, + ACTIONS(1275), 1, anon_sym_DQUOTE, - ACTIONS(1427), 1, + ACTIONS(1435), 1, anon_sym_SEMI, STATE(1091), 1, sym_ns_qualified_name, @@ -53550,10 +53556,10 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_in, STATE(2039), 1, sym_namespace, - ACTIONS(1253), 2, + ACTIONS(1261), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1257), 2, + ACTIONS(1265), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(1496), 9, @@ -53578,27 +53584,27 @@ static const uint16_t ts_small_parse_table[] = { sym_regex_constant, sym_indirect_func_call, [33863] = 20, - ACTIONS(1245), 1, + ACTIONS(1253), 1, sym_identifier, - ACTIONS(1247), 1, + ACTIONS(1255), 1, anon_sym_LPAREN, - ACTIONS(1249), 1, + ACTIONS(1257), 1, anon_sym_getline, - ACTIONS(1251), 1, + ACTIONS(1259), 1, anon_sym_SLASH, - ACTIONS(1255), 1, + ACTIONS(1263), 1, anon_sym_BANG, - ACTIONS(1259), 1, + ACTIONS(1267), 1, anon_sym_DOLLAR, - ACTIONS(1261), 1, + ACTIONS(1269), 1, anon_sym_AT, - ACTIONS(1263), 1, + ACTIONS(1271), 1, aux_sym_number_token1, - ACTIONS(1265), 1, + ACTIONS(1273), 1, aux_sym_number_token2, - ACTIONS(1267), 1, + ACTIONS(1275), 1, anon_sym_DQUOTE, - ACTIONS(1429), 1, + ACTIONS(1437), 1, anon_sym_RPAREN, STATE(1091), 1, sym_ns_qualified_name, @@ -53610,10 +53616,10 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_in, STATE(2039), 1, sym_namespace, - ACTIONS(1253), 2, + ACTIONS(1261), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1257), 2, + ACTIONS(1265), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(1496), 9, @@ -53638,27 +53644,27 @@ static const uint16_t ts_small_parse_table[] = { sym_regex_constant, sym_indirect_func_call, [33943] = 20, - ACTIONS(1247), 1, + ACTIONS(1255), 1, anon_sym_LPAREN, - ACTIONS(1249), 1, + ACTIONS(1257), 1, anon_sym_getline, - ACTIONS(1251), 1, + ACTIONS(1259), 1, anon_sym_SLASH, - ACTIONS(1255), 1, + ACTIONS(1263), 1, anon_sym_BANG, - ACTIONS(1259), 1, + ACTIONS(1267), 1, anon_sym_DOLLAR, - ACTIONS(1261), 1, + ACTIONS(1269), 1, anon_sym_AT, - ACTIONS(1263), 1, + ACTIONS(1271), 1, aux_sym_number_token1, - ACTIONS(1265), 1, + ACTIONS(1273), 1, aux_sym_number_token2, - ACTIONS(1267), 1, + ACTIONS(1275), 1, anon_sym_DQUOTE, - ACTIONS(1431), 1, + ACTIONS(1439), 1, sym_identifier, - ACTIONS(1433), 1, + ACTIONS(1441), 1, anon_sym_SEMI, STATE(1132), 1, sym_array_ref, @@ -53670,10 +53676,10 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_in, STATE(2039), 1, sym_namespace, - ACTIONS(1253), 2, + ACTIONS(1261), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1257), 2, + ACTIONS(1265), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(1496), 9, @@ -53698,15 +53704,15 @@ static const uint16_t ts_small_parse_table[] = { sym_regex_constant, sym_indirect_func_call, [34023] = 5, - ACTIONS(644), 1, + ACTIONS(652), 1, anon_sym_COLON_COLON, - ACTIONS(672), 1, + ACTIONS(680), 1, sym_concatenating_space, - ACTIONS(684), 1, + ACTIONS(692), 1, anon_sym_LBRACK, - ACTIONS(1435), 1, + ACTIONS(1443), 1, anon_sym_LT, - ACTIONS(670), 35, + ACTIONS(678), 35, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -53743,25 +53749,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT_EQ, anon_sym_CARET_EQ, [34073] = 20, - ACTIONS(1437), 1, + ACTIONS(1445), 1, sym_identifier, - ACTIONS(1440), 1, + ACTIONS(1448), 1, anon_sym_LPAREN, - ACTIONS(1443), 1, + ACTIONS(1451), 1, anon_sym_getline, - ACTIONS(1446), 1, + ACTIONS(1454), 1, anon_sym_SLASH, - ACTIONS(1452), 1, + ACTIONS(1460), 1, anon_sym_BANG, - ACTIONS(1458), 1, + ACTIONS(1466), 1, anon_sym_DOLLAR, - ACTIONS(1461), 1, + ACTIONS(1469), 1, anon_sym_AT, - ACTIONS(1464), 1, + ACTIONS(1472), 1, aux_sym_number_token1, - ACTIONS(1467), 1, + ACTIONS(1475), 1, aux_sym_number_token2, - ACTIONS(1470), 1, + ACTIONS(1478), 1, anon_sym_DQUOTE, STATE(726), 1, aux_sym_exp_list_repeat1, @@ -53775,10 +53781,10 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_in, STATE(2039), 1, sym_namespace, - ACTIONS(1449), 2, + ACTIONS(1457), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1455), 2, + ACTIONS(1463), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(1496), 9, @@ -53803,27 +53809,27 @@ static const uint16_t ts_small_parse_table[] = { sym_regex_constant, sym_indirect_func_call, [34153] = 20, - ACTIONS(1245), 1, + ACTIONS(1253), 1, sym_identifier, - ACTIONS(1247), 1, + ACTIONS(1255), 1, anon_sym_LPAREN, - ACTIONS(1249), 1, + ACTIONS(1257), 1, anon_sym_getline, - ACTIONS(1251), 1, + ACTIONS(1259), 1, anon_sym_SLASH, - ACTIONS(1255), 1, + ACTIONS(1263), 1, anon_sym_BANG, - ACTIONS(1259), 1, + ACTIONS(1267), 1, anon_sym_DOLLAR, - ACTIONS(1261), 1, + ACTIONS(1269), 1, anon_sym_AT, - ACTIONS(1263), 1, + ACTIONS(1271), 1, aux_sym_number_token1, - ACTIONS(1265), 1, + ACTIONS(1273), 1, aux_sym_number_token2, - ACTIONS(1267), 1, + ACTIONS(1275), 1, anon_sym_DQUOTE, - ACTIONS(1473), 1, + ACTIONS(1481), 1, anon_sym_SEMI, STATE(1091), 1, sym_ns_qualified_name, @@ -53835,10 +53841,10 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_in, STATE(2039), 1, sym_namespace, - ACTIONS(1253), 2, + ACTIONS(1261), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1257), 2, + ACTIONS(1265), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(1496), 9, @@ -53863,27 +53869,27 @@ static const uint16_t ts_small_parse_table[] = { sym_regex_constant, sym_indirect_func_call, [34233] = 20, - ACTIONS(1247), 1, + ACTIONS(1255), 1, anon_sym_LPAREN, - ACTIONS(1249), 1, + ACTIONS(1257), 1, anon_sym_getline, - ACTIONS(1251), 1, + ACTIONS(1259), 1, anon_sym_SLASH, - ACTIONS(1255), 1, + ACTIONS(1263), 1, anon_sym_BANG, - ACTIONS(1259), 1, + ACTIONS(1267), 1, anon_sym_DOLLAR, - ACTIONS(1261), 1, + ACTIONS(1269), 1, anon_sym_AT, - ACTIONS(1263), 1, + ACTIONS(1271), 1, aux_sym_number_token1, - ACTIONS(1265), 1, + ACTIONS(1273), 1, aux_sym_number_token2, - ACTIONS(1267), 1, + ACTIONS(1275), 1, anon_sym_DQUOTE, - ACTIONS(1475), 1, + ACTIONS(1483), 1, sym_identifier, - ACTIONS(1477), 1, + ACTIONS(1485), 1, anon_sym_SEMI, STATE(1132), 1, sym_array_ref, @@ -53895,10 +53901,10 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_in, STATE(2039), 1, sym_namespace, - ACTIONS(1253), 2, + ACTIONS(1261), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1257), 2, + ACTIONS(1265), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(1496), 9, @@ -53923,14 +53929,14 @@ static const uint16_t ts_small_parse_table[] = { sym_regex_constant, sym_indirect_func_call, [34313] = 4, - ACTIONS(642), 1, + ACTIONS(650), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1345), 1, anon_sym_LT, - ACTIONS(672), 2, + ACTIONS(680), 2, sym_concatenating_space, sym__if_else_separator, - ACTIONS(670), 35, + ACTIONS(678), 35, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -53967,27 +53973,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT_EQ, anon_sym_CARET_EQ, [34361] = 20, - ACTIONS(1245), 1, + ACTIONS(1253), 1, sym_identifier, - ACTIONS(1247), 1, + ACTIONS(1255), 1, anon_sym_LPAREN, - ACTIONS(1249), 1, + ACTIONS(1257), 1, anon_sym_getline, - ACTIONS(1251), 1, + ACTIONS(1259), 1, anon_sym_SLASH, - ACTIONS(1255), 1, + ACTIONS(1263), 1, anon_sym_BANG, - ACTIONS(1259), 1, + ACTIONS(1267), 1, anon_sym_DOLLAR, - ACTIONS(1261), 1, + ACTIONS(1269), 1, anon_sym_AT, - ACTIONS(1263), 1, + ACTIONS(1271), 1, aux_sym_number_token1, - ACTIONS(1265), 1, + ACTIONS(1273), 1, aux_sym_number_token2, - ACTIONS(1267), 1, + ACTIONS(1275), 1, anon_sym_DQUOTE, - ACTIONS(1479), 1, + ACTIONS(1487), 1, anon_sym_SEMI, STATE(1091), 1, sym_ns_qualified_name, @@ -53999,10 +54005,10 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_in, STATE(2039), 1, sym_namespace, - ACTIONS(1253), 2, + ACTIONS(1261), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1257), 2, + ACTIONS(1265), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(1496), 9, @@ -54027,27 +54033,27 @@ static const uint16_t ts_small_parse_table[] = { sym_regex_constant, sym_indirect_func_call, [34441] = 20, - ACTIONS(1245), 1, + ACTIONS(1253), 1, sym_identifier, - ACTIONS(1247), 1, + ACTIONS(1255), 1, anon_sym_LPAREN, - ACTIONS(1249), 1, + ACTIONS(1257), 1, anon_sym_getline, - ACTIONS(1251), 1, + ACTIONS(1259), 1, anon_sym_SLASH, - ACTIONS(1255), 1, + ACTIONS(1263), 1, anon_sym_BANG, - ACTIONS(1259), 1, + ACTIONS(1267), 1, anon_sym_DOLLAR, - ACTIONS(1261), 1, + ACTIONS(1269), 1, anon_sym_AT, - ACTIONS(1263), 1, + ACTIONS(1271), 1, aux_sym_number_token1, - ACTIONS(1265), 1, + ACTIONS(1273), 1, aux_sym_number_token2, - ACTIONS(1267), 1, + ACTIONS(1275), 1, anon_sym_DQUOTE, - ACTIONS(1481), 1, + ACTIONS(1489), 1, anon_sym_RPAREN, STATE(1091), 1, sym_ns_qualified_name, @@ -54059,10 +54065,10 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_in, STATE(2039), 1, sym_namespace, - ACTIONS(1253), 2, + ACTIONS(1261), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1257), 2, + ACTIONS(1265), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(1496), 9, @@ -54087,27 +54093,27 @@ static const uint16_t ts_small_parse_table[] = { sym_regex_constant, sym_indirect_func_call, [34521] = 20, - ACTIONS(1245), 1, + ACTIONS(1253), 1, sym_identifier, - ACTIONS(1247), 1, + ACTIONS(1255), 1, anon_sym_LPAREN, - ACTIONS(1249), 1, + ACTIONS(1257), 1, anon_sym_getline, - ACTIONS(1251), 1, + ACTIONS(1259), 1, anon_sym_SLASH, - ACTIONS(1255), 1, + ACTIONS(1263), 1, anon_sym_BANG, - ACTIONS(1259), 1, + ACTIONS(1267), 1, anon_sym_DOLLAR, - ACTIONS(1261), 1, + ACTIONS(1269), 1, anon_sym_AT, - ACTIONS(1263), 1, + ACTIONS(1271), 1, aux_sym_number_token1, - ACTIONS(1265), 1, + ACTIONS(1273), 1, aux_sym_number_token2, - ACTIONS(1267), 1, + ACTIONS(1275), 1, anon_sym_DQUOTE, - ACTIONS(1483), 1, + ACTIONS(1491), 1, anon_sym_RPAREN, STATE(1091), 1, sym_ns_qualified_name, @@ -54119,10 +54125,10 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_in, STATE(2039), 1, sym_namespace, - ACTIONS(1253), 2, + ACTIONS(1261), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1257), 2, + ACTIONS(1265), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(1496), 9, @@ -54147,27 +54153,27 @@ static const uint16_t ts_small_parse_table[] = { sym_regex_constant, sym_indirect_func_call, [34601] = 20, - ACTIONS(1245), 1, + ACTIONS(1253), 1, sym_identifier, - ACTIONS(1247), 1, + ACTIONS(1255), 1, anon_sym_LPAREN, - ACTIONS(1249), 1, + ACTIONS(1257), 1, anon_sym_getline, - ACTIONS(1251), 1, + ACTIONS(1259), 1, anon_sym_SLASH, - ACTIONS(1255), 1, + ACTIONS(1263), 1, anon_sym_BANG, - ACTIONS(1259), 1, + ACTIONS(1267), 1, anon_sym_DOLLAR, - ACTIONS(1261), 1, + ACTIONS(1269), 1, anon_sym_AT, - ACTIONS(1263), 1, + ACTIONS(1271), 1, aux_sym_number_token1, - ACTIONS(1265), 1, + ACTIONS(1273), 1, aux_sym_number_token2, - ACTIONS(1267), 1, + ACTIONS(1275), 1, anon_sym_DQUOTE, - ACTIONS(1485), 1, + ACTIONS(1493), 1, anon_sym_SEMI, STATE(1091), 1, sym_ns_qualified_name, @@ -54179,10 +54185,10 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_in, STATE(2039), 1, sym_namespace, - ACTIONS(1253), 2, + ACTIONS(1261), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1257), 2, + ACTIONS(1265), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(1496), 9, @@ -54207,27 +54213,27 @@ static const uint16_t ts_small_parse_table[] = { sym_regex_constant, sym_indirect_func_call, [34681] = 20, - ACTIONS(1245), 1, + ACTIONS(1253), 1, sym_identifier, - ACTIONS(1247), 1, + ACTIONS(1255), 1, anon_sym_LPAREN, - ACTIONS(1249), 1, + ACTIONS(1257), 1, anon_sym_getline, - ACTIONS(1251), 1, + ACTIONS(1259), 1, anon_sym_SLASH, - ACTIONS(1255), 1, + ACTIONS(1263), 1, anon_sym_BANG, - ACTIONS(1259), 1, + ACTIONS(1267), 1, anon_sym_DOLLAR, - ACTIONS(1261), 1, + ACTIONS(1269), 1, anon_sym_AT, - ACTIONS(1263), 1, + ACTIONS(1271), 1, aux_sym_number_token1, - ACTIONS(1265), 1, + ACTIONS(1273), 1, aux_sym_number_token2, - ACTIONS(1267), 1, + ACTIONS(1275), 1, anon_sym_DQUOTE, - ACTIONS(1487), 1, + ACTIONS(1495), 1, anon_sym_RPAREN, STATE(1091), 1, sym_ns_qualified_name, @@ -54239,10 +54245,10 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_in, STATE(2039), 1, sym_namespace, - ACTIONS(1253), 2, + ACTIONS(1261), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1257), 2, + ACTIONS(1265), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(1496), 9, @@ -54267,27 +54273,27 @@ static const uint16_t ts_small_parse_table[] = { sym_regex_constant, sym_indirect_func_call, [34761] = 20, - ACTIONS(1245), 1, + ACTIONS(1253), 1, sym_identifier, - ACTIONS(1247), 1, + ACTIONS(1255), 1, anon_sym_LPAREN, - ACTIONS(1249), 1, + ACTIONS(1257), 1, anon_sym_getline, - ACTIONS(1251), 1, + ACTIONS(1259), 1, anon_sym_SLASH, - ACTIONS(1255), 1, + ACTIONS(1263), 1, anon_sym_BANG, - ACTIONS(1259), 1, + ACTIONS(1267), 1, anon_sym_DOLLAR, - ACTIONS(1261), 1, + ACTIONS(1269), 1, anon_sym_AT, - ACTIONS(1263), 1, + ACTIONS(1271), 1, aux_sym_number_token1, - ACTIONS(1265), 1, + ACTIONS(1273), 1, aux_sym_number_token2, - ACTIONS(1267), 1, + ACTIONS(1275), 1, anon_sym_DQUOTE, - ACTIONS(1489), 1, + ACTIONS(1497), 1, anon_sym_RPAREN, STATE(1091), 1, sym_ns_qualified_name, @@ -54299,10 +54305,10 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_in, STATE(2039), 1, sym_namespace, - ACTIONS(1253), 2, + ACTIONS(1261), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1257), 2, + ACTIONS(1265), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(1496), 9, @@ -54327,27 +54333,27 @@ static const uint16_t ts_small_parse_table[] = { sym_regex_constant, sym_indirect_func_call, [34841] = 20, - ACTIONS(1245), 1, + ACTIONS(1253), 1, sym_identifier, - ACTIONS(1247), 1, + ACTIONS(1255), 1, anon_sym_LPAREN, - ACTIONS(1249), 1, + ACTIONS(1257), 1, anon_sym_getline, - ACTIONS(1251), 1, + ACTIONS(1259), 1, anon_sym_SLASH, - ACTIONS(1255), 1, + ACTIONS(1263), 1, anon_sym_BANG, - ACTIONS(1259), 1, + ACTIONS(1267), 1, anon_sym_DOLLAR, - ACTIONS(1261), 1, + ACTIONS(1269), 1, anon_sym_AT, - ACTIONS(1263), 1, + ACTIONS(1271), 1, aux_sym_number_token1, - ACTIONS(1265), 1, + ACTIONS(1273), 1, aux_sym_number_token2, - ACTIONS(1267), 1, + ACTIONS(1275), 1, anon_sym_DQUOTE, - ACTIONS(1491), 1, + ACTIONS(1499), 1, anon_sym_RPAREN, STATE(1091), 1, sym_ns_qualified_name, @@ -54359,10 +54365,10 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_in, STATE(2039), 1, sym_namespace, - ACTIONS(1253), 2, + ACTIONS(1261), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1257), 2, + ACTIONS(1265), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(1496), 9, @@ -54387,27 +54393,27 @@ static const uint16_t ts_small_parse_table[] = { sym_regex_constant, sym_indirect_func_call, [34921] = 20, - ACTIONS(1245), 1, + ACTIONS(1253), 1, sym_identifier, - ACTIONS(1247), 1, + ACTIONS(1255), 1, anon_sym_LPAREN, - ACTIONS(1249), 1, + ACTIONS(1257), 1, anon_sym_getline, - ACTIONS(1251), 1, + ACTIONS(1259), 1, anon_sym_SLASH, - ACTIONS(1255), 1, + ACTIONS(1263), 1, anon_sym_BANG, - ACTIONS(1259), 1, + ACTIONS(1267), 1, anon_sym_DOLLAR, - ACTIONS(1261), 1, + ACTIONS(1269), 1, anon_sym_AT, - ACTIONS(1263), 1, + ACTIONS(1271), 1, aux_sym_number_token1, - ACTIONS(1265), 1, + ACTIONS(1273), 1, aux_sym_number_token2, - ACTIONS(1267), 1, + ACTIONS(1275), 1, anon_sym_DQUOTE, - ACTIONS(1493), 1, + ACTIONS(1501), 1, anon_sym_RPAREN, STATE(1091), 1, sym_ns_qualified_name, @@ -54419,10 +54425,10 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_in, STATE(2039), 1, sym_namespace, - ACTIONS(1253), 2, + ACTIONS(1261), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1257), 2, + ACTIONS(1265), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(1496), 9, @@ -54447,27 +54453,27 @@ static const uint16_t ts_small_parse_table[] = { sym_regex_constant, sym_indirect_func_call, [35001] = 20, - ACTIONS(1245), 1, + ACTIONS(1253), 1, sym_identifier, - ACTIONS(1247), 1, + ACTIONS(1255), 1, anon_sym_LPAREN, - ACTIONS(1249), 1, + ACTIONS(1257), 1, anon_sym_getline, - ACTIONS(1251), 1, + ACTIONS(1259), 1, anon_sym_SLASH, - ACTIONS(1255), 1, + ACTIONS(1263), 1, anon_sym_BANG, - ACTIONS(1259), 1, + ACTIONS(1267), 1, anon_sym_DOLLAR, - ACTIONS(1261), 1, + ACTIONS(1269), 1, anon_sym_AT, - ACTIONS(1263), 1, + ACTIONS(1271), 1, aux_sym_number_token1, - ACTIONS(1265), 1, + ACTIONS(1273), 1, aux_sym_number_token2, - ACTIONS(1267), 1, + ACTIONS(1275), 1, anon_sym_DQUOTE, - ACTIONS(1495), 1, + ACTIONS(1503), 1, anon_sym_RPAREN, STATE(1091), 1, sym_ns_qualified_name, @@ -54479,10 +54485,10 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_in, STATE(2039), 1, sym_namespace, - ACTIONS(1253), 2, + ACTIONS(1261), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1257), 2, + ACTIONS(1265), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(1496), 9, @@ -54507,27 +54513,27 @@ static const uint16_t ts_small_parse_table[] = { sym_regex_constant, sym_indirect_func_call, [35081] = 20, - ACTIONS(1245), 1, + ACTIONS(1253), 1, sym_identifier, - ACTIONS(1247), 1, + ACTIONS(1255), 1, anon_sym_LPAREN, - ACTIONS(1249), 1, + ACTIONS(1257), 1, anon_sym_getline, - ACTIONS(1251), 1, + ACTIONS(1259), 1, anon_sym_SLASH, - ACTIONS(1255), 1, + ACTIONS(1263), 1, anon_sym_BANG, - ACTIONS(1259), 1, + ACTIONS(1267), 1, anon_sym_DOLLAR, - ACTIONS(1261), 1, + ACTIONS(1269), 1, anon_sym_AT, - ACTIONS(1263), 1, + ACTIONS(1271), 1, aux_sym_number_token1, - ACTIONS(1265), 1, + ACTIONS(1273), 1, aux_sym_number_token2, - ACTIONS(1267), 1, + ACTIONS(1275), 1, anon_sym_DQUOTE, - ACTIONS(1497), 1, + ACTIONS(1505), 1, anon_sym_RPAREN, STATE(1091), 1, sym_ns_qualified_name, @@ -54539,10 +54545,10 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_in, STATE(2039), 1, sym_namespace, - ACTIONS(1253), 2, + ACTIONS(1261), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1257), 2, + ACTIONS(1265), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(1496), 9, @@ -54567,27 +54573,27 @@ static const uint16_t ts_small_parse_table[] = { sym_regex_constant, sym_indirect_func_call, [35161] = 20, - ACTIONS(1245), 1, + ACTIONS(1253), 1, sym_identifier, - ACTIONS(1247), 1, + ACTIONS(1255), 1, anon_sym_LPAREN, - ACTIONS(1249), 1, + ACTIONS(1257), 1, anon_sym_getline, - ACTIONS(1251), 1, + ACTIONS(1259), 1, anon_sym_SLASH, - ACTIONS(1255), 1, + ACTIONS(1263), 1, anon_sym_BANG, - ACTIONS(1259), 1, + ACTIONS(1267), 1, anon_sym_DOLLAR, - ACTIONS(1261), 1, + ACTIONS(1269), 1, anon_sym_AT, - ACTIONS(1263), 1, + ACTIONS(1271), 1, aux_sym_number_token1, - ACTIONS(1265), 1, + ACTIONS(1273), 1, aux_sym_number_token2, - ACTIONS(1267), 1, + ACTIONS(1275), 1, anon_sym_DQUOTE, - ACTIONS(1499), 1, + ACTIONS(1507), 1, anon_sym_SEMI, STATE(1091), 1, sym_ns_qualified_name, @@ -54599,10 +54605,10 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_in, STATE(2039), 1, sym_namespace, - ACTIONS(1253), 2, + ACTIONS(1261), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1257), 2, + ACTIONS(1265), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(1496), 9, @@ -54627,33 +54633,33 @@ static const uint16_t ts_small_parse_table[] = { sym_regex_constant, sym_indirect_func_call, [35241] = 10, - ACTIONS(634), 1, + ACTIONS(642), 1, anon_sym_COLON, - ACTIONS(644), 1, + ACTIONS(652), 1, anon_sym_COLON_COLON, - ACTIONS(708), 1, + ACTIONS(716), 1, anon_sym_EQ, - ACTIONS(888), 1, + ACTIONS(896), 1, anon_sym_LBRACK, - ACTIONS(1367), 1, + ACTIONS(1375), 1, anon_sym_LPAREN2, - ACTIONS(890), 2, + ACTIONS(898), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(646), 5, + ACTIONS(654), 5, sym_concatenating_space, anon_sym_COMMA, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, - ACTIONS(967), 6, + ACTIONS(975), 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(636), 9, + ACTIONS(644), 9, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -54663,7 +54669,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(650), 12, + ACTIONS(658), 12, anon_sym_in, anon_sym_PIPE_AMP, anon_sym_QMARK, @@ -54677,27 +54683,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, [35301] = 20, - ACTIONS(1245), 1, + ACTIONS(1253), 1, sym_identifier, - ACTIONS(1247), 1, + ACTIONS(1255), 1, anon_sym_LPAREN, - ACTIONS(1249), 1, + ACTIONS(1257), 1, anon_sym_getline, - ACTIONS(1251), 1, + ACTIONS(1259), 1, anon_sym_SLASH, - ACTIONS(1255), 1, + ACTIONS(1263), 1, anon_sym_BANG, - ACTIONS(1259), 1, + ACTIONS(1267), 1, anon_sym_DOLLAR, - ACTIONS(1261), 1, + ACTIONS(1269), 1, anon_sym_AT, - ACTIONS(1263), 1, + ACTIONS(1271), 1, aux_sym_number_token1, - ACTIONS(1265), 1, + ACTIONS(1273), 1, aux_sym_number_token2, - ACTIONS(1267), 1, + ACTIONS(1275), 1, anon_sym_DQUOTE, - ACTIONS(1501), 1, + ACTIONS(1509), 1, anon_sym_SEMI, STATE(1091), 1, sym_ns_qualified_name, @@ -54709,10 +54715,10 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_in, STATE(2039), 1, sym_namespace, - ACTIONS(1253), 2, + ACTIONS(1261), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1257), 2, + ACTIONS(1265), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(1496), 9, @@ -54737,27 +54743,27 @@ static const uint16_t ts_small_parse_table[] = { sym_regex_constant, sym_indirect_func_call, [35381] = 20, - ACTIONS(1247), 1, + ACTIONS(1255), 1, anon_sym_LPAREN, - ACTIONS(1249), 1, + ACTIONS(1257), 1, anon_sym_getline, - ACTIONS(1251), 1, + ACTIONS(1259), 1, anon_sym_SLASH, - ACTIONS(1255), 1, + ACTIONS(1263), 1, anon_sym_BANG, - ACTIONS(1259), 1, + ACTIONS(1267), 1, anon_sym_DOLLAR, - ACTIONS(1261), 1, + ACTIONS(1269), 1, anon_sym_AT, - ACTIONS(1263), 1, + ACTIONS(1271), 1, aux_sym_number_token1, - ACTIONS(1265), 1, + ACTIONS(1273), 1, aux_sym_number_token2, - ACTIONS(1267), 1, + ACTIONS(1275), 1, anon_sym_DQUOTE, - ACTIONS(1503), 1, + ACTIONS(1511), 1, sym_identifier, - ACTIONS(1505), 1, + ACTIONS(1513), 1, anon_sym_SEMI, STATE(1132), 1, sym_array_ref, @@ -54769,10 +54775,10 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_in, STATE(2039), 1, sym_namespace, - ACTIONS(1253), 2, + ACTIONS(1261), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1257), 2, + ACTIONS(1265), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(1496), 9, @@ -54797,25 +54803,25 @@ static const uint16_t ts_small_parse_table[] = { sym_regex_constant, sym_indirect_func_call, [35461] = 20, - ACTIONS(1245), 1, + ACTIONS(1253), 1, sym_identifier, - ACTIONS(1247), 1, + ACTIONS(1255), 1, anon_sym_LPAREN, - ACTIONS(1249), 1, + ACTIONS(1257), 1, anon_sym_getline, - ACTIONS(1251), 1, + ACTIONS(1259), 1, anon_sym_SLASH, - ACTIONS(1255), 1, + ACTIONS(1263), 1, anon_sym_BANG, - ACTIONS(1259), 1, + ACTIONS(1267), 1, anon_sym_DOLLAR, - ACTIONS(1261), 1, + ACTIONS(1269), 1, anon_sym_AT, - ACTIONS(1263), 1, + ACTIONS(1271), 1, aux_sym_number_token1, - ACTIONS(1265), 1, + ACTIONS(1273), 1, aux_sym_number_token2, - ACTIONS(1267), 1, + ACTIONS(1275), 1, anon_sym_DQUOTE, STATE(726), 1, aux_sym_exp_list_repeat1, @@ -54829,10 +54835,10 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_in, STATE(2039), 1, sym_namespace, - ACTIONS(1253), 2, + ACTIONS(1261), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1257), 2, + ACTIONS(1265), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(1496), 9, @@ -54857,27 +54863,27 @@ static const uint16_t ts_small_parse_table[] = { sym_regex_constant, sym_indirect_func_call, [35541] = 20, - ACTIONS(1245), 1, + ACTIONS(1253), 1, sym_identifier, - ACTIONS(1247), 1, + ACTIONS(1255), 1, anon_sym_LPAREN, - ACTIONS(1249), 1, + ACTIONS(1257), 1, anon_sym_getline, - ACTIONS(1251), 1, + ACTIONS(1259), 1, anon_sym_SLASH, - ACTIONS(1255), 1, + ACTIONS(1263), 1, anon_sym_BANG, - ACTIONS(1259), 1, + ACTIONS(1267), 1, anon_sym_DOLLAR, - ACTIONS(1261), 1, + ACTIONS(1269), 1, anon_sym_AT, - ACTIONS(1263), 1, + ACTIONS(1271), 1, aux_sym_number_token1, - ACTIONS(1265), 1, + ACTIONS(1273), 1, aux_sym_number_token2, - ACTIONS(1267), 1, + ACTIONS(1275), 1, anon_sym_DQUOTE, - ACTIONS(1507), 1, + ACTIONS(1515), 1, anon_sym_RPAREN, STATE(1091), 1, sym_ns_qualified_name, @@ -54889,10 +54895,10 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_in, STATE(2039), 1, sym_namespace, - ACTIONS(1253), 2, + ACTIONS(1261), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1257), 2, + ACTIONS(1265), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(1496), 9, @@ -54917,13 +54923,13 @@ static const uint16_t ts_small_parse_table[] = { sym_regex_constant, sym_indirect_func_call, [35621] = 4, - ACTIONS(644), 1, + ACTIONS(652), 1, anon_sym_COLON_COLON, - ACTIONS(981), 1, + ACTIONS(989), 1, anon_sym_LBRACK, - ACTIONS(1511), 1, + ACTIONS(1519), 1, sym__if_else_separator, - ACTIONS(1509), 36, + ACTIONS(1517), 36, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, @@ -55021,27 +55027,27 @@ static const uint16_t ts_small_parse_table[] = { sym_regex_constant, sym_indirect_func_call, [35749] = 9, - ACTIONS(644), 1, + ACTIONS(652), 1, anon_sym_COLON_COLON, - ACTIONS(708), 1, + ACTIONS(716), 1, anon_sym_EQ, - ACTIONS(888), 1, + ACTIONS(896), 1, anon_sym_LBRACK, - ACTIONS(1367), 1, + ACTIONS(1375), 1, anon_sym_LPAREN2, - ACTIONS(1513), 1, + ACTIONS(1521), 1, sym_concatenating_space, - ACTIONS(890), 2, + ACTIONS(898), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(967), 6, + ACTIONS(975), 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(636), 10, + ACTIONS(644), 10, anon_sym_COLON, anon_sym_LT, anon_sym_GT, @@ -55052,7 +55058,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(650), 16, + ACTIONS(658), 16, anon_sym_COMMA, anon_sym_SEMI, anon_sym_RPAREN, @@ -55080,15 +55086,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, ACTIONS(484), 1, anon_sym_DQUOTE, - ACTIONS(538), 1, + ACTIONS(544), 1, anon_sym_LPAREN, - ACTIONS(540), 1, + ACTIONS(546), 1, anon_sym_SLASH, - ACTIONS(542), 1, + ACTIONS(548), 1, anon_sym_BANG, - ACTIONS(546), 1, + ACTIONS(552), 1, anon_sym_DOLLAR, - ACTIONS(548), 1, + ACTIONS(554), 1, anon_sym_AT, STATE(575), 1, sym_ns_qualified_name, @@ -55105,7 +55111,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(71), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(544), 2, + ACTIONS(550), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(1314), 9, @@ -55130,27 +55136,27 @@ static const uint16_t ts_small_parse_table[] = { sym_regex_constant, sym_indirect_func_call, [35887] = 20, - ACTIONS(1247), 1, + ACTIONS(1255), 1, anon_sym_LPAREN, - ACTIONS(1249), 1, + ACTIONS(1257), 1, anon_sym_getline, - ACTIONS(1251), 1, + ACTIONS(1259), 1, anon_sym_SLASH, - ACTIONS(1255), 1, + ACTIONS(1263), 1, anon_sym_BANG, - ACTIONS(1259), 1, + ACTIONS(1267), 1, anon_sym_DOLLAR, - ACTIONS(1261), 1, + ACTIONS(1269), 1, anon_sym_AT, - ACTIONS(1263), 1, + ACTIONS(1271), 1, aux_sym_number_token1, - ACTIONS(1265), 1, + ACTIONS(1273), 1, aux_sym_number_token2, - ACTIONS(1267), 1, + ACTIONS(1275), 1, anon_sym_DQUOTE, - ACTIONS(1515), 1, + ACTIONS(1523), 1, sym_identifier, - ACTIONS(1517), 1, + ACTIONS(1525), 1, anon_sym_SEMI, STATE(1132), 1, sym_array_ref, @@ -55162,10 +55168,10 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_in, STATE(2039), 1, sym_namespace, - ACTIONS(1253), 2, + ACTIONS(1261), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1257), 2, + ACTIONS(1265), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(1496), 9, @@ -55250,27 +55256,27 @@ static const uint16_t ts_small_parse_table[] = { sym_regex_constant, sym_indirect_func_call, [36047] = 20, - ACTIONS(1245), 1, + ACTIONS(1253), 1, sym_identifier, - ACTIONS(1247), 1, + ACTIONS(1255), 1, anon_sym_LPAREN, - ACTIONS(1249), 1, + ACTIONS(1257), 1, anon_sym_getline, - ACTIONS(1251), 1, + ACTIONS(1259), 1, anon_sym_SLASH, - ACTIONS(1255), 1, + ACTIONS(1263), 1, anon_sym_BANG, - ACTIONS(1259), 1, + ACTIONS(1267), 1, anon_sym_DOLLAR, - ACTIONS(1261), 1, + ACTIONS(1269), 1, anon_sym_AT, - ACTIONS(1263), 1, + ACTIONS(1271), 1, aux_sym_number_token1, - ACTIONS(1265), 1, + ACTIONS(1273), 1, aux_sym_number_token2, - ACTIONS(1267), 1, + ACTIONS(1275), 1, anon_sym_DQUOTE, - ACTIONS(1519), 1, + ACTIONS(1527), 1, anon_sym_SEMI, STATE(1091), 1, sym_ns_qualified_name, @@ -55282,10 +55288,10 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_in, STATE(2039), 1, sym_namespace, - ACTIONS(1253), 2, + ACTIONS(1261), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1257), 2, + ACTIONS(1265), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(1496), 9, @@ -55310,27 +55316,27 @@ static const uint16_t ts_small_parse_table[] = { sym_regex_constant, sym_indirect_func_call, [36127] = 20, - ACTIONS(1245), 1, + ACTIONS(1253), 1, sym_identifier, - ACTIONS(1247), 1, + ACTIONS(1255), 1, anon_sym_LPAREN, - ACTIONS(1249), 1, + ACTIONS(1257), 1, anon_sym_getline, - ACTIONS(1251), 1, + ACTIONS(1259), 1, anon_sym_SLASH, - ACTIONS(1255), 1, + ACTIONS(1263), 1, anon_sym_BANG, - ACTIONS(1259), 1, + ACTIONS(1267), 1, anon_sym_DOLLAR, - ACTIONS(1261), 1, + ACTIONS(1269), 1, anon_sym_AT, - ACTIONS(1263), 1, + ACTIONS(1271), 1, aux_sym_number_token1, - ACTIONS(1265), 1, + ACTIONS(1273), 1, aux_sym_number_token2, - ACTIONS(1267), 1, + ACTIONS(1275), 1, anon_sym_DQUOTE, - ACTIONS(1521), 1, + ACTIONS(1529), 1, anon_sym_SEMI, STATE(1091), 1, sym_ns_qualified_name, @@ -55342,10 +55348,10 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_in, STATE(2039), 1, sym_namespace, - ACTIONS(1253), 2, + ACTIONS(1261), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1257), 2, + ACTIONS(1265), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(1496), 9, @@ -55430,25 +55436,25 @@ static const uint16_t ts_small_parse_table[] = { sym_regex_constant, sym_indirect_func_call, [36287] = 19, - ACTIONS(1245), 1, + ACTIONS(1253), 1, sym_identifier, - ACTIONS(1247), 1, + ACTIONS(1255), 1, anon_sym_LPAREN, - ACTIONS(1249), 1, + ACTIONS(1257), 1, anon_sym_getline, - ACTIONS(1251), 1, + ACTIONS(1259), 1, anon_sym_SLASH, - ACTIONS(1255), 1, + ACTIONS(1263), 1, anon_sym_BANG, - ACTIONS(1259), 1, + ACTIONS(1267), 1, anon_sym_DOLLAR, - ACTIONS(1261), 1, + ACTIONS(1269), 1, anon_sym_AT, - ACTIONS(1263), 1, + ACTIONS(1271), 1, aux_sym_number_token1, - ACTIONS(1265), 1, + ACTIONS(1273), 1, aux_sym_number_token2, - ACTIONS(1267), 1, + ACTIONS(1275), 1, anon_sym_DQUOTE, STATE(1091), 1, sym_ns_qualified_name, @@ -55460,10 +55466,10 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_in, STATE(2039), 1, sym_namespace, - ACTIONS(1253), 2, + ACTIONS(1261), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1257), 2, + ACTIONS(1265), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(1496), 9, @@ -55500,13 +55506,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, ACTIONS(33), 1, anon_sym_DQUOTE, - ACTIONS(1523), 1, + ACTIONS(1531), 1, sym_identifier, - ACTIONS(1525), 1, + ACTIONS(1533), 1, anon_sym_getline, - ACTIONS(1527), 1, + ACTIONS(1535), 1, anon_sym_SLASH, - ACTIONS(1531), 1, + ACTIONS(1539), 1, anon_sym_AT, STATE(431), 1, sym_ns_qualified_name, @@ -55521,7 +55527,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(19), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1529), 2, + ACTIONS(1537), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(537), 19, @@ -55557,13 +55563,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, ACTIONS(336), 1, anon_sym_DQUOTE, - ACTIONS(1249), 1, + ACTIONS(1257), 1, anon_sym_getline, - ACTIONS(1251), 1, + ACTIONS(1259), 1, anon_sym_SLASH, - ACTIONS(1261), 1, + ACTIONS(1269), 1, anon_sym_AT, - ACTIONS(1533), 1, + ACTIONS(1541), 1, sym_identifier, STATE(174), 1, sym_array_ref, @@ -55578,7 +55584,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(322), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1257), 2, + ACTIONS(1265), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(359), 9, @@ -55615,13 +55621,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, ACTIONS(374), 1, anon_sym_DOLLAR, - ACTIONS(1535), 1, + ACTIONS(1543), 1, sym_identifier, - ACTIONS(1537), 1, + ACTIONS(1545), 1, anon_sym_getline, - ACTIONS(1539), 1, + ACTIONS(1547), 1, anon_sym_SLASH, - ACTIONS(1543), 1, + ACTIONS(1551), 1, anon_sym_AT, STATE(703), 1, sym_ns_qualified_name, @@ -55636,7 +55642,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(368), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1541), 2, + ACTIONS(1549), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(1358), 19, @@ -55730,13 +55736,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, ACTIONS(336), 1, anon_sym_DQUOTE, - ACTIONS(1545), 1, + ACTIONS(1553), 1, sym_identifier, - ACTIONS(1547), 1, + ACTIONS(1555), 1, anon_sym_getline, - ACTIONS(1549), 1, + ACTIONS(1557), 1, anon_sym_SLASH, - ACTIONS(1553), 1, + ACTIONS(1561), 1, anon_sym_AT, STATE(189), 1, sym_ns_qualified_name, @@ -55751,7 +55757,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(322), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1551), 2, + ACTIONS(1559), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(371), 19, @@ -55787,13 +55793,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, ACTIONS(336), 1, anon_sym_DQUOTE, - ACTIONS(1545), 1, + ACTIONS(1553), 1, sym_identifier, - ACTIONS(1547), 1, + ACTIONS(1555), 1, anon_sym_getline, - ACTIONS(1549), 1, + ACTIONS(1557), 1, anon_sym_SLASH, - ACTIONS(1553), 1, + ACTIONS(1561), 1, anon_sym_AT, STATE(189), 1, sym_ns_qualified_name, @@ -55808,7 +55814,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(322), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1551), 2, + ACTIONS(1559), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(381), 19, @@ -55844,13 +55850,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, ACTIONS(336), 1, anon_sym_DQUOTE, - ACTIONS(1545), 1, + ACTIONS(1553), 1, sym_identifier, - ACTIONS(1547), 1, + ACTIONS(1555), 1, anon_sym_getline, - ACTIONS(1549), 1, + ACTIONS(1557), 1, anon_sym_SLASH, - ACTIONS(1553), 1, + ACTIONS(1561), 1, anon_sym_AT, STATE(189), 1, sym_ns_qualified_name, @@ -55865,7 +55871,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(322), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1551), 2, + ACTIONS(1559), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(383), 19, @@ -55901,13 +55907,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, ACTIONS(336), 1, anon_sym_DQUOTE, - ACTIONS(1545), 1, + ACTIONS(1553), 1, sym_identifier, - ACTIONS(1547), 1, + ACTIONS(1555), 1, anon_sym_getline, - ACTIONS(1549), 1, + ACTIONS(1557), 1, anon_sym_SLASH, - ACTIONS(1553), 1, + ACTIONS(1561), 1, anon_sym_AT, STATE(189), 1, sym_ns_qualified_name, @@ -55922,7 +55928,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(322), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1551), 2, + ACTIONS(1559), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(386), 19, @@ -55958,13 +55964,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, ACTIONS(336), 1, anon_sym_DQUOTE, - ACTIONS(1545), 1, + ACTIONS(1553), 1, sym_identifier, - ACTIONS(1547), 1, + ACTIONS(1555), 1, anon_sym_getline, - ACTIONS(1549), 1, + ACTIONS(1557), 1, anon_sym_SLASH, - ACTIONS(1553), 1, + ACTIONS(1561), 1, anon_sym_AT, STATE(189), 1, sym_ns_qualified_name, @@ -55979,7 +55985,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(322), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1551), 2, + ACTIONS(1559), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(378), 19, @@ -56015,13 +56021,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, ACTIONS(336), 1, anon_sym_DQUOTE, - ACTIONS(1545), 1, + ACTIONS(1553), 1, sym_identifier, - ACTIONS(1547), 1, + ACTIONS(1555), 1, anon_sym_getline, - ACTIONS(1549), 1, + ACTIONS(1557), 1, anon_sym_SLASH, - ACTIONS(1553), 1, + ACTIONS(1561), 1, anon_sym_AT, STATE(189), 1, sym_ns_qualified_name, @@ -56036,7 +56042,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(322), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1551), 2, + ACTIONS(1559), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(374), 19, @@ -56072,13 +56078,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, ACTIONS(336), 1, anon_sym_DQUOTE, - ACTIONS(1545), 1, + ACTIONS(1553), 1, sym_identifier, - ACTIONS(1547), 1, + ACTIONS(1555), 1, anon_sym_getline, - ACTIONS(1549), 1, + ACTIONS(1557), 1, anon_sym_SLASH, - ACTIONS(1553), 1, + ACTIONS(1561), 1, anon_sym_AT, STATE(189), 1, sym_ns_qualified_name, @@ -56093,7 +56099,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(322), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1551), 2, + ACTIONS(1559), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(373), 19, @@ -56129,13 +56135,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, ACTIONS(336), 1, anon_sym_DQUOTE, - ACTIONS(1545), 1, + ACTIONS(1553), 1, sym_identifier, - ACTIONS(1547), 1, + ACTIONS(1555), 1, anon_sym_getline, - ACTIONS(1549), 1, + ACTIONS(1557), 1, anon_sym_SLASH, - ACTIONS(1553), 1, + ACTIONS(1561), 1, anon_sym_AT, STATE(189), 1, sym_ns_qualified_name, @@ -56150,7 +56156,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(322), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1551), 2, + ACTIONS(1559), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(368), 19, @@ -56186,13 +56192,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, ACTIONS(484), 1, anon_sym_DQUOTE, - ACTIONS(1555), 1, + ACTIONS(1563), 1, sym_identifier, - ACTIONS(1557), 1, + ACTIONS(1565), 1, anon_sym_getline, - ACTIONS(1559), 1, + ACTIONS(1567), 1, anon_sym_SLASH, - ACTIONS(1563), 1, + ACTIONS(1571), 1, anon_sym_AT, STATE(678), 1, sym_ns_qualified_name, @@ -56207,7 +56213,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(472), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1561), 2, + ACTIONS(1569), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(1410), 19, @@ -56301,13 +56307,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, ACTIONS(33), 1, anon_sym_DQUOTE, - ACTIONS(1523), 1, + ACTIONS(1531), 1, sym_identifier, - ACTIONS(1525), 1, + ACTIONS(1533), 1, anon_sym_getline, - ACTIONS(1527), 1, + ACTIONS(1535), 1, anon_sym_SLASH, - ACTIONS(1531), 1, + ACTIONS(1539), 1, anon_sym_AT, STATE(431), 1, sym_ns_qualified_name, @@ -56322,7 +56328,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(19), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1529), 2, + ACTIONS(1537), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(547), 19, @@ -56358,13 +56364,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, ACTIONS(169), 1, anon_sym_DQUOTE, - ACTIONS(1565), 1, + ACTIONS(1573), 1, sym_identifier, - ACTIONS(1567), 1, + ACTIONS(1575), 1, anon_sym_getline, - ACTIONS(1569), 1, + ACTIONS(1577), 1, anon_sym_SLASH, - ACTIONS(1573), 1, + ACTIONS(1581), 1, anon_sym_AT, STATE(219), 1, sym_ns_qualified_name, @@ -56379,7 +56385,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(155), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1571), 2, + ACTIONS(1579), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(436), 19, @@ -56405,23 +56411,23 @@ static const uint16_t ts_small_parse_table[] = { [37570] = 18, ACTIONS(328), 1, anon_sym_DOLLAR, - ACTIONS(1575), 1, + ACTIONS(1583), 1, sym_identifier, - ACTIONS(1577), 1, + ACTIONS(1585), 1, anon_sym_LPAREN, - ACTIONS(1579), 1, + ACTIONS(1587), 1, anon_sym_getline, - ACTIONS(1581), 1, + ACTIONS(1589), 1, anon_sym_SLASH, - ACTIONS(1585), 1, + ACTIONS(1593), 1, anon_sym_BANG, - ACTIONS(1589), 1, + ACTIONS(1597), 1, anon_sym_AT, - ACTIONS(1591), 1, + ACTIONS(1599), 1, aux_sym_number_token1, - ACTIONS(1593), 1, + ACTIONS(1601), 1, aux_sym_number_token2, - ACTIONS(1595), 1, + ACTIONS(1603), 1, anon_sym_DQUOTE, STATE(158), 1, sym_ns_qualified_name, @@ -56433,10 +56439,10 @@ static const uint16_t ts_small_parse_table[] = { sym_field_ref, STATE(1958), 1, sym_namespace, - ACTIONS(1583), 2, + ACTIONS(1591), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1587), 2, + ACTIONS(1595), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(257), 19, @@ -56462,23 +56468,23 @@ static const uint16_t ts_small_parse_table[] = { [37645] = 18, ACTIONS(374), 1, anon_sym_DOLLAR, - ACTIONS(1597), 1, + ACTIONS(1605), 1, sym_identifier, - ACTIONS(1599), 1, + ACTIONS(1607), 1, anon_sym_LPAREN, - ACTIONS(1601), 1, + ACTIONS(1609), 1, anon_sym_getline, - ACTIONS(1603), 1, + ACTIONS(1611), 1, anon_sym_SLASH, - ACTIONS(1607), 1, + ACTIONS(1615), 1, anon_sym_BANG, - ACTIONS(1611), 1, + ACTIONS(1619), 1, anon_sym_AT, - ACTIONS(1613), 1, + ACTIONS(1621), 1, aux_sym_number_token1, - ACTIONS(1615), 1, + ACTIONS(1623), 1, aux_sym_number_token2, - ACTIONS(1617), 1, + ACTIONS(1625), 1, anon_sym_DQUOTE, STATE(166), 1, sym_ns_qualified_name, @@ -56490,10 +56496,10 @@ static const uint16_t ts_small_parse_table[] = { sym_field_ref, STATE(1881), 1, sym_namespace, - ACTIONS(1605), 2, + ACTIONS(1613), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1609), 2, + ACTIONS(1617), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(1109), 19, @@ -56519,23 +56525,23 @@ static const uint16_t ts_small_parse_table[] = { [37720] = 18, ACTIONS(25), 1, anon_sym_DOLLAR, - ACTIONS(1619), 1, + ACTIONS(1627), 1, sym_identifier, - ACTIONS(1621), 1, + ACTIONS(1629), 1, anon_sym_LPAREN, - ACTIONS(1623), 1, + ACTIONS(1631), 1, anon_sym_getline, - ACTIONS(1625), 1, + ACTIONS(1633), 1, anon_sym_SLASH, - ACTIONS(1629), 1, + ACTIONS(1637), 1, anon_sym_BANG, - ACTIONS(1633), 1, + ACTIONS(1641), 1, anon_sym_AT, - ACTIONS(1635), 1, + ACTIONS(1643), 1, aux_sym_number_token1, - ACTIONS(1637), 1, + ACTIONS(1645), 1, aux_sym_number_token2, - ACTIONS(1639), 1, + ACTIONS(1647), 1, anon_sym_DQUOTE, STATE(283), 1, sym_ns_qualified_name, @@ -56547,10 +56553,10 @@ static const uint16_t ts_small_parse_table[] = { sym_field_ref, STATE(2039), 1, sym_namespace, - ACTIONS(1627), 2, + ACTIONS(1635), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1631), 2, + ACTIONS(1639), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(344), 19, @@ -56576,23 +56582,23 @@ static const uint16_t ts_small_parse_table[] = { [37795] = 18, ACTIONS(374), 1, anon_sym_DOLLAR, - ACTIONS(1597), 1, + ACTIONS(1605), 1, sym_identifier, - ACTIONS(1599), 1, + ACTIONS(1607), 1, anon_sym_LPAREN, - ACTIONS(1601), 1, + ACTIONS(1609), 1, anon_sym_getline, - ACTIONS(1603), 1, + ACTIONS(1611), 1, anon_sym_SLASH, - ACTIONS(1607), 1, + ACTIONS(1615), 1, anon_sym_BANG, - ACTIONS(1611), 1, + ACTIONS(1619), 1, anon_sym_AT, - ACTIONS(1613), 1, + ACTIONS(1621), 1, aux_sym_number_token1, - ACTIONS(1615), 1, + ACTIONS(1623), 1, aux_sym_number_token2, - ACTIONS(1617), 1, + ACTIONS(1625), 1, anon_sym_DQUOTE, STATE(166), 1, sym_ns_qualified_name, @@ -56604,10 +56610,10 @@ static const uint16_t ts_small_parse_table[] = { sym_field_ref, STATE(1881), 1, sym_namespace, - ACTIONS(1605), 2, + ACTIONS(1613), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1609), 2, + ACTIONS(1617), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(1108), 19, @@ -56633,23 +56639,23 @@ static const uint16_t ts_small_parse_table[] = { [37870] = 18, ACTIONS(161), 1, anon_sym_DOLLAR, - ACTIONS(1597), 1, + ACTIONS(1605), 1, sym_identifier, - ACTIONS(1613), 1, + ACTIONS(1621), 1, aux_sym_number_token1, - ACTIONS(1615), 1, + ACTIONS(1623), 1, aux_sym_number_token2, - ACTIONS(1617), 1, + ACTIONS(1625), 1, anon_sym_DQUOTE, - ACTIONS(1641), 1, + ACTIONS(1649), 1, anon_sym_LPAREN, - ACTIONS(1643), 1, + ACTIONS(1651), 1, anon_sym_getline, - ACTIONS(1645), 1, + ACTIONS(1653), 1, anon_sym_SLASH, - ACTIONS(1649), 1, + ACTIONS(1657), 1, anon_sym_BANG, - ACTIONS(1653), 1, + ACTIONS(1661), 1, anon_sym_AT, STATE(166), 1, sym_ns_qualified_name, @@ -56661,10 +56667,10 @@ static const uint16_t ts_small_parse_table[] = { sym_field_ref, STATE(1881), 1, sym_namespace, - ACTIONS(1647), 2, + ACTIONS(1655), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1651), 2, + ACTIONS(1659), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(276), 19, @@ -56758,13 +56764,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, ACTIONS(336), 1, anon_sym_DQUOTE, - ACTIONS(1545), 1, + ACTIONS(1553), 1, sym_identifier, - ACTIONS(1547), 1, + ACTIONS(1555), 1, anon_sym_getline, - ACTIONS(1549), 1, + ACTIONS(1557), 1, anon_sym_SLASH, - ACTIONS(1553), 1, + ACTIONS(1561), 1, anon_sym_AT, STATE(189), 1, sym_ns_qualified_name, @@ -56779,7 +56785,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(322), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1551), 2, + ACTIONS(1559), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(372), 19, @@ -56805,23 +56811,23 @@ static const uint16_t ts_small_parse_table[] = { [38097] = 18, ACTIONS(374), 1, anon_sym_DOLLAR, - ACTIONS(1597), 1, + ACTIONS(1605), 1, sym_identifier, - ACTIONS(1599), 1, + ACTIONS(1607), 1, anon_sym_LPAREN, - ACTIONS(1601), 1, + ACTIONS(1609), 1, anon_sym_getline, - ACTIONS(1603), 1, + ACTIONS(1611), 1, anon_sym_SLASH, - ACTIONS(1607), 1, + ACTIONS(1615), 1, anon_sym_BANG, - ACTIONS(1611), 1, + ACTIONS(1619), 1, anon_sym_AT, - ACTIONS(1613), 1, + ACTIONS(1621), 1, aux_sym_number_token1, - ACTIONS(1615), 1, + ACTIONS(1623), 1, aux_sym_number_token2, - ACTIONS(1617), 1, + ACTIONS(1625), 1, anon_sym_DQUOTE, STATE(166), 1, sym_ns_qualified_name, @@ -56833,10 +56839,10 @@ static const uint16_t ts_small_parse_table[] = { sym_field_ref, STATE(1881), 1, sym_namespace, - ACTIONS(1605), 2, + ACTIONS(1613), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1609), 2, + ACTIONS(1617), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(1110), 19, @@ -56862,23 +56868,23 @@ static const uint16_t ts_small_parse_table[] = { [38172] = 18, ACTIONS(374), 1, anon_sym_DOLLAR, - ACTIONS(1597), 1, + ACTIONS(1605), 1, sym_identifier, - ACTIONS(1599), 1, + ACTIONS(1607), 1, anon_sym_LPAREN, - ACTIONS(1601), 1, + ACTIONS(1609), 1, anon_sym_getline, - ACTIONS(1603), 1, + ACTIONS(1611), 1, anon_sym_SLASH, - ACTIONS(1607), 1, + ACTIONS(1615), 1, anon_sym_BANG, - ACTIONS(1611), 1, + ACTIONS(1619), 1, anon_sym_AT, - ACTIONS(1613), 1, + ACTIONS(1621), 1, aux_sym_number_token1, - ACTIONS(1615), 1, + ACTIONS(1623), 1, aux_sym_number_token2, - ACTIONS(1617), 1, + ACTIONS(1625), 1, anon_sym_DQUOTE, STATE(166), 1, sym_ns_qualified_name, @@ -56890,10 +56896,10 @@ static const uint16_t ts_small_parse_table[] = { sym_field_ref, STATE(1881), 1, sym_namespace, - ACTIONS(1605), 2, + ACTIONS(1613), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1609), 2, + ACTIONS(1617), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(1111), 19, @@ -56917,25 +56923,25 @@ static const uint16_t ts_small_parse_table[] = { sym_func_call, sym_indirect_func_call, [38247] = 18, - ACTIONS(1247), 1, - anon_sym_LPAREN, ACTIONS(1255), 1, + anon_sym_LPAREN, + ACTIONS(1263), 1, anon_sym_BANG, - ACTIONS(1259), 1, + ACTIONS(1267), 1, anon_sym_DOLLAR, - ACTIONS(1263), 1, + ACTIONS(1271), 1, aux_sym_number_token1, - ACTIONS(1265), 1, + ACTIONS(1273), 1, aux_sym_number_token2, - ACTIONS(1267), 1, + ACTIONS(1275), 1, anon_sym_DQUOTE, - ACTIONS(1655), 1, + ACTIONS(1663), 1, sym_identifier, - ACTIONS(1657), 1, + ACTIONS(1665), 1, anon_sym_getline, - ACTIONS(1659), 1, + ACTIONS(1667), 1, anon_sym_SLASH, - ACTIONS(1663), 1, + ACTIONS(1671), 1, anon_sym_AT, STATE(1032), 1, sym_ns_qualified_name, @@ -56947,10 +56953,10 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_in, STATE(2039), 1, sym_namespace, - ACTIONS(1253), 2, + ACTIONS(1261), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1661), 2, + ACTIONS(1669), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(1490), 19, @@ -56986,13 +56992,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, ACTIONS(336), 1, anon_sym_DQUOTE, - ACTIONS(1545), 1, + ACTIONS(1553), 1, sym_identifier, - ACTIONS(1547), 1, + ACTIONS(1555), 1, anon_sym_getline, - ACTIONS(1549), 1, + ACTIONS(1557), 1, anon_sym_SLASH, - ACTIONS(1553), 1, + ACTIONS(1561), 1, anon_sym_AT, STATE(189), 1, sym_ns_qualified_name, @@ -57007,7 +57013,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(322), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1551), 2, + ACTIONS(1559), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(363), 19, @@ -57033,23 +57039,23 @@ static const uint16_t ts_small_parse_table[] = { [38397] = 18, ACTIONS(374), 1, anon_sym_DOLLAR, - ACTIONS(1597), 1, + ACTIONS(1605), 1, sym_identifier, - ACTIONS(1599), 1, + ACTIONS(1607), 1, anon_sym_LPAREN, - ACTIONS(1601), 1, + ACTIONS(1609), 1, anon_sym_getline, - ACTIONS(1603), 1, + ACTIONS(1611), 1, anon_sym_SLASH, - ACTIONS(1607), 1, + ACTIONS(1615), 1, anon_sym_BANG, - ACTIONS(1611), 1, + ACTIONS(1619), 1, anon_sym_AT, - ACTIONS(1613), 1, + ACTIONS(1621), 1, aux_sym_number_token1, - ACTIONS(1615), 1, + ACTIONS(1623), 1, aux_sym_number_token2, - ACTIONS(1617), 1, + ACTIONS(1625), 1, anon_sym_DQUOTE, STATE(166), 1, sym_ns_qualified_name, @@ -57061,10 +57067,10 @@ static const uint16_t ts_small_parse_table[] = { sym_field_ref, STATE(1881), 1, sym_namespace, - ACTIONS(1605), 2, + ACTIONS(1613), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1609), 2, + ACTIONS(1617), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(1164), 19, @@ -57090,23 +57096,23 @@ static const uint16_t ts_small_parse_table[] = { [38472] = 18, ACTIONS(374), 1, anon_sym_DOLLAR, - ACTIONS(1597), 1, + ACTIONS(1605), 1, sym_identifier, - ACTIONS(1599), 1, + ACTIONS(1607), 1, anon_sym_LPAREN, - ACTIONS(1601), 1, + ACTIONS(1609), 1, anon_sym_getline, - ACTIONS(1603), 1, + ACTIONS(1611), 1, anon_sym_SLASH, - ACTIONS(1607), 1, + ACTIONS(1615), 1, anon_sym_BANG, - ACTIONS(1611), 1, + ACTIONS(1619), 1, anon_sym_AT, - ACTIONS(1613), 1, + ACTIONS(1621), 1, aux_sym_number_token1, - ACTIONS(1615), 1, + ACTIONS(1623), 1, aux_sym_number_token2, - ACTIONS(1617), 1, + ACTIONS(1625), 1, anon_sym_DQUOTE, STATE(166), 1, sym_ns_qualified_name, @@ -57118,10 +57124,10 @@ static const uint16_t ts_small_parse_table[] = { sym_field_ref, STATE(1881), 1, sym_namespace, - ACTIONS(1605), 2, + ACTIONS(1613), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1609), 2, + ACTIONS(1617), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(1113), 19, @@ -57147,23 +57153,23 @@ static const uint16_t ts_small_parse_table[] = { [38547] = 18, ACTIONS(374), 1, anon_sym_DOLLAR, - ACTIONS(1597), 1, + ACTIONS(1605), 1, sym_identifier, - ACTIONS(1599), 1, + ACTIONS(1607), 1, anon_sym_LPAREN, - ACTIONS(1601), 1, + ACTIONS(1609), 1, anon_sym_getline, - ACTIONS(1603), 1, + ACTIONS(1611), 1, anon_sym_SLASH, - ACTIONS(1607), 1, + ACTIONS(1615), 1, anon_sym_BANG, - ACTIONS(1611), 1, + ACTIONS(1619), 1, anon_sym_AT, - ACTIONS(1613), 1, + ACTIONS(1621), 1, aux_sym_number_token1, - ACTIONS(1615), 1, + ACTIONS(1623), 1, aux_sym_number_token2, - ACTIONS(1617), 1, + ACTIONS(1625), 1, anon_sym_DQUOTE, STATE(166), 1, sym_ns_qualified_name, @@ -57175,10 +57181,10 @@ static const uint16_t ts_small_parse_table[] = { sym_field_ref, STATE(1881), 1, sym_namespace, - ACTIONS(1605), 2, + ACTIONS(1613), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1609), 2, + ACTIONS(1617), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(1102), 19, @@ -57204,23 +57210,23 @@ static const uint16_t ts_small_parse_table[] = { [38622] = 18, ACTIONS(374), 1, anon_sym_DOLLAR, - ACTIONS(1597), 1, + ACTIONS(1605), 1, sym_identifier, - ACTIONS(1599), 1, + ACTIONS(1607), 1, anon_sym_LPAREN, - ACTIONS(1601), 1, + ACTIONS(1609), 1, anon_sym_getline, - ACTIONS(1603), 1, + ACTIONS(1611), 1, anon_sym_SLASH, - ACTIONS(1607), 1, + ACTIONS(1615), 1, anon_sym_BANG, - ACTIONS(1611), 1, + ACTIONS(1619), 1, anon_sym_AT, - ACTIONS(1613), 1, + ACTIONS(1621), 1, aux_sym_number_token1, - ACTIONS(1615), 1, + ACTIONS(1623), 1, aux_sym_number_token2, - ACTIONS(1617), 1, + ACTIONS(1625), 1, anon_sym_DQUOTE, STATE(166), 1, sym_ns_qualified_name, @@ -57232,10 +57238,10 @@ static const uint16_t ts_small_parse_table[] = { sym_field_ref, STATE(1881), 1, sym_namespace, - ACTIONS(1605), 2, + ACTIONS(1613), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1609), 2, + ACTIONS(1617), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(220), 19, @@ -57261,23 +57267,23 @@ static const uint16_t ts_small_parse_table[] = { [38697] = 18, ACTIONS(161), 1, anon_sym_DOLLAR, - ACTIONS(1597), 1, + ACTIONS(1605), 1, sym_identifier, - ACTIONS(1613), 1, + ACTIONS(1621), 1, aux_sym_number_token1, - ACTIONS(1615), 1, + ACTIONS(1623), 1, aux_sym_number_token2, - ACTIONS(1617), 1, + ACTIONS(1625), 1, anon_sym_DQUOTE, - ACTIONS(1641), 1, + ACTIONS(1649), 1, anon_sym_LPAREN, - ACTIONS(1643), 1, + ACTIONS(1651), 1, anon_sym_getline, - ACTIONS(1645), 1, + ACTIONS(1653), 1, anon_sym_SLASH, - ACTIONS(1649), 1, + ACTIONS(1657), 1, anon_sym_BANG, - ACTIONS(1653), 1, + ACTIONS(1661), 1, anon_sym_AT, STATE(166), 1, sym_ns_qualified_name, @@ -57289,10 +57295,10 @@ static const uint16_t ts_small_parse_table[] = { sym_field_ref, STATE(1881), 1, sym_namespace, - ACTIONS(1647), 2, + ACTIONS(1655), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1651), 2, + ACTIONS(1659), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(278), 19, @@ -57328,13 +57334,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, ACTIONS(336), 1, anon_sym_DQUOTE, - ACTIONS(1545), 1, + ACTIONS(1553), 1, sym_identifier, - ACTIONS(1547), 1, + ACTIONS(1555), 1, anon_sym_getline, - ACTIONS(1549), 1, + ACTIONS(1557), 1, anon_sym_SLASH, - ACTIONS(1553), 1, + ACTIONS(1561), 1, anon_sym_AT, STATE(189), 1, sym_ns_qualified_name, @@ -57349,7 +57355,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(322), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1551), 2, + ACTIONS(1559), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(357), 19, @@ -57385,13 +57391,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, ACTIONS(33), 1, anon_sym_DQUOTE, - ACTIONS(1523), 1, + ACTIONS(1531), 1, sym_identifier, - ACTIONS(1525), 1, + ACTIONS(1533), 1, anon_sym_getline, - ACTIONS(1527), 1, + ACTIONS(1535), 1, anon_sym_SLASH, - ACTIONS(1531), 1, + ACTIONS(1539), 1, anon_sym_AT, STATE(431), 1, sym_ns_qualified_name, @@ -57406,7 +57412,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(19), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1529), 2, + ACTIONS(1537), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(540), 19, @@ -57442,13 +57448,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, ACTIONS(374), 1, anon_sym_DOLLAR, - ACTIONS(1535), 1, + ACTIONS(1543), 1, sym_identifier, - ACTIONS(1537), 1, + ACTIONS(1545), 1, anon_sym_getline, - ACTIONS(1539), 1, + ACTIONS(1547), 1, anon_sym_SLASH, - ACTIONS(1543), 1, + ACTIONS(1551), 1, anon_sym_AT, STATE(703), 1, sym_ns_qualified_name, @@ -57463,7 +57469,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(368), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1541), 2, + ACTIONS(1549), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(1461), 19, @@ -57731,13 +57737,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, ACTIONS(284), 1, anon_sym_DQUOTE, - ACTIONS(1665), 1, + ACTIONS(1673), 1, sym_identifier, - ACTIONS(1667), 1, + ACTIONS(1675), 1, anon_sym_getline, - ACTIONS(1669), 1, + ACTIONS(1677), 1, anon_sym_SLASH, - ACTIONS(1673), 1, + ACTIONS(1681), 1, anon_sym_AT, STATE(584), 1, sym_ns_qualified_name, @@ -57752,7 +57758,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(115), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1671), 2, + ACTIONS(1679), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(1352), 19, @@ -57778,23 +57784,23 @@ static const uint16_t ts_small_parse_table[] = { [39380] = 18, ACTIONS(478), 1, anon_sym_DOLLAR, - ACTIONS(1575), 1, + ACTIONS(1583), 1, sym_identifier, - ACTIONS(1591), 1, + ACTIONS(1599), 1, aux_sym_number_token1, - ACTIONS(1593), 1, + ACTIONS(1601), 1, aux_sym_number_token2, - ACTIONS(1595), 1, + ACTIONS(1603), 1, anon_sym_DQUOTE, - ACTIONS(1675), 1, + ACTIONS(1683), 1, anon_sym_LPAREN, - ACTIONS(1677), 1, + ACTIONS(1685), 1, anon_sym_getline, - ACTIONS(1679), 1, + ACTIONS(1687), 1, anon_sym_SLASH, - ACTIONS(1683), 1, + ACTIONS(1691), 1, anon_sym_BANG, - ACTIONS(1687), 1, + ACTIONS(1695), 1, anon_sym_AT, STATE(158), 1, sym_ns_qualified_name, @@ -57806,10 +57812,10 @@ static const uint16_t ts_small_parse_table[] = { sym_field_ref, STATE(1958), 1, sym_namespace, - ACTIONS(1681), 2, + ACTIONS(1689), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1685), 2, + ACTIONS(1693), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(806), 19, @@ -57835,23 +57841,23 @@ static const uint16_t ts_small_parse_table[] = { [39455] = 18, ACTIONS(478), 1, anon_sym_DOLLAR, - ACTIONS(1575), 1, + ACTIONS(1583), 1, sym_identifier, - ACTIONS(1591), 1, + ACTIONS(1599), 1, aux_sym_number_token1, - ACTIONS(1593), 1, + ACTIONS(1601), 1, aux_sym_number_token2, - ACTIONS(1595), 1, + ACTIONS(1603), 1, anon_sym_DQUOTE, - ACTIONS(1675), 1, + ACTIONS(1683), 1, anon_sym_LPAREN, - ACTIONS(1677), 1, + ACTIONS(1685), 1, anon_sym_getline, - ACTIONS(1679), 1, + ACTIONS(1687), 1, anon_sym_SLASH, - ACTIONS(1683), 1, + ACTIONS(1691), 1, anon_sym_BANG, - ACTIONS(1687), 1, + ACTIONS(1695), 1, anon_sym_AT, STATE(158), 1, sym_ns_qualified_name, @@ -57863,10 +57869,10 @@ static const uint16_t ts_small_parse_table[] = { sym_field_ref, STATE(1958), 1, sym_namespace, - ACTIONS(1681), 2, + ACTIONS(1689), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1685), 2, + ACTIONS(1693), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(808), 19, @@ -57892,23 +57898,23 @@ static const uint16_t ts_small_parse_table[] = { [39530] = 18, ACTIONS(478), 1, anon_sym_DOLLAR, - ACTIONS(1575), 1, + ACTIONS(1583), 1, sym_identifier, - ACTIONS(1591), 1, + ACTIONS(1599), 1, aux_sym_number_token1, - ACTIONS(1593), 1, + ACTIONS(1601), 1, aux_sym_number_token2, - ACTIONS(1595), 1, + ACTIONS(1603), 1, anon_sym_DQUOTE, - ACTIONS(1675), 1, + ACTIONS(1683), 1, anon_sym_LPAREN, - ACTIONS(1677), 1, + ACTIONS(1685), 1, anon_sym_getline, - ACTIONS(1679), 1, + ACTIONS(1687), 1, anon_sym_SLASH, - ACTIONS(1683), 1, + ACTIONS(1691), 1, anon_sym_BANG, - ACTIONS(1687), 1, + ACTIONS(1695), 1, anon_sym_AT, STATE(158), 1, sym_ns_qualified_name, @@ -57920,10 +57926,10 @@ static const uint16_t ts_small_parse_table[] = { sym_field_ref, STATE(1958), 1, sym_namespace, - ACTIONS(1681), 2, + ACTIONS(1689), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1685), 2, + ACTIONS(1693), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(196), 19, @@ -57959,13 +57965,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, ACTIONS(169), 1, anon_sym_DQUOTE, - ACTIONS(1565), 1, + ACTIONS(1573), 1, sym_identifier, - ACTIONS(1567), 1, + ACTIONS(1575), 1, anon_sym_getline, - ACTIONS(1569), 1, + ACTIONS(1577), 1, anon_sym_SLASH, - ACTIONS(1573), 1, + ACTIONS(1581), 1, anon_sym_AT, STATE(219), 1, sym_ns_qualified_name, @@ -57980,7 +57986,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(155), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1571), 2, + ACTIONS(1579), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(420), 19, @@ -58006,23 +58012,23 @@ static const uint16_t ts_small_parse_table[] = { [39680] = 18, ACTIONS(478), 1, anon_sym_DOLLAR, - ACTIONS(1575), 1, + ACTIONS(1583), 1, sym_identifier, - ACTIONS(1591), 1, + ACTIONS(1599), 1, aux_sym_number_token1, - ACTIONS(1593), 1, + ACTIONS(1601), 1, aux_sym_number_token2, - ACTIONS(1595), 1, + ACTIONS(1603), 1, anon_sym_DQUOTE, - ACTIONS(1675), 1, + ACTIONS(1683), 1, anon_sym_LPAREN, - ACTIONS(1677), 1, + ACTIONS(1685), 1, anon_sym_getline, - ACTIONS(1679), 1, + ACTIONS(1687), 1, anon_sym_SLASH, - ACTIONS(1683), 1, + ACTIONS(1691), 1, anon_sym_BANG, - ACTIONS(1687), 1, + ACTIONS(1695), 1, anon_sym_AT, STATE(158), 1, sym_ns_qualified_name, @@ -58034,10 +58040,10 @@ static const uint16_t ts_small_parse_table[] = { sym_field_ref, STATE(1958), 1, sym_namespace, - ACTIONS(1681), 2, + ACTIONS(1689), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1685), 2, + ACTIONS(1693), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(809), 19, @@ -58063,23 +58069,23 @@ static const uint16_t ts_small_parse_table[] = { [39755] = 18, ACTIONS(161), 1, anon_sym_DOLLAR, - ACTIONS(1597), 1, + ACTIONS(1605), 1, sym_identifier, - ACTIONS(1613), 1, + ACTIONS(1621), 1, aux_sym_number_token1, - ACTIONS(1615), 1, + ACTIONS(1623), 1, aux_sym_number_token2, - ACTIONS(1617), 1, + ACTIONS(1625), 1, anon_sym_DQUOTE, - ACTIONS(1641), 1, + ACTIONS(1649), 1, anon_sym_LPAREN, - ACTIONS(1643), 1, + ACTIONS(1651), 1, anon_sym_getline, - ACTIONS(1645), 1, + ACTIONS(1653), 1, anon_sym_SLASH, - ACTIONS(1649), 1, + ACTIONS(1657), 1, anon_sym_BANG, - ACTIONS(1653), 1, + ACTIONS(1661), 1, anon_sym_AT, STATE(166), 1, sym_ns_qualified_name, @@ -58091,10 +58097,10 @@ static const uint16_t ts_small_parse_table[] = { sym_field_ref, STATE(1881), 1, sym_namespace, - ACTIONS(1647), 2, + ACTIONS(1655), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1651), 2, + ACTIONS(1659), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(277), 19, @@ -58120,23 +58126,23 @@ static const uint16_t ts_small_parse_table[] = { [39830] = 18, ACTIONS(478), 1, anon_sym_DOLLAR, - ACTIONS(1575), 1, + ACTIONS(1583), 1, sym_identifier, - ACTIONS(1591), 1, + ACTIONS(1599), 1, aux_sym_number_token1, - ACTIONS(1593), 1, + ACTIONS(1601), 1, aux_sym_number_token2, - ACTIONS(1595), 1, + ACTIONS(1603), 1, anon_sym_DQUOTE, - ACTIONS(1675), 1, + ACTIONS(1683), 1, anon_sym_LPAREN, - ACTIONS(1677), 1, + ACTIONS(1685), 1, anon_sym_getline, - ACTIONS(1679), 1, + ACTIONS(1687), 1, anon_sym_SLASH, - ACTIONS(1683), 1, + ACTIONS(1691), 1, anon_sym_BANG, - ACTIONS(1687), 1, + ACTIONS(1695), 1, anon_sym_AT, STATE(158), 1, sym_ns_qualified_name, @@ -58148,10 +58154,10 @@ static const uint16_t ts_small_parse_table[] = { sym_field_ref, STATE(1958), 1, sym_namespace, - ACTIONS(1681), 2, + ACTIONS(1689), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1685), 2, + ACTIONS(1693), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(812), 19, @@ -58177,23 +58183,23 @@ static const uint16_t ts_small_parse_table[] = { [39905] = 18, ACTIONS(478), 1, anon_sym_DOLLAR, - ACTIONS(1575), 1, + ACTIONS(1583), 1, sym_identifier, - ACTIONS(1591), 1, + ACTIONS(1599), 1, aux_sym_number_token1, - ACTIONS(1593), 1, + ACTIONS(1601), 1, aux_sym_number_token2, - ACTIONS(1595), 1, + ACTIONS(1603), 1, anon_sym_DQUOTE, - ACTIONS(1675), 1, + ACTIONS(1683), 1, anon_sym_LPAREN, - ACTIONS(1677), 1, + ACTIONS(1685), 1, anon_sym_getline, - ACTIONS(1679), 1, + ACTIONS(1687), 1, anon_sym_SLASH, - ACTIONS(1683), 1, + ACTIONS(1691), 1, anon_sym_BANG, - ACTIONS(1687), 1, + ACTIONS(1695), 1, anon_sym_AT, STATE(158), 1, sym_ns_qualified_name, @@ -58205,10 +58211,10 @@ static const uint16_t ts_small_parse_table[] = { sym_field_ref, STATE(1958), 1, sym_namespace, - ACTIONS(1681), 2, + ACTIONS(1689), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1685), 2, + ACTIONS(1693), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(832), 19, @@ -58234,23 +58240,23 @@ static const uint16_t ts_small_parse_table[] = { [39980] = 18, ACTIONS(478), 1, anon_sym_DOLLAR, - ACTIONS(1575), 1, + ACTIONS(1583), 1, sym_identifier, - ACTIONS(1591), 1, + ACTIONS(1599), 1, aux_sym_number_token1, - ACTIONS(1593), 1, + ACTIONS(1601), 1, aux_sym_number_token2, - ACTIONS(1595), 1, + ACTIONS(1603), 1, anon_sym_DQUOTE, - ACTIONS(1675), 1, + ACTIONS(1683), 1, anon_sym_LPAREN, - ACTIONS(1677), 1, + ACTIONS(1685), 1, anon_sym_getline, - ACTIONS(1679), 1, + ACTIONS(1687), 1, anon_sym_SLASH, - ACTIONS(1683), 1, + ACTIONS(1691), 1, anon_sym_BANG, - ACTIONS(1687), 1, + ACTIONS(1695), 1, anon_sym_AT, STATE(158), 1, sym_ns_qualified_name, @@ -58262,10 +58268,10 @@ static const uint16_t ts_small_parse_table[] = { sym_field_ref, STATE(1958), 1, sym_namespace, - ACTIONS(1681), 2, + ACTIONS(1689), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1685), 2, + ACTIONS(1693), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(834), 19, @@ -58291,23 +58297,23 @@ static const uint16_t ts_small_parse_table[] = { [40055] = 18, ACTIONS(478), 1, anon_sym_DOLLAR, - ACTIONS(1575), 1, + ACTIONS(1583), 1, sym_identifier, - ACTIONS(1591), 1, + ACTIONS(1599), 1, aux_sym_number_token1, - ACTIONS(1593), 1, + ACTIONS(1601), 1, aux_sym_number_token2, - ACTIONS(1595), 1, + ACTIONS(1603), 1, anon_sym_DQUOTE, - ACTIONS(1675), 1, + ACTIONS(1683), 1, anon_sym_LPAREN, - ACTIONS(1677), 1, + ACTIONS(1685), 1, anon_sym_getline, - ACTIONS(1679), 1, + ACTIONS(1687), 1, anon_sym_SLASH, - ACTIONS(1683), 1, + ACTIONS(1691), 1, anon_sym_BANG, - ACTIONS(1687), 1, + ACTIONS(1695), 1, anon_sym_AT, STATE(158), 1, sym_ns_qualified_name, @@ -58319,10 +58325,10 @@ static const uint16_t ts_small_parse_table[] = { sym_field_ref, STATE(1958), 1, sym_namespace, - ACTIONS(1681), 2, + ACTIONS(1689), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1685), 2, + ACTIONS(1693), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(835), 19, @@ -58346,30 +58352,30 @@ static const uint16_t ts_small_parse_table[] = { sym_func_call, sym_indirect_func_call, [40130] = 7, - ACTIONS(860), 2, + ACTIONS(868), 2, sym_concatenating_space, sym__if_else_separator, - ACTIONS(1691), 2, + ACTIONS(1699), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(1695), 2, + ACTIONS(1703), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1697), 2, + ACTIONS(1705), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(1693), 3, + ACTIONS(1701), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1689), 6, + ACTIONS(1697), 6, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(858), 21, + ACTIONS(866), 21, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -58394,23 +58400,23 @@ static const uint16_t ts_small_parse_table[] = { [40183] = 18, ACTIONS(374), 1, anon_sym_DOLLAR, - ACTIONS(1597), 1, + ACTIONS(1605), 1, sym_identifier, - ACTIONS(1599), 1, + ACTIONS(1607), 1, anon_sym_LPAREN, - ACTIONS(1601), 1, + ACTIONS(1609), 1, anon_sym_getline, - ACTIONS(1603), 1, + ACTIONS(1611), 1, anon_sym_SLASH, - ACTIONS(1607), 1, + ACTIONS(1615), 1, anon_sym_BANG, - ACTIONS(1611), 1, + ACTIONS(1619), 1, anon_sym_AT, - ACTIONS(1613), 1, + ACTIONS(1621), 1, aux_sym_number_token1, - ACTIONS(1615), 1, + ACTIONS(1623), 1, aux_sym_number_token2, - ACTIONS(1617), 1, + ACTIONS(1625), 1, anon_sym_DQUOTE, STATE(166), 1, sym_ns_qualified_name, @@ -58422,10 +58428,10 @@ static const uint16_t ts_small_parse_table[] = { sym_field_ref, STATE(1881), 1, sym_namespace, - ACTIONS(1605), 2, + ACTIONS(1613), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1609), 2, + ACTIONS(1617), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(1106), 19, @@ -58449,20 +58455,20 @@ static const uint16_t ts_small_parse_table[] = { sym_func_call, sym_indirect_func_call, [40258] = 5, - ACTIONS(766), 2, + ACTIONS(774), 2, sym_concatenating_space, sym__if_else_separator, - ACTIONS(1691), 2, + ACTIONS(1699), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(1695), 2, + ACTIONS(1703), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1693), 3, + ACTIONS(1701), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(764), 29, + ACTIONS(772), 29, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -58493,13 +58499,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT_EQ, anon_sym_CARET_EQ, [40307] = 3, - ACTIONS(766), 2, + ACTIONS(774), 2, sym_concatenating_space, sym__if_else_separator, - ACTIONS(1691), 2, + ACTIONS(1699), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(764), 34, + ACTIONS(772), 34, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -58535,25 +58541,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT_EQ, anon_sym_CARET_EQ, [40352] = 18, - ACTIONS(1247), 1, - anon_sym_LPAREN, ACTIONS(1255), 1, + anon_sym_LPAREN, + ACTIONS(1263), 1, anon_sym_BANG, - ACTIONS(1259), 1, + ACTIONS(1267), 1, anon_sym_DOLLAR, - ACTIONS(1263), 1, + ACTIONS(1271), 1, aux_sym_number_token1, - ACTIONS(1265), 1, + ACTIONS(1273), 1, aux_sym_number_token2, - ACTIONS(1267), 1, + ACTIONS(1275), 1, anon_sym_DQUOTE, - ACTIONS(1655), 1, + ACTIONS(1663), 1, sym_identifier, - ACTIONS(1657), 1, + ACTIONS(1665), 1, anon_sym_getline, - ACTIONS(1659), 1, + ACTIONS(1667), 1, anon_sym_SLASH, - ACTIONS(1663), 1, + ACTIONS(1671), 1, anon_sym_AT, STATE(1032), 1, sym_ns_qualified_name, @@ -58565,10 +58571,10 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_in, STATE(2039), 1, sym_namespace, - ACTIONS(1253), 2, + ACTIONS(1261), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1661), 2, + ACTIONS(1669), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(1470), 19, @@ -58604,13 +58610,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, ACTIONS(169), 1, anon_sym_DQUOTE, - ACTIONS(1565), 1, + ACTIONS(1573), 1, sym_identifier, - ACTIONS(1567), 1, + ACTIONS(1575), 1, anon_sym_getline, - ACTIONS(1569), 1, + ACTIONS(1577), 1, anon_sym_SLASH, - ACTIONS(1573), 1, + ACTIONS(1581), 1, anon_sym_AT, STATE(219), 1, sym_ns_qualified_name, @@ -58625,7 +58631,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(155), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1571), 2, + ACTIONS(1579), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(421), 19, @@ -58649,17 +58655,17 @@ static const uint16_t ts_small_parse_table[] = { sym_func_call, sym_indirect_func_call, [40502] = 4, - ACTIONS(766), 2, + ACTIONS(774), 2, sym_concatenating_space, sym__if_else_separator, - ACTIONS(1691), 2, + ACTIONS(1699), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(1693), 3, + ACTIONS(1701), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(764), 31, + ACTIONS(772), 31, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -58694,23 +58700,23 @@ static const uint16_t ts_small_parse_table[] = { [40549] = 18, ACTIONS(328), 1, anon_sym_DOLLAR, - ACTIONS(1575), 1, + ACTIONS(1583), 1, sym_identifier, - ACTIONS(1577), 1, + ACTIONS(1585), 1, anon_sym_LPAREN, - ACTIONS(1579), 1, + ACTIONS(1587), 1, anon_sym_getline, - ACTIONS(1581), 1, + ACTIONS(1589), 1, anon_sym_SLASH, - ACTIONS(1585), 1, + ACTIONS(1593), 1, anon_sym_BANG, - ACTIONS(1589), 1, + ACTIONS(1597), 1, anon_sym_AT, - ACTIONS(1591), 1, + ACTIONS(1599), 1, aux_sym_number_token1, - ACTIONS(1593), 1, + ACTIONS(1601), 1, aux_sym_number_token2, - ACTIONS(1595), 1, + ACTIONS(1603), 1, anon_sym_DQUOTE, STATE(158), 1, sym_ns_qualified_name, @@ -58722,10 +58728,10 @@ static const uint16_t ts_small_parse_table[] = { sym_field_ref, STATE(1958), 1, sym_namespace, - ACTIONS(1583), 2, + ACTIONS(1591), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1587), 2, + ACTIONS(1595), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(264), 19, @@ -58751,23 +58757,23 @@ static const uint16_t ts_small_parse_table[] = { [40624] = 18, ACTIONS(328), 1, anon_sym_DOLLAR, - ACTIONS(1575), 1, + ACTIONS(1583), 1, sym_identifier, - ACTIONS(1577), 1, + ACTIONS(1585), 1, anon_sym_LPAREN, - ACTIONS(1579), 1, + ACTIONS(1587), 1, anon_sym_getline, - ACTIONS(1581), 1, + ACTIONS(1589), 1, anon_sym_SLASH, - ACTIONS(1585), 1, + ACTIONS(1593), 1, anon_sym_BANG, - ACTIONS(1589), 1, + ACTIONS(1597), 1, anon_sym_AT, - ACTIONS(1591), 1, + ACTIONS(1599), 1, aux_sym_number_token1, - ACTIONS(1593), 1, + ACTIONS(1601), 1, aux_sym_number_token2, - ACTIONS(1595), 1, + ACTIONS(1603), 1, anon_sym_DQUOTE, STATE(158), 1, sym_ns_qualified_name, @@ -58779,10 +58785,10 @@ static const uint16_t ts_small_parse_table[] = { sym_field_ref, STATE(1958), 1, sym_namespace, - ACTIONS(1583), 2, + ACTIONS(1591), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1587), 2, + ACTIONS(1595), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(263), 19, @@ -58808,23 +58814,23 @@ static const uint16_t ts_small_parse_table[] = { [40699] = 18, ACTIONS(328), 1, anon_sym_DOLLAR, - ACTIONS(1575), 1, + ACTIONS(1583), 1, sym_identifier, - ACTIONS(1577), 1, + ACTIONS(1585), 1, anon_sym_LPAREN, - ACTIONS(1579), 1, + ACTIONS(1587), 1, anon_sym_getline, - ACTIONS(1581), 1, + ACTIONS(1589), 1, anon_sym_SLASH, - ACTIONS(1585), 1, + ACTIONS(1593), 1, anon_sym_BANG, - ACTIONS(1589), 1, + ACTIONS(1597), 1, anon_sym_AT, - ACTIONS(1591), 1, + ACTIONS(1599), 1, aux_sym_number_token1, - ACTIONS(1593), 1, + ACTIONS(1601), 1, aux_sym_number_token2, - ACTIONS(1595), 1, + ACTIONS(1603), 1, anon_sym_DQUOTE, STATE(158), 1, sym_ns_qualified_name, @@ -58836,10 +58842,10 @@ static const uint16_t ts_small_parse_table[] = { sym_field_ref, STATE(1958), 1, sym_namespace, - ACTIONS(1583), 2, + ACTIONS(1591), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1587), 2, + ACTIONS(1595), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(196), 19, @@ -58865,23 +58871,23 @@ static const uint16_t ts_small_parse_table[] = { [40774] = 18, ACTIONS(328), 1, anon_sym_DOLLAR, - ACTIONS(1575), 1, + ACTIONS(1583), 1, sym_identifier, - ACTIONS(1577), 1, + ACTIONS(1585), 1, anon_sym_LPAREN, - ACTIONS(1579), 1, + ACTIONS(1587), 1, anon_sym_getline, - ACTIONS(1581), 1, + ACTIONS(1589), 1, anon_sym_SLASH, - ACTIONS(1585), 1, + ACTIONS(1593), 1, anon_sym_BANG, - ACTIONS(1589), 1, + ACTIONS(1597), 1, anon_sym_AT, - ACTIONS(1591), 1, + ACTIONS(1599), 1, aux_sym_number_token1, - ACTIONS(1593), 1, + ACTIONS(1601), 1, aux_sym_number_token2, - ACTIONS(1595), 1, + ACTIONS(1603), 1, anon_sym_DQUOTE, STATE(158), 1, sym_ns_qualified_name, @@ -58893,10 +58899,10 @@ static const uint16_t ts_small_parse_table[] = { sym_field_ref, STATE(1958), 1, sym_namespace, - ACTIONS(1583), 2, + ACTIONS(1591), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1587), 2, + ACTIONS(1595), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(262), 19, @@ -58922,23 +58928,23 @@ static const uint16_t ts_small_parse_table[] = { [40849] = 18, ACTIONS(328), 1, anon_sym_DOLLAR, - ACTIONS(1575), 1, + ACTIONS(1583), 1, sym_identifier, - ACTIONS(1577), 1, + ACTIONS(1585), 1, anon_sym_LPAREN, - ACTIONS(1579), 1, + ACTIONS(1587), 1, anon_sym_getline, - ACTIONS(1581), 1, + ACTIONS(1589), 1, anon_sym_SLASH, - ACTIONS(1585), 1, + ACTIONS(1593), 1, anon_sym_BANG, - ACTIONS(1589), 1, + ACTIONS(1597), 1, anon_sym_AT, - ACTIONS(1591), 1, + ACTIONS(1599), 1, aux_sym_number_token1, - ACTIONS(1593), 1, + ACTIONS(1601), 1, aux_sym_number_token2, - ACTIONS(1595), 1, + ACTIONS(1603), 1, anon_sym_DQUOTE, STATE(158), 1, sym_ns_qualified_name, @@ -58950,10 +58956,10 @@ static const uint16_t ts_small_parse_table[] = { sym_field_ref, STATE(1958), 1, sym_namespace, - ACTIONS(1583), 2, + ACTIONS(1591), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1587), 2, + ACTIONS(1595), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(260), 19, @@ -58979,23 +58985,23 @@ static const uint16_t ts_small_parse_table[] = { [40924] = 18, ACTIONS(328), 1, anon_sym_DOLLAR, - ACTIONS(1575), 1, + ACTIONS(1583), 1, sym_identifier, - ACTIONS(1577), 1, + ACTIONS(1585), 1, anon_sym_LPAREN, - ACTIONS(1579), 1, + ACTIONS(1587), 1, anon_sym_getline, - ACTIONS(1581), 1, + ACTIONS(1589), 1, anon_sym_SLASH, - ACTIONS(1585), 1, + ACTIONS(1593), 1, anon_sym_BANG, - ACTIONS(1589), 1, + ACTIONS(1597), 1, anon_sym_AT, - ACTIONS(1591), 1, + ACTIONS(1599), 1, aux_sym_number_token1, - ACTIONS(1593), 1, + ACTIONS(1601), 1, aux_sym_number_token2, - ACTIONS(1595), 1, + ACTIONS(1603), 1, anon_sym_DQUOTE, STATE(158), 1, sym_ns_qualified_name, @@ -59007,10 +59013,10 @@ static const uint16_t ts_small_parse_table[] = { sym_field_ref, STATE(1958), 1, sym_namespace, - ACTIONS(1583), 2, + ACTIONS(1591), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1587), 2, + ACTIONS(1595), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(248), 19, @@ -59036,23 +59042,23 @@ static const uint16_t ts_small_parse_table[] = { [40999] = 18, ACTIONS(328), 1, anon_sym_DOLLAR, - ACTIONS(1575), 1, + ACTIONS(1583), 1, sym_identifier, - ACTIONS(1577), 1, + ACTIONS(1585), 1, anon_sym_LPAREN, - ACTIONS(1579), 1, + ACTIONS(1587), 1, anon_sym_getline, - ACTIONS(1581), 1, + ACTIONS(1589), 1, anon_sym_SLASH, - ACTIONS(1585), 1, + ACTIONS(1593), 1, anon_sym_BANG, - ACTIONS(1589), 1, + ACTIONS(1597), 1, anon_sym_AT, - ACTIONS(1591), 1, + ACTIONS(1599), 1, aux_sym_number_token1, - ACTIONS(1593), 1, + ACTIONS(1601), 1, aux_sym_number_token2, - ACTIONS(1595), 1, + ACTIONS(1603), 1, anon_sym_DQUOTE, STATE(158), 1, sym_ns_qualified_name, @@ -59064,10 +59070,10 @@ static const uint16_t ts_small_parse_table[] = { sym_field_ref, STATE(1958), 1, sym_namespace, - ACTIONS(1583), 2, + ACTIONS(1591), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1587), 2, + ACTIONS(1595), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(259), 19, @@ -59093,23 +59099,23 @@ static const uint16_t ts_small_parse_table[] = { [41074] = 18, ACTIONS(328), 1, anon_sym_DOLLAR, - ACTIONS(1575), 1, + ACTIONS(1583), 1, sym_identifier, - ACTIONS(1577), 1, + ACTIONS(1585), 1, anon_sym_LPAREN, - ACTIONS(1579), 1, + ACTIONS(1587), 1, anon_sym_getline, - ACTIONS(1581), 1, + ACTIONS(1589), 1, anon_sym_SLASH, - ACTIONS(1585), 1, + ACTIONS(1593), 1, anon_sym_BANG, - ACTIONS(1589), 1, + ACTIONS(1597), 1, anon_sym_AT, - ACTIONS(1591), 1, + ACTIONS(1599), 1, aux_sym_number_token1, - ACTIONS(1593), 1, + ACTIONS(1601), 1, aux_sym_number_token2, - ACTIONS(1595), 1, + ACTIONS(1603), 1, anon_sym_DQUOTE, STATE(158), 1, sym_ns_qualified_name, @@ -59121,10 +59127,10 @@ static const uint16_t ts_small_parse_table[] = { sym_field_ref, STATE(1958), 1, sym_namespace, - ACTIONS(1583), 2, + ACTIONS(1591), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1587), 2, + ACTIONS(1595), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(258), 19, @@ -59150,23 +59156,23 @@ static const uint16_t ts_small_parse_table[] = { [41149] = 18, ACTIONS(161), 1, anon_sym_DOLLAR, - ACTIONS(1597), 1, + ACTIONS(1605), 1, sym_identifier, - ACTIONS(1613), 1, + ACTIONS(1621), 1, aux_sym_number_token1, - ACTIONS(1615), 1, + ACTIONS(1623), 1, aux_sym_number_token2, - ACTIONS(1617), 1, + ACTIONS(1625), 1, anon_sym_DQUOTE, - ACTIONS(1641), 1, + ACTIONS(1649), 1, anon_sym_LPAREN, - ACTIONS(1643), 1, + ACTIONS(1651), 1, anon_sym_getline, - ACTIONS(1645), 1, + ACTIONS(1653), 1, anon_sym_SLASH, - ACTIONS(1649), 1, + ACTIONS(1657), 1, anon_sym_BANG, - ACTIONS(1653), 1, + ACTIONS(1661), 1, anon_sym_AT, STATE(166), 1, sym_ns_qualified_name, @@ -59178,10 +59184,10 @@ static const uint16_t ts_small_parse_table[] = { sym_field_ref, STATE(1881), 1, sym_namespace, - ACTIONS(1647), 2, + ACTIONS(1655), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1651), 2, + ACTIONS(1659), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(267), 19, @@ -59207,23 +59213,23 @@ static const uint16_t ts_small_parse_table[] = { [41224] = 18, ACTIONS(161), 1, anon_sym_DOLLAR, - ACTIONS(1597), 1, + ACTIONS(1605), 1, sym_identifier, - ACTIONS(1613), 1, + ACTIONS(1621), 1, aux_sym_number_token1, - ACTIONS(1615), 1, + ACTIONS(1623), 1, aux_sym_number_token2, - ACTIONS(1617), 1, + ACTIONS(1625), 1, anon_sym_DQUOTE, - ACTIONS(1641), 1, + ACTIONS(1649), 1, anon_sym_LPAREN, - ACTIONS(1643), 1, + ACTIONS(1651), 1, anon_sym_getline, - ACTIONS(1645), 1, + ACTIONS(1653), 1, anon_sym_SLASH, - ACTIONS(1649), 1, + ACTIONS(1657), 1, anon_sym_BANG, - ACTIONS(1653), 1, + ACTIONS(1661), 1, anon_sym_AT, STATE(166), 1, sym_ns_qualified_name, @@ -59235,10 +59241,10 @@ static const uint16_t ts_small_parse_table[] = { sym_field_ref, STATE(1881), 1, sym_namespace, - ACTIONS(1647), 2, + ACTIONS(1655), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1651), 2, + ACTIONS(1659), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(271), 19, @@ -59274,13 +59280,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, ACTIONS(169), 1, anon_sym_DQUOTE, - ACTIONS(1565), 1, + ACTIONS(1573), 1, sym_identifier, - ACTIONS(1567), 1, + ACTIONS(1575), 1, anon_sym_getline, - ACTIONS(1569), 1, + ACTIONS(1577), 1, anon_sym_SLASH, - ACTIONS(1573), 1, + ACTIONS(1581), 1, anon_sym_AT, STATE(219), 1, sym_ns_qualified_name, @@ -59295,7 +59301,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(155), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1571), 2, + ACTIONS(1579), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(441), 19, @@ -59321,23 +59327,23 @@ static const uint16_t ts_small_parse_table[] = { [41374] = 18, ACTIONS(374), 1, anon_sym_DOLLAR, - ACTIONS(1597), 1, + ACTIONS(1605), 1, sym_identifier, - ACTIONS(1599), 1, + ACTIONS(1607), 1, anon_sym_LPAREN, - ACTIONS(1601), 1, + ACTIONS(1609), 1, anon_sym_getline, - ACTIONS(1603), 1, + ACTIONS(1611), 1, anon_sym_SLASH, - ACTIONS(1607), 1, + ACTIONS(1615), 1, anon_sym_BANG, - ACTIONS(1611), 1, + ACTIONS(1619), 1, anon_sym_AT, - ACTIONS(1613), 1, + ACTIONS(1621), 1, aux_sym_number_token1, - ACTIONS(1615), 1, + ACTIONS(1623), 1, aux_sym_number_token2, - ACTIONS(1617), 1, + ACTIONS(1625), 1, anon_sym_DQUOTE, STATE(166), 1, sym_ns_qualified_name, @@ -59349,10 +59355,10 @@ static const uint16_t ts_small_parse_table[] = { sym_field_ref, STATE(1881), 1, sym_namespace, - ACTIONS(1605), 2, + ACTIONS(1613), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1609), 2, + ACTIONS(1617), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(1107), 19, @@ -59388,13 +59394,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, ACTIONS(284), 1, anon_sym_DQUOTE, - ACTIONS(1665), 1, + ACTIONS(1673), 1, sym_identifier, - ACTIONS(1667), 1, + ACTIONS(1675), 1, anon_sym_getline, - ACTIONS(1669), 1, + ACTIONS(1677), 1, anon_sym_SLASH, - ACTIONS(1673), 1, + ACTIONS(1681), 1, anon_sym_AT, STATE(584), 1, sym_ns_qualified_name, @@ -59409,7 +59415,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(115), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1671), 2, + ACTIONS(1679), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(1363), 19, @@ -59435,23 +59441,23 @@ static const uint16_t ts_small_parse_table[] = { [41524] = 18, ACTIONS(161), 1, anon_sym_DOLLAR, - ACTIONS(1597), 1, + ACTIONS(1605), 1, sym_identifier, - ACTIONS(1613), 1, + ACTIONS(1621), 1, aux_sym_number_token1, - ACTIONS(1615), 1, + ACTIONS(1623), 1, aux_sym_number_token2, - ACTIONS(1617), 1, + ACTIONS(1625), 1, anon_sym_DQUOTE, - ACTIONS(1641), 1, + ACTIONS(1649), 1, anon_sym_LPAREN, - ACTIONS(1643), 1, + ACTIONS(1651), 1, anon_sym_getline, - ACTIONS(1645), 1, + ACTIONS(1653), 1, anon_sym_SLASH, - ACTIONS(1649), 1, + ACTIONS(1657), 1, anon_sym_BANG, - ACTIONS(1653), 1, + ACTIONS(1661), 1, anon_sym_AT, STATE(166), 1, sym_ns_qualified_name, @@ -59463,10 +59469,10 @@ static const uint16_t ts_small_parse_table[] = { sym_field_ref, STATE(1881), 1, sym_namespace, - ACTIONS(1647), 2, + ACTIONS(1655), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1651), 2, + ACTIONS(1659), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(270), 19, @@ -59492,23 +59498,23 @@ static const uint16_t ts_small_parse_table[] = { [41599] = 18, ACTIONS(161), 1, anon_sym_DOLLAR, - ACTIONS(1597), 1, + ACTIONS(1605), 1, sym_identifier, - ACTIONS(1613), 1, + ACTIONS(1621), 1, aux_sym_number_token1, - ACTIONS(1615), 1, + ACTIONS(1623), 1, aux_sym_number_token2, - ACTIONS(1617), 1, + ACTIONS(1625), 1, anon_sym_DQUOTE, - ACTIONS(1641), 1, + ACTIONS(1649), 1, anon_sym_LPAREN, - ACTIONS(1643), 1, + ACTIONS(1651), 1, anon_sym_getline, - ACTIONS(1645), 1, + ACTIONS(1653), 1, anon_sym_SLASH, - ACTIONS(1649), 1, + ACTIONS(1657), 1, anon_sym_BANG, - ACTIONS(1653), 1, + ACTIONS(1661), 1, anon_sym_AT, STATE(166), 1, sym_ns_qualified_name, @@ -59520,10 +59526,10 @@ static const uint16_t ts_small_parse_table[] = { sym_field_ref, STATE(1881), 1, sym_namespace, - ACTIONS(1647), 2, + ACTIONS(1655), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1651), 2, + ACTIONS(1659), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(269), 19, @@ -59549,23 +59555,23 @@ static const uint16_t ts_small_parse_table[] = { [41674] = 18, ACTIONS(161), 1, anon_sym_DOLLAR, - ACTIONS(1597), 1, + ACTIONS(1605), 1, sym_identifier, - ACTIONS(1613), 1, + ACTIONS(1621), 1, aux_sym_number_token1, - ACTIONS(1615), 1, + ACTIONS(1623), 1, aux_sym_number_token2, - ACTIONS(1617), 1, + ACTIONS(1625), 1, anon_sym_DQUOTE, - ACTIONS(1641), 1, + ACTIONS(1649), 1, anon_sym_LPAREN, - ACTIONS(1643), 1, + ACTIONS(1651), 1, anon_sym_getline, - ACTIONS(1645), 1, + ACTIONS(1653), 1, anon_sym_SLASH, - ACTIONS(1649), 1, + ACTIONS(1657), 1, anon_sym_BANG, - ACTIONS(1653), 1, + ACTIONS(1661), 1, anon_sym_AT, STATE(166), 1, sym_ns_qualified_name, @@ -59577,10 +59583,10 @@ static const uint16_t ts_small_parse_table[] = { sym_field_ref, STATE(1881), 1, sym_namespace, - ACTIONS(1647), 2, + ACTIONS(1655), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1651), 2, + ACTIONS(1659), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(272), 19, @@ -59606,23 +59612,23 @@ static const uint16_t ts_small_parse_table[] = { [41749] = 18, ACTIONS(161), 1, anon_sym_DOLLAR, - ACTIONS(1597), 1, + ACTIONS(1605), 1, sym_identifier, - ACTIONS(1613), 1, + ACTIONS(1621), 1, aux_sym_number_token1, - ACTIONS(1615), 1, + ACTIONS(1623), 1, aux_sym_number_token2, - ACTIONS(1617), 1, + ACTIONS(1625), 1, anon_sym_DQUOTE, - ACTIONS(1641), 1, + ACTIONS(1649), 1, anon_sym_LPAREN, - ACTIONS(1643), 1, + ACTIONS(1651), 1, anon_sym_getline, - ACTIONS(1645), 1, + ACTIONS(1653), 1, anon_sym_SLASH, - ACTIONS(1649), 1, + ACTIONS(1657), 1, anon_sym_BANG, - ACTIONS(1653), 1, + ACTIONS(1661), 1, anon_sym_AT, STATE(166), 1, sym_ns_qualified_name, @@ -59634,10 +59640,10 @@ static const uint16_t ts_small_parse_table[] = { sym_field_ref, STATE(1881), 1, sym_namespace, - ACTIONS(1647), 2, + ACTIONS(1655), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1651), 2, + ACTIONS(1659), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(220), 19, @@ -59663,23 +59669,23 @@ static const uint16_t ts_small_parse_table[] = { [41824] = 18, ACTIONS(161), 1, anon_sym_DOLLAR, - ACTIONS(1597), 1, + ACTIONS(1605), 1, sym_identifier, - ACTIONS(1613), 1, + ACTIONS(1621), 1, aux_sym_number_token1, - ACTIONS(1615), 1, + ACTIONS(1623), 1, aux_sym_number_token2, - ACTIONS(1617), 1, + ACTIONS(1625), 1, anon_sym_DQUOTE, - ACTIONS(1641), 1, + ACTIONS(1649), 1, anon_sym_LPAREN, - ACTIONS(1643), 1, + ACTIONS(1651), 1, anon_sym_getline, - ACTIONS(1645), 1, + ACTIONS(1653), 1, anon_sym_SLASH, - ACTIONS(1649), 1, + ACTIONS(1657), 1, anon_sym_BANG, - ACTIONS(1653), 1, + ACTIONS(1661), 1, anon_sym_AT, STATE(166), 1, sym_ns_qualified_name, @@ -59691,10 +59697,10 @@ static const uint16_t ts_small_parse_table[] = { sym_field_ref, STATE(1881), 1, sym_namespace, - ACTIONS(1647), 2, + ACTIONS(1655), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1651), 2, + ACTIONS(1659), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(273), 19, @@ -59720,23 +59726,23 @@ static const uint16_t ts_small_parse_table[] = { [41899] = 18, ACTIONS(161), 1, anon_sym_DOLLAR, - ACTIONS(1597), 1, + ACTIONS(1605), 1, sym_identifier, - ACTIONS(1613), 1, + ACTIONS(1621), 1, aux_sym_number_token1, - ACTIONS(1615), 1, + ACTIONS(1623), 1, aux_sym_number_token2, - ACTIONS(1617), 1, + ACTIONS(1625), 1, anon_sym_DQUOTE, - ACTIONS(1641), 1, + ACTIONS(1649), 1, anon_sym_LPAREN, - ACTIONS(1643), 1, + ACTIONS(1651), 1, anon_sym_getline, - ACTIONS(1645), 1, + ACTIONS(1653), 1, anon_sym_SLASH, - ACTIONS(1649), 1, + ACTIONS(1657), 1, anon_sym_BANG, - ACTIONS(1653), 1, + ACTIONS(1661), 1, anon_sym_AT, STATE(166), 1, sym_ns_qualified_name, @@ -59748,10 +59754,10 @@ static const uint16_t ts_small_parse_table[] = { sym_field_ref, STATE(1881), 1, sym_namespace, - ACTIONS(1647), 2, + ACTIONS(1655), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1651), 2, + ACTIONS(1659), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(274), 19, @@ -59775,27 +59781,27 @@ static const uint16_t ts_small_parse_table[] = { sym_func_call, sym_indirect_func_call, [41974] = 6, - ACTIONS(766), 2, + ACTIONS(774), 2, sym_concatenating_space, sym__if_else_separator, - ACTIONS(1691), 2, + ACTIONS(1699), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(1695), 2, + ACTIONS(1703), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1693), 3, + ACTIONS(1701), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1689), 6, + ACTIONS(1697), 6, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(764), 23, + ACTIONS(772), 23, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -59820,25 +59826,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT_EQ, anon_sym_CARET_EQ, [42025] = 18, - ACTIONS(1247), 1, - anon_sym_LPAREN, ACTIONS(1255), 1, + anon_sym_LPAREN, + ACTIONS(1263), 1, anon_sym_BANG, - ACTIONS(1259), 1, + ACTIONS(1267), 1, anon_sym_DOLLAR, - ACTIONS(1263), 1, + ACTIONS(1271), 1, aux_sym_number_token1, - ACTIONS(1265), 1, + ACTIONS(1273), 1, aux_sym_number_token2, - ACTIONS(1267), 1, + ACTIONS(1275), 1, anon_sym_DQUOTE, - ACTIONS(1655), 1, + ACTIONS(1663), 1, sym_identifier, - ACTIONS(1657), 1, + ACTIONS(1665), 1, anon_sym_getline, - ACTIONS(1659), 1, + ACTIONS(1667), 1, anon_sym_SLASH, - ACTIONS(1663), 1, + ACTIONS(1671), 1, anon_sym_AT, STATE(1032), 1, sym_ns_qualified_name, @@ -59850,10 +59856,10 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_in, STATE(2039), 1, sym_namespace, - ACTIONS(1253), 2, + ACTIONS(1261), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1661), 2, + ACTIONS(1669), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(1499), 19, @@ -59877,32 +59883,32 @@ static const uint16_t ts_small_parse_table[] = { sym_func_call, sym_indirect_func_call, [42100] = 8, - ACTIONS(1699), 1, + ACTIONS(1707), 1, anon_sym_in, - ACTIONS(766), 2, + ACTIONS(774), 2, sym_concatenating_space, sym__if_else_separator, - ACTIONS(1691), 2, + ACTIONS(1699), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(1695), 2, + ACTIONS(1703), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1697), 2, + ACTIONS(1705), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(1693), 3, + ACTIONS(1701), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1689), 6, + ACTIONS(1697), 6, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(764), 20, + ACTIONS(772), 20, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -59924,34 +59930,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT_EQ, anon_sym_CARET_EQ, [42155] = 9, - ACTIONS(1699), 1, + ACTIONS(1707), 1, anon_sym_in, - ACTIONS(1701), 1, + ACTIONS(1709), 1, anon_sym_AMP_AMP, - ACTIONS(766), 2, + ACTIONS(774), 2, sym_concatenating_space, sym__if_else_separator, - ACTIONS(1691), 2, + ACTIONS(1699), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(1695), 2, + ACTIONS(1703), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1697), 2, + ACTIONS(1705), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(1693), 3, + ACTIONS(1701), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1689), 6, + ACTIONS(1697), 6, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(764), 19, + ACTIONS(772), 19, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -59974,23 +59980,23 @@ static const uint16_t ts_small_parse_table[] = { [42212] = 18, ACTIONS(478), 1, anon_sym_DOLLAR, - ACTIONS(1575), 1, + ACTIONS(1583), 1, sym_identifier, - ACTIONS(1591), 1, + ACTIONS(1599), 1, aux_sym_number_token1, - ACTIONS(1593), 1, + ACTIONS(1601), 1, aux_sym_number_token2, - ACTIONS(1595), 1, + ACTIONS(1603), 1, anon_sym_DQUOTE, - ACTIONS(1675), 1, + ACTIONS(1683), 1, anon_sym_LPAREN, - ACTIONS(1677), 1, + ACTIONS(1685), 1, anon_sym_getline, - ACTIONS(1679), 1, + ACTIONS(1687), 1, anon_sym_SLASH, - ACTIONS(1683), 1, + ACTIONS(1691), 1, anon_sym_BANG, - ACTIONS(1687), 1, + ACTIONS(1695), 1, anon_sym_AT, STATE(158), 1, sym_ns_qualified_name, @@ -60002,10 +60008,10 @@ static const uint16_t ts_small_parse_table[] = { sym_field_ref, STATE(1958), 1, sym_namespace, - ACTIONS(1681), 2, + ACTIONS(1689), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1685), 2, + ACTIONS(1693), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(838), 19, @@ -60031,23 +60037,23 @@ static const uint16_t ts_small_parse_table[] = { [42287] = 18, ACTIONS(478), 1, anon_sym_DOLLAR, - ACTIONS(1575), 1, + ACTIONS(1583), 1, sym_identifier, - ACTIONS(1591), 1, + ACTIONS(1599), 1, aux_sym_number_token1, - ACTIONS(1593), 1, + ACTIONS(1601), 1, aux_sym_number_token2, - ACTIONS(1595), 1, + ACTIONS(1603), 1, anon_sym_DQUOTE, - ACTIONS(1675), 1, + ACTIONS(1683), 1, anon_sym_LPAREN, - ACTIONS(1677), 1, + ACTIONS(1685), 1, anon_sym_getline, - ACTIONS(1679), 1, + ACTIONS(1687), 1, anon_sym_SLASH, - ACTIONS(1683), 1, + ACTIONS(1691), 1, anon_sym_BANG, - ACTIONS(1687), 1, + ACTIONS(1695), 1, anon_sym_AT, STATE(158), 1, sym_ns_qualified_name, @@ -60059,10 +60065,10 @@ static const uint16_t ts_small_parse_table[] = { sym_field_ref, STATE(1958), 1, sym_namespace, - ACTIONS(1681), 2, + ACTIONS(1689), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1685), 2, + ACTIONS(1693), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(839), 19, @@ -60086,30 +60092,30 @@ static const uint16_t ts_small_parse_table[] = { sym_func_call, sym_indirect_func_call, [42362] = 7, - ACTIONS(834), 2, + ACTIONS(842), 2, sym_concatenating_space, sym__if_else_separator, - ACTIONS(1691), 2, + ACTIONS(1699), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(1695), 2, + ACTIONS(1703), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1697), 2, + ACTIONS(1705), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(1693), 3, + ACTIONS(1701), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1689), 6, + ACTIONS(1697), 6, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(830), 21, + ACTIONS(838), 21, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -60132,38 +60138,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT_EQ, anon_sym_CARET_EQ, [42415] = 11, - ACTIONS(1699), 1, + ACTIONS(1707), 1, anon_sym_in, - ACTIONS(1701), 1, + ACTIONS(1709), 1, anon_sym_AMP_AMP, - ACTIONS(1703), 1, + ACTIONS(1711), 1, anon_sym_QMARK, - ACTIONS(1705), 1, + ACTIONS(1713), 1, anon_sym_PIPE_PIPE, - ACTIONS(852), 2, + ACTIONS(860), 2, sym_concatenating_space, sym__if_else_separator, - ACTIONS(1691), 2, + ACTIONS(1699), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(1695), 2, + ACTIONS(1703), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1697), 2, + ACTIONS(1705), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(1693), 3, + ACTIONS(1701), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1689), 6, + ACTIONS(1697), 6, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(850), 17, + ACTIONS(858), 17, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -60184,23 +60190,23 @@ static const uint16_t ts_small_parse_table[] = { [42476] = 18, ACTIONS(328), 1, anon_sym_DOLLAR, - ACTIONS(1575), 1, + ACTIONS(1583), 1, sym_identifier, - ACTIONS(1577), 1, + ACTIONS(1585), 1, anon_sym_LPAREN, - ACTIONS(1579), 1, + ACTIONS(1587), 1, anon_sym_getline, - ACTIONS(1581), 1, + ACTIONS(1589), 1, anon_sym_SLASH, - ACTIONS(1585), 1, + ACTIONS(1593), 1, anon_sym_BANG, - ACTIONS(1589), 1, + ACTIONS(1597), 1, anon_sym_AT, - ACTIONS(1591), 1, + ACTIONS(1599), 1, aux_sym_number_token1, - ACTIONS(1593), 1, + ACTIONS(1601), 1, aux_sym_number_token2, - ACTIONS(1595), 1, + ACTIONS(1603), 1, anon_sym_DQUOTE, STATE(158), 1, sym_ns_qualified_name, @@ -60212,10 +60218,10 @@ static const uint16_t ts_small_parse_table[] = { sym_field_ref, STATE(1958), 1, sym_namespace, - ACTIONS(1583), 2, + ACTIONS(1591), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1587), 2, + ACTIONS(1595), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(249), 19, @@ -60241,23 +60247,23 @@ static const uint16_t ts_small_parse_table[] = { [42551] = 18, ACTIONS(374), 1, anon_sym_DOLLAR, - ACTIONS(1597), 1, + ACTIONS(1605), 1, sym_identifier, - ACTIONS(1599), 1, + ACTIONS(1607), 1, anon_sym_LPAREN, - ACTIONS(1601), 1, + ACTIONS(1609), 1, anon_sym_getline, - ACTIONS(1603), 1, + ACTIONS(1611), 1, anon_sym_SLASH, - ACTIONS(1607), 1, + ACTIONS(1615), 1, anon_sym_BANG, - ACTIONS(1611), 1, + ACTIONS(1619), 1, anon_sym_AT, - ACTIONS(1613), 1, + ACTIONS(1621), 1, aux_sym_number_token1, - ACTIONS(1615), 1, + ACTIONS(1623), 1, aux_sym_number_token2, - ACTIONS(1617), 1, + ACTIONS(1625), 1, anon_sym_DQUOTE, STATE(166), 1, sym_ns_qualified_name, @@ -60269,10 +60275,10 @@ static const uint16_t ts_small_parse_table[] = { sym_field_ref, STATE(1881), 1, sym_namespace, - ACTIONS(1605), 2, + ACTIONS(1613), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1609), 2, + ACTIONS(1617), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(223), 19, @@ -60302,19 +60308,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, ACTIONS(484), 1, anon_sym_DQUOTE, - ACTIONS(538), 1, + ACTIONS(544), 1, anon_sym_LPAREN, - ACTIONS(542), 1, + ACTIONS(548), 1, anon_sym_BANG, - ACTIONS(546), 1, + ACTIONS(552), 1, anon_sym_DOLLAR, - ACTIONS(1707), 1, + ACTIONS(1715), 1, sym_identifier, - ACTIONS(1709), 1, + ACTIONS(1717), 1, anon_sym_getline, - ACTIONS(1711), 1, + ACTIONS(1719), 1, anon_sym_SLASH, - ACTIONS(1715), 1, + ACTIONS(1723), 1, anon_sym_AT, STATE(571), 1, sym_ns_qualified_name, @@ -60329,7 +60335,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(71), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1713), 2, + ACTIONS(1721), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(1327), 19, @@ -60359,19 +60365,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, ACTIONS(484), 1, anon_sym_DQUOTE, - ACTIONS(538), 1, + ACTIONS(544), 1, anon_sym_LPAREN, - ACTIONS(542), 1, + ACTIONS(548), 1, anon_sym_BANG, - ACTIONS(546), 1, + ACTIONS(552), 1, anon_sym_DOLLAR, - ACTIONS(1707), 1, + ACTIONS(1715), 1, sym_identifier, - ACTIONS(1709), 1, + ACTIONS(1717), 1, anon_sym_getline, - ACTIONS(1711), 1, + ACTIONS(1719), 1, anon_sym_SLASH, - ACTIONS(1715), 1, + ACTIONS(1723), 1, anon_sym_AT, STATE(571), 1, sym_ns_qualified_name, @@ -60386,7 +60392,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(71), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1713), 2, + ACTIONS(1721), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(1328), 19, @@ -60422,13 +60428,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, ACTIONS(284), 1, anon_sym_DQUOTE, - ACTIONS(1665), 1, + ACTIONS(1673), 1, sym_identifier, - ACTIONS(1667), 1, + ACTIONS(1675), 1, anon_sym_getline, - ACTIONS(1669), 1, + ACTIONS(1677), 1, anon_sym_SLASH, - ACTIONS(1673), 1, + ACTIONS(1681), 1, anon_sym_AT, STATE(584), 1, sym_ns_qualified_name, @@ -60443,7 +60449,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(115), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1671), 2, + ACTIONS(1679), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(1393), 19, @@ -60467,25 +60473,25 @@ static const uint16_t ts_small_parse_table[] = { sym_func_call, sym_indirect_func_call, [42851] = 18, - ACTIONS(1247), 1, - anon_sym_LPAREN, ACTIONS(1255), 1, + anon_sym_LPAREN, + ACTIONS(1263), 1, anon_sym_BANG, - ACTIONS(1259), 1, + ACTIONS(1267), 1, anon_sym_DOLLAR, - ACTIONS(1263), 1, + ACTIONS(1271), 1, aux_sym_number_token1, - ACTIONS(1265), 1, + ACTIONS(1273), 1, aux_sym_number_token2, - ACTIONS(1267), 1, + ACTIONS(1275), 1, anon_sym_DQUOTE, - ACTIONS(1655), 1, + ACTIONS(1663), 1, sym_identifier, - ACTIONS(1657), 1, + ACTIONS(1665), 1, anon_sym_getline, - ACTIONS(1659), 1, + ACTIONS(1667), 1, anon_sym_SLASH, - ACTIONS(1663), 1, + ACTIONS(1671), 1, anon_sym_AT, STATE(1032), 1, sym_ns_qualified_name, @@ -60497,10 +60503,10 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_in, STATE(2039), 1, sym_namespace, - ACTIONS(1253), 2, + ACTIONS(1261), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1661), 2, + ACTIONS(1669), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(1500), 19, @@ -60526,23 +60532,23 @@ static const uint16_t ts_small_parse_table[] = { [42926] = 18, ACTIONS(328), 1, anon_sym_DOLLAR, - ACTIONS(1575), 1, + ACTIONS(1583), 1, sym_identifier, - ACTIONS(1577), 1, + ACTIONS(1585), 1, anon_sym_LPAREN, - ACTIONS(1579), 1, + ACTIONS(1587), 1, anon_sym_getline, - ACTIONS(1581), 1, + ACTIONS(1589), 1, anon_sym_SLASH, - ACTIONS(1585), 1, + ACTIONS(1593), 1, anon_sym_BANG, - ACTIONS(1589), 1, + ACTIONS(1597), 1, anon_sym_AT, - ACTIONS(1591), 1, + ACTIONS(1599), 1, aux_sym_number_token1, - ACTIONS(1593), 1, + ACTIONS(1601), 1, aux_sym_number_token2, - ACTIONS(1595), 1, + ACTIONS(1603), 1, anon_sym_DQUOTE, STATE(158), 1, sym_ns_qualified_name, @@ -60554,10 +60560,10 @@ static const uint16_t ts_small_parse_table[] = { sym_field_ref, STATE(1958), 1, sym_namespace, - ACTIONS(1583), 2, + ACTIONS(1591), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1587), 2, + ACTIONS(1595), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(252), 19, @@ -60587,19 +60593,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, ACTIONS(484), 1, anon_sym_DQUOTE, - ACTIONS(538), 1, + ACTIONS(544), 1, anon_sym_LPAREN, - ACTIONS(542), 1, + ACTIONS(548), 1, anon_sym_BANG, - ACTIONS(546), 1, + ACTIONS(552), 1, anon_sym_DOLLAR, - ACTIONS(1707), 1, + ACTIONS(1715), 1, sym_identifier, - ACTIONS(1709), 1, + ACTIONS(1717), 1, anon_sym_getline, - ACTIONS(1711), 1, + ACTIONS(1719), 1, anon_sym_SLASH, - ACTIONS(1715), 1, + ACTIONS(1723), 1, anon_sym_AT, STATE(571), 1, sym_ns_qualified_name, @@ -60614,7 +60620,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(71), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1713), 2, + ACTIONS(1721), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(1280), 19, @@ -60644,19 +60650,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, ACTIONS(484), 1, anon_sym_DQUOTE, - ACTIONS(538), 1, + ACTIONS(544), 1, anon_sym_LPAREN, - ACTIONS(542), 1, + ACTIONS(548), 1, anon_sym_BANG, - ACTIONS(546), 1, + ACTIONS(552), 1, anon_sym_DOLLAR, - ACTIONS(1707), 1, + ACTIONS(1715), 1, sym_identifier, - ACTIONS(1709), 1, + ACTIONS(1717), 1, anon_sym_getline, - ACTIONS(1711), 1, + ACTIONS(1719), 1, anon_sym_SLASH, - ACTIONS(1715), 1, + ACTIONS(1723), 1, anon_sym_AT, STATE(571), 1, sym_ns_qualified_name, @@ -60671,7 +60677,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(71), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1713), 2, + ACTIONS(1721), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(1329), 19, @@ -60701,19 +60707,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, ACTIONS(484), 1, anon_sym_DQUOTE, - ACTIONS(538), 1, + ACTIONS(544), 1, anon_sym_LPAREN, - ACTIONS(542), 1, + ACTIONS(548), 1, anon_sym_BANG, - ACTIONS(546), 1, + ACTIONS(552), 1, anon_sym_DOLLAR, - ACTIONS(1707), 1, + ACTIONS(1715), 1, sym_identifier, - ACTIONS(1709), 1, + ACTIONS(1717), 1, anon_sym_getline, - ACTIONS(1711), 1, + ACTIONS(1719), 1, anon_sym_SLASH, - ACTIONS(1715), 1, + ACTIONS(1723), 1, anon_sym_AT, STATE(571), 1, sym_ns_qualified_name, @@ -60728,7 +60734,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(71), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1713), 2, + ACTIONS(1721), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(1330), 19, @@ -60764,13 +60770,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, ACTIONS(374), 1, anon_sym_DOLLAR, - ACTIONS(1535), 1, + ACTIONS(1543), 1, sym_identifier, - ACTIONS(1537), 1, + ACTIONS(1545), 1, anon_sym_getline, - ACTIONS(1539), 1, + ACTIONS(1547), 1, anon_sym_SLASH, - ACTIONS(1543), 1, + ACTIONS(1551), 1, anon_sym_AT, STATE(703), 1, sym_ns_qualified_name, @@ -60785,7 +60791,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(368), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1541), 2, + ACTIONS(1549), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(1450), 19, @@ -60821,13 +60827,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, ACTIONS(374), 1, anon_sym_DOLLAR, - ACTIONS(1535), 1, + ACTIONS(1543), 1, sym_identifier, - ACTIONS(1537), 1, + ACTIONS(1545), 1, anon_sym_getline, - ACTIONS(1539), 1, + ACTIONS(1547), 1, anon_sym_SLASH, - ACTIONS(1543), 1, + ACTIONS(1551), 1, anon_sym_AT, STATE(703), 1, sym_ns_qualified_name, @@ -60842,7 +60848,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(368), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1541), 2, + ACTIONS(1549), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(1451), 19, @@ -60866,13 +60872,13 @@ static const uint16_t ts_small_parse_table[] = { sym_func_call, sym_indirect_func_call, [43376] = 3, - ACTIONS(1717), 2, + ACTIONS(1725), 2, anon_sym_GT, anon_sym_GT_GT, - ACTIONS(1719), 2, + ACTIONS(1727), 2, anon_sym_PIPE, anon_sym_PIPE_AMP, - ACTIONS(1417), 34, + ACTIONS(1425), 34, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, @@ -60926,7 +60932,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, ACTIONS(33), 1, anon_sym_DQUOTE, - ACTIONS(1721), 1, + ACTIONS(1729), 1, anon_sym_AT, STATE(401), 1, sym_ns_qualified_name, @@ -60972,19 +60978,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, ACTIONS(484), 1, anon_sym_DQUOTE, - ACTIONS(538), 1, + ACTIONS(544), 1, anon_sym_LPAREN, - ACTIONS(542), 1, + ACTIONS(548), 1, anon_sym_BANG, - ACTIONS(546), 1, + ACTIONS(552), 1, anon_sym_DOLLAR, - ACTIONS(1707), 1, + ACTIONS(1715), 1, sym_identifier, - ACTIONS(1709), 1, + ACTIONS(1717), 1, anon_sym_getline, - ACTIONS(1711), 1, + ACTIONS(1719), 1, anon_sym_SLASH, - ACTIONS(1715), 1, + ACTIONS(1723), 1, anon_sym_AT, STATE(571), 1, sym_ns_qualified_name, @@ -60999,7 +61005,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(71), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1713), 2, + ACTIONS(1721), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(1332), 19, @@ -61029,19 +61035,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, ACTIONS(484), 1, anon_sym_DQUOTE, - ACTIONS(538), 1, + ACTIONS(544), 1, anon_sym_LPAREN, - ACTIONS(542), 1, + ACTIONS(548), 1, anon_sym_BANG, - ACTIONS(546), 1, + ACTIONS(552), 1, anon_sym_DOLLAR, - ACTIONS(1707), 1, + ACTIONS(1715), 1, sym_identifier, - ACTIONS(1709), 1, + ACTIONS(1717), 1, anon_sym_getline, - ACTIONS(1711), 1, + ACTIONS(1719), 1, anon_sym_SLASH, - ACTIONS(1715), 1, + ACTIONS(1723), 1, anon_sym_AT, STATE(571), 1, sym_ns_qualified_name, @@ -61056,7 +61062,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(71), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1713), 2, + ACTIONS(1721), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(1333), 19, @@ -61086,19 +61092,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, ACTIONS(484), 1, anon_sym_DQUOTE, - ACTIONS(538), 1, + ACTIONS(544), 1, anon_sym_LPAREN, - ACTIONS(542), 1, + ACTIONS(548), 1, anon_sym_BANG, - ACTIONS(546), 1, + ACTIONS(552), 1, anon_sym_DOLLAR, - ACTIONS(1707), 1, + ACTIONS(1715), 1, sym_identifier, - ACTIONS(1709), 1, + ACTIONS(1717), 1, anon_sym_getline, - ACTIONS(1711), 1, + ACTIONS(1719), 1, anon_sym_SLASH, - ACTIONS(1715), 1, + ACTIONS(1723), 1, anon_sym_AT, STATE(571), 1, sym_ns_qualified_name, @@ -61113,7 +61119,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(71), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1713), 2, + ACTIONS(1721), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(1334), 19, @@ -61139,23 +61145,23 @@ static const uint16_t ts_small_parse_table[] = { [43723] = 18, ACTIONS(161), 1, anon_sym_DOLLAR, - ACTIONS(1597), 1, + ACTIONS(1605), 1, sym_identifier, - ACTIONS(1613), 1, + ACTIONS(1621), 1, aux_sym_number_token1, - ACTIONS(1615), 1, + ACTIONS(1623), 1, aux_sym_number_token2, - ACTIONS(1617), 1, + ACTIONS(1625), 1, anon_sym_DQUOTE, - ACTIONS(1641), 1, + ACTIONS(1649), 1, anon_sym_LPAREN, - ACTIONS(1643), 1, + ACTIONS(1651), 1, anon_sym_getline, - ACTIONS(1645), 1, + ACTIONS(1653), 1, anon_sym_SLASH, - ACTIONS(1649), 1, + ACTIONS(1657), 1, anon_sym_BANG, - ACTIONS(1653), 1, + ACTIONS(1661), 1, anon_sym_AT, STATE(166), 1, sym_ns_qualified_name, @@ -61167,10 +61173,10 @@ static const uint16_t ts_small_parse_table[] = { sym_field_ref, STATE(1881), 1, sym_namespace, - ACTIONS(1647), 2, + ACTIONS(1655), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1651), 2, + ACTIONS(1659), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(223), 19, @@ -61196,23 +61202,23 @@ static const uint16_t ts_small_parse_table[] = { [43798] = 18, ACTIONS(374), 1, anon_sym_DOLLAR, - ACTIONS(1597), 1, + ACTIONS(1605), 1, sym_identifier, - ACTIONS(1599), 1, + ACTIONS(1607), 1, anon_sym_LPAREN, - ACTIONS(1601), 1, + ACTIONS(1609), 1, anon_sym_getline, - ACTIONS(1603), 1, + ACTIONS(1611), 1, anon_sym_SLASH, - ACTIONS(1607), 1, + ACTIONS(1615), 1, anon_sym_BANG, - ACTIONS(1611), 1, + ACTIONS(1619), 1, anon_sym_AT, - ACTIONS(1613), 1, + ACTIONS(1621), 1, aux_sym_number_token1, - ACTIONS(1615), 1, + ACTIONS(1623), 1, aux_sym_number_token2, - ACTIONS(1617), 1, + ACTIONS(1625), 1, anon_sym_DQUOTE, STATE(166), 1, sym_ns_qualified_name, @@ -61224,10 +61230,10 @@ static const uint16_t ts_small_parse_table[] = { sym_field_ref, STATE(1881), 1, sym_namespace, - ACTIONS(1605), 2, + ACTIONS(1613), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1609), 2, + ACTIONS(1617), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(232), 19, @@ -61315,19 +61321,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, ACTIONS(484), 1, anon_sym_DQUOTE, - ACTIONS(538), 1, + ACTIONS(544), 1, anon_sym_LPAREN, - ACTIONS(542), 1, + ACTIONS(548), 1, anon_sym_BANG, - ACTIONS(546), 1, + ACTIONS(552), 1, anon_sym_DOLLAR, - ACTIONS(1707), 1, + ACTIONS(1715), 1, sym_identifier, - ACTIONS(1709), 1, + ACTIONS(1717), 1, anon_sym_getline, - ACTIONS(1711), 1, + ACTIONS(1719), 1, anon_sym_SLASH, - ACTIONS(1715), 1, + ACTIONS(1723), 1, anon_sym_AT, STATE(571), 1, sym_ns_qualified_name, @@ -61342,7 +61348,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(71), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1713), 2, + ACTIONS(1721), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(1337), 19, @@ -61430,19 +61436,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, ACTIONS(484), 1, anon_sym_DQUOTE, - ACTIONS(538), 1, + ACTIONS(544), 1, anon_sym_LPAREN, - ACTIONS(542), 1, + ACTIONS(548), 1, anon_sym_BANG, - ACTIONS(546), 1, + ACTIONS(552), 1, anon_sym_DOLLAR, - ACTIONS(1707), 1, + ACTIONS(1715), 1, sym_identifier, - ACTIONS(1709), 1, + ACTIONS(1717), 1, anon_sym_getline, - ACTIONS(1711), 1, + ACTIONS(1719), 1, anon_sym_SLASH, - ACTIONS(1715), 1, + ACTIONS(1723), 1, anon_sym_AT, STATE(571), 1, sym_ns_qualified_name, @@ -61457,7 +61463,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(71), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1713), 2, + ACTIONS(1721), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(1339), 19, @@ -61483,23 +61489,23 @@ static const uint16_t ts_small_parse_table[] = { [44177] = 18, ACTIONS(25), 1, anon_sym_DOLLAR, - ACTIONS(1619), 1, + ACTIONS(1627), 1, sym_identifier, - ACTIONS(1621), 1, + ACTIONS(1629), 1, anon_sym_LPAREN, - ACTIONS(1623), 1, + ACTIONS(1631), 1, anon_sym_getline, - ACTIONS(1625), 1, + ACTIONS(1633), 1, anon_sym_SLASH, - ACTIONS(1629), 1, + ACTIONS(1637), 1, anon_sym_BANG, - ACTIONS(1633), 1, + ACTIONS(1641), 1, anon_sym_AT, - ACTIONS(1635), 1, + ACTIONS(1643), 1, aux_sym_number_token1, - ACTIONS(1637), 1, + ACTIONS(1645), 1, aux_sym_number_token2, - ACTIONS(1639), 1, + ACTIONS(1647), 1, anon_sym_DQUOTE, STATE(283), 1, sym_ns_qualified_name, @@ -61511,10 +61517,10 @@ static const uint16_t ts_small_parse_table[] = { sym_field_ref, STATE(2039), 1, sym_namespace, - ACTIONS(1627), 2, + ACTIONS(1635), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1631), 2, + ACTIONS(1639), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(470), 19, @@ -61550,13 +61556,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, ACTIONS(284), 1, anon_sym_DQUOTE, - ACTIONS(1665), 1, + ACTIONS(1673), 1, sym_identifier, - ACTIONS(1667), 1, + ACTIONS(1675), 1, anon_sym_getline, - ACTIONS(1669), 1, + ACTIONS(1677), 1, anon_sym_SLASH, - ACTIONS(1673), 1, + ACTIONS(1681), 1, anon_sym_AT, STATE(584), 1, sym_ns_qualified_name, @@ -61571,7 +61577,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(115), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1671), 2, + ACTIONS(1679), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(1382), 19, @@ -61607,13 +61613,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, ACTIONS(284), 1, anon_sym_DQUOTE, - ACTIONS(1665), 1, + ACTIONS(1673), 1, sym_identifier, - ACTIONS(1667), 1, + ACTIONS(1675), 1, anon_sym_getline, - ACTIONS(1669), 1, + ACTIONS(1677), 1, anon_sym_SLASH, - ACTIONS(1673), 1, + ACTIONS(1681), 1, anon_sym_AT, STATE(584), 1, sym_ns_qualified_name, @@ -61628,7 +61634,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(115), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1671), 2, + ACTIONS(1679), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(1359), 19, @@ -61654,23 +61660,23 @@ static const uint16_t ts_small_parse_table[] = { [44402] = 18, ACTIONS(25), 1, anon_sym_DOLLAR, - ACTIONS(1619), 1, + ACTIONS(1627), 1, sym_identifier, - ACTIONS(1621), 1, + ACTIONS(1629), 1, anon_sym_LPAREN, - ACTIONS(1623), 1, + ACTIONS(1631), 1, anon_sym_getline, - ACTIONS(1625), 1, + ACTIONS(1633), 1, anon_sym_SLASH, - ACTIONS(1629), 1, + ACTIONS(1637), 1, anon_sym_BANG, - ACTIONS(1633), 1, + ACTIONS(1641), 1, anon_sym_AT, - ACTIONS(1635), 1, + ACTIONS(1643), 1, aux_sym_number_token1, - ACTIONS(1637), 1, + ACTIONS(1645), 1, aux_sym_number_token2, - ACTIONS(1639), 1, + ACTIONS(1647), 1, anon_sym_DQUOTE, STATE(283), 1, sym_ns_qualified_name, @@ -61682,10 +61688,10 @@ static const uint16_t ts_small_parse_table[] = { sym_field_ref, STATE(2039), 1, sym_namespace, - ACTIONS(1627), 2, + ACTIONS(1635), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1631), 2, + ACTIONS(1639), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(314), 19, @@ -61711,23 +61717,23 @@ static const uint16_t ts_small_parse_table[] = { [44477] = 18, ACTIONS(478), 1, anon_sym_DOLLAR, - ACTIONS(1575), 1, + ACTIONS(1583), 1, sym_identifier, - ACTIONS(1591), 1, + ACTIONS(1599), 1, aux_sym_number_token1, - ACTIONS(1593), 1, + ACTIONS(1601), 1, aux_sym_number_token2, - ACTIONS(1595), 1, + ACTIONS(1603), 1, anon_sym_DQUOTE, - ACTIONS(1675), 1, + ACTIONS(1683), 1, anon_sym_LPAREN, - ACTIONS(1677), 1, + ACTIONS(1685), 1, anon_sym_getline, - ACTIONS(1679), 1, + ACTIONS(1687), 1, anon_sym_SLASH, - ACTIONS(1683), 1, + ACTIONS(1691), 1, anon_sym_BANG, - ACTIONS(1687), 1, + ACTIONS(1695), 1, anon_sym_AT, STATE(158), 1, sym_ns_qualified_name, @@ -61739,10 +61745,10 @@ static const uint16_t ts_small_parse_table[] = { sym_field_ref, STATE(1958), 1, sym_namespace, - ACTIONS(1681), 2, + ACTIONS(1689), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1685), 2, + ACTIONS(1693), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(186), 19, @@ -61778,13 +61784,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, ACTIONS(484), 1, anon_sym_DQUOTE, - ACTIONS(1249), 1, + ACTIONS(1257), 1, anon_sym_getline, - ACTIONS(1251), 1, + ACTIONS(1259), 1, anon_sym_SLASH, - ACTIONS(1261), 1, + ACTIONS(1269), 1, anon_sym_AT, - ACTIONS(1723), 1, + ACTIONS(1731), 1, sym_identifier, STATE(174), 1, sym_array_ref, @@ -61799,7 +61805,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(472), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1257), 2, + ACTIONS(1265), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(1286), 9, @@ -61826,23 +61832,23 @@ static const uint16_t ts_small_parse_table[] = { [44629] = 18, ACTIONS(478), 1, anon_sym_DOLLAR, - ACTIONS(1575), 1, + ACTIONS(1583), 1, sym_identifier, - ACTIONS(1591), 1, + ACTIONS(1599), 1, aux_sym_number_token1, - ACTIONS(1593), 1, + ACTIONS(1601), 1, aux_sym_number_token2, - ACTIONS(1595), 1, + ACTIONS(1603), 1, anon_sym_DQUOTE, - ACTIONS(1675), 1, + ACTIONS(1683), 1, anon_sym_LPAREN, - ACTIONS(1677), 1, + ACTIONS(1685), 1, anon_sym_getline, - ACTIONS(1679), 1, + ACTIONS(1687), 1, anon_sym_SLASH, - ACTIONS(1683), 1, + ACTIONS(1691), 1, anon_sym_BANG, - ACTIONS(1687), 1, + ACTIONS(1695), 1, anon_sym_AT, STATE(158), 1, sym_ns_qualified_name, @@ -61854,10 +61860,10 @@ static const uint16_t ts_small_parse_table[] = { sym_field_ref, STATE(1958), 1, sym_namespace, - ACTIONS(1681), 2, + ACTIONS(1689), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1685), 2, + ACTIONS(1693), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(208), 19, @@ -61881,41 +61887,41 @@ static const uint16_t ts_small_parse_table[] = { sym_func_call, sym_indirect_func_call, [44704] = 12, - ACTIONS(1699), 1, + ACTIONS(1707), 1, anon_sym_in, - ACTIONS(1701), 1, + ACTIONS(1709), 1, anon_sym_AMP_AMP, - ACTIONS(1703), 1, + ACTIONS(1711), 1, anon_sym_QMARK, - ACTIONS(1705), 1, + ACTIONS(1713), 1, anon_sym_PIPE_PIPE, - ACTIONS(848), 2, + ACTIONS(856), 2, sym_concatenating_space, sym__if_else_separator, - ACTIONS(1291), 2, + ACTIONS(1299), 2, anon_sym_PIPE, anon_sym_PIPE_AMP, - ACTIONS(1691), 2, + ACTIONS(1699), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(1695), 2, + ACTIONS(1703), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1697), 2, + ACTIONS(1705), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(1693), 3, + ACTIONS(1701), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1689), 6, + ACTIONS(1697), 6, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(836), 15, + ACTIONS(844), 15, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -61944,13 +61950,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, ACTIONS(484), 1, anon_sym_DQUOTE, - ACTIONS(1555), 1, + ACTIONS(1563), 1, sym_identifier, - ACTIONS(1557), 1, + ACTIONS(1565), 1, anon_sym_getline, - ACTIONS(1559), 1, + ACTIONS(1567), 1, anon_sym_SLASH, - ACTIONS(1563), 1, + ACTIONS(1571), 1, anon_sym_AT, STATE(678), 1, sym_ns_qualified_name, @@ -61965,7 +61971,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(472), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1561), 2, + ACTIONS(1569), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(1419), 19, @@ -62001,13 +62007,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, ACTIONS(484), 1, anon_sym_DQUOTE, - ACTIONS(1555), 1, + ACTIONS(1563), 1, sym_identifier, - ACTIONS(1557), 1, + ACTIONS(1565), 1, anon_sym_getline, - ACTIONS(1559), 1, + ACTIONS(1567), 1, anon_sym_SLASH, - ACTIONS(1563), 1, + ACTIONS(1571), 1, anon_sym_AT, STATE(678), 1, sym_ns_qualified_name, @@ -62022,7 +62028,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(472), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1561), 2, + ACTIONS(1569), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(1420), 19, @@ -62058,13 +62064,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, ACTIONS(484), 1, anon_sym_DQUOTE, - ACTIONS(1555), 1, + ACTIONS(1563), 1, sym_identifier, - ACTIONS(1557), 1, + ACTIONS(1565), 1, anon_sym_getline, - ACTIONS(1559), 1, + ACTIONS(1567), 1, anon_sym_SLASH, - ACTIONS(1563), 1, + ACTIONS(1571), 1, anon_sym_AT, STATE(678), 1, sym_ns_qualified_name, @@ -62079,7 +62085,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(472), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1561), 2, + ACTIONS(1569), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(1280), 19, @@ -62115,13 +62121,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, ACTIONS(484), 1, anon_sym_DQUOTE, - ACTIONS(1555), 1, + ACTIONS(1563), 1, sym_identifier, - ACTIONS(1557), 1, + ACTIONS(1565), 1, anon_sym_getline, - ACTIONS(1559), 1, + ACTIONS(1567), 1, anon_sym_SLASH, - ACTIONS(1563), 1, + ACTIONS(1571), 1, anon_sym_AT, STATE(678), 1, sym_ns_qualified_name, @@ -62136,7 +62142,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(472), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1561), 2, + ACTIONS(1569), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(1421), 19, @@ -62172,13 +62178,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, ACTIONS(484), 1, anon_sym_DQUOTE, - ACTIONS(1555), 1, + ACTIONS(1563), 1, sym_identifier, - ACTIONS(1557), 1, + ACTIONS(1565), 1, anon_sym_getline, - ACTIONS(1559), 1, + ACTIONS(1567), 1, anon_sym_SLASH, - ACTIONS(1563), 1, + ACTIONS(1571), 1, anon_sym_AT, STATE(678), 1, sym_ns_qualified_name, @@ -62193,7 +62199,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(472), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1561), 2, + ACTIONS(1569), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(1422), 19, @@ -62229,13 +62235,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, ACTIONS(484), 1, anon_sym_DQUOTE, - ACTIONS(1555), 1, + ACTIONS(1563), 1, sym_identifier, - ACTIONS(1557), 1, + ACTIONS(1565), 1, anon_sym_getline, - ACTIONS(1559), 1, + ACTIONS(1567), 1, anon_sym_SLASH, - ACTIONS(1563), 1, + ACTIONS(1571), 1, anon_sym_AT, STATE(678), 1, sym_ns_qualified_name, @@ -62250,7 +62256,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(472), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1561), 2, + ACTIONS(1569), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(1405), 19, @@ -62286,13 +62292,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, ACTIONS(484), 1, anon_sym_DQUOTE, - ACTIONS(1555), 1, + ACTIONS(1563), 1, sym_identifier, - ACTIONS(1557), 1, + ACTIONS(1565), 1, anon_sym_getline, - ACTIONS(1559), 1, + ACTIONS(1567), 1, anon_sym_SLASH, - ACTIONS(1563), 1, + ACTIONS(1571), 1, anon_sym_AT, STATE(678), 1, sym_ns_qualified_name, @@ -62307,7 +62313,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(472), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1561), 2, + ACTIONS(1569), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(1424), 19, @@ -62343,13 +62349,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, ACTIONS(484), 1, anon_sym_DQUOTE, - ACTIONS(1555), 1, + ACTIONS(1563), 1, sym_identifier, - ACTIONS(1557), 1, + ACTIONS(1565), 1, anon_sym_getline, - ACTIONS(1559), 1, + ACTIONS(1567), 1, anon_sym_SLASH, - ACTIONS(1563), 1, + ACTIONS(1571), 1, anon_sym_AT, STATE(678), 1, sym_ns_qualified_name, @@ -62364,7 +62370,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(472), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1561), 2, + ACTIONS(1569), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(1425), 19, @@ -62400,13 +62406,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, ACTIONS(33), 1, anon_sym_DQUOTE, - ACTIONS(1249), 1, + ACTIONS(1257), 1, anon_sym_getline, - ACTIONS(1251), 1, + ACTIONS(1259), 1, anon_sym_SLASH, - ACTIONS(1261), 1, + ACTIONS(1269), 1, anon_sym_AT, - ACTIONS(1725), 1, + ACTIONS(1733), 1, sym_identifier, STATE(295), 1, sym_array_ref, @@ -62421,7 +62427,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(19), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1257), 2, + ACTIONS(1265), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(519), 9, @@ -62458,13 +62464,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, ACTIONS(374), 1, anon_sym_DOLLAR, - ACTIONS(1535), 1, + ACTIONS(1543), 1, sym_identifier, - ACTIONS(1537), 1, + ACTIONS(1545), 1, anon_sym_getline, - ACTIONS(1539), 1, + ACTIONS(1547), 1, anon_sym_SLASH, - ACTIONS(1543), 1, + ACTIONS(1551), 1, anon_sym_AT, STATE(703), 1, sym_ns_qualified_name, @@ -62479,7 +62485,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(368), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1541), 2, + ACTIONS(1549), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(1452), 19, @@ -62505,23 +62511,23 @@ static const uint16_t ts_small_parse_table[] = { [45519] = 18, ACTIONS(161), 1, anon_sym_DOLLAR, - ACTIONS(1597), 1, + ACTIONS(1605), 1, sym_identifier, - ACTIONS(1613), 1, + ACTIONS(1621), 1, aux_sym_number_token1, - ACTIONS(1615), 1, + ACTIONS(1623), 1, aux_sym_number_token2, - ACTIONS(1617), 1, + ACTIONS(1625), 1, anon_sym_DQUOTE, - ACTIONS(1641), 1, + ACTIONS(1649), 1, anon_sym_LPAREN, - ACTIONS(1643), 1, + ACTIONS(1651), 1, anon_sym_getline, - ACTIONS(1645), 1, + ACTIONS(1653), 1, anon_sym_SLASH, - ACTIONS(1649), 1, + ACTIONS(1657), 1, anon_sym_BANG, - ACTIONS(1653), 1, + ACTIONS(1661), 1, anon_sym_AT, STATE(166), 1, sym_ns_qualified_name, @@ -62533,10 +62539,10 @@ static const uint16_t ts_small_parse_table[] = { sym_field_ref, STATE(1881), 1, sym_namespace, - ACTIONS(1647), 2, + ACTIONS(1655), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1651), 2, + ACTIONS(1659), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(232), 19, @@ -62572,13 +62578,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, ACTIONS(374), 1, anon_sym_DOLLAR, - ACTIONS(1535), 1, + ACTIONS(1543), 1, sym_identifier, - ACTIONS(1537), 1, + ACTIONS(1545), 1, anon_sym_getline, - ACTIONS(1539), 1, + ACTIONS(1547), 1, anon_sym_SLASH, - ACTIONS(1543), 1, + ACTIONS(1551), 1, anon_sym_AT, STATE(703), 1, sym_ns_qualified_name, @@ -62593,7 +62599,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(368), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1541), 2, + ACTIONS(1549), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(1453), 19, @@ -62617,25 +62623,25 @@ static const uint16_t ts_small_parse_table[] = { sym_func_call, sym_indirect_func_call, [45669] = 18, - ACTIONS(1259), 1, + ACTIONS(1267), 1, anon_sym_DOLLAR, - ACTIONS(1619), 1, + ACTIONS(1627), 1, sym_identifier, - ACTIONS(1635), 1, + ACTIONS(1643), 1, aux_sym_number_token1, - ACTIONS(1637), 1, + ACTIONS(1645), 1, aux_sym_number_token2, - ACTIONS(1639), 1, + ACTIONS(1647), 1, anon_sym_DQUOTE, - ACTIONS(1727), 1, + ACTIONS(1735), 1, anon_sym_LPAREN, - ACTIONS(1729), 1, + ACTIONS(1737), 1, anon_sym_getline, - ACTIONS(1731), 1, + ACTIONS(1739), 1, anon_sym_SLASH, - ACTIONS(1735), 1, + ACTIONS(1743), 1, anon_sym_BANG, - ACTIONS(1739), 1, + ACTIONS(1747), 1, anon_sym_AT, STATE(283), 1, sym_ns_qualified_name, @@ -62647,10 +62653,10 @@ static const uint16_t ts_small_parse_table[] = { sym_field_ref, STATE(2039), 1, sym_namespace, - ACTIONS(1733), 2, + ACTIONS(1741), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1737), 2, + ACTIONS(1745), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(314), 19, @@ -62744,13 +62750,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, ACTIONS(374), 1, anon_sym_DOLLAR, - ACTIONS(1535), 1, + ACTIONS(1543), 1, sym_identifier, - ACTIONS(1537), 1, + ACTIONS(1545), 1, anon_sym_getline, - ACTIONS(1539), 1, + ACTIONS(1547), 1, anon_sym_SLASH, - ACTIONS(1543), 1, + ACTIONS(1551), 1, anon_sym_AT, STATE(703), 1, sym_ns_qualified_name, @@ -62765,7 +62771,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(368), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1541), 2, + ACTIONS(1549), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(1454), 19, @@ -62801,13 +62807,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, ACTIONS(374), 1, anon_sym_DOLLAR, - ACTIONS(1535), 1, + ACTIONS(1543), 1, sym_identifier, - ACTIONS(1537), 1, + ACTIONS(1545), 1, anon_sym_getline, - ACTIONS(1539), 1, + ACTIONS(1547), 1, anon_sym_SLASH, - ACTIONS(1543), 1, + ACTIONS(1551), 1, anon_sym_AT, STATE(703), 1, sym_ns_qualified_name, @@ -62822,7 +62828,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(368), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1541), 2, + ACTIONS(1549), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(1455), 19, @@ -62858,13 +62864,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, ACTIONS(374), 1, anon_sym_DOLLAR, - ACTIONS(1535), 1, + ACTIONS(1543), 1, sym_identifier, - ACTIONS(1537), 1, + ACTIONS(1545), 1, anon_sym_getline, - ACTIONS(1539), 1, + ACTIONS(1547), 1, anon_sym_SLASH, - ACTIONS(1543), 1, + ACTIONS(1551), 1, anon_sym_AT, STATE(703), 1, sym_ns_qualified_name, @@ -62879,7 +62885,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(368), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1541), 2, + ACTIONS(1549), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(1456), 19, @@ -62915,13 +62921,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, ACTIONS(284), 1, anon_sym_DQUOTE, - ACTIONS(1665), 1, + ACTIONS(1673), 1, sym_identifier, - ACTIONS(1667), 1, + ACTIONS(1675), 1, anon_sym_getline, - ACTIONS(1669), 1, + ACTIONS(1677), 1, anon_sym_SLASH, - ACTIONS(1673), 1, + ACTIONS(1681), 1, anon_sym_AT, STATE(584), 1, sym_ns_qualified_name, @@ -62936,7 +62942,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(115), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1671), 2, + ACTIONS(1679), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(1362), 19, @@ -62972,13 +62978,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, ACTIONS(284), 1, anon_sym_DQUOTE, - ACTIONS(1665), 1, + ACTIONS(1673), 1, sym_identifier, - ACTIONS(1667), 1, + ACTIONS(1675), 1, anon_sym_getline, - ACTIONS(1669), 1, + ACTIONS(1677), 1, anon_sym_SLASH, - ACTIONS(1673), 1, + ACTIONS(1681), 1, anon_sym_AT, STATE(584), 1, sym_ns_qualified_name, @@ -62993,7 +62999,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(115), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1671), 2, + ACTIONS(1679), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(1394), 19, @@ -63029,13 +63035,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, ACTIONS(374), 1, anon_sym_DOLLAR, - ACTIONS(1535), 1, + ACTIONS(1543), 1, sym_identifier, - ACTIONS(1537), 1, + ACTIONS(1545), 1, anon_sym_getline, - ACTIONS(1539), 1, + ACTIONS(1547), 1, anon_sym_SLASH, - ACTIONS(1543), 1, + ACTIONS(1551), 1, anon_sym_AT, STATE(703), 1, sym_ns_qualified_name, @@ -63050,7 +63056,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(368), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1541), 2, + ACTIONS(1549), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(1336), 19, @@ -63086,13 +63092,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, ACTIONS(374), 1, anon_sym_DOLLAR, - ACTIONS(1535), 1, + ACTIONS(1543), 1, sym_identifier, - ACTIONS(1537), 1, + ACTIONS(1545), 1, anon_sym_getline, - ACTIONS(1539), 1, + ACTIONS(1547), 1, anon_sym_SLASH, - ACTIONS(1543), 1, + ACTIONS(1551), 1, anon_sym_AT, STATE(703), 1, sym_ns_qualified_name, @@ -63107,7 +63113,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(368), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1541), 2, + ACTIONS(1549), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(1457), 19, @@ -63133,23 +63139,23 @@ static const uint16_t ts_small_parse_table[] = { [46346] = 18, ACTIONS(328), 1, anon_sym_DOLLAR, - ACTIONS(1575), 1, + ACTIONS(1583), 1, sym_identifier, - ACTIONS(1577), 1, + ACTIONS(1585), 1, anon_sym_LPAREN, - ACTIONS(1579), 1, + ACTIONS(1587), 1, anon_sym_getline, - ACTIONS(1581), 1, + ACTIONS(1589), 1, anon_sym_SLASH, - ACTIONS(1585), 1, + ACTIONS(1593), 1, anon_sym_BANG, - ACTIONS(1589), 1, + ACTIONS(1597), 1, anon_sym_AT, - ACTIONS(1591), 1, + ACTIONS(1599), 1, aux_sym_number_token1, - ACTIONS(1593), 1, + ACTIONS(1601), 1, aux_sym_number_token2, - ACTIONS(1595), 1, + ACTIONS(1603), 1, anon_sym_DQUOTE, STATE(158), 1, sym_ns_qualified_name, @@ -63161,10 +63167,10 @@ static const uint16_t ts_small_parse_table[] = { sym_field_ref, STATE(1958), 1, sym_namespace, - ACTIONS(1583), 2, + ACTIONS(1591), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1587), 2, + ACTIONS(1595), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(197), 19, @@ -63200,13 +63206,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, ACTIONS(284), 1, anon_sym_DQUOTE, - ACTIONS(1665), 1, + ACTIONS(1673), 1, sym_identifier, - ACTIONS(1667), 1, + ACTIONS(1675), 1, anon_sym_getline, - ACTIONS(1669), 1, + ACTIONS(1677), 1, anon_sym_SLASH, - ACTIONS(1673), 1, + ACTIONS(1681), 1, anon_sym_AT, STATE(584), 1, sym_ns_qualified_name, @@ -63221,7 +63227,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(115), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1671), 2, + ACTIONS(1679), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(1361), 19, @@ -63257,13 +63263,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, ACTIONS(284), 1, anon_sym_DQUOTE, - ACTIONS(1665), 1, + ACTIONS(1673), 1, sym_identifier, - ACTIONS(1667), 1, + ACTIONS(1675), 1, anon_sym_getline, - ACTIONS(1669), 1, + ACTIONS(1677), 1, anon_sym_SLASH, - ACTIONS(1673), 1, + ACTIONS(1681), 1, anon_sym_AT, STATE(584), 1, sym_ns_qualified_name, @@ -63278,7 +63284,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(115), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1671), 2, + ACTIONS(1679), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(1392), 19, @@ -63314,13 +63320,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, ACTIONS(284), 1, anon_sym_DQUOTE, - ACTIONS(1665), 1, + ACTIONS(1673), 1, sym_identifier, - ACTIONS(1667), 1, + ACTIONS(1675), 1, anon_sym_getline, - ACTIONS(1669), 1, + ACTIONS(1677), 1, anon_sym_SLASH, - ACTIONS(1673), 1, + ACTIONS(1681), 1, anon_sym_AT, STATE(584), 1, sym_ns_qualified_name, @@ -63335,7 +63341,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(115), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1671), 2, + ACTIONS(1679), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(1391), 19, @@ -63371,13 +63377,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, ACTIONS(284), 1, anon_sym_DQUOTE, - ACTIONS(1665), 1, + ACTIONS(1673), 1, sym_identifier, - ACTIONS(1667), 1, + ACTIONS(1675), 1, anon_sym_getline, - ACTIONS(1669), 1, + ACTIONS(1677), 1, anon_sym_SLASH, - ACTIONS(1673), 1, + ACTIONS(1681), 1, anon_sym_AT, STATE(584), 1, sym_ns_qualified_name, @@ -63392,7 +63398,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(115), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1671), 2, + ACTIONS(1679), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(1336), 19, @@ -63428,13 +63434,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, ACTIONS(284), 1, anon_sym_DQUOTE, - ACTIONS(1665), 1, + ACTIONS(1673), 1, sym_identifier, - ACTIONS(1667), 1, + ACTIONS(1675), 1, anon_sym_getline, - ACTIONS(1669), 1, + ACTIONS(1677), 1, anon_sym_SLASH, - ACTIONS(1673), 1, + ACTIONS(1681), 1, anon_sym_AT, STATE(584), 1, sym_ns_qualified_name, @@ -63449,7 +63455,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(115), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1671), 2, + ACTIONS(1679), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(1390), 19, @@ -63485,13 +63491,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, ACTIONS(484), 1, anon_sym_DQUOTE, - ACTIONS(1555), 1, + ACTIONS(1563), 1, sym_identifier, - ACTIONS(1557), 1, + ACTIONS(1565), 1, anon_sym_getline, - ACTIONS(1559), 1, + ACTIONS(1567), 1, anon_sym_SLASH, - ACTIONS(1563), 1, + ACTIONS(1571), 1, anon_sym_AT, STATE(678), 1, sym_ns_qualified_name, @@ -63506,7 +63512,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(472), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1561), 2, + ACTIONS(1569), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(1428), 19, @@ -63542,13 +63548,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, ACTIONS(374), 1, anon_sym_DOLLAR, - ACTIONS(1535), 1, + ACTIONS(1543), 1, sym_identifier, - ACTIONS(1537), 1, + ACTIONS(1545), 1, anon_sym_getline, - ACTIONS(1539), 1, + ACTIONS(1547), 1, anon_sym_SLASH, - ACTIONS(1543), 1, + ACTIONS(1551), 1, anon_sym_AT, STATE(703), 1, sym_ns_qualified_name, @@ -63563,7 +63569,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(368), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1541), 2, + ACTIONS(1549), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(1458), 19, @@ -63599,13 +63605,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, ACTIONS(374), 1, anon_sym_DOLLAR, - ACTIONS(1249), 1, + ACTIONS(1257), 1, anon_sym_getline, - ACTIONS(1251), 1, + ACTIONS(1259), 1, anon_sym_SLASH, - ACTIONS(1261), 1, + ACTIONS(1269), 1, anon_sym_AT, - ACTIONS(1741), 1, + ACTIONS(1749), 1, sym_identifier, STATE(207), 1, sym_array_ref, @@ -63620,7 +63626,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(368), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1257), 2, + ACTIONS(1265), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(1318), 9, @@ -63655,15 +63661,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, ACTIONS(484), 1, anon_sym_DQUOTE, - ACTIONS(538), 1, + ACTIONS(544), 1, anon_sym_LPAREN, - ACTIONS(540), 1, + ACTIONS(546), 1, anon_sym_SLASH, - ACTIONS(542), 1, + ACTIONS(548), 1, anon_sym_BANG, - ACTIONS(546), 1, + ACTIONS(552), 1, anon_sym_DOLLAR, - ACTIONS(548), 1, + ACTIONS(554), 1, anon_sym_AT, STATE(575), 1, sym_ns_qualified_name, @@ -63678,7 +63684,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(71), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(544), 2, + ACTIONS(550), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(1314), 9, @@ -63705,23 +63711,23 @@ static const uint16_t ts_small_parse_table[] = { [47100] = 18, ACTIONS(25), 1, anon_sym_DOLLAR, - ACTIONS(1619), 1, + ACTIONS(1627), 1, sym_identifier, - ACTIONS(1621), 1, + ACTIONS(1629), 1, anon_sym_LPAREN, - ACTIONS(1623), 1, + ACTIONS(1631), 1, anon_sym_getline, - ACTIONS(1625), 1, + ACTIONS(1633), 1, anon_sym_SLASH, - ACTIONS(1629), 1, + ACTIONS(1637), 1, anon_sym_BANG, - ACTIONS(1633), 1, + ACTIONS(1641), 1, anon_sym_AT, - ACTIONS(1635), 1, + ACTIONS(1643), 1, aux_sym_number_token1, - ACTIONS(1637), 1, + ACTIONS(1645), 1, aux_sym_number_token2, - ACTIONS(1639), 1, + ACTIONS(1647), 1, anon_sym_DQUOTE, STATE(283), 1, sym_ns_qualified_name, @@ -63733,10 +63739,10 @@ static const uint16_t ts_small_parse_table[] = { sym_field_ref, STATE(2039), 1, sym_namespace, - ACTIONS(1627), 2, + ACTIONS(1635), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1631), 2, + ACTIONS(1639), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(309), 19, @@ -63770,15 +63776,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, ACTIONS(484), 1, anon_sym_DQUOTE, - ACTIONS(538), 1, + ACTIONS(544), 1, anon_sym_LPAREN, - ACTIONS(540), 1, + ACTIONS(546), 1, anon_sym_SLASH, - ACTIONS(542), 1, + ACTIONS(548), 1, anon_sym_BANG, - ACTIONS(546), 1, + ACTIONS(552), 1, anon_sym_DOLLAR, - ACTIONS(548), 1, + ACTIONS(554), 1, anon_sym_AT, STATE(575), 1, sym_ns_qualified_name, @@ -63793,7 +63799,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(71), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(544), 2, + ACTIONS(550), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(1314), 9, @@ -63830,13 +63836,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, ACTIONS(484), 1, anon_sym_DQUOTE, - ACTIONS(1555), 1, + ACTIONS(1563), 1, sym_identifier, - ACTIONS(1557), 1, + ACTIONS(1565), 1, anon_sym_getline, - ACTIONS(1559), 1, + ACTIONS(1567), 1, anon_sym_SLASH, - ACTIONS(1563), 1, + ACTIONS(1571), 1, anon_sym_AT, STATE(678), 1, sym_ns_qualified_name, @@ -63851,7 +63857,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(472), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1561), 2, + ACTIONS(1569), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(1426), 19, @@ -63885,15 +63891,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, ACTIONS(484), 1, anon_sym_DQUOTE, - ACTIONS(538), 1, + ACTIONS(544), 1, anon_sym_LPAREN, - ACTIONS(540), 1, + ACTIONS(546), 1, anon_sym_SLASH, - ACTIONS(542), 1, + ACTIONS(548), 1, anon_sym_BANG, - ACTIONS(546), 1, + ACTIONS(552), 1, anon_sym_DOLLAR, - ACTIONS(548), 1, + ACTIONS(554), 1, anon_sym_AT, STATE(575), 1, sym_ns_qualified_name, @@ -63908,7 +63914,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(71), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(544), 2, + ACTIONS(550), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(1314), 9, @@ -63945,13 +63951,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, ACTIONS(284), 1, anon_sym_DQUOTE, - ACTIONS(1665), 1, + ACTIONS(1673), 1, sym_identifier, - ACTIONS(1667), 1, + ACTIONS(1675), 1, anon_sym_getline, - ACTIONS(1669), 1, + ACTIONS(1677), 1, anon_sym_SLASH, - ACTIONS(1673), 1, + ACTIONS(1681), 1, anon_sym_AT, STATE(584), 1, sym_ns_qualified_name, @@ -63966,7 +63972,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(115), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1671), 2, + ACTIONS(1679), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(1386), 19, @@ -63990,25 +63996,25 @@ static const uint16_t ts_small_parse_table[] = { sym_func_call, sym_indirect_func_call, [47479] = 18, - ACTIONS(1259), 1, + ACTIONS(1267), 1, anon_sym_DOLLAR, - ACTIONS(1619), 1, + ACTIONS(1627), 1, sym_identifier, - ACTIONS(1635), 1, + ACTIONS(1643), 1, aux_sym_number_token1, - ACTIONS(1637), 1, + ACTIONS(1645), 1, aux_sym_number_token2, - ACTIONS(1639), 1, + ACTIONS(1647), 1, anon_sym_DQUOTE, - ACTIONS(1727), 1, + ACTIONS(1735), 1, anon_sym_LPAREN, - ACTIONS(1729), 1, + ACTIONS(1737), 1, anon_sym_getline, - ACTIONS(1731), 1, + ACTIONS(1739), 1, anon_sym_SLASH, - ACTIONS(1735), 1, + ACTIONS(1743), 1, anon_sym_BANG, - ACTIONS(1739), 1, + ACTIONS(1747), 1, anon_sym_AT, STATE(283), 1, sym_ns_qualified_name, @@ -64020,10 +64026,10 @@ static const uint16_t ts_small_parse_table[] = { sym_field_ref, STATE(2039), 1, sym_namespace, - ACTIONS(1733), 2, + ACTIONS(1741), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1737), 2, + ACTIONS(1745), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(309), 19, @@ -64053,19 +64059,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, ACTIONS(484), 1, anon_sym_DQUOTE, - ACTIONS(538), 1, + ACTIONS(544), 1, anon_sym_LPAREN, - ACTIONS(542), 1, + ACTIONS(548), 1, anon_sym_BANG, - ACTIONS(546), 1, + ACTIONS(552), 1, anon_sym_DOLLAR, - ACTIONS(1707), 1, + ACTIONS(1715), 1, sym_identifier, - ACTIONS(1709), 1, + ACTIONS(1717), 1, anon_sym_getline, - ACTIONS(1711), 1, + ACTIONS(1719), 1, anon_sym_SLASH, - ACTIONS(1715), 1, + ACTIONS(1723), 1, anon_sym_AT, STATE(571), 1, sym_ns_qualified_name, @@ -64080,7 +64086,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(71), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1713), 2, + ACTIONS(1721), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(1292), 19, @@ -64106,23 +64112,23 @@ static const uint16_t ts_small_parse_table[] = { [47629] = 18, ACTIONS(25), 1, anon_sym_DOLLAR, - ACTIONS(1619), 1, + ACTIONS(1627), 1, sym_identifier, - ACTIONS(1621), 1, + ACTIONS(1629), 1, anon_sym_LPAREN, - ACTIONS(1623), 1, + ACTIONS(1631), 1, anon_sym_getline, - ACTIONS(1625), 1, + ACTIONS(1633), 1, anon_sym_SLASH, - ACTIONS(1629), 1, + ACTIONS(1637), 1, anon_sym_BANG, - ACTIONS(1633), 1, + ACTIONS(1641), 1, anon_sym_AT, - ACTIONS(1635), 1, + ACTIONS(1643), 1, aux_sym_number_token1, - ACTIONS(1637), 1, + ACTIONS(1645), 1, aux_sym_number_token2, - ACTIONS(1639), 1, + ACTIONS(1647), 1, anon_sym_DQUOTE, STATE(283), 1, sym_ns_qualified_name, @@ -64134,10 +64140,10 @@ static const uint16_t ts_small_parse_table[] = { sym_field_ref, STATE(2039), 1, sym_namespace, - ACTIONS(1627), 2, + ACTIONS(1635), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1631), 2, + ACTIONS(1639), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(480), 19, @@ -64173,13 +64179,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, ACTIONS(374), 1, anon_sym_DOLLAR, - ACTIONS(1535), 1, + ACTIONS(1543), 1, sym_identifier, - ACTIONS(1537), 1, + ACTIONS(1545), 1, anon_sym_getline, - ACTIONS(1539), 1, + ACTIONS(1547), 1, anon_sym_SLASH, - ACTIONS(1543), 1, + ACTIONS(1551), 1, anon_sym_AT, STATE(703), 1, sym_ns_qualified_name, @@ -64194,7 +64200,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(368), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1541), 2, + ACTIONS(1549), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(1352), 19, @@ -64236,7 +64242,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, ACTIONS(33), 1, anon_sym_DQUOTE, - ACTIONS(1721), 1, + ACTIONS(1729), 1, anon_sym_AT, STATE(401), 1, sym_ns_qualified_name, @@ -64294,7 +64300,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, ACTIONS(33), 1, anon_sym_DQUOTE, - ACTIONS(1721), 1, + ACTIONS(1729), 1, anon_sym_AT, STATE(401), 1, sym_ns_qualified_name, @@ -64334,25 +64340,25 @@ static const uint16_t ts_small_parse_table[] = { sym_regex_constant, sym_indirect_func_call, [47933] = 18, - ACTIONS(1259), 1, + ACTIONS(1267), 1, anon_sym_DOLLAR, - ACTIONS(1619), 1, + ACTIONS(1627), 1, sym_identifier, - ACTIONS(1635), 1, + ACTIONS(1643), 1, aux_sym_number_token1, - ACTIONS(1637), 1, + ACTIONS(1645), 1, aux_sym_number_token2, - ACTIONS(1639), 1, + ACTIONS(1647), 1, anon_sym_DQUOTE, - ACTIONS(1727), 1, + ACTIONS(1735), 1, anon_sym_LPAREN, - ACTIONS(1729), 1, + ACTIONS(1737), 1, anon_sym_getline, - ACTIONS(1731), 1, + ACTIONS(1739), 1, anon_sym_SLASH, - ACTIONS(1735), 1, + ACTIONS(1743), 1, anon_sym_BANG, - ACTIONS(1739), 1, + ACTIONS(1747), 1, anon_sym_AT, STATE(283), 1, sym_ns_qualified_name, @@ -64364,10 +64370,10 @@ static const uint16_t ts_small_parse_table[] = { sym_field_ref, STATE(2039), 1, sym_namespace, - ACTIONS(1733), 2, + ACTIONS(1741), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1737), 2, + ACTIONS(1745), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(1199), 19, @@ -64403,13 +64409,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, ACTIONS(33), 1, anon_sym_DQUOTE, - ACTIONS(1523), 1, + ACTIONS(1531), 1, sym_identifier, - ACTIONS(1525), 1, + ACTIONS(1533), 1, anon_sym_getline, - ACTIONS(1527), 1, + ACTIONS(1535), 1, anon_sym_SLASH, - ACTIONS(1531), 1, + ACTIONS(1539), 1, anon_sym_AT, STATE(431), 1, sym_ns_qualified_name, @@ -64424,7 +64430,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(19), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1529), 2, + ACTIONS(1537), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(529), 19, @@ -64448,25 +64454,25 @@ static const uint16_t ts_small_parse_table[] = { sym_func_call, sym_indirect_func_call, [48083] = 18, - ACTIONS(1259), 1, + ACTIONS(1267), 1, anon_sym_DOLLAR, - ACTIONS(1619), 1, + ACTIONS(1627), 1, sym_identifier, - ACTIONS(1635), 1, + ACTIONS(1643), 1, aux_sym_number_token1, - ACTIONS(1637), 1, + ACTIONS(1645), 1, aux_sym_number_token2, - ACTIONS(1639), 1, + ACTIONS(1647), 1, anon_sym_DQUOTE, - ACTIONS(1727), 1, + ACTIONS(1735), 1, anon_sym_LPAREN, - ACTIONS(1729), 1, + ACTIONS(1737), 1, anon_sym_getline, - ACTIONS(1731), 1, + ACTIONS(1739), 1, anon_sym_SLASH, - ACTIONS(1735), 1, + ACTIONS(1743), 1, anon_sym_BANG, - ACTIONS(1739), 1, + ACTIONS(1747), 1, anon_sym_AT, STATE(283), 1, sym_ns_qualified_name, @@ -64478,10 +64484,10 @@ static const uint16_t ts_small_parse_table[] = { sym_field_ref, STATE(2039), 1, sym_namespace, - ACTIONS(1733), 2, + ACTIONS(1741), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1737), 2, + ACTIONS(1745), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(1200), 19, @@ -64517,13 +64523,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, ACTIONS(33), 1, anon_sym_DQUOTE, - ACTIONS(1523), 1, + ACTIONS(1531), 1, sym_identifier, - ACTIONS(1525), 1, + ACTIONS(1533), 1, anon_sym_getline, - ACTIONS(1527), 1, + ACTIONS(1535), 1, anon_sym_SLASH, - ACTIONS(1531), 1, + ACTIONS(1539), 1, anon_sym_AT, STATE(431), 1, sym_ns_qualified_name, @@ -64538,7 +64544,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(19), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1529), 2, + ACTIONS(1537), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(525), 19, @@ -64562,25 +64568,25 @@ static const uint16_t ts_small_parse_table[] = { sym_func_call, sym_indirect_func_call, [48233] = 19, - ACTIONS(1245), 1, + ACTIONS(1253), 1, sym_identifier, - ACTIONS(1247), 1, + ACTIONS(1255), 1, anon_sym_LPAREN, - ACTIONS(1249), 1, + ACTIONS(1257), 1, anon_sym_getline, - ACTIONS(1251), 1, + ACTIONS(1259), 1, anon_sym_SLASH, - ACTIONS(1255), 1, + ACTIONS(1263), 1, anon_sym_BANG, - ACTIONS(1259), 1, + ACTIONS(1267), 1, anon_sym_DOLLAR, - ACTIONS(1261), 1, + ACTIONS(1269), 1, anon_sym_AT, - ACTIONS(1263), 1, + ACTIONS(1271), 1, aux_sym_number_token1, - ACTIONS(1265), 1, + ACTIONS(1273), 1, aux_sym_number_token2, - ACTIONS(1267), 1, + ACTIONS(1275), 1, anon_sym_DQUOTE, STATE(1091), 1, sym_ns_qualified_name, @@ -64592,10 +64598,10 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_in, STATE(2039), 1, sym_namespace, - ACTIONS(1253), 2, + ACTIONS(1261), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1257), 2, + ACTIONS(1265), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(1496), 9, @@ -64632,13 +64638,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, ACTIONS(33), 1, anon_sym_DQUOTE, - ACTIONS(1523), 1, + ACTIONS(1531), 1, sym_identifier, - ACTIONS(1525), 1, + ACTIONS(1533), 1, anon_sym_getline, - ACTIONS(1527), 1, + ACTIONS(1535), 1, anon_sym_SLASH, - ACTIONS(1531), 1, + ACTIONS(1539), 1, anon_sym_AT, STATE(431), 1, sym_ns_qualified_name, @@ -64653,7 +64659,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(19), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1529), 2, + ACTIONS(1537), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(527), 19, @@ -64689,13 +64695,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, ACTIONS(33), 1, anon_sym_DQUOTE, - ACTIONS(1523), 1, + ACTIONS(1531), 1, sym_identifier, - ACTIONS(1525), 1, + ACTIONS(1533), 1, anon_sym_getline, - ACTIONS(1527), 1, + ACTIONS(1535), 1, anon_sym_SLASH, - ACTIONS(1531), 1, + ACTIONS(1539), 1, anon_sym_AT, STATE(431), 1, sym_ns_qualified_name, @@ -64710,7 +64716,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(19), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1529), 2, + ACTIONS(1537), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(533), 19, @@ -64746,13 +64752,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, ACTIONS(33), 1, anon_sym_DQUOTE, - ACTIONS(1523), 1, + ACTIONS(1531), 1, sym_identifier, - ACTIONS(1525), 1, + ACTIONS(1533), 1, anon_sym_getline, - ACTIONS(1527), 1, + ACTIONS(1535), 1, anon_sym_SLASH, - ACTIONS(1531), 1, + ACTIONS(1539), 1, anon_sym_AT, STATE(431), 1, sym_ns_qualified_name, @@ -64767,7 +64773,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(19), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1529), 2, + ACTIONS(1537), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(534), 19, @@ -64803,13 +64809,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, ACTIONS(374), 1, anon_sym_DOLLAR, - ACTIONS(1535), 1, + ACTIONS(1543), 1, sym_identifier, - ACTIONS(1537), 1, + ACTIONS(1545), 1, anon_sym_getline, - ACTIONS(1539), 1, + ACTIONS(1547), 1, anon_sym_SLASH, - ACTIONS(1543), 1, + ACTIONS(1551), 1, anon_sym_AT, STATE(703), 1, sym_ns_qualified_name, @@ -64824,7 +64830,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(368), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1541), 2, + ACTIONS(1549), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(1446), 19, @@ -64860,13 +64866,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, ACTIONS(33), 1, anon_sym_DQUOTE, - ACTIONS(1523), 1, + ACTIONS(1531), 1, sym_identifier, - ACTIONS(1525), 1, + ACTIONS(1533), 1, anon_sym_getline, - ACTIONS(1527), 1, + ACTIONS(1535), 1, anon_sym_SLASH, - ACTIONS(1531), 1, + ACTIONS(1539), 1, anon_sym_AT, STATE(431), 1, sym_ns_qualified_name, @@ -64881,7 +64887,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(19), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1529), 2, + ACTIONS(1537), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(535), 19, @@ -64917,13 +64923,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, ACTIONS(33), 1, anon_sym_DQUOTE, - ACTIONS(1523), 1, + ACTIONS(1531), 1, sym_identifier, - ACTIONS(1525), 1, + ACTIONS(1533), 1, anon_sym_getline, - ACTIONS(1527), 1, + ACTIONS(1535), 1, anon_sym_SLASH, - ACTIONS(1531), 1, + ACTIONS(1539), 1, anon_sym_AT, STATE(431), 1, sym_ns_qualified_name, @@ -64938,7 +64944,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(19), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1529), 2, + ACTIONS(1537), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(536), 19, @@ -64974,13 +64980,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, ACTIONS(374), 1, anon_sym_DOLLAR, - ACTIONS(1535), 1, + ACTIONS(1543), 1, sym_identifier, - ACTIONS(1537), 1, + ACTIONS(1545), 1, anon_sym_getline, - ACTIONS(1539), 1, + ACTIONS(1547), 1, anon_sym_SLASH, - ACTIONS(1543), 1, + ACTIONS(1551), 1, anon_sym_AT, STATE(703), 1, sym_ns_qualified_name, @@ -64995,7 +65001,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(368), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1541), 2, + ACTIONS(1549), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(1359), 19, @@ -65031,13 +65037,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, ACTIONS(169), 1, anon_sym_DQUOTE, - ACTIONS(1565), 1, + ACTIONS(1573), 1, sym_identifier, - ACTIONS(1567), 1, + ACTIONS(1575), 1, anon_sym_getline, - ACTIONS(1569), 1, + ACTIONS(1577), 1, anon_sym_SLASH, - ACTIONS(1573), 1, + ACTIONS(1581), 1, anon_sym_AT, STATE(219), 1, sym_ns_qualified_name, @@ -65052,7 +65058,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(155), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1571), 2, + ACTIONS(1579), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(430), 19, @@ -65076,25 +65082,25 @@ static const uint16_t ts_small_parse_table[] = { sym_func_call, sym_indirect_func_call, [48910] = 19, - ACTIONS(1245), 1, + ACTIONS(1253), 1, sym_identifier, - ACTIONS(1247), 1, + ACTIONS(1255), 1, anon_sym_LPAREN, - ACTIONS(1249), 1, + ACTIONS(1257), 1, anon_sym_getline, - ACTIONS(1251), 1, + ACTIONS(1259), 1, anon_sym_SLASH, - ACTIONS(1255), 1, + ACTIONS(1263), 1, anon_sym_BANG, - ACTIONS(1259), 1, + ACTIONS(1267), 1, anon_sym_DOLLAR, - ACTIONS(1261), 1, + ACTIONS(1269), 1, anon_sym_AT, - ACTIONS(1263), 1, + ACTIONS(1271), 1, aux_sym_number_token1, - ACTIONS(1265), 1, + ACTIONS(1273), 1, aux_sym_number_token2, - ACTIONS(1267), 1, + ACTIONS(1275), 1, anon_sym_DQUOTE, STATE(1091), 1, sym_ns_qualified_name, @@ -65106,10 +65112,10 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_in, STATE(2039), 1, sym_namespace, - ACTIONS(1253), 2, + ACTIONS(1261), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1257), 2, + ACTIONS(1265), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(1496), 9, @@ -65140,19 +65146,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, ACTIONS(484), 1, anon_sym_DQUOTE, - ACTIONS(538), 1, + ACTIONS(544), 1, anon_sym_LPAREN, - ACTIONS(542), 1, + ACTIONS(548), 1, anon_sym_BANG, - ACTIONS(546), 1, + ACTIONS(552), 1, anon_sym_DOLLAR, - ACTIONS(1249), 1, + ACTIONS(1257), 1, anon_sym_getline, - ACTIONS(1251), 1, + ACTIONS(1259), 1, anon_sym_SLASH, - ACTIONS(1261), 1, + ACTIONS(1269), 1, anon_sym_AT, - ACTIONS(1723), 1, + ACTIONS(1731), 1, sym_identifier, STATE(174), 1, sym_array_ref, @@ -65167,7 +65173,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(71), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1257), 2, + ACTIONS(1265), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(1286), 9, @@ -65192,25 +65198,25 @@ static const uint16_t ts_small_parse_table[] = { sym_regex_constant, sym_indirect_func_call, [49064] = 19, - ACTIONS(1245), 1, + ACTIONS(1253), 1, sym_identifier, - ACTIONS(1247), 1, + ACTIONS(1255), 1, anon_sym_LPAREN, - ACTIONS(1249), 1, + ACTIONS(1257), 1, anon_sym_getline, - ACTIONS(1251), 1, + ACTIONS(1259), 1, anon_sym_SLASH, - ACTIONS(1255), 1, + ACTIONS(1263), 1, anon_sym_BANG, - ACTIONS(1259), 1, + ACTIONS(1267), 1, anon_sym_DOLLAR, - ACTIONS(1261), 1, + ACTIONS(1269), 1, anon_sym_AT, - ACTIONS(1263), 1, + ACTIONS(1271), 1, aux_sym_number_token1, - ACTIONS(1265), 1, + ACTIONS(1273), 1, aux_sym_number_token2, - ACTIONS(1267), 1, + ACTIONS(1275), 1, anon_sym_DQUOTE, STATE(1091), 1, sym_ns_qualified_name, @@ -65222,10 +65228,10 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_in, STATE(2039), 1, sym_namespace, - ACTIONS(1253), 2, + ACTIONS(1261), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1257), 2, + ACTIONS(1265), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(1496), 9, @@ -65250,25 +65256,25 @@ static const uint16_t ts_small_parse_table[] = { sym_regex_constant, sym_indirect_func_call, [49141] = 19, - ACTIONS(1245), 1, + ACTIONS(1253), 1, sym_identifier, - ACTIONS(1247), 1, + ACTIONS(1255), 1, anon_sym_LPAREN, - ACTIONS(1249), 1, + ACTIONS(1257), 1, anon_sym_getline, - ACTIONS(1251), 1, + ACTIONS(1259), 1, anon_sym_SLASH, - ACTIONS(1255), 1, + ACTIONS(1263), 1, anon_sym_BANG, - ACTIONS(1259), 1, + ACTIONS(1267), 1, anon_sym_DOLLAR, - ACTIONS(1261), 1, + ACTIONS(1269), 1, anon_sym_AT, - ACTIONS(1263), 1, + ACTIONS(1271), 1, aux_sym_number_token1, - ACTIONS(1265), 1, + ACTIONS(1273), 1, aux_sym_number_token2, - ACTIONS(1267), 1, + ACTIONS(1275), 1, anon_sym_DQUOTE, STATE(1091), 1, sym_ns_qualified_name, @@ -65280,10 +65286,10 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_in, STATE(2039), 1, sym_namespace, - ACTIONS(1253), 2, + ACTIONS(1261), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1257), 2, + ACTIONS(1265), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(1496), 9, @@ -65308,25 +65314,25 @@ static const uint16_t ts_small_parse_table[] = { sym_regex_constant, sym_indirect_func_call, [49218] = 18, - ACTIONS(1259), 1, + ACTIONS(1267), 1, anon_sym_DOLLAR, - ACTIONS(1619), 1, + ACTIONS(1627), 1, sym_identifier, - ACTIONS(1635), 1, + ACTIONS(1643), 1, aux_sym_number_token1, - ACTIONS(1637), 1, + ACTIONS(1645), 1, aux_sym_number_token2, - ACTIONS(1639), 1, + ACTIONS(1647), 1, anon_sym_DQUOTE, - ACTIONS(1727), 1, + ACTIONS(1735), 1, anon_sym_LPAREN, - ACTIONS(1729), 1, + ACTIONS(1737), 1, anon_sym_getline, - ACTIONS(1731), 1, + ACTIONS(1739), 1, anon_sym_SLASH, - ACTIONS(1735), 1, + ACTIONS(1743), 1, anon_sym_BANG, - ACTIONS(1739), 1, + ACTIONS(1747), 1, anon_sym_AT, STATE(283), 1, sym_ns_qualified_name, @@ -65338,10 +65344,10 @@ static const uint16_t ts_small_parse_table[] = { sym_field_ref, STATE(2039), 1, sym_namespace, - ACTIONS(1733), 2, + ACTIONS(1741), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1737), 2, + ACTIONS(1745), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(1201), 19, @@ -65365,25 +65371,25 @@ static const uint16_t ts_small_parse_table[] = { sym_func_call, sym_indirect_func_call, [49293] = 18, - ACTIONS(1259), 1, + ACTIONS(1267), 1, anon_sym_DOLLAR, - ACTIONS(1619), 1, + ACTIONS(1627), 1, sym_identifier, - ACTIONS(1635), 1, + ACTIONS(1643), 1, aux_sym_number_token1, - ACTIONS(1637), 1, + ACTIONS(1645), 1, aux_sym_number_token2, - ACTIONS(1639), 1, + ACTIONS(1647), 1, anon_sym_DQUOTE, - ACTIONS(1727), 1, + ACTIONS(1735), 1, anon_sym_LPAREN, - ACTIONS(1729), 1, + ACTIONS(1737), 1, anon_sym_getline, - ACTIONS(1731), 1, + ACTIONS(1739), 1, anon_sym_SLASH, - ACTIONS(1735), 1, + ACTIONS(1743), 1, anon_sym_BANG, - ACTIONS(1739), 1, + ACTIONS(1747), 1, anon_sym_AT, STATE(283), 1, sym_ns_qualified_name, @@ -65395,10 +65401,10 @@ static const uint16_t ts_small_parse_table[] = { sym_field_ref, STATE(2039), 1, sym_namespace, - ACTIONS(1733), 2, + ACTIONS(1741), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1737), 2, + ACTIONS(1745), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(1202), 19, @@ -65422,25 +65428,25 @@ static const uint16_t ts_small_parse_table[] = { sym_func_call, sym_indirect_func_call, [49368] = 18, - ACTIONS(1259), 1, + ACTIONS(1267), 1, anon_sym_DOLLAR, - ACTIONS(1619), 1, + ACTIONS(1627), 1, sym_identifier, - ACTIONS(1635), 1, + ACTIONS(1643), 1, aux_sym_number_token1, - ACTIONS(1637), 1, + ACTIONS(1645), 1, aux_sym_number_token2, - ACTIONS(1639), 1, + ACTIONS(1647), 1, anon_sym_DQUOTE, - ACTIONS(1727), 1, + ACTIONS(1735), 1, anon_sym_LPAREN, - ACTIONS(1729), 1, + ACTIONS(1737), 1, anon_sym_getline, - ACTIONS(1731), 1, + ACTIONS(1739), 1, anon_sym_SLASH, - ACTIONS(1735), 1, + ACTIONS(1743), 1, anon_sym_BANG, - ACTIONS(1739), 1, + ACTIONS(1747), 1, anon_sym_AT, STATE(283), 1, sym_ns_qualified_name, @@ -65452,10 +65458,10 @@ static const uint16_t ts_small_parse_table[] = { sym_field_ref, STATE(2039), 1, sym_namespace, - ACTIONS(1733), 2, + ACTIONS(1741), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1737), 2, + ACTIONS(1745), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(1204), 19, @@ -65479,25 +65485,25 @@ static const uint16_t ts_small_parse_table[] = { sym_func_call, sym_indirect_func_call, [49443] = 18, - ACTIONS(1259), 1, + ACTIONS(1267), 1, anon_sym_DOLLAR, - ACTIONS(1619), 1, + ACTIONS(1627), 1, sym_identifier, - ACTIONS(1635), 1, + ACTIONS(1643), 1, aux_sym_number_token1, - ACTIONS(1637), 1, + ACTIONS(1645), 1, aux_sym_number_token2, - ACTIONS(1639), 1, + ACTIONS(1647), 1, anon_sym_DQUOTE, - ACTIONS(1727), 1, + ACTIONS(1735), 1, anon_sym_LPAREN, - ACTIONS(1729), 1, + ACTIONS(1737), 1, anon_sym_getline, - ACTIONS(1731), 1, + ACTIONS(1739), 1, anon_sym_SLASH, - ACTIONS(1735), 1, + ACTIONS(1743), 1, anon_sym_BANG, - ACTIONS(1739), 1, + ACTIONS(1747), 1, anon_sym_AT, STATE(283), 1, sym_ns_qualified_name, @@ -65509,10 +65515,10 @@ static const uint16_t ts_small_parse_table[] = { sym_field_ref, STATE(2039), 1, sym_namespace, - ACTIONS(1733), 2, + ACTIONS(1741), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1737), 2, + ACTIONS(1745), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(1205), 19, @@ -65536,13 +65542,13 @@ static const uint16_t ts_small_parse_table[] = { sym_func_call, sym_indirect_func_call, [49518] = 4, - ACTIONS(672), 1, + ACTIONS(680), 1, sym_concatenating_space, - ACTIONS(684), 1, + ACTIONS(692), 1, anon_sym_LBRACK, - ACTIONS(1435), 1, + ACTIONS(1443), 1, anon_sym_LT, - ACTIONS(670), 35, + ACTIONS(678), 35, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -65579,11 +65585,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT_EQ, anon_sym_CARET_EQ, [49565] = 3, - ACTIONS(644), 1, + ACTIONS(652), 1, anon_sym_COLON_COLON, - ACTIONS(1025), 1, + ACTIONS(1033), 1, anon_sym_LBRACK, - ACTIONS(1509), 36, + ACTIONS(1517), 36, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, @@ -65627,19 +65633,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, ACTIONS(484), 1, anon_sym_DQUOTE, - ACTIONS(538), 1, + ACTIONS(544), 1, anon_sym_LPAREN, - ACTIONS(542), 1, + ACTIONS(548), 1, anon_sym_BANG, - ACTIONS(546), 1, + ACTIONS(552), 1, anon_sym_DOLLAR, - ACTIONS(1707), 1, + ACTIONS(1715), 1, sym_identifier, - ACTIONS(1709), 1, + ACTIONS(1717), 1, anon_sym_getline, - ACTIONS(1711), 1, + ACTIONS(1719), 1, anon_sym_SLASH, - ACTIONS(1715), 1, + ACTIONS(1723), 1, anon_sym_AT, STATE(571), 1, sym_ns_qualified_name, @@ -65654,7 +65660,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(71), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1713), 2, + ACTIONS(1721), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(1351), 19, @@ -65684,19 +65690,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, ACTIONS(484), 1, anon_sym_DQUOTE, - ACTIONS(538), 1, + ACTIONS(544), 1, anon_sym_LPAREN, - ACTIONS(542), 1, + ACTIONS(548), 1, anon_sym_BANG, - ACTIONS(546), 1, + ACTIONS(552), 1, anon_sym_DOLLAR, - ACTIONS(1707), 1, + ACTIONS(1715), 1, sym_identifier, - ACTIONS(1709), 1, + ACTIONS(1717), 1, anon_sym_getline, - ACTIONS(1711), 1, + ACTIONS(1719), 1, anon_sym_SLASH, - ACTIONS(1715), 1, + ACTIONS(1723), 1, anon_sym_AT, STATE(571), 1, sym_ns_qualified_name, @@ -65711,7 +65717,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(71), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1713), 2, + ACTIONS(1721), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(1300), 19, @@ -65737,23 +65743,23 @@ static const uint16_t ts_small_parse_table[] = { [49760] = 18, ACTIONS(374), 1, anon_sym_DOLLAR, - ACTIONS(1597), 1, + ACTIONS(1605), 1, sym_identifier, - ACTIONS(1599), 1, + ACTIONS(1607), 1, anon_sym_LPAREN, - ACTIONS(1601), 1, + ACTIONS(1609), 1, anon_sym_getline, - ACTIONS(1603), 1, + ACTIONS(1611), 1, anon_sym_SLASH, - ACTIONS(1607), 1, + ACTIONS(1615), 1, anon_sym_BANG, - ACTIONS(1611), 1, + ACTIONS(1619), 1, anon_sym_AT, - ACTIONS(1613), 1, + ACTIONS(1621), 1, aux_sym_number_token1, - ACTIONS(1615), 1, + ACTIONS(1623), 1, aux_sym_number_token2, - ACTIONS(1617), 1, + ACTIONS(1625), 1, anon_sym_DQUOTE, STATE(166), 1, sym_ns_qualified_name, @@ -65765,10 +65771,10 @@ static const uint16_t ts_small_parse_table[] = { sym_field_ref, STATE(1881), 1, sym_namespace, - ACTIONS(1605), 2, + ACTIONS(1613), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1609), 2, + ACTIONS(1617), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(240), 19, @@ -65852,23 +65858,23 @@ static const uint16_t ts_small_parse_table[] = { [49912] = 18, ACTIONS(25), 1, anon_sym_DOLLAR, - ACTIONS(1619), 1, + ACTIONS(1627), 1, sym_identifier, - ACTIONS(1621), 1, + ACTIONS(1629), 1, anon_sym_LPAREN, - ACTIONS(1623), 1, + ACTIONS(1631), 1, anon_sym_getline, - ACTIONS(1625), 1, + ACTIONS(1633), 1, anon_sym_SLASH, - ACTIONS(1629), 1, + ACTIONS(1637), 1, anon_sym_BANG, - ACTIONS(1633), 1, + ACTIONS(1641), 1, anon_sym_AT, - ACTIONS(1635), 1, + ACTIONS(1643), 1, aux_sym_number_token1, - ACTIONS(1637), 1, + ACTIONS(1645), 1, aux_sym_number_token2, - ACTIONS(1639), 1, + ACTIONS(1647), 1, anon_sym_DQUOTE, STATE(283), 1, sym_ns_qualified_name, @@ -65880,10 +65886,10 @@ static const uint16_t ts_small_parse_table[] = { sym_field_ref, STATE(2039), 1, sym_namespace, - ACTIONS(1627), 2, + ACTIONS(1635), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1631), 2, + ACTIONS(1639), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(469), 19, @@ -65919,13 +65925,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, ACTIONS(33), 1, anon_sym_DQUOTE, - ACTIONS(1523), 1, + ACTIONS(1531), 1, sym_identifier, - ACTIONS(1525), 1, + ACTIONS(1533), 1, anon_sym_getline, - ACTIONS(1527), 1, + ACTIONS(1535), 1, anon_sym_SLASH, - ACTIONS(1531), 1, + ACTIONS(1539), 1, anon_sym_AT, STATE(431), 1, sym_ns_qualified_name, @@ -65940,7 +65946,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(19), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1529), 2, + ACTIONS(1537), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(517), 19, @@ -65964,25 +65970,25 @@ static const uint16_t ts_small_parse_table[] = { sym_func_call, sym_indirect_func_call, [50062] = 19, - ACTIONS(1245), 1, + ACTIONS(1253), 1, sym_identifier, - ACTIONS(1247), 1, + ACTIONS(1255), 1, anon_sym_LPAREN, - ACTIONS(1249), 1, + ACTIONS(1257), 1, anon_sym_getline, - ACTIONS(1251), 1, + ACTIONS(1259), 1, anon_sym_SLASH, - ACTIONS(1255), 1, + ACTIONS(1263), 1, anon_sym_BANG, - ACTIONS(1259), 1, + ACTIONS(1267), 1, anon_sym_DOLLAR, - ACTIONS(1261), 1, + ACTIONS(1269), 1, anon_sym_AT, - ACTIONS(1263), 1, + ACTIONS(1271), 1, aux_sym_number_token1, - ACTIONS(1265), 1, + ACTIONS(1273), 1, aux_sym_number_token2, - ACTIONS(1267), 1, + ACTIONS(1275), 1, anon_sym_DQUOTE, STATE(1091), 1, sym_ns_qualified_name, @@ -65994,10 +66000,10 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_in, STATE(2039), 1, sym_namespace, - ACTIONS(1253), 2, + ACTIONS(1261), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1257), 2, + ACTIONS(1265), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(1496), 9, @@ -66024,23 +66030,23 @@ static const uint16_t ts_small_parse_table[] = { [50139] = 18, ACTIONS(25), 1, anon_sym_DOLLAR, - ACTIONS(1619), 1, + ACTIONS(1627), 1, sym_identifier, - ACTIONS(1621), 1, + ACTIONS(1629), 1, anon_sym_LPAREN, - ACTIONS(1623), 1, + ACTIONS(1631), 1, anon_sym_getline, - ACTIONS(1625), 1, + ACTIONS(1633), 1, anon_sym_SLASH, - ACTIONS(1629), 1, + ACTIONS(1637), 1, anon_sym_BANG, - ACTIONS(1633), 1, + ACTIONS(1641), 1, anon_sym_AT, - ACTIONS(1635), 1, + ACTIONS(1643), 1, aux_sym_number_token1, - ACTIONS(1637), 1, + ACTIONS(1645), 1, aux_sym_number_token2, - ACTIONS(1639), 1, + ACTIONS(1647), 1, anon_sym_DQUOTE, STATE(283), 1, sym_ns_qualified_name, @@ -66052,10 +66058,10 @@ static const uint16_t ts_small_parse_table[] = { sym_field_ref, STATE(2039), 1, sym_namespace, - ACTIONS(1627), 2, + ACTIONS(1635), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1631), 2, + ACTIONS(1639), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(473), 19, @@ -66081,23 +66087,23 @@ static const uint16_t ts_small_parse_table[] = { [50214] = 18, ACTIONS(25), 1, anon_sym_DOLLAR, - ACTIONS(1619), 1, + ACTIONS(1627), 1, sym_identifier, - ACTIONS(1621), 1, + ACTIONS(1629), 1, anon_sym_LPAREN, - ACTIONS(1623), 1, + ACTIONS(1631), 1, anon_sym_getline, - ACTIONS(1625), 1, + ACTIONS(1633), 1, anon_sym_SLASH, - ACTIONS(1629), 1, + ACTIONS(1637), 1, anon_sym_BANG, - ACTIONS(1633), 1, + ACTIONS(1641), 1, anon_sym_AT, - ACTIONS(1635), 1, + ACTIONS(1643), 1, aux_sym_number_token1, - ACTIONS(1637), 1, + ACTIONS(1645), 1, aux_sym_number_token2, - ACTIONS(1639), 1, + ACTIONS(1647), 1, anon_sym_DQUOTE, STATE(283), 1, sym_ns_qualified_name, @@ -66109,10 +66115,10 @@ static const uint16_t ts_small_parse_table[] = { sym_field_ref, STATE(2039), 1, sym_namespace, - ACTIONS(1627), 2, + ACTIONS(1635), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1631), 2, + ACTIONS(1639), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(482), 19, @@ -66138,23 +66144,23 @@ static const uint16_t ts_small_parse_table[] = { [50289] = 18, ACTIONS(25), 1, anon_sym_DOLLAR, - ACTIONS(1619), 1, + ACTIONS(1627), 1, sym_identifier, - ACTIONS(1621), 1, + ACTIONS(1629), 1, anon_sym_LPAREN, - ACTIONS(1623), 1, + ACTIONS(1631), 1, anon_sym_getline, - ACTIONS(1625), 1, + ACTIONS(1633), 1, anon_sym_SLASH, - ACTIONS(1629), 1, + ACTIONS(1637), 1, anon_sym_BANG, - ACTIONS(1633), 1, + ACTIONS(1641), 1, anon_sym_AT, - ACTIONS(1635), 1, + ACTIONS(1643), 1, aux_sym_number_token1, - ACTIONS(1637), 1, + ACTIONS(1645), 1, aux_sym_number_token2, - ACTIONS(1639), 1, + ACTIONS(1647), 1, anon_sym_DQUOTE, STATE(283), 1, sym_ns_qualified_name, @@ -66166,10 +66172,10 @@ static const uint16_t ts_small_parse_table[] = { sym_field_ref, STATE(2039), 1, sym_namespace, - ACTIONS(1627), 2, + ACTIONS(1635), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1631), 2, + ACTIONS(1639), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(471), 19, @@ -66195,23 +66201,23 @@ static const uint16_t ts_small_parse_table[] = { [50364] = 18, ACTIONS(25), 1, anon_sym_DOLLAR, - ACTIONS(1619), 1, + ACTIONS(1627), 1, sym_identifier, - ACTIONS(1621), 1, + ACTIONS(1629), 1, anon_sym_LPAREN, - ACTIONS(1623), 1, + ACTIONS(1631), 1, anon_sym_getline, - ACTIONS(1625), 1, + ACTIONS(1633), 1, anon_sym_SLASH, - ACTIONS(1629), 1, + ACTIONS(1637), 1, anon_sym_BANG, - ACTIONS(1633), 1, + ACTIONS(1641), 1, anon_sym_AT, - ACTIONS(1635), 1, + ACTIONS(1643), 1, aux_sym_number_token1, - ACTIONS(1637), 1, + ACTIONS(1645), 1, aux_sym_number_token2, - ACTIONS(1639), 1, + ACTIONS(1647), 1, anon_sym_DQUOTE, STATE(283), 1, sym_ns_qualified_name, @@ -66223,10 +66229,10 @@ static const uint16_t ts_small_parse_table[] = { sym_field_ref, STATE(2039), 1, sym_namespace, - ACTIONS(1627), 2, + ACTIONS(1635), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1631), 2, + ACTIONS(1639), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(478), 19, @@ -66252,23 +66258,23 @@ static const uint16_t ts_small_parse_table[] = { [50439] = 18, ACTIONS(25), 1, anon_sym_DOLLAR, - ACTIONS(1619), 1, + ACTIONS(1627), 1, sym_identifier, - ACTIONS(1621), 1, + ACTIONS(1629), 1, anon_sym_LPAREN, - ACTIONS(1623), 1, + ACTIONS(1631), 1, anon_sym_getline, - ACTIONS(1625), 1, + ACTIONS(1633), 1, anon_sym_SLASH, - ACTIONS(1629), 1, + ACTIONS(1637), 1, anon_sym_BANG, - ACTIONS(1633), 1, + ACTIONS(1641), 1, anon_sym_AT, - ACTIONS(1635), 1, + ACTIONS(1643), 1, aux_sym_number_token1, - ACTIONS(1637), 1, + ACTIONS(1645), 1, aux_sym_number_token2, - ACTIONS(1639), 1, + ACTIONS(1647), 1, anon_sym_DQUOTE, STATE(283), 1, sym_ns_qualified_name, @@ -66280,10 +66286,10 @@ static const uint16_t ts_small_parse_table[] = { sym_field_ref, STATE(2039), 1, sym_namespace, - ACTIONS(1627), 2, + ACTIONS(1635), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1631), 2, + ACTIONS(1639), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(467), 19, @@ -66309,23 +66315,23 @@ static const uint16_t ts_small_parse_table[] = { [50514] = 18, ACTIONS(25), 1, anon_sym_DOLLAR, - ACTIONS(1619), 1, + ACTIONS(1627), 1, sym_identifier, - ACTIONS(1621), 1, + ACTIONS(1629), 1, anon_sym_LPAREN, - ACTIONS(1623), 1, + ACTIONS(1631), 1, anon_sym_getline, - ACTIONS(1625), 1, + ACTIONS(1633), 1, anon_sym_SLASH, - ACTIONS(1629), 1, + ACTIONS(1637), 1, anon_sym_BANG, - ACTIONS(1633), 1, + ACTIONS(1641), 1, anon_sym_AT, - ACTIONS(1635), 1, + ACTIONS(1643), 1, aux_sym_number_token1, - ACTIONS(1637), 1, + ACTIONS(1645), 1, aux_sym_number_token2, - ACTIONS(1639), 1, + ACTIONS(1647), 1, anon_sym_DQUOTE, STATE(283), 1, sym_ns_qualified_name, @@ -66337,10 +66343,10 @@ static const uint16_t ts_small_parse_table[] = { sym_field_ref, STATE(2039), 1, sym_namespace, - ACTIONS(1627), 2, + ACTIONS(1635), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1631), 2, + ACTIONS(1639), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(333), 19, @@ -66366,23 +66372,23 @@ static const uint16_t ts_small_parse_table[] = { [50589] = 18, ACTIONS(25), 1, anon_sym_DOLLAR, - ACTIONS(1619), 1, + ACTIONS(1627), 1, sym_identifier, - ACTIONS(1621), 1, + ACTIONS(1629), 1, anon_sym_LPAREN, - ACTIONS(1623), 1, + ACTIONS(1631), 1, anon_sym_getline, - ACTIONS(1625), 1, + ACTIONS(1633), 1, anon_sym_SLASH, - ACTIONS(1629), 1, + ACTIONS(1637), 1, anon_sym_BANG, - ACTIONS(1633), 1, + ACTIONS(1641), 1, anon_sym_AT, - ACTIONS(1635), 1, + ACTIONS(1643), 1, aux_sym_number_token1, - ACTIONS(1637), 1, + ACTIONS(1645), 1, aux_sym_number_token2, - ACTIONS(1639), 1, + ACTIONS(1647), 1, anon_sym_DQUOTE, STATE(283), 1, sym_ns_qualified_name, @@ -66394,10 +66400,10 @@ static const uint16_t ts_small_parse_table[] = { sym_field_ref, STATE(2039), 1, sym_namespace, - ACTIONS(1627), 2, + ACTIONS(1635), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1631), 2, + ACTIONS(1639), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(468), 19, @@ -66481,23 +66487,23 @@ static const uint16_t ts_small_parse_table[] = { [50741] = 18, ACTIONS(25), 1, anon_sym_DOLLAR, - ACTIONS(1619), 1, + ACTIONS(1627), 1, sym_identifier, - ACTIONS(1621), 1, + ACTIONS(1629), 1, anon_sym_LPAREN, - ACTIONS(1623), 1, + ACTIONS(1631), 1, anon_sym_getline, - ACTIONS(1625), 1, + ACTIONS(1633), 1, anon_sym_SLASH, - ACTIONS(1629), 1, + ACTIONS(1637), 1, anon_sym_BANG, - ACTIONS(1633), 1, + ACTIONS(1641), 1, anon_sym_AT, - ACTIONS(1635), 1, + ACTIONS(1643), 1, aux_sym_number_token1, - ACTIONS(1637), 1, + ACTIONS(1645), 1, aux_sym_number_token2, - ACTIONS(1639), 1, + ACTIONS(1647), 1, anon_sym_DQUOTE, STATE(283), 1, sym_ns_qualified_name, @@ -66509,10 +66515,10 @@ static const uint16_t ts_small_parse_table[] = { sym_field_ref, STATE(2039), 1, sym_namespace, - ACTIONS(1627), 2, + ACTIONS(1635), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1631), 2, + ACTIONS(1639), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(477), 19, @@ -66594,25 +66600,25 @@ static const uint16_t ts_small_parse_table[] = { sym_regex_constant, sym_indirect_func_call, [50893] = 18, - ACTIONS(1259), 1, + ACTIONS(1267), 1, anon_sym_DOLLAR, - ACTIONS(1619), 1, + ACTIONS(1627), 1, sym_identifier, - ACTIONS(1635), 1, + ACTIONS(1643), 1, aux_sym_number_token1, - ACTIONS(1637), 1, + ACTIONS(1645), 1, aux_sym_number_token2, - ACTIONS(1639), 1, + ACTIONS(1647), 1, anon_sym_DQUOTE, - ACTIONS(1727), 1, + ACTIONS(1735), 1, anon_sym_LPAREN, - ACTIONS(1729), 1, + ACTIONS(1737), 1, anon_sym_getline, - ACTIONS(1731), 1, + ACTIONS(1739), 1, anon_sym_SLASH, - ACTIONS(1735), 1, + ACTIONS(1743), 1, anon_sym_BANG, - ACTIONS(1739), 1, + ACTIONS(1747), 1, anon_sym_AT, STATE(283), 1, sym_ns_qualified_name, @@ -66624,10 +66630,10 @@ static const uint16_t ts_small_parse_table[] = { sym_field_ref, STATE(2039), 1, sym_namespace, - ACTIONS(1733), 2, + ACTIONS(1741), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1737), 2, + ACTIONS(1745), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(1206), 19, @@ -66663,13 +66669,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, ACTIONS(33), 1, anon_sym_DQUOTE, - ACTIONS(1523), 1, + ACTIONS(1531), 1, sym_identifier, - ACTIONS(1525), 1, + ACTIONS(1533), 1, anon_sym_getline, - ACTIONS(1527), 1, + ACTIONS(1535), 1, anon_sym_SLASH, - ACTIONS(1531), 1, + ACTIONS(1539), 1, anon_sym_AT, STATE(431), 1, sym_ns_qualified_name, @@ -66684,7 +66690,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(19), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1529), 2, + ACTIONS(1537), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(521), 19, @@ -66720,13 +66726,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, ACTIONS(33), 1, anon_sym_DQUOTE, - ACTIONS(1523), 1, + ACTIONS(1531), 1, sym_identifier, - ACTIONS(1525), 1, + ACTIONS(1533), 1, anon_sym_getline, - ACTIONS(1527), 1, + ACTIONS(1535), 1, anon_sym_SLASH, - ACTIONS(1531), 1, + ACTIONS(1539), 1, anon_sym_AT, STATE(431), 1, sym_ns_qualified_name, @@ -66741,7 +66747,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(19), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1529), 2, + ACTIONS(1537), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(511), 19, @@ -66893,13 +66899,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, ACTIONS(169), 1, anon_sym_DQUOTE, - ACTIONS(1565), 1, + ACTIONS(1573), 1, sym_identifier, - ACTIONS(1567), 1, + ACTIONS(1575), 1, anon_sym_getline, - ACTIONS(1569), 1, + ACTIONS(1577), 1, anon_sym_SLASH, - ACTIONS(1573), 1, + ACTIONS(1581), 1, anon_sym_AT, STATE(219), 1, sym_ns_qualified_name, @@ -66914,7 +66920,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(155), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1571), 2, + ACTIONS(1579), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(439), 19, @@ -67130,7 +67136,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, ACTIONS(33), 1, anon_sym_DQUOTE, - ACTIONS(1721), 1, + ACTIONS(1729), 1, anon_sym_AT, STATE(401), 1, sym_ns_qualified_name, @@ -67170,20 +67176,20 @@ static const uint16_t ts_small_parse_table[] = { sym_regex_constant, sym_indirect_func_call, [51655] = 5, - ACTIONS(856), 2, + ACTIONS(864), 2, sym_concatenating_space, sym__if_else_separator, - ACTIONS(1691), 2, + ACTIONS(1699), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(1695), 2, + ACTIONS(1703), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1693), 3, + ACTIONS(1701), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(854), 29, + ACTIONS(862), 29, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -67226,13 +67232,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, ACTIONS(169), 1, anon_sym_DQUOTE, - ACTIONS(1565), 1, + ACTIONS(1573), 1, sym_identifier, - ACTIONS(1567), 1, + ACTIONS(1575), 1, anon_sym_getline, - ACTIONS(1569), 1, + ACTIONS(1577), 1, anon_sym_SLASH, - ACTIONS(1573), 1, + ACTIONS(1581), 1, anon_sym_AT, STATE(219), 1, sym_ns_qualified_name, @@ -67247,7 +67253,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(155), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1571), 2, + ACTIONS(1579), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(410), 19, @@ -67283,13 +67289,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, ACTIONS(336), 1, anon_sym_DQUOTE, - ACTIONS(1545), 1, + ACTIONS(1553), 1, sym_identifier, - ACTIONS(1547), 1, + ACTIONS(1555), 1, anon_sym_getline, - ACTIONS(1549), 1, + ACTIONS(1557), 1, anon_sym_SLASH, - ACTIONS(1553), 1, + ACTIONS(1561), 1, anon_sym_AT, STATE(189), 1, sym_ns_qualified_name, @@ -67304,7 +67310,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(322), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1551), 2, + ACTIONS(1559), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(358), 19, @@ -67340,13 +67346,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, ACTIONS(169), 1, anon_sym_DQUOTE, - ACTIONS(1565), 1, + ACTIONS(1573), 1, sym_identifier, - ACTIONS(1567), 1, + ACTIONS(1575), 1, anon_sym_getline, - ACTIONS(1569), 1, + ACTIONS(1577), 1, anon_sym_SLASH, - ACTIONS(1573), 1, + ACTIONS(1581), 1, anon_sym_AT, STATE(219), 1, sym_ns_qualified_name, @@ -67361,7 +67367,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(155), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1571), 2, + ACTIONS(1579), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(408), 19, @@ -67397,13 +67403,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, ACTIONS(169), 1, anon_sym_DQUOTE, - ACTIONS(1565), 1, + ACTIONS(1573), 1, sym_identifier, - ACTIONS(1567), 1, + ACTIONS(1575), 1, anon_sym_getline, - ACTIONS(1569), 1, + ACTIONS(1577), 1, anon_sym_SLASH, - ACTIONS(1573), 1, + ACTIONS(1581), 1, anon_sym_AT, STATE(219), 1, sym_ns_qualified_name, @@ -67418,7 +67424,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(155), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1571), 2, + ACTIONS(1579), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(412), 19, @@ -67454,13 +67460,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, ACTIONS(169), 1, anon_sym_DQUOTE, - ACTIONS(1565), 1, + ACTIONS(1573), 1, sym_identifier, - ACTIONS(1567), 1, + ACTIONS(1575), 1, anon_sym_getline, - ACTIONS(1569), 1, + ACTIONS(1577), 1, anon_sym_SLASH, - ACTIONS(1573), 1, + ACTIONS(1581), 1, anon_sym_AT, STATE(219), 1, sym_ns_qualified_name, @@ -67475,7 +67481,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(155), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1571), 2, + ACTIONS(1579), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(396), 19, @@ -67511,13 +67517,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, ACTIONS(169), 1, anon_sym_DQUOTE, - ACTIONS(1565), 1, + ACTIONS(1573), 1, sym_identifier, - ACTIONS(1567), 1, + ACTIONS(1575), 1, anon_sym_getline, - ACTIONS(1569), 1, + ACTIONS(1577), 1, anon_sym_SLASH, - ACTIONS(1573), 1, + ACTIONS(1581), 1, anon_sym_AT, STATE(219), 1, sym_ns_qualified_name, @@ -67532,7 +67538,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(155), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1571), 2, + ACTIONS(1579), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(397), 19, @@ -67568,13 +67574,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, ACTIONS(169), 1, anon_sym_DQUOTE, - ACTIONS(1565), 1, + ACTIONS(1573), 1, sym_identifier, - ACTIONS(1567), 1, + ACTIONS(1575), 1, anon_sym_getline, - ACTIONS(1569), 1, + ACTIONS(1577), 1, anon_sym_SLASH, - ACTIONS(1573), 1, + ACTIONS(1581), 1, anon_sym_AT, STATE(219), 1, sym_ns_qualified_name, @@ -67589,7 +67595,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(155), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1571), 2, + ACTIONS(1579), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(398), 19, @@ -67625,13 +67631,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, ACTIONS(169), 1, anon_sym_DQUOTE, - ACTIONS(1565), 1, + ACTIONS(1573), 1, sym_identifier, - ACTIONS(1567), 1, + ACTIONS(1575), 1, anon_sym_getline, - ACTIONS(1569), 1, + ACTIONS(1577), 1, anon_sym_SLASH, - ACTIONS(1573), 1, + ACTIONS(1581), 1, anon_sym_AT, STATE(219), 1, sym_ns_qualified_name, @@ -67646,7 +67652,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(155), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1571), 2, + ACTIONS(1579), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(399), 19, @@ -67682,13 +67688,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, ACTIONS(169), 1, anon_sym_DQUOTE, - ACTIONS(1565), 1, + ACTIONS(1573), 1, sym_identifier, - ACTIONS(1567), 1, + ACTIONS(1575), 1, anon_sym_getline, - ACTIONS(1569), 1, + ACTIONS(1577), 1, anon_sym_SLASH, - ACTIONS(1573), 1, + ACTIONS(1581), 1, anon_sym_AT, STATE(219), 1, sym_ns_qualified_name, @@ -67703,7 +67709,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(155), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1571), 2, + ACTIONS(1579), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(400), 19, @@ -67797,13 +67803,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, ACTIONS(169), 1, anon_sym_DQUOTE, - ACTIONS(1249), 1, + ACTIONS(1257), 1, anon_sym_getline, - ACTIONS(1251), 1, + ACTIONS(1259), 1, anon_sym_SLASH, - ACTIONS(1261), 1, + ACTIONS(1269), 1, anon_sym_AT, - ACTIONS(1743), 1, + ACTIONS(1751), 1, sym_identifier, STATE(207), 1, sym_array_ref, @@ -67818,7 +67824,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(155), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1257), 2, + ACTIONS(1265), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(404), 9, @@ -67913,13 +67919,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, ACTIONS(336), 1, anon_sym_DQUOTE, - ACTIONS(1545), 1, + ACTIONS(1553), 1, sym_identifier, - ACTIONS(1547), 1, + ACTIONS(1555), 1, anon_sym_getline, - ACTIONS(1549), 1, + ACTIONS(1557), 1, anon_sym_SLASH, - ACTIONS(1553), 1, + ACTIONS(1561), 1, anon_sym_AT, STATE(189), 1, sym_ns_qualified_name, @@ -67934,7 +67940,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(322), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1551), 2, + ACTIONS(1559), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(354), 19, @@ -68028,13 +68034,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, ACTIONS(336), 1, anon_sym_DQUOTE, - ACTIONS(1545), 1, + ACTIONS(1553), 1, sym_identifier, - ACTIONS(1547), 1, + ACTIONS(1555), 1, anon_sym_getline, - ACTIONS(1549), 1, + ACTIONS(1557), 1, anon_sym_SLASH, - ACTIONS(1553), 1, + ACTIONS(1561), 1, anon_sym_AT, STATE(189), 1, sym_ns_qualified_name, @@ -68049,7 +68055,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(322), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1551), 2, + ACTIONS(1559), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(351), 19, @@ -68073,11 +68079,11 @@ static const uint16_t ts_small_parse_table[] = { sym_func_call, sym_indirect_func_call, [52837] = 3, - ACTIONS(820), 1, + ACTIONS(828), 1, sym_concatenating_space, - ACTIONS(862), 1, + ACTIONS(870), 1, sym_regex_flags, - ACTIONS(816), 36, + ACTIONS(824), 36, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -68127,13 +68133,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, ACTIONS(284), 1, anon_sym_DQUOTE, - ACTIONS(1249), 1, + ACTIONS(1257), 1, anon_sym_getline, - ACTIONS(1251), 1, + ACTIONS(1259), 1, anon_sym_SLASH, - ACTIONS(1261), 1, + ACTIONS(1269), 1, anon_sym_AT, - ACTIONS(1741), 1, + ACTIONS(1749), 1, sym_identifier, STATE(207), 1, sym_array_ref, @@ -68148,7 +68154,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(115), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1257), 2, + ACTIONS(1265), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(1318), 9, @@ -68173,13 +68179,13 @@ static const uint16_t ts_small_parse_table[] = { sym_regex_constant, sym_indirect_func_call, [52959] = 5, - ACTIONS(644), 1, + ACTIONS(652), 1, anon_sym_COLON_COLON, - ACTIONS(888), 1, + ACTIONS(896), 1, anon_sym_LBRACK, - ACTIONS(1745), 1, + ACTIONS(1753), 1, anon_sym_LT, - ACTIONS(670), 10, + ACTIONS(678), 10, anon_sym_COLON, anon_sym_GT, anon_sym_PIPE, @@ -68190,7 +68196,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ, - ACTIONS(672), 25, + ACTIONS(680), 25, sym_concatenating_space, anon_sym_COMMA, anon_sym_SEMI, @@ -68217,25 +68223,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_RBRACK, [53008] = 19, - ACTIONS(1245), 1, + ACTIONS(1253), 1, sym_identifier, - ACTIONS(1247), 1, + ACTIONS(1255), 1, anon_sym_LPAREN, - ACTIONS(1249), 1, + ACTIONS(1257), 1, anon_sym_getline, - ACTIONS(1251), 1, + ACTIONS(1259), 1, anon_sym_SLASH, - ACTIONS(1255), 1, + ACTIONS(1263), 1, anon_sym_BANG, - ACTIONS(1259), 1, + ACTIONS(1267), 1, anon_sym_DOLLAR, - ACTIONS(1261), 1, + ACTIONS(1269), 1, anon_sym_AT, - ACTIONS(1263), 1, + ACTIONS(1271), 1, aux_sym_number_token1, - ACTIONS(1265), 1, + ACTIONS(1273), 1, aux_sym_number_token2, - ACTIONS(1267), 1, + ACTIONS(1275), 1, anon_sym_DQUOTE, STATE(1091), 1, sym_ns_qualified_name, @@ -68247,10 +68253,10 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_in, STATE(2039), 1, sym_namespace, - ACTIONS(1253), 2, + ACTIONS(1261), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1257), 2, + ACTIONS(1265), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(1496), 9, @@ -68287,13 +68293,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, ACTIONS(33), 1, anon_sym_DQUOTE, - ACTIONS(1523), 1, + ACTIONS(1531), 1, sym_identifier, - ACTIONS(1525), 1, + ACTIONS(1533), 1, anon_sym_getline, - ACTIONS(1527), 1, + ACTIONS(1535), 1, anon_sym_SLASH, - ACTIONS(1531), 1, + ACTIONS(1539), 1, anon_sym_AT, STATE(431), 1, sym_ns_qualified_name, @@ -68308,7 +68314,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(19), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1529), 2, + ACTIONS(1537), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(523), 19, @@ -68332,25 +68338,25 @@ static const uint16_t ts_small_parse_table[] = { sym_func_call, sym_indirect_func_call, [53160] = 19, - ACTIONS(1245), 1, + ACTIONS(1253), 1, sym_identifier, - ACTIONS(1247), 1, + ACTIONS(1255), 1, anon_sym_LPAREN, - ACTIONS(1249), 1, + ACTIONS(1257), 1, anon_sym_getline, - ACTIONS(1251), 1, + ACTIONS(1259), 1, anon_sym_SLASH, - ACTIONS(1255), 1, + ACTIONS(1263), 1, anon_sym_BANG, - ACTIONS(1259), 1, + ACTIONS(1267), 1, anon_sym_DOLLAR, - ACTIONS(1261), 1, + ACTIONS(1269), 1, anon_sym_AT, - ACTIONS(1263), 1, + ACTIONS(1271), 1, aux_sym_number_token1, - ACTIONS(1265), 1, + ACTIONS(1273), 1, aux_sym_number_token2, - ACTIONS(1267), 1, + ACTIONS(1275), 1, anon_sym_DQUOTE, STATE(1091), 1, sym_ns_qualified_name, @@ -68362,10 +68368,10 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_in, STATE(2039), 1, sym_namespace, - ACTIONS(1253), 2, + ACTIONS(1261), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1257), 2, + ACTIONS(1265), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(1496), 9, @@ -68402,13 +68408,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, ACTIONS(336), 1, anon_sym_DQUOTE, - ACTIONS(1545), 1, + ACTIONS(1553), 1, sym_identifier, - ACTIONS(1547), 1, + ACTIONS(1555), 1, anon_sym_getline, - ACTIONS(1549), 1, + ACTIONS(1557), 1, anon_sym_SLASH, - ACTIONS(1553), 1, + ACTIONS(1561), 1, anon_sym_AT, STATE(189), 1, sym_ns_qualified_name, @@ -68423,7 +68429,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(322), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1551), 2, + ACTIONS(1559), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(377), 19, @@ -68447,25 +68453,25 @@ static const uint16_t ts_small_parse_table[] = { sym_func_call, sym_indirect_func_call, [53312] = 19, - ACTIONS(1245), 1, + ACTIONS(1253), 1, sym_identifier, - ACTIONS(1247), 1, + ACTIONS(1255), 1, anon_sym_LPAREN, - ACTIONS(1249), 1, + ACTIONS(1257), 1, anon_sym_getline, - ACTIONS(1251), 1, + ACTIONS(1259), 1, anon_sym_SLASH, - ACTIONS(1255), 1, + ACTIONS(1263), 1, anon_sym_BANG, - ACTIONS(1259), 1, + ACTIONS(1267), 1, anon_sym_DOLLAR, - ACTIONS(1261), 1, + ACTIONS(1269), 1, anon_sym_AT, - ACTIONS(1263), 1, + ACTIONS(1271), 1, aux_sym_number_token1, - ACTIONS(1265), 1, + ACTIONS(1273), 1, aux_sym_number_token2, - ACTIONS(1267), 1, + ACTIONS(1275), 1, anon_sym_DQUOTE, STATE(1091), 1, sym_ns_qualified_name, @@ -68477,10 +68483,10 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_in, STATE(2039), 1, sym_namespace, - ACTIONS(1253), 2, + ACTIONS(1261), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1257), 2, + ACTIONS(1265), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(1496), 9, @@ -68505,25 +68511,25 @@ static const uint16_t ts_small_parse_table[] = { sym_regex_constant, sym_indirect_func_call, [53389] = 19, - ACTIONS(1245), 1, + ACTIONS(1253), 1, sym_identifier, - ACTIONS(1247), 1, + ACTIONS(1255), 1, anon_sym_LPAREN, - ACTIONS(1249), 1, + ACTIONS(1257), 1, anon_sym_getline, - ACTIONS(1251), 1, + ACTIONS(1259), 1, anon_sym_SLASH, - ACTIONS(1255), 1, + ACTIONS(1263), 1, anon_sym_BANG, - ACTIONS(1259), 1, + ACTIONS(1267), 1, anon_sym_DOLLAR, - ACTIONS(1261), 1, + ACTIONS(1269), 1, anon_sym_AT, - ACTIONS(1263), 1, + ACTIONS(1271), 1, aux_sym_number_token1, - ACTIONS(1265), 1, + ACTIONS(1273), 1, aux_sym_number_token2, - ACTIONS(1267), 1, + ACTIONS(1275), 1, anon_sym_DQUOTE, STATE(1091), 1, sym_ns_qualified_name, @@ -68535,10 +68541,10 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_in, STATE(2039), 1, sym_namespace, - ACTIONS(1253), 2, + ACTIONS(1261), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1257), 2, + ACTIONS(1265), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(1496), 9, @@ -68621,25 +68627,25 @@ static const uint16_t ts_small_parse_table[] = { sym_regex_constant, sym_indirect_func_call, [53543] = 19, - ACTIONS(1245), 1, + ACTIONS(1253), 1, sym_identifier, - ACTIONS(1247), 1, + ACTIONS(1255), 1, anon_sym_LPAREN, - ACTIONS(1249), 1, + ACTIONS(1257), 1, anon_sym_getline, - ACTIONS(1251), 1, + ACTIONS(1259), 1, anon_sym_SLASH, - ACTIONS(1255), 1, + ACTIONS(1263), 1, anon_sym_BANG, - ACTIONS(1259), 1, + ACTIONS(1267), 1, anon_sym_DOLLAR, - ACTIONS(1261), 1, + ACTIONS(1269), 1, anon_sym_AT, - ACTIONS(1263), 1, + ACTIONS(1271), 1, aux_sym_number_token1, - ACTIONS(1265), 1, + ACTIONS(1273), 1, aux_sym_number_token2, - ACTIONS(1267), 1, + ACTIONS(1275), 1, anon_sym_DQUOTE, STATE(1091), 1, sym_ns_qualified_name, @@ -68651,10 +68657,10 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_in, STATE(2039), 1, sym_namespace, - ACTIONS(1253), 2, + ACTIONS(1261), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1257), 2, + ACTIONS(1265), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(1496), 9, @@ -68691,13 +68697,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, ACTIONS(484), 1, anon_sym_DQUOTE, - ACTIONS(1555), 1, + ACTIONS(1563), 1, sym_identifier, - ACTIONS(1557), 1, + ACTIONS(1565), 1, anon_sym_getline, - ACTIONS(1559), 1, + ACTIONS(1567), 1, anon_sym_SLASH, - ACTIONS(1563), 1, + ACTIONS(1571), 1, anon_sym_AT, STATE(678), 1, sym_ns_qualified_name, @@ -68712,7 +68718,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(472), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1561), 2, + ACTIONS(1569), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(1303), 19, @@ -68738,23 +68744,23 @@ static const uint16_t ts_small_parse_table[] = { [53695] = 18, ACTIONS(328), 1, anon_sym_DOLLAR, - ACTIONS(1575), 1, + ACTIONS(1583), 1, sym_identifier, - ACTIONS(1577), 1, + ACTIONS(1585), 1, anon_sym_LPAREN, - ACTIONS(1579), 1, + ACTIONS(1587), 1, anon_sym_getline, - ACTIONS(1581), 1, + ACTIONS(1589), 1, anon_sym_SLASH, - ACTIONS(1585), 1, + ACTIONS(1593), 1, anon_sym_BANG, - ACTIONS(1589), 1, + ACTIONS(1597), 1, anon_sym_AT, - ACTIONS(1591), 1, + ACTIONS(1599), 1, aux_sym_number_token1, - ACTIONS(1593), 1, + ACTIONS(1601), 1, aux_sym_number_token2, - ACTIONS(1595), 1, + ACTIONS(1603), 1, anon_sym_DQUOTE, STATE(158), 1, sym_ns_qualified_name, @@ -68766,10 +68772,10 @@ static const uint16_t ts_small_parse_table[] = { sym_field_ref, STATE(1958), 1, sym_namespace, - ACTIONS(1583), 2, + ACTIONS(1591), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1587), 2, + ACTIONS(1595), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(186), 19, @@ -68793,25 +68799,25 @@ static const uint16_t ts_small_parse_table[] = { sym_func_call, sym_indirect_func_call, [53770] = 18, - ACTIONS(546), 1, + ACTIONS(552), 1, anon_sym_DOLLAR, - ACTIONS(1575), 1, + ACTIONS(1583), 1, sym_identifier, - ACTIONS(1591), 1, + ACTIONS(1599), 1, aux_sym_number_token1, - ACTIONS(1593), 1, + ACTIONS(1601), 1, aux_sym_number_token2, - ACTIONS(1595), 1, + ACTIONS(1603), 1, anon_sym_DQUOTE, - ACTIONS(1747), 1, + ACTIONS(1755), 1, anon_sym_LPAREN, - ACTIONS(1749), 1, + ACTIONS(1757), 1, anon_sym_getline, - ACTIONS(1751), 1, + ACTIONS(1759), 1, anon_sym_SLASH, - ACTIONS(1755), 1, + ACTIONS(1763), 1, anon_sym_BANG, - ACTIONS(1759), 1, + ACTIONS(1767), 1, anon_sym_AT, STATE(158), 1, sym_ns_qualified_name, @@ -68823,10 +68829,10 @@ static const uint16_t ts_small_parse_table[] = { sym_field_ref, STATE(1958), 1, sym_namespace, - ACTIONS(1753), 2, + ACTIONS(1761), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1757), 2, + ACTIONS(1765), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(197), 19, @@ -68850,25 +68856,25 @@ static const uint16_t ts_small_parse_table[] = { sym_func_call, sym_indirect_func_call, [53845] = 18, - ACTIONS(546), 1, + ACTIONS(552), 1, anon_sym_DOLLAR, - ACTIONS(1575), 1, + ACTIONS(1583), 1, sym_identifier, - ACTIONS(1591), 1, + ACTIONS(1599), 1, aux_sym_number_token1, - ACTIONS(1593), 1, + ACTIONS(1601), 1, aux_sym_number_token2, - ACTIONS(1595), 1, + ACTIONS(1603), 1, anon_sym_DQUOTE, - ACTIONS(1747), 1, + ACTIONS(1755), 1, anon_sym_LPAREN, - ACTIONS(1749), 1, + ACTIONS(1757), 1, anon_sym_getline, - ACTIONS(1751), 1, + ACTIONS(1759), 1, anon_sym_SLASH, - ACTIONS(1755), 1, + ACTIONS(1763), 1, anon_sym_BANG, - ACTIONS(1759), 1, + ACTIONS(1767), 1, anon_sym_AT, STATE(158), 1, sym_ns_qualified_name, @@ -68880,10 +68886,10 @@ static const uint16_t ts_small_parse_table[] = { sym_field_ref, STATE(1958), 1, sym_namespace, - ACTIONS(1753), 2, + ACTIONS(1761), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1757), 2, + ACTIONS(1765), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(610), 19, @@ -68909,23 +68915,23 @@ static const uint16_t ts_small_parse_table[] = { [53920] = 18, ACTIONS(278), 1, anon_sym_DOLLAR, - ACTIONS(1597), 1, + ACTIONS(1605), 1, sym_identifier, - ACTIONS(1613), 1, + ACTIONS(1621), 1, aux_sym_number_token1, - ACTIONS(1615), 1, + ACTIONS(1623), 1, aux_sym_number_token2, - ACTIONS(1617), 1, + ACTIONS(1625), 1, anon_sym_DQUOTE, - ACTIONS(1761), 1, + ACTIONS(1769), 1, anon_sym_LPAREN, - ACTIONS(1763), 1, + ACTIONS(1771), 1, anon_sym_getline, - ACTIONS(1765), 1, + ACTIONS(1773), 1, anon_sym_SLASH, - ACTIONS(1769), 1, + ACTIONS(1777), 1, anon_sym_BANG, - ACTIONS(1773), 1, + ACTIONS(1781), 1, anon_sym_AT, STATE(166), 1, sym_ns_qualified_name, @@ -68937,10 +68943,10 @@ static const uint16_t ts_small_parse_table[] = { sym_field_ref, STATE(1881), 1, sym_namespace, - ACTIONS(1767), 2, + ACTIONS(1775), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1771), 2, + ACTIONS(1779), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(625), 19, @@ -68964,25 +68970,25 @@ static const uint16_t ts_small_parse_table[] = { sym_func_call, sym_indirect_func_call, [53995] = 19, - ACTIONS(1245), 1, + ACTIONS(1253), 1, sym_identifier, - ACTIONS(1247), 1, + ACTIONS(1255), 1, anon_sym_LPAREN, - ACTIONS(1249), 1, + ACTIONS(1257), 1, anon_sym_getline, - ACTIONS(1251), 1, + ACTIONS(1259), 1, anon_sym_SLASH, - ACTIONS(1255), 1, + ACTIONS(1263), 1, anon_sym_BANG, - ACTIONS(1259), 1, + ACTIONS(1267), 1, anon_sym_DOLLAR, - ACTIONS(1261), 1, + ACTIONS(1269), 1, anon_sym_AT, - ACTIONS(1263), 1, + ACTIONS(1271), 1, aux_sym_number_token1, - ACTIONS(1265), 1, + ACTIONS(1273), 1, aux_sym_number_token2, - ACTIONS(1267), 1, + ACTIONS(1275), 1, anon_sym_DQUOTE, STATE(1091), 1, sym_ns_qualified_name, @@ -68994,10 +69000,10 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_in, STATE(2039), 1, sym_namespace, - ACTIONS(1253), 2, + ACTIONS(1261), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1257), 2, + ACTIONS(1265), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(1496), 9, @@ -69024,23 +69030,23 @@ static const uint16_t ts_small_parse_table[] = { [54072] = 18, ACTIONS(278), 1, anon_sym_DOLLAR, - ACTIONS(1597), 1, + ACTIONS(1605), 1, sym_identifier, - ACTIONS(1613), 1, + ACTIONS(1621), 1, aux_sym_number_token1, - ACTIONS(1615), 1, + ACTIONS(1623), 1, aux_sym_number_token2, - ACTIONS(1617), 1, + ACTIONS(1625), 1, anon_sym_DQUOTE, - ACTIONS(1761), 1, + ACTIONS(1769), 1, anon_sym_LPAREN, - ACTIONS(1763), 1, + ACTIONS(1771), 1, anon_sym_getline, - ACTIONS(1765), 1, + ACTIONS(1773), 1, anon_sym_SLASH, - ACTIONS(1769), 1, + ACTIONS(1777), 1, anon_sym_BANG, - ACTIONS(1773), 1, + ACTIONS(1781), 1, anon_sym_AT, STATE(166), 1, sym_ns_qualified_name, @@ -69052,10 +69058,10 @@ static const uint16_t ts_small_parse_table[] = { sym_field_ref, STATE(1881), 1, sym_namespace, - ACTIONS(1767), 2, + ACTIONS(1775), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1771), 2, + ACTIONS(1779), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(240), 19, @@ -69079,25 +69085,25 @@ static const uint16_t ts_small_parse_table[] = { sym_func_call, sym_indirect_func_call, [54147] = 18, - ACTIONS(546), 1, + ACTIONS(552), 1, anon_sym_DOLLAR, - ACTIONS(1575), 1, + ACTIONS(1583), 1, sym_identifier, - ACTIONS(1591), 1, + ACTIONS(1599), 1, aux_sym_number_token1, - ACTIONS(1593), 1, + ACTIONS(1601), 1, aux_sym_number_token2, - ACTIONS(1595), 1, + ACTIONS(1603), 1, anon_sym_DQUOTE, - ACTIONS(1747), 1, + ACTIONS(1755), 1, anon_sym_LPAREN, - ACTIONS(1749), 1, + ACTIONS(1757), 1, anon_sym_getline, - ACTIONS(1751), 1, + ACTIONS(1759), 1, anon_sym_SLASH, - ACTIONS(1755), 1, + ACTIONS(1763), 1, anon_sym_BANG, - ACTIONS(1759), 1, + ACTIONS(1767), 1, anon_sym_AT, STATE(158), 1, sym_ns_qualified_name, @@ -69109,10 +69115,10 @@ static const uint16_t ts_small_parse_table[] = { sym_field_ref, STATE(1958), 1, sym_namespace, - ACTIONS(1753), 2, + ACTIONS(1761), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1757), 2, + ACTIONS(1765), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(208), 19, @@ -69136,25 +69142,25 @@ static const uint16_t ts_small_parse_table[] = { sym_func_call, sym_indirect_func_call, [54222] = 18, - ACTIONS(546), 1, + ACTIONS(552), 1, anon_sym_DOLLAR, - ACTIONS(1575), 1, + ACTIONS(1583), 1, sym_identifier, - ACTIONS(1591), 1, + ACTIONS(1599), 1, aux_sym_number_token1, - ACTIONS(1593), 1, + ACTIONS(1601), 1, aux_sym_number_token2, - ACTIONS(1595), 1, + ACTIONS(1603), 1, anon_sym_DQUOTE, - ACTIONS(1747), 1, + ACTIONS(1755), 1, anon_sym_LPAREN, - ACTIONS(1749), 1, + ACTIONS(1757), 1, anon_sym_getline, - ACTIONS(1751), 1, + ACTIONS(1759), 1, anon_sym_SLASH, - ACTIONS(1755), 1, + ACTIONS(1763), 1, anon_sym_BANG, - ACTIONS(1759), 1, + ACTIONS(1767), 1, anon_sym_AT, STATE(158), 1, sym_ns_qualified_name, @@ -69166,10 +69172,10 @@ static const uint16_t ts_small_parse_table[] = { sym_field_ref, STATE(1958), 1, sym_namespace, - ACTIONS(1753), 2, + ACTIONS(1761), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1757), 2, + ACTIONS(1765), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(186), 19, @@ -69205,13 +69211,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, ACTIONS(33), 1, anon_sym_DQUOTE, - ACTIONS(1523), 1, + ACTIONS(1531), 1, sym_identifier, - ACTIONS(1525), 1, + ACTIONS(1533), 1, anon_sym_getline, - ACTIONS(1527), 1, + ACTIONS(1535), 1, anon_sym_SLASH, - ACTIONS(1531), 1, + ACTIONS(1539), 1, anon_sym_AT, STATE(431), 1, sym_ns_qualified_name, @@ -69226,7 +69232,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(19), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1529), 2, + ACTIONS(1537), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(528), 19, @@ -69250,25 +69256,25 @@ static const uint16_t ts_small_parse_table[] = { sym_func_call, sym_indirect_func_call, [54372] = 19, - ACTIONS(1245), 1, + ACTIONS(1253), 1, sym_identifier, - ACTIONS(1247), 1, + ACTIONS(1255), 1, anon_sym_LPAREN, - ACTIONS(1249), 1, + ACTIONS(1257), 1, anon_sym_getline, - ACTIONS(1251), 1, + ACTIONS(1259), 1, anon_sym_SLASH, - ACTIONS(1255), 1, + ACTIONS(1263), 1, anon_sym_BANG, - ACTIONS(1259), 1, + ACTIONS(1267), 1, anon_sym_DOLLAR, - ACTIONS(1261), 1, + ACTIONS(1269), 1, anon_sym_AT, - ACTIONS(1263), 1, + ACTIONS(1271), 1, aux_sym_number_token1, - ACTIONS(1265), 1, + ACTIONS(1273), 1, aux_sym_number_token2, - ACTIONS(1267), 1, + ACTIONS(1275), 1, anon_sym_DQUOTE, STATE(1091), 1, sym_ns_qualified_name, @@ -69280,10 +69286,10 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_in, STATE(2039), 1, sym_namespace, - ACTIONS(1253), 2, + ACTIONS(1261), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1257), 2, + ACTIONS(1265), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(1496), 9, @@ -69310,23 +69316,23 @@ static const uint16_t ts_small_parse_table[] = { [54449] = 18, ACTIONS(278), 1, anon_sym_DOLLAR, - ACTIONS(1597), 1, + ACTIONS(1605), 1, sym_identifier, - ACTIONS(1613), 1, + ACTIONS(1621), 1, aux_sym_number_token1, - ACTIONS(1615), 1, + ACTIONS(1623), 1, aux_sym_number_token2, - ACTIONS(1617), 1, + ACTIONS(1625), 1, anon_sym_DQUOTE, - ACTIONS(1761), 1, + ACTIONS(1769), 1, anon_sym_LPAREN, - ACTIONS(1763), 1, + ACTIONS(1771), 1, anon_sym_getline, - ACTIONS(1765), 1, + ACTIONS(1773), 1, anon_sym_SLASH, - ACTIONS(1769), 1, + ACTIONS(1777), 1, anon_sym_BANG, - ACTIONS(1773), 1, + ACTIONS(1781), 1, anon_sym_AT, STATE(166), 1, sym_ns_qualified_name, @@ -69338,10 +69344,10 @@ static const uint16_t ts_small_parse_table[] = { sym_field_ref, STATE(1881), 1, sym_namespace, - ACTIONS(1767), 2, + ACTIONS(1775), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1771), 2, + ACTIONS(1779), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(232), 19, @@ -69365,25 +69371,25 @@ static const uint16_t ts_small_parse_table[] = { sym_func_call, sym_indirect_func_call, [54524] = 19, - ACTIONS(1245), 1, + ACTIONS(1253), 1, sym_identifier, - ACTIONS(1247), 1, + ACTIONS(1255), 1, anon_sym_LPAREN, - ACTIONS(1249), 1, + ACTIONS(1257), 1, anon_sym_getline, - ACTIONS(1251), 1, + ACTIONS(1259), 1, anon_sym_SLASH, - ACTIONS(1255), 1, + ACTIONS(1263), 1, anon_sym_BANG, - ACTIONS(1259), 1, + ACTIONS(1267), 1, anon_sym_DOLLAR, - ACTIONS(1261), 1, + ACTIONS(1269), 1, anon_sym_AT, - ACTIONS(1263), 1, + ACTIONS(1271), 1, aux_sym_number_token1, - ACTIONS(1265), 1, + ACTIONS(1273), 1, aux_sym_number_token2, - ACTIONS(1267), 1, + ACTIONS(1275), 1, anon_sym_DQUOTE, STATE(1091), 1, sym_ns_qualified_name, @@ -69395,10 +69401,10 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_in, STATE(2039), 1, sym_namespace, - ACTIONS(1253), 2, + ACTIONS(1261), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1257), 2, + ACTIONS(1265), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(1496), 9, @@ -69425,23 +69431,23 @@ static const uint16_t ts_small_parse_table[] = { [54601] = 18, ACTIONS(328), 1, anon_sym_DOLLAR, - ACTIONS(1575), 1, + ACTIONS(1583), 1, sym_identifier, - ACTIONS(1577), 1, + ACTIONS(1585), 1, anon_sym_LPAREN, - ACTIONS(1579), 1, + ACTIONS(1587), 1, anon_sym_getline, - ACTIONS(1581), 1, + ACTIONS(1589), 1, anon_sym_SLASH, - ACTIONS(1585), 1, + ACTIONS(1593), 1, anon_sym_BANG, - ACTIONS(1589), 1, + ACTIONS(1597), 1, anon_sym_AT, - ACTIONS(1591), 1, + ACTIONS(1599), 1, aux_sym_number_token1, - ACTIONS(1593), 1, + ACTIONS(1601), 1, aux_sym_number_token2, - ACTIONS(1595), 1, + ACTIONS(1603), 1, anon_sym_DQUOTE, STATE(158), 1, sym_ns_qualified_name, @@ -69453,10 +69459,10 @@ static const uint16_t ts_small_parse_table[] = { sym_field_ref, STATE(1958), 1, sym_namespace, - ACTIONS(1583), 2, + ACTIONS(1591), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1587), 2, + ACTIONS(1595), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(208), 19, @@ -69480,25 +69486,25 @@ static const uint16_t ts_small_parse_table[] = { sym_func_call, sym_indirect_func_call, [54676] = 19, - ACTIONS(1245), 1, + ACTIONS(1253), 1, sym_identifier, - ACTIONS(1247), 1, + ACTIONS(1255), 1, anon_sym_LPAREN, - ACTIONS(1249), 1, + ACTIONS(1257), 1, anon_sym_getline, - ACTIONS(1251), 1, + ACTIONS(1259), 1, anon_sym_SLASH, - ACTIONS(1255), 1, + ACTIONS(1263), 1, anon_sym_BANG, - ACTIONS(1259), 1, + ACTIONS(1267), 1, anon_sym_DOLLAR, - ACTIONS(1261), 1, + ACTIONS(1269), 1, anon_sym_AT, - ACTIONS(1263), 1, + ACTIONS(1271), 1, aux_sym_number_token1, - ACTIONS(1265), 1, + ACTIONS(1273), 1, aux_sym_number_token2, - ACTIONS(1267), 1, + ACTIONS(1275), 1, anon_sym_DQUOTE, STATE(1091), 1, sym_ns_qualified_name, @@ -69510,10 +69516,10 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_in, STATE(2039), 1, sym_namespace, - ACTIONS(1253), 2, + ACTIONS(1261), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1257), 2, + ACTIONS(1265), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(1496), 9, @@ -69540,23 +69546,23 @@ static const uint16_t ts_small_parse_table[] = { [54753] = 18, ACTIONS(278), 1, anon_sym_DOLLAR, - ACTIONS(1597), 1, + ACTIONS(1605), 1, sym_identifier, - ACTIONS(1613), 1, + ACTIONS(1621), 1, aux_sym_number_token1, - ACTIONS(1615), 1, + ACTIONS(1623), 1, aux_sym_number_token2, - ACTIONS(1617), 1, + ACTIONS(1625), 1, anon_sym_DQUOTE, - ACTIONS(1761), 1, + ACTIONS(1769), 1, anon_sym_LPAREN, - ACTIONS(1763), 1, + ACTIONS(1771), 1, anon_sym_getline, - ACTIONS(1765), 1, + ACTIONS(1773), 1, anon_sym_SLASH, - ACTIONS(1769), 1, + ACTIONS(1777), 1, anon_sym_BANG, - ACTIONS(1773), 1, + ACTIONS(1781), 1, anon_sym_AT, STATE(166), 1, sym_ns_qualified_name, @@ -69568,10 +69574,10 @@ static const uint16_t ts_small_parse_table[] = { sym_field_ref, STATE(1881), 1, sym_namespace, - ACTIONS(1767), 2, + ACTIONS(1775), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1771), 2, + ACTIONS(1779), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(223), 19, @@ -69711,25 +69717,25 @@ static const uint16_t ts_small_parse_table[] = { sym_regex_constant, sym_indirect_func_call, [54982] = 18, - ACTIONS(546), 1, + ACTIONS(552), 1, anon_sym_DOLLAR, - ACTIONS(1575), 1, + ACTIONS(1583), 1, sym_identifier, - ACTIONS(1591), 1, + ACTIONS(1599), 1, aux_sym_number_token1, - ACTIONS(1593), 1, + ACTIONS(1601), 1, aux_sym_number_token2, - ACTIONS(1595), 1, + ACTIONS(1603), 1, anon_sym_DQUOTE, - ACTIONS(1747), 1, + ACTIONS(1755), 1, anon_sym_LPAREN, - ACTIONS(1749), 1, + ACTIONS(1757), 1, anon_sym_getline, - ACTIONS(1751), 1, + ACTIONS(1759), 1, anon_sym_SLASH, - ACTIONS(1755), 1, + ACTIONS(1763), 1, anon_sym_BANG, - ACTIONS(1759), 1, + ACTIONS(1767), 1, anon_sym_AT, STATE(158), 1, sym_ns_qualified_name, @@ -69741,10 +69747,10 @@ static const uint16_t ts_small_parse_table[] = { sym_field_ref, STATE(1958), 1, sym_namespace, - ACTIONS(1753), 2, + ACTIONS(1761), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1757), 2, + ACTIONS(1765), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(594), 19, @@ -69768,25 +69774,25 @@ static const uint16_t ts_small_parse_table[] = { sym_func_call, sym_indirect_func_call, [55057] = 18, - ACTIONS(546), 1, + ACTIONS(552), 1, anon_sym_DOLLAR, - ACTIONS(1575), 1, + ACTIONS(1583), 1, sym_identifier, - ACTIONS(1591), 1, + ACTIONS(1599), 1, aux_sym_number_token1, - ACTIONS(1593), 1, + ACTIONS(1601), 1, aux_sym_number_token2, - ACTIONS(1595), 1, + ACTIONS(1603), 1, anon_sym_DQUOTE, - ACTIONS(1747), 1, + ACTIONS(1755), 1, anon_sym_LPAREN, - ACTIONS(1749), 1, + ACTIONS(1757), 1, anon_sym_getline, - ACTIONS(1751), 1, + ACTIONS(1759), 1, anon_sym_SLASH, - ACTIONS(1755), 1, + ACTIONS(1763), 1, anon_sym_BANG, - ACTIONS(1759), 1, + ACTIONS(1767), 1, anon_sym_AT, STATE(158), 1, sym_ns_qualified_name, @@ -69798,10 +69804,10 @@ static const uint16_t ts_small_parse_table[] = { sym_field_ref, STATE(1958), 1, sym_namespace, - ACTIONS(1753), 2, + ACTIONS(1761), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1757), 2, + ACTIONS(1765), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(595), 19, @@ -69825,25 +69831,25 @@ static const uint16_t ts_small_parse_table[] = { sym_func_call, sym_indirect_func_call, [55132] = 19, - ACTIONS(1245), 1, + ACTIONS(1253), 1, sym_identifier, - ACTIONS(1247), 1, + ACTIONS(1255), 1, anon_sym_LPAREN, - ACTIONS(1249), 1, + ACTIONS(1257), 1, anon_sym_getline, - ACTIONS(1251), 1, + ACTIONS(1259), 1, anon_sym_SLASH, - ACTIONS(1255), 1, + ACTIONS(1263), 1, anon_sym_BANG, - ACTIONS(1259), 1, + ACTIONS(1267), 1, anon_sym_DOLLAR, - ACTIONS(1261), 1, + ACTIONS(1269), 1, anon_sym_AT, - ACTIONS(1263), 1, + ACTIONS(1271), 1, aux_sym_number_token1, - ACTIONS(1265), 1, + ACTIONS(1273), 1, aux_sym_number_token2, - ACTIONS(1267), 1, + ACTIONS(1275), 1, anon_sym_DQUOTE, STATE(1091), 1, sym_ns_qualified_name, @@ -69855,10 +69861,10 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_in, STATE(2039), 1, sym_namespace, - ACTIONS(1253), 2, + ACTIONS(1261), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1257), 2, + ACTIONS(1265), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(1496), 9, @@ -69883,25 +69889,25 @@ static const uint16_t ts_small_parse_table[] = { sym_regex_constant, sym_indirect_func_call, [55209] = 19, - ACTIONS(1245), 1, + ACTIONS(1253), 1, sym_identifier, - ACTIONS(1247), 1, + ACTIONS(1255), 1, anon_sym_LPAREN, - ACTIONS(1249), 1, + ACTIONS(1257), 1, anon_sym_getline, - ACTIONS(1251), 1, + ACTIONS(1259), 1, anon_sym_SLASH, - ACTIONS(1255), 1, + ACTIONS(1263), 1, anon_sym_BANG, - ACTIONS(1259), 1, + ACTIONS(1267), 1, anon_sym_DOLLAR, - ACTIONS(1261), 1, + ACTIONS(1269), 1, anon_sym_AT, - ACTIONS(1263), 1, + ACTIONS(1271), 1, aux_sym_number_token1, - ACTIONS(1265), 1, + ACTIONS(1273), 1, aux_sym_number_token2, - ACTIONS(1267), 1, + ACTIONS(1275), 1, anon_sym_DQUOTE, STATE(1091), 1, sym_ns_qualified_name, @@ -69913,10 +69919,10 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_in, STATE(2039), 1, sym_namespace, - ACTIONS(1253), 2, + ACTIONS(1261), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1257), 2, + ACTIONS(1265), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(1496), 9, @@ -69941,25 +69947,25 @@ static const uint16_t ts_small_parse_table[] = { sym_regex_constant, sym_indirect_func_call, [55286] = 19, - ACTIONS(1245), 1, + ACTIONS(1253), 1, sym_identifier, - ACTIONS(1247), 1, + ACTIONS(1255), 1, anon_sym_LPAREN, - ACTIONS(1249), 1, + ACTIONS(1257), 1, anon_sym_getline, - ACTIONS(1251), 1, + ACTIONS(1259), 1, anon_sym_SLASH, - ACTIONS(1255), 1, + ACTIONS(1263), 1, anon_sym_BANG, - ACTIONS(1259), 1, + ACTIONS(1267), 1, anon_sym_DOLLAR, - ACTIONS(1261), 1, + ACTIONS(1269), 1, anon_sym_AT, - ACTIONS(1263), 1, + ACTIONS(1271), 1, aux_sym_number_token1, - ACTIONS(1265), 1, + ACTIONS(1273), 1, aux_sym_number_token2, - ACTIONS(1267), 1, + ACTIONS(1275), 1, anon_sym_DQUOTE, STATE(1091), 1, sym_ns_qualified_name, @@ -69971,10 +69977,10 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_in, STATE(2039), 1, sym_namespace, - ACTIONS(1253), 2, + ACTIONS(1261), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1257), 2, + ACTIONS(1265), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(1496), 9, @@ -69999,25 +70005,25 @@ static const uint16_t ts_small_parse_table[] = { sym_regex_constant, sym_indirect_func_call, [55363] = 19, - ACTIONS(1245), 1, + ACTIONS(1253), 1, sym_identifier, - ACTIONS(1247), 1, + ACTIONS(1255), 1, anon_sym_LPAREN, - ACTIONS(1249), 1, + ACTIONS(1257), 1, anon_sym_getline, - ACTIONS(1251), 1, + ACTIONS(1259), 1, anon_sym_SLASH, - ACTIONS(1255), 1, + ACTIONS(1263), 1, anon_sym_BANG, - ACTIONS(1259), 1, + ACTIONS(1267), 1, anon_sym_DOLLAR, - ACTIONS(1261), 1, + ACTIONS(1269), 1, anon_sym_AT, - ACTIONS(1263), 1, + ACTIONS(1271), 1, aux_sym_number_token1, - ACTIONS(1265), 1, + ACTIONS(1273), 1, aux_sym_number_token2, - ACTIONS(1267), 1, + ACTIONS(1275), 1, anon_sym_DQUOTE, STATE(1091), 1, sym_ns_qualified_name, @@ -70029,10 +70035,10 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_in, STATE(2039), 1, sym_namespace, - ACTIONS(1253), 2, + ACTIONS(1261), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1257), 2, + ACTIONS(1265), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(1496), 9, @@ -70069,13 +70075,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, ACTIONS(169), 1, anon_sym_DQUOTE, - ACTIONS(1565), 1, + ACTIONS(1573), 1, sym_identifier, - ACTIONS(1567), 1, + ACTIONS(1575), 1, anon_sym_getline, - ACTIONS(1569), 1, + ACTIONS(1577), 1, anon_sym_SLASH, - ACTIONS(1573), 1, + ACTIONS(1581), 1, anon_sym_AT, STATE(219), 1, sym_ns_qualified_name, @@ -70090,7 +70096,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(155), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1571), 2, + ACTIONS(1579), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(419), 19, @@ -70114,25 +70120,25 @@ static const uint16_t ts_small_parse_table[] = { sym_func_call, sym_indirect_func_call, [55515] = 18, - ACTIONS(1259), 1, + ACTIONS(1267), 1, anon_sym_DOLLAR, - ACTIONS(1619), 1, + ACTIONS(1627), 1, sym_identifier, - ACTIONS(1635), 1, + ACTIONS(1643), 1, aux_sym_number_token1, - ACTIONS(1637), 1, + ACTIONS(1645), 1, aux_sym_number_token2, - ACTIONS(1639), 1, + ACTIONS(1647), 1, anon_sym_DQUOTE, - ACTIONS(1727), 1, + ACTIONS(1735), 1, anon_sym_LPAREN, - ACTIONS(1729), 1, + ACTIONS(1737), 1, anon_sym_getline, - ACTIONS(1731), 1, + ACTIONS(1739), 1, anon_sym_SLASH, - ACTIONS(1735), 1, + ACTIONS(1743), 1, anon_sym_BANG, - ACTIONS(1739), 1, + ACTIONS(1747), 1, anon_sym_AT, STATE(283), 1, sym_ns_qualified_name, @@ -70144,10 +70150,10 @@ static const uint16_t ts_small_parse_table[] = { sym_field_ref, STATE(2039), 1, sym_namespace, - ACTIONS(1733), 2, + ACTIONS(1741), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1737), 2, + ACTIONS(1745), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(333), 19, @@ -70171,25 +70177,25 @@ static const uint16_t ts_small_parse_table[] = { sym_func_call, sym_indirect_func_call, [55590] = 18, - ACTIONS(1259), 1, + ACTIONS(1267), 1, anon_sym_DOLLAR, - ACTIONS(1619), 1, + ACTIONS(1627), 1, sym_identifier, - ACTIONS(1635), 1, + ACTIONS(1643), 1, aux_sym_number_token1, - ACTIONS(1637), 1, + ACTIONS(1645), 1, aux_sym_number_token2, - ACTIONS(1639), 1, + ACTIONS(1647), 1, anon_sym_DQUOTE, - ACTIONS(1727), 1, + ACTIONS(1735), 1, anon_sym_LPAREN, - ACTIONS(1729), 1, + ACTIONS(1737), 1, anon_sym_getline, - ACTIONS(1731), 1, + ACTIONS(1739), 1, anon_sym_SLASH, - ACTIONS(1735), 1, + ACTIONS(1743), 1, anon_sym_BANG, - ACTIONS(1739), 1, + ACTIONS(1747), 1, anon_sym_AT, STATE(283), 1, sym_ns_qualified_name, @@ -70201,10 +70207,10 @@ static const uint16_t ts_small_parse_table[] = { sym_field_ref, STATE(2039), 1, sym_namespace, - ACTIONS(1733), 2, + ACTIONS(1741), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1737), 2, + ACTIONS(1745), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(1173), 19, @@ -70286,25 +70292,25 @@ static const uint16_t ts_small_parse_table[] = { sym_regex_constant, sym_indirect_func_call, [55742] = 18, - ACTIONS(1259), 1, + ACTIONS(1267), 1, anon_sym_DOLLAR, - ACTIONS(1619), 1, + ACTIONS(1627), 1, sym_identifier, - ACTIONS(1635), 1, + ACTIONS(1643), 1, aux_sym_number_token1, - ACTIONS(1637), 1, + ACTIONS(1645), 1, aux_sym_number_token2, - ACTIONS(1639), 1, + ACTIONS(1647), 1, anon_sym_DQUOTE, - ACTIONS(1727), 1, + ACTIONS(1735), 1, anon_sym_LPAREN, - ACTIONS(1729), 1, + ACTIONS(1737), 1, anon_sym_getline, - ACTIONS(1731), 1, + ACTIONS(1739), 1, anon_sym_SLASH, - ACTIONS(1735), 1, + ACTIONS(1743), 1, anon_sym_BANG, - ACTIONS(1739), 1, + ACTIONS(1747), 1, anon_sym_AT, STATE(283), 1, sym_ns_qualified_name, @@ -70316,10 +70322,10 @@ static const uint16_t ts_small_parse_table[] = { sym_field_ref, STATE(2039), 1, sym_namespace, - ACTIONS(1733), 2, + ACTIONS(1741), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1737), 2, + ACTIONS(1745), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(1208), 19, @@ -70343,25 +70349,25 @@ static const uint16_t ts_small_parse_table[] = { sym_func_call, sym_indirect_func_call, [55817] = 18, - ACTIONS(546), 1, + ACTIONS(552), 1, anon_sym_DOLLAR, - ACTIONS(1575), 1, + ACTIONS(1583), 1, sym_identifier, - ACTIONS(1591), 1, + ACTIONS(1599), 1, aux_sym_number_token1, - ACTIONS(1593), 1, + ACTIONS(1601), 1, aux_sym_number_token2, - ACTIONS(1595), 1, + ACTIONS(1603), 1, anon_sym_DQUOTE, - ACTIONS(1747), 1, + ACTIONS(1755), 1, anon_sym_LPAREN, - ACTIONS(1749), 1, + ACTIONS(1757), 1, anon_sym_getline, - ACTIONS(1751), 1, + ACTIONS(1759), 1, anon_sym_SLASH, - ACTIONS(1755), 1, + ACTIONS(1763), 1, anon_sym_BANG, - ACTIONS(1759), 1, + ACTIONS(1767), 1, anon_sym_AT, STATE(158), 1, sym_ns_qualified_name, @@ -70373,10 +70379,10 @@ static const uint16_t ts_small_parse_table[] = { sym_field_ref, STATE(1958), 1, sym_namespace, - ACTIONS(1753), 2, + ACTIONS(1761), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1757), 2, + ACTIONS(1765), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(596), 19, @@ -70400,25 +70406,25 @@ static const uint16_t ts_small_parse_table[] = { sym_func_call, sym_indirect_func_call, [55892] = 18, - ACTIONS(546), 1, + ACTIONS(552), 1, anon_sym_DOLLAR, - ACTIONS(1575), 1, + ACTIONS(1583), 1, sym_identifier, - ACTIONS(1591), 1, + ACTIONS(1599), 1, aux_sym_number_token1, - ACTIONS(1593), 1, + ACTIONS(1601), 1, aux_sym_number_token2, - ACTIONS(1595), 1, + ACTIONS(1603), 1, anon_sym_DQUOTE, - ACTIONS(1747), 1, + ACTIONS(1755), 1, anon_sym_LPAREN, - ACTIONS(1749), 1, + ACTIONS(1757), 1, anon_sym_getline, - ACTIONS(1751), 1, + ACTIONS(1759), 1, anon_sym_SLASH, - ACTIONS(1755), 1, + ACTIONS(1763), 1, anon_sym_BANG, - ACTIONS(1759), 1, + ACTIONS(1767), 1, anon_sym_AT, STATE(158), 1, sym_ns_qualified_name, @@ -70430,10 +70436,10 @@ static const uint16_t ts_small_parse_table[] = { sym_field_ref, STATE(1958), 1, sym_namespace, - ACTIONS(1753), 2, + ACTIONS(1761), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1757), 2, + ACTIONS(1765), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(589), 19, @@ -70457,13 +70463,13 @@ static const uint16_t ts_small_parse_table[] = { sym_func_call, sym_indirect_func_call, [55967] = 4, - ACTIONS(650), 2, + ACTIONS(658), 2, sym_concatenating_space, sym__if_else_separator, - ACTIONS(1197), 2, + ACTIONS(1205), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1275), 7, + ACTIONS(1283), 7, anon_sym_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -70471,7 +70477,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_CARET_EQ, - ACTIONS(636), 27, + ACTIONS(644), 27, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -70500,25 +70506,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, [56014] = 18, - ACTIONS(546), 1, + ACTIONS(552), 1, anon_sym_DOLLAR, - ACTIONS(1575), 1, + ACTIONS(1583), 1, sym_identifier, - ACTIONS(1591), 1, + ACTIONS(1599), 1, aux_sym_number_token1, - ACTIONS(1593), 1, + ACTIONS(1601), 1, aux_sym_number_token2, - ACTIONS(1595), 1, + ACTIONS(1603), 1, anon_sym_DQUOTE, - ACTIONS(1747), 1, + ACTIONS(1755), 1, anon_sym_LPAREN, - ACTIONS(1749), 1, + ACTIONS(1757), 1, anon_sym_getline, - ACTIONS(1751), 1, + ACTIONS(1759), 1, anon_sym_SLASH, - ACTIONS(1755), 1, + ACTIONS(1763), 1, anon_sym_BANG, - ACTIONS(1759), 1, + ACTIONS(1767), 1, anon_sym_AT, STATE(158), 1, sym_ns_qualified_name, @@ -70530,10 +70536,10 @@ static const uint16_t ts_small_parse_table[] = { sym_field_ref, STATE(1958), 1, sym_namespace, - ACTIONS(1753), 2, + ACTIONS(1761), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1757), 2, + ACTIONS(1765), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(597), 19, @@ -70557,25 +70563,25 @@ static const uint16_t ts_small_parse_table[] = { sym_func_call, sym_indirect_func_call, [56089] = 18, - ACTIONS(546), 1, + ACTIONS(552), 1, anon_sym_DOLLAR, - ACTIONS(1575), 1, + ACTIONS(1583), 1, sym_identifier, - ACTIONS(1591), 1, + ACTIONS(1599), 1, aux_sym_number_token1, - ACTIONS(1593), 1, + ACTIONS(1601), 1, aux_sym_number_token2, - ACTIONS(1595), 1, + ACTIONS(1603), 1, anon_sym_DQUOTE, - ACTIONS(1747), 1, + ACTIONS(1755), 1, anon_sym_LPAREN, - ACTIONS(1749), 1, + ACTIONS(1757), 1, anon_sym_getline, - ACTIONS(1751), 1, + ACTIONS(1759), 1, anon_sym_SLASH, - ACTIONS(1755), 1, + ACTIONS(1763), 1, anon_sym_BANG, - ACTIONS(1759), 1, + ACTIONS(1767), 1, anon_sym_AT, STATE(158), 1, sym_ns_qualified_name, @@ -70587,10 +70593,10 @@ static const uint16_t ts_small_parse_table[] = { sym_field_ref, STATE(1958), 1, sym_namespace, - ACTIONS(1753), 2, + ACTIONS(1761), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1757), 2, + ACTIONS(1765), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(599), 19, @@ -70614,25 +70620,25 @@ static const uint16_t ts_small_parse_table[] = { sym_func_call, sym_indirect_func_call, [56164] = 18, - ACTIONS(546), 1, + ACTIONS(552), 1, anon_sym_DOLLAR, - ACTIONS(1575), 1, + ACTIONS(1583), 1, sym_identifier, - ACTIONS(1591), 1, + ACTIONS(1599), 1, aux_sym_number_token1, - ACTIONS(1593), 1, + ACTIONS(1601), 1, aux_sym_number_token2, - ACTIONS(1595), 1, + ACTIONS(1603), 1, anon_sym_DQUOTE, - ACTIONS(1747), 1, + ACTIONS(1755), 1, anon_sym_LPAREN, - ACTIONS(1749), 1, + ACTIONS(1757), 1, anon_sym_getline, - ACTIONS(1751), 1, + ACTIONS(1759), 1, anon_sym_SLASH, - ACTIONS(1755), 1, + ACTIONS(1763), 1, anon_sym_BANG, - ACTIONS(1759), 1, + ACTIONS(1767), 1, anon_sym_AT, STATE(158), 1, sym_ns_qualified_name, @@ -70644,10 +70650,10 @@ static const uint16_t ts_small_parse_table[] = { sym_field_ref, STATE(1958), 1, sym_namespace, - ACTIONS(1753), 2, + ACTIONS(1761), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1757), 2, + ACTIONS(1765), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(600), 19, @@ -70671,14 +70677,14 @@ static const uint16_t ts_small_parse_table[] = { sym_func_call, sym_indirect_func_call, [56239] = 5, - ACTIONS(650), 1, + ACTIONS(658), 1, sym__if_else_separator, - ACTIONS(1279), 1, + ACTIONS(1287), 1, sym_concatenating_space, - ACTIONS(1207), 2, + ACTIONS(1215), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1277), 7, + ACTIONS(1285), 7, anon_sym_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -70686,7 +70692,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_CARET_EQ, - ACTIONS(636), 27, + ACTIONS(644), 27, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -70715,25 +70721,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, [56288] = 18, - ACTIONS(546), 1, + ACTIONS(552), 1, anon_sym_DOLLAR, - ACTIONS(1575), 1, + ACTIONS(1583), 1, sym_identifier, - ACTIONS(1591), 1, + ACTIONS(1599), 1, aux_sym_number_token1, - ACTIONS(1593), 1, + ACTIONS(1601), 1, aux_sym_number_token2, - ACTIONS(1595), 1, + ACTIONS(1603), 1, anon_sym_DQUOTE, - ACTIONS(1747), 1, + ACTIONS(1755), 1, anon_sym_LPAREN, - ACTIONS(1749), 1, + ACTIONS(1757), 1, anon_sym_getline, - ACTIONS(1751), 1, + ACTIONS(1759), 1, anon_sym_SLASH, - ACTIONS(1755), 1, + ACTIONS(1763), 1, anon_sym_BANG, - ACTIONS(1759), 1, + ACTIONS(1767), 1, anon_sym_AT, STATE(158), 1, sym_ns_qualified_name, @@ -70745,10 +70751,10 @@ static const uint16_t ts_small_parse_table[] = { sym_field_ref, STATE(1958), 1, sym_namespace, - ACTIONS(1753), 2, + ACTIONS(1761), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1757), 2, + ACTIONS(1765), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(196), 19, @@ -70772,25 +70778,25 @@ static const uint16_t ts_small_parse_table[] = { sym_func_call, sym_indirect_func_call, [56363] = 18, - ACTIONS(546), 1, + ACTIONS(552), 1, anon_sym_DOLLAR, - ACTIONS(1575), 1, + ACTIONS(1583), 1, sym_identifier, - ACTIONS(1591), 1, + ACTIONS(1599), 1, aux_sym_number_token1, - ACTIONS(1593), 1, + ACTIONS(1601), 1, aux_sym_number_token2, - ACTIONS(1595), 1, + ACTIONS(1603), 1, anon_sym_DQUOTE, - ACTIONS(1747), 1, + ACTIONS(1755), 1, anon_sym_LPAREN, - ACTIONS(1749), 1, + ACTIONS(1757), 1, anon_sym_getline, - ACTIONS(1751), 1, + ACTIONS(1759), 1, anon_sym_SLASH, - ACTIONS(1755), 1, + ACTIONS(1763), 1, anon_sym_BANG, - ACTIONS(1759), 1, + ACTIONS(1767), 1, anon_sym_AT, STATE(158), 1, sym_ns_qualified_name, @@ -70802,10 +70808,10 @@ static const uint16_t ts_small_parse_table[] = { sym_field_ref, STATE(1958), 1, sym_namespace, - ACTIONS(1753), 2, + ACTIONS(1761), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1757), 2, + ACTIONS(1765), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(602), 19, @@ -70887,25 +70893,25 @@ static const uint16_t ts_small_parse_table[] = { sym_regex_constant, sym_indirect_func_call, [56515] = 19, - ACTIONS(1245), 1, + ACTIONS(1253), 1, sym_identifier, - ACTIONS(1247), 1, + ACTIONS(1255), 1, anon_sym_LPAREN, - ACTIONS(1249), 1, + ACTIONS(1257), 1, anon_sym_getline, - ACTIONS(1251), 1, + ACTIONS(1259), 1, anon_sym_SLASH, - ACTIONS(1255), 1, + ACTIONS(1263), 1, anon_sym_BANG, - ACTIONS(1259), 1, + ACTIONS(1267), 1, anon_sym_DOLLAR, - ACTIONS(1261), 1, + ACTIONS(1269), 1, anon_sym_AT, - ACTIONS(1263), 1, + ACTIONS(1271), 1, aux_sym_number_token1, - ACTIONS(1265), 1, + ACTIONS(1273), 1, aux_sym_number_token2, - ACTIONS(1267), 1, + ACTIONS(1275), 1, anon_sym_DQUOTE, STATE(1091), 1, sym_ns_qualified_name, @@ -70917,10 +70923,10 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_in, STATE(2039), 1, sym_namespace, - ACTIONS(1253), 2, + ACTIONS(1261), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1257), 2, + ACTIONS(1265), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(1496), 9, @@ -71003,14 +71009,14 @@ static const uint16_t ts_small_parse_table[] = { sym_regex_constant, sym_indirect_func_call, [56669] = 5, - ACTIONS(650), 1, + ACTIONS(658), 1, sym_concatenating_space, - ACTIONS(684), 1, + ACTIONS(692), 1, anon_sym_LBRACK, - ACTIONS(1221), 2, + ACTIONS(1229), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1353), 7, + ACTIONS(1361), 7, anon_sym_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -71018,7 +71024,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_CARET_EQ, - ACTIONS(636), 27, + ACTIONS(644), 27, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -71047,23 +71053,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, [56718] = 7, - ACTIONS(888), 1, + ACTIONS(896), 1, anon_sym_LBRACK, - ACTIONS(1367), 1, + ACTIONS(1375), 1, anon_sym_LPAREN2, - ACTIONS(1371), 1, + ACTIONS(1379), 1, anon_sym_EQ, - ACTIONS(1369), 2, + ACTIONS(1377), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1373), 6, + ACTIONS(1381), 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(636), 9, + ACTIONS(644), 9, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -71073,7 +71079,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(650), 18, + ACTIONS(658), 18, sym_concatenating_space, anon_sym_COMMA, anon_sym_SEMI, @@ -71093,25 +71099,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_RBRACK, [56771] = 18, - ACTIONS(546), 1, + ACTIONS(552), 1, anon_sym_DOLLAR, - ACTIONS(1575), 1, + ACTIONS(1583), 1, sym_identifier, - ACTIONS(1591), 1, + ACTIONS(1599), 1, aux_sym_number_token1, - ACTIONS(1593), 1, + ACTIONS(1601), 1, aux_sym_number_token2, - ACTIONS(1595), 1, + ACTIONS(1603), 1, anon_sym_DQUOTE, - ACTIONS(1747), 1, + ACTIONS(1755), 1, anon_sym_LPAREN, - ACTIONS(1749), 1, + ACTIONS(1757), 1, anon_sym_getline, - ACTIONS(1751), 1, + ACTIONS(1759), 1, anon_sym_SLASH, - ACTIONS(1755), 1, + ACTIONS(1763), 1, anon_sym_BANG, - ACTIONS(1759), 1, + ACTIONS(1767), 1, anon_sym_AT, STATE(158), 1, sym_ns_qualified_name, @@ -71123,10 +71129,10 @@ static const uint16_t ts_small_parse_table[] = { sym_field_ref, STATE(1958), 1, sym_namespace, - ACTIONS(1753), 2, + ACTIONS(1761), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1757), 2, + ACTIONS(1765), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(603), 19, @@ -71152,23 +71158,23 @@ static const uint16_t ts_small_parse_table[] = { [56846] = 18, ACTIONS(278), 1, anon_sym_DOLLAR, - ACTIONS(1597), 1, + ACTIONS(1605), 1, sym_identifier, - ACTIONS(1613), 1, + ACTIONS(1621), 1, aux_sym_number_token1, - ACTIONS(1615), 1, + ACTIONS(1623), 1, aux_sym_number_token2, - ACTIONS(1617), 1, + ACTIONS(1625), 1, anon_sym_DQUOTE, - ACTIONS(1761), 1, + ACTIONS(1769), 1, anon_sym_LPAREN, - ACTIONS(1763), 1, + ACTIONS(1771), 1, anon_sym_getline, - ACTIONS(1765), 1, + ACTIONS(1773), 1, anon_sym_SLASH, - ACTIONS(1769), 1, + ACTIONS(1777), 1, anon_sym_BANG, - ACTIONS(1773), 1, + ACTIONS(1781), 1, anon_sym_AT, STATE(166), 1, sym_ns_qualified_name, @@ -71180,10 +71186,10 @@ static const uint16_t ts_small_parse_table[] = { sym_field_ref, STATE(1881), 1, sym_namespace, - ACTIONS(1767), 2, + ACTIONS(1775), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1771), 2, + ACTIONS(1779), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(671), 19, @@ -71207,25 +71213,25 @@ static const uint16_t ts_small_parse_table[] = { sym_func_call, sym_indirect_func_call, [56921] = 19, - ACTIONS(1245), 1, + ACTIONS(1253), 1, sym_identifier, - ACTIONS(1247), 1, + ACTIONS(1255), 1, anon_sym_LPAREN, - ACTIONS(1249), 1, + ACTIONS(1257), 1, anon_sym_getline, - ACTIONS(1251), 1, + ACTIONS(1259), 1, anon_sym_SLASH, - ACTIONS(1255), 1, + ACTIONS(1263), 1, anon_sym_BANG, - ACTIONS(1259), 1, + ACTIONS(1267), 1, anon_sym_DOLLAR, - ACTIONS(1261), 1, + ACTIONS(1269), 1, anon_sym_AT, - ACTIONS(1263), 1, + ACTIONS(1271), 1, aux_sym_number_token1, - ACTIONS(1265), 1, + ACTIONS(1273), 1, aux_sym_number_token2, - ACTIONS(1267), 1, + ACTIONS(1275), 1, anon_sym_DQUOTE, STATE(1091), 1, sym_ns_qualified_name, @@ -71237,10 +71243,10 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_in, STATE(2039), 1, sym_namespace, - ACTIONS(1253), 2, + ACTIONS(1261), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1257), 2, + ACTIONS(1265), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(1496), 9, @@ -71265,25 +71271,25 @@ static const uint16_t ts_small_parse_table[] = { sym_regex_constant, sym_indirect_func_call, [56998] = 19, - ACTIONS(1245), 1, + ACTIONS(1253), 1, sym_identifier, - ACTIONS(1247), 1, + ACTIONS(1255), 1, anon_sym_LPAREN, - ACTIONS(1249), 1, + ACTIONS(1257), 1, anon_sym_getline, - ACTIONS(1251), 1, + ACTIONS(1259), 1, anon_sym_SLASH, - ACTIONS(1255), 1, + ACTIONS(1263), 1, anon_sym_BANG, - ACTIONS(1259), 1, + ACTIONS(1267), 1, anon_sym_DOLLAR, - ACTIONS(1261), 1, + ACTIONS(1269), 1, anon_sym_AT, - ACTIONS(1263), 1, + ACTIONS(1271), 1, aux_sym_number_token1, - ACTIONS(1265), 1, + ACTIONS(1273), 1, aux_sym_number_token2, - ACTIONS(1267), 1, + ACTIONS(1275), 1, anon_sym_DQUOTE, STATE(1091), 1, sym_ns_qualified_name, @@ -71295,10 +71301,10 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_in, STATE(2039), 1, sym_namespace, - ACTIONS(1253), 2, + ACTIONS(1261), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1257), 2, + ACTIONS(1265), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(1496), 9, @@ -71323,25 +71329,25 @@ static const uint16_t ts_small_parse_table[] = { sym_regex_constant, sym_indirect_func_call, [57075] = 18, - ACTIONS(1259), 1, + ACTIONS(1267), 1, anon_sym_DOLLAR, - ACTIONS(1619), 1, + ACTIONS(1627), 1, sym_identifier, - ACTIONS(1635), 1, + ACTIONS(1643), 1, aux_sym_number_token1, - ACTIONS(1637), 1, + ACTIONS(1645), 1, aux_sym_number_token2, - ACTIONS(1639), 1, + ACTIONS(1647), 1, anon_sym_DQUOTE, - ACTIONS(1727), 1, + ACTIONS(1735), 1, anon_sym_LPAREN, - ACTIONS(1729), 1, + ACTIONS(1737), 1, anon_sym_getline, - ACTIONS(1731), 1, + ACTIONS(1739), 1, anon_sym_SLASH, - ACTIONS(1735), 1, + ACTIONS(1743), 1, anon_sym_BANG, - ACTIONS(1739), 1, + ACTIONS(1747), 1, anon_sym_AT, STATE(283), 1, sym_ns_qualified_name, @@ -71353,10 +71359,10 @@ static const uint16_t ts_small_parse_table[] = { sym_field_ref, STATE(2039), 1, sym_namespace, - ACTIONS(1733), 2, + ACTIONS(1741), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1737), 2, + ACTIONS(1745), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(344), 19, @@ -71382,23 +71388,23 @@ static const uint16_t ts_small_parse_table[] = { [57150] = 18, ACTIONS(278), 1, anon_sym_DOLLAR, - ACTIONS(1597), 1, + ACTIONS(1605), 1, sym_identifier, - ACTIONS(1613), 1, + ACTIONS(1621), 1, aux_sym_number_token1, - ACTIONS(1615), 1, + ACTIONS(1623), 1, aux_sym_number_token2, - ACTIONS(1617), 1, + ACTIONS(1625), 1, anon_sym_DQUOTE, - ACTIONS(1761), 1, + ACTIONS(1769), 1, anon_sym_LPAREN, - ACTIONS(1763), 1, + ACTIONS(1771), 1, anon_sym_getline, - ACTIONS(1765), 1, + ACTIONS(1773), 1, anon_sym_SLASH, - ACTIONS(1769), 1, + ACTIONS(1777), 1, anon_sym_BANG, - ACTIONS(1773), 1, + ACTIONS(1781), 1, anon_sym_AT, STATE(166), 1, sym_ns_qualified_name, @@ -71410,10 +71416,10 @@ static const uint16_t ts_small_parse_table[] = { sym_field_ref, STATE(1881), 1, sym_namespace, - ACTIONS(1767), 2, + ACTIONS(1775), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1771), 2, + ACTIONS(1779), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(670), 19, @@ -71437,14 +71443,14 @@ static const uint16_t ts_small_parse_table[] = { sym_func_call, sym_indirect_func_call, [57225] = 5, - ACTIONS(684), 1, + ACTIONS(692), 1, anon_sym_LBRACK, - ACTIONS(1347), 1, + ACTIONS(1355), 1, sym_concatenating_space, - ACTIONS(1215), 2, + ACTIONS(1223), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1345), 7, + ACTIONS(1353), 7, anon_sym_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -71452,7 +71458,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_CARET_EQ, - ACTIONS(636), 27, + ACTIONS(644), 27, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -71487,19 +71493,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, ACTIONS(484), 1, anon_sym_DQUOTE, - ACTIONS(538), 1, + ACTIONS(544), 1, anon_sym_LPAREN, - ACTIONS(542), 1, + ACTIONS(548), 1, anon_sym_BANG, - ACTIONS(546), 1, + ACTIONS(552), 1, anon_sym_DOLLAR, - ACTIONS(1707), 1, + ACTIONS(1715), 1, sym_identifier, - ACTIONS(1709), 1, + ACTIONS(1717), 1, anon_sym_getline, - ACTIONS(1711), 1, + ACTIONS(1719), 1, anon_sym_SLASH, - ACTIONS(1715), 1, + ACTIONS(1723), 1, anon_sym_AT, STATE(571), 1, sym_ns_qualified_name, @@ -71514,7 +71520,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(71), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1713), 2, + ACTIONS(1721), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(1303), 19, @@ -71538,11 +71544,11 @@ static const uint16_t ts_small_parse_table[] = { sym_func_call, sym_indirect_func_call, [57349] = 3, - ACTIONS(981), 1, + ACTIONS(989), 1, anon_sym_LBRACK, - ACTIONS(1511), 1, + ACTIONS(1519), 1, sym__if_else_separator, - ACTIONS(1509), 36, + ACTIONS(1517), 36, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, @@ -71580,25 +71586,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [57394] = 19, - ACTIONS(1245), 1, + ACTIONS(1253), 1, sym_identifier, - ACTIONS(1247), 1, + ACTIONS(1255), 1, anon_sym_LPAREN, - ACTIONS(1249), 1, + ACTIONS(1257), 1, anon_sym_getline, - ACTIONS(1251), 1, + ACTIONS(1259), 1, anon_sym_SLASH, - ACTIONS(1255), 1, + ACTIONS(1263), 1, anon_sym_BANG, - ACTIONS(1259), 1, + ACTIONS(1267), 1, anon_sym_DOLLAR, - ACTIONS(1261), 1, + ACTIONS(1269), 1, anon_sym_AT, - ACTIONS(1263), 1, + ACTIONS(1271), 1, aux_sym_number_token1, - ACTIONS(1265), 1, + ACTIONS(1273), 1, aux_sym_number_token2, - ACTIONS(1267), 1, + ACTIONS(1275), 1, anon_sym_DQUOTE, STATE(1091), 1, sym_ns_qualified_name, @@ -71610,10 +71616,10 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_in, STATE(2039), 1, sym_namespace, - ACTIONS(1253), 2, + ACTIONS(1261), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1257), 2, + ACTIONS(1265), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(1496), 9, @@ -71650,13 +71656,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, ACTIONS(484), 1, anon_sym_DQUOTE, - ACTIONS(1555), 1, + ACTIONS(1563), 1, sym_identifier, - ACTIONS(1557), 1, + ACTIONS(1565), 1, anon_sym_getline, - ACTIONS(1559), 1, + ACTIONS(1567), 1, anon_sym_SLASH, - ACTIONS(1563), 1, + ACTIONS(1571), 1, anon_sym_AT, STATE(678), 1, sym_ns_qualified_name, @@ -71671,7 +71677,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(472), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1561), 2, + ACTIONS(1569), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(1292), 19, @@ -71695,25 +71701,25 @@ static const uint16_t ts_small_parse_table[] = { sym_func_call, sym_indirect_func_call, [57546] = 18, - ACTIONS(1247), 1, - anon_sym_LPAREN, ACTIONS(1255), 1, + anon_sym_LPAREN, + ACTIONS(1263), 1, anon_sym_BANG, - ACTIONS(1259), 1, + ACTIONS(1267), 1, anon_sym_DOLLAR, - ACTIONS(1263), 1, + ACTIONS(1271), 1, aux_sym_number_token1, - ACTIONS(1265), 1, + ACTIONS(1273), 1, aux_sym_number_token2, - ACTIONS(1267), 1, + ACTIONS(1275), 1, anon_sym_DQUOTE, - ACTIONS(1655), 1, + ACTIONS(1663), 1, sym_identifier, - ACTIONS(1657), 1, + ACTIONS(1665), 1, anon_sym_getline, - ACTIONS(1659), 1, + ACTIONS(1667), 1, anon_sym_SLASH, - ACTIONS(1663), 1, + ACTIONS(1671), 1, anon_sym_AT, STATE(1032), 1, sym_ns_qualified_name, @@ -71725,10 +71731,10 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_in, STATE(2039), 1, sym_namespace, - ACTIONS(1253), 2, + ACTIONS(1261), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1661), 2, + ACTIONS(1669), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(1472), 19, @@ -71868,25 +71874,25 @@ static const uint16_t ts_small_parse_table[] = { sym_regex_constant, sym_indirect_func_call, [57775] = 18, - ACTIONS(1247), 1, - anon_sym_LPAREN, ACTIONS(1255), 1, + anon_sym_LPAREN, + ACTIONS(1263), 1, anon_sym_BANG, - ACTIONS(1259), 1, + ACTIONS(1267), 1, anon_sym_DOLLAR, - ACTIONS(1263), 1, + ACTIONS(1271), 1, aux_sym_number_token1, - ACTIONS(1265), 1, + ACTIONS(1273), 1, aux_sym_number_token2, - ACTIONS(1267), 1, + ACTIONS(1275), 1, anon_sym_DQUOTE, - ACTIONS(1655), 1, + ACTIONS(1663), 1, sym_identifier, - ACTIONS(1657), 1, + ACTIONS(1665), 1, anon_sym_getline, - ACTIONS(1659), 1, + ACTIONS(1667), 1, anon_sym_SLASH, - ACTIONS(1663), 1, + ACTIONS(1671), 1, anon_sym_AT, STATE(1032), 1, sym_ns_qualified_name, @@ -71898,10 +71904,10 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_in, STATE(2039), 1, sym_namespace, - ACTIONS(1253), 2, + ACTIONS(1261), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1661), 2, + ACTIONS(1669), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(1473), 19, @@ -71925,30 +71931,30 @@ static const uint16_t ts_small_parse_table[] = { sym_func_call, sym_indirect_func_call, [57850] = 8, - ACTIONS(708), 1, + ACTIONS(716), 1, anon_sym_EQ, - ACTIONS(888), 1, + ACTIONS(896), 1, anon_sym_LBRACK, - ACTIONS(1367), 1, + ACTIONS(1375), 1, anon_sym_LPAREN2, - ACTIONS(890), 2, + ACTIONS(898), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(646), 6, + ACTIONS(654), 6, sym_concatenating_space, anon_sym_COMMA, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_COLON, anon_sym_RBRACK, - ACTIONS(967), 6, + ACTIONS(975), 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(636), 9, + ACTIONS(644), 9, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -71958,7 +71964,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(650), 12, + ACTIONS(658), 12, anon_sym_in, anon_sym_PIPE_AMP, anon_sym_QMARK, @@ -71972,25 +71978,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, [57905] = 18, - ACTIONS(1247), 1, - anon_sym_LPAREN, ACTIONS(1255), 1, + anon_sym_LPAREN, + ACTIONS(1263), 1, anon_sym_BANG, - ACTIONS(1259), 1, + ACTIONS(1267), 1, anon_sym_DOLLAR, - ACTIONS(1263), 1, + ACTIONS(1271), 1, aux_sym_number_token1, - ACTIONS(1265), 1, + ACTIONS(1273), 1, aux_sym_number_token2, - ACTIONS(1267), 1, + ACTIONS(1275), 1, anon_sym_DQUOTE, - ACTIONS(1655), 1, + ACTIONS(1663), 1, sym_identifier, - ACTIONS(1657), 1, + ACTIONS(1665), 1, anon_sym_getline, - ACTIONS(1659), 1, + ACTIONS(1667), 1, anon_sym_SLASH, - ACTIONS(1663), 1, + ACTIONS(1671), 1, anon_sym_AT, STATE(1032), 1, sym_ns_qualified_name, @@ -72002,10 +72008,10 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_in, STATE(2039), 1, sym_namespace, - ACTIONS(1253), 2, + ACTIONS(1261), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1661), 2, + ACTIONS(1669), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(1474), 19, @@ -72029,25 +72035,25 @@ static const uint16_t ts_small_parse_table[] = { sym_func_call, sym_indirect_func_call, [57980] = 19, - ACTIONS(1245), 1, + ACTIONS(1253), 1, sym_identifier, - ACTIONS(1247), 1, + ACTIONS(1255), 1, anon_sym_LPAREN, - ACTIONS(1249), 1, + ACTIONS(1257), 1, anon_sym_getline, - ACTIONS(1251), 1, + ACTIONS(1259), 1, anon_sym_SLASH, - ACTIONS(1255), 1, + ACTIONS(1263), 1, anon_sym_BANG, - ACTIONS(1259), 1, + ACTIONS(1267), 1, anon_sym_DOLLAR, - ACTIONS(1261), 1, + ACTIONS(1269), 1, anon_sym_AT, - ACTIONS(1263), 1, + ACTIONS(1271), 1, aux_sym_number_token1, - ACTIONS(1265), 1, + ACTIONS(1273), 1, aux_sym_number_token2, - ACTIONS(1267), 1, + ACTIONS(1275), 1, anon_sym_DQUOTE, STATE(1091), 1, sym_ns_qualified_name, @@ -72059,10 +72065,10 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_in, STATE(2039), 1, sym_namespace, - ACTIONS(1253), 2, + ACTIONS(1261), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1257), 2, + ACTIONS(1265), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(1496), 9, @@ -72087,25 +72093,25 @@ static const uint16_t ts_small_parse_table[] = { sym_regex_constant, sym_indirect_func_call, [58057] = 19, - ACTIONS(1245), 1, + ACTIONS(1253), 1, sym_identifier, - ACTIONS(1247), 1, + ACTIONS(1255), 1, anon_sym_LPAREN, - ACTIONS(1249), 1, + ACTIONS(1257), 1, anon_sym_getline, - ACTIONS(1251), 1, + ACTIONS(1259), 1, anon_sym_SLASH, - ACTIONS(1255), 1, + ACTIONS(1263), 1, anon_sym_BANG, - ACTIONS(1259), 1, + ACTIONS(1267), 1, anon_sym_DOLLAR, - ACTIONS(1261), 1, + ACTIONS(1269), 1, anon_sym_AT, - ACTIONS(1263), 1, + ACTIONS(1271), 1, aux_sym_number_token1, - ACTIONS(1265), 1, + ACTIONS(1273), 1, aux_sym_number_token2, - ACTIONS(1267), 1, + ACTIONS(1275), 1, anon_sym_DQUOTE, STATE(1091), 1, sym_ns_qualified_name, @@ -72117,10 +72123,10 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_in, STATE(2039), 1, sym_namespace, - ACTIONS(1253), 2, + ACTIONS(1261), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1257), 2, + ACTIONS(1265), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(1496), 9, @@ -72145,25 +72151,25 @@ static const uint16_t ts_small_parse_table[] = { sym_regex_constant, sym_indirect_func_call, [58134] = 18, - ACTIONS(1247), 1, - anon_sym_LPAREN, ACTIONS(1255), 1, + anon_sym_LPAREN, + ACTIONS(1263), 1, anon_sym_BANG, - ACTIONS(1259), 1, + ACTIONS(1267), 1, anon_sym_DOLLAR, - ACTIONS(1263), 1, + ACTIONS(1271), 1, aux_sym_number_token1, - ACTIONS(1265), 1, + ACTIONS(1273), 1, aux_sym_number_token2, - ACTIONS(1267), 1, + ACTIONS(1275), 1, anon_sym_DQUOTE, - ACTIONS(1655), 1, + ACTIONS(1663), 1, sym_identifier, - ACTIONS(1657), 1, + ACTIONS(1665), 1, anon_sym_getline, - ACTIONS(1659), 1, + ACTIONS(1667), 1, anon_sym_SLASH, - ACTIONS(1663), 1, + ACTIONS(1671), 1, anon_sym_AT, STATE(1032), 1, sym_ns_qualified_name, @@ -72175,10 +72181,10 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_in, STATE(2039), 1, sym_namespace, - ACTIONS(1253), 2, + ACTIONS(1261), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1661), 2, + ACTIONS(1669), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(1476), 19, @@ -72202,25 +72208,25 @@ static const uint16_t ts_small_parse_table[] = { sym_func_call, sym_indirect_func_call, [58209] = 18, - ACTIONS(1247), 1, - anon_sym_LPAREN, ACTIONS(1255), 1, + anon_sym_LPAREN, + ACTIONS(1263), 1, anon_sym_BANG, - ACTIONS(1259), 1, + ACTIONS(1267), 1, anon_sym_DOLLAR, - ACTIONS(1263), 1, + ACTIONS(1271), 1, aux_sym_number_token1, - ACTIONS(1265), 1, + ACTIONS(1273), 1, aux_sym_number_token2, - ACTIONS(1267), 1, + ACTIONS(1275), 1, anon_sym_DQUOTE, - ACTIONS(1655), 1, + ACTIONS(1663), 1, sym_identifier, - ACTIONS(1657), 1, + ACTIONS(1665), 1, anon_sym_getline, - ACTIONS(1659), 1, + ACTIONS(1667), 1, anon_sym_SLASH, - ACTIONS(1663), 1, + ACTIONS(1671), 1, anon_sym_AT, STATE(1032), 1, sym_ns_qualified_name, @@ -72232,10 +72238,10 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_in, STATE(2039), 1, sym_namespace, - ACTIONS(1253), 2, + ACTIONS(1261), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1661), 2, + ACTIONS(1669), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(1477), 19, @@ -72271,13 +72277,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, ACTIONS(484), 1, anon_sym_DQUOTE, - ACTIONS(1555), 1, + ACTIONS(1563), 1, sym_identifier, - ACTIONS(1557), 1, + ACTIONS(1565), 1, anon_sym_getline, - ACTIONS(1559), 1, + ACTIONS(1567), 1, anon_sym_SLASH, - ACTIONS(1563), 1, + ACTIONS(1571), 1, anon_sym_AT, STATE(678), 1, sym_ns_qualified_name, @@ -72292,7 +72298,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(472), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1561), 2, + ACTIONS(1569), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(1418), 19, @@ -72316,25 +72322,25 @@ static const uint16_t ts_small_parse_table[] = { sym_func_call, sym_indirect_func_call, [58359] = 18, - ACTIONS(1247), 1, - anon_sym_LPAREN, ACTIONS(1255), 1, + anon_sym_LPAREN, + ACTIONS(1263), 1, anon_sym_BANG, - ACTIONS(1259), 1, + ACTIONS(1267), 1, anon_sym_DOLLAR, - ACTIONS(1263), 1, + ACTIONS(1271), 1, aux_sym_number_token1, - ACTIONS(1265), 1, + ACTIONS(1273), 1, aux_sym_number_token2, - ACTIONS(1267), 1, + ACTIONS(1275), 1, anon_sym_DQUOTE, - ACTIONS(1655), 1, + ACTIONS(1663), 1, sym_identifier, - ACTIONS(1657), 1, + ACTIONS(1665), 1, anon_sym_getline, - ACTIONS(1659), 1, + ACTIONS(1667), 1, anon_sym_SLASH, - ACTIONS(1663), 1, + ACTIONS(1671), 1, anon_sym_AT, STATE(1032), 1, sym_ns_qualified_name, @@ -72346,10 +72352,10 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_in, STATE(2039), 1, sym_namespace, - ACTIONS(1253), 2, + ACTIONS(1261), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1661), 2, + ACTIONS(1669), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(1478), 19, @@ -72385,13 +72391,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, ACTIONS(484), 1, anon_sym_DQUOTE, - ACTIONS(1555), 1, + ACTIONS(1563), 1, sym_identifier, - ACTIONS(1557), 1, + ACTIONS(1565), 1, anon_sym_getline, - ACTIONS(1559), 1, + ACTIONS(1567), 1, anon_sym_SLASH, - ACTIONS(1563), 1, + ACTIONS(1571), 1, anon_sym_AT, STATE(678), 1, sym_ns_qualified_name, @@ -72406,7 +72412,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(472), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1561), 2, + ACTIONS(1569), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(1300), 19, @@ -72430,25 +72436,25 @@ static const uint16_t ts_small_parse_table[] = { sym_func_call, sym_indirect_func_call, [58509] = 18, - ACTIONS(1247), 1, - anon_sym_LPAREN, ACTIONS(1255), 1, + anon_sym_LPAREN, + ACTIONS(1263), 1, anon_sym_BANG, - ACTIONS(1259), 1, + ACTIONS(1267), 1, anon_sym_DOLLAR, - ACTIONS(1263), 1, + ACTIONS(1271), 1, aux_sym_number_token1, - ACTIONS(1265), 1, + ACTIONS(1273), 1, aux_sym_number_token2, - ACTIONS(1267), 1, + ACTIONS(1275), 1, anon_sym_DQUOTE, - ACTIONS(1655), 1, + ACTIONS(1663), 1, sym_identifier, - ACTIONS(1657), 1, + ACTIONS(1665), 1, anon_sym_getline, - ACTIONS(1659), 1, + ACTIONS(1667), 1, anon_sym_SLASH, - ACTIONS(1663), 1, + ACTIONS(1671), 1, anon_sym_AT, STATE(1032), 1, sym_ns_qualified_name, @@ -72460,10 +72466,10 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_in, STATE(2039), 1, sym_namespace, - ACTIONS(1253), 2, + ACTIONS(1261), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1661), 2, + ACTIONS(1669), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(1479), 19, @@ -72487,25 +72493,25 @@ static const uint16_t ts_small_parse_table[] = { sym_func_call, sym_indirect_func_call, [58584] = 18, - ACTIONS(1247), 1, - anon_sym_LPAREN, ACTIONS(1255), 1, + anon_sym_LPAREN, + ACTIONS(1263), 1, anon_sym_BANG, - ACTIONS(1259), 1, + ACTIONS(1267), 1, anon_sym_DOLLAR, - ACTIONS(1263), 1, + ACTIONS(1271), 1, aux_sym_number_token1, - ACTIONS(1265), 1, + ACTIONS(1273), 1, aux_sym_number_token2, - ACTIONS(1267), 1, + ACTIONS(1275), 1, anon_sym_DQUOTE, - ACTIONS(1655), 1, + ACTIONS(1663), 1, sym_identifier, - ACTIONS(1657), 1, + ACTIONS(1665), 1, anon_sym_getline, - ACTIONS(1659), 1, + ACTIONS(1667), 1, anon_sym_SLASH, - ACTIONS(1663), 1, + ACTIONS(1671), 1, anon_sym_AT, STATE(1032), 1, sym_ns_qualified_name, @@ -72517,10 +72523,10 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_in, STATE(2039), 1, sym_namespace, - ACTIONS(1253), 2, + ACTIONS(1261), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1661), 2, + ACTIONS(1669), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(1480), 19, @@ -72546,23 +72552,23 @@ static const uint16_t ts_small_parse_table[] = { [58659] = 18, ACTIONS(278), 1, anon_sym_DOLLAR, - ACTIONS(1597), 1, + ACTIONS(1605), 1, sym_identifier, - ACTIONS(1613), 1, + ACTIONS(1621), 1, aux_sym_number_token1, - ACTIONS(1615), 1, + ACTIONS(1623), 1, aux_sym_number_token2, - ACTIONS(1617), 1, + ACTIONS(1625), 1, anon_sym_DQUOTE, - ACTIONS(1761), 1, + ACTIONS(1769), 1, anon_sym_LPAREN, - ACTIONS(1763), 1, + ACTIONS(1771), 1, anon_sym_getline, - ACTIONS(1765), 1, + ACTIONS(1773), 1, anon_sym_SLASH, - ACTIONS(1769), 1, + ACTIONS(1777), 1, anon_sym_BANG, - ACTIONS(1773), 1, + ACTIONS(1781), 1, anon_sym_AT, STATE(166), 1, sym_ns_qualified_name, @@ -72574,10 +72580,10 @@ static const uint16_t ts_small_parse_table[] = { sym_field_ref, STATE(1881), 1, sym_namespace, - ACTIONS(1767), 2, + ACTIONS(1775), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1771), 2, + ACTIONS(1779), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(664), 19, @@ -72601,25 +72607,25 @@ static const uint16_t ts_small_parse_table[] = { sym_func_call, sym_indirect_func_call, [58734] = 19, - ACTIONS(1245), 1, + ACTIONS(1253), 1, sym_identifier, - ACTIONS(1247), 1, + ACTIONS(1255), 1, anon_sym_LPAREN, - ACTIONS(1249), 1, + ACTIONS(1257), 1, anon_sym_getline, - ACTIONS(1251), 1, + ACTIONS(1259), 1, anon_sym_SLASH, - ACTIONS(1255), 1, + ACTIONS(1263), 1, anon_sym_BANG, - ACTIONS(1259), 1, + ACTIONS(1267), 1, anon_sym_DOLLAR, - ACTIONS(1261), 1, + ACTIONS(1269), 1, anon_sym_AT, - ACTIONS(1263), 1, + ACTIONS(1271), 1, aux_sym_number_token1, - ACTIONS(1265), 1, + ACTIONS(1273), 1, aux_sym_number_token2, - ACTIONS(1267), 1, + ACTIONS(1275), 1, anon_sym_DQUOTE, STATE(1091), 1, sym_ns_qualified_name, @@ -72631,10 +72637,10 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_in, STATE(2039), 1, sym_namespace, - ACTIONS(1253), 2, + ACTIONS(1261), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1257), 2, + ACTIONS(1265), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(1496), 9, @@ -72659,25 +72665,25 @@ static const uint16_t ts_small_parse_table[] = { sym_regex_constant, sym_indirect_func_call, [58811] = 19, - ACTIONS(1245), 1, + ACTIONS(1253), 1, sym_identifier, - ACTIONS(1247), 1, + ACTIONS(1255), 1, anon_sym_LPAREN, - ACTIONS(1249), 1, + ACTIONS(1257), 1, anon_sym_getline, - ACTIONS(1251), 1, + ACTIONS(1259), 1, anon_sym_SLASH, - ACTIONS(1255), 1, + ACTIONS(1263), 1, anon_sym_BANG, - ACTIONS(1259), 1, + ACTIONS(1267), 1, anon_sym_DOLLAR, - ACTIONS(1261), 1, + ACTIONS(1269), 1, anon_sym_AT, - ACTIONS(1263), 1, + ACTIONS(1271), 1, aux_sym_number_token1, - ACTIONS(1265), 1, + ACTIONS(1273), 1, aux_sym_number_token2, - ACTIONS(1267), 1, + ACTIONS(1275), 1, anon_sym_DQUOTE, STATE(1091), 1, sym_ns_qualified_name, @@ -72689,10 +72695,10 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_in, STATE(2039), 1, sym_namespace, - ACTIONS(1253), 2, + ACTIONS(1261), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1257), 2, + ACTIONS(1265), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(1496), 9, @@ -72717,25 +72723,25 @@ static const uint16_t ts_small_parse_table[] = { sym_regex_constant, sym_indirect_func_call, [58888] = 19, - ACTIONS(1247), 1, + ACTIONS(1255), 1, anon_sym_LPAREN, - ACTIONS(1249), 1, + ACTIONS(1257), 1, anon_sym_getline, - ACTIONS(1251), 1, + ACTIONS(1259), 1, anon_sym_SLASH, - ACTIONS(1255), 1, + ACTIONS(1263), 1, anon_sym_BANG, - ACTIONS(1259), 1, + ACTIONS(1267), 1, anon_sym_DOLLAR, - ACTIONS(1261), 1, + ACTIONS(1269), 1, anon_sym_AT, - ACTIONS(1263), 1, + ACTIONS(1271), 1, aux_sym_number_token1, - ACTIONS(1265), 1, + ACTIONS(1273), 1, aux_sym_number_token2, - ACTIONS(1267), 1, + ACTIONS(1275), 1, anon_sym_DQUOTE, - ACTIONS(1775), 1, + ACTIONS(1783), 1, sym_identifier, STATE(295), 1, sym_array_ref, @@ -72747,10 +72753,10 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_in, STATE(2039), 1, sym_namespace, - ACTIONS(1253), 2, + ACTIONS(1261), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1257), 2, + ACTIONS(1265), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(1463), 9, @@ -72775,25 +72781,25 @@ static const uint16_t ts_small_parse_table[] = { sym_regex_constant, sym_indirect_func_call, [58965] = 19, - ACTIONS(1245), 1, + ACTIONS(1253), 1, sym_identifier, - ACTIONS(1247), 1, + ACTIONS(1255), 1, anon_sym_LPAREN, - ACTIONS(1249), 1, + ACTIONS(1257), 1, anon_sym_getline, - ACTIONS(1251), 1, + ACTIONS(1259), 1, anon_sym_SLASH, - ACTIONS(1255), 1, + ACTIONS(1263), 1, anon_sym_BANG, - ACTIONS(1259), 1, + ACTIONS(1267), 1, anon_sym_DOLLAR, - ACTIONS(1261), 1, + ACTIONS(1269), 1, anon_sym_AT, - ACTIONS(1263), 1, + ACTIONS(1271), 1, aux_sym_number_token1, - ACTIONS(1265), 1, + ACTIONS(1273), 1, aux_sym_number_token2, - ACTIONS(1267), 1, + ACTIONS(1275), 1, anon_sym_DQUOTE, STATE(1091), 1, sym_ns_qualified_name, @@ -72805,10 +72811,10 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_in, STATE(2039), 1, sym_namespace, - ACTIONS(1253), 2, + ACTIONS(1261), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1257), 2, + ACTIONS(1265), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(1496), 9, @@ -72833,25 +72839,25 @@ static const uint16_t ts_small_parse_table[] = { sym_regex_constant, sym_indirect_func_call, [59042] = 19, - ACTIONS(1245), 1, + ACTIONS(1253), 1, sym_identifier, - ACTIONS(1247), 1, + ACTIONS(1255), 1, anon_sym_LPAREN, - ACTIONS(1249), 1, + ACTIONS(1257), 1, anon_sym_getline, - ACTIONS(1251), 1, + ACTIONS(1259), 1, anon_sym_SLASH, - ACTIONS(1255), 1, + ACTIONS(1263), 1, anon_sym_BANG, - ACTIONS(1259), 1, + ACTIONS(1267), 1, anon_sym_DOLLAR, - ACTIONS(1261), 1, + ACTIONS(1269), 1, anon_sym_AT, - ACTIONS(1263), 1, + ACTIONS(1271), 1, aux_sym_number_token1, - ACTIONS(1265), 1, + ACTIONS(1273), 1, aux_sym_number_token2, - ACTIONS(1267), 1, + ACTIONS(1275), 1, anon_sym_DQUOTE, STATE(1091), 1, sym_ns_qualified_name, @@ -72863,10 +72869,10 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_in, STATE(2039), 1, sym_namespace, - ACTIONS(1253), 2, + ACTIONS(1261), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1257), 2, + ACTIONS(1265), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(1496), 9, @@ -72891,25 +72897,25 @@ static const uint16_t ts_small_parse_table[] = { sym_regex_constant, sym_indirect_func_call, [59119] = 19, - ACTIONS(1245), 1, + ACTIONS(1253), 1, sym_identifier, - ACTIONS(1247), 1, + ACTIONS(1255), 1, anon_sym_LPAREN, - ACTIONS(1249), 1, + ACTIONS(1257), 1, anon_sym_getline, - ACTIONS(1251), 1, + ACTIONS(1259), 1, anon_sym_SLASH, - ACTIONS(1255), 1, + ACTIONS(1263), 1, anon_sym_BANG, - ACTIONS(1259), 1, + ACTIONS(1267), 1, anon_sym_DOLLAR, - ACTIONS(1261), 1, + ACTIONS(1269), 1, anon_sym_AT, - ACTIONS(1263), 1, + ACTIONS(1271), 1, aux_sym_number_token1, - ACTIONS(1265), 1, + ACTIONS(1273), 1, aux_sym_number_token2, - ACTIONS(1267), 1, + ACTIONS(1275), 1, anon_sym_DQUOTE, STATE(1091), 1, sym_ns_qualified_name, @@ -72921,10 +72927,10 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_in, STATE(2039), 1, sym_namespace, - ACTIONS(1253), 2, + ACTIONS(1261), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1257), 2, + ACTIONS(1265), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(1496), 9, @@ -72949,25 +72955,25 @@ static const uint16_t ts_small_parse_table[] = { sym_regex_constant, sym_indirect_func_call, [59196] = 19, - ACTIONS(1245), 1, + ACTIONS(1253), 1, sym_identifier, - ACTIONS(1247), 1, + ACTIONS(1255), 1, anon_sym_LPAREN, - ACTIONS(1249), 1, + ACTIONS(1257), 1, anon_sym_getline, - ACTIONS(1251), 1, + ACTIONS(1259), 1, anon_sym_SLASH, - ACTIONS(1255), 1, + ACTIONS(1263), 1, anon_sym_BANG, - ACTIONS(1259), 1, + ACTIONS(1267), 1, anon_sym_DOLLAR, - ACTIONS(1261), 1, + ACTIONS(1269), 1, anon_sym_AT, - ACTIONS(1263), 1, + ACTIONS(1271), 1, aux_sym_number_token1, - ACTIONS(1265), 1, + ACTIONS(1273), 1, aux_sym_number_token2, - ACTIONS(1267), 1, + ACTIONS(1275), 1, anon_sym_DQUOTE, STATE(1091), 1, sym_ns_qualified_name, @@ -72979,10 +72985,10 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_in, STATE(2039), 1, sym_namespace, - ACTIONS(1253), 2, + ACTIONS(1261), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1257), 2, + ACTIONS(1265), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(1496), 9, @@ -73007,25 +73013,25 @@ static const uint16_t ts_small_parse_table[] = { sym_regex_constant, sym_indirect_func_call, [59273] = 19, - ACTIONS(1245), 1, + ACTIONS(1253), 1, sym_identifier, - ACTIONS(1247), 1, + ACTIONS(1255), 1, anon_sym_LPAREN, - ACTIONS(1249), 1, + ACTIONS(1257), 1, anon_sym_getline, - ACTIONS(1251), 1, + ACTIONS(1259), 1, anon_sym_SLASH, - ACTIONS(1255), 1, + ACTIONS(1263), 1, anon_sym_BANG, - ACTIONS(1259), 1, + ACTIONS(1267), 1, anon_sym_DOLLAR, - ACTIONS(1261), 1, + ACTIONS(1269), 1, anon_sym_AT, - ACTIONS(1263), 1, + ACTIONS(1271), 1, aux_sym_number_token1, - ACTIONS(1265), 1, + ACTIONS(1273), 1, aux_sym_number_token2, - ACTIONS(1267), 1, + ACTIONS(1275), 1, anon_sym_DQUOTE, STATE(1091), 1, sym_ns_qualified_name, @@ -73037,10 +73043,10 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_in, STATE(2039), 1, sym_namespace, - ACTIONS(1253), 2, + ACTIONS(1261), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1257), 2, + ACTIONS(1265), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(1496), 9, @@ -73067,23 +73073,23 @@ static const uint16_t ts_small_parse_table[] = { [59350] = 18, ACTIONS(278), 1, anon_sym_DOLLAR, - ACTIONS(1597), 1, + ACTIONS(1605), 1, sym_identifier, - ACTIONS(1613), 1, + ACTIONS(1621), 1, aux_sym_number_token1, - ACTIONS(1615), 1, + ACTIONS(1623), 1, aux_sym_number_token2, - ACTIONS(1617), 1, + ACTIONS(1625), 1, anon_sym_DQUOTE, - ACTIONS(1761), 1, + ACTIONS(1769), 1, anon_sym_LPAREN, - ACTIONS(1763), 1, + ACTIONS(1771), 1, anon_sym_getline, - ACTIONS(1765), 1, + ACTIONS(1773), 1, anon_sym_SLASH, - ACTIONS(1769), 1, + ACTIONS(1777), 1, anon_sym_BANG, - ACTIONS(1773), 1, + ACTIONS(1781), 1, anon_sym_AT, STATE(166), 1, sym_ns_qualified_name, @@ -73095,10 +73101,10 @@ static const uint16_t ts_small_parse_table[] = { sym_field_ref, STATE(1881), 1, sym_namespace, - ACTIONS(1767), 2, + ACTIONS(1775), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1771), 2, + ACTIONS(1779), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(666), 19, @@ -73122,25 +73128,25 @@ static const uint16_t ts_small_parse_table[] = { sym_func_call, sym_indirect_func_call, [59425] = 19, - ACTIONS(1245), 1, + ACTIONS(1253), 1, sym_identifier, - ACTIONS(1247), 1, + ACTIONS(1255), 1, anon_sym_LPAREN, - ACTIONS(1249), 1, + ACTIONS(1257), 1, anon_sym_getline, - ACTIONS(1251), 1, + ACTIONS(1259), 1, anon_sym_SLASH, - ACTIONS(1255), 1, + ACTIONS(1263), 1, anon_sym_BANG, - ACTIONS(1259), 1, + ACTIONS(1267), 1, anon_sym_DOLLAR, - ACTIONS(1261), 1, + ACTIONS(1269), 1, anon_sym_AT, - ACTIONS(1263), 1, + ACTIONS(1271), 1, aux_sym_number_token1, - ACTIONS(1265), 1, + ACTIONS(1273), 1, aux_sym_number_token2, - ACTIONS(1267), 1, + ACTIONS(1275), 1, anon_sym_DQUOTE, STATE(1091), 1, sym_ns_qualified_name, @@ -73152,10 +73158,10 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_in, STATE(2039), 1, sym_namespace, - ACTIONS(1253), 2, + ACTIONS(1261), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1257), 2, + ACTIONS(1265), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(1496), 9, @@ -73180,25 +73186,25 @@ static const uint16_t ts_small_parse_table[] = { sym_regex_constant, sym_indirect_func_call, [59502] = 19, - ACTIONS(1245), 1, + ACTIONS(1253), 1, sym_identifier, - ACTIONS(1247), 1, + ACTIONS(1255), 1, anon_sym_LPAREN, - ACTIONS(1249), 1, + ACTIONS(1257), 1, anon_sym_getline, - ACTIONS(1251), 1, + ACTIONS(1259), 1, anon_sym_SLASH, - ACTIONS(1255), 1, + ACTIONS(1263), 1, anon_sym_BANG, - ACTIONS(1259), 1, + ACTIONS(1267), 1, anon_sym_DOLLAR, - ACTIONS(1261), 1, + ACTIONS(1269), 1, anon_sym_AT, - ACTIONS(1263), 1, + ACTIONS(1271), 1, aux_sym_number_token1, - ACTIONS(1265), 1, + ACTIONS(1273), 1, aux_sym_number_token2, - ACTIONS(1267), 1, + ACTIONS(1275), 1, anon_sym_DQUOTE, STATE(1091), 1, sym_ns_qualified_name, @@ -73210,10 +73216,10 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_in, STATE(2039), 1, sym_namespace, - ACTIONS(1253), 2, + ACTIONS(1261), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1257), 2, + ACTIONS(1265), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(1496), 9, @@ -73240,23 +73246,23 @@ static const uint16_t ts_small_parse_table[] = { [59579] = 18, ACTIONS(278), 1, anon_sym_DOLLAR, - ACTIONS(1597), 1, + ACTIONS(1605), 1, sym_identifier, - ACTIONS(1613), 1, + ACTIONS(1621), 1, aux_sym_number_token1, - ACTIONS(1615), 1, + ACTIONS(1623), 1, aux_sym_number_token2, - ACTIONS(1617), 1, + ACTIONS(1625), 1, anon_sym_DQUOTE, - ACTIONS(1761), 1, + ACTIONS(1769), 1, anon_sym_LPAREN, - ACTIONS(1763), 1, + ACTIONS(1771), 1, anon_sym_getline, - ACTIONS(1765), 1, + ACTIONS(1773), 1, anon_sym_SLASH, - ACTIONS(1769), 1, + ACTIONS(1777), 1, anon_sym_BANG, - ACTIONS(1773), 1, + ACTIONS(1781), 1, anon_sym_AT, STATE(166), 1, sym_ns_qualified_name, @@ -73268,10 +73274,10 @@ static const uint16_t ts_small_parse_table[] = { sym_field_ref, STATE(1881), 1, sym_namespace, - ACTIONS(1767), 2, + ACTIONS(1775), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1771), 2, + ACTIONS(1779), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(667), 19, @@ -73295,25 +73301,25 @@ static const uint16_t ts_small_parse_table[] = { sym_func_call, sym_indirect_func_call, [59654] = 19, - ACTIONS(1245), 1, + ACTIONS(1253), 1, sym_identifier, - ACTIONS(1247), 1, + ACTIONS(1255), 1, anon_sym_LPAREN, - ACTIONS(1249), 1, + ACTIONS(1257), 1, anon_sym_getline, - ACTIONS(1251), 1, + ACTIONS(1259), 1, anon_sym_SLASH, - ACTIONS(1255), 1, + ACTIONS(1263), 1, anon_sym_BANG, - ACTIONS(1259), 1, + ACTIONS(1267), 1, anon_sym_DOLLAR, - ACTIONS(1261), 1, + ACTIONS(1269), 1, anon_sym_AT, - ACTIONS(1263), 1, + ACTIONS(1271), 1, aux_sym_number_token1, - ACTIONS(1265), 1, + ACTIONS(1273), 1, aux_sym_number_token2, - ACTIONS(1267), 1, + ACTIONS(1275), 1, anon_sym_DQUOTE, STATE(1091), 1, sym_ns_qualified_name, @@ -73325,10 +73331,10 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_in, STATE(2039), 1, sym_namespace, - ACTIONS(1253), 2, + ACTIONS(1261), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1257), 2, + ACTIONS(1265), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(1496), 9, @@ -73355,23 +73361,23 @@ static const uint16_t ts_small_parse_table[] = { [59731] = 18, ACTIONS(278), 1, anon_sym_DOLLAR, - ACTIONS(1597), 1, + ACTIONS(1605), 1, sym_identifier, - ACTIONS(1613), 1, + ACTIONS(1621), 1, aux_sym_number_token1, - ACTIONS(1615), 1, + ACTIONS(1623), 1, aux_sym_number_token2, - ACTIONS(1617), 1, + ACTIONS(1625), 1, anon_sym_DQUOTE, - ACTIONS(1761), 1, + ACTIONS(1769), 1, anon_sym_LPAREN, - ACTIONS(1763), 1, + ACTIONS(1771), 1, anon_sym_getline, - ACTIONS(1765), 1, + ACTIONS(1773), 1, anon_sym_SLASH, - ACTIONS(1769), 1, + ACTIONS(1777), 1, anon_sym_BANG, - ACTIONS(1773), 1, + ACTIONS(1781), 1, anon_sym_AT, STATE(166), 1, sym_ns_qualified_name, @@ -73383,10 +73389,10 @@ static const uint16_t ts_small_parse_table[] = { sym_field_ref, STATE(1881), 1, sym_namespace, - ACTIONS(1767), 2, + ACTIONS(1775), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1771), 2, + ACTIONS(1779), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(654), 19, @@ -73410,25 +73416,25 @@ static const uint16_t ts_small_parse_table[] = { sym_func_call, sym_indirect_func_call, [59806] = 18, - ACTIONS(1247), 1, - anon_sym_LPAREN, ACTIONS(1255), 1, + anon_sym_LPAREN, + ACTIONS(1263), 1, anon_sym_BANG, - ACTIONS(1259), 1, + ACTIONS(1267), 1, anon_sym_DOLLAR, - ACTIONS(1263), 1, + ACTIONS(1271), 1, aux_sym_number_token1, - ACTIONS(1265), 1, + ACTIONS(1273), 1, aux_sym_number_token2, - ACTIONS(1267), 1, + ACTIONS(1275), 1, anon_sym_DQUOTE, - ACTIONS(1655), 1, + ACTIONS(1663), 1, sym_identifier, - ACTIONS(1657), 1, + ACTIONS(1665), 1, anon_sym_getline, - ACTIONS(1659), 1, + ACTIONS(1667), 1, anon_sym_SLASH, - ACTIONS(1663), 1, + ACTIONS(1671), 1, anon_sym_AT, STATE(1032), 1, sym_ns_qualified_name, @@ -73440,10 +73446,10 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_in, STATE(2039), 1, sym_namespace, - ACTIONS(1253), 2, + ACTIONS(1261), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1661), 2, + ACTIONS(1669), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(1462), 19, @@ -73467,25 +73473,25 @@ static const uint16_t ts_small_parse_table[] = { sym_func_call, sym_indirect_func_call, [59881] = 19, - ACTIONS(1245), 1, + ACTIONS(1253), 1, sym_identifier, - ACTIONS(1247), 1, + ACTIONS(1255), 1, anon_sym_LPAREN, - ACTIONS(1249), 1, + ACTIONS(1257), 1, anon_sym_getline, - ACTIONS(1251), 1, + ACTIONS(1259), 1, anon_sym_SLASH, - ACTIONS(1255), 1, + ACTIONS(1263), 1, anon_sym_BANG, - ACTIONS(1259), 1, + ACTIONS(1267), 1, anon_sym_DOLLAR, - ACTIONS(1261), 1, + ACTIONS(1269), 1, anon_sym_AT, - ACTIONS(1263), 1, + ACTIONS(1271), 1, aux_sym_number_token1, - ACTIONS(1265), 1, + ACTIONS(1273), 1, aux_sym_number_token2, - ACTIONS(1267), 1, + ACTIONS(1275), 1, anon_sym_DQUOTE, STATE(1091), 1, sym_ns_qualified_name, @@ -73497,10 +73503,10 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_in, STATE(2039), 1, sym_namespace, - ACTIONS(1253), 2, + ACTIONS(1261), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1257), 2, + ACTIONS(1265), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(1496), 9, @@ -73525,25 +73531,25 @@ static const uint16_t ts_small_parse_table[] = { sym_regex_constant, sym_indirect_func_call, [59958] = 18, - ACTIONS(1247), 1, - anon_sym_LPAREN, ACTIONS(1255), 1, + anon_sym_LPAREN, + ACTIONS(1263), 1, anon_sym_BANG, - ACTIONS(1259), 1, + ACTIONS(1267), 1, anon_sym_DOLLAR, - ACTIONS(1263), 1, + ACTIONS(1271), 1, aux_sym_number_token1, - ACTIONS(1265), 1, + ACTIONS(1273), 1, aux_sym_number_token2, - ACTIONS(1267), 1, + ACTIONS(1275), 1, anon_sym_DQUOTE, - ACTIONS(1655), 1, + ACTIONS(1663), 1, sym_identifier, - ACTIONS(1657), 1, + ACTIONS(1665), 1, anon_sym_getline, - ACTIONS(1659), 1, + ACTIONS(1667), 1, anon_sym_SLASH, - ACTIONS(1663), 1, + ACTIONS(1671), 1, anon_sym_AT, STATE(1032), 1, sym_ns_qualified_name, @@ -73555,10 +73561,10 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_in, STATE(2039), 1, sym_namespace, - ACTIONS(1253), 2, + ACTIONS(1261), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1661), 2, + ACTIONS(1669), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(1469), 19, @@ -73582,25 +73588,25 @@ static const uint16_t ts_small_parse_table[] = { sym_func_call, sym_indirect_func_call, [60033] = 18, - ACTIONS(1259), 1, + ACTIONS(1267), 1, anon_sym_DOLLAR, - ACTIONS(1619), 1, + ACTIONS(1627), 1, sym_identifier, - ACTIONS(1635), 1, + ACTIONS(1643), 1, aux_sym_number_token1, - ACTIONS(1637), 1, + ACTIONS(1645), 1, aux_sym_number_token2, - ACTIONS(1639), 1, + ACTIONS(1647), 1, anon_sym_DQUOTE, - ACTIONS(1727), 1, + ACTIONS(1735), 1, anon_sym_LPAREN, - ACTIONS(1729), 1, + ACTIONS(1737), 1, anon_sym_getline, - ACTIONS(1731), 1, + ACTIONS(1739), 1, anon_sym_SLASH, - ACTIONS(1735), 1, + ACTIONS(1743), 1, anon_sym_BANG, - ACTIONS(1739), 1, + ACTIONS(1747), 1, anon_sym_AT, STATE(283), 1, sym_ns_qualified_name, @@ -73612,10 +73618,10 @@ static const uint16_t ts_small_parse_table[] = { sym_field_ref, STATE(2039), 1, sym_namespace, - ACTIONS(1733), 2, + ACTIONS(1741), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1737), 2, + ACTIONS(1745), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(1207), 19, @@ -73649,15 +73655,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, ACTIONS(484), 1, anon_sym_DQUOTE, - ACTIONS(538), 1, + ACTIONS(544), 1, anon_sym_LPAREN, - ACTIONS(540), 1, + ACTIONS(546), 1, anon_sym_SLASH, - ACTIONS(542), 1, + ACTIONS(548), 1, anon_sym_BANG, - ACTIONS(546), 1, + ACTIONS(552), 1, anon_sym_DOLLAR, - ACTIONS(548), 1, + ACTIONS(554), 1, anon_sym_AT, STATE(575), 1, sym_ns_qualified_name, @@ -73672,7 +73678,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(71), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(544), 2, + ACTIONS(550), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(1314), 9, @@ -73699,23 +73705,23 @@ static const uint16_t ts_small_parse_table[] = { [60185] = 18, ACTIONS(278), 1, anon_sym_DOLLAR, - ACTIONS(1597), 1, + ACTIONS(1605), 1, sym_identifier, - ACTIONS(1613), 1, + ACTIONS(1621), 1, aux_sym_number_token1, - ACTIONS(1615), 1, + ACTIONS(1623), 1, aux_sym_number_token2, - ACTIONS(1617), 1, + ACTIONS(1625), 1, anon_sym_DQUOTE, - ACTIONS(1761), 1, + ACTIONS(1769), 1, anon_sym_LPAREN, - ACTIONS(1763), 1, + ACTIONS(1771), 1, anon_sym_getline, - ACTIONS(1765), 1, + ACTIONS(1773), 1, anon_sym_SLASH, - ACTIONS(1769), 1, + ACTIONS(1777), 1, anon_sym_BANG, - ACTIONS(1773), 1, + ACTIONS(1781), 1, anon_sym_AT, STATE(166), 1, sym_ns_qualified_name, @@ -73727,10 +73733,10 @@ static const uint16_t ts_small_parse_table[] = { sym_field_ref, STATE(1881), 1, sym_namespace, - ACTIONS(1767), 2, + ACTIONS(1775), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1771), 2, + ACTIONS(1779), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(657), 19, @@ -73764,15 +73770,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, ACTIONS(484), 1, anon_sym_DQUOTE, - ACTIONS(538), 1, + ACTIONS(544), 1, anon_sym_LPAREN, - ACTIONS(540), 1, + ACTIONS(546), 1, anon_sym_SLASH, - ACTIONS(542), 1, + ACTIONS(548), 1, anon_sym_BANG, - ACTIONS(546), 1, + ACTIONS(552), 1, anon_sym_DOLLAR, - ACTIONS(548), 1, + ACTIONS(554), 1, anon_sym_AT, STATE(575), 1, sym_ns_qualified_name, @@ -73787,7 +73793,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(71), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(544), 2, + ACTIONS(550), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(1314), 9, @@ -73824,13 +73830,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, ACTIONS(284), 1, anon_sym_DQUOTE, - ACTIONS(1665), 1, + ACTIONS(1673), 1, sym_identifier, - ACTIONS(1667), 1, + ACTIONS(1675), 1, anon_sym_getline, - ACTIONS(1669), 1, + ACTIONS(1677), 1, anon_sym_SLASH, - ACTIONS(1673), 1, + ACTIONS(1681), 1, anon_sym_AT, STATE(584), 1, sym_ns_qualified_name, @@ -73845,7 +73851,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(115), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1671), 2, + ACTIONS(1679), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(1370), 19, @@ -73869,25 +73875,25 @@ static const uint16_t ts_small_parse_table[] = { sym_func_call, sym_indirect_func_call, [60412] = 18, - ACTIONS(1247), 1, - anon_sym_LPAREN, ACTIONS(1255), 1, + anon_sym_LPAREN, + ACTIONS(1263), 1, anon_sym_BANG, - ACTIONS(1259), 1, + ACTIONS(1267), 1, anon_sym_DOLLAR, - ACTIONS(1263), 1, + ACTIONS(1271), 1, aux_sym_number_token1, - ACTIONS(1265), 1, + ACTIONS(1273), 1, aux_sym_number_token2, - ACTIONS(1267), 1, + ACTIONS(1275), 1, anon_sym_DQUOTE, - ACTIONS(1655), 1, + ACTIONS(1663), 1, sym_identifier, - ACTIONS(1657), 1, + ACTIONS(1665), 1, anon_sym_getline, - ACTIONS(1659), 1, + ACTIONS(1667), 1, anon_sym_SLASH, - ACTIONS(1663), 1, + ACTIONS(1671), 1, anon_sym_AT, STATE(1032), 1, sym_ns_qualified_name, @@ -73899,10 +73905,10 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_in, STATE(2039), 1, sym_namespace, - ACTIONS(1253), 2, + ACTIONS(1261), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1661), 2, + ACTIONS(1669), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(1491), 19, @@ -73926,25 +73932,25 @@ static const uint16_t ts_small_parse_table[] = { sym_func_call, sym_indirect_func_call, [60487] = 19, - ACTIONS(1245), 1, + ACTIONS(1253), 1, sym_identifier, - ACTIONS(1247), 1, + ACTIONS(1255), 1, anon_sym_LPAREN, - ACTIONS(1249), 1, + ACTIONS(1257), 1, anon_sym_getline, - ACTIONS(1251), 1, + ACTIONS(1259), 1, anon_sym_SLASH, - ACTIONS(1255), 1, + ACTIONS(1263), 1, anon_sym_BANG, - ACTIONS(1259), 1, + ACTIONS(1267), 1, anon_sym_DOLLAR, - ACTIONS(1261), 1, + ACTIONS(1269), 1, anon_sym_AT, - ACTIONS(1263), 1, + ACTIONS(1271), 1, aux_sym_number_token1, - ACTIONS(1265), 1, + ACTIONS(1273), 1, aux_sym_number_token2, - ACTIONS(1267), 1, + ACTIONS(1275), 1, anon_sym_DQUOTE, STATE(1091), 1, sym_ns_qualified_name, @@ -73956,10 +73962,10 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_in, STATE(2039), 1, sym_namespace, - ACTIONS(1253), 2, + ACTIONS(1261), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1257), 2, + ACTIONS(1265), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(1496), 9, @@ -73986,23 +73992,23 @@ static const uint16_t ts_small_parse_table[] = { [60564] = 18, ACTIONS(161), 1, anon_sym_DOLLAR, - ACTIONS(1597), 1, + ACTIONS(1605), 1, sym_identifier, - ACTIONS(1613), 1, + ACTIONS(1621), 1, aux_sym_number_token1, - ACTIONS(1615), 1, + ACTIONS(1623), 1, aux_sym_number_token2, - ACTIONS(1617), 1, + ACTIONS(1625), 1, anon_sym_DQUOTE, - ACTIONS(1641), 1, + ACTIONS(1649), 1, anon_sym_LPAREN, - ACTIONS(1643), 1, + ACTIONS(1651), 1, anon_sym_getline, - ACTIONS(1645), 1, + ACTIONS(1653), 1, anon_sym_SLASH, - ACTIONS(1649), 1, + ACTIONS(1657), 1, anon_sym_BANG, - ACTIONS(1653), 1, + ACTIONS(1661), 1, anon_sym_AT, STATE(166), 1, sym_ns_qualified_name, @@ -74014,10 +74020,10 @@ static const uint16_t ts_small_parse_table[] = { sym_field_ref, STATE(1881), 1, sym_namespace, - ACTIONS(1647), 2, + ACTIONS(1655), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1651), 2, + ACTIONS(1659), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(240), 19, @@ -74043,23 +74049,23 @@ static const uint16_t ts_small_parse_table[] = { [60639] = 18, ACTIONS(374), 1, anon_sym_DOLLAR, - ACTIONS(1597), 1, + ACTIONS(1605), 1, sym_identifier, - ACTIONS(1599), 1, + ACTIONS(1607), 1, anon_sym_LPAREN, - ACTIONS(1601), 1, + ACTIONS(1609), 1, anon_sym_getline, - ACTIONS(1603), 1, + ACTIONS(1611), 1, anon_sym_SLASH, - ACTIONS(1607), 1, + ACTIONS(1615), 1, anon_sym_BANG, - ACTIONS(1611), 1, + ACTIONS(1619), 1, anon_sym_AT, - ACTIONS(1613), 1, + ACTIONS(1621), 1, aux_sym_number_token1, - ACTIONS(1615), 1, + ACTIONS(1623), 1, aux_sym_number_token2, - ACTIONS(1617), 1, + ACTIONS(1625), 1, anon_sym_DQUOTE, STATE(166), 1, sym_ns_qualified_name, @@ -74071,10 +74077,10 @@ static const uint16_t ts_small_parse_table[] = { sym_field_ref, STATE(1881), 1, sym_namespace, - ACTIONS(1605), 2, + ACTIONS(1613), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1609), 2, + ACTIONS(1617), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(1125), 19, @@ -74158,23 +74164,23 @@ static const uint16_t ts_small_parse_table[] = { [60791] = 18, ACTIONS(478), 1, anon_sym_DOLLAR, - ACTIONS(1575), 1, + ACTIONS(1583), 1, sym_identifier, - ACTIONS(1591), 1, + ACTIONS(1599), 1, aux_sym_number_token1, - ACTIONS(1593), 1, + ACTIONS(1601), 1, aux_sym_number_token2, - ACTIONS(1595), 1, + ACTIONS(1603), 1, anon_sym_DQUOTE, - ACTIONS(1675), 1, + ACTIONS(1683), 1, anon_sym_LPAREN, - ACTIONS(1677), 1, + ACTIONS(1685), 1, anon_sym_getline, - ACTIONS(1679), 1, + ACTIONS(1687), 1, anon_sym_SLASH, - ACTIONS(1683), 1, + ACTIONS(1691), 1, anon_sym_BANG, - ACTIONS(1687), 1, + ACTIONS(1695), 1, anon_sym_AT, STATE(158), 1, sym_ns_qualified_name, @@ -74186,10 +74192,10 @@ static const uint16_t ts_small_parse_table[] = { sym_field_ref, STATE(1958), 1, sym_namespace, - ACTIONS(1681), 2, + ACTIONS(1689), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1685), 2, + ACTIONS(1693), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(963), 19, @@ -74213,25 +74219,25 @@ static const uint16_t ts_small_parse_table[] = { sym_func_call, sym_indirect_func_call, [60866] = 19, - ACTIONS(1245), 1, + ACTIONS(1253), 1, sym_identifier, - ACTIONS(1247), 1, + ACTIONS(1255), 1, anon_sym_LPAREN, - ACTIONS(1249), 1, + ACTIONS(1257), 1, anon_sym_getline, - ACTIONS(1251), 1, + ACTIONS(1259), 1, anon_sym_SLASH, - ACTIONS(1255), 1, + ACTIONS(1263), 1, anon_sym_BANG, - ACTIONS(1259), 1, + ACTIONS(1267), 1, anon_sym_DOLLAR, - ACTIONS(1261), 1, + ACTIONS(1269), 1, anon_sym_AT, - ACTIONS(1263), 1, + ACTIONS(1271), 1, aux_sym_number_token1, - ACTIONS(1265), 1, + ACTIONS(1273), 1, aux_sym_number_token2, - ACTIONS(1267), 1, + ACTIONS(1275), 1, anon_sym_DQUOTE, STATE(1091), 1, sym_ns_qualified_name, @@ -74243,10 +74249,10 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_in, STATE(2039), 1, sym_namespace, - ACTIONS(1253), 2, + ACTIONS(1261), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1257), 2, + ACTIONS(1265), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(1496), 9, @@ -74273,23 +74279,23 @@ static const uint16_t ts_small_parse_table[] = { [60943] = 18, ACTIONS(278), 1, anon_sym_DOLLAR, - ACTIONS(1597), 1, + ACTIONS(1605), 1, sym_identifier, - ACTIONS(1613), 1, + ACTIONS(1621), 1, aux_sym_number_token1, - ACTIONS(1615), 1, + ACTIONS(1623), 1, aux_sym_number_token2, - ACTIONS(1617), 1, + ACTIONS(1625), 1, anon_sym_DQUOTE, - ACTIONS(1761), 1, + ACTIONS(1769), 1, anon_sym_LPAREN, - ACTIONS(1763), 1, + ACTIONS(1771), 1, anon_sym_getline, - ACTIONS(1765), 1, + ACTIONS(1773), 1, anon_sym_SLASH, - ACTIONS(1769), 1, + ACTIONS(1777), 1, anon_sym_BANG, - ACTIONS(1773), 1, + ACTIONS(1781), 1, anon_sym_AT, STATE(166), 1, sym_ns_qualified_name, @@ -74301,10 +74307,10 @@ static const uint16_t ts_small_parse_table[] = { sym_field_ref, STATE(1881), 1, sym_namespace, - ACTIONS(1767), 2, + ACTIONS(1775), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1771), 2, + ACTIONS(1779), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(220), 19, @@ -74330,23 +74336,23 @@ static const uint16_t ts_small_parse_table[] = { [61018] = 18, ACTIONS(278), 1, anon_sym_DOLLAR, - ACTIONS(1597), 1, + ACTIONS(1605), 1, sym_identifier, - ACTIONS(1613), 1, + ACTIONS(1621), 1, aux_sym_number_token1, - ACTIONS(1615), 1, + ACTIONS(1623), 1, aux_sym_number_token2, - ACTIONS(1617), 1, + ACTIONS(1625), 1, anon_sym_DQUOTE, - ACTIONS(1761), 1, + ACTIONS(1769), 1, anon_sym_LPAREN, - ACTIONS(1763), 1, + ACTIONS(1771), 1, anon_sym_getline, - ACTIONS(1765), 1, + ACTIONS(1773), 1, anon_sym_SLASH, - ACTIONS(1769), 1, + ACTIONS(1777), 1, anon_sym_BANG, - ACTIONS(1773), 1, + ACTIONS(1781), 1, anon_sym_AT, STATE(166), 1, sym_ns_qualified_name, @@ -74358,10 +74364,10 @@ static const uint16_t ts_small_parse_table[] = { sym_field_ref, STATE(1881), 1, sym_namespace, - ACTIONS(1767), 2, + ACTIONS(1775), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1771), 2, + ACTIONS(1779), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(662), 19, @@ -74385,25 +74391,25 @@ static const uint16_t ts_small_parse_table[] = { sym_func_call, sym_indirect_func_call, [61093] = 8, - ACTIONS(708), 1, + ACTIONS(716), 1, anon_sym_EQ, - ACTIONS(888), 1, + ACTIONS(896), 1, anon_sym_LBRACK, - ACTIONS(1367), 1, + ACTIONS(1375), 1, anon_sym_LPAREN2, - ACTIONS(1513), 1, + ACTIONS(1521), 1, sym_concatenating_space, - ACTIONS(890), 2, + ACTIONS(898), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(967), 6, + ACTIONS(975), 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(636), 9, + ACTIONS(644), 9, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -74413,7 +74419,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(650), 17, + ACTIONS(658), 17, anon_sym_COMMA, anon_sym_SEMI, anon_sym_RPAREN, @@ -74432,25 +74438,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_RBRACK, [61148] = 19, - ACTIONS(1245), 1, + ACTIONS(1253), 1, sym_identifier, - ACTIONS(1247), 1, + ACTIONS(1255), 1, anon_sym_LPAREN, - ACTIONS(1249), 1, + ACTIONS(1257), 1, anon_sym_getline, - ACTIONS(1251), 1, + ACTIONS(1259), 1, anon_sym_SLASH, - ACTIONS(1255), 1, + ACTIONS(1263), 1, anon_sym_BANG, - ACTIONS(1259), 1, + ACTIONS(1267), 1, anon_sym_DOLLAR, - ACTIONS(1261), 1, + ACTIONS(1269), 1, anon_sym_AT, - ACTIONS(1263), 1, + ACTIONS(1271), 1, aux_sym_number_token1, - ACTIONS(1265), 1, + ACTIONS(1273), 1, aux_sym_number_token2, - ACTIONS(1267), 1, + ACTIONS(1275), 1, anon_sym_DQUOTE, STATE(1091), 1, sym_ns_qualified_name, @@ -74462,10 +74468,10 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_in, STATE(2039), 1, sym_namespace, - ACTIONS(1253), 2, + ACTIONS(1261), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1257), 2, + ACTIONS(1265), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(1496), 9, @@ -74496,19 +74502,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, ACTIONS(484), 1, anon_sym_DQUOTE, - ACTIONS(538), 1, + ACTIONS(544), 1, anon_sym_LPAREN, - ACTIONS(542), 1, + ACTIONS(548), 1, anon_sym_BANG, - ACTIONS(546), 1, + ACTIONS(552), 1, anon_sym_DOLLAR, - ACTIONS(1707), 1, + ACTIONS(1715), 1, sym_identifier, - ACTIONS(1709), 1, + ACTIONS(1717), 1, anon_sym_getline, - ACTIONS(1711), 1, + ACTIONS(1719), 1, anon_sym_SLASH, - ACTIONS(1715), 1, + ACTIONS(1723), 1, anon_sym_AT, STATE(571), 1, sym_ns_qualified_name, @@ -74523,7 +74529,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(71), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1713), 2, + ACTIONS(1721), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(1317), 19, @@ -74559,13 +74565,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, ACTIONS(284), 1, anon_sym_DQUOTE, - ACTIONS(1665), 1, + ACTIONS(1673), 1, sym_identifier, - ACTIONS(1667), 1, + ACTIONS(1675), 1, anon_sym_getline, - ACTIONS(1669), 1, + ACTIONS(1677), 1, anon_sym_SLASH, - ACTIONS(1673), 1, + ACTIONS(1681), 1, anon_sym_AT, STATE(584), 1, sym_ns_qualified_name, @@ -74580,7 +74586,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(115), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1671), 2, + ACTIONS(1679), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(1358), 19, @@ -74606,23 +74612,23 @@ static const uint16_t ts_small_parse_table[] = { [61375] = 18, ACTIONS(278), 1, anon_sym_DOLLAR, - ACTIONS(1597), 1, + ACTIONS(1605), 1, sym_identifier, - ACTIONS(1613), 1, + ACTIONS(1621), 1, aux_sym_number_token1, - ACTIONS(1615), 1, + ACTIONS(1623), 1, aux_sym_number_token2, - ACTIONS(1617), 1, + ACTIONS(1625), 1, anon_sym_DQUOTE, - ACTIONS(1761), 1, + ACTIONS(1769), 1, anon_sym_LPAREN, - ACTIONS(1763), 1, + ACTIONS(1771), 1, anon_sym_getline, - ACTIONS(1765), 1, + ACTIONS(1773), 1, anon_sym_SLASH, - ACTIONS(1769), 1, + ACTIONS(1777), 1, anon_sym_BANG, - ACTIONS(1773), 1, + ACTIONS(1781), 1, anon_sym_AT, STATE(166), 1, sym_ns_qualified_name, @@ -74634,10 +74640,10 @@ static const uint16_t ts_small_parse_table[] = { sym_field_ref, STATE(1881), 1, sym_namespace, - ACTIONS(1767), 2, + ACTIONS(1775), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1771), 2, + ACTIONS(1779), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(663), 19, @@ -74679,7 +74685,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, ACTIONS(33), 1, anon_sym_DQUOTE, - ACTIONS(1721), 1, + ACTIONS(1729), 1, anon_sym_AT, STATE(401), 1, sym_ns_qualified_name, @@ -74721,23 +74727,23 @@ static const uint16_t ts_small_parse_table[] = { [61527] = 18, ACTIONS(478), 1, anon_sym_DOLLAR, - ACTIONS(1575), 1, + ACTIONS(1583), 1, sym_identifier, - ACTIONS(1591), 1, + ACTIONS(1599), 1, aux_sym_number_token1, - ACTIONS(1593), 1, + ACTIONS(1601), 1, aux_sym_number_token2, - ACTIONS(1595), 1, + ACTIONS(1603), 1, anon_sym_DQUOTE, - ACTIONS(1675), 1, + ACTIONS(1683), 1, anon_sym_LPAREN, - ACTIONS(1677), 1, + ACTIONS(1685), 1, anon_sym_getline, - ACTIONS(1679), 1, + ACTIONS(1687), 1, anon_sym_SLASH, - ACTIONS(1683), 1, + ACTIONS(1691), 1, anon_sym_BANG, - ACTIONS(1687), 1, + ACTIONS(1695), 1, anon_sym_AT, STATE(158), 1, sym_ns_qualified_name, @@ -74749,10 +74755,10 @@ static const uint16_t ts_small_parse_table[] = { sym_field_ref, STATE(1958), 1, sym_namespace, - ACTIONS(1681), 2, + ACTIONS(1689), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1685), 2, + ACTIONS(1693), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(197), 19, @@ -74786,15 +74792,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, ACTIONS(484), 1, anon_sym_DQUOTE, - ACTIONS(538), 1, + ACTIONS(544), 1, anon_sym_LPAREN, - ACTIONS(540), 1, + ACTIONS(546), 1, anon_sym_SLASH, - ACTIONS(542), 1, + ACTIONS(548), 1, anon_sym_BANG, - ACTIONS(546), 1, + ACTIONS(552), 1, anon_sym_DOLLAR, - ACTIONS(548), 1, + ACTIONS(554), 1, anon_sym_AT, STATE(575), 1, sym_ns_qualified_name, @@ -74809,7 +74815,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(71), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(544), 2, + ACTIONS(550), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(1314), 9, @@ -74834,9 +74840,9 @@ static const uint16_t ts_small_parse_table[] = { sym_regex_constant, sym_indirect_func_call, [61679] = 2, - ACTIONS(1779), 1, + ACTIONS(1787), 1, sym__if_else_separator, - ACTIONS(1777), 36, + ACTIONS(1785), 36, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, @@ -74874,13 +74880,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [61721] = 3, - ACTIONS(1785), 1, + ACTIONS(1793), 1, sym__if_else_separator, - ACTIONS(1783), 3, + ACTIONS(1791), 3, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, - ACTIONS(1781), 33, + ACTIONS(1789), 33, anon_sym_if, anon_sym_LPAREN, anon_sym_while, @@ -74915,9 +74921,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [61765] = 2, - ACTIONS(1789), 1, + ACTIONS(1797), 1, sym__if_else_separator, - ACTIONS(1787), 36, + ACTIONS(1795), 36, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, @@ -74955,12 +74961,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [61807] = 3, - ACTIONS(766), 1, + ACTIONS(774), 1, sym_concatenating_space, - ACTIONS(1791), 2, + ACTIONS(1799), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(764), 34, + ACTIONS(772), 34, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -74996,9 +75002,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT_EQ, anon_sym_CARET_EQ, [61851] = 2, - ACTIONS(1795), 1, + ACTIONS(1803), 1, sym__if_else_separator, - ACTIONS(1793), 36, + ACTIONS(1801), 36, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, @@ -75036,9 +75042,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [61893] = 3, - ACTIONS(1083), 1, + ACTIONS(1091), 1, sym_regex_flags, - ACTIONS(816), 11, + ACTIONS(824), 11, anon_sym_in, anon_sym_LT, anon_sym_GT, @@ -75050,7 +75056,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ, - ACTIONS(820), 25, + ACTIONS(828), 25, sym_concatenating_space, anon_sym_COMMA, anon_sym_SEMI, @@ -75077,9 +75083,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_RBRACK, [61937] = 2, - ACTIONS(1799), 1, + ACTIONS(1807), 1, sym__if_else_separator, - ACTIONS(1797), 36, + ACTIONS(1805), 36, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, @@ -75117,19 +75123,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [61979] = 5, - ACTIONS(766), 1, + ACTIONS(774), 1, sym_concatenating_space, - ACTIONS(1791), 2, + ACTIONS(1799), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(1803), 2, + ACTIONS(1811), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1801), 3, + ACTIONS(1809), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(764), 29, + ACTIONS(772), 29, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -75160,29 +75166,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT_EQ, anon_sym_CARET_EQ, [62027] = 7, - ACTIONS(860), 1, + ACTIONS(868), 1, sym_concatenating_space, - ACTIONS(1791), 2, + ACTIONS(1799), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(1803), 2, + ACTIONS(1811), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1807), 2, + ACTIONS(1815), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(1801), 3, + ACTIONS(1809), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1805), 6, + 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(858), 21, + ACTIONS(866), 21, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -75205,31 +75211,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT_EQ, anon_sym_CARET_EQ, [62079] = 8, - ACTIONS(766), 1, + ACTIONS(774), 1, sym_concatenating_space, - ACTIONS(1809), 1, + ACTIONS(1817), 1, anon_sym_in, - ACTIONS(1791), 2, + ACTIONS(1799), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(1803), 2, + ACTIONS(1811), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1807), 2, + ACTIONS(1815), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(1801), 3, + ACTIONS(1809), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1805), 6, + 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(764), 20, + ACTIONS(772), 20, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -75251,33 +75257,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT_EQ, anon_sym_CARET_EQ, [62133] = 9, - ACTIONS(766), 1, + ACTIONS(774), 1, sym_concatenating_space, - ACTIONS(1809), 1, + ACTIONS(1817), 1, anon_sym_in, - ACTIONS(1811), 1, + ACTIONS(1819), 1, anon_sym_AMP_AMP, - ACTIONS(1791), 2, + ACTIONS(1799), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(1803), 2, + ACTIONS(1811), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1807), 2, + ACTIONS(1815), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(1801), 3, + ACTIONS(1809), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1805), 6, + 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(764), 19, + ACTIONS(772), 19, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -75298,29 +75304,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT_EQ, anon_sym_CARET_EQ, [62189] = 7, - ACTIONS(834), 1, + ACTIONS(842), 1, sym_concatenating_space, - ACTIONS(1791), 2, + ACTIONS(1799), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(1803), 2, + ACTIONS(1811), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1807), 2, + ACTIONS(1815), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(1801), 3, + ACTIONS(1809), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1805), 6, + 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(830), 21, + ACTIONS(838), 21, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -75343,37 +75349,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT_EQ, anon_sym_CARET_EQ, [62241] = 11, - ACTIONS(852), 1, + ACTIONS(860), 1, sym_concatenating_space, - ACTIONS(1809), 1, + ACTIONS(1817), 1, anon_sym_in, - ACTIONS(1811), 1, + ACTIONS(1819), 1, anon_sym_AMP_AMP, - ACTIONS(1813), 1, + ACTIONS(1821), 1, anon_sym_QMARK, - ACTIONS(1815), 1, + ACTIONS(1823), 1, anon_sym_PIPE_PIPE, - ACTIONS(1791), 2, + ACTIONS(1799), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(1803), 2, + ACTIONS(1811), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1807), 2, + ACTIONS(1815), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(1801), 3, + ACTIONS(1809), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1805), 6, + 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(850), 17, + ACTIONS(858), 17, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -75392,40 +75398,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT_EQ, anon_sym_CARET_EQ, [62301] = 12, - ACTIONS(848), 1, + ACTIONS(856), 1, sym_concatenating_space, - ACTIONS(1809), 1, + ACTIONS(1817), 1, anon_sym_in, - ACTIONS(1811), 1, + ACTIONS(1819), 1, anon_sym_AMP_AMP, - ACTIONS(1813), 1, + ACTIONS(1821), 1, anon_sym_QMARK, - ACTIONS(1815), 1, + ACTIONS(1823), 1, anon_sym_PIPE_PIPE, - ACTIONS(1323), 2, + ACTIONS(1331), 2, anon_sym_PIPE, anon_sym_PIPE_AMP, - ACTIONS(1791), 2, + ACTIONS(1799), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(1803), 2, + ACTIONS(1811), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1807), 2, + ACTIONS(1815), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(1801), 3, + ACTIONS(1809), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1805), 6, + 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(836), 15, + ACTIONS(844), 15, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -75442,16 +75448,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT_EQ, anon_sym_CARET_EQ, [62363] = 4, - ACTIONS(766), 1, + ACTIONS(774), 1, sym_concatenating_space, - ACTIONS(1791), 2, + ACTIONS(1799), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(1801), 3, + ACTIONS(1809), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(764), 31, + ACTIONS(772), 31, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -75484,9 +75490,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT_EQ, anon_sym_CARET_EQ, [62409] = 2, - ACTIONS(1819), 1, + ACTIONS(1827), 1, sym__if_else_separator, - ACTIONS(1817), 36, + ACTIONS(1825), 36, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, @@ -75524,9 +75530,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [62451] = 2, - ACTIONS(1823), 1, + ACTIONS(1831), 1, sym__if_else_separator, - ACTIONS(1821), 36, + ACTIONS(1829), 36, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, @@ -75564,9 +75570,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [62493] = 2, - ACTIONS(1827), 1, + ACTIONS(1835), 1, sym__if_else_separator, - ACTIONS(1825), 36, + ACTIONS(1833), 36, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, @@ -75604,17 +75610,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [62535] = 5, - ACTIONS(1829), 1, + ACTIONS(1837), 1, sym_identifier, STATE(1963), 1, sym_namespace, - ACTIONS(700), 2, + ACTIONS(708), 2, sym_concatenating_space, sym__if_else_separator, STATE(1269), 2, sym_array_ref, sym_ns_qualified_name, - ACTIONS(696), 31, + ACTIONS(704), 31, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -75647,9 +75653,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_POUND, [62583] = 2, - ACTIONS(1025), 1, + ACTIONS(1033), 1, anon_sym_LBRACK, - ACTIONS(1509), 36, + ACTIONS(1517), 36, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, @@ -75687,13 +75693,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [62625] = 3, - ACTIONS(1823), 1, + ACTIONS(1831), 1, sym__if_else_separator, - ACTIONS(1783), 3, + ACTIONS(1791), 3, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, - ACTIONS(1821), 33, + ACTIONS(1829), 33, anon_sym_if, anon_sym_LPAREN, anon_sym_while, @@ -75728,9 +75734,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [62669] = 2, - ACTIONS(1833), 1, + ACTIONS(1841), 1, sym__if_else_separator, - ACTIONS(1831), 36, + ACTIONS(1839), 36, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, @@ -75768,13 +75774,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [62711] = 3, - ACTIONS(1837), 1, + ACTIONS(1845), 1, sym__if_else_separator, - ACTIONS(1783), 3, + ACTIONS(1791), 3, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, - ACTIONS(1835), 33, + ACTIONS(1843), 33, anon_sym_if, anon_sym_LPAREN, anon_sym_while, @@ -75809,9 +75815,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [62755] = 2, - ACTIONS(1841), 1, + ACTIONS(1849), 1, sym__if_else_separator, - ACTIONS(1839), 36, + ACTIONS(1847), 36, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, @@ -75849,13 +75855,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [62797] = 3, - ACTIONS(1845), 1, + ACTIONS(1853), 1, sym__if_else_separator, - ACTIONS(1783), 3, + ACTIONS(1791), 3, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, - ACTIONS(1843), 33, + ACTIONS(1851), 33, anon_sym_if, anon_sym_LPAREN, anon_sym_while, @@ -75890,9 +75896,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [62841] = 2, - ACTIONS(1837), 1, + ACTIONS(1845), 1, sym__if_else_separator, - ACTIONS(1835), 36, + ACTIONS(1843), 36, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, @@ -75930,19 +75936,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [62883] = 5, - ACTIONS(856), 1, + ACTIONS(864), 1, sym_concatenating_space, - ACTIONS(1791), 2, + ACTIONS(1799), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(1803), 2, + ACTIONS(1811), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1801), 3, + ACTIONS(1809), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(854), 29, + ACTIONS(862), 29, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -75973,9 +75979,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT_EQ, anon_sym_CARET_EQ, [62931] = 2, - ACTIONS(1845), 1, + ACTIONS(1853), 1, sym__if_else_separator, - ACTIONS(1843), 36, + ACTIONS(1851), 36, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, @@ -76013,11 +76019,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [62973] = 4, - ACTIONS(888), 1, + ACTIONS(896), 1, anon_sym_LBRACK, - ACTIONS(1745), 1, + ACTIONS(1753), 1, anon_sym_LT, - ACTIONS(670), 9, + ACTIONS(678), 9, anon_sym_GT, anon_sym_PIPE, anon_sym_CARET, @@ -76027,7 +76033,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ, - ACTIONS(672), 26, + ACTIONS(680), 26, sym_concatenating_space, anon_sym_COMMA, anon_sym_SEMI, @@ -76055,13 +76061,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_RBRACK, [63019] = 3, - ACTIONS(1849), 1, + ACTIONS(1857), 1, sym__if_else_separator, - ACTIONS(1783), 3, + ACTIONS(1791), 3, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, - ACTIONS(1847), 33, + ACTIONS(1855), 33, anon_sym_if, anon_sym_LPAREN, anon_sym_while, @@ -76096,9 +76102,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [63063] = 2, - ACTIONS(1849), 1, + ACTIONS(1857), 1, sym__if_else_separator, - ACTIONS(1847), 36, + ACTIONS(1855), 36, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, @@ -76136,13 +76142,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [63105] = 3, - ACTIONS(1853), 1, + ACTIONS(1861), 1, sym__if_else_separator, - ACTIONS(1783), 3, + ACTIONS(1791), 3, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, - ACTIONS(1851), 33, + ACTIONS(1859), 33, anon_sym_if, anon_sym_LPAREN, anon_sym_while, @@ -76177,9 +76183,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [63149] = 2, - ACTIONS(1853), 1, + ACTIONS(1861), 1, sym__if_else_separator, - ACTIONS(1851), 36, + ACTIONS(1859), 36, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, @@ -76217,23 +76223,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [63191] = 7, - ACTIONS(708), 1, + ACTIONS(716), 1, anon_sym_EQ, - ACTIONS(888), 1, + ACTIONS(896), 1, anon_sym_LBRACK, - ACTIONS(1513), 1, + ACTIONS(1521), 1, sym_concatenating_space, - ACTIONS(890), 2, + ACTIONS(898), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(967), 6, + ACTIONS(975), 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(636), 9, + ACTIONS(644), 9, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -76243,7 +76249,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(650), 17, + ACTIONS(658), 17, anon_sym_COMMA, anon_sym_SEMI, anon_sym_RPAREN, @@ -76262,9 +76268,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_RBRACK, [63243] = 2, - ACTIONS(1857), 1, + ACTIONS(1865), 1, sym__if_else_separator, - ACTIONS(1855), 36, + ACTIONS(1863), 36, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, @@ -76302,9 +76308,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [63285] = 2, - ACTIONS(1861), 1, + ACTIONS(1869), 1, sym__if_else_separator, - ACTIONS(1859), 36, + ACTIONS(1867), 36, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, @@ -76342,13 +76348,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [63327] = 3, - ACTIONS(1865), 1, + ACTIONS(1873), 1, sym__if_else_separator, - ACTIONS(1783), 3, + ACTIONS(1791), 3, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, - ACTIONS(1863), 33, + ACTIONS(1871), 33, anon_sym_if, anon_sym_LPAREN, anon_sym_while, @@ -76383,9 +76389,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [63371] = 2, - ACTIONS(1865), 1, + ACTIONS(1873), 1, sym__if_else_separator, - ACTIONS(1863), 36, + ACTIONS(1871), 36, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, @@ -76423,13 +76429,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [63413] = 3, - ACTIONS(1869), 1, + ACTIONS(1877), 1, sym__if_else_separator, - ACTIONS(1783), 3, + ACTIONS(1791), 3, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, - ACTIONS(1867), 33, + ACTIONS(1875), 33, anon_sym_if, anon_sym_LPAREN, anon_sym_while, @@ -76464,9 +76470,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [63457] = 2, - ACTIONS(1869), 1, + ACTIONS(1877), 1, sym__if_else_separator, - ACTIONS(1867), 36, + ACTIONS(1875), 36, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, @@ -76504,13 +76510,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [63499] = 3, - ACTIONS(1873), 1, + ACTIONS(1881), 1, sym__if_else_separator, - ACTIONS(1783), 3, + ACTIONS(1791), 3, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, - ACTIONS(1871), 33, + ACTIONS(1879), 33, anon_sym_if, anon_sym_LPAREN, anon_sym_while, @@ -76545,9 +76551,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [63543] = 2, - ACTIONS(1873), 1, + ACTIONS(1881), 1, sym__if_else_separator, - ACTIONS(1871), 36, + ACTIONS(1879), 36, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, @@ -76585,13 +76591,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [63585] = 3, - ACTIONS(1877), 1, + ACTIONS(1885), 1, sym__if_else_separator, - ACTIONS(1783), 3, + ACTIONS(1791), 3, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, - ACTIONS(1875), 33, + ACTIONS(1883), 33, anon_sym_if, anon_sym_LPAREN, anon_sym_while, @@ -76626,9 +76632,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [63629] = 2, - ACTIONS(1877), 1, + ACTIONS(1885), 1, sym__if_else_separator, - ACTIONS(1875), 36, + ACTIONS(1883), 36, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, @@ -76666,13 +76672,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [63671] = 3, - ACTIONS(1881), 1, + ACTIONS(1889), 1, sym__if_else_separator, - ACTIONS(1783), 3, + ACTIONS(1791), 3, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, - ACTIONS(1879), 33, + ACTIONS(1887), 33, anon_sym_if, anon_sym_LPAREN, anon_sym_while, @@ -76707,9 +76713,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [63715] = 2, - ACTIONS(1881), 1, + ACTIONS(1889), 1, sym__if_else_separator, - ACTIONS(1879), 36, + ACTIONS(1887), 36, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, @@ -76747,13 +76753,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [63757] = 3, - ACTIONS(1885), 1, + ACTIONS(1893), 1, sym__if_else_separator, - ACTIONS(1783), 3, + ACTIONS(1791), 3, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, - ACTIONS(1883), 33, + ACTIONS(1891), 33, anon_sym_if, anon_sym_LPAREN, anon_sym_while, @@ -76788,9 +76794,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [63801] = 2, - ACTIONS(1885), 1, + ACTIONS(1893), 1, sym__if_else_separator, - ACTIONS(1883), 36, + ACTIONS(1891), 36, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, @@ -76828,13 +76834,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [63843] = 3, - ACTIONS(1889), 1, + ACTIONS(1897), 1, sym__if_else_separator, - ACTIONS(1783), 3, + ACTIONS(1791), 3, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, - ACTIONS(1887), 33, + ACTIONS(1895), 33, anon_sym_if, anon_sym_LPAREN, anon_sym_while, @@ -76869,9 +76875,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [63887] = 2, - ACTIONS(1889), 1, + ACTIONS(1897), 1, sym__if_else_separator, - ACTIONS(1887), 36, + ACTIONS(1895), 36, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, @@ -76909,13 +76915,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [63929] = 3, - ACTIONS(1893), 1, + ACTIONS(1901), 1, sym__if_else_separator, - ACTIONS(1783), 3, + ACTIONS(1791), 3, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, - ACTIONS(1891), 33, + ACTIONS(1899), 33, anon_sym_if, anon_sym_LPAREN, anon_sym_while, @@ -76950,9 +76956,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [63973] = 2, - ACTIONS(1893), 1, + ACTIONS(1901), 1, sym__if_else_separator, - ACTIONS(1891), 36, + ACTIONS(1899), 36, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, @@ -76990,13 +76996,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [64015] = 3, - ACTIONS(1897), 1, + ACTIONS(1905), 1, sym__if_else_separator, - ACTIONS(1783), 3, + ACTIONS(1791), 3, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, - ACTIONS(1895), 33, + ACTIONS(1903), 33, anon_sym_if, anon_sym_LPAREN, anon_sym_while, @@ -77031,9 +77037,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [64059] = 2, - ACTIONS(1897), 1, + ACTIONS(1905), 1, sym__if_else_separator, - ACTIONS(1895), 36, + ACTIONS(1903), 36, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, @@ -77071,13 +77077,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [64101] = 3, - ACTIONS(1901), 1, + ACTIONS(1909), 1, sym__if_else_separator, - ACTIONS(1783), 3, + ACTIONS(1791), 3, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, - ACTIONS(1899), 33, + ACTIONS(1907), 33, anon_sym_if, anon_sym_LPAREN, anon_sym_while, @@ -77112,9 +77118,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [64145] = 2, - ACTIONS(1901), 1, + ACTIONS(1909), 1, sym__if_else_separator, - ACTIONS(1899), 36, + ACTIONS(1907), 36, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, @@ -77152,9 +77158,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [64187] = 2, - ACTIONS(1905), 1, + ACTIONS(1913), 1, sym__if_else_separator, - ACTIONS(1903), 36, + ACTIONS(1911), 36, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, @@ -77192,9 +77198,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [64229] = 2, - ACTIONS(1909), 1, + ACTIONS(1917), 1, sym__if_else_separator, - ACTIONS(1907), 36, + ACTIONS(1915), 36, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, @@ -77232,9 +77238,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [64271] = 2, - ACTIONS(1909), 1, + ACTIONS(1917), 1, sym__if_else_separator, - ACTIONS(1907), 36, + ACTIONS(1915), 36, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, @@ -77272,12 +77278,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [64313] = 4, - ACTIONS(1347), 1, + ACTIONS(1355), 1, sym_concatenating_space, - ACTIONS(1215), 2, + ACTIONS(1223), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1345), 7, + ACTIONS(1353), 7, anon_sym_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -77285,7 +77291,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_CARET_EQ, - ACTIONS(636), 27, + ACTIONS(644), 27, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -77314,9 +77320,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, [64359] = 2, - ACTIONS(1913), 1, + ACTIONS(1921), 1, sym__if_else_separator, - ACTIONS(1911), 36, + ACTIONS(1919), 36, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, @@ -77354,13 +77360,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [64401] = 3, - ACTIONS(1917), 1, + ACTIONS(1925), 1, sym__if_else_separator, - ACTIONS(1783), 3, + ACTIONS(1791), 3, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, - ACTIONS(1915), 33, + ACTIONS(1923), 33, anon_sym_if, anon_sym_LPAREN, anon_sym_while, @@ -77395,9 +77401,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [64445] = 2, - ACTIONS(1917), 1, + ACTIONS(1925), 1, sym__if_else_separator, - ACTIONS(1915), 36, + ACTIONS(1923), 36, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, @@ -77435,13 +77441,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [64487] = 3, - ACTIONS(1921), 1, + ACTIONS(1929), 1, sym__if_else_separator, - ACTIONS(1783), 3, + ACTIONS(1791), 3, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, - ACTIONS(1919), 33, + ACTIONS(1927), 33, anon_sym_if, anon_sym_LPAREN, anon_sym_while, @@ -77476,9 +77482,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [64531] = 2, - ACTIONS(1921), 1, + ACTIONS(1929), 1, sym__if_else_separator, - ACTIONS(1919), 36, + ACTIONS(1927), 36, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, @@ -77516,26 +77522,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [64573] = 6, - ACTIONS(766), 1, + ACTIONS(774), 1, sym_concatenating_space, - ACTIONS(1791), 2, + ACTIONS(1799), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(1803), 2, + ACTIONS(1811), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1801), 3, + ACTIONS(1809), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1805), 6, + 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(764), 23, + ACTIONS(772), 23, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -77560,9 +77566,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT_EQ, anon_sym_CARET_EQ, [64623] = 2, - ACTIONS(1925), 1, + ACTIONS(1933), 1, sym__if_else_separator, - ACTIONS(1923), 36, + ACTIONS(1931), 36, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, @@ -77600,9 +77606,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [64665] = 2, - ACTIONS(1785), 1, + ACTIONS(1793), 1, sym__if_else_separator, - ACTIONS(1781), 36, + ACTIONS(1789), 36, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, @@ -77640,12 +77646,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [64707] = 4, - ACTIONS(650), 1, + ACTIONS(658), 1, sym_concatenating_space, - ACTIONS(1221), 2, + ACTIONS(1229), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1353), 7, + ACTIONS(1361), 7, anon_sym_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -77653,7 +77659,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_CARET_EQ, - ACTIONS(636), 27, + ACTIONS(644), 27, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -77682,13 +77688,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, [64753] = 3, - ACTIONS(1925), 1, + ACTIONS(1933), 1, sym__if_else_separator, - ACTIONS(1783), 3, + ACTIONS(1791), 3, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, - ACTIONS(1923), 33, + ACTIONS(1931), 33, anon_sym_if, anon_sym_LPAREN, anon_sym_while, @@ -77723,9 +77729,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [64797] = 2, - ACTIONS(1929), 1, + ACTIONS(1937), 1, sym__if_else_separator, - ACTIONS(1927), 36, + ACTIONS(1935), 36, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, @@ -77763,13 +77769,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [64839] = 3, - ACTIONS(1929), 1, + ACTIONS(1937), 1, sym__if_else_separator, - ACTIONS(1783), 3, + ACTIONS(1791), 3, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, - ACTIONS(1927), 33, + ACTIONS(1935), 33, anon_sym_if, anon_sym_LPAREN, anon_sym_while, @@ -77804,21 +77810,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [64883] = 6, - ACTIONS(888), 1, + ACTIONS(896), 1, anon_sym_LBRACK, - ACTIONS(1371), 1, + ACTIONS(1379), 1, anon_sym_EQ, - ACTIONS(1369), 2, + ACTIONS(1377), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1373), 6, + ACTIONS(1381), 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(636), 9, + ACTIONS(644), 9, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -77828,7 +77834,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(650), 18, + ACTIONS(658), 18, sym_concatenating_space, anon_sym_COMMA, anon_sym_SEMI, @@ -77848,11 +77854,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_RBRACK, [64933] = 2, - ACTIONS(1931), 3, + ACTIONS(1939), 3, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, - ACTIONS(1883), 33, + ACTIONS(1891), 33, anon_sym_if, anon_sym_LPAREN, anon_sym_while, @@ -77887,23 +77893,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [64974] = 6, - ACTIONS(1933), 1, + ACTIONS(1941), 1, anon_sym_CARET, - ACTIONS(1935), 1, + ACTIONS(1943), 1, anon_sym_STAR_STAR, - ACTIONS(1939), 2, + ACTIONS(1947), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1937), 3, + ACTIONS(1945), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(764), 4, + ACTIONS(772), 4, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_EQ, - ACTIONS(766), 25, + ACTIONS(774), 25, sym_concatenating_space, anon_sym_COMMA, anon_sym_SEMI, @@ -77930,7 +77936,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_RBRACK, [65023] = 1, - ACTIONS(1907), 36, + ACTIONS(1915), 36, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, @@ -77968,7 +77974,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [65062] = 1, - ACTIONS(1907), 36, + ACTIONS(1915), 36, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, @@ -78006,7 +78012,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [65101] = 1, - ACTIONS(1911), 36, + ACTIONS(1919), 36, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, @@ -78044,11 +78050,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [65140] = 2, - ACTIONS(1931), 3, + ACTIONS(1939), 3, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, - ACTIONS(1915), 33, + ACTIONS(1923), 33, anon_sym_if, anon_sym_LPAREN, anon_sym_while, @@ -78083,7 +78089,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [65181] = 1, - ACTIONS(1915), 36, + ACTIONS(1923), 36, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, @@ -78121,11 +78127,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [65220] = 2, - ACTIONS(1931), 3, + ACTIONS(1939), 3, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, - ACTIONS(1919), 33, + ACTIONS(1927), 33, anon_sym_if, anon_sym_LPAREN, anon_sym_while, @@ -78160,7 +78166,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [65261] = 1, - ACTIONS(1919), 36, + ACTIONS(1927), 36, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, @@ -78198,11 +78204,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [65300] = 2, - ACTIONS(1931), 3, + ACTIONS(1939), 3, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, - ACTIONS(1781), 33, + ACTIONS(1789), 33, anon_sym_if, anon_sym_LPAREN, anon_sym_while, @@ -78237,7 +78243,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [65341] = 1, - ACTIONS(1781), 36, + ACTIONS(1789), 36, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, @@ -78275,11 +78281,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [65380] = 2, - ACTIONS(1931), 3, + ACTIONS(1939), 3, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, - ACTIONS(1923), 33, + ACTIONS(1931), 33, anon_sym_if, anon_sym_LPAREN, anon_sym_while, @@ -78314,7 +78320,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [65421] = 1, - ACTIONS(1923), 36, + ACTIONS(1931), 36, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, @@ -78352,11 +78358,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [65460] = 2, - ACTIONS(1931), 3, + ACTIONS(1939), 3, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, - ACTIONS(1927), 33, + ACTIONS(1935), 33, anon_sym_if, anon_sym_LPAREN, anon_sym_while, @@ -78391,7 +78397,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [65501] = 1, - ACTIONS(1927), 36, + ACTIONS(1935), 36, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, @@ -78429,7 +78435,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [65540] = 1, - ACTIONS(1777), 36, + ACTIONS(1785), 36, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, @@ -78467,43 +78473,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [65579] = 15, - ACTIONS(836), 1, + ACTIONS(844), 1, anon_sym_EQ, - ACTIONS(1933), 1, + ACTIONS(1941), 1, anon_sym_CARET, - ACTIONS(1935), 1, + ACTIONS(1943), 1, anon_sym_STAR_STAR, - ACTIONS(1941), 1, + ACTIONS(1949), 1, anon_sym_in, - ACTIONS(1945), 1, + ACTIONS(1953), 1, anon_sym_PIPE, - ACTIONS(1947), 1, + ACTIONS(1955), 1, anon_sym_PIPE_AMP, - ACTIONS(1949), 1, + ACTIONS(1957), 1, anon_sym_QMARK, - ACTIONS(1955), 1, + ACTIONS(1963), 1, anon_sym_AMP_AMP, - ACTIONS(1957), 1, + ACTIONS(1965), 1, anon_sym_PIPE_PIPE, - ACTIONS(1939), 2, + ACTIONS(1947), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1943), 2, + ACTIONS(1951), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1953), 2, + ACTIONS(1961), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(1937), 3, + ACTIONS(1945), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1951), 4, + ACTIONS(1959), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(848), 14, + ACTIONS(856), 14, sym_concatenating_space, anon_sym_COMMA, anon_sym_SEMI, @@ -78519,7 +78525,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_RBRACK, [65646] = 1, - ACTIONS(1793), 36, + ACTIONS(1801), 36, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, @@ -78557,9 +78563,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [65685] = 7, - ACTIONS(1959), 1, + ACTIONS(1967), 1, sym_identifier, - ACTIONS(1961), 1, + ACTIONS(1969), 1, anon_sym_LT, STATE(1269), 1, sym_array_ref, @@ -78567,10 +78573,10 @@ static const uint16_t ts_small_parse_table[] = { sym_ns_qualified_name, STATE(1963), 1, sym_namespace, - ACTIONS(700), 2, + ACTIONS(708), 2, sym_concatenating_space, sym__if_else_separator, - ACTIONS(696), 29, + ACTIONS(704), 29, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -78601,7 +78607,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_POUND, [65736] = 1, - ACTIONS(1797), 36, + ACTIONS(1805), 36, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, @@ -78639,11 +78645,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [65775] = 2, - ACTIONS(1931), 3, + ACTIONS(1939), 3, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, - ACTIONS(1821), 33, + ACTIONS(1829), 33, anon_sym_if, anon_sym_LPAREN, anon_sym_while, @@ -78678,7 +78684,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [65816] = 1, - ACTIONS(1821), 36, + ACTIONS(1829), 36, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, @@ -78716,16 +78722,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [65855] = 5, - ACTIONS(700), 1, + ACTIONS(708), 1, sym__if_else_separator, - ACTIONS(1963), 1, + ACTIONS(1971), 1, sym_identifier, STATE(1962), 1, sym_namespace, STATE(1276), 2, sym_array_ref, sym_ns_qualified_name, - ACTIONS(696), 31, + ACTIONS(704), 31, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -78758,7 +78764,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_POUND, [65902] = 1, - ACTIONS(1825), 36, + ACTIONS(1833), 36, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, @@ -78796,19 +78802,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [65941] = 5, - ACTIONS(1371), 1, + ACTIONS(1379), 1, anon_sym_EQ, - ACTIONS(1369), 2, + ACTIONS(1377), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1373), 6, + ACTIONS(1381), 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(636), 9, + ACTIONS(644), 9, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -78818,7 +78824,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(650), 18, + ACTIONS(658), 18, sym_concatenating_space, anon_sym_COMMA, anon_sym_SEMI, @@ -78838,11 +78844,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_RBRACK, [65988] = 2, - ACTIONS(1931), 3, + ACTIONS(1939), 3, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, - ACTIONS(1835), 33, + ACTIONS(1843), 33, anon_sym_if, anon_sym_LPAREN, anon_sym_while, @@ -78877,7 +78883,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [66029] = 1, - ACTIONS(1835), 36, + ACTIONS(1843), 36, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, @@ -78915,40 +78921,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [66068] = 13, - ACTIONS(1933), 1, + ACTIONS(1941), 1, anon_sym_CARET, - ACTIONS(1935), 1, + ACTIONS(1943), 1, anon_sym_STAR_STAR, - ACTIONS(1941), 1, - anon_sym_in, ACTIONS(1949), 1, + anon_sym_in, + ACTIONS(1957), 1, anon_sym_QMARK, - ACTIONS(1955), 1, + ACTIONS(1963), 1, anon_sym_AMP_AMP, - ACTIONS(1957), 1, + ACTIONS(1965), 1, anon_sym_PIPE_PIPE, - ACTIONS(850), 2, + ACTIONS(858), 2, anon_sym_PIPE, anon_sym_EQ, - ACTIONS(1939), 2, + ACTIONS(1947), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1943), 2, + ACTIONS(1951), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1953), 2, + ACTIONS(1961), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(1937), 3, + ACTIONS(1945), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1951), 4, + ACTIONS(1959), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(852), 15, + ACTIONS(860), 15, sym_concatenating_space, anon_sym_COMMA, anon_sym_SEMI, @@ -78965,32 +78971,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_RBRACK, [66131] = 9, - ACTIONS(1933), 1, + ACTIONS(1941), 1, anon_sym_CARET, - ACTIONS(1935), 1, + ACTIONS(1943), 1, anon_sym_STAR_STAR, - ACTIONS(830), 2, + ACTIONS(838), 2, anon_sym_PIPE, anon_sym_EQ, - ACTIONS(1939), 2, + ACTIONS(1947), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1943), 2, + ACTIONS(1951), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1953), 2, + ACTIONS(1961), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(1937), 3, + ACTIONS(1945), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1951), 4, + ACTIONS(1959), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(834), 19, + ACTIONS(842), 19, sym_concatenating_space, anon_sym_COMMA, anon_sym_SEMI, @@ -79011,36 +79017,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_RBRACK, [66186] = 11, - ACTIONS(1933), 1, + ACTIONS(1941), 1, anon_sym_CARET, - ACTIONS(1935), 1, + ACTIONS(1943), 1, anon_sym_STAR_STAR, - ACTIONS(1941), 1, + ACTIONS(1949), 1, anon_sym_in, - ACTIONS(1955), 1, + ACTIONS(1963), 1, anon_sym_AMP_AMP, - ACTIONS(764), 2, + ACTIONS(772), 2, anon_sym_PIPE, anon_sym_EQ, - ACTIONS(1939), 2, + ACTIONS(1947), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1943), 2, + ACTIONS(1951), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1953), 2, + ACTIONS(1961), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(1937), 3, + ACTIONS(1945), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1951), 4, + ACTIONS(1959), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(766), 17, + ACTIONS(774), 17, sym_concatenating_space, anon_sym_COMMA, anon_sym_SEMI, @@ -79059,34 +79065,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_RBRACK, [66245] = 10, - ACTIONS(1933), 1, + ACTIONS(1941), 1, anon_sym_CARET, - ACTIONS(1935), 1, + ACTIONS(1943), 1, anon_sym_STAR_STAR, - ACTIONS(1941), 1, + ACTIONS(1949), 1, anon_sym_in, - ACTIONS(764), 2, + ACTIONS(772), 2, anon_sym_PIPE, anon_sym_EQ, - ACTIONS(1939), 2, + ACTIONS(1947), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1943), 2, + ACTIONS(1951), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1953), 2, + ACTIONS(1961), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(1937), 3, + ACTIONS(1945), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1951), 4, + ACTIONS(1959), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(766), 18, + ACTIONS(774), 18, sym_concatenating_space, anon_sym_COMMA, anon_sym_SEMI, @@ -79106,7 +79112,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_RBRACK, [66302] = 1, - ACTIONS(1817), 36, + ACTIONS(1825), 36, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, @@ -79144,29 +79150,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [66341] = 8, - ACTIONS(1933), 1, + ACTIONS(1941), 1, anon_sym_CARET, - ACTIONS(1935), 1, + ACTIONS(1943), 1, anon_sym_STAR_STAR, - ACTIONS(764), 2, + ACTIONS(772), 2, anon_sym_PIPE, anon_sym_EQ, - ACTIONS(1939), 2, + ACTIONS(1947), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1943), 2, + ACTIONS(1951), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1937), 3, + ACTIONS(1945), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1951), 4, + ACTIONS(1959), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(766), 21, + ACTIONS(774), 21, sym_concatenating_space, anon_sym_COMMA, anon_sym_SEMI, @@ -79189,22 +79195,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_RBRACK, [66394] = 5, - ACTIONS(1933), 1, + ACTIONS(1941), 1, anon_sym_CARET, - ACTIONS(1935), 1, + ACTIONS(1943), 1, anon_sym_STAR_STAR, - ACTIONS(1937), 3, + ACTIONS(1945), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(764), 6, + ACTIONS(772), 6, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ, - ACTIONS(766), 25, + ACTIONS(774), 25, sym_concatenating_space, anon_sym_COMMA, anon_sym_SEMI, @@ -79231,11 +79237,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_RBRACK, [66441] = 4, - ACTIONS(1933), 1, + ACTIONS(1941), 1, anon_sym_CARET, - ACTIONS(1935), 1, + ACTIONS(1943), 1, anon_sym_STAR_STAR, - ACTIONS(764), 9, + ACTIONS(772), 9, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -79245,7 +79251,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ, - ACTIONS(766), 25, + ACTIONS(774), 25, sym_concatenating_space, anon_sym_COMMA, anon_sym_SEMI, @@ -79272,23 +79278,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_RBRACK, [66486] = 6, - ACTIONS(1933), 1, + ACTIONS(1941), 1, anon_sym_CARET, - ACTIONS(1935), 1, + ACTIONS(1943), 1, anon_sym_STAR_STAR, - ACTIONS(1939), 2, + ACTIONS(1947), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1937), 3, + ACTIONS(1945), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(854), 4, + ACTIONS(862), 4, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_EQ, - ACTIONS(856), 25, + ACTIONS(864), 25, sym_concatenating_space, anon_sym_COMMA, anon_sym_SEMI, @@ -79315,32 +79321,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_RBRACK, [66535] = 9, - ACTIONS(1933), 1, + ACTIONS(1941), 1, anon_sym_CARET, - ACTIONS(1935), 1, + ACTIONS(1943), 1, anon_sym_STAR_STAR, - ACTIONS(858), 2, + ACTIONS(866), 2, anon_sym_PIPE, anon_sym_EQ, - ACTIONS(1939), 2, + ACTIONS(1947), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1943), 2, + ACTIONS(1951), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1953), 2, + ACTIONS(1961), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(1937), 3, + ACTIONS(1945), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1951), 4, + ACTIONS(1959), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(860), 19, + ACTIONS(868), 19, sym_concatenating_space, anon_sym_COMMA, anon_sym_SEMI, @@ -79361,16 +79367,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_RBRACK, [66590] = 5, - ACTIONS(700), 1, + ACTIONS(708), 1, sym_concatenating_space, - ACTIONS(1965), 1, + ACTIONS(1973), 1, sym_identifier, STATE(1957), 1, sym_namespace, STATE(1282), 2, sym_array_ref, sym_ns_qualified_name, - ACTIONS(696), 31, + ACTIONS(704), 31, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -79403,7 +79409,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_POUND, [66637] = 1, - ACTIONS(1899), 36, + ACTIONS(1907), 36, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, @@ -79441,11 +79447,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [66676] = 2, - ACTIONS(1931), 3, + ACTIONS(1939), 3, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, - ACTIONS(1847), 33, + ACTIONS(1855), 33, anon_sym_if, anon_sym_LPAREN, anon_sym_while, @@ -79480,7 +79486,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [66717] = 1, - ACTIONS(1847), 36, + ACTIONS(1855), 36, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, @@ -79518,7 +79524,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [66756] = 1, - ACTIONS(1831), 36, + ACTIONS(1839), 36, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, @@ -79556,7 +79562,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [66795] = 1, - ACTIONS(1839), 36, + ACTIONS(1847), 36, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, @@ -79594,7 +79600,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [66834] = 1, - ACTIONS(1787), 36, + ACTIONS(1795), 36, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, @@ -79632,7 +79638,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [66873] = 1, - ACTIONS(1895), 36, + ACTIONS(1903), 36, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, @@ -79670,11 +79676,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [66912] = 2, - ACTIONS(1931), 3, + ACTIONS(1939), 3, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, - ACTIONS(1895), 33, + ACTIONS(1903), 33, anon_sym_if, anon_sym_LPAREN, anon_sym_while, @@ -79709,7 +79715,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [66953] = 1, - ACTIONS(1859), 36, + ACTIONS(1867), 36, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, @@ -79747,7 +79753,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [66992] = 1, - ACTIONS(1891), 36, + ACTIONS(1899), 36, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, @@ -79785,11 +79791,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [67031] = 2, - ACTIONS(1931), 3, + ACTIONS(1939), 3, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, - ACTIONS(1891), 33, + ACTIONS(1899), 33, anon_sym_if, anon_sym_LPAREN, anon_sym_while, @@ -79824,7 +79830,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [67072] = 1, - ACTIONS(1887), 36, + ACTIONS(1895), 36, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, @@ -79862,11 +79868,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [67111] = 2, - ACTIONS(1931), 3, + ACTIONS(1939), 3, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, - ACTIONS(1887), 33, + ACTIONS(1895), 33, anon_sym_if, anon_sym_LPAREN, anon_sym_while, @@ -79901,7 +79907,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [67152] = 1, - ACTIONS(1883), 36, + ACTIONS(1891), 36, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, @@ -79939,7 +79945,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [67191] = 1, - ACTIONS(1855), 36, + ACTIONS(1863), 36, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, @@ -79977,7 +79983,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [67230] = 1, - ACTIONS(1879), 36, + ACTIONS(1887), 36, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, @@ -80015,11 +80021,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [67269] = 2, - ACTIONS(1931), 3, + ACTIONS(1939), 3, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, - ACTIONS(1879), 33, + ACTIONS(1887), 33, anon_sym_if, anon_sym_LPAREN, anon_sym_while, @@ -80054,7 +80060,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [67310] = 1, - ACTIONS(1875), 36, + ACTIONS(1883), 36, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, @@ -80092,11 +80098,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [67349] = 2, - ACTIONS(1931), 3, + ACTIONS(1939), 3, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, - ACTIONS(1875), 33, + ACTIONS(1883), 33, anon_sym_if, anon_sym_LPAREN, anon_sym_while, @@ -80131,7 +80137,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [67390] = 1, - ACTIONS(1871), 36, + ACTIONS(1879), 36, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, @@ -80169,11 +80175,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [67429] = 2, - ACTIONS(1931), 3, + ACTIONS(1939), 3, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, - ACTIONS(1871), 33, + ACTIONS(1879), 33, anon_sym_if, anon_sym_LPAREN, anon_sym_while, @@ -80208,7 +80214,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [67470] = 1, - ACTIONS(1867), 36, + ACTIONS(1875), 36, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, @@ -80246,11 +80252,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [67509] = 2, - ACTIONS(1931), 3, + ACTIONS(1939), 3, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, - ACTIONS(1867), 33, + ACTIONS(1875), 33, anon_sym_if, anon_sym_LPAREN, anon_sym_while, @@ -80285,7 +80291,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [67550] = 1, - ACTIONS(1863), 36, + ACTIONS(1871), 36, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, @@ -80323,11 +80329,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [67589] = 2, - ACTIONS(1931), 3, + ACTIONS(1939), 3, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, - ACTIONS(1863), 33, + ACTIONS(1871), 33, anon_sym_if, anon_sym_LPAREN, anon_sym_while, @@ -80362,11 +80368,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [67630] = 2, - ACTIONS(1931), 3, + ACTIONS(1939), 3, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, - ACTIONS(1899), 33, + ACTIONS(1907), 33, anon_sym_if, anon_sym_LPAREN, anon_sym_while, @@ -80401,7 +80407,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [67671] = 1, - ACTIONS(1851), 36, + ACTIONS(1859), 36, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, @@ -80439,11 +80445,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [67710] = 2, - ACTIONS(1931), 3, + ACTIONS(1939), 3, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, - ACTIONS(1851), 33, + ACTIONS(1859), 33, anon_sym_if, anon_sym_LPAREN, anon_sym_while, @@ -80478,21 +80484,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [67751] = 6, - ACTIONS(708), 1, + ACTIONS(716), 1, anon_sym_EQ, - ACTIONS(1513), 1, + ACTIONS(1521), 1, sym_concatenating_space, - ACTIONS(890), 2, + ACTIONS(898), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(967), 6, + ACTIONS(975), 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(636), 9, + ACTIONS(644), 9, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -80502,7 +80508,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(650), 17, + ACTIONS(658), 17, anon_sym_COMMA, anon_sym_SEMI, anon_sym_RPAREN, @@ -80521,12 +80527,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_RBRACK, [67800] = 4, - ACTIONS(1971), 1, + ACTIONS(1979), 1, anon_sym_POUND, STATE(1239), 2, sym_comment, aux_sym_if_statement_repeat1, - ACTIONS(1969), 12, + ACTIONS(1977), 12, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_LBRACE, @@ -80539,7 +80545,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, aux_sym_number_token2, anon_sym_DQUOTE, - ACTIONS(1967), 21, + ACTIONS(1975), 21, anon_sym_if, anon_sym_while, anon_sym_do, @@ -80562,7 +80568,7 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, aux_sym_number_token1, [67845] = 1, - ACTIONS(1843), 36, + ACTIONS(1851), 36, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, @@ -80600,7 +80606,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [67884] = 1, - ACTIONS(1903), 36, + ACTIONS(1911), 36, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, @@ -80638,11 +80644,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [67923] = 2, - ACTIONS(1931), 3, + ACTIONS(1939), 3, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, - ACTIONS(1843), 33, + ACTIONS(1851), 33, anon_sym_if, anon_sym_LPAREN, anon_sym_while, @@ -80677,29 +80683,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [67964] = 10, - ACTIONS(644), 1, + ACTIONS(652), 1, anon_sym_COLON_COLON, - ACTIONS(708), 1, + ACTIONS(716), 1, anon_sym_EQ, - ACTIONS(888), 1, + ACTIONS(896), 1, anon_sym_LBRACK, - ACTIONS(1367), 1, + ACTIONS(1375), 1, anon_sym_LPAREN2, - ACTIONS(1513), 1, + ACTIONS(1521), 1, sym_concatenating_space, - ACTIONS(1974), 1, + ACTIONS(1982), 1, anon_sym_in, - ACTIONS(890), 2, + ACTIONS(898), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(967), 6, + ACTIONS(975), 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(636), 9, + ACTIONS(644), 9, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -80709,7 +80715,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(650), 12, + ACTIONS(658), 12, anon_sym_SEMI, anon_sym_PIPE_AMP, anon_sym_QMARK, @@ -80723,11 +80729,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, [68020] = 7, - ACTIONS(700), 1, + ACTIONS(708), 1, sym_concatenating_space, - ACTIONS(1976), 1, + ACTIONS(1984), 1, sym_identifier, - ACTIONS(1978), 1, + ACTIONS(1986), 1, anon_sym_LT, STATE(1282), 1, sym_array_ref, @@ -80735,7 +80741,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ns_qualified_name, STATE(1957), 1, sym_namespace, - ACTIONS(696), 29, + ACTIONS(704), 29, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -80766,29 +80772,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_POUND, [68070] = 10, - ACTIONS(644), 1, + ACTIONS(652), 1, anon_sym_COLON_COLON, - ACTIONS(708), 1, + ACTIONS(716), 1, anon_sym_EQ, - ACTIONS(888), 1, + ACTIONS(896), 1, anon_sym_LBRACK, - ACTIONS(1367), 1, + ACTIONS(1375), 1, anon_sym_LPAREN2, - ACTIONS(1513), 1, + ACTIONS(1521), 1, sym_concatenating_space, - ACTIONS(1980), 1, + ACTIONS(1988), 1, anon_sym_in, - ACTIONS(890), 2, + ACTIONS(898), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(967), 6, + ACTIONS(975), 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(636), 9, + ACTIONS(644), 9, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -80798,7 +80804,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(650), 12, + ACTIONS(658), 12, anon_sym_SEMI, anon_sym_PIPE_AMP, anon_sym_QMARK, @@ -80812,29 +80818,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, [68126] = 10, - ACTIONS(644), 1, + ACTIONS(652), 1, anon_sym_COLON_COLON, - ACTIONS(708), 1, + ACTIONS(716), 1, anon_sym_EQ, - ACTIONS(888), 1, + ACTIONS(896), 1, anon_sym_LBRACK, - ACTIONS(1367), 1, + ACTIONS(1375), 1, anon_sym_LPAREN2, - ACTIONS(1513), 1, + ACTIONS(1521), 1, sym_concatenating_space, - ACTIONS(1982), 1, + ACTIONS(1990), 1, anon_sym_in, - ACTIONS(890), 2, + ACTIONS(898), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(967), 6, + ACTIONS(975), 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(636), 9, + ACTIONS(644), 9, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -80844,7 +80850,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(650), 12, + ACTIONS(658), 12, anon_sym_SEMI, anon_sym_PIPE_AMP, anon_sym_QMARK, @@ -80858,11 +80864,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, [68182] = 7, - ACTIONS(700), 1, + ACTIONS(708), 1, sym__if_else_separator, - ACTIONS(1984), 1, + ACTIONS(1992), 1, sym_identifier, - ACTIONS(1986), 1, + ACTIONS(1994), 1, anon_sym_LT, STATE(1276), 1, sym_array_ref, @@ -80870,7 +80876,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ns_qualified_name, STATE(1962), 1, sym_namespace, - ACTIONS(696), 29, + ACTIONS(704), 29, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -80901,9 +80907,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_POUND, [68232] = 2, - ACTIONS(1990), 1, + ACTIONS(1998), 1, sym__if_else_separator, - ACTIONS(1988), 34, + ACTIONS(1996), 34, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, @@ -80939,9 +80945,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [68272] = 2, - ACTIONS(1990), 1, + ACTIONS(1998), 1, sym__if_else_separator, - ACTIONS(1988), 34, + ACTIONS(1996), 34, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, @@ -80977,29 +80983,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [68312] = 10, - ACTIONS(644), 1, + ACTIONS(652), 1, anon_sym_COLON_COLON, - ACTIONS(708), 1, + ACTIONS(716), 1, anon_sym_EQ, - ACTIONS(888), 1, + ACTIONS(896), 1, anon_sym_LBRACK, - ACTIONS(1367), 1, + ACTIONS(1375), 1, anon_sym_LPAREN2, - ACTIONS(1513), 1, + ACTIONS(1521), 1, sym_concatenating_space, - ACTIONS(1992), 1, + ACTIONS(2000), 1, anon_sym_in, - ACTIONS(890), 2, + ACTIONS(898), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(967), 6, + ACTIONS(975), 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(636), 9, + ACTIONS(644), 9, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -81009,7 +81015,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(650), 12, + ACTIONS(658), 12, anon_sym_SEMI, anon_sym_PIPE_AMP, anon_sym_QMARK, @@ -81023,9 +81029,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, [68368] = 2, - ACTIONS(1994), 1, + ACTIONS(2002), 1, sym__if_else_separator, - ACTIONS(1988), 34, + ACTIONS(1996), 34, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, @@ -81061,14 +81067,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [68408] = 4, - ACTIONS(644), 1, + ACTIONS(652), 1, anon_sym_COLON_COLON, - ACTIONS(1996), 1, + ACTIONS(2004), 1, anon_sym_LBRACK, - ACTIONS(676), 2, + ACTIONS(684), 2, sym_concatenating_space, sym__if_else_separator, - ACTIONS(674), 31, + ACTIONS(682), 31, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -81101,9 +81107,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_POUND, [68452] = 2, - ACTIONS(1994), 1, + ACTIONS(2002), 1, sym__if_else_separator, - ACTIONS(1988), 34, + ACTIONS(1996), 34, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, @@ -81139,29 +81145,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [68492] = 10, - ACTIONS(644), 1, + ACTIONS(652), 1, anon_sym_COLON_COLON, - ACTIONS(708), 1, + ACTIONS(716), 1, anon_sym_EQ, - ACTIONS(888), 1, + ACTIONS(896), 1, anon_sym_LBRACK, - ACTIONS(1367), 1, + ACTIONS(1375), 1, anon_sym_LPAREN2, - ACTIONS(1513), 1, + ACTIONS(1521), 1, sym_concatenating_space, - ACTIONS(1998), 1, + ACTIONS(2006), 1, anon_sym_in, - ACTIONS(890), 2, + ACTIONS(898), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(967), 6, + ACTIONS(975), 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(636), 9, + ACTIONS(644), 9, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -81171,7 +81177,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(650), 12, + ACTIONS(658), 12, anon_sym_SEMI, anon_sym_PIPE_AMP, anon_sym_QMARK, @@ -81185,14 +81191,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, [68548] = 4, - ACTIONS(644), 1, + ACTIONS(652), 1, anon_sym_COLON_COLON, - ACTIONS(1996), 1, + ACTIONS(2004), 1, anon_sym_LBRACK, - ACTIONS(672), 2, + ACTIONS(680), 2, sym_concatenating_space, sym__if_else_separator, - ACTIONS(670), 31, + ACTIONS(678), 31, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -81225,29 +81231,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_POUND, [68592] = 10, - ACTIONS(644), 1, + ACTIONS(652), 1, anon_sym_COLON_COLON, - ACTIONS(708), 1, + ACTIONS(716), 1, anon_sym_EQ, - ACTIONS(888), 1, + ACTIONS(896), 1, anon_sym_LBRACK, - ACTIONS(1367), 1, + ACTIONS(1375), 1, anon_sym_LPAREN2, - ACTIONS(1513), 1, + ACTIONS(1521), 1, sym_concatenating_space, - ACTIONS(2000), 1, + ACTIONS(2008), 1, anon_sym_in, - ACTIONS(890), 2, + ACTIONS(898), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(967), 6, + ACTIONS(975), 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(636), 9, + ACTIONS(644), 9, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -81257,7 +81263,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(650), 12, + ACTIONS(658), 12, anon_sym_SEMI, anon_sym_PIPE_AMP, anon_sym_QMARK, @@ -81271,14 +81277,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, [68648] = 4, - ACTIONS(2002), 1, + ACTIONS(2010), 1, sym_identifier, STATE(1954), 1, sym_namespace, STATE(1322), 2, sym_array_ref, sym_ns_qualified_name, - ACTIONS(696), 31, + ACTIONS(704), 31, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -81311,10 +81317,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_POUND, [68692] = 2, - ACTIONS(714), 2, + ACTIONS(722), 2, sym_concatenating_space, sym__if_else_separator, - ACTIONS(712), 32, + ACTIONS(720), 32, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -81348,27 +81354,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_POUND, [68731] = 9, - ACTIONS(708), 1, + ACTIONS(716), 1, anon_sym_EQ, - ACTIONS(888), 1, + ACTIONS(896), 1, anon_sym_LBRACK, - ACTIONS(1367), 1, + ACTIONS(1375), 1, anon_sym_LPAREN2, - ACTIONS(1513), 1, + ACTIONS(1521), 1, sym_concatenating_space, - ACTIONS(1998), 1, + ACTIONS(2006), 1, anon_sym_in, - ACTIONS(890), 2, + ACTIONS(898), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(967), 6, + ACTIONS(975), 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(636), 9, + ACTIONS(644), 9, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -81378,7 +81384,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(650), 12, + ACTIONS(658), 12, anon_sym_SEMI, anon_sym_PIPE_AMP, anon_sym_QMARK, @@ -81392,13 +81398,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, [68784] = 4, - ACTIONS(644), 1, + ACTIONS(652), 1, anon_sym_COLON_COLON, - ACTIONS(672), 1, + ACTIONS(680), 1, sym__if_else_separator, - ACTIONS(2004), 1, + ACTIONS(2012), 1, anon_sym_LBRACK, - ACTIONS(670), 31, + ACTIONS(678), 31, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -81431,27 +81437,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_POUND, [68827] = 9, - ACTIONS(708), 1, + ACTIONS(716), 1, anon_sym_EQ, - ACTIONS(888), 1, + ACTIONS(896), 1, anon_sym_LBRACK, - ACTIONS(1367), 1, + ACTIONS(1375), 1, anon_sym_LPAREN2, - ACTIONS(1513), 1, + ACTIONS(1521), 1, sym_concatenating_space, - ACTIONS(2000), 1, + ACTIONS(2008), 1, anon_sym_in, - ACTIONS(890), 2, + ACTIONS(898), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(967), 6, + ACTIONS(975), 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(636), 9, + ACTIONS(644), 9, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -81461,7 +81467,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(650), 12, + ACTIONS(658), 12, anon_sym_SEMI, anon_sym_PIPE_AMP, anon_sym_QMARK, @@ -81475,12 +81481,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, [68880] = 3, - ACTIONS(1996), 1, + ACTIONS(2004), 1, anon_sym_LBRACK, - ACTIONS(676), 2, + ACTIONS(684), 2, sym_concatenating_space, sym__if_else_separator, - ACTIONS(674), 31, + ACTIONS(682), 31, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -81513,9 +81519,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_POUND, [68921] = 6, - ACTIONS(2006), 1, + ACTIONS(2014), 1, sym_identifier, - ACTIONS(2008), 1, + ACTIONS(2016), 1, anon_sym_LT, STATE(1322), 1, sym_array_ref, @@ -81523,7 +81529,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ns_qualified_name, STATE(1954), 1, sym_namespace, - ACTIONS(696), 29, + ACTIONS(704), 29, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -81554,13 +81560,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_POUND, [68968] = 4, - ACTIONS(644), 1, + ACTIONS(652), 1, anon_sym_COLON_COLON, - ACTIONS(672), 1, + ACTIONS(680), 1, sym_concatenating_space, - ACTIONS(2010), 1, + ACTIONS(2018), 1, anon_sym_LBRACK, - ACTIONS(670), 31, + ACTIONS(678), 31, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -81593,11 +81599,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_POUND, [69011] = 2, - ACTIONS(1931), 3, + ACTIONS(1939), 3, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, - ACTIONS(2012), 31, + ACTIONS(2020), 31, anon_sym_if, anon_sym_LPAREN, anon_sym_while, @@ -81630,10 +81636,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [69050] = 2, - ACTIONS(680), 2, + ACTIONS(688), 2, sym_concatenating_space, sym__if_else_separator, - ACTIONS(678), 32, + ACTIONS(686), 32, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -81667,16 +81673,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_POUND, [69089] = 5, - ACTIONS(644), 1, + ACTIONS(652), 1, anon_sym_COLON_COLON, - ACTIONS(1996), 1, + ACTIONS(2004), 1, anon_sym_LBRACK, - ACTIONS(2014), 1, + ACTIONS(2022), 1, anon_sym_LT, - ACTIONS(672), 2, + ACTIONS(680), 2, sym_concatenating_space, sym__if_else_separator, - ACTIONS(670), 29, + ACTIONS(678), 29, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -81707,13 +81713,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_POUND, [69134] = 4, - ACTIONS(644), 1, + ACTIONS(652), 1, anon_sym_COLON_COLON, - ACTIONS(676), 1, + ACTIONS(684), 1, sym__if_else_separator, - ACTIONS(2004), 1, + ACTIONS(2012), 1, anon_sym_LBRACK, - ACTIONS(674), 31, + ACTIONS(682), 31, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -81746,12 +81752,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_POUND, [69177] = 3, - ACTIONS(1996), 1, + ACTIONS(2004), 1, anon_sym_LBRACK, - ACTIONS(672), 2, + ACTIONS(680), 2, sym_concatenating_space, sym__if_else_separator, - ACTIONS(670), 31, + ACTIONS(678), 31, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -81784,27 +81790,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_POUND, [69218] = 9, - ACTIONS(708), 1, + ACTIONS(716), 1, anon_sym_EQ, - ACTIONS(888), 1, + ACTIONS(896), 1, anon_sym_LBRACK, - ACTIONS(1367), 1, + ACTIONS(1375), 1, anon_sym_LPAREN2, - ACTIONS(1513), 1, + ACTIONS(1521), 1, sym_concatenating_space, - ACTIONS(1982), 1, + ACTIONS(1990), 1, anon_sym_in, - ACTIONS(890), 2, + ACTIONS(898), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(967), 6, + ACTIONS(975), 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(636), 9, + ACTIONS(644), 9, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -81814,7 +81820,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(650), 12, + ACTIONS(658), 12, anon_sym_SEMI, anon_sym_PIPE_AMP, anon_sym_QMARK, @@ -81828,27 +81834,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, [69271] = 9, - ACTIONS(708), 1, + ACTIONS(716), 1, anon_sym_EQ, - ACTIONS(888), 1, + ACTIONS(896), 1, anon_sym_LBRACK, - ACTIONS(1367), 1, + ACTIONS(1375), 1, anon_sym_LPAREN2, - ACTIONS(1513), 1, + ACTIONS(1521), 1, sym_concatenating_space, - ACTIONS(1974), 1, + ACTIONS(1982), 1, anon_sym_in, - ACTIONS(890), 2, + ACTIONS(898), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(967), 6, + ACTIONS(975), 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(636), 9, + ACTIONS(644), 9, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -81858,7 +81864,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(650), 12, + ACTIONS(658), 12, anon_sym_SEMI, anon_sym_PIPE_AMP, anon_sym_QMARK, @@ -81872,27 +81878,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, [69324] = 9, - ACTIONS(708), 1, + ACTIONS(716), 1, anon_sym_EQ, - ACTIONS(888), 1, + ACTIONS(896), 1, anon_sym_LBRACK, - ACTIONS(1367), 1, + ACTIONS(1375), 1, anon_sym_LPAREN2, - ACTIONS(1513), 1, + ACTIONS(1521), 1, sym_concatenating_space, - ACTIONS(1992), 1, + ACTIONS(2000), 1, anon_sym_in, - ACTIONS(890), 2, + ACTIONS(898), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(967), 6, + ACTIONS(975), 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(636), 9, + ACTIONS(644), 9, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -81902,7 +81908,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(650), 12, + ACTIONS(658), 12, anon_sym_SEMI, anon_sym_PIPE_AMP, anon_sym_QMARK, @@ -81916,7 +81922,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, [69377] = 2, - ACTIONS(2018), 13, + ACTIONS(2026), 13, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_LBRACE, @@ -81930,7 +81936,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - ACTIONS(2016), 21, + ACTIONS(2024), 21, anon_sym_if, anon_sym_while, anon_sym_do, @@ -81953,13 +81959,13 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, aux_sym_number_token1, [69416] = 4, - ACTIONS(644), 1, + ACTIONS(652), 1, anon_sym_COLON_COLON, - ACTIONS(676), 1, + ACTIONS(684), 1, sym_concatenating_space, - ACTIONS(2010), 1, + ACTIONS(2018), 1, anon_sym_LBRACK, - ACTIONS(674), 31, + ACTIONS(682), 31, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -81992,27 +81998,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_POUND, [69459] = 9, - ACTIONS(708), 1, + ACTIONS(716), 1, anon_sym_EQ, - ACTIONS(888), 1, + ACTIONS(896), 1, anon_sym_LBRACK, - ACTIONS(1367), 1, + ACTIONS(1375), 1, anon_sym_LPAREN2, - ACTIONS(1513), 1, + ACTIONS(1521), 1, sym_concatenating_space, - ACTIONS(1980), 1, + ACTIONS(1988), 1, anon_sym_in, - ACTIONS(890), 2, + ACTIONS(898), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(967), 6, + ACTIONS(975), 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(636), 9, + ACTIONS(644), 9, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -82022,7 +82028,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(650), 12, + ACTIONS(658), 12, anon_sym_SEMI, anon_sym_PIPE_AMP, anon_sym_QMARK, @@ -82036,11 +82042,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, [69512] = 3, - ACTIONS(672), 1, + ACTIONS(680), 1, sym__if_else_separator, - ACTIONS(2004), 1, + ACTIONS(2012), 1, anon_sym_LBRACK, - ACTIONS(670), 31, + ACTIONS(678), 31, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -82073,11 +82079,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_POUND, [69552] = 3, - ACTIONS(676), 1, + ACTIONS(684), 1, sym__if_else_separator, - ACTIONS(2004), 1, + ACTIONS(2012), 1, anon_sym_LBRACK, - ACTIONS(674), 31, + ACTIONS(682), 31, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -82110,11 +82116,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_POUND, [69592] = 3, - ACTIONS(676), 1, + ACTIONS(684), 1, sym_concatenating_space, - ACTIONS(2010), 1, + ACTIONS(2018), 1, anon_sym_LBRACK, - ACTIONS(674), 31, + ACTIONS(682), 31, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -82147,12 +82153,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_POUND, [69632] = 3, - ACTIONS(2020), 1, + ACTIONS(2028), 1, sym_regex_flags, - ACTIONS(820), 2, + ACTIONS(828), 2, sym_concatenating_space, sym__if_else_separator, - ACTIONS(816), 30, + ACTIONS(824), 30, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -82184,10 +82190,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_POUND, [69672] = 2, - ACTIONS(766), 2, + ACTIONS(774), 2, sym_concatenating_space, sym__if_else_separator, - ACTIONS(764), 31, + ACTIONS(772), 31, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -82220,15 +82226,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_POUND, [69710] = 5, - ACTIONS(644), 1, + ACTIONS(652), 1, anon_sym_COLON_COLON, - ACTIONS(672), 1, + ACTIONS(680), 1, sym__if_else_separator, - ACTIONS(2004), 1, + ACTIONS(2012), 1, anon_sym_LBRACK, - ACTIONS(2022), 1, + ACTIONS(2030), 1, anon_sym_LT, - ACTIONS(670), 29, + ACTIONS(678), 29, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -82259,11 +82265,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_POUND, [69754] = 3, - ACTIONS(672), 1, + ACTIONS(680), 1, sym_concatenating_space, - ACTIONS(2010), 1, + ACTIONS(2018), 1, anon_sym_LBRACK, - ACTIONS(670), 31, + ACTIONS(678), 31, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -82296,10 +82302,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_POUND, [69794] = 2, - ACTIONS(798), 2, + ACTIONS(806), 2, sym_concatenating_space, sym__if_else_separator, - ACTIONS(796), 31, + ACTIONS(804), 31, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -82332,9 +82338,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_POUND, [69832] = 7, - ACTIONS(2024), 1, + ACTIONS(2032), 1, sym_identifier, - ACTIONS(2026), 1, + ACTIONS(2034), 1, anon_sym_LT, STATE(1269), 1, sym_array_ref, @@ -82342,10 +82348,10 @@ static const uint16_t ts_small_parse_table[] = { sym_ns_qualified_name, STATE(1963), 1, sym_namespace, - ACTIONS(700), 2, + ACTIONS(708), 2, sym_concatenating_space, sym__if_else_separator, - ACTIONS(696), 26, + ACTIONS(704), 26, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -82373,10 +82379,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, [69880] = 2, - ACTIONS(786), 2, + ACTIONS(794), 2, sym_concatenating_space, sym__if_else_separator, - ACTIONS(784), 31, + ACTIONS(792), 31, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -82409,10 +82415,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_POUND, [69918] = 3, - ACTIONS(646), 2, + ACTIONS(654), 2, sym_concatenating_space, sym__if_else_separator, - ACTIONS(634), 10, + ACTIONS(642), 10, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -82423,7 +82429,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_GT_GT, anon_sym_POUND, - ACTIONS(636), 21, + ACTIONS(644), 21, anon_sym_in, anon_sym_LT, anon_sym_GT, @@ -82446,10 +82452,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, [69958] = 2, - ACTIONS(778), 2, + ACTIONS(786), 2, sym_concatenating_space, sym__if_else_separator, - ACTIONS(776), 31, + ACTIONS(784), 31, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -82482,15 +82488,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_POUND, [69996] = 5, - ACTIONS(644), 1, + ACTIONS(652), 1, anon_sym_COLON_COLON, - ACTIONS(672), 1, + ACTIONS(680), 1, sym_concatenating_space, - ACTIONS(2010), 1, + ACTIONS(2018), 1, anon_sym_LBRACK, - ACTIONS(2028), 1, + ACTIONS(2036), 1, anon_sym_LT, - ACTIONS(670), 29, + ACTIONS(678), 29, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -82521,10 +82527,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_POUND, [70040] = 2, - ACTIONS(738), 2, + ACTIONS(746), 2, sym_concatenating_space, sym__if_else_separator, - ACTIONS(736), 31, + ACTIONS(744), 31, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -82557,10 +82563,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_POUND, [70078] = 2, - ACTIONS(810), 2, + ACTIONS(818), 2, sym_concatenating_space, sym__if_else_separator, - ACTIONS(808), 31, + ACTIONS(816), 31, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -82593,14 +82599,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_POUND, [70116] = 4, - ACTIONS(1996), 1, + ACTIONS(2004), 1, anon_sym_LBRACK, - ACTIONS(2014), 1, + ACTIONS(2022), 1, anon_sym_LT, - ACTIONS(672), 2, + ACTIONS(680), 2, sym_concatenating_space, sym__if_else_separator, - ACTIONS(670), 29, + ACTIONS(678), 29, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -82631,10 +82637,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_POUND, [70158] = 2, - ACTIONS(742), 2, + ACTIONS(750), 2, sym_concatenating_space, sym__if_else_separator, - ACTIONS(740), 31, + ACTIONS(748), 31, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -82667,10 +82673,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_POUND, [70196] = 2, - ACTIONS(774), 2, + ACTIONS(782), 2, sym_concatenating_space, sym__if_else_separator, - ACTIONS(772), 31, + ACTIONS(780), 31, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -82703,10 +82709,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_POUND, [70234] = 2, - ACTIONS(806), 2, + ACTIONS(814), 2, sym_concatenating_space, sym__if_else_separator, - ACTIONS(804), 31, + ACTIONS(812), 31, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -82739,10 +82745,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_POUND, [70272] = 2, - ACTIONS(758), 2, + ACTIONS(766), 2, sym_concatenating_space, sym__if_else_separator, - ACTIONS(756), 31, + ACTIONS(764), 31, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -82775,10 +82781,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_POUND, [70310] = 2, - ACTIONS(782), 2, + ACTIONS(790), 2, sym_concatenating_space, sym__if_else_separator, - ACTIONS(780), 31, + ACTIONS(788), 31, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -82811,9 +82817,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_POUND, [70348] = 2, - ACTIONS(714), 1, + ACTIONS(722), 1, sym_concatenating_space, - ACTIONS(712), 32, + ACTIONS(720), 32, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -82847,10 +82853,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_POUND, [70386] = 2, - ACTIONS(794), 2, + ACTIONS(802), 2, sym_concatenating_space, sym__if_else_separator, - ACTIONS(792), 31, + ACTIONS(800), 31, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -82883,11 +82889,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_POUND, [70424] = 3, - ACTIONS(644), 1, + ACTIONS(652), 1, anon_sym_COLON_COLON, - ACTIONS(2030), 1, + ACTIONS(2038), 1, anon_sym_LBRACK, - ACTIONS(670), 31, + ACTIONS(678), 31, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -82920,10 +82926,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_POUND, [70464] = 2, - ACTIONS(790), 2, + ACTIONS(798), 2, sym_concatenating_space, sym__if_else_separator, - ACTIONS(788), 31, + ACTIONS(796), 31, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -82956,11 +82962,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_POUND, [70502] = 3, - ACTIONS(644), 1, + ACTIONS(652), 1, anon_sym_COLON_COLON, - ACTIONS(2030), 1, + ACTIONS(2038), 1, anon_sym_LBRACK, - ACTIONS(674), 31, + ACTIONS(682), 31, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -82993,10 +82999,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_POUND, [70542] = 2, - ACTIONS(802), 2, + ACTIONS(810), 2, sym_concatenating_space, sym__if_else_separator, - ACTIONS(800), 31, + ACTIONS(808), 31, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -83029,10 +83035,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_POUND, [70580] = 2, - ACTIONS(770), 2, + ACTIONS(778), 2, sym_concatenating_space, sym__if_else_separator, - ACTIONS(768), 31, + ACTIONS(776), 31, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -83065,9 +83071,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_POUND, [70618] = 2, - ACTIONS(714), 1, + ACTIONS(722), 1, sym__if_else_separator, - ACTIONS(712), 32, + ACTIONS(720), 32, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -83101,10 +83107,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_POUND, [70656] = 2, - ACTIONS(734), 2, + ACTIONS(742), 2, sym_concatenating_space, sym__if_else_separator, - ACTIONS(732), 31, + ACTIONS(740), 31, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -83137,10 +83143,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_POUND, [70694] = 2, - ACTIONS(676), 2, + ACTIONS(684), 2, sym_concatenating_space, sym__if_else_separator, - ACTIONS(674), 31, + ACTIONS(682), 31, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -83173,9 +83179,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_POUND, [70732] = 2, - ACTIONS(680), 1, + ACTIONS(688), 1, sym_concatenating_space, - ACTIONS(678), 32, + ACTIONS(686), 32, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -83209,9 +83215,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_POUND, [70770] = 2, - ACTIONS(680), 1, + ACTIONS(688), 1, sym__if_else_separator, - ACTIONS(678), 32, + ACTIONS(686), 32, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -83245,9 +83251,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_POUND, [70808] = 2, - ACTIONS(782), 1, + ACTIONS(790), 1, sym__if_else_separator, - ACTIONS(780), 31, + ACTIONS(788), 31, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -83280,11 +83286,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_POUND, [70845] = 7, - ACTIONS(700), 1, + ACTIONS(708), 1, sym_concatenating_space, - ACTIONS(2032), 1, + ACTIONS(2040), 1, sym_identifier, - ACTIONS(2034), 1, + ACTIONS(2042), 1, anon_sym_LT, STATE(1282), 1, sym_array_ref, @@ -83292,7 +83298,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ns_qualified_name, STATE(1957), 1, sym_namespace, - ACTIONS(696), 26, + ACTIONS(704), 26, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -83320,11 +83326,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, [70892] = 3, - ACTIONS(820), 1, + ACTIONS(828), 1, sym__if_else_separator, - ACTIONS(2036), 1, + ACTIONS(2044), 1, sym_regex_flags, - ACTIONS(816), 30, + ACTIONS(824), 30, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -83356,11 +83362,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_POUND, [70931] = 3, - ACTIONS(820), 1, + ACTIONS(828), 1, sym_concatenating_space, - ACTIONS(2038), 1, + ACTIONS(2046), 1, sym_regex_flags, - ACTIONS(816), 30, + ACTIONS(824), 30, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -83392,13 +83398,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_POUND, [70970] = 4, - ACTIONS(672), 1, + ACTIONS(680), 1, sym__if_else_separator, - ACTIONS(2004), 1, + ACTIONS(2012), 1, anon_sym_LBRACK, - ACTIONS(2022), 1, + ACTIONS(2030), 1, anon_sym_LT, - ACTIONS(670), 29, + ACTIONS(678), 29, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -83429,11 +83435,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_POUND, [71011] = 3, - ACTIONS(650), 1, + ACTIONS(658), 1, sym__if_else_separator, - ACTIONS(1211), 1, + ACTIONS(1219), 1, sym_concatenating_space, - ACTIONS(636), 30, + ACTIONS(644), 30, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -83465,9 +83471,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_POUND, [71050] = 2, - ACTIONS(810), 1, + ACTIONS(818), 1, sym_concatenating_space, - ACTIONS(808), 31, + ACTIONS(816), 31, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -83500,13 +83506,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_POUND, [71087] = 4, - ACTIONS(672), 1, + ACTIONS(680), 1, sym_concatenating_space, - ACTIONS(2010), 1, + ACTIONS(2018), 1, anon_sym_LBRACK, - ACTIONS(2028), 1, + ACTIONS(2036), 1, anon_sym_LT, - ACTIONS(670), 29, + ACTIONS(678), 29, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -83537,20 +83543,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_POUND, [71128] = 5, - ACTIONS(856), 2, + ACTIONS(864), 2, sym_concatenating_space, sym__if_else_separator, - ACTIONS(2040), 2, + ACTIONS(2048), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2044), 2, + ACTIONS(2052), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2042), 3, + ACTIONS(2050), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(854), 23, + ACTIONS(862), 23, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -83575,9 +83581,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_POUND, [71171] = 3, - ACTIONS(646), 1, + ACTIONS(654), 1, sym_concatenating_space, - ACTIONS(634), 10, + ACTIONS(642), 10, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -83588,7 +83594,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_GT_GT, anon_sym_POUND, - ACTIONS(636), 21, + ACTIONS(644), 21, anon_sym_in, anon_sym_LT, anon_sym_GT, @@ -83611,9 +83617,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, [71210] = 2, - ACTIONS(778), 1, + ACTIONS(786), 1, sym_concatenating_space, - ACTIONS(776), 31, + ACTIONS(784), 31, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -83646,13 +83652,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_POUND, [71247] = 4, - ACTIONS(644), 1, + ACTIONS(652), 1, anon_sym_COLON_COLON, - ACTIONS(2030), 1, + ACTIONS(2038), 1, anon_sym_LBRACK, - ACTIONS(2046), 1, + ACTIONS(2054), 1, anon_sym_LT, - ACTIONS(670), 29, + ACTIONS(678), 29, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -83683,9 +83689,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_POUND, [71288] = 2, - ACTIONS(2030), 1, + ACTIONS(2038), 1, anon_sym_LBRACK, - ACTIONS(674), 31, + ACTIONS(682), 31, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -83718,9 +83724,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_POUND, [71325] = 2, - ACTIONS(2030), 1, + ACTIONS(2038), 1, anon_sym_LBRACK, - ACTIONS(670), 31, + ACTIONS(678), 31, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -83753,9 +83759,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_POUND, [71362] = 2, - ACTIONS(806), 1, + ACTIONS(814), 1, sym_concatenating_space, - ACTIONS(804), 31, + ACTIONS(812), 31, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -83788,9 +83794,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_POUND, [71399] = 2, - ACTIONS(798), 1, + ACTIONS(806), 1, sym_concatenating_space, - ACTIONS(796), 31, + ACTIONS(804), 31, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -83823,7 +83829,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_POUND, [71436] = 1, - ACTIONS(712), 32, + ACTIONS(720), 32, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -83857,9 +83863,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_POUND, [71471] = 2, - ACTIONS(794), 1, + ACTIONS(802), 1, sym__if_else_separator, - ACTIONS(792), 31, + ACTIONS(800), 31, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -83892,30 +83898,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_POUND, [71508] = 7, - ACTIONS(860), 2, + ACTIONS(868), 2, sym_concatenating_space, sym__if_else_separator, - ACTIONS(2040), 2, + ACTIONS(2048), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2044), 2, + ACTIONS(2052), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2050), 2, + ACTIONS(2058), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2042), 3, + ACTIONS(2050), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2048), 6, + ACTIONS(2056), 6, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(858), 15, + ACTIONS(866), 15, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -83932,20 +83938,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_POUND, [71555] = 5, - ACTIONS(766), 2, + ACTIONS(774), 2, sym_concatenating_space, sym__if_else_separator, - ACTIONS(2040), 2, + ACTIONS(2048), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2044), 2, + ACTIONS(2052), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2042), 3, + ACTIONS(2050), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(764), 23, + ACTIONS(772), 23, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -83970,13 +83976,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_POUND, [71598] = 3, - ACTIONS(766), 2, + ACTIONS(774), 2, sym_concatenating_space, sym__if_else_separator, - ACTIONS(2040), 2, + ACTIONS(2048), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(764), 28, + ACTIONS(772), 28, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -84006,17 +84012,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_POUND, [71637] = 4, - ACTIONS(766), 2, + ACTIONS(774), 2, sym_concatenating_space, sym__if_else_separator, - ACTIONS(2040), 2, + ACTIONS(2048), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2042), 3, + ACTIONS(2050), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(764), 25, + ACTIONS(772), 25, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -84043,7 +84049,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_POUND, [71678] = 1, - ACTIONS(678), 32, + ACTIONS(686), 32, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -84077,27 +84083,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_POUND, [71713] = 6, - ACTIONS(766), 2, + ACTIONS(774), 2, sym_concatenating_space, sym__if_else_separator, - ACTIONS(2040), 2, + ACTIONS(2048), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2044), 2, + ACTIONS(2052), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2042), 3, + ACTIONS(2050), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2048), 6, + ACTIONS(2056), 6, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(764), 17, + ACTIONS(772), 17, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -84116,32 +84122,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_POUND, [71758] = 8, - ACTIONS(2052), 1, + ACTIONS(2060), 1, anon_sym_in, - ACTIONS(766), 2, + ACTIONS(774), 2, sym_concatenating_space, sym__if_else_separator, - ACTIONS(2040), 2, + ACTIONS(2048), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2044), 2, + ACTIONS(2052), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2050), 2, + ACTIONS(2058), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2042), 3, + ACTIONS(2050), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2048), 6, + ACTIONS(2056), 6, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(764), 14, + ACTIONS(772), 14, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -84157,34 +84163,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_POUND, [71807] = 9, - ACTIONS(2052), 1, + ACTIONS(2060), 1, anon_sym_in, - ACTIONS(2054), 1, + ACTIONS(2062), 1, anon_sym_AMP_AMP, - ACTIONS(766), 2, + ACTIONS(774), 2, sym_concatenating_space, sym__if_else_separator, - ACTIONS(2040), 2, + ACTIONS(2048), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2044), 2, + ACTIONS(2052), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2050), 2, + ACTIONS(2058), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2042), 3, + ACTIONS(2050), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2048), 6, + ACTIONS(2056), 6, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(764), 13, + ACTIONS(772), 13, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -84199,9 +84205,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_POUND, [71858] = 2, - ACTIONS(810), 1, + ACTIONS(818), 1, sym__if_else_separator, - ACTIONS(808), 31, + ACTIONS(816), 31, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -84234,9 +84240,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_POUND, [71895] = 2, - ACTIONS(766), 1, + ACTIONS(774), 1, sym_concatenating_space, - ACTIONS(764), 31, + ACTIONS(772), 31, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -84269,30 +84275,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_POUND, [71932] = 7, - ACTIONS(834), 2, + ACTIONS(842), 2, sym_concatenating_space, sym__if_else_separator, - ACTIONS(2040), 2, + ACTIONS(2048), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2044), 2, + ACTIONS(2052), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2050), 2, + ACTIONS(2058), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2042), 3, + ACTIONS(2050), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2048), 6, + ACTIONS(2056), 6, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(830), 15, + ACTIONS(838), 15, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -84309,9 +84315,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_POUND, [71979] = 2, - ACTIONS(778), 1, + ACTIONS(786), 1, sym__if_else_separator, - ACTIONS(776), 31, + ACTIONS(784), 31, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -84344,38 +84350,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_POUND, [72016] = 11, - ACTIONS(2052), 1, + ACTIONS(2060), 1, anon_sym_in, - ACTIONS(2054), 1, + ACTIONS(2062), 1, anon_sym_AMP_AMP, - ACTIONS(2056), 1, + ACTIONS(2064), 1, anon_sym_QMARK, - ACTIONS(2058), 1, + ACTIONS(2066), 1, anon_sym_PIPE_PIPE, - ACTIONS(852), 2, + ACTIONS(860), 2, sym_concatenating_space, sym__if_else_separator, - ACTIONS(2040), 2, + ACTIONS(2048), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2044), 2, + ACTIONS(2052), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2050), 2, + ACTIONS(2058), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2042), 3, + ACTIONS(2050), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2048), 6, + ACTIONS(2056), 6, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(850), 11, + ACTIONS(858), 11, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -84388,9 +84394,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_AMP, anon_sym_POUND, [72071] = 2, - ACTIONS(738), 1, + ACTIONS(746), 1, sym_concatenating_space, - ACTIONS(736), 31, + ACTIONS(744), 31, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -84423,9 +84429,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_POUND, [72108] = 2, - ACTIONS(774), 1, + ACTIONS(782), 1, sym_concatenating_space, - ACTIONS(772), 31, + ACTIONS(780), 31, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -84458,9 +84464,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_POUND, [72145] = 2, - ACTIONS(734), 1, + ACTIONS(742), 1, sym__if_else_separator, - ACTIONS(732), 31, + ACTIONS(740), 31, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -84493,9 +84499,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_POUND, [72182] = 2, - ACTIONS(790), 1, + ACTIONS(798), 1, sym__if_else_separator, - ACTIONS(788), 31, + ACTIONS(796), 31, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -84528,9 +84534,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_POUND, [72219] = 2, - ACTIONS(786), 1, + ACTIONS(794), 1, sym__if_else_separator, - ACTIONS(784), 31, + ACTIONS(792), 31, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -84563,9 +84569,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_POUND, [72256] = 2, - ACTIONS(742), 1, + ACTIONS(750), 1, sym__if_else_separator, - ACTIONS(740), 31, + ACTIONS(748), 31, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -84598,9 +84604,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_POUND, [72293] = 2, - ACTIONS(786), 1, + ACTIONS(794), 1, sym_concatenating_space, - ACTIONS(784), 31, + ACTIONS(792), 31, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -84633,9 +84639,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_POUND, [72330] = 2, - ACTIONS(802), 1, + ACTIONS(810), 1, sym__if_else_separator, - ACTIONS(800), 31, + ACTIONS(808), 31, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -84668,9 +84674,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_POUND, [72367] = 2, - ACTIONS(770), 1, + ACTIONS(778), 1, sym__if_else_separator, - ACTIONS(768), 31, + ACTIONS(776), 31, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -84703,9 +84709,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_POUND, [72404] = 2, - ACTIONS(676), 1, + ACTIONS(684), 1, sym__if_else_separator, - ACTIONS(674), 31, + ACTIONS(682), 31, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -84738,9 +84744,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_POUND, [72441] = 2, - ACTIONS(758), 1, + ACTIONS(766), 1, sym_concatenating_space, - ACTIONS(756), 31, + ACTIONS(764), 31, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -84773,41 +84779,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_POUND, [72478] = 12, - ACTIONS(2052), 1, + ACTIONS(2060), 1, anon_sym_in, - ACTIONS(2054), 1, + ACTIONS(2062), 1, anon_sym_AMP_AMP, - ACTIONS(2056), 1, + ACTIONS(2064), 1, anon_sym_QMARK, - ACTIONS(2058), 1, + ACTIONS(2066), 1, anon_sym_PIPE_PIPE, - ACTIONS(848), 2, + ACTIONS(856), 2, sym_concatenating_space, sym__if_else_separator, - ACTIONS(2040), 2, + ACTIONS(2048), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2044), 2, + ACTIONS(2052), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2050), 2, + ACTIONS(2058), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2060), 2, + ACTIONS(2068), 2, anon_sym_PIPE, anon_sym_PIPE_AMP, - ACTIONS(2042), 3, + ACTIONS(2050), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2048), 6, + ACTIONS(2056), 6, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(836), 9, + ACTIONS(844), 9, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -84818,9 +84824,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_POUND, [72535] = 2, - ACTIONS(742), 1, + ACTIONS(750), 1, sym_concatenating_space, - ACTIONS(740), 31, + ACTIONS(748), 31, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -84853,9 +84859,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_POUND, [72572] = 2, - ACTIONS(782), 1, + ACTIONS(790), 1, sym_concatenating_space, - ACTIONS(780), 31, + ACTIONS(788), 31, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -84888,11 +84894,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_POUND, [72609] = 7, - ACTIONS(700), 1, + ACTIONS(708), 1, sym__if_else_separator, - ACTIONS(2062), 1, + ACTIONS(2070), 1, sym_identifier, - ACTIONS(2064), 1, + ACTIONS(2072), 1, anon_sym_LT, STATE(1276), 1, sym_array_ref, @@ -84900,7 +84906,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ns_qualified_name, STATE(1962), 1, sym_namespace, - ACTIONS(696), 26, + ACTIONS(704), 26, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -84928,9 +84934,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, [72656] = 2, - ACTIONS(794), 1, + ACTIONS(802), 1, sym_concatenating_space, - ACTIONS(792), 31, + ACTIONS(800), 31, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -84963,9 +84969,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_POUND, [72693] = 2, - ACTIONS(802), 1, + ACTIONS(810), 1, sym_concatenating_space, - ACTIONS(800), 31, + ACTIONS(808), 31, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -84998,9 +85004,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_POUND, [72730] = 2, - ACTIONS(734), 1, + ACTIONS(742), 1, sym_concatenating_space, - ACTIONS(732), 31, + ACTIONS(740), 31, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -85033,9 +85039,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_POUND, [72767] = 2, - ACTIONS(770), 1, + ACTIONS(778), 1, sym_concatenating_space, - ACTIONS(768), 31, + ACTIONS(776), 31, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -85068,9 +85074,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_POUND, [72804] = 2, - ACTIONS(790), 1, + ACTIONS(798), 1, sym_concatenating_space, - ACTIONS(788), 31, + ACTIONS(796), 31, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -85103,9 +85109,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_POUND, [72841] = 2, - ACTIONS(676), 1, + ACTIONS(684), 1, sym_concatenating_space, - ACTIONS(674), 31, + ACTIONS(682), 31, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -85138,26 +85144,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_POUND, [72878] = 6, - ACTIONS(766), 1, + ACTIONS(774), 1, sym_concatenating_space, - ACTIONS(2068), 2, + ACTIONS(2076), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2072), 2, + ACTIONS(2080), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2070), 3, + ACTIONS(2078), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2066), 6, + ACTIONS(2074), 6, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(764), 17, + ACTIONS(772), 17, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -85176,33 +85182,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_POUND, [72922] = 9, - ACTIONS(766), 1, + ACTIONS(774), 1, sym_concatenating_space, - ACTIONS(2074), 1, + ACTIONS(2082), 1, anon_sym_in, - ACTIONS(2078), 1, + ACTIONS(2086), 1, anon_sym_AMP_AMP, - ACTIONS(2068), 2, + ACTIONS(2076), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2072), 2, + ACTIONS(2080), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2076), 2, + ACTIONS(2084), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2070), 3, + ACTIONS(2078), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2066), 6, + ACTIONS(2074), 6, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(764), 13, + ACTIONS(772), 13, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -85217,37 +85223,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_POUND, [72972] = 11, - ACTIONS(852), 1, + ACTIONS(860), 1, sym_concatenating_space, - ACTIONS(2074), 1, + ACTIONS(2082), 1, anon_sym_in, - ACTIONS(2078), 1, + ACTIONS(2086), 1, anon_sym_AMP_AMP, - ACTIONS(2080), 1, + ACTIONS(2088), 1, anon_sym_QMARK, - ACTIONS(2082), 1, + ACTIONS(2090), 1, anon_sym_PIPE_PIPE, - ACTIONS(2068), 2, + ACTIONS(2076), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2072), 2, + ACTIONS(2080), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2076), 2, + ACTIONS(2084), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2070), 3, + ACTIONS(2078), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2066), 6, + ACTIONS(2074), 6, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(850), 11, + ACTIONS(858), 11, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -85260,7 +85266,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_AMP, anon_sym_POUND, [73026] = 1, - ACTIONS(768), 31, + ACTIONS(776), 31, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -85293,7 +85299,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_POUND, [73060] = 1, - ACTIONS(808), 31, + ACTIONS(816), 31, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -85326,20 +85332,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_POUND, [73094] = 5, - ACTIONS(2084), 1, + ACTIONS(2092), 1, sym_identifier, STATE(1953), 1, sym_namespace, STATE(1449), 2, sym_array_ref, sym_ns_qualified_name, - ACTIONS(696), 5, + ACTIONS(704), 5, anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_STAR, - ACTIONS(700), 22, + ACTIONS(708), 22, sym_concatenating_space, anon_sym_COMMA, anon_sym_SEMI, @@ -85363,9 +85369,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_RBRACK, [73136] = 2, - ACTIONS(2086), 1, + ACTIONS(2094), 1, sym_regex_flags, - ACTIONS(816), 30, + ACTIONS(824), 30, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -85397,7 +85403,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_POUND, [73172] = 1, - ACTIONS(776), 31, + ACTIONS(784), 31, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -85430,7 +85436,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_POUND, [73206] = 1, - ACTIONS(732), 31, + ACTIONS(740), 31, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -85463,19 +85469,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_POUND, [73240] = 5, - ACTIONS(856), 1, + ACTIONS(864), 1, sym_concatenating_space, - ACTIONS(2068), 2, + ACTIONS(2076), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2072), 2, + ACTIONS(2080), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2070), 3, + ACTIONS(2078), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(854), 23, + ACTIONS(862), 23, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -85500,7 +85506,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_POUND, [73282] = 1, - ACTIONS(788), 31, + ACTIONS(796), 31, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -85533,9 +85539,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_POUND, [73316] = 6, - ACTIONS(2088), 1, + ACTIONS(2096), 1, sym_identifier, - ACTIONS(2090), 1, + ACTIONS(2098), 1, anon_sym_LT, STATE(1322), 1, sym_array_ref, @@ -85543,7 +85549,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ns_qualified_name, STATE(1954), 1, sym_namespace, - ACTIONS(696), 26, + ACTIONS(704), 26, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -85571,7 +85577,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, [73360] = 1, - ACTIONS(784), 31, + ACTIONS(792), 31, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -85604,11 +85610,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_POUND, [73394] = 3, - ACTIONS(2030), 1, + ACTIONS(2038), 1, anon_sym_LBRACK, - ACTIONS(2046), 1, + ACTIONS(2054), 1, anon_sym_LT, - ACTIONS(670), 29, + ACTIONS(678), 29, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -85639,7 +85645,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_POUND, [73432] = 2, - ACTIONS(1833), 12, + ACTIONS(1841), 12, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -85652,7 +85658,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - ACTIONS(1831), 19, + ACTIONS(1839), 19, anon_sym_if, anon_sym_while, anon_sym_do, @@ -85673,40 +85679,40 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, aux_sym_number_token1, [73468] = 12, - ACTIONS(848), 1, + ACTIONS(856), 1, sym__if_else_separator, - ACTIONS(2052), 1, + ACTIONS(2060), 1, anon_sym_in, - ACTIONS(2054), 1, + ACTIONS(2062), 1, anon_sym_AMP_AMP, - ACTIONS(2056), 1, + ACTIONS(2064), 1, anon_sym_QMARK, - ACTIONS(2058), 1, + ACTIONS(2066), 1, anon_sym_PIPE_PIPE, - ACTIONS(2040), 2, + ACTIONS(2048), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2044), 2, + ACTIONS(2052), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2050), 2, + ACTIONS(2058), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2092), 2, + ACTIONS(2100), 2, anon_sym_PIPE, anon_sym_PIPE_AMP, - ACTIONS(2042), 3, + ACTIONS(2050), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2048), 6, + ACTIONS(2056), 6, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(836), 9, + ACTIONS(844), 9, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -85717,9 +85723,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_POUND, [73524] = 2, - ACTIONS(1219), 1, + ACTIONS(1227), 1, sym_concatenating_space, - ACTIONS(636), 30, + ACTIONS(644), 30, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -85751,9 +85757,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_POUND, [73560] = 7, - ACTIONS(2094), 1, + ACTIONS(2102), 1, sym_identifier, - ACTIONS(2096), 1, + ACTIONS(2104), 1, anon_sym_LT, STATE(1430), 1, sym_ns_qualified_name, @@ -85761,12 +85767,12 @@ static const uint16_t ts_small_parse_table[] = { sym_array_ref, STATE(1953), 1, sym_namespace, - ACTIONS(696), 4, + ACTIONS(704), 4, anon_sym_in, anon_sym_GT, anon_sym_PIPE, anon_sym_STAR, - ACTIONS(700), 22, + ACTIONS(708), 22, sym_concatenating_space, anon_sym_COMMA, anon_sym_SEMI, @@ -85790,7 +85796,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_RBRACK, [73606] = 2, - ACTIONS(1841), 12, + ACTIONS(1849), 12, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -85803,7 +85809,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DQUOTE, anon_sym_POUND, - ACTIONS(1839), 19, + ACTIONS(1847), 19, anon_sym_if, anon_sym_while, anon_sym_do, @@ -85824,7 +85830,7 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, aux_sym_number_token1, [73642] = 1, - ACTIONS(740), 31, + ACTIONS(748), 31, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -85857,7 +85863,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_POUND, [73676] = 1, - ACTIONS(780), 31, + ACTIONS(788), 31, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -85890,40 +85896,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_POUND, [73710] = 12, - ACTIONS(848), 1, + ACTIONS(856), 1, sym_concatenating_space, - ACTIONS(2074), 1, + ACTIONS(2082), 1, anon_sym_in, - ACTIONS(2078), 1, + ACTIONS(2086), 1, anon_sym_AMP_AMP, - ACTIONS(2080), 1, + ACTIONS(2088), 1, anon_sym_QMARK, - ACTIONS(2082), 1, + ACTIONS(2090), 1, anon_sym_PIPE_PIPE, - ACTIONS(2068), 2, + ACTIONS(2076), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2072), 2, + ACTIONS(2080), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2076), 2, + ACTIONS(2084), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2098), 2, + ACTIONS(2106), 2, anon_sym_PIPE, anon_sym_PIPE_AMP, - ACTIONS(2070), 3, + ACTIONS(2078), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2066), 6, + ACTIONS(2074), 6, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(836), 9, + ACTIONS(844), 9, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -85934,7 +85940,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_POUND, [73766] = 1, - ACTIONS(792), 31, + ACTIONS(800), 31, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -85967,7 +85973,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_POUND, [73800] = 1, - ACTIONS(800), 31, + ACTIONS(808), 31, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -86000,16 +86006,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_POUND, [73834] = 5, - ACTIONS(644), 1, + ACTIONS(652), 1, anon_sym_COLON_COLON, - ACTIONS(1996), 1, + ACTIONS(2004), 1, anon_sym_LBRACK, - ACTIONS(2100), 1, + ACTIONS(2108), 1, anon_sym_LT, - ACTIONS(672), 2, + ACTIONS(680), 2, sym_concatenating_space, sym__if_else_separator, - ACTIONS(670), 26, + ACTIONS(678), 26, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -86037,29 +86043,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, [73876] = 7, - ACTIONS(860), 1, + ACTIONS(868), 1, sym_concatenating_space, - ACTIONS(2068), 2, + ACTIONS(2076), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2072), 2, + ACTIONS(2080), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2076), 2, + ACTIONS(2084), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2070), 3, + ACTIONS(2078), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2066), 6, + ACTIONS(2074), 6, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(858), 15, + ACTIONS(866), 15, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -86076,38 +86082,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_POUND, [73922] = 12, - ACTIONS(1069), 1, + ACTIONS(1077), 1, anon_sym_COMMA, - ACTIONS(1071), 1, + ACTIONS(1079), 1, sym__if_else_separator, - ACTIONS(2052), 1, + ACTIONS(2060), 1, anon_sym_in, - ACTIONS(2054), 1, + ACTIONS(2062), 1, anon_sym_AMP_AMP, - ACTIONS(2056), 1, + ACTIONS(2064), 1, anon_sym_QMARK, - ACTIONS(2058), 1, + ACTIONS(2066), 1, anon_sym_PIPE_PIPE, - ACTIONS(2040), 2, + ACTIONS(2048), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2044), 2, + ACTIONS(2052), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2050), 2, + ACTIONS(2058), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2042), 3, + ACTIONS(2050), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2048), 5, + ACTIONS(2056), 5, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1067), 11, + ACTIONS(1075), 11, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, @@ -86120,7 +86126,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_AMP, anon_sym_POUND, [73978] = 1, - ACTIONS(674), 31, + ACTIONS(682), 31, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -86153,39 +86159,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_POUND, [74012] = 12, - ACTIONS(1069), 1, + ACTIONS(1077), 1, anon_sym_COMMA, - ACTIONS(1075), 1, + ACTIONS(1083), 1, sym__if_else_separator, - ACTIONS(2052), 1, + ACTIONS(2060), 1, anon_sym_in, - ACTIONS(2054), 1, + ACTIONS(2062), 1, anon_sym_AMP_AMP, - ACTIONS(2056), 1, + ACTIONS(2064), 1, anon_sym_QMARK, - ACTIONS(2058), 1, + ACTIONS(2066), 1, anon_sym_PIPE_PIPE, - ACTIONS(2040), 2, + ACTIONS(2048), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2044), 2, + ACTIONS(2052), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2050), 2, + ACTIONS(2058), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2042), 3, + ACTIONS(2050), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2048), 6, + ACTIONS(2056), 6, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1073), 10, + ACTIONS(1081), 10, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, @@ -86197,19 +86203,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_AMP, anon_sym_POUND, [74068] = 5, - ACTIONS(766), 1, + ACTIONS(774), 1, sym_concatenating_space, - ACTIONS(2068), 2, + ACTIONS(2076), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2072), 2, + ACTIONS(2080), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2070), 3, + ACTIONS(2078), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(764), 23, + ACTIONS(772), 23, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -86234,12 +86240,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_POUND, [74110] = 3, - ACTIONS(766), 1, + ACTIONS(774), 1, sym_concatenating_space, - ACTIONS(2068), 2, + ACTIONS(2076), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(764), 28, + ACTIONS(772), 28, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -86269,16 +86275,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_POUND, [74148] = 4, - ACTIONS(766), 1, + ACTIONS(774), 1, sym_concatenating_space, - ACTIONS(2068), 2, + ACTIONS(2076), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2070), 3, + ACTIONS(2078), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(764), 25, + ACTIONS(772), 25, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -86305,29 +86311,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_POUND, [74188] = 7, - ACTIONS(834), 1, + ACTIONS(842), 1, sym_concatenating_space, - ACTIONS(2068), 2, + ACTIONS(2076), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2072), 2, + ACTIONS(2080), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2076), 2, + ACTIONS(2084), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2070), 3, + ACTIONS(2078), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2066), 6, + ACTIONS(2074), 6, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(830), 15, + ACTIONS(838), 15, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -86344,31 +86350,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_POUND, [74234] = 8, - ACTIONS(766), 1, + ACTIONS(774), 1, sym_concatenating_space, - ACTIONS(2074), 1, + ACTIONS(2082), 1, anon_sym_in, - ACTIONS(2068), 2, + ACTIONS(2076), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2072), 2, + ACTIONS(2080), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2076), 2, + ACTIONS(2084), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2070), 3, + ACTIONS(2078), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2066), 6, + ACTIONS(2074), 6, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(764), 14, + ACTIONS(772), 14, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -86384,7 +86390,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_POUND, [74282] = 2, - ACTIONS(2016), 15, + ACTIONS(2024), 15, anon_sym_BEGIN, anon_sym_END, anon_sym_BEGINFILE, @@ -86400,7 +86406,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, anon_sym_function, anon_sym_func, - ACTIONS(2018), 15, + ACTIONS(2026), 15, ts_builtin_sym_end, anon_sym_ATinclude, anon_sym_ATload, @@ -86417,14 +86423,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [74317] = 4, - ACTIONS(1996), 1, + ACTIONS(2004), 1, anon_sym_LBRACK, - ACTIONS(2100), 1, + ACTIONS(2108), 1, anon_sym_LT, - ACTIONS(672), 2, + ACTIONS(680), 2, sym_concatenating_space, sym__if_else_separator, - ACTIONS(670), 26, + ACTIONS(678), 26, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -86452,36 +86458,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, [74356] = 11, - ACTIONS(1069), 1, + ACTIONS(1077), 1, anon_sym_COMMA, - ACTIONS(2074), 1, + ACTIONS(2082), 1, anon_sym_in, - ACTIONS(2078), 1, + ACTIONS(2086), 1, anon_sym_AMP_AMP, - ACTIONS(2080), 1, + ACTIONS(2088), 1, anon_sym_QMARK, - ACTIONS(2082), 1, + ACTIONS(2090), 1, anon_sym_PIPE_PIPE, - ACTIONS(2068), 2, + ACTIONS(2076), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2072), 2, + ACTIONS(2080), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2076), 2, + ACTIONS(2084), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2070), 3, + ACTIONS(2078), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2066), 5, + ACTIONS(2074), 5, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1067), 11, + ACTIONS(1075), 11, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, @@ -86494,12 +86500,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_AMP, anon_sym_POUND, [74409] = 3, - ACTIONS(2020), 1, + ACTIONS(2028), 1, sym_regex_flags, - ACTIONS(820), 2, + ACTIONS(828), 2, sym_concatenating_space, sym__if_else_separator, - ACTIONS(816), 27, + ACTIONS(824), 27, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -86528,37 +86534,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, [74446] = 11, - ACTIONS(1069), 1, + ACTIONS(1077), 1, anon_sym_COMMA, - ACTIONS(2074), 1, + ACTIONS(2082), 1, anon_sym_in, - ACTIONS(2078), 1, + ACTIONS(2086), 1, anon_sym_AMP_AMP, - ACTIONS(2080), 1, + ACTIONS(2088), 1, anon_sym_QMARK, - ACTIONS(2082), 1, + ACTIONS(2090), 1, anon_sym_PIPE_PIPE, - ACTIONS(2068), 2, + ACTIONS(2076), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2072), 2, + ACTIONS(2080), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2076), 2, + ACTIONS(2084), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2070), 3, + ACTIONS(2078), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2066), 6, + ACTIONS(2074), 6, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1073), 10, + ACTIONS(1081), 10, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, @@ -86570,9 +86576,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_AMP, anon_sym_POUND, [74499] = 7, - ACTIONS(2102), 1, + ACTIONS(2110), 1, sym_identifier, - ACTIONS(2104), 1, + ACTIONS(2112), 1, anon_sym_LT, STATE(1492), 1, sym_ns_qualified_name, @@ -86580,12 +86586,12 @@ static const uint16_t ts_small_parse_table[] = { sym_array_ref, STATE(1942), 1, sym_namespace, - ACTIONS(696), 4, + ACTIONS(704), 4, anon_sym_in, anon_sym_GT, anon_sym_PIPE, anon_sym_STAR, - ACTIONS(700), 21, + ACTIONS(708), 21, anon_sym_COMMA, anon_sym_SEMI, anon_sym_RPAREN, @@ -86608,38 +86614,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_RBRACK, [74544] = 11, - ACTIONS(2074), 1, + ACTIONS(2082), 1, anon_sym_in, - ACTIONS(2078), 1, + ACTIONS(2086), 1, anon_sym_AMP_AMP, - ACTIONS(2080), 1, + ACTIONS(2088), 1, anon_sym_QMARK, - ACTIONS(2082), 1, + ACTIONS(2090), 1, anon_sym_PIPE_PIPE, - ACTIONS(2068), 2, + ACTIONS(2076), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2072), 2, + ACTIONS(2080), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2076), 2, + ACTIONS(2084), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2106), 2, + ACTIONS(2114), 2, anon_sym_PIPE, anon_sym_PIPE_AMP, - ACTIONS(2070), 3, + ACTIONS(2078), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2066), 6, + ACTIONS(2074), 6, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(836), 9, + ACTIONS(844), 9, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -86650,20 +86656,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_POUND, [74597] = 5, - ACTIONS(2108), 1, + ACTIONS(2116), 1, sym_identifier, STATE(1942), 1, sym_namespace, STATE(1493), 2, sym_array_ref, sym_ns_qualified_name, - ACTIONS(696), 5, + ACTIONS(704), 5, anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_STAR, - ACTIONS(700), 21, + ACTIONS(708), 21, anon_sym_COMMA, anon_sym_SEMI, anon_sym_RPAREN, @@ -86686,15 +86692,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_RBRACK, [74638] = 5, - ACTIONS(644), 1, + ACTIONS(652), 1, anon_sym_COLON_COLON, - ACTIONS(672), 1, + ACTIONS(680), 1, sym__if_else_separator, - ACTIONS(2004), 1, + ACTIONS(2012), 1, anon_sym_LBRACK, - ACTIONS(2110), 1, + ACTIONS(2118), 1, anon_sym_LT, - ACTIONS(670), 26, + ACTIONS(678), 26, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -86722,15 +86728,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, [74679] = 5, - ACTIONS(644), 1, + ACTIONS(652), 1, anon_sym_COLON_COLON, - ACTIONS(672), 1, + ACTIONS(680), 1, sym_concatenating_space, - ACTIONS(2010), 1, + ACTIONS(2018), 1, anon_sym_LBRACK, - ACTIONS(2112), 1, + ACTIONS(2120), 1, anon_sym_LT, - ACTIONS(670), 26, + ACTIONS(678), 26, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -86758,27 +86764,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, [74720] = 6, - ACTIONS(766), 2, + ACTIONS(774), 2, sym_concatenating_space, sym__if_else_separator, - ACTIONS(2116), 2, + ACTIONS(2124), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2120), 2, + ACTIONS(2128), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2118), 3, + ACTIONS(2126), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2114), 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(764), 14, + ACTIONS(772), 14, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -86794,17 +86800,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, [74762] = 4, - ACTIONS(644), 1, + ACTIONS(652), 1, anon_sym_COLON_COLON, - ACTIONS(2122), 1, + ACTIONS(2130), 1, anon_sym_LBRACK, - ACTIONS(674), 5, + ACTIONS(682), 5, anon_sym_COLON, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_STAR, - ACTIONS(676), 22, + ACTIONS(684), 22, sym_concatenating_space, anon_sym_COMMA, anon_sym_SEMI, @@ -86828,40 +86834,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_RBRACK, [74800] = 12, - ACTIONS(1125), 1, + ACTIONS(1133), 1, sym__if_else_separator, - ACTIONS(2052), 1, + ACTIONS(2060), 1, anon_sym_in, - ACTIONS(2054), 1, + ACTIONS(2062), 1, anon_sym_AMP_AMP, - ACTIONS(2056), 1, + ACTIONS(2064), 1, anon_sym_QMARK, - ACTIONS(2058), 1, + ACTIONS(2066), 1, anon_sym_PIPE_PIPE, - ACTIONS(2040), 2, + ACTIONS(2048), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2044), 2, + ACTIONS(2052), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2050), 2, + ACTIONS(2058), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2092), 2, + ACTIONS(2100), 2, anon_sym_PIPE, anon_sym_PIPE_AMP, - ACTIONS(2042), 3, + ACTIONS(2050), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2048), 6, + ACTIONS(2056), 6, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1123), 7, + ACTIONS(1131), 7, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, @@ -86870,40 +86876,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_POUND, [74854] = 12, - ACTIONS(1121), 1, + ACTIONS(1129), 1, sym__if_else_separator, - ACTIONS(2052), 1, + ACTIONS(2060), 1, anon_sym_in, - ACTIONS(2054), 1, + ACTIONS(2062), 1, anon_sym_AMP_AMP, - ACTIONS(2056), 1, + ACTIONS(2064), 1, anon_sym_QMARK, - ACTIONS(2058), 1, + ACTIONS(2066), 1, anon_sym_PIPE_PIPE, - ACTIONS(2040), 2, + ACTIONS(2048), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2044), 2, + ACTIONS(2052), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2050), 2, + ACTIONS(2058), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2092), 2, + ACTIONS(2100), 2, anon_sym_PIPE, anon_sym_PIPE_AMP, - ACTIONS(2042), 3, + ACTIONS(2050), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2048), 6, + ACTIONS(2056), 6, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1119), 7, + ACTIONS(1127), 7, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, @@ -86912,18 +86918,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_POUND, [74908] = 5, - ACTIONS(644), 1, + ACTIONS(652), 1, anon_sym_COLON_COLON, - ACTIONS(2122), 1, + ACTIONS(2130), 1, anon_sym_LBRACK, - ACTIONS(2124), 1, + ACTIONS(2132), 1, anon_sym_LT, - ACTIONS(670), 4, + ACTIONS(678), 4, anon_sym_COLON, anon_sym_GT, anon_sym_PIPE, anon_sym_STAR, - ACTIONS(672), 22, + ACTIONS(680), 22, sym_concatenating_space, anon_sym_COMMA, anon_sym_SEMI, @@ -86947,20 +86953,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_RBRACK, [74948] = 5, - ACTIONS(856), 2, + ACTIONS(864), 2, sym_concatenating_space, sym__if_else_separator, - ACTIONS(2116), 2, + ACTIONS(2124), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2120), 2, + ACTIONS(2128), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2118), 3, + ACTIONS(2126), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(854), 20, + ACTIONS(862), 20, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -86982,17 +86988,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, [74988] = 4, - ACTIONS(644), 1, + ACTIONS(652), 1, anon_sym_COLON_COLON, - ACTIONS(2122), 1, + ACTIONS(2130), 1, anon_sym_LBRACK, - ACTIONS(670), 5, + ACTIONS(678), 5, anon_sym_COLON, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_STAR, - ACTIONS(672), 22, + ACTIONS(680), 22, sym_concatenating_space, anon_sym_COMMA, anon_sym_SEMI, @@ -87016,40 +87022,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_RBRACK, [75026] = 12, - ACTIONS(1109), 1, + ACTIONS(1117), 1, sym__if_else_separator, - ACTIONS(2052), 1, + ACTIONS(2060), 1, anon_sym_in, - ACTIONS(2054), 1, + ACTIONS(2062), 1, anon_sym_AMP_AMP, - ACTIONS(2056), 1, + ACTIONS(2064), 1, anon_sym_QMARK, - ACTIONS(2058), 1, + ACTIONS(2066), 1, anon_sym_PIPE_PIPE, - ACTIONS(2040), 2, + ACTIONS(2048), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2044), 2, + ACTIONS(2052), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2050), 2, + ACTIONS(2058), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2092), 2, + ACTIONS(2100), 2, anon_sym_PIPE, anon_sym_PIPE_AMP, - ACTIONS(2042), 3, + ACTIONS(2050), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2048), 6, + ACTIONS(2056), 6, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1107), 7, + ACTIONS(1115), 7, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, @@ -87058,11 +87064,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_POUND, [75080] = 3, - ACTIONS(650), 1, + ACTIONS(658), 1, sym__if_else_separator, - ACTIONS(1279), 1, + ACTIONS(1287), 1, sym_concatenating_space, - ACTIONS(636), 27, + ACTIONS(644), 27, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -87091,13 +87097,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, [75116] = 4, - ACTIONS(644), 1, + ACTIONS(652), 1, anon_sym_COLON_COLON, - ACTIONS(2030), 1, + ACTIONS(2038), 1, anon_sym_LBRACK, - ACTIONS(2126), 1, + ACTIONS(2134), 1, anon_sym_LT, - ACTIONS(670), 26, + ACTIONS(678), 26, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -87125,40 +87131,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, [75154] = 12, - ACTIONS(1113), 1, + ACTIONS(1121), 1, sym__if_else_separator, - ACTIONS(2052), 1, + ACTIONS(2060), 1, anon_sym_in, - ACTIONS(2054), 1, + ACTIONS(2062), 1, anon_sym_AMP_AMP, - ACTIONS(2056), 1, + ACTIONS(2064), 1, anon_sym_QMARK, - ACTIONS(2058), 1, + ACTIONS(2066), 1, anon_sym_PIPE_PIPE, - ACTIONS(2040), 2, + ACTIONS(2048), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2044), 2, + ACTIONS(2052), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2050), 2, + ACTIONS(2058), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2092), 2, + ACTIONS(2100), 2, anon_sym_PIPE, anon_sym_PIPE_AMP, - ACTIONS(2042), 3, + ACTIONS(2050), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2048), 6, + ACTIONS(2056), 6, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1111), 7, + ACTIONS(1119), 7, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, @@ -87169,31 +87175,31 @@ static const uint16_t ts_small_parse_table[] = { [75208] = 12, ACTIONS(83), 1, sym__if_else_separator, - ACTIONS(2052), 1, + ACTIONS(2060), 1, anon_sym_in, - ACTIONS(2054), 1, + ACTIONS(2062), 1, anon_sym_AMP_AMP, - ACTIONS(2056), 1, + ACTIONS(2064), 1, anon_sym_QMARK, - ACTIONS(2058), 1, + ACTIONS(2066), 1, anon_sym_PIPE_PIPE, - ACTIONS(2040), 2, + ACTIONS(2048), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2044), 2, + ACTIONS(2052), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2050), 2, + ACTIONS(2058), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2092), 2, + ACTIONS(2100), 2, anon_sym_PIPE, anon_sym_PIPE_AMP, - ACTIONS(2042), 3, + ACTIONS(2050), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2048), 6, + ACTIONS(2056), 6, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, @@ -87209,11 +87215,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_POUND, [75262] = 3, - ACTIONS(820), 1, + ACTIONS(828), 1, sym__if_else_separator, - ACTIONS(2036), 1, + ACTIONS(2044), 1, sym_regex_flags, - ACTIONS(816), 27, + ACTIONS(824), 27, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -87242,41 +87248,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, [75298] = 12, - ACTIONS(2128), 1, + ACTIONS(2136), 1, anon_sym_in, - ACTIONS(2130), 1, + ACTIONS(2138), 1, anon_sym_QMARK, - ACTIONS(2134), 1, + ACTIONS(2142), 1, anon_sym_AMP_AMP, - ACTIONS(2136), 1, + ACTIONS(2144), 1, anon_sym_PIPE_PIPE, - ACTIONS(848), 2, + ACTIONS(856), 2, sym_concatenating_space, sym__if_else_separator, - ACTIONS(2060), 2, + ACTIONS(2068), 2, anon_sym_PIPE, anon_sym_PIPE_AMP, - ACTIONS(2116), 2, + ACTIONS(2124), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2120), 2, + ACTIONS(2128), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2132), 2, + ACTIONS(2140), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2118), 3, + ACTIONS(2126), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(836), 6, + ACTIONS(844), 6, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, anon_sym_while, anon_sym_GT_GT, - ACTIONS(2114), 6, + ACTIONS(2122), 6, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, @@ -87284,30 +87290,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, [75352] = 7, - ACTIONS(860), 2, + ACTIONS(868), 2, sym_concatenating_space, sym__if_else_separator, - ACTIONS(2116), 2, + ACTIONS(2124), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2120), 2, + ACTIONS(2128), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2132), 2, + ACTIONS(2140), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2118), 3, + ACTIONS(2126), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2114), 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(858), 12, + ACTIONS(866), 12, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -87321,20 +87327,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, [75396] = 5, - ACTIONS(766), 2, + ACTIONS(774), 2, sym_concatenating_space, sym__if_else_separator, - ACTIONS(2116), 2, + ACTIONS(2124), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2120), 2, + ACTIONS(2128), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2118), 3, + ACTIONS(2126), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(764), 20, + ACTIONS(772), 20, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -87356,13 +87362,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, [75436] = 3, - ACTIONS(766), 2, + ACTIONS(774), 2, sym_concatenating_space, sym__if_else_separator, - ACTIONS(2116), 2, + ACTIONS(2124), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(764), 25, + ACTIONS(772), 25, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -87389,17 +87395,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, [75472] = 4, - ACTIONS(766), 2, + ACTIONS(774), 2, sym_concatenating_space, sym__if_else_separator, - ACTIONS(2116), 2, + ACTIONS(2124), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2118), 3, + ACTIONS(2126), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(764), 22, + ACTIONS(772), 22, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -87423,13 +87429,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, [75510] = 4, - ACTIONS(672), 1, + ACTIONS(680), 1, sym__if_else_separator, - ACTIONS(2004), 1, + ACTIONS(2012), 1, anon_sym_LBRACK, - ACTIONS(2110), 1, + ACTIONS(2118), 1, anon_sym_LT, - ACTIONS(670), 26, + ACTIONS(678), 26, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -87457,32 +87463,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, [75548] = 8, - ACTIONS(2128), 1, + ACTIONS(2136), 1, anon_sym_in, - ACTIONS(766), 2, + ACTIONS(774), 2, sym_concatenating_space, sym__if_else_separator, - ACTIONS(2116), 2, + ACTIONS(2124), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2120), 2, + ACTIONS(2128), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2132), 2, + ACTIONS(2140), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2118), 3, + ACTIONS(2126), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2114), 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(764), 11, + ACTIONS(772), 11, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -87495,34 +87501,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, [75594] = 9, - ACTIONS(2128), 1, + ACTIONS(2136), 1, anon_sym_in, - ACTIONS(2134), 1, + ACTIONS(2142), 1, anon_sym_AMP_AMP, - ACTIONS(766), 2, + ACTIONS(774), 2, sym_concatenating_space, sym__if_else_separator, - ACTIONS(2116), 2, + ACTIONS(2124), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2120), 2, + ACTIONS(2128), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2132), 2, + ACTIONS(2140), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2118), 3, + ACTIONS(2126), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2114), 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(764), 10, + ACTIONS(772), 10, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -87534,38 +87540,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_PIPE_PIPE, [75642] = 11, - ACTIONS(2128), 1, + ACTIONS(2136), 1, anon_sym_in, - ACTIONS(2130), 1, + ACTIONS(2138), 1, anon_sym_QMARK, - ACTIONS(2134), 1, + ACTIONS(2142), 1, anon_sym_AMP_AMP, - ACTIONS(2136), 1, + ACTIONS(2144), 1, anon_sym_PIPE_PIPE, - ACTIONS(852), 2, + ACTIONS(860), 2, sym_concatenating_space, sym__if_else_separator, - ACTIONS(2116), 2, + ACTIONS(2124), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2120), 2, + ACTIONS(2128), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2132), 2, + ACTIONS(2140), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2118), 3, + ACTIONS(2126), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2114), 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(850), 8, + ACTIONS(858), 8, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -87575,13 +87581,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PIPE_AMP, [75694] = 4, - ACTIONS(672), 1, + ACTIONS(680), 1, sym_concatenating_space, - ACTIONS(2010), 1, + ACTIONS(2018), 1, anon_sym_LBRACK, - ACTIONS(2112), 1, + ACTIONS(2120), 1, anon_sym_LT, - ACTIONS(670), 26, + ACTIONS(678), 26, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -87609,30 +87615,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, [75732] = 7, - ACTIONS(834), 2, + ACTIONS(842), 2, sym_concatenating_space, sym__if_else_separator, - ACTIONS(2116), 2, + ACTIONS(2124), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2120), 2, + ACTIONS(2128), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2132), 2, + ACTIONS(2140), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2118), 3, + ACTIONS(2126), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2114), 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(830), 12, + ACTIONS(838), 12, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -87646,11 +87652,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, [75776] = 3, - ACTIONS(820), 1, + ACTIONS(828), 1, sym_concatenating_space, - ACTIONS(2038), 1, + ACTIONS(2046), 1, sym_regex_flags, - ACTIONS(816), 27, + ACTIONS(824), 27, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -87679,15 +87685,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, [75812] = 4, - ACTIONS(2122), 1, + ACTIONS(2130), 1, anon_sym_LBRACK, - ACTIONS(2124), 1, + ACTIONS(2132), 1, anon_sym_LT, - ACTIONS(670), 3, + ACTIONS(678), 3, anon_sym_GT, anon_sym_PIPE, anon_sym_STAR, - ACTIONS(672), 23, + ACTIONS(680), 23, sym_concatenating_space, anon_sym_COMMA, anon_sym_SEMI, @@ -87712,12 +87718,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_RBRACK, [75849] = 2, - ACTIONS(678), 4, + ACTIONS(686), 4, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_STAR, - ACTIONS(680), 24, + ACTIONS(688), 24, anon_sym_COMMA, anon_sym_SEMI, anon_sym_RPAREN, @@ -87743,38 +87749,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RBRACK, [75882] = 11, - ACTIONS(2074), 1, + ACTIONS(2082), 1, anon_sym_in, - ACTIONS(2078), 1, + ACTIONS(2086), 1, anon_sym_AMP_AMP, - ACTIONS(2080), 1, + ACTIONS(2088), 1, anon_sym_QMARK, - ACTIONS(2082), 1, + ACTIONS(2090), 1, anon_sym_PIPE_PIPE, - ACTIONS(2068), 2, + ACTIONS(2076), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2072), 2, + ACTIONS(2080), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2076), 2, + ACTIONS(2084), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2106), 2, + ACTIONS(2114), 2, anon_sym_PIPE, anon_sym_PIPE_AMP, - ACTIONS(2070), 3, + ACTIONS(2078), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2066), 6, + ACTIONS(2074), 6, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1119), 7, + ACTIONS(1127), 7, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, @@ -87783,38 +87789,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_POUND, [75933] = 11, - ACTIONS(2074), 1, + ACTIONS(2082), 1, anon_sym_in, - ACTIONS(2078), 1, + ACTIONS(2086), 1, anon_sym_AMP_AMP, - ACTIONS(2080), 1, + ACTIONS(2088), 1, anon_sym_QMARK, - ACTIONS(2082), 1, + ACTIONS(2090), 1, anon_sym_PIPE_PIPE, - ACTIONS(2068), 2, + ACTIONS(2076), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2072), 2, + ACTIONS(2080), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2076), 2, + ACTIONS(2084), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2106), 2, + ACTIONS(2114), 2, anon_sym_PIPE, anon_sym_PIPE_AMP, - ACTIONS(2070), 3, + ACTIONS(2078), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2066), 6, + ACTIONS(2074), 6, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1123), 7, + ACTIONS(1131), 7, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, @@ -87823,38 +87829,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_POUND, [75984] = 11, - ACTIONS(2074), 1, + ACTIONS(2082), 1, anon_sym_in, - ACTIONS(2078), 1, + ACTIONS(2086), 1, anon_sym_AMP_AMP, - ACTIONS(2080), 1, + ACTIONS(2088), 1, anon_sym_QMARK, - ACTIONS(2082), 1, + ACTIONS(2090), 1, anon_sym_PIPE_PIPE, - ACTIONS(2068), 2, + ACTIONS(2076), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2072), 2, + ACTIONS(2080), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2076), 2, + ACTIONS(2084), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2106), 2, + ACTIONS(2114), 2, anon_sym_PIPE, anon_sym_PIPE_AMP, - ACTIONS(2070), 3, + ACTIONS(2078), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2066), 6, + ACTIONS(2074), 6, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1107), 7, + ACTIONS(1115), 7, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, @@ -87863,14 +87869,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_POUND, [76035] = 3, - ACTIONS(2122), 1, + ACTIONS(2130), 1, anon_sym_LBRACK, - ACTIONS(674), 4, + ACTIONS(682), 4, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_STAR, - ACTIONS(676), 23, + ACTIONS(684), 23, sym_concatenating_space, anon_sym_COMMA, anon_sym_SEMI, @@ -87895,38 +87901,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_RBRACK, [76070] = 11, - ACTIONS(2074), 1, + ACTIONS(2082), 1, anon_sym_in, - ACTIONS(2078), 1, + ACTIONS(2086), 1, anon_sym_AMP_AMP, - ACTIONS(2080), 1, + ACTIONS(2088), 1, anon_sym_QMARK, - ACTIONS(2082), 1, + ACTIONS(2090), 1, anon_sym_PIPE_PIPE, - ACTIONS(2068), 2, + ACTIONS(2076), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2072), 2, + ACTIONS(2080), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2076), 2, + ACTIONS(2084), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2106), 2, + ACTIONS(2114), 2, anon_sym_PIPE, anon_sym_PIPE_AMP, - ACTIONS(2070), 3, + ACTIONS(2078), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2066), 6, + ACTIONS(2074), 6, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1111), 7, + ACTIONS(1119), 7, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, @@ -87935,9 +87941,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_POUND, [76121] = 2, - ACTIONS(1347), 1, + ACTIONS(1355), 1, sym_concatenating_space, - ACTIONS(636), 27, + ACTIONS(644), 27, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -87966,15 +87972,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, [76154] = 3, - ACTIONS(2138), 1, + ACTIONS(2146), 1, sym_regex_flags, - ACTIONS(816), 5, + ACTIONS(824), 5, anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_STAR, - ACTIONS(820), 22, + ACTIONS(828), 22, sym_concatenating_space, anon_sym_COMMA, anon_sym_SEMI, @@ -87998,31 +88004,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_RBRACK, [76189] = 11, - ACTIONS(2074), 1, + ACTIONS(2082), 1, anon_sym_in, - ACTIONS(2078), 1, + ACTIONS(2086), 1, anon_sym_AMP_AMP, - ACTIONS(2080), 1, + ACTIONS(2088), 1, anon_sym_QMARK, - ACTIONS(2082), 1, + ACTIONS(2090), 1, anon_sym_PIPE_PIPE, - ACTIONS(2068), 2, + ACTIONS(2076), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2072), 2, + ACTIONS(2080), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2076), 2, + ACTIONS(2084), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2106), 2, + ACTIONS(2114), 2, anon_sym_PIPE, anon_sym_PIPE_AMP, - ACTIONS(2070), 3, + ACTIONS(2078), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2066), 6, + ACTIONS(2074), 6, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, @@ -88038,11 +88044,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_POUND, [76240] = 3, - ACTIONS(2030), 1, + ACTIONS(2038), 1, anon_sym_LBRACK, - ACTIONS(2126), 1, + ACTIONS(2134), 1, anon_sym_LT, - ACTIONS(670), 26, + ACTIONS(678), 26, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -88070,12 +88076,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, [76275] = 2, - ACTIONS(712), 4, + ACTIONS(720), 4, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_STAR, - ACTIONS(714), 24, + ACTIONS(722), 24, sym_concatenating_space, anon_sym_COMMA, anon_sym_SEMI, @@ -88101,18 +88107,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RBRACK, [76308] = 5, - ACTIONS(644), 1, + ACTIONS(652), 1, anon_sym_COLON_COLON, - ACTIONS(2140), 1, + ACTIONS(2148), 1, anon_sym_LT, - ACTIONS(2142), 1, + ACTIONS(2150), 1, anon_sym_LBRACK, - ACTIONS(670), 4, + ACTIONS(678), 4, anon_sym_COLON, anon_sym_GT, anon_sym_PIPE, anon_sym_STAR, - ACTIONS(672), 21, + ACTIONS(680), 21, anon_sym_COMMA, anon_sym_SEMI, anon_sym_RPAREN, @@ -88135,9 +88141,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_RBRACK, [76347] = 2, - ACTIONS(2086), 1, + ACTIONS(2094), 1, sym_regex_flags, - ACTIONS(816), 27, + ACTIONS(824), 27, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -88166,40 +88172,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, [76380] = 12, - ACTIONS(848), 1, + ACTIONS(856), 1, sym__if_else_separator, - ACTIONS(2128), 1, + ACTIONS(2136), 1, anon_sym_in, - ACTIONS(2130), 1, + ACTIONS(2138), 1, anon_sym_QMARK, - ACTIONS(2134), 1, + ACTIONS(2142), 1, anon_sym_AMP_AMP, - ACTIONS(2136), 1, + ACTIONS(2144), 1, anon_sym_PIPE_PIPE, - ACTIONS(2092), 2, + ACTIONS(2100), 2, anon_sym_PIPE, anon_sym_PIPE_AMP, - ACTIONS(2116), 2, + ACTIONS(2124), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2120), 2, + ACTIONS(2128), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2132), 2, + ACTIONS(2140), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2118), 3, + ACTIONS(2126), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(836), 6, + ACTIONS(844), 6, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, anon_sym_while, anon_sym_GT_GT, - ACTIONS(2114), 6, + ACTIONS(2122), 6, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, @@ -88207,17 +88213,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, [76433] = 4, - ACTIONS(644), 1, + ACTIONS(652), 1, anon_sym_COLON_COLON, - ACTIONS(2142), 1, + ACTIONS(2150), 1, anon_sym_LBRACK, - ACTIONS(674), 5, + ACTIONS(682), 5, anon_sym_COLON, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_STAR, - ACTIONS(676), 21, + ACTIONS(684), 21, anon_sym_COMMA, anon_sym_SEMI, anon_sym_RPAREN, @@ -88240,40 +88246,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_RBRACK, [76470] = 12, - ACTIONS(848), 1, + ACTIONS(856), 1, sym_concatenating_space, - ACTIONS(2144), 1, + ACTIONS(2152), 1, anon_sym_in, - ACTIONS(2148), 1, + ACTIONS(2156), 1, anon_sym_QMARK, - ACTIONS(2158), 1, + ACTIONS(2166), 1, anon_sym_AMP_AMP, - ACTIONS(2160), 1, + ACTIONS(2168), 1, anon_sym_PIPE_PIPE, - ACTIONS(2098), 2, + ACTIONS(2106), 2, anon_sym_PIPE, anon_sym_PIPE_AMP, - ACTIONS(2150), 2, + ACTIONS(2158), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2154), 2, + ACTIONS(2162), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2156), 2, + ACTIONS(2164), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2152), 3, + ACTIONS(2160), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(836), 6, + ACTIONS(844), 6, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, anon_sym_while, anon_sym_GT_GT, - ACTIONS(2146), 6, + ACTIONS(2154), 6, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, @@ -88281,12 +88287,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, [76523] = 2, - ACTIONS(678), 4, + ACTIONS(686), 4, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_STAR, - ACTIONS(680), 24, + ACTIONS(688), 24, sym_concatenating_space, anon_sym_COMMA, anon_sym_SEMI, @@ -88312,17 +88318,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RBRACK, [76556] = 4, - ACTIONS(644), 1, + ACTIONS(652), 1, anon_sym_COLON_COLON, - ACTIONS(2142), 1, + ACTIONS(2150), 1, anon_sym_LBRACK, - ACTIONS(670), 5, + ACTIONS(678), 5, anon_sym_COLON, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_STAR, - ACTIONS(672), 21, + ACTIONS(680), 21, anon_sym_COMMA, anon_sym_SEMI, anon_sym_RPAREN, @@ -88345,14 +88351,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_RBRACK, [76593] = 3, - ACTIONS(2122), 1, + ACTIONS(2130), 1, anon_sym_LBRACK, - ACTIONS(670), 4, + ACTIONS(678), 4, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_STAR, - ACTIONS(672), 23, + ACTIONS(680), 23, sym_concatenating_space, anon_sym_COMMA, anon_sym_SEMI, @@ -88377,37 +88383,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_RBRACK, [76628] = 11, - ACTIONS(852), 1, + ACTIONS(860), 1, sym_concatenating_space, - ACTIONS(2144), 1, + ACTIONS(2152), 1, anon_sym_in, - ACTIONS(2148), 1, + ACTIONS(2156), 1, anon_sym_QMARK, - ACTIONS(2158), 1, + ACTIONS(2166), 1, anon_sym_AMP_AMP, - ACTIONS(2160), 1, + ACTIONS(2168), 1, anon_sym_PIPE_PIPE, - ACTIONS(2150), 2, + ACTIONS(2158), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2154), 2, + ACTIONS(2162), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2156), 2, + ACTIONS(2164), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2152), 3, + ACTIONS(2160), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2146), 6, + ACTIONS(2154), 6, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(850), 8, + ACTIONS(858), 8, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -88417,29 +88423,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PIPE_AMP, [76679] = 7, - ACTIONS(834), 1, + ACTIONS(842), 1, sym_concatenating_space, - ACTIONS(2150), 2, + ACTIONS(2158), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2154), 2, + ACTIONS(2162), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2156), 2, + ACTIONS(2164), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2152), 3, + ACTIONS(2160), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2146), 6, + ACTIONS(2154), 6, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(830), 12, + ACTIONS(838), 12, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -88453,33 +88459,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, [76722] = 9, - ACTIONS(766), 1, + ACTIONS(774), 1, sym_concatenating_space, - ACTIONS(2144), 1, + ACTIONS(2152), 1, anon_sym_in, - ACTIONS(2158), 1, + ACTIONS(2166), 1, anon_sym_AMP_AMP, - ACTIONS(2150), 2, + ACTIONS(2158), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2154), 2, + ACTIONS(2162), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2156), 2, + ACTIONS(2164), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2152), 3, + ACTIONS(2160), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2146), 6, + ACTIONS(2154), 6, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(764), 10, + ACTIONS(772), 10, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -88491,31 +88497,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_PIPE_PIPE, [76769] = 8, - ACTIONS(766), 1, + ACTIONS(774), 1, sym_concatenating_space, - ACTIONS(2144), 1, + ACTIONS(2152), 1, anon_sym_in, - ACTIONS(2150), 2, + ACTIONS(2158), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2154), 2, + ACTIONS(2162), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2156), 2, + ACTIONS(2164), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2152), 3, + ACTIONS(2160), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2146), 6, + ACTIONS(2154), 6, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(764), 11, + ACTIONS(772), 11, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -88528,26 +88534,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, [76814] = 6, - ACTIONS(766), 1, + ACTIONS(774), 1, sym_concatenating_space, - ACTIONS(2150), 2, + ACTIONS(2158), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2154), 2, + ACTIONS(2162), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2152), 3, + ACTIONS(2160), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2146), 6, + ACTIONS(2154), 6, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(764), 14, + ACTIONS(772), 14, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -88563,16 +88569,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, [76855] = 4, - ACTIONS(766), 1, + ACTIONS(774), 1, sym_concatenating_space, - ACTIONS(2150), 2, + ACTIONS(2158), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2152), 3, + ACTIONS(2160), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(764), 22, + ACTIONS(772), 22, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -88596,12 +88602,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, [76892] = 3, - ACTIONS(766), 1, + ACTIONS(774), 1, sym_concatenating_space, - ACTIONS(2150), 2, + ACTIONS(2158), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(764), 25, + ACTIONS(772), 25, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -88628,19 +88634,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, [76927] = 5, - ACTIONS(766), 1, + ACTIONS(774), 1, sym_concatenating_space, - ACTIONS(2150), 2, + ACTIONS(2158), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2154), 2, + ACTIONS(2162), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2152), 3, + ACTIONS(2160), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(764), 20, + ACTIONS(772), 20, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -88662,29 +88668,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, [76966] = 7, - ACTIONS(860), 1, + ACTIONS(868), 1, sym_concatenating_space, - ACTIONS(2150), 2, + ACTIONS(2158), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2154), 2, + ACTIONS(2162), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2156), 2, + ACTIONS(2164), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2152), 3, + ACTIONS(2160), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2146), 6, + ACTIONS(2154), 6, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(858), 12, + ACTIONS(866), 12, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -88698,38 +88704,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, [77009] = 12, - ACTIONS(1069), 1, + ACTIONS(1077), 1, anon_sym_COMMA, - ACTIONS(1071), 1, + ACTIONS(1079), 1, sym__if_else_separator, - ACTIONS(2128), 1, + ACTIONS(2136), 1, anon_sym_in, - ACTIONS(2130), 1, + ACTIONS(2138), 1, anon_sym_QMARK, - ACTIONS(2134), 1, + ACTIONS(2142), 1, anon_sym_AMP_AMP, - ACTIONS(2136), 1, + ACTIONS(2144), 1, anon_sym_PIPE_PIPE, - ACTIONS(2116), 2, + ACTIONS(2124), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2120), 2, + ACTIONS(2128), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2132), 2, + ACTIONS(2140), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2118), 3, + ACTIONS(2126), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2114), 5, + ACTIONS(2122), 5, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1067), 8, + ACTIONS(1075), 8, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, @@ -88739,39 +88745,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PIPE_AMP, [77062] = 12, - ACTIONS(1069), 1, + ACTIONS(1077), 1, anon_sym_COMMA, - ACTIONS(1075), 1, + ACTIONS(1083), 1, sym__if_else_separator, - ACTIONS(2128), 1, + ACTIONS(2136), 1, anon_sym_in, - ACTIONS(2130), 1, + ACTIONS(2138), 1, anon_sym_QMARK, - ACTIONS(2134), 1, + ACTIONS(2142), 1, anon_sym_AMP_AMP, - ACTIONS(2136), 1, + ACTIONS(2144), 1, anon_sym_PIPE_PIPE, - ACTIONS(2116), 2, + ACTIONS(2124), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2120), 2, + ACTIONS(2128), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2132), 2, + ACTIONS(2140), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2118), 3, + ACTIONS(2126), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2114), 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(1073), 7, + ACTIONS(1081), 7, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, @@ -88780,19 +88786,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PIPE_AMP, [77115] = 5, - ACTIONS(856), 1, + ACTIONS(864), 1, sym_concatenating_space, - ACTIONS(2150), 2, + ACTIONS(2158), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2154), 2, + ACTIONS(2162), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2152), 3, + ACTIONS(2160), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(854), 20, + ACTIONS(862), 20, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, @@ -88814,39 +88820,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, [77154] = 13, - ACTIONS(850), 1, + ACTIONS(858), 1, anon_sym_PIPE, - ACTIONS(2162), 1, + ACTIONS(2170), 1, anon_sym_in, - ACTIONS(2166), 1, + ACTIONS(2174), 1, anon_sym_QMARK, - ACTIONS(2170), 1, + ACTIONS(2178), 1, anon_sym_STAR, - ACTIONS(2180), 1, + ACTIONS(2188), 1, anon_sym_AMP_AMP, - ACTIONS(2182), 1, + ACTIONS(2190), 1, anon_sym_PIPE_PIPE, - ACTIONS(2164), 2, + ACTIONS(2172), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2168), 2, + ACTIONS(2176), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2172), 2, + ACTIONS(2180), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2174), 2, + ACTIONS(2182), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2178), 2, + ACTIONS(2186), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2176), 4, + ACTIONS(2184), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(852), 7, + ACTIONS(860), 7, sym_concatenating_space, anon_sym_COMMA, anon_sym_SEMI, @@ -88855,19 +88861,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_AMP, anon_sym_RBRACK, [77208] = 3, - ACTIONS(636), 4, + ACTIONS(644), 4, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_STAR, - ACTIONS(646), 6, + ACTIONS(654), 6, sym_concatenating_space, anon_sym_COMMA, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_COLON, anon_sym_RBRACK, - ACTIONS(650), 17, + ACTIONS(658), 17, anon_sym_in, anon_sym_PIPE_AMP, anon_sym_QMARK, @@ -88886,12 +88892,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, [77242] = 2, - ACTIONS(712), 4, + ACTIONS(720), 4, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_STAR, - ACTIONS(714), 23, + ACTIONS(722), 23, anon_sym_COMMA, anon_sym_SEMI, anon_sym_RPAREN, @@ -88916,37 +88922,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RBRACK, [77274] = 11, - ACTIONS(1069), 1, + ACTIONS(1077), 1, anon_sym_COMMA, - ACTIONS(2144), 1, + ACTIONS(2152), 1, anon_sym_in, - ACTIONS(2148), 1, + ACTIONS(2156), 1, anon_sym_QMARK, - ACTIONS(2158), 1, + ACTIONS(2166), 1, anon_sym_AMP_AMP, - ACTIONS(2160), 1, + ACTIONS(2168), 1, anon_sym_PIPE_PIPE, - ACTIONS(2150), 2, + ACTIONS(2158), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2154), 2, + ACTIONS(2162), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2156), 2, + ACTIONS(2164), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2152), 3, + ACTIONS(2160), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2146), 6, + ACTIONS(2154), 6, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1073), 7, + ACTIONS(1081), 7, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, @@ -88955,12 +88961,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PIPE_AMP, [77324] = 2, - ACTIONS(804), 4, + ACTIONS(812), 4, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_STAR, - ACTIONS(806), 23, + ACTIONS(814), 23, sym_concatenating_space, anon_sym_COMMA, anon_sym_SEMI, @@ -88985,12 +88991,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_RBRACK, [77356] = 2, - ACTIONS(784), 4, + ACTIONS(792), 4, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_STAR, - ACTIONS(786), 23, + ACTIONS(794), 23, sym_concatenating_space, anon_sym_COMMA, anon_sym_SEMI, @@ -89015,12 +89021,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_RBRACK, [77388] = 2, - ACTIONS(796), 4, + ACTIONS(804), 4, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_STAR, - ACTIONS(798), 23, + ACTIONS(806), 23, sym_concatenating_space, anon_sym_COMMA, anon_sym_SEMI, @@ -89045,31 +89051,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_RBRACK, [77420] = 9, - ACTIONS(830), 1, + ACTIONS(838), 1, anon_sym_PIPE, - ACTIONS(2170), 1, + ACTIONS(2178), 1, anon_sym_STAR, - ACTIONS(2164), 2, + ACTIONS(2172), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2168), 2, + ACTIONS(2176), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2172), 2, + ACTIONS(2180), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2174), 2, + ACTIONS(2182), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2178), 2, + ACTIONS(2186), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2176), 4, + ACTIONS(2184), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(834), 11, + ACTIONS(842), 11, sym_concatenating_space, anon_sym_COMMA, anon_sym_SEMI, @@ -89082,12 +89088,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_RBRACK, [77466] = 2, - ACTIONS(788), 4, + ACTIONS(796), 4, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_STAR, - ACTIONS(790), 23, + ACTIONS(798), 23, sym_concatenating_space, anon_sym_COMMA, anon_sym_SEMI, @@ -89112,12 +89118,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_RBRACK, [77498] = 2, - ACTIONS(808), 4, + ACTIONS(816), 4, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_STAR, - ACTIONS(810), 23, + ACTIONS(818), 23, sym_concatenating_space, anon_sym_COMMA, anon_sym_SEMI, @@ -89142,35 +89148,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_RBRACK, [77530] = 11, - ACTIONS(764), 1, + ACTIONS(772), 1, anon_sym_PIPE, - ACTIONS(2162), 1, - anon_sym_in, ACTIONS(2170), 1, + anon_sym_in, + ACTIONS(2178), 1, anon_sym_STAR, - ACTIONS(2180), 1, + ACTIONS(2188), 1, anon_sym_AMP_AMP, - ACTIONS(2164), 2, + ACTIONS(2172), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2168), 2, + ACTIONS(2176), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2172), 2, + ACTIONS(2180), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2174), 2, + ACTIONS(2182), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2178), 2, + ACTIONS(2186), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2176), 4, + ACTIONS(2184), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(766), 9, + ACTIONS(774), 9, sym_concatenating_space, anon_sym_COMMA, anon_sym_SEMI, @@ -89181,33 +89187,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_RBRACK, [77580] = 10, - ACTIONS(764), 1, + ACTIONS(772), 1, anon_sym_PIPE, - ACTIONS(2162), 1, - anon_sym_in, ACTIONS(2170), 1, + anon_sym_in, + ACTIONS(2178), 1, anon_sym_STAR, - ACTIONS(2164), 2, + ACTIONS(2172), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2168), 2, + ACTIONS(2176), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2172), 2, + ACTIONS(2180), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2174), 2, + ACTIONS(2182), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2178), 2, + ACTIONS(2186), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2176), 4, + ACTIONS(2184), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(766), 10, + ACTIONS(774), 10, sym_concatenating_space, anon_sym_COMMA, anon_sym_SEMI, @@ -89219,28 +89225,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_RBRACK, [77628] = 8, - ACTIONS(764), 1, + ACTIONS(772), 1, anon_sym_PIPE, - ACTIONS(2170), 1, + ACTIONS(2178), 1, anon_sym_STAR, - ACTIONS(2164), 2, + ACTIONS(2172), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2168), 2, + ACTIONS(2176), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2172), 2, + ACTIONS(2180), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2174), 2, + ACTIONS(2182), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2176), 4, + ACTIONS(2184), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(766), 13, + ACTIONS(774), 13, sym_concatenating_space, anon_sym_COMMA, anon_sym_SEMI, @@ -89255,12 +89261,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_RBRACK, [77672] = 2, - ACTIONS(674), 4, + ACTIONS(682), 4, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_STAR, - ACTIONS(676), 23, + ACTIONS(684), 23, sym_concatenating_space, anon_sym_COMMA, anon_sym_SEMI, @@ -89285,19 +89291,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_RBRACK, [77704] = 5, - ACTIONS(2170), 1, + ACTIONS(2178), 1, anon_sym_STAR, - ACTIONS(2168), 2, + ACTIONS(2176), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2172), 2, + ACTIONS(2180), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(764), 3, + ACTIONS(772), 3, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - ACTIONS(766), 19, + ACTIONS(774), 19, sym_concatenating_space, anon_sym_COMMA, anon_sym_SEMI, @@ -89318,15 +89324,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_RBRACK, [77742] = 3, - ACTIONS(2168), 2, + ACTIONS(2176), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(764), 4, + ACTIONS(772), 4, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_STAR, - ACTIONS(766), 21, + ACTIONS(774), 21, sym_concatenating_space, anon_sym_COMMA, anon_sym_SEMI, @@ -89349,12 +89355,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_RBRACK, [77776] = 2, - ACTIONS(764), 4, + ACTIONS(772), 4, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_STAR, - ACTIONS(766), 23, + ACTIONS(774), 23, sym_concatenating_space, anon_sym_COMMA, anon_sym_SEMI, @@ -89379,22 +89385,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_RBRACK, [77808] = 6, - ACTIONS(2170), 1, + ACTIONS(2178), 1, anon_sym_STAR, - ACTIONS(2168), 2, + ACTIONS(2176), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2172), 2, + ACTIONS(2180), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2174), 2, + ACTIONS(2182), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(764), 3, + ACTIONS(772), 3, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - ACTIONS(766), 17, + ACTIONS(774), 17, sym_concatenating_space, anon_sym_COMMA, anon_sym_SEMI, @@ -89413,31 +89419,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_RBRACK, [77848] = 9, - ACTIONS(858), 1, + ACTIONS(866), 1, anon_sym_PIPE, - ACTIONS(2170), 1, + ACTIONS(2178), 1, anon_sym_STAR, - ACTIONS(2164), 2, + ACTIONS(2172), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2168), 2, + ACTIONS(2176), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2172), 2, + ACTIONS(2180), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2174), 2, + ACTIONS(2182), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2178), 2, + ACTIONS(2186), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2176), 4, + ACTIONS(2184), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(860), 11, + ACTIONS(868), 11, sym_concatenating_space, anon_sym_COMMA, anon_sym_SEMI, @@ -89450,7 +89456,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_RBRACK, [77894] = 2, - ACTIONS(804), 12, + ACTIONS(812), 12, anon_sym_BEGIN, anon_sym_END, anon_sym_BEGINFILE, @@ -89463,7 +89469,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, anon_sym_function, anon_sym_func, - ACTIONS(806), 15, + ACTIONS(814), 15, ts_builtin_sym_end, anon_sym_ATinclude, anon_sym_ATload, @@ -89480,12 +89486,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [77926] = 2, - ACTIONS(776), 4, + ACTIONS(784), 4, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_STAR, - ACTIONS(778), 23, + ACTIONS(786), 23, sym_concatenating_space, anon_sym_COMMA, anon_sym_SEMI, @@ -89510,38 +89516,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_RBRACK, [77958] = 11, - ACTIONS(2144), 1, + ACTIONS(2152), 1, anon_sym_in, - ACTIONS(2148), 1, + ACTIONS(2156), 1, anon_sym_QMARK, - ACTIONS(2158), 1, + ACTIONS(2166), 1, anon_sym_AMP_AMP, - ACTIONS(2160), 1, + ACTIONS(2168), 1, anon_sym_PIPE_PIPE, - ACTIONS(2106), 2, + ACTIONS(2114), 2, anon_sym_PIPE, anon_sym_PIPE_AMP, - ACTIONS(2150), 2, + ACTIONS(2158), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2154), 2, + ACTIONS(2162), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2156), 2, + ACTIONS(2164), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2152), 3, + ACTIONS(2160), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(836), 6, + ACTIONS(844), 6, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, anon_sym_while, anon_sym_GT_GT, - ACTIONS(2146), 6, + ACTIONS(2154), 6, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, @@ -89549,15 +89555,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, [78008] = 3, - ACTIONS(2184), 1, + ACTIONS(2192), 1, sym_regex_flags, - ACTIONS(816), 5, + ACTIONS(824), 5, anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_STAR, - ACTIONS(820), 21, + ACTIONS(828), 21, anon_sym_COMMA, anon_sym_SEMI, anon_sym_RPAREN, @@ -89580,36 +89586,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_RBRACK, [78042] = 11, - ACTIONS(1069), 1, + ACTIONS(1077), 1, anon_sym_COMMA, - ACTIONS(2144), 1, + ACTIONS(2152), 1, anon_sym_in, - ACTIONS(2148), 1, + ACTIONS(2156), 1, anon_sym_QMARK, - ACTIONS(2158), 1, + ACTIONS(2166), 1, anon_sym_AMP_AMP, - ACTIONS(2160), 1, + ACTIONS(2168), 1, anon_sym_PIPE_PIPE, - ACTIONS(2150), 2, + ACTIONS(2158), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2154), 2, + ACTIONS(2162), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2156), 2, + ACTIONS(2164), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2152), 3, + ACTIONS(2160), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2146), 5, + ACTIONS(2154), 5, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1067), 8, + ACTIONS(1075), 8, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, @@ -89619,12 +89625,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PIPE_AMP, [78092] = 2, - ACTIONS(736), 4, + ACTIONS(744), 4, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_STAR, - ACTIONS(738), 23, + ACTIONS(746), 23, sym_concatenating_space, anon_sym_COMMA, anon_sym_SEMI, @@ -89649,7 +89655,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_RBRACK, [78124] = 2, - ACTIONS(796), 12, + ACTIONS(804), 12, anon_sym_BEGIN, anon_sym_END, anon_sym_BEGINFILE, @@ -89662,7 +89668,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, anon_sym_function, anon_sym_func, - ACTIONS(798), 15, + ACTIONS(806), 15, ts_builtin_sym_end, anon_sym_ATinclude, anon_sym_ATload, @@ -89679,14 +89685,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [78156] = 3, - ACTIONS(2142), 1, + ACTIONS(2150), 1, anon_sym_LBRACK, - ACTIONS(674), 4, + ACTIONS(682), 4, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_STAR, - ACTIONS(676), 22, + ACTIONS(684), 22, anon_sym_COMMA, anon_sym_SEMI, anon_sym_RPAREN, @@ -89714,7 +89720,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, STATE(1513), 1, sym_block, - ACTIONS(2188), 12, + ACTIONS(2196), 12, anon_sym_BEGIN, anon_sym_END, anon_sym_BEGINFILE, @@ -89727,7 +89733,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, anon_sym_function, anon_sym_func, - ACTIONS(2186), 13, + ACTIONS(2194), 13, ts_builtin_sym_end, anon_sym_ATinclude, anon_sym_ATload, @@ -89742,12 +89748,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [78226] = 2, - ACTIONS(768), 4, + ACTIONS(776), 4, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_STAR, - ACTIONS(770), 23, + ACTIONS(778), 23, sym_concatenating_space, anon_sym_COMMA, anon_sym_SEMI, @@ -89772,22 +89778,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_RBRACK, [78258] = 6, - ACTIONS(2170), 1, + ACTIONS(2178), 1, anon_sym_STAR, - ACTIONS(2168), 2, + ACTIONS(2176), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2172), 2, + ACTIONS(2180), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2174), 2, + ACTIONS(2182), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(854), 3, + ACTIONS(862), 3, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - ACTIONS(856), 17, + ACTIONS(864), 17, sym_concatenating_space, anon_sym_COMMA, anon_sym_SEMI, @@ -89806,15 +89812,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_RBRACK, [78298] = 4, - ACTIONS(2140), 1, + ACTIONS(2148), 1, anon_sym_LT, - ACTIONS(2142), 1, + ACTIONS(2150), 1, anon_sym_LBRACK, - ACTIONS(670), 3, + ACTIONS(678), 3, anon_sym_GT, anon_sym_PIPE, anon_sym_STAR, - ACTIONS(672), 22, + ACTIONS(680), 22, anon_sym_COMMA, anon_sym_SEMI, anon_sym_RPAREN, @@ -89838,14 +89844,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_RBRACK, [78334] = 3, - ACTIONS(2142), 1, + ACTIONS(2150), 1, anon_sym_LBRACK, - ACTIONS(670), 4, + ACTIONS(678), 4, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_STAR, - ACTIONS(672), 22, + ACTIONS(680), 22, anon_sym_COMMA, anon_sym_SEMI, anon_sym_RPAREN, @@ -89869,12 +89875,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_RBRACK, [78368] = 2, - ACTIONS(792), 4, + ACTIONS(800), 4, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_STAR, - ACTIONS(794), 23, + ACTIONS(802), 23, sym_concatenating_space, anon_sym_COMMA, anon_sym_SEMI, @@ -89899,12 +89905,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_RBRACK, [78400] = 2, - ACTIONS(772), 4, + ACTIONS(780), 4, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_STAR, - ACTIONS(774), 23, + ACTIONS(782), 23, sym_concatenating_space, anon_sym_COMMA, anon_sym_SEMI, @@ -89929,14 +89935,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_RBRACK, [78432] = 3, - ACTIONS(1513), 1, + ACTIONS(1521), 1, sym_concatenating_space, - ACTIONS(636), 4, + ACTIONS(644), 4, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_STAR, - ACTIONS(650), 22, + ACTIONS(658), 22, anon_sym_COMMA, anon_sym_SEMI, anon_sym_RPAREN, @@ -89960,12 +89966,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_RBRACK, [78466] = 2, - ACTIONS(756), 4, + ACTIONS(764), 4, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_STAR, - ACTIONS(758), 23, + ACTIONS(766), 23, sym_concatenating_space, anon_sym_COMMA, anon_sym_SEMI, @@ -89990,12 +89996,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_RBRACK, [78498] = 2, - ACTIONS(800), 4, + ACTIONS(808), 4, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_STAR, - ACTIONS(802), 23, + ACTIONS(810), 23, sym_concatenating_space, anon_sym_COMMA, anon_sym_SEMI, @@ -90020,41 +90026,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_RBRACK, [78530] = 14, - ACTIONS(2162), 1, + ACTIONS(2170), 1, anon_sym_in, - ACTIONS(2166), 1, + ACTIONS(2174), 1, anon_sym_QMARK, - ACTIONS(2170), 1, + ACTIONS(2178), 1, anon_sym_STAR, - ACTIONS(2180), 1, + ACTIONS(2188), 1, anon_sym_AMP_AMP, - ACTIONS(2182), 1, - anon_sym_PIPE_PIPE, ACTIONS(2190), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2198), 1, anon_sym_PIPE, - ACTIONS(2192), 1, + ACTIONS(2200), 1, anon_sym_PIPE_AMP, - ACTIONS(2164), 2, + ACTIONS(2172), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2168), 2, + ACTIONS(2176), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2172), 2, + ACTIONS(2180), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2174), 2, + ACTIONS(2182), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2178), 2, + ACTIONS(2186), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2176), 4, + ACTIONS(2184), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(848), 6, + ACTIONS(856), 6, sym_concatenating_space, anon_sym_COMMA, anon_sym_SEMI, @@ -90062,12 +90068,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_RBRACK, [78586] = 2, - ACTIONS(740), 4, + ACTIONS(748), 4, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_STAR, - ACTIONS(742), 23, + ACTIONS(750), 23, sym_concatenating_space, anon_sym_COMMA, anon_sym_SEMI, @@ -90092,12 +90098,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_RBRACK, [78618] = 2, - ACTIONS(780), 4, + ACTIONS(788), 4, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_STAR, - ACTIONS(782), 23, + ACTIONS(790), 23, sym_concatenating_space, anon_sym_COMMA, anon_sym_SEMI, @@ -90122,12 +90128,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_RBRACK, [78650] = 2, - ACTIONS(732), 4, + ACTIONS(740), 4, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_STAR, - ACTIONS(734), 23, + ACTIONS(742), 23, sym_concatenating_space, anon_sym_COMMA, anon_sym_SEMI, @@ -90152,7 +90158,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_RBRACK, [78682] = 2, - ACTIONS(1831), 13, + ACTIONS(1839), 13, anon_sym_BEGIN, anon_sym_END, anon_sym_BEGINFILE, @@ -90166,7 +90172,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, anon_sym_function, anon_sym_func, - ACTIONS(1833), 14, + ACTIONS(1841), 14, ts_builtin_sym_end, anon_sym_ATinclude, anon_sym_ATload, @@ -90182,7 +90188,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [78714] = 2, - ACTIONS(1839), 13, + ACTIONS(1847), 13, anon_sym_BEGIN, anon_sym_END, anon_sym_BEGINFILE, @@ -90196,7 +90202,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, anon_sym_function, anon_sym_func, - ACTIONS(1841), 14, + ACTIONS(1849), 14, ts_builtin_sym_end, anon_sym_ATinclude, anon_sym_ATload, @@ -90212,12 +90218,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [78746] = 2, - ACTIONS(800), 4, + ACTIONS(808), 4, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_STAR, - ACTIONS(802), 22, + ACTIONS(810), 22, anon_sym_COMMA, anon_sym_SEMI, anon_sym_RPAREN, @@ -90241,12 +90247,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_RBRACK, [78777] = 2, - ACTIONS(740), 4, + ACTIONS(748), 4, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_STAR, - ACTIONS(742), 22, + ACTIONS(750), 22, anon_sym_COMMA, anon_sym_SEMI, anon_sym_RPAREN, @@ -90272,27 +90278,27 @@ static const uint16_t ts_small_parse_table[] = { [78808] = 12, ACTIONS(83), 1, sym__if_else_separator, - ACTIONS(2128), 1, + ACTIONS(2136), 1, anon_sym_in, - ACTIONS(2130), 1, + ACTIONS(2138), 1, anon_sym_QMARK, - ACTIONS(2134), 1, + ACTIONS(2142), 1, anon_sym_AMP_AMP, - ACTIONS(2136), 1, + ACTIONS(2144), 1, anon_sym_PIPE_PIPE, - ACTIONS(2092), 2, + ACTIONS(2100), 2, anon_sym_PIPE, anon_sym_PIPE_AMP, - ACTIONS(2116), 2, + ACTIONS(2124), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2120), 2, + ACTIONS(2128), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2132), 2, + ACTIONS(2140), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2118), 3, + ACTIONS(2126), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -90301,7 +90307,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LF, anon_sym_CR_LF, anon_sym_while, - ACTIONS(2114), 6, + ACTIONS(2122), 6, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, @@ -90309,12 +90315,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, [78859] = 2, - ACTIONS(788), 4, + ACTIONS(796), 4, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_STAR, - ACTIONS(790), 22, + ACTIONS(798), 22, anon_sym_COMMA, anon_sym_SEMI, anon_sym_RPAREN, @@ -90338,12 +90344,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_RBRACK, [78890] = 2, - ACTIONS(732), 4, + ACTIONS(740), 4, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_STAR, - ACTIONS(734), 22, + ACTIONS(742), 22, anon_sym_COMMA, anon_sym_SEMI, anon_sym_RPAREN, @@ -90367,12 +90373,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_RBRACK, [78921] = 2, - ACTIONS(784), 4, + ACTIONS(792), 4, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_STAR, - ACTIONS(786), 22, + ACTIONS(794), 22, anon_sym_COMMA, anon_sym_SEMI, anon_sym_RPAREN, @@ -90396,12 +90402,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_RBRACK, [78952] = 2, - ACTIONS(808), 4, + ACTIONS(816), 4, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_STAR, - ACTIONS(810), 22, + ACTIONS(818), 22, anon_sym_COMMA, anon_sym_SEMI, anon_sym_RPAREN, @@ -90425,12 +90431,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_RBRACK, [78983] = 2, - ACTIONS(674), 4, + ACTIONS(682), 4, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_STAR, - ACTIONS(676), 22, + ACTIONS(684), 22, anon_sym_COMMA, anon_sym_SEMI, anon_sym_RPAREN, @@ -90454,7 +90460,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_RBRACK, [79014] = 2, - ACTIONS(2196), 12, + ACTIONS(2204), 12, anon_sym_BEGIN, anon_sym_END, anon_sym_BEGINFILE, @@ -90467,7 +90473,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, anon_sym_function, anon_sym_func, - ACTIONS(2194), 14, + ACTIONS(2202), 14, ts_builtin_sym_end, anon_sym_ATinclude, anon_sym_ATload, @@ -90483,12 +90489,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [79045] = 2, - ACTIONS(776), 4, + ACTIONS(784), 4, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_STAR, - ACTIONS(778), 22, + ACTIONS(786), 22, anon_sym_COMMA, anon_sym_SEMI, anon_sym_RPAREN, @@ -90512,7 +90518,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_RBRACK, [79076] = 2, - ACTIONS(2200), 12, + ACTIONS(2208), 12, anon_sym_BEGIN, anon_sym_END, anon_sym_BEGINFILE, @@ -90525,7 +90531,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, anon_sym_function, anon_sym_func, - ACTIONS(2198), 14, + ACTIONS(2206), 14, ts_builtin_sym_end, anon_sym_ATinclude, anon_sym_ATload, @@ -90541,12 +90547,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [79107] = 2, - ACTIONS(792), 4, + ACTIONS(800), 4, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_STAR, - ACTIONS(794), 22, + ACTIONS(802), 22, anon_sym_COMMA, anon_sym_SEMI, anon_sym_RPAREN, @@ -90570,38 +90576,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_RBRACK, [79138] = 12, - ACTIONS(1121), 1, + ACTIONS(1129), 1, sym__if_else_separator, - ACTIONS(2128), 1, + ACTIONS(2136), 1, anon_sym_in, - ACTIONS(2130), 1, + ACTIONS(2138), 1, anon_sym_QMARK, - ACTIONS(2134), 1, + ACTIONS(2142), 1, anon_sym_AMP_AMP, - ACTIONS(2136), 1, + ACTIONS(2144), 1, anon_sym_PIPE_PIPE, - ACTIONS(2092), 2, + ACTIONS(2100), 2, anon_sym_PIPE, anon_sym_PIPE_AMP, - ACTIONS(2116), 2, + ACTIONS(2124), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2120), 2, + ACTIONS(2128), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2132), 2, + ACTIONS(2140), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2118), 3, + ACTIONS(2126), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1119), 4, + ACTIONS(1127), 4, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, anon_sym_while, - ACTIONS(2114), 6, + ACTIONS(2122), 6, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, @@ -90609,7 +90615,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, [79189] = 2, - ACTIONS(1183), 12, + ACTIONS(1191), 12, anon_sym_BEGIN, anon_sym_END, anon_sym_BEGINFILE, @@ -90622,7 +90628,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, anon_sym_function, anon_sym_func, - ACTIONS(1181), 14, + ACTIONS(1189), 14, ts_builtin_sym_end, anon_sym_ATinclude, anon_sym_ATload, @@ -90638,7 +90644,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [79220] = 2, - ACTIONS(2188), 12, + ACTIONS(2196), 12, anon_sym_BEGIN, anon_sym_END, anon_sym_BEGINFILE, @@ -90651,7 +90657,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, anon_sym_function, anon_sym_func, - ACTIONS(2186), 14, + ACTIONS(2194), 14, ts_builtin_sym_end, anon_sym_ATinclude, anon_sym_ATload, @@ -90667,7 +90673,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [79251] = 2, - ACTIONS(2204), 12, + ACTIONS(2212), 12, anon_sym_BEGIN, anon_sym_END, anon_sym_BEGINFILE, @@ -90680,7 +90686,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, anon_sym_function, anon_sym_func, - ACTIONS(2202), 14, + ACTIONS(2210), 14, ts_builtin_sym_end, anon_sym_ATinclude, anon_sym_ATload, @@ -90696,7 +90702,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [79282] = 2, - ACTIONS(2208), 12, + ACTIONS(2216), 12, anon_sym_BEGIN, anon_sym_END, anon_sym_BEGINFILE, @@ -90709,7 +90715,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, anon_sym_function, anon_sym_func, - ACTIONS(2206), 14, + ACTIONS(2214), 14, ts_builtin_sym_end, anon_sym_ATinclude, anon_sym_ATload, @@ -90725,53 +90731,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_POUND, [79313] = 14, - ACTIONS(2162), 1, + ACTIONS(2170), 1, anon_sym_in, - ACTIONS(2166), 1, + ACTIONS(2174), 1, anon_sym_QMARK, - ACTIONS(2170), 1, + ACTIONS(2178), 1, anon_sym_STAR, - ACTIONS(2180), 1, + ACTIONS(2188), 1, anon_sym_AMP_AMP, - ACTIONS(2182), 1, + ACTIONS(2190), 1, anon_sym_PIPE_PIPE, - ACTIONS(2210), 1, + ACTIONS(2218), 1, anon_sym_PIPE, - ACTIONS(2212), 1, + ACTIONS(2220), 1, anon_sym_PIPE_AMP, - ACTIONS(2164), 2, + ACTIONS(2172), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2168), 2, + ACTIONS(2176), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2172), 2, + ACTIONS(2180), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2174), 2, + ACTIONS(2182), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2178), 2, + ACTIONS(2186), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2176), 4, + ACTIONS(2184), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(848), 5, + ACTIONS(856), 5, anon_sym_COMMA, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_COLON, anon_sym_RBRACK, [79368] = 2, - ACTIONS(780), 4, + ACTIONS(788), 4, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_STAR, - ACTIONS(782), 22, + ACTIONS(790), 22, anon_sym_COMMA, anon_sym_SEMI, anon_sym_RPAREN, @@ -90795,12 +90801,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_RBRACK, [79399] = 2, - ACTIONS(768), 4, + ACTIONS(776), 4, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_STAR, - ACTIONS(770), 22, + ACTIONS(778), 22, anon_sym_COMMA, anon_sym_SEMI, anon_sym_RPAREN, @@ -90824,38 +90830,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_RBRACK, [79430] = 12, - ACTIONS(1113), 1, + ACTIONS(1121), 1, sym__if_else_separator, - ACTIONS(2128), 1, + ACTIONS(2136), 1, anon_sym_in, - ACTIONS(2130), 1, + ACTIONS(2138), 1, anon_sym_QMARK, - ACTIONS(2134), 1, + ACTIONS(2142), 1, anon_sym_AMP_AMP, - ACTIONS(2136), 1, + ACTIONS(2144), 1, anon_sym_PIPE_PIPE, - ACTIONS(2092), 2, + ACTIONS(2100), 2, anon_sym_PIPE, anon_sym_PIPE_AMP, - ACTIONS(2116), 2, + ACTIONS(2124), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2120), 2, + ACTIONS(2128), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2132), 2, + ACTIONS(2140), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2118), 3, + ACTIONS(2126), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1111), 4, + ACTIONS(1119), 4, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, anon_sym_while, - ACTIONS(2114), 6, + ACTIONS(2122), 6, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, @@ -90863,38 +90869,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, [79481] = 12, - ACTIONS(1125), 1, + ACTIONS(1133), 1, sym__if_else_separator, - ACTIONS(2128), 1, + ACTIONS(2136), 1, anon_sym_in, - ACTIONS(2130), 1, + ACTIONS(2138), 1, anon_sym_QMARK, - ACTIONS(2134), 1, + ACTIONS(2142), 1, anon_sym_AMP_AMP, - ACTIONS(2136), 1, + ACTIONS(2144), 1, anon_sym_PIPE_PIPE, - ACTIONS(2092), 2, + ACTIONS(2100), 2, anon_sym_PIPE, anon_sym_PIPE_AMP, - ACTIONS(2116), 2, + ACTIONS(2124), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2120), 2, + ACTIONS(2128), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2132), 2, + ACTIONS(2140), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2118), 3, + ACTIONS(2126), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1123), 4, + ACTIONS(1131), 4, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, anon_sym_while, - ACTIONS(2114), 6, + ACTIONS(2122), 6, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, @@ -90902,38 +90908,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, [79532] = 12, - ACTIONS(1109), 1, + ACTIONS(1117), 1, sym__if_else_separator, - ACTIONS(2128), 1, + ACTIONS(2136), 1, anon_sym_in, - ACTIONS(2130), 1, + ACTIONS(2138), 1, anon_sym_QMARK, - ACTIONS(2134), 1, + ACTIONS(2142), 1, anon_sym_AMP_AMP, - ACTIONS(2136), 1, + ACTIONS(2144), 1, anon_sym_PIPE_PIPE, - ACTIONS(2092), 2, + ACTIONS(2100), 2, anon_sym_PIPE, anon_sym_PIPE_AMP, - ACTIONS(2116), 2, + ACTIONS(2124), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2120), 2, + ACTIONS(2128), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2132), 2, + ACTIONS(2140), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2118), 3, + ACTIONS(2126), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1107), 4, + ACTIONS(1115), 4, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, anon_sym_while, - ACTIONS(2114), 6, + ACTIONS(2122), 6, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, @@ -90941,36 +90947,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, [79583] = 11, - ACTIONS(2144), 1, + ACTIONS(2152), 1, anon_sym_in, - ACTIONS(2148), 1, + ACTIONS(2156), 1, anon_sym_QMARK, - ACTIONS(2158), 1, + ACTIONS(2166), 1, anon_sym_AMP_AMP, - ACTIONS(2160), 1, + ACTIONS(2168), 1, anon_sym_PIPE_PIPE, - ACTIONS(2106), 2, + ACTIONS(2114), 2, anon_sym_PIPE, anon_sym_PIPE_AMP, - ACTIONS(2150), 2, + ACTIONS(2158), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2154), 2, + ACTIONS(2162), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2156), 2, + ACTIONS(2164), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2152), 3, + ACTIONS(2160), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1111), 4, + ACTIONS(1119), 4, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, anon_sym_while, - ACTIONS(2146), 6, + ACTIONS(2154), 6, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, @@ -90978,36 +90984,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, [79631] = 11, - ACTIONS(2144), 1, + ACTIONS(2152), 1, anon_sym_in, - ACTIONS(2148), 1, + ACTIONS(2156), 1, anon_sym_QMARK, - ACTIONS(2158), 1, + ACTIONS(2166), 1, anon_sym_AMP_AMP, - ACTIONS(2160), 1, + ACTIONS(2168), 1, anon_sym_PIPE_PIPE, - ACTIONS(2106), 2, + ACTIONS(2114), 2, anon_sym_PIPE, anon_sym_PIPE_AMP, - ACTIONS(2150), 2, + ACTIONS(2158), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2154), 2, + ACTIONS(2162), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2156), 2, + ACTIONS(2164), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2152), 3, + ACTIONS(2160), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1123), 4, + ACTIONS(1131), 4, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, anon_sym_while, - ACTIONS(2146), 6, + ACTIONS(2154), 6, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, @@ -91015,36 +91021,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, [79679] = 11, - ACTIONS(2144), 1, + ACTIONS(2152), 1, anon_sym_in, - ACTIONS(2148), 1, + ACTIONS(2156), 1, anon_sym_QMARK, - ACTIONS(2158), 1, + ACTIONS(2166), 1, anon_sym_AMP_AMP, - ACTIONS(2160), 1, + ACTIONS(2168), 1, anon_sym_PIPE_PIPE, - ACTIONS(2106), 2, + ACTIONS(2114), 2, anon_sym_PIPE, anon_sym_PIPE_AMP, - ACTIONS(2150), 2, + ACTIONS(2158), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2154), 2, + ACTIONS(2162), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2156), 2, + ACTIONS(2164), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2152), 3, + ACTIONS(2160), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1107), 4, + ACTIONS(1115), 4, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, anon_sym_while, - ACTIONS(2146), 6, + ACTIONS(2154), 6, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, @@ -91052,36 +91058,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, [79727] = 11, - ACTIONS(2144), 1, + ACTIONS(2152), 1, anon_sym_in, - ACTIONS(2148), 1, + ACTIONS(2156), 1, anon_sym_QMARK, - ACTIONS(2158), 1, + ACTIONS(2166), 1, anon_sym_AMP_AMP, - ACTIONS(2160), 1, + ACTIONS(2168), 1, anon_sym_PIPE_PIPE, - ACTIONS(2106), 2, + ACTIONS(2114), 2, anon_sym_PIPE, anon_sym_PIPE_AMP, - ACTIONS(2150), 2, + ACTIONS(2158), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2154), 2, + ACTIONS(2162), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2156), 2, + ACTIONS(2164), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2152), 3, + ACTIONS(2160), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1119), 4, + ACTIONS(1127), 4, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, anon_sym_while, - ACTIONS(2146), 6, + ACTIONS(2154), 6, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, @@ -91089,27 +91095,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, [79775] = 11, - ACTIONS(2144), 1, + ACTIONS(2152), 1, anon_sym_in, - ACTIONS(2148), 1, + ACTIONS(2156), 1, anon_sym_QMARK, - ACTIONS(2158), 1, + ACTIONS(2166), 1, anon_sym_AMP_AMP, - ACTIONS(2160), 1, + ACTIONS(2168), 1, anon_sym_PIPE_PIPE, - ACTIONS(2106), 2, + ACTIONS(2114), 2, anon_sym_PIPE, anon_sym_PIPE_AMP, - ACTIONS(2150), 2, + ACTIONS(2158), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2154), 2, + ACTIONS(2162), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2156), 2, + ACTIONS(2164), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2152), 3, + ACTIONS(2160), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -91118,7 +91124,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LF, anon_sym_CR_LF, anon_sym_while, - ACTIONS(2146), 6, + ACTIONS(2154), 6, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, @@ -91126,4555 +91132,4555 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, [79823] = 15, - ACTIONS(2162), 1, + ACTIONS(2170), 1, anon_sym_in, - ACTIONS(2166), 1, + ACTIONS(2174), 1, anon_sym_QMARK, - ACTIONS(2170), 1, + ACTIONS(2178), 1, anon_sym_STAR, - ACTIONS(2180), 1, + ACTIONS(2188), 1, anon_sym_AMP_AMP, - ACTIONS(2182), 1, + ACTIONS(2190), 1, anon_sym_PIPE_PIPE, - ACTIONS(2210), 1, + ACTIONS(2218), 1, anon_sym_PIPE, - ACTIONS(2212), 1, + ACTIONS(2220), 1, anon_sym_PIPE_AMP, - ACTIONS(2214), 1, + ACTIONS(2222), 1, anon_sym_COMMA, - ACTIONS(1075), 2, + ACTIONS(1083), 2, anon_sym_RPAREN, anon_sym_RBRACK, - ACTIONS(2164), 2, + ACTIONS(2172), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2168), 2, + ACTIONS(2176), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2172), 2, + ACTIONS(2180), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2174), 2, + ACTIONS(2182), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2178), 2, + ACTIONS(2186), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2176), 4, + ACTIONS(2184), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, [79878] = 16, - ACTIONS(2162), 1, + ACTIONS(2170), 1, anon_sym_in, - ACTIONS(2166), 1, + ACTIONS(2174), 1, anon_sym_QMARK, - ACTIONS(2170), 1, + ACTIONS(2178), 1, anon_sym_STAR, - ACTIONS(2180), 1, + ACTIONS(2188), 1, anon_sym_AMP_AMP, - ACTIONS(2182), 1, + ACTIONS(2190), 1, anon_sym_PIPE_PIPE, - ACTIONS(2210), 1, + ACTIONS(2218), 1, anon_sym_PIPE, - ACTIONS(2212), 1, + ACTIONS(2220), 1, anon_sym_PIPE_AMP, - ACTIONS(2216), 1, + ACTIONS(2224), 1, anon_sym_COMMA, - ACTIONS(2218), 1, + ACTIONS(2226), 1, anon_sym_RPAREN, STATE(1787), 1, aux_sym_args_repeat1, - ACTIONS(2164), 2, + ACTIONS(2172), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2168), 2, + ACTIONS(2176), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2172), 2, + ACTIONS(2180), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2174), 2, + ACTIONS(2182), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2178), 2, + ACTIONS(2186), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2176), 4, + ACTIONS(2184), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, [79935] = 15, - ACTIONS(2162), 1, + ACTIONS(2170), 1, anon_sym_in, - ACTIONS(2166), 1, + ACTIONS(2174), 1, anon_sym_QMARK, - ACTIONS(2170), 1, + ACTIONS(2178), 1, anon_sym_STAR, - ACTIONS(2180), 1, + ACTIONS(2188), 1, anon_sym_AMP_AMP, - ACTIONS(2182), 1, + ACTIONS(2190), 1, anon_sym_PIPE_PIPE, - ACTIONS(2210), 1, + ACTIONS(2218), 1, anon_sym_PIPE, - ACTIONS(2212), 1, + ACTIONS(2220), 1, anon_sym_PIPE_AMP, - ACTIONS(2214), 1, + ACTIONS(2222), 1, anon_sym_COMMA, - ACTIONS(2220), 1, + ACTIONS(2228), 1, anon_sym_RBRACK, - ACTIONS(2164), 2, + ACTIONS(2172), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2168), 2, + ACTIONS(2176), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2172), 2, + ACTIONS(2180), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2174), 2, + ACTIONS(2182), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2178), 2, + ACTIONS(2186), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2176), 4, + ACTIONS(2184), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, [79989] = 15, - ACTIONS(2162), 1, + ACTIONS(2170), 1, anon_sym_in, - ACTIONS(2166), 1, + ACTIONS(2174), 1, anon_sym_QMARK, - ACTIONS(2170), 1, + ACTIONS(2178), 1, anon_sym_STAR, - ACTIONS(2180), 1, + ACTIONS(2188), 1, anon_sym_AMP_AMP, - ACTIONS(2182), 1, + ACTIONS(2190), 1, anon_sym_PIPE_PIPE, - ACTIONS(2210), 1, + ACTIONS(2218), 1, anon_sym_PIPE, - ACTIONS(2212), 1, + ACTIONS(2220), 1, anon_sym_PIPE_AMP, - ACTIONS(2214), 1, - anon_sym_COMMA, ACTIONS(2222), 1, + anon_sym_COMMA, + ACTIONS(2230), 1, anon_sym_RPAREN, - ACTIONS(2164), 2, + ACTIONS(2172), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2168), 2, + ACTIONS(2176), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2172), 2, + ACTIONS(2180), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2174), 2, + ACTIONS(2182), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2178), 2, + ACTIONS(2186), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2176), 4, + ACTIONS(2184), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, [80043] = 15, - ACTIONS(2162), 1, + ACTIONS(2170), 1, anon_sym_in, - ACTIONS(2166), 1, + ACTIONS(2174), 1, anon_sym_QMARK, - ACTIONS(2170), 1, + ACTIONS(2178), 1, anon_sym_STAR, - ACTIONS(2180), 1, + ACTIONS(2188), 1, anon_sym_AMP_AMP, - ACTIONS(2182), 1, + ACTIONS(2190), 1, anon_sym_PIPE_PIPE, - ACTIONS(2210), 1, + ACTIONS(2218), 1, anon_sym_PIPE, - ACTIONS(2212), 1, + ACTIONS(2220), 1, anon_sym_PIPE_AMP, - ACTIONS(2214), 1, + ACTIONS(2222), 1, anon_sym_COMMA, - ACTIONS(2224), 1, + ACTIONS(2232), 1, anon_sym_RBRACK, - ACTIONS(2164), 2, + ACTIONS(2172), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2168), 2, + ACTIONS(2176), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2172), 2, + ACTIONS(2180), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2174), 2, + ACTIONS(2182), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2178), 2, + ACTIONS(2186), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2176), 4, + ACTIONS(2184), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, [80097] = 15, - ACTIONS(2162), 1, + ACTIONS(2170), 1, anon_sym_in, - ACTIONS(2166), 1, + ACTIONS(2174), 1, anon_sym_QMARK, - ACTIONS(2170), 1, + ACTIONS(2178), 1, anon_sym_STAR, - ACTIONS(2180), 1, + ACTIONS(2188), 1, anon_sym_AMP_AMP, - ACTIONS(2182), 1, + ACTIONS(2190), 1, anon_sym_PIPE_PIPE, - ACTIONS(2210), 1, + ACTIONS(2218), 1, anon_sym_PIPE, - ACTIONS(2212), 1, + ACTIONS(2220), 1, anon_sym_PIPE_AMP, - ACTIONS(2214), 1, + ACTIONS(2222), 1, anon_sym_COMMA, - ACTIONS(2226), 1, + ACTIONS(2234), 1, anon_sym_RPAREN, - ACTIONS(2164), 2, + ACTIONS(2172), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2168), 2, + ACTIONS(2176), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2172), 2, + ACTIONS(2180), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2174), 2, + ACTIONS(2182), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2178), 2, + ACTIONS(2186), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2176), 4, + ACTIONS(2184), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, [80151] = 15, - ACTIONS(2162), 1, + ACTIONS(2170), 1, anon_sym_in, - ACTIONS(2166), 1, + ACTIONS(2174), 1, anon_sym_QMARK, - ACTIONS(2170), 1, + ACTIONS(2178), 1, anon_sym_STAR, - ACTIONS(2180), 1, + ACTIONS(2188), 1, anon_sym_AMP_AMP, - ACTIONS(2182), 1, + ACTIONS(2190), 1, anon_sym_PIPE_PIPE, - ACTIONS(2210), 1, + ACTIONS(2218), 1, anon_sym_PIPE, - ACTIONS(2212), 1, + ACTIONS(2220), 1, anon_sym_PIPE_AMP, - ACTIONS(2214), 1, + ACTIONS(2222), 1, anon_sym_COMMA, - ACTIONS(2228), 1, + ACTIONS(2236), 1, anon_sym_RBRACK, - ACTIONS(2164), 2, + ACTIONS(2172), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2168), 2, + ACTIONS(2176), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2172), 2, + ACTIONS(2180), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2174), 2, + ACTIONS(2182), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2178), 2, + ACTIONS(2186), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2176), 4, + ACTIONS(2184), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, [80205] = 15, - ACTIONS(2162), 1, + ACTIONS(2170), 1, anon_sym_in, - ACTIONS(2166), 1, + ACTIONS(2174), 1, anon_sym_QMARK, - ACTIONS(2170), 1, + ACTIONS(2178), 1, anon_sym_STAR, - ACTIONS(2180), 1, + ACTIONS(2188), 1, anon_sym_AMP_AMP, - ACTIONS(2182), 1, + ACTIONS(2190), 1, anon_sym_PIPE_PIPE, - ACTIONS(2210), 1, + ACTIONS(2218), 1, anon_sym_PIPE, - ACTIONS(2212), 1, + ACTIONS(2220), 1, anon_sym_PIPE_AMP, - ACTIONS(2214), 1, + ACTIONS(2222), 1, anon_sym_COMMA, - ACTIONS(2230), 1, + ACTIONS(2238), 1, anon_sym_RBRACK, - ACTIONS(2164), 2, + ACTIONS(2172), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2168), 2, + ACTIONS(2176), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2172), 2, + ACTIONS(2180), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2174), 2, + ACTIONS(2182), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2178), 2, + ACTIONS(2186), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2176), 4, + ACTIONS(2184), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, [80259] = 15, - ACTIONS(2162), 1, + ACTIONS(2170), 1, anon_sym_in, - ACTIONS(2166), 1, + ACTIONS(2174), 1, anon_sym_QMARK, - ACTIONS(2170), 1, + ACTIONS(2178), 1, anon_sym_STAR, - ACTIONS(2180), 1, + ACTIONS(2188), 1, anon_sym_AMP_AMP, - ACTIONS(2182), 1, + ACTIONS(2190), 1, anon_sym_PIPE_PIPE, - ACTIONS(2210), 1, + ACTIONS(2218), 1, anon_sym_PIPE, - ACTIONS(2212), 1, + ACTIONS(2220), 1, anon_sym_PIPE_AMP, - ACTIONS(2214), 1, + ACTIONS(2222), 1, anon_sym_COMMA, - ACTIONS(2232), 1, + ACTIONS(2240), 1, anon_sym_RBRACK, - ACTIONS(2164), 2, + ACTIONS(2172), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2168), 2, + ACTIONS(2176), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2172), 2, + ACTIONS(2180), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2174), 2, + ACTIONS(2182), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2178), 2, + ACTIONS(2186), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2176), 4, + ACTIONS(2184), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, [80313] = 15, - ACTIONS(2162), 1, + ACTIONS(2170), 1, anon_sym_in, - ACTIONS(2166), 1, + ACTIONS(2174), 1, anon_sym_QMARK, - ACTIONS(2170), 1, + ACTIONS(2178), 1, anon_sym_STAR, - ACTIONS(2180), 1, + ACTIONS(2188), 1, anon_sym_AMP_AMP, - ACTIONS(2182), 1, + ACTIONS(2190), 1, anon_sym_PIPE_PIPE, - ACTIONS(2210), 1, + ACTIONS(2218), 1, anon_sym_PIPE, - ACTIONS(2212), 1, + ACTIONS(2220), 1, anon_sym_PIPE_AMP, - ACTIONS(2214), 1, + ACTIONS(2222), 1, anon_sym_COMMA, - ACTIONS(2234), 1, + ACTIONS(2242), 1, anon_sym_RPAREN, - ACTIONS(2164), 2, + ACTIONS(2172), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2168), 2, + ACTIONS(2176), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2172), 2, + ACTIONS(2180), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2174), 2, + ACTIONS(2182), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2178), 2, + ACTIONS(2186), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2176), 4, + ACTIONS(2184), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, [80367] = 15, - ACTIONS(2162), 1, + ACTIONS(2170), 1, anon_sym_in, - ACTIONS(2166), 1, + ACTIONS(2174), 1, anon_sym_QMARK, - ACTIONS(2170), 1, + ACTIONS(2178), 1, anon_sym_STAR, - ACTIONS(2180), 1, + ACTIONS(2188), 1, anon_sym_AMP_AMP, - ACTIONS(2182), 1, + ACTIONS(2190), 1, anon_sym_PIPE_PIPE, - ACTIONS(2210), 1, + ACTIONS(2218), 1, anon_sym_PIPE, - ACTIONS(2212), 1, + ACTIONS(2220), 1, anon_sym_PIPE_AMP, - ACTIONS(2214), 1, + ACTIONS(2222), 1, anon_sym_COMMA, - ACTIONS(2236), 1, + ACTIONS(2244), 1, anon_sym_RBRACK, - ACTIONS(2164), 2, + ACTIONS(2172), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2168), 2, + ACTIONS(2176), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2172), 2, + ACTIONS(2180), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2174), 2, + ACTIONS(2182), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2178), 2, + ACTIONS(2186), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2176), 4, + ACTIONS(2184), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, [80421] = 15, - ACTIONS(2162), 1, + ACTIONS(2170), 1, anon_sym_in, - ACTIONS(2166), 1, + ACTIONS(2174), 1, anon_sym_QMARK, - ACTIONS(2170), 1, + ACTIONS(2178), 1, anon_sym_STAR, - ACTIONS(2180), 1, + ACTIONS(2188), 1, anon_sym_AMP_AMP, - ACTIONS(2182), 1, + ACTIONS(2190), 1, anon_sym_PIPE_PIPE, - ACTIONS(2210), 1, + ACTIONS(2218), 1, anon_sym_PIPE, - ACTIONS(2212), 1, + ACTIONS(2220), 1, anon_sym_PIPE_AMP, - ACTIONS(2214), 1, + ACTIONS(2222), 1, anon_sym_COMMA, - ACTIONS(2238), 1, + ACTIONS(2246), 1, anon_sym_RBRACK, - ACTIONS(2164), 2, + ACTIONS(2172), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2168), 2, + ACTIONS(2176), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2172), 2, + ACTIONS(2180), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2174), 2, + ACTIONS(2182), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2178), 2, + ACTIONS(2186), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2176), 4, + ACTIONS(2184), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, [80475] = 15, - ACTIONS(2162), 1, + ACTIONS(2170), 1, anon_sym_in, - ACTIONS(2166), 1, + ACTIONS(2174), 1, anon_sym_QMARK, - ACTIONS(2170), 1, + ACTIONS(2178), 1, anon_sym_STAR, - ACTIONS(2180), 1, + ACTIONS(2188), 1, anon_sym_AMP_AMP, - ACTIONS(2182), 1, + ACTIONS(2190), 1, anon_sym_PIPE_PIPE, - ACTIONS(2210), 1, + ACTIONS(2218), 1, anon_sym_PIPE, - ACTIONS(2212), 1, + ACTIONS(2220), 1, anon_sym_PIPE_AMP, - ACTIONS(2214), 1, + ACTIONS(2222), 1, anon_sym_COMMA, - ACTIONS(2240), 1, + ACTIONS(2248), 1, anon_sym_RBRACK, - ACTIONS(2164), 2, + ACTIONS(2172), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2168), 2, + ACTIONS(2176), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2172), 2, + ACTIONS(2180), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2174), 2, + ACTIONS(2182), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2178), 2, + ACTIONS(2186), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2176), 4, + ACTIONS(2184), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, [80529] = 15, - ACTIONS(2162), 1, + ACTIONS(2170), 1, anon_sym_in, - ACTIONS(2166), 1, + ACTIONS(2174), 1, anon_sym_QMARK, - ACTIONS(2170), 1, + ACTIONS(2178), 1, anon_sym_STAR, - ACTIONS(2180), 1, + ACTIONS(2188), 1, anon_sym_AMP_AMP, - ACTIONS(2182), 1, + ACTIONS(2190), 1, anon_sym_PIPE_PIPE, - ACTIONS(2210), 1, + ACTIONS(2218), 1, anon_sym_PIPE, - ACTIONS(2212), 1, + ACTIONS(2220), 1, anon_sym_PIPE_AMP, - ACTIONS(2214), 1, + ACTIONS(2222), 1, anon_sym_COMMA, - ACTIONS(2242), 1, + ACTIONS(2250), 1, anon_sym_RPAREN, - ACTIONS(2164), 2, + ACTIONS(2172), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2168), 2, + ACTIONS(2176), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2172), 2, + ACTIONS(2180), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2174), 2, + ACTIONS(2182), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2178), 2, + ACTIONS(2186), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2176), 4, + ACTIONS(2184), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, [80583] = 15, - ACTIONS(2162), 1, + ACTIONS(2170), 1, anon_sym_in, - ACTIONS(2166), 1, + ACTIONS(2174), 1, anon_sym_QMARK, - ACTIONS(2170), 1, + ACTIONS(2178), 1, anon_sym_STAR, - ACTIONS(2180), 1, + ACTIONS(2188), 1, anon_sym_AMP_AMP, - ACTIONS(2182), 1, + ACTIONS(2190), 1, anon_sym_PIPE_PIPE, - ACTIONS(2210), 1, + ACTIONS(2218), 1, anon_sym_PIPE, - ACTIONS(2212), 1, + ACTIONS(2220), 1, anon_sym_PIPE_AMP, - ACTIONS(2214), 1, + ACTIONS(2222), 1, anon_sym_COMMA, - ACTIONS(2244), 1, + ACTIONS(2252), 1, anon_sym_RBRACK, - ACTIONS(2164), 2, + ACTIONS(2172), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2168), 2, + ACTIONS(2176), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2172), 2, + ACTIONS(2180), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2174), 2, + ACTIONS(2182), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2178), 2, + ACTIONS(2186), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2176), 4, + ACTIONS(2184), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, [80637] = 15, - ACTIONS(1071), 1, + ACTIONS(1079), 1, anon_sym_RPAREN, - ACTIONS(2162), 1, + ACTIONS(2170), 1, anon_sym_in, - ACTIONS(2166), 1, + ACTIONS(2174), 1, anon_sym_QMARK, - ACTIONS(2170), 1, + ACTIONS(2178), 1, anon_sym_STAR, - ACTIONS(2180), 1, + ACTIONS(2188), 1, anon_sym_AMP_AMP, - ACTIONS(2182), 1, + ACTIONS(2190), 1, anon_sym_PIPE_PIPE, - ACTIONS(2210), 1, + ACTIONS(2218), 1, anon_sym_PIPE, - ACTIONS(2212), 1, + ACTIONS(2220), 1, anon_sym_PIPE_AMP, - ACTIONS(2214), 1, + ACTIONS(2222), 1, anon_sym_COMMA, - ACTIONS(2164), 2, + ACTIONS(2172), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2168), 2, + ACTIONS(2176), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2172), 2, + ACTIONS(2180), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2174), 2, + ACTIONS(2182), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2178), 2, + ACTIONS(2186), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2176), 4, + ACTIONS(2184), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, [80691] = 15, - ACTIONS(2162), 1, + ACTIONS(2170), 1, anon_sym_in, - ACTIONS(2166), 1, + ACTIONS(2174), 1, anon_sym_QMARK, - ACTIONS(2170), 1, + ACTIONS(2178), 1, anon_sym_STAR, - ACTIONS(2180), 1, + ACTIONS(2188), 1, anon_sym_AMP_AMP, - ACTIONS(2182), 1, + ACTIONS(2190), 1, anon_sym_PIPE_PIPE, - ACTIONS(2210), 1, + ACTIONS(2218), 1, anon_sym_PIPE, - ACTIONS(2212), 1, + ACTIONS(2220), 1, anon_sym_PIPE_AMP, - ACTIONS(2214), 1, + ACTIONS(2222), 1, anon_sym_COMMA, - ACTIONS(2246), 1, + ACTIONS(2254), 1, anon_sym_RPAREN, - ACTIONS(2164), 2, + ACTIONS(2172), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2168), 2, + ACTIONS(2176), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2172), 2, + ACTIONS(2180), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2174), 2, + ACTIONS(2182), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2178), 2, + ACTIONS(2186), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2176), 4, + ACTIONS(2184), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, [80745] = 15, - ACTIONS(2162), 1, + ACTIONS(2170), 1, anon_sym_in, - ACTIONS(2166), 1, + ACTIONS(2174), 1, anon_sym_QMARK, - ACTIONS(2170), 1, + ACTIONS(2178), 1, anon_sym_STAR, - ACTIONS(2180), 1, + ACTIONS(2188), 1, anon_sym_AMP_AMP, - ACTIONS(2182), 1, + ACTIONS(2190), 1, anon_sym_PIPE_PIPE, - ACTIONS(2210), 1, + ACTIONS(2218), 1, anon_sym_PIPE, - ACTIONS(2212), 1, + ACTIONS(2220), 1, anon_sym_PIPE_AMP, - ACTIONS(2214), 1, + ACTIONS(2222), 1, anon_sym_COMMA, - ACTIONS(2248), 1, + ACTIONS(2256), 1, anon_sym_RBRACK, - ACTIONS(2164), 2, + ACTIONS(2172), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2168), 2, + ACTIONS(2176), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2172), 2, + ACTIONS(2180), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2174), 2, + ACTIONS(2182), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2178), 2, + ACTIONS(2186), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2176), 4, + ACTIONS(2184), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, [80799] = 15, - ACTIONS(2162), 1, + ACTIONS(2170), 1, anon_sym_in, - ACTIONS(2166), 1, + ACTIONS(2174), 1, anon_sym_QMARK, - ACTIONS(2170), 1, + ACTIONS(2178), 1, anon_sym_STAR, - ACTIONS(2180), 1, + ACTIONS(2188), 1, anon_sym_AMP_AMP, - ACTIONS(2182), 1, + ACTIONS(2190), 1, anon_sym_PIPE_PIPE, - ACTIONS(2210), 1, + ACTIONS(2218), 1, anon_sym_PIPE, - ACTIONS(2212), 1, + ACTIONS(2220), 1, anon_sym_PIPE_AMP, - ACTIONS(2214), 1, + ACTIONS(2222), 1, anon_sym_COMMA, - ACTIONS(2250), 1, + ACTIONS(2258), 1, anon_sym_RBRACK, - ACTIONS(2164), 2, + ACTIONS(2172), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2168), 2, + ACTIONS(2176), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2172), 2, + ACTIONS(2180), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2174), 2, + ACTIONS(2182), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2178), 2, + ACTIONS(2186), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2176), 4, + ACTIONS(2184), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, [80853] = 15, - ACTIONS(2162), 1, + ACTIONS(2170), 1, anon_sym_in, - ACTIONS(2166), 1, + ACTIONS(2174), 1, anon_sym_QMARK, - ACTIONS(2170), 1, + ACTIONS(2178), 1, anon_sym_STAR, - ACTIONS(2180), 1, + ACTIONS(2188), 1, anon_sym_AMP_AMP, - ACTIONS(2182), 1, + ACTIONS(2190), 1, anon_sym_PIPE_PIPE, - ACTIONS(2210), 1, + ACTIONS(2218), 1, anon_sym_PIPE, - ACTIONS(2212), 1, + ACTIONS(2220), 1, anon_sym_PIPE_AMP, - ACTIONS(2214), 1, + ACTIONS(2222), 1, anon_sym_COMMA, - ACTIONS(2252), 1, + ACTIONS(2260), 1, anon_sym_RPAREN, - ACTIONS(2164), 2, + ACTIONS(2172), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2168), 2, + ACTIONS(2176), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2172), 2, + ACTIONS(2180), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2174), 2, + ACTIONS(2182), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2178), 2, + ACTIONS(2186), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2176), 4, + ACTIONS(2184), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, [80907] = 15, - ACTIONS(1071), 1, + ACTIONS(1079), 1, anon_sym_RPAREN, - ACTIONS(2162), 1, + ACTIONS(2170), 1, anon_sym_in, - ACTIONS(2166), 1, + ACTIONS(2174), 1, anon_sym_QMARK, - ACTIONS(2170), 1, + ACTIONS(2178), 1, anon_sym_STAR, - ACTIONS(2180), 1, + ACTIONS(2188), 1, anon_sym_AMP_AMP, - ACTIONS(2182), 1, + ACTIONS(2190), 1, anon_sym_PIPE_PIPE, - ACTIONS(2210), 1, + ACTIONS(2218), 1, anon_sym_PIPE, - ACTIONS(2212), 1, + ACTIONS(2220), 1, anon_sym_PIPE_AMP, - ACTIONS(2214), 1, + ACTIONS(2222), 1, anon_sym_COMMA, - ACTIONS(2164), 2, + ACTIONS(2172), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2168), 2, + ACTIONS(2176), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2172), 2, + ACTIONS(2180), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2174), 2, + ACTIONS(2182), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2178), 2, + ACTIONS(2186), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2176), 4, + ACTIONS(2184), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, [80961] = 15, - ACTIONS(2162), 1, + ACTIONS(2170), 1, anon_sym_in, - ACTIONS(2166), 1, + ACTIONS(2174), 1, anon_sym_QMARK, - ACTIONS(2170), 1, + ACTIONS(2178), 1, anon_sym_STAR, - ACTIONS(2180), 1, + ACTIONS(2188), 1, anon_sym_AMP_AMP, - ACTIONS(2182), 1, + ACTIONS(2190), 1, anon_sym_PIPE_PIPE, - ACTIONS(2210), 1, + ACTIONS(2218), 1, anon_sym_PIPE, - ACTIONS(2212), 1, + ACTIONS(2220), 1, anon_sym_PIPE_AMP, - ACTIONS(2214), 1, + ACTIONS(2222), 1, anon_sym_COMMA, - ACTIONS(2254), 1, + ACTIONS(2262), 1, anon_sym_RBRACK, - ACTIONS(2164), 2, + ACTIONS(2172), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2168), 2, + ACTIONS(2176), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2172), 2, + ACTIONS(2180), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2174), 2, + ACTIONS(2182), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2178), 2, + ACTIONS(2186), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2176), 4, + ACTIONS(2184), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, [81015] = 15, - ACTIONS(2162), 1, + ACTIONS(2170), 1, anon_sym_in, - ACTIONS(2166), 1, + ACTIONS(2174), 1, anon_sym_QMARK, - ACTIONS(2170), 1, + ACTIONS(2178), 1, anon_sym_STAR, - ACTIONS(2180), 1, + ACTIONS(2188), 1, anon_sym_AMP_AMP, - ACTIONS(2182), 1, + ACTIONS(2190), 1, anon_sym_PIPE_PIPE, - ACTIONS(2210), 1, + ACTIONS(2218), 1, anon_sym_PIPE, - ACTIONS(2212), 1, + ACTIONS(2220), 1, anon_sym_PIPE_AMP, - ACTIONS(2214), 1, + ACTIONS(2222), 1, anon_sym_COMMA, - ACTIONS(2256), 1, + ACTIONS(2264), 1, anon_sym_RPAREN, - ACTIONS(2164), 2, + ACTIONS(2172), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2168), 2, + ACTIONS(2176), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2172), 2, + ACTIONS(2180), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2174), 2, + ACTIONS(2182), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2178), 2, + ACTIONS(2186), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2176), 4, + ACTIONS(2184), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, [81069] = 15, - ACTIONS(2162), 1, + ACTIONS(2170), 1, anon_sym_in, - ACTIONS(2166), 1, + ACTIONS(2174), 1, anon_sym_QMARK, - ACTIONS(2170), 1, + ACTIONS(2178), 1, anon_sym_STAR, - ACTIONS(2180), 1, + ACTIONS(2188), 1, anon_sym_AMP_AMP, - ACTIONS(2182), 1, + ACTIONS(2190), 1, anon_sym_PIPE_PIPE, - ACTIONS(2210), 1, + ACTIONS(2218), 1, anon_sym_PIPE, - ACTIONS(2212), 1, + ACTIONS(2220), 1, anon_sym_PIPE_AMP, - ACTIONS(2214), 1, + ACTIONS(2222), 1, anon_sym_COMMA, - ACTIONS(2258), 1, + ACTIONS(2266), 1, anon_sym_RBRACK, - ACTIONS(2164), 2, + ACTIONS(2172), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2168), 2, + ACTIONS(2176), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2172), 2, + ACTIONS(2180), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2174), 2, + ACTIONS(2182), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2178), 2, + ACTIONS(2186), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2176), 4, + ACTIONS(2184), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, [81123] = 15, - ACTIONS(2162), 1, + ACTIONS(2170), 1, anon_sym_in, - ACTIONS(2166), 1, + ACTIONS(2174), 1, anon_sym_QMARK, - ACTIONS(2170), 1, + ACTIONS(2178), 1, anon_sym_STAR, - ACTIONS(2180), 1, + ACTIONS(2188), 1, anon_sym_AMP_AMP, - ACTIONS(2182), 1, + ACTIONS(2190), 1, anon_sym_PIPE_PIPE, - ACTIONS(2210), 1, + ACTIONS(2218), 1, anon_sym_PIPE, - ACTIONS(2212), 1, + ACTIONS(2220), 1, anon_sym_PIPE_AMP, - ACTIONS(2214), 1, + ACTIONS(2222), 1, anon_sym_COMMA, - ACTIONS(2260), 1, + ACTIONS(2268), 1, anon_sym_RBRACK, - ACTIONS(2164), 2, + ACTIONS(2172), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2168), 2, + ACTIONS(2176), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2172), 2, + ACTIONS(2180), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2174), 2, + ACTIONS(2182), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2178), 2, + ACTIONS(2186), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2176), 4, + ACTIONS(2184), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, [81177] = 15, - ACTIONS(2162), 1, + ACTIONS(2170), 1, anon_sym_in, - ACTIONS(2166), 1, + ACTIONS(2174), 1, anon_sym_QMARK, - ACTIONS(2170), 1, + ACTIONS(2178), 1, anon_sym_STAR, - ACTIONS(2180), 1, + ACTIONS(2188), 1, anon_sym_AMP_AMP, - ACTIONS(2182), 1, + ACTIONS(2190), 1, anon_sym_PIPE_PIPE, - ACTIONS(2210), 1, + ACTIONS(2218), 1, anon_sym_PIPE, - ACTIONS(2212), 1, + ACTIONS(2220), 1, anon_sym_PIPE_AMP, - ACTIONS(2214), 1, + ACTIONS(2222), 1, anon_sym_COMMA, - ACTIONS(2262), 1, + ACTIONS(2270), 1, anon_sym_RBRACK, - ACTIONS(2164), 2, + ACTIONS(2172), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2168), 2, + ACTIONS(2176), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2172), 2, + ACTIONS(2180), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2174), 2, + ACTIONS(2182), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2178), 2, + ACTIONS(2186), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2176), 4, + ACTIONS(2184), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, [81231] = 15, - ACTIONS(2162), 1, + ACTIONS(2170), 1, anon_sym_in, - ACTIONS(2166), 1, + ACTIONS(2174), 1, anon_sym_QMARK, - ACTIONS(2170), 1, + ACTIONS(2178), 1, anon_sym_STAR, - ACTIONS(2180), 1, + ACTIONS(2188), 1, anon_sym_AMP_AMP, - ACTIONS(2182), 1, + ACTIONS(2190), 1, anon_sym_PIPE_PIPE, - ACTIONS(2210), 1, + ACTIONS(2218), 1, anon_sym_PIPE, - ACTIONS(2212), 1, + ACTIONS(2220), 1, anon_sym_PIPE_AMP, - ACTIONS(2214), 1, + ACTIONS(2222), 1, anon_sym_COMMA, - ACTIONS(2264), 1, + ACTIONS(2272), 1, anon_sym_RPAREN, - ACTIONS(2164), 2, + ACTIONS(2172), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2168), 2, + ACTIONS(2176), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2172), 2, + ACTIONS(2180), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2174), 2, + ACTIONS(2182), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2178), 2, + ACTIONS(2186), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2176), 4, + ACTIONS(2184), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, [81285] = 14, - ACTIONS(2162), 1, + ACTIONS(2170), 1, anon_sym_in, - ACTIONS(2166), 1, + ACTIONS(2174), 1, anon_sym_QMARK, - ACTIONS(2170), 1, + ACTIONS(2178), 1, anon_sym_STAR, - ACTIONS(2180), 1, + ACTIONS(2188), 1, anon_sym_AMP_AMP, - ACTIONS(2182), 1, + ACTIONS(2190), 1, anon_sym_PIPE_PIPE, - ACTIONS(2210), 1, + ACTIONS(2218), 1, anon_sym_PIPE, - ACTIONS(2212), 1, + ACTIONS(2220), 1, anon_sym_PIPE_AMP, - ACTIONS(2164), 2, + ACTIONS(2172), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2168), 2, + ACTIONS(2176), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2172), 2, + ACTIONS(2180), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2174), 2, + ACTIONS(2182), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2178), 2, + ACTIONS(2186), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2266), 2, + ACTIONS(2274), 2, anon_sym_COMMA, anon_sym_RPAREN, - ACTIONS(2176), 4, + ACTIONS(2184), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, [81337] = 15, - ACTIONS(2162), 1, + ACTIONS(2170), 1, anon_sym_in, - ACTIONS(2166), 1, + ACTIONS(2174), 1, anon_sym_QMARK, - ACTIONS(2170), 1, + ACTIONS(2178), 1, anon_sym_STAR, - ACTIONS(2180), 1, + ACTIONS(2188), 1, anon_sym_AMP_AMP, - ACTIONS(2182), 1, + ACTIONS(2190), 1, anon_sym_PIPE_PIPE, - ACTIONS(2210), 1, + ACTIONS(2218), 1, anon_sym_PIPE, - ACTIONS(2212), 1, + ACTIONS(2220), 1, anon_sym_PIPE_AMP, - ACTIONS(2214), 1, + ACTIONS(2222), 1, anon_sym_COMMA, - ACTIONS(2268), 1, + ACTIONS(2276), 1, anon_sym_RPAREN, - ACTIONS(2164), 2, + ACTIONS(2172), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2168), 2, + ACTIONS(2176), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2172), 2, + ACTIONS(2180), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2174), 2, + ACTIONS(2182), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2178), 2, + ACTIONS(2186), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2176), 4, + ACTIONS(2184), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, [81391] = 14, - ACTIONS(2162), 1, + ACTIONS(2170), 1, anon_sym_in, - ACTIONS(2166), 1, + ACTIONS(2174), 1, anon_sym_QMARK, - ACTIONS(2170), 1, + ACTIONS(2178), 1, anon_sym_STAR, - ACTIONS(2180), 1, + ACTIONS(2188), 1, anon_sym_AMP_AMP, - ACTIONS(2182), 1, + ACTIONS(2190), 1, anon_sym_PIPE_PIPE, - ACTIONS(2210), 1, + ACTIONS(2218), 1, anon_sym_PIPE, - ACTIONS(2212), 1, + ACTIONS(2220), 1, anon_sym_PIPE_AMP, - ACTIONS(2270), 1, + ACTIONS(2278), 1, anon_sym_RPAREN, - ACTIONS(2164), 2, + ACTIONS(2172), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2168), 2, + ACTIONS(2176), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2172), 2, + ACTIONS(2180), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2174), 2, + ACTIONS(2182), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2178), 2, + ACTIONS(2186), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2176), 4, + ACTIONS(2184), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, [81442] = 14, - ACTIONS(2162), 1, + ACTIONS(2170), 1, anon_sym_in, - ACTIONS(2166), 1, + ACTIONS(2174), 1, anon_sym_QMARK, - ACTIONS(2170), 1, + ACTIONS(2178), 1, anon_sym_STAR, - ACTIONS(2180), 1, + ACTIONS(2188), 1, anon_sym_AMP_AMP, - ACTIONS(2182), 1, + ACTIONS(2190), 1, anon_sym_PIPE_PIPE, - ACTIONS(2210), 1, + ACTIONS(2218), 1, anon_sym_PIPE, - ACTIONS(2212), 1, + ACTIONS(2220), 1, anon_sym_PIPE_AMP, - ACTIONS(2272), 1, + ACTIONS(2280), 1, anon_sym_RPAREN, - ACTIONS(2164), 2, + ACTIONS(2172), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2168), 2, + ACTIONS(2176), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2172), 2, + ACTIONS(2180), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2174), 2, + ACTIONS(2182), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2178), 2, + ACTIONS(2186), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2176), 4, + ACTIONS(2184), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, [81493] = 14, - ACTIONS(2162), 1, + ACTIONS(2170), 1, anon_sym_in, - ACTIONS(2166), 1, + ACTIONS(2174), 1, anon_sym_QMARK, - ACTIONS(2170), 1, + ACTIONS(2178), 1, anon_sym_STAR, - ACTIONS(2180), 1, + ACTIONS(2188), 1, anon_sym_AMP_AMP, - ACTIONS(2182), 1, + ACTIONS(2190), 1, anon_sym_PIPE_PIPE, - ACTIONS(2210), 1, + ACTIONS(2218), 1, anon_sym_PIPE, - ACTIONS(2212), 1, + ACTIONS(2220), 1, anon_sym_PIPE_AMP, - ACTIONS(2274), 1, + ACTIONS(2282), 1, anon_sym_RPAREN, - ACTIONS(2164), 2, + ACTIONS(2172), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2168), 2, + ACTIONS(2176), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2172), 2, + ACTIONS(2180), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2174), 2, + ACTIONS(2182), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2178), 2, + ACTIONS(2186), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2176), 4, + ACTIONS(2184), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, [81544] = 14, - ACTIONS(2162), 1, + ACTIONS(2170), 1, anon_sym_in, - ACTIONS(2166), 1, + ACTIONS(2174), 1, anon_sym_QMARK, - ACTIONS(2170), 1, + ACTIONS(2178), 1, anon_sym_STAR, - ACTIONS(2180), 1, + ACTIONS(2188), 1, anon_sym_AMP_AMP, - ACTIONS(2182), 1, + ACTIONS(2190), 1, anon_sym_PIPE_PIPE, - ACTIONS(2210), 1, + ACTIONS(2218), 1, anon_sym_PIPE, - ACTIONS(2212), 1, + ACTIONS(2220), 1, anon_sym_PIPE_AMP, - ACTIONS(2276), 1, + ACTIONS(2284), 1, anon_sym_SEMI, - ACTIONS(2164), 2, + ACTIONS(2172), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2168), 2, + ACTIONS(2176), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2172), 2, + ACTIONS(2180), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2174), 2, + ACTIONS(2182), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2178), 2, + ACTIONS(2186), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2176), 4, + ACTIONS(2184), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, [81595] = 14, - ACTIONS(2162), 1, + ACTIONS(2170), 1, anon_sym_in, - ACTIONS(2166), 1, + ACTIONS(2174), 1, anon_sym_QMARK, - ACTIONS(2170), 1, + ACTIONS(2178), 1, anon_sym_STAR, - ACTIONS(2180), 1, + ACTIONS(2188), 1, anon_sym_AMP_AMP, - ACTIONS(2182), 1, + ACTIONS(2190), 1, anon_sym_PIPE_PIPE, - ACTIONS(2210), 1, + ACTIONS(2218), 1, anon_sym_PIPE, - ACTIONS(2212), 1, + ACTIONS(2220), 1, anon_sym_PIPE_AMP, - ACTIONS(2278), 1, + ACTIONS(2286), 1, anon_sym_SEMI, - ACTIONS(2164), 2, + ACTIONS(2172), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2168), 2, + ACTIONS(2176), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2172), 2, + ACTIONS(2180), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2174), 2, + ACTIONS(2182), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2178), 2, + ACTIONS(2186), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2176), 4, + ACTIONS(2184), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, [81646] = 14, - ACTIONS(2162), 1, + ACTIONS(2170), 1, anon_sym_in, - ACTIONS(2166), 1, + ACTIONS(2174), 1, anon_sym_QMARK, - ACTIONS(2170), 1, + ACTIONS(2178), 1, anon_sym_STAR, - ACTIONS(2180), 1, + ACTIONS(2188), 1, anon_sym_AMP_AMP, - ACTIONS(2182), 1, + ACTIONS(2190), 1, anon_sym_PIPE_PIPE, - ACTIONS(2210), 1, + ACTIONS(2218), 1, anon_sym_PIPE, - ACTIONS(2212), 1, + ACTIONS(2220), 1, anon_sym_PIPE_AMP, - ACTIONS(2280), 1, + ACTIONS(2288), 1, anon_sym_RPAREN, - ACTIONS(2164), 2, + ACTIONS(2172), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2168), 2, + ACTIONS(2176), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2172), 2, + ACTIONS(2180), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2174), 2, + ACTIONS(2182), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2178), 2, + ACTIONS(2186), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2176), 4, + ACTIONS(2184), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, [81697] = 14, - ACTIONS(2162), 1, + ACTIONS(2170), 1, anon_sym_in, - ACTIONS(2166), 1, + ACTIONS(2174), 1, anon_sym_QMARK, - ACTIONS(2170), 1, + ACTIONS(2178), 1, anon_sym_STAR, - ACTIONS(2180), 1, + ACTIONS(2188), 1, anon_sym_AMP_AMP, - ACTIONS(2182), 1, + ACTIONS(2190), 1, anon_sym_PIPE_PIPE, - ACTIONS(2210), 1, + ACTIONS(2218), 1, anon_sym_PIPE, - ACTIONS(2212), 1, + ACTIONS(2220), 1, anon_sym_PIPE_AMP, - ACTIONS(2282), 1, + ACTIONS(2290), 1, anon_sym_RPAREN, - ACTIONS(2164), 2, + ACTIONS(2172), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2168), 2, + ACTIONS(2176), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2172), 2, + ACTIONS(2180), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2174), 2, + ACTIONS(2182), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2178), 2, + ACTIONS(2186), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2176), 4, + ACTIONS(2184), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, [81748] = 14, - ACTIONS(2162), 1, + ACTIONS(2170), 1, anon_sym_in, - ACTIONS(2166), 1, + ACTIONS(2174), 1, anon_sym_QMARK, - ACTIONS(2170), 1, + ACTIONS(2178), 1, anon_sym_STAR, - ACTIONS(2180), 1, + ACTIONS(2188), 1, anon_sym_AMP_AMP, - ACTIONS(2182), 1, + ACTIONS(2190), 1, anon_sym_PIPE_PIPE, - ACTIONS(2210), 1, + ACTIONS(2218), 1, anon_sym_PIPE, - ACTIONS(2212), 1, + ACTIONS(2220), 1, anon_sym_PIPE_AMP, - ACTIONS(2284), 1, + ACTIONS(2292), 1, anon_sym_RPAREN, - ACTIONS(2164), 2, + ACTIONS(2172), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2168), 2, + ACTIONS(2176), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2172), 2, + ACTIONS(2180), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2174), 2, + ACTIONS(2182), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2178), 2, + ACTIONS(2186), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2176), 4, + ACTIONS(2184), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, [81799] = 14, - ACTIONS(2162), 1, + ACTIONS(2170), 1, anon_sym_in, - ACTIONS(2166), 1, + ACTIONS(2174), 1, anon_sym_QMARK, - ACTIONS(2170), 1, + ACTIONS(2178), 1, anon_sym_STAR, - ACTIONS(2180), 1, + ACTIONS(2188), 1, anon_sym_AMP_AMP, - ACTIONS(2182), 1, + ACTIONS(2190), 1, anon_sym_PIPE_PIPE, - ACTIONS(2210), 1, + ACTIONS(2218), 1, anon_sym_PIPE, - ACTIONS(2212), 1, + ACTIONS(2220), 1, anon_sym_PIPE_AMP, - ACTIONS(2286), 1, + ACTIONS(2294), 1, anon_sym_COLON, - ACTIONS(2164), 2, + ACTIONS(2172), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2168), 2, + ACTIONS(2176), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2172), 2, + ACTIONS(2180), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2174), 2, + ACTIONS(2182), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2178), 2, + ACTIONS(2186), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2176), 4, + ACTIONS(2184), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, [81850] = 14, - ACTIONS(2162), 1, + ACTIONS(2170), 1, anon_sym_in, - ACTIONS(2166), 1, + ACTIONS(2174), 1, anon_sym_QMARK, - ACTIONS(2170), 1, + ACTIONS(2178), 1, anon_sym_STAR, - ACTIONS(2180), 1, + ACTIONS(2188), 1, anon_sym_AMP_AMP, - ACTIONS(2182), 1, + ACTIONS(2190), 1, anon_sym_PIPE_PIPE, - ACTIONS(2210), 1, + ACTIONS(2218), 1, anon_sym_PIPE, - ACTIONS(2212), 1, + ACTIONS(2220), 1, anon_sym_PIPE_AMP, - ACTIONS(2288), 1, + ACTIONS(2296), 1, anon_sym_COLON, - ACTIONS(2164), 2, + ACTIONS(2172), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2168), 2, + ACTIONS(2176), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2172), 2, + ACTIONS(2180), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2174), 2, + ACTIONS(2182), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2178), 2, + ACTIONS(2186), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2176), 4, + ACTIONS(2184), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, [81901] = 14, - ACTIONS(2162), 1, + ACTIONS(2170), 1, anon_sym_in, - ACTIONS(2166), 1, + ACTIONS(2174), 1, anon_sym_QMARK, - ACTIONS(2170), 1, + ACTIONS(2178), 1, anon_sym_STAR, - ACTIONS(2180), 1, + ACTIONS(2188), 1, anon_sym_AMP_AMP, - ACTIONS(2182), 1, + ACTIONS(2190), 1, anon_sym_PIPE_PIPE, - ACTIONS(2210), 1, + ACTIONS(2218), 1, anon_sym_PIPE, - ACTIONS(2212), 1, + ACTIONS(2220), 1, anon_sym_PIPE_AMP, - ACTIONS(2290), 1, + ACTIONS(2298), 1, anon_sym_RPAREN, - ACTIONS(2164), 2, + ACTIONS(2172), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2168), 2, + ACTIONS(2176), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2172), 2, + ACTIONS(2180), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2174), 2, + ACTIONS(2182), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2178), 2, + ACTIONS(2186), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2176), 4, + ACTIONS(2184), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, [81952] = 14, - ACTIONS(2162), 1, + ACTIONS(2170), 1, anon_sym_in, - ACTIONS(2166), 1, + ACTIONS(2174), 1, anon_sym_QMARK, - ACTIONS(2170), 1, + ACTIONS(2178), 1, anon_sym_STAR, - ACTIONS(2180), 1, + ACTIONS(2188), 1, anon_sym_AMP_AMP, - ACTIONS(2182), 1, + ACTIONS(2190), 1, anon_sym_PIPE_PIPE, - ACTIONS(2210), 1, + ACTIONS(2218), 1, anon_sym_PIPE, - ACTIONS(2212), 1, + ACTIONS(2220), 1, anon_sym_PIPE_AMP, - ACTIONS(2292), 1, + ACTIONS(2300), 1, anon_sym_COLON, - ACTIONS(2164), 2, + ACTIONS(2172), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2168), 2, + ACTIONS(2176), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2172), 2, + ACTIONS(2180), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2174), 2, + ACTIONS(2182), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2178), 2, + ACTIONS(2186), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2176), 4, + ACTIONS(2184), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, [82003] = 14, - ACTIONS(2162), 1, + ACTIONS(2170), 1, anon_sym_in, - ACTIONS(2166), 1, + ACTIONS(2174), 1, anon_sym_QMARK, - ACTIONS(2170), 1, + ACTIONS(2178), 1, anon_sym_STAR, - ACTIONS(2180), 1, + ACTIONS(2188), 1, anon_sym_AMP_AMP, - ACTIONS(2182), 1, + ACTIONS(2190), 1, anon_sym_PIPE_PIPE, - ACTIONS(2210), 1, + ACTIONS(2218), 1, anon_sym_PIPE, - ACTIONS(2212), 1, + ACTIONS(2220), 1, anon_sym_PIPE_AMP, - ACTIONS(2294), 1, + ACTIONS(2302), 1, anon_sym_COLON, - ACTIONS(2164), 2, + ACTIONS(2172), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2168), 2, + ACTIONS(2176), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2172), 2, + ACTIONS(2180), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2174), 2, + ACTIONS(2182), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2178), 2, + ACTIONS(2186), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2176), 4, + ACTIONS(2184), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, [82054] = 14, - ACTIONS(2162), 1, + ACTIONS(2170), 1, anon_sym_in, - ACTIONS(2166), 1, + ACTIONS(2174), 1, anon_sym_QMARK, - ACTIONS(2170), 1, + ACTIONS(2178), 1, anon_sym_STAR, - ACTIONS(2180), 1, + ACTIONS(2188), 1, anon_sym_AMP_AMP, - ACTIONS(2182), 1, + ACTIONS(2190), 1, anon_sym_PIPE_PIPE, - ACTIONS(2210), 1, + ACTIONS(2218), 1, anon_sym_PIPE, - ACTIONS(2212), 1, + ACTIONS(2220), 1, anon_sym_PIPE_AMP, - ACTIONS(2296), 1, + ACTIONS(2304), 1, anon_sym_RPAREN, - ACTIONS(2164), 2, + ACTIONS(2172), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2168), 2, + ACTIONS(2176), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2172), 2, + ACTIONS(2180), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2174), 2, + ACTIONS(2182), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2178), 2, + ACTIONS(2186), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2176), 4, + ACTIONS(2184), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, [82105] = 14, - ACTIONS(2162), 1, + ACTIONS(2170), 1, anon_sym_in, - ACTIONS(2166), 1, + ACTIONS(2174), 1, anon_sym_QMARK, - ACTIONS(2170), 1, + ACTIONS(2178), 1, anon_sym_STAR, - ACTIONS(2180), 1, + ACTIONS(2188), 1, anon_sym_AMP_AMP, - ACTIONS(2182), 1, + ACTIONS(2190), 1, anon_sym_PIPE_PIPE, - ACTIONS(2210), 1, + ACTIONS(2218), 1, anon_sym_PIPE, - ACTIONS(2212), 1, + ACTIONS(2220), 1, anon_sym_PIPE_AMP, - ACTIONS(2298), 1, + ACTIONS(2306), 1, anon_sym_RPAREN, - ACTIONS(2164), 2, + ACTIONS(2172), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2168), 2, + ACTIONS(2176), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2172), 2, + ACTIONS(2180), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2174), 2, + ACTIONS(2182), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2178), 2, + ACTIONS(2186), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2176), 4, + ACTIONS(2184), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, [82156] = 14, - ACTIONS(2162), 1, + ACTIONS(2170), 1, anon_sym_in, - ACTIONS(2166), 1, + ACTIONS(2174), 1, anon_sym_QMARK, - ACTIONS(2170), 1, + ACTIONS(2178), 1, anon_sym_STAR, - ACTIONS(2180), 1, + ACTIONS(2188), 1, anon_sym_AMP_AMP, - ACTIONS(2182), 1, + ACTIONS(2190), 1, anon_sym_PIPE_PIPE, - ACTIONS(2210), 1, + ACTIONS(2218), 1, anon_sym_PIPE, - ACTIONS(2212), 1, + ACTIONS(2220), 1, anon_sym_PIPE_AMP, - ACTIONS(2300), 1, + ACTIONS(2308), 1, anon_sym_RPAREN, - ACTIONS(2164), 2, + ACTIONS(2172), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2168), 2, + ACTIONS(2176), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2172), 2, + ACTIONS(2180), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2174), 2, + ACTIONS(2182), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2178), 2, + ACTIONS(2186), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2176), 4, + ACTIONS(2184), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, [82207] = 14, - ACTIONS(2162), 1, + ACTIONS(2170), 1, anon_sym_in, - ACTIONS(2166), 1, + ACTIONS(2174), 1, anon_sym_QMARK, - ACTIONS(2170), 1, + ACTIONS(2178), 1, anon_sym_STAR, - ACTIONS(2180), 1, + ACTIONS(2188), 1, anon_sym_AMP_AMP, - ACTIONS(2182), 1, + ACTIONS(2190), 1, anon_sym_PIPE_PIPE, - ACTIONS(2210), 1, + ACTIONS(2218), 1, anon_sym_PIPE, - ACTIONS(2212), 1, + ACTIONS(2220), 1, anon_sym_PIPE_AMP, - ACTIONS(2302), 1, + ACTIONS(2310), 1, anon_sym_RPAREN, - ACTIONS(2164), 2, + ACTIONS(2172), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2168), 2, + ACTIONS(2176), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2172), 2, + ACTIONS(2180), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2174), 2, + ACTIONS(2182), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2178), 2, + ACTIONS(2186), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2176), 4, + ACTIONS(2184), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, [82258] = 14, - ACTIONS(2162), 1, + ACTIONS(2170), 1, anon_sym_in, - ACTIONS(2166), 1, + ACTIONS(2174), 1, anon_sym_QMARK, - ACTIONS(2170), 1, + ACTIONS(2178), 1, anon_sym_STAR, - ACTIONS(2180), 1, + ACTIONS(2188), 1, anon_sym_AMP_AMP, - ACTIONS(2182), 1, + ACTIONS(2190), 1, anon_sym_PIPE_PIPE, - ACTIONS(2210), 1, + ACTIONS(2218), 1, anon_sym_PIPE, - ACTIONS(2212), 1, + ACTIONS(2220), 1, anon_sym_PIPE_AMP, - ACTIONS(2304), 1, + ACTIONS(2312), 1, anon_sym_COLON, - ACTIONS(2164), 2, + ACTIONS(2172), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2168), 2, + ACTIONS(2176), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2172), 2, + ACTIONS(2180), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2174), 2, + ACTIONS(2182), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2178), 2, + ACTIONS(2186), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2176), 4, + ACTIONS(2184), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, [82309] = 14, - ACTIONS(2162), 1, + ACTIONS(2170), 1, anon_sym_in, - ACTIONS(2166), 1, + ACTIONS(2174), 1, anon_sym_QMARK, - ACTIONS(2170), 1, + ACTIONS(2178), 1, anon_sym_STAR, - ACTIONS(2180), 1, + ACTIONS(2188), 1, anon_sym_AMP_AMP, - ACTIONS(2182), 1, + ACTIONS(2190), 1, anon_sym_PIPE_PIPE, - ACTIONS(2210), 1, + ACTIONS(2218), 1, anon_sym_PIPE, - ACTIONS(2212), 1, + ACTIONS(2220), 1, anon_sym_PIPE_AMP, - ACTIONS(2306), 1, + ACTIONS(2314), 1, anon_sym_RPAREN, - ACTIONS(2164), 2, + ACTIONS(2172), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2168), 2, + ACTIONS(2176), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2172), 2, + ACTIONS(2180), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2174), 2, + ACTIONS(2182), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2178), 2, + ACTIONS(2186), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2176), 4, + ACTIONS(2184), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, [82360] = 14, - ACTIONS(2162), 1, + ACTIONS(2170), 1, anon_sym_in, - ACTIONS(2166), 1, + ACTIONS(2174), 1, anon_sym_QMARK, - ACTIONS(2170), 1, + ACTIONS(2178), 1, anon_sym_STAR, - ACTIONS(2180), 1, + ACTIONS(2188), 1, anon_sym_AMP_AMP, - ACTIONS(2182), 1, + ACTIONS(2190), 1, anon_sym_PIPE_PIPE, - ACTIONS(2210), 1, + ACTIONS(2218), 1, anon_sym_PIPE, - ACTIONS(2212), 1, + ACTIONS(2220), 1, anon_sym_PIPE_AMP, - ACTIONS(2308), 1, + ACTIONS(2316), 1, anon_sym_SEMI, - ACTIONS(2164), 2, + ACTIONS(2172), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2168), 2, + ACTIONS(2176), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2172), 2, + ACTIONS(2180), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2174), 2, + ACTIONS(2182), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2178), 2, + ACTIONS(2186), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2176), 4, + ACTIONS(2184), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, [82411] = 14, - ACTIONS(2162), 1, + ACTIONS(2170), 1, anon_sym_in, - ACTIONS(2166), 1, + ACTIONS(2174), 1, anon_sym_QMARK, - ACTIONS(2170), 1, + ACTIONS(2178), 1, anon_sym_STAR, - ACTIONS(2180), 1, + ACTIONS(2188), 1, anon_sym_AMP_AMP, - ACTIONS(2182), 1, + ACTIONS(2190), 1, anon_sym_PIPE_PIPE, - ACTIONS(2210), 1, + ACTIONS(2218), 1, anon_sym_PIPE, - ACTIONS(2212), 1, + ACTIONS(2220), 1, anon_sym_PIPE_AMP, - ACTIONS(2310), 1, + ACTIONS(2318), 1, anon_sym_COLON, - ACTIONS(2164), 2, + ACTIONS(2172), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2168), 2, + ACTIONS(2176), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2172), 2, + ACTIONS(2180), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2174), 2, + ACTIONS(2182), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2178), 2, + ACTIONS(2186), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2176), 4, + ACTIONS(2184), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, [82462] = 14, - ACTIONS(2162), 1, + ACTIONS(2170), 1, anon_sym_in, - ACTIONS(2166), 1, + ACTIONS(2174), 1, anon_sym_QMARK, - ACTIONS(2170), 1, + ACTIONS(2178), 1, anon_sym_STAR, - ACTIONS(2180), 1, + ACTIONS(2188), 1, anon_sym_AMP_AMP, - ACTIONS(2182), 1, + ACTIONS(2190), 1, anon_sym_PIPE_PIPE, - ACTIONS(2210), 1, + ACTIONS(2218), 1, anon_sym_PIPE, - ACTIONS(2212), 1, + ACTIONS(2220), 1, anon_sym_PIPE_AMP, - ACTIONS(2214), 1, + ACTIONS(2222), 1, anon_sym_COMMA, - ACTIONS(2164), 2, + ACTIONS(2172), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2168), 2, + ACTIONS(2176), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2172), 2, + ACTIONS(2180), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2174), 2, + ACTIONS(2182), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2178), 2, + ACTIONS(2186), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2176), 4, + ACTIONS(2184), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, [82513] = 14, - ACTIONS(2162), 1, + ACTIONS(2170), 1, anon_sym_in, - ACTIONS(2166), 1, + ACTIONS(2174), 1, anon_sym_QMARK, - ACTIONS(2170), 1, + ACTIONS(2178), 1, anon_sym_STAR, - ACTIONS(2180), 1, + ACTIONS(2188), 1, anon_sym_AMP_AMP, - ACTIONS(2182), 1, + ACTIONS(2190), 1, anon_sym_PIPE_PIPE, - ACTIONS(2210), 1, + ACTIONS(2218), 1, anon_sym_PIPE, - ACTIONS(2212), 1, + ACTIONS(2220), 1, anon_sym_PIPE_AMP, - ACTIONS(2312), 1, + ACTIONS(2320), 1, anon_sym_RPAREN, - ACTIONS(2164), 2, + ACTIONS(2172), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2168), 2, + ACTIONS(2176), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2172), 2, + ACTIONS(2180), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2174), 2, + ACTIONS(2182), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2178), 2, + ACTIONS(2186), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2176), 4, + ACTIONS(2184), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, [82564] = 14, - ACTIONS(2162), 1, + ACTIONS(2170), 1, anon_sym_in, - ACTIONS(2166), 1, + ACTIONS(2174), 1, anon_sym_QMARK, - ACTIONS(2170), 1, + ACTIONS(2178), 1, anon_sym_STAR, - ACTIONS(2180), 1, + ACTIONS(2188), 1, anon_sym_AMP_AMP, - ACTIONS(2182), 1, + ACTIONS(2190), 1, anon_sym_PIPE_PIPE, - ACTIONS(2210), 1, + ACTIONS(2218), 1, anon_sym_PIPE, - ACTIONS(2212), 1, + ACTIONS(2220), 1, anon_sym_PIPE_AMP, - ACTIONS(2314), 1, + ACTIONS(2322), 1, anon_sym_RPAREN, - ACTIONS(2164), 2, + ACTIONS(2172), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2168), 2, + ACTIONS(2176), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2172), 2, + ACTIONS(2180), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2174), 2, + ACTIONS(2182), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2178), 2, + ACTIONS(2186), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2176), 4, + ACTIONS(2184), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, [82615] = 14, - ACTIONS(2162), 1, + ACTIONS(2170), 1, anon_sym_in, - ACTIONS(2166), 1, + ACTIONS(2174), 1, anon_sym_QMARK, - ACTIONS(2170), 1, + ACTIONS(2178), 1, anon_sym_STAR, - ACTIONS(2180), 1, + ACTIONS(2188), 1, anon_sym_AMP_AMP, - ACTIONS(2182), 1, + ACTIONS(2190), 1, anon_sym_PIPE_PIPE, - ACTIONS(2210), 1, + ACTIONS(2218), 1, anon_sym_PIPE, - ACTIONS(2212), 1, + ACTIONS(2220), 1, anon_sym_PIPE_AMP, - ACTIONS(2316), 1, + ACTIONS(2324), 1, anon_sym_RPAREN, - ACTIONS(2164), 2, + ACTIONS(2172), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2168), 2, + ACTIONS(2176), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2172), 2, + ACTIONS(2180), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2174), 2, + ACTIONS(2182), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2178), 2, + ACTIONS(2186), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2176), 4, + ACTIONS(2184), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, [82666] = 14, - ACTIONS(2162), 1, + ACTIONS(2170), 1, anon_sym_in, - ACTIONS(2166), 1, + ACTIONS(2174), 1, anon_sym_QMARK, - ACTIONS(2170), 1, + ACTIONS(2178), 1, anon_sym_STAR, - ACTIONS(2180), 1, + ACTIONS(2188), 1, anon_sym_AMP_AMP, - ACTIONS(2182), 1, + ACTIONS(2190), 1, anon_sym_PIPE_PIPE, - ACTIONS(2210), 1, + ACTIONS(2218), 1, anon_sym_PIPE, - ACTIONS(2212), 1, + ACTIONS(2220), 1, anon_sym_PIPE_AMP, - ACTIONS(2318), 1, + ACTIONS(2326), 1, anon_sym_COLON, - ACTIONS(2164), 2, + ACTIONS(2172), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2168), 2, + ACTIONS(2176), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2172), 2, + ACTIONS(2180), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2174), 2, + ACTIONS(2182), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2178), 2, + ACTIONS(2186), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2176), 4, + ACTIONS(2184), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, [82717] = 14, - ACTIONS(2162), 1, + ACTIONS(2170), 1, anon_sym_in, - ACTIONS(2166), 1, + ACTIONS(2174), 1, anon_sym_QMARK, - ACTIONS(2170), 1, + ACTIONS(2178), 1, anon_sym_STAR, - ACTIONS(2180), 1, + ACTIONS(2188), 1, anon_sym_AMP_AMP, - ACTIONS(2182), 1, + ACTIONS(2190), 1, anon_sym_PIPE_PIPE, - ACTIONS(2210), 1, + ACTIONS(2218), 1, anon_sym_PIPE, - ACTIONS(2212), 1, + ACTIONS(2220), 1, anon_sym_PIPE_AMP, - ACTIONS(2320), 1, + ACTIONS(2328), 1, anon_sym_COLON, - ACTIONS(2164), 2, + ACTIONS(2172), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2168), 2, + ACTIONS(2176), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2172), 2, + ACTIONS(2180), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2174), 2, + ACTIONS(2182), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2178), 2, + ACTIONS(2186), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2176), 4, + ACTIONS(2184), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, [82768] = 14, - ACTIONS(2162), 1, + ACTIONS(2170), 1, anon_sym_in, - ACTIONS(2166), 1, + ACTIONS(2174), 1, anon_sym_QMARK, - ACTIONS(2170), 1, + ACTIONS(2178), 1, anon_sym_STAR, - ACTIONS(2180), 1, + ACTIONS(2188), 1, anon_sym_AMP_AMP, - ACTIONS(2182), 1, + ACTIONS(2190), 1, anon_sym_PIPE_PIPE, - ACTIONS(2210), 1, + ACTIONS(2218), 1, anon_sym_PIPE, - ACTIONS(2212), 1, + ACTIONS(2220), 1, anon_sym_PIPE_AMP, - ACTIONS(2322), 1, + ACTIONS(2330), 1, anon_sym_RPAREN, - ACTIONS(2164), 2, + ACTIONS(2172), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2168), 2, + ACTIONS(2176), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2172), 2, + ACTIONS(2180), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2174), 2, + ACTIONS(2182), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2178), 2, + ACTIONS(2186), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2176), 4, + ACTIONS(2184), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, [82819] = 14, - ACTIONS(2162), 1, + ACTIONS(2170), 1, anon_sym_in, - ACTIONS(2166), 1, + ACTIONS(2174), 1, anon_sym_QMARK, - ACTIONS(2170), 1, + ACTIONS(2178), 1, anon_sym_STAR, - ACTIONS(2180), 1, + ACTIONS(2188), 1, anon_sym_AMP_AMP, - ACTIONS(2182), 1, + ACTIONS(2190), 1, anon_sym_PIPE_PIPE, - ACTIONS(2210), 1, + ACTIONS(2218), 1, anon_sym_PIPE, - ACTIONS(2212), 1, + ACTIONS(2220), 1, anon_sym_PIPE_AMP, - ACTIONS(2324), 1, + ACTIONS(2332), 1, anon_sym_RPAREN, - ACTIONS(2164), 2, + ACTIONS(2172), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2168), 2, + ACTIONS(2176), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2172), 2, + ACTIONS(2180), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2174), 2, + ACTIONS(2182), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2178), 2, + ACTIONS(2186), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2176), 4, + ACTIONS(2184), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, [82870] = 14, - ACTIONS(2162), 1, + ACTIONS(2170), 1, anon_sym_in, - ACTIONS(2166), 1, + ACTIONS(2174), 1, anon_sym_QMARK, - ACTIONS(2170), 1, + ACTIONS(2178), 1, anon_sym_STAR, - ACTIONS(2180), 1, + ACTIONS(2188), 1, anon_sym_AMP_AMP, - ACTIONS(2182), 1, + ACTIONS(2190), 1, anon_sym_PIPE_PIPE, - ACTIONS(2210), 1, + ACTIONS(2218), 1, anon_sym_PIPE, - ACTIONS(2212), 1, + ACTIONS(2220), 1, anon_sym_PIPE_AMP, - ACTIONS(2326), 1, + ACTIONS(2334), 1, anon_sym_SEMI, - ACTIONS(2164), 2, + ACTIONS(2172), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2168), 2, + ACTIONS(2176), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2172), 2, + ACTIONS(2180), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2174), 2, + ACTIONS(2182), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2178), 2, + ACTIONS(2186), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2176), 4, + ACTIONS(2184), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, [82921] = 14, - ACTIONS(2162), 1, + ACTIONS(2170), 1, anon_sym_in, - ACTIONS(2166), 1, + ACTIONS(2174), 1, anon_sym_QMARK, - ACTIONS(2170), 1, + ACTIONS(2178), 1, anon_sym_STAR, - ACTIONS(2180), 1, + ACTIONS(2188), 1, anon_sym_AMP_AMP, - ACTIONS(2182), 1, + ACTIONS(2190), 1, anon_sym_PIPE_PIPE, - ACTIONS(2210), 1, + ACTIONS(2218), 1, anon_sym_PIPE, - ACTIONS(2212), 1, + ACTIONS(2220), 1, anon_sym_PIPE_AMP, - ACTIONS(2328), 1, + ACTIONS(2336), 1, anon_sym_RPAREN, - ACTIONS(2164), 2, + ACTIONS(2172), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2168), 2, + ACTIONS(2176), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2172), 2, + ACTIONS(2180), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2174), 2, + ACTIONS(2182), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2178), 2, + ACTIONS(2186), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2176), 4, + ACTIONS(2184), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, [82972] = 14, - ACTIONS(2162), 1, + ACTIONS(2170), 1, anon_sym_in, - ACTIONS(2166), 1, + ACTIONS(2174), 1, anon_sym_QMARK, - ACTIONS(2170), 1, + ACTIONS(2178), 1, anon_sym_STAR, - ACTIONS(2180), 1, + ACTIONS(2188), 1, anon_sym_AMP_AMP, - ACTIONS(2182), 1, + ACTIONS(2190), 1, anon_sym_PIPE_PIPE, - ACTIONS(2210), 1, + ACTIONS(2218), 1, anon_sym_PIPE, - ACTIONS(2212), 1, + ACTIONS(2220), 1, anon_sym_PIPE_AMP, - ACTIONS(2330), 1, + ACTIONS(2338), 1, anon_sym_SEMI, - ACTIONS(2164), 2, + ACTIONS(2172), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2168), 2, + ACTIONS(2176), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2172), 2, + ACTIONS(2180), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2174), 2, + ACTIONS(2182), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2178), 2, + ACTIONS(2186), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2176), 4, + ACTIONS(2184), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, [83023] = 14, - ACTIONS(2162), 1, + ACTIONS(2170), 1, anon_sym_in, - ACTIONS(2166), 1, + ACTIONS(2174), 1, anon_sym_QMARK, - ACTIONS(2170), 1, + ACTIONS(2178), 1, anon_sym_STAR, - ACTIONS(2180), 1, + ACTIONS(2188), 1, anon_sym_AMP_AMP, - ACTIONS(2182), 1, + ACTIONS(2190), 1, anon_sym_PIPE_PIPE, - ACTIONS(2210), 1, + ACTIONS(2218), 1, anon_sym_PIPE, - ACTIONS(2212), 1, + ACTIONS(2220), 1, anon_sym_PIPE_AMP, - ACTIONS(2332), 1, + ACTIONS(2340), 1, anon_sym_RPAREN, - ACTIONS(2164), 2, + ACTIONS(2172), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2168), 2, + ACTIONS(2176), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2172), 2, + ACTIONS(2180), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2174), 2, + ACTIONS(2182), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2178), 2, + ACTIONS(2186), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2176), 4, + ACTIONS(2184), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, [83074] = 14, - ACTIONS(2162), 1, + ACTIONS(2170), 1, anon_sym_in, - ACTIONS(2166), 1, + ACTIONS(2174), 1, anon_sym_QMARK, - ACTIONS(2170), 1, + ACTIONS(2178), 1, anon_sym_STAR, - ACTIONS(2180), 1, + ACTIONS(2188), 1, anon_sym_AMP_AMP, - ACTIONS(2182), 1, + ACTIONS(2190), 1, anon_sym_PIPE_PIPE, - ACTIONS(2210), 1, + ACTIONS(2218), 1, anon_sym_PIPE, - ACTIONS(2212), 1, + ACTIONS(2220), 1, anon_sym_PIPE_AMP, - ACTIONS(2334), 1, + ACTIONS(2342), 1, anon_sym_COLON, - ACTIONS(2164), 2, + ACTIONS(2172), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2168), 2, + ACTIONS(2176), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2172), 2, + ACTIONS(2180), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2174), 2, + ACTIONS(2182), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2178), 2, + ACTIONS(2186), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2176), 4, + ACTIONS(2184), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, [83125] = 14, - ACTIONS(2162), 1, + ACTIONS(2170), 1, anon_sym_in, - ACTIONS(2166), 1, + ACTIONS(2174), 1, anon_sym_QMARK, - ACTIONS(2170), 1, + ACTIONS(2178), 1, anon_sym_STAR, - ACTIONS(2180), 1, + ACTIONS(2188), 1, anon_sym_AMP_AMP, - ACTIONS(2182), 1, + ACTIONS(2190), 1, anon_sym_PIPE_PIPE, - ACTIONS(2210), 1, + ACTIONS(2218), 1, anon_sym_PIPE, - ACTIONS(2212), 1, + ACTIONS(2220), 1, anon_sym_PIPE_AMP, - ACTIONS(2336), 1, + ACTIONS(2344), 1, anon_sym_RPAREN, - ACTIONS(2164), 2, + ACTIONS(2172), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2168), 2, + ACTIONS(2176), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2172), 2, + ACTIONS(2180), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2174), 2, + ACTIONS(2182), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2178), 2, + ACTIONS(2186), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2176), 4, + ACTIONS(2184), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, [83176] = 14, - ACTIONS(2162), 1, + ACTIONS(2170), 1, anon_sym_in, - ACTIONS(2166), 1, + ACTIONS(2174), 1, anon_sym_QMARK, - ACTIONS(2170), 1, + ACTIONS(2178), 1, anon_sym_STAR, - ACTIONS(2180), 1, + ACTIONS(2188), 1, anon_sym_AMP_AMP, - ACTIONS(2182), 1, + ACTIONS(2190), 1, anon_sym_PIPE_PIPE, - ACTIONS(2210), 1, + ACTIONS(2218), 1, anon_sym_PIPE, - ACTIONS(2212), 1, + ACTIONS(2220), 1, anon_sym_PIPE_AMP, - ACTIONS(2338), 1, + ACTIONS(2346), 1, anon_sym_SEMI, - ACTIONS(2164), 2, + ACTIONS(2172), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2168), 2, + ACTIONS(2176), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2172), 2, + ACTIONS(2180), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2174), 2, + ACTIONS(2182), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2178), 2, + ACTIONS(2186), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2176), 4, + ACTIONS(2184), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, [83227] = 14, - ACTIONS(2162), 1, + ACTIONS(2170), 1, anon_sym_in, - ACTIONS(2166), 1, + ACTIONS(2174), 1, anon_sym_QMARK, - ACTIONS(2170), 1, + ACTIONS(2178), 1, anon_sym_STAR, - ACTIONS(2180), 1, + ACTIONS(2188), 1, anon_sym_AMP_AMP, - ACTIONS(2182), 1, + ACTIONS(2190), 1, anon_sym_PIPE_PIPE, - ACTIONS(2210), 1, + ACTIONS(2218), 1, anon_sym_PIPE, - ACTIONS(2212), 1, + ACTIONS(2220), 1, anon_sym_PIPE_AMP, - ACTIONS(2340), 1, + ACTIONS(2348), 1, anon_sym_RPAREN, - ACTIONS(2164), 2, + ACTIONS(2172), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2168), 2, + ACTIONS(2176), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2172), 2, + ACTIONS(2180), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2174), 2, + ACTIONS(2182), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2178), 2, + ACTIONS(2186), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2176), 4, + ACTIONS(2184), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, [83278] = 14, - ACTIONS(2162), 1, + ACTIONS(2170), 1, anon_sym_in, - ACTIONS(2166), 1, + ACTIONS(2174), 1, anon_sym_QMARK, - ACTIONS(2170), 1, + ACTIONS(2178), 1, anon_sym_STAR, - ACTIONS(2180), 1, + ACTIONS(2188), 1, anon_sym_AMP_AMP, - ACTIONS(2182), 1, + ACTIONS(2190), 1, anon_sym_PIPE_PIPE, - ACTIONS(2210), 1, + ACTIONS(2218), 1, anon_sym_PIPE, - ACTIONS(2212), 1, + ACTIONS(2220), 1, anon_sym_PIPE_AMP, - ACTIONS(2342), 1, + ACTIONS(2350), 1, anon_sym_RPAREN, - ACTIONS(2164), 2, + ACTIONS(2172), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2168), 2, + ACTIONS(2176), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2172), 2, + ACTIONS(2180), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2174), 2, + ACTIONS(2182), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2178), 2, + ACTIONS(2186), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2176), 4, + ACTIONS(2184), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, [83329] = 14, - ACTIONS(2162), 1, + ACTIONS(2170), 1, anon_sym_in, - ACTIONS(2166), 1, + ACTIONS(2174), 1, anon_sym_QMARK, - ACTIONS(2170), 1, + ACTIONS(2178), 1, anon_sym_STAR, - ACTIONS(2180), 1, + ACTIONS(2188), 1, anon_sym_AMP_AMP, - ACTIONS(2182), 1, + ACTIONS(2190), 1, anon_sym_PIPE_PIPE, - ACTIONS(2210), 1, + ACTIONS(2218), 1, anon_sym_PIPE, - ACTIONS(2212), 1, + ACTIONS(2220), 1, anon_sym_PIPE_AMP, - ACTIONS(2344), 1, + ACTIONS(2352), 1, anon_sym_COLON, - ACTIONS(2164), 2, + ACTIONS(2172), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2168), 2, + ACTIONS(2176), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2172), 2, + ACTIONS(2180), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2174), 2, + ACTIONS(2182), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2178), 2, + ACTIONS(2186), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2176), 4, + ACTIONS(2184), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, [83380] = 14, - ACTIONS(2162), 1, + ACTIONS(2170), 1, anon_sym_in, - ACTIONS(2166), 1, + ACTIONS(2174), 1, anon_sym_QMARK, - ACTIONS(2170), 1, + ACTIONS(2178), 1, anon_sym_STAR, - ACTIONS(2180), 1, + ACTIONS(2188), 1, anon_sym_AMP_AMP, - ACTIONS(2182), 1, + ACTIONS(2190), 1, anon_sym_PIPE_PIPE, - ACTIONS(2210), 1, + ACTIONS(2218), 1, anon_sym_PIPE, - ACTIONS(2212), 1, + ACTIONS(2220), 1, anon_sym_PIPE_AMP, - ACTIONS(2346), 1, + ACTIONS(2354), 1, anon_sym_RPAREN, - ACTIONS(2164), 2, + ACTIONS(2172), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2168), 2, + ACTIONS(2176), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2172), 2, + ACTIONS(2180), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2174), 2, + ACTIONS(2182), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2178), 2, + ACTIONS(2186), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2176), 4, + ACTIONS(2184), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, [83431] = 14, - ACTIONS(2162), 1, + ACTIONS(2170), 1, anon_sym_in, - ACTIONS(2166), 1, + ACTIONS(2174), 1, anon_sym_QMARK, - ACTIONS(2170), 1, + ACTIONS(2178), 1, anon_sym_STAR, - ACTIONS(2180), 1, + ACTIONS(2188), 1, anon_sym_AMP_AMP, - ACTIONS(2182), 1, + ACTIONS(2190), 1, anon_sym_PIPE_PIPE, - ACTIONS(2210), 1, + ACTIONS(2218), 1, anon_sym_PIPE, - ACTIONS(2212), 1, + ACTIONS(2220), 1, anon_sym_PIPE_AMP, - ACTIONS(2348), 1, + ACTIONS(2356), 1, anon_sym_SEMI, - ACTIONS(2164), 2, + ACTIONS(2172), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2168), 2, + ACTIONS(2176), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2172), 2, + ACTIONS(2180), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2174), 2, + ACTIONS(2182), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2178), 2, + ACTIONS(2186), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2176), 4, + ACTIONS(2184), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, [83482] = 14, - ACTIONS(2162), 1, + ACTIONS(2170), 1, anon_sym_in, - ACTIONS(2166), 1, + ACTIONS(2174), 1, anon_sym_QMARK, - ACTIONS(2170), 1, + ACTIONS(2178), 1, anon_sym_STAR, - ACTIONS(2180), 1, + ACTIONS(2188), 1, anon_sym_AMP_AMP, - ACTIONS(2182), 1, + ACTIONS(2190), 1, anon_sym_PIPE_PIPE, - ACTIONS(2210), 1, + ACTIONS(2218), 1, anon_sym_PIPE, - ACTIONS(2212), 1, + ACTIONS(2220), 1, anon_sym_PIPE_AMP, - ACTIONS(2350), 1, + ACTIONS(2358), 1, anon_sym_COLON, - ACTIONS(2164), 2, + ACTIONS(2172), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2168), 2, + ACTIONS(2176), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2172), 2, + ACTIONS(2180), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2174), 2, + ACTIONS(2182), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2178), 2, + ACTIONS(2186), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2176), 4, + ACTIONS(2184), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, [83533] = 14, - ACTIONS(2162), 1, + ACTIONS(2170), 1, anon_sym_in, - ACTIONS(2166), 1, + ACTIONS(2174), 1, anon_sym_QMARK, - ACTIONS(2170), 1, + ACTIONS(2178), 1, anon_sym_STAR, - ACTIONS(2180), 1, + ACTIONS(2188), 1, anon_sym_AMP_AMP, - ACTIONS(2182), 1, + ACTIONS(2190), 1, anon_sym_PIPE_PIPE, - ACTIONS(2210), 1, + ACTIONS(2218), 1, anon_sym_PIPE, - ACTIONS(2212), 1, + ACTIONS(2220), 1, anon_sym_PIPE_AMP, - ACTIONS(2352), 1, + ACTIONS(2360), 1, anon_sym_COLON, - ACTIONS(2164), 2, + ACTIONS(2172), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2168), 2, + ACTIONS(2176), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2172), 2, + ACTIONS(2180), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2174), 2, + ACTIONS(2182), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2178), 2, + ACTIONS(2186), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2176), 4, + ACTIONS(2184), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, [83584] = 14, - ACTIONS(2162), 1, + ACTIONS(2170), 1, anon_sym_in, - ACTIONS(2166), 1, + ACTIONS(2174), 1, anon_sym_QMARK, - ACTIONS(2170), 1, + ACTIONS(2178), 1, anon_sym_STAR, - ACTIONS(2180), 1, + ACTIONS(2188), 1, anon_sym_AMP_AMP, - ACTIONS(2182), 1, + ACTIONS(2190), 1, anon_sym_PIPE_PIPE, - ACTIONS(2210), 1, + ACTIONS(2218), 1, anon_sym_PIPE, - ACTIONS(2212), 1, + ACTIONS(2220), 1, anon_sym_PIPE_AMP, - ACTIONS(2354), 1, + ACTIONS(2362), 1, anon_sym_SEMI, - ACTIONS(2164), 2, + ACTIONS(2172), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2168), 2, + ACTIONS(2176), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2172), 2, + ACTIONS(2180), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2174), 2, + ACTIONS(2182), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2178), 2, + ACTIONS(2186), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2176), 4, + ACTIONS(2184), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, [83635] = 14, - ACTIONS(2162), 1, + ACTIONS(2170), 1, anon_sym_in, - ACTIONS(2166), 1, + ACTIONS(2174), 1, anon_sym_QMARK, - ACTIONS(2170), 1, + ACTIONS(2178), 1, anon_sym_STAR, - ACTIONS(2180), 1, + ACTIONS(2188), 1, anon_sym_AMP_AMP, - ACTIONS(2182), 1, + ACTIONS(2190), 1, anon_sym_PIPE_PIPE, - ACTIONS(2210), 1, + ACTIONS(2218), 1, anon_sym_PIPE, - ACTIONS(2212), 1, + ACTIONS(2220), 1, anon_sym_PIPE_AMP, - ACTIONS(2356), 1, + ACTIONS(2364), 1, anon_sym_RPAREN, - ACTIONS(2164), 2, + ACTIONS(2172), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2168), 2, + ACTIONS(2176), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2172), 2, + ACTIONS(2180), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2174), 2, + ACTIONS(2182), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2178), 2, + ACTIONS(2186), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2176), 4, + ACTIONS(2184), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, [83686] = 14, - ACTIONS(2162), 1, + ACTIONS(2170), 1, anon_sym_in, - ACTIONS(2166), 1, + ACTIONS(2174), 1, anon_sym_QMARK, - ACTIONS(2170), 1, + ACTIONS(2178), 1, anon_sym_STAR, - ACTIONS(2180), 1, + ACTIONS(2188), 1, anon_sym_AMP_AMP, - ACTIONS(2182), 1, + ACTIONS(2190), 1, anon_sym_PIPE_PIPE, - ACTIONS(2210), 1, + ACTIONS(2218), 1, anon_sym_PIPE, - ACTIONS(2212), 1, + ACTIONS(2220), 1, anon_sym_PIPE_AMP, - ACTIONS(2358), 1, + ACTIONS(2366), 1, anon_sym_RPAREN, - ACTIONS(2164), 2, + ACTIONS(2172), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2168), 2, + ACTIONS(2176), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2172), 2, + ACTIONS(2180), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2174), 2, + ACTIONS(2182), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2178), 2, + ACTIONS(2186), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2176), 4, + ACTIONS(2184), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, [83737] = 14, - ACTIONS(2162), 1, + ACTIONS(2170), 1, anon_sym_in, - ACTIONS(2166), 1, + ACTIONS(2174), 1, anon_sym_QMARK, - ACTIONS(2170), 1, + ACTIONS(2178), 1, anon_sym_STAR, - ACTIONS(2180), 1, + ACTIONS(2188), 1, anon_sym_AMP_AMP, - ACTIONS(2182), 1, + ACTIONS(2190), 1, anon_sym_PIPE_PIPE, - ACTIONS(2210), 1, + ACTIONS(2218), 1, anon_sym_PIPE, - ACTIONS(2212), 1, + ACTIONS(2220), 1, anon_sym_PIPE_AMP, - ACTIONS(2360), 1, + ACTIONS(2368), 1, anon_sym_COLON, - ACTIONS(2164), 2, + ACTIONS(2172), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2168), 2, + ACTIONS(2176), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2172), 2, + ACTIONS(2180), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2174), 2, + ACTIONS(2182), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2178), 2, + ACTIONS(2186), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2176), 4, + ACTIONS(2184), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, [83788] = 14, - ACTIONS(2162), 1, + ACTIONS(2170), 1, anon_sym_in, - ACTIONS(2166), 1, + ACTIONS(2174), 1, anon_sym_QMARK, - ACTIONS(2170), 1, + ACTIONS(2178), 1, anon_sym_STAR, - ACTIONS(2180), 1, + ACTIONS(2188), 1, anon_sym_AMP_AMP, - ACTIONS(2182), 1, + ACTIONS(2190), 1, anon_sym_PIPE_PIPE, - ACTIONS(2210), 1, + ACTIONS(2218), 1, anon_sym_PIPE, - ACTIONS(2212), 1, + ACTIONS(2220), 1, anon_sym_PIPE_AMP, - ACTIONS(2362), 1, + ACTIONS(2370), 1, anon_sym_SEMI, - ACTIONS(2164), 2, + ACTIONS(2172), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2168), 2, + ACTIONS(2176), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2172), 2, + ACTIONS(2180), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2174), 2, + ACTIONS(2182), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2178), 2, + ACTIONS(2186), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2176), 4, + ACTIONS(2184), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, [83839] = 14, - ACTIONS(2162), 1, + ACTIONS(2170), 1, anon_sym_in, - ACTIONS(2166), 1, + ACTIONS(2174), 1, anon_sym_QMARK, - ACTIONS(2170), 1, + ACTIONS(2178), 1, anon_sym_STAR, - ACTIONS(2180), 1, + ACTIONS(2188), 1, anon_sym_AMP_AMP, - ACTIONS(2182), 1, + ACTIONS(2190), 1, anon_sym_PIPE_PIPE, - ACTIONS(2210), 1, + ACTIONS(2218), 1, anon_sym_PIPE, - ACTIONS(2212), 1, + ACTIONS(2220), 1, anon_sym_PIPE_AMP, - ACTIONS(2364), 1, + ACTIONS(2372), 1, anon_sym_RPAREN, - ACTIONS(2164), 2, + ACTIONS(2172), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2168), 2, + ACTIONS(2176), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2172), 2, + ACTIONS(2180), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2174), 2, + ACTIONS(2182), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2178), 2, + ACTIONS(2186), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2176), 4, + ACTIONS(2184), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, [83890] = 14, - ACTIONS(2162), 1, + ACTIONS(2170), 1, anon_sym_in, - ACTIONS(2166), 1, + ACTIONS(2174), 1, anon_sym_QMARK, - ACTIONS(2170), 1, + ACTIONS(2178), 1, anon_sym_STAR, - ACTIONS(2180), 1, + ACTIONS(2188), 1, anon_sym_AMP_AMP, - ACTIONS(2182), 1, + ACTIONS(2190), 1, anon_sym_PIPE_PIPE, - ACTIONS(2210), 1, + ACTIONS(2218), 1, anon_sym_PIPE, - ACTIONS(2212), 1, + ACTIONS(2220), 1, anon_sym_PIPE_AMP, - ACTIONS(2366), 1, + ACTIONS(2374), 1, anon_sym_RPAREN, - ACTIONS(2164), 2, + ACTIONS(2172), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2168), 2, + ACTIONS(2176), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2172), 2, + ACTIONS(2180), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2174), 2, + ACTIONS(2182), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2178), 2, + ACTIONS(2186), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2176), 4, + ACTIONS(2184), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, [83941] = 14, - ACTIONS(2162), 1, + ACTIONS(2170), 1, anon_sym_in, - ACTIONS(2166), 1, + ACTIONS(2174), 1, anon_sym_QMARK, - ACTIONS(2170), 1, + ACTIONS(2178), 1, anon_sym_STAR, - ACTIONS(2180), 1, + ACTIONS(2188), 1, anon_sym_AMP_AMP, - ACTIONS(2182), 1, + ACTIONS(2190), 1, anon_sym_PIPE_PIPE, - ACTIONS(2210), 1, + ACTIONS(2218), 1, anon_sym_PIPE, - ACTIONS(2212), 1, + ACTIONS(2220), 1, anon_sym_PIPE_AMP, - ACTIONS(2368), 1, + ACTIONS(2376), 1, anon_sym_RPAREN, - ACTIONS(2164), 2, + ACTIONS(2172), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2168), 2, + ACTIONS(2176), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2172), 2, + ACTIONS(2180), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2174), 2, + ACTIONS(2182), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2178), 2, + ACTIONS(2186), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2176), 4, + ACTIONS(2184), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, [83992] = 14, - ACTIONS(2162), 1, + ACTIONS(2170), 1, anon_sym_in, - ACTIONS(2166), 1, + ACTIONS(2174), 1, anon_sym_QMARK, - ACTIONS(2170), 1, + ACTIONS(2178), 1, anon_sym_STAR, - ACTIONS(2180), 1, + ACTIONS(2188), 1, anon_sym_AMP_AMP, - ACTIONS(2182), 1, + ACTIONS(2190), 1, anon_sym_PIPE_PIPE, - ACTIONS(2210), 1, + ACTIONS(2218), 1, anon_sym_PIPE, - ACTIONS(2212), 1, + ACTIONS(2220), 1, anon_sym_PIPE_AMP, - ACTIONS(2370), 1, + ACTIONS(2378), 1, anon_sym_RPAREN, - ACTIONS(2164), 2, + ACTIONS(2172), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2168), 2, + ACTIONS(2176), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2172), 2, + ACTIONS(2180), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2174), 2, + ACTIONS(2182), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2178), 2, + ACTIONS(2186), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2176), 4, + ACTIONS(2184), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, [84043] = 14, - ACTIONS(2162), 1, + ACTIONS(2170), 1, anon_sym_in, - ACTIONS(2166), 1, + ACTIONS(2174), 1, anon_sym_QMARK, - ACTIONS(2170), 1, + ACTIONS(2178), 1, anon_sym_STAR, - ACTIONS(2180), 1, + ACTIONS(2188), 1, anon_sym_AMP_AMP, - ACTIONS(2182), 1, + ACTIONS(2190), 1, anon_sym_PIPE_PIPE, - ACTIONS(2210), 1, + ACTIONS(2218), 1, anon_sym_PIPE, - ACTIONS(2212), 1, + ACTIONS(2220), 1, anon_sym_PIPE_AMP, - ACTIONS(2372), 1, + ACTIONS(2380), 1, anon_sym_RPAREN, - ACTIONS(2164), 2, + ACTIONS(2172), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2168), 2, + ACTIONS(2176), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2172), 2, + ACTIONS(2180), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2174), 2, + ACTIONS(2182), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2178), 2, + ACTIONS(2186), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2176), 4, + ACTIONS(2184), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, [84094] = 14, - ACTIONS(2162), 1, + ACTIONS(2170), 1, anon_sym_in, - ACTIONS(2166), 1, + ACTIONS(2174), 1, anon_sym_QMARK, - ACTIONS(2170), 1, + ACTIONS(2178), 1, anon_sym_STAR, - ACTIONS(2180), 1, + ACTIONS(2188), 1, anon_sym_AMP_AMP, - ACTIONS(2182), 1, + ACTIONS(2190), 1, anon_sym_PIPE_PIPE, - ACTIONS(2210), 1, + ACTIONS(2218), 1, anon_sym_PIPE, - ACTIONS(2212), 1, + ACTIONS(2220), 1, anon_sym_PIPE_AMP, - ACTIONS(2374), 1, + ACTIONS(2382), 1, anon_sym_SEMI, - ACTIONS(2164), 2, + ACTIONS(2172), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2168), 2, + ACTIONS(2176), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2172), 2, + ACTIONS(2180), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2174), 2, + ACTIONS(2182), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2178), 2, + ACTIONS(2186), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2176), 4, + ACTIONS(2184), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, [84145] = 14, - ACTIONS(2162), 1, + ACTIONS(2170), 1, anon_sym_in, - ACTIONS(2166), 1, + ACTIONS(2174), 1, anon_sym_QMARK, - ACTIONS(2170), 1, + ACTIONS(2178), 1, anon_sym_STAR, - ACTIONS(2180), 1, + ACTIONS(2188), 1, anon_sym_AMP_AMP, - ACTIONS(2182), 1, + ACTIONS(2190), 1, anon_sym_PIPE_PIPE, - ACTIONS(2210), 1, + ACTIONS(2218), 1, anon_sym_PIPE, - ACTIONS(2212), 1, + ACTIONS(2220), 1, anon_sym_PIPE_AMP, - ACTIONS(2376), 1, + ACTIONS(2384), 1, anon_sym_SEMI, - ACTIONS(2164), 2, + ACTIONS(2172), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2168), 2, + ACTIONS(2176), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2172), 2, + ACTIONS(2180), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2174), 2, + ACTIONS(2182), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2178), 2, + ACTIONS(2186), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2176), 4, + ACTIONS(2184), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, [84196] = 14, - ACTIONS(2162), 1, + ACTIONS(2170), 1, anon_sym_in, - ACTIONS(2166), 1, + ACTIONS(2174), 1, anon_sym_QMARK, - ACTIONS(2170), 1, + ACTIONS(2178), 1, anon_sym_STAR, - ACTIONS(2180), 1, + ACTIONS(2188), 1, anon_sym_AMP_AMP, - ACTIONS(2182), 1, + ACTIONS(2190), 1, anon_sym_PIPE_PIPE, - ACTIONS(2210), 1, + ACTIONS(2218), 1, anon_sym_PIPE, - ACTIONS(2212), 1, + ACTIONS(2220), 1, anon_sym_PIPE_AMP, - ACTIONS(2378), 1, + ACTIONS(2386), 1, anon_sym_RPAREN, - ACTIONS(2164), 2, + ACTIONS(2172), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2168), 2, + ACTIONS(2176), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2172), 2, + ACTIONS(2180), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2174), 2, + ACTIONS(2182), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2178), 2, + ACTIONS(2186), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2176), 4, + ACTIONS(2184), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, [84247] = 14, - ACTIONS(2162), 1, + ACTIONS(2170), 1, anon_sym_in, - ACTIONS(2166), 1, + ACTIONS(2174), 1, anon_sym_QMARK, - ACTIONS(2170), 1, + ACTIONS(2178), 1, anon_sym_STAR, - ACTIONS(2180), 1, + ACTIONS(2188), 1, anon_sym_AMP_AMP, - ACTIONS(2182), 1, + ACTIONS(2190), 1, anon_sym_PIPE_PIPE, - ACTIONS(2210), 1, + ACTIONS(2218), 1, anon_sym_PIPE, - ACTIONS(2212), 1, + ACTIONS(2220), 1, anon_sym_PIPE_AMP, - ACTIONS(2380), 1, + ACTIONS(2388), 1, anon_sym_RPAREN, - ACTIONS(2164), 2, + ACTIONS(2172), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2168), 2, + ACTIONS(2176), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2172), 2, + ACTIONS(2180), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2174), 2, + ACTIONS(2182), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2178), 2, + ACTIONS(2186), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2176), 4, + ACTIONS(2184), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, [84298] = 14, - ACTIONS(2162), 1, + ACTIONS(2170), 1, anon_sym_in, - ACTIONS(2166), 1, + ACTIONS(2174), 1, anon_sym_QMARK, - ACTIONS(2170), 1, + ACTIONS(2178), 1, anon_sym_STAR, - ACTIONS(2180), 1, + ACTIONS(2188), 1, anon_sym_AMP_AMP, - ACTIONS(2182), 1, + ACTIONS(2190), 1, anon_sym_PIPE_PIPE, - ACTIONS(2210), 1, + ACTIONS(2218), 1, anon_sym_PIPE, - ACTIONS(2212), 1, + ACTIONS(2220), 1, anon_sym_PIPE_AMP, - ACTIONS(2382), 1, + ACTIONS(2390), 1, anon_sym_RPAREN, - ACTIONS(2164), 2, + ACTIONS(2172), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2168), 2, + ACTIONS(2176), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2172), 2, + ACTIONS(2180), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2174), 2, + ACTIONS(2182), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2178), 2, + ACTIONS(2186), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2176), 4, + ACTIONS(2184), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, [84349] = 14, - ACTIONS(2162), 1, + ACTIONS(2170), 1, anon_sym_in, - ACTIONS(2166), 1, + ACTIONS(2174), 1, anon_sym_QMARK, - ACTIONS(2170), 1, + ACTIONS(2178), 1, anon_sym_STAR, - ACTIONS(2180), 1, + ACTIONS(2188), 1, anon_sym_AMP_AMP, - ACTIONS(2182), 1, + ACTIONS(2190), 1, anon_sym_PIPE_PIPE, - ACTIONS(2210), 1, + ACTIONS(2218), 1, anon_sym_PIPE, - ACTIONS(2212), 1, + ACTIONS(2220), 1, anon_sym_PIPE_AMP, - ACTIONS(2384), 1, + ACTIONS(2392), 1, anon_sym_RPAREN, - ACTIONS(2164), 2, + ACTIONS(2172), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2168), 2, + ACTIONS(2176), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2172), 2, + ACTIONS(2180), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2174), 2, + ACTIONS(2182), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2178), 2, + ACTIONS(2186), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2176), 4, + ACTIONS(2184), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, [84400] = 14, - ACTIONS(2162), 1, + ACTIONS(2170), 1, anon_sym_in, - ACTIONS(2166), 1, + ACTIONS(2174), 1, anon_sym_QMARK, - ACTIONS(2170), 1, + ACTIONS(2178), 1, anon_sym_STAR, - ACTIONS(2180), 1, + ACTIONS(2188), 1, anon_sym_AMP_AMP, - ACTIONS(2182), 1, + ACTIONS(2190), 1, anon_sym_PIPE_PIPE, - ACTIONS(2210), 1, + ACTIONS(2218), 1, anon_sym_PIPE, - ACTIONS(2212), 1, + ACTIONS(2220), 1, anon_sym_PIPE_AMP, - ACTIONS(2386), 1, + ACTIONS(2394), 1, anon_sym_RPAREN, - ACTIONS(2164), 2, + ACTIONS(2172), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2168), 2, + ACTIONS(2176), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2172), 2, + ACTIONS(2180), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2174), 2, + ACTIONS(2182), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2178), 2, + ACTIONS(2186), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2176), 4, + ACTIONS(2184), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, [84451] = 14, - ACTIONS(2162), 1, + ACTIONS(2170), 1, anon_sym_in, - ACTIONS(2166), 1, + ACTIONS(2174), 1, anon_sym_QMARK, - ACTIONS(2170), 1, + ACTIONS(2178), 1, anon_sym_STAR, - ACTIONS(2180), 1, + ACTIONS(2188), 1, anon_sym_AMP_AMP, - ACTIONS(2182), 1, + ACTIONS(2190), 1, anon_sym_PIPE_PIPE, - ACTIONS(2210), 1, + ACTIONS(2218), 1, anon_sym_PIPE, - ACTIONS(2212), 1, + ACTIONS(2220), 1, anon_sym_PIPE_AMP, - ACTIONS(2388), 1, + ACTIONS(2396), 1, anon_sym_RPAREN, - ACTIONS(2164), 2, + ACTIONS(2172), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2168), 2, + ACTIONS(2176), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2172), 2, + ACTIONS(2180), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2174), 2, + ACTIONS(2182), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2178), 2, + ACTIONS(2186), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2176), 4, + ACTIONS(2184), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, [84502] = 14, - ACTIONS(2162), 1, + ACTIONS(2170), 1, anon_sym_in, - ACTIONS(2166), 1, + ACTIONS(2174), 1, anon_sym_QMARK, - ACTIONS(2170), 1, + ACTIONS(2178), 1, anon_sym_STAR, - ACTIONS(2180), 1, + ACTIONS(2188), 1, anon_sym_AMP_AMP, - ACTIONS(2182), 1, + ACTIONS(2190), 1, anon_sym_PIPE_PIPE, - ACTIONS(2210), 1, + ACTIONS(2218), 1, anon_sym_PIPE, - ACTIONS(2212), 1, + ACTIONS(2220), 1, anon_sym_PIPE_AMP, - ACTIONS(2390), 1, + ACTIONS(2398), 1, anon_sym_RPAREN, - ACTIONS(2164), 2, + ACTIONS(2172), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2168), 2, + ACTIONS(2176), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2172), 2, + ACTIONS(2180), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2174), 2, + ACTIONS(2182), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2178), 2, + ACTIONS(2186), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2176), 4, + ACTIONS(2184), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, [84553] = 14, - ACTIONS(2162), 1, + ACTIONS(2170), 1, anon_sym_in, - ACTIONS(2166), 1, + ACTIONS(2174), 1, anon_sym_QMARK, - ACTIONS(2170), 1, + ACTIONS(2178), 1, anon_sym_STAR, - ACTIONS(2180), 1, + ACTIONS(2188), 1, anon_sym_AMP_AMP, - ACTIONS(2182), 1, + ACTIONS(2190), 1, anon_sym_PIPE_PIPE, - ACTIONS(2210), 1, + ACTIONS(2218), 1, anon_sym_PIPE, - ACTIONS(2212), 1, + ACTIONS(2220), 1, anon_sym_PIPE_AMP, - ACTIONS(2392), 1, + ACTIONS(2400), 1, anon_sym_RPAREN, - ACTIONS(2164), 2, + ACTIONS(2172), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2168), 2, + ACTIONS(2176), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2172), 2, + ACTIONS(2180), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2174), 2, + ACTIONS(2182), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2178), 2, + ACTIONS(2186), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2176), 4, + ACTIONS(2184), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, [84604] = 14, - ACTIONS(2162), 1, + ACTIONS(2170), 1, anon_sym_in, - ACTIONS(2166), 1, + ACTIONS(2174), 1, anon_sym_QMARK, - ACTIONS(2170), 1, + ACTIONS(2178), 1, anon_sym_STAR, - ACTIONS(2180), 1, + ACTIONS(2188), 1, anon_sym_AMP_AMP, - ACTIONS(2182), 1, + ACTIONS(2190), 1, anon_sym_PIPE_PIPE, - ACTIONS(2210), 1, + ACTIONS(2218), 1, anon_sym_PIPE, - ACTIONS(2212), 1, + ACTIONS(2220), 1, anon_sym_PIPE_AMP, - ACTIONS(2394), 1, + ACTIONS(2402), 1, anon_sym_SEMI, - ACTIONS(2164), 2, + ACTIONS(2172), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2168), 2, + ACTIONS(2176), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2172), 2, + ACTIONS(2180), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2174), 2, + ACTIONS(2182), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2178), 2, + ACTIONS(2186), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2176), 4, + ACTIONS(2184), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, [84655] = 14, - ACTIONS(2162), 1, + ACTIONS(2170), 1, anon_sym_in, - ACTIONS(2166), 1, + ACTIONS(2174), 1, anon_sym_QMARK, - ACTIONS(2170), 1, + ACTIONS(2178), 1, anon_sym_STAR, - ACTIONS(2180), 1, + ACTIONS(2188), 1, anon_sym_AMP_AMP, - ACTIONS(2182), 1, + ACTIONS(2190), 1, anon_sym_PIPE_PIPE, - ACTIONS(2210), 1, + ACTIONS(2218), 1, anon_sym_PIPE, - ACTIONS(2212), 1, + ACTIONS(2220), 1, anon_sym_PIPE_AMP, - ACTIONS(2396), 1, + ACTIONS(2404), 1, anon_sym_SEMI, - ACTIONS(2164), 2, + ACTIONS(2172), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2168), 2, + ACTIONS(2176), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2172), 2, + ACTIONS(2180), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2174), 2, + ACTIONS(2182), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2178), 2, + ACTIONS(2186), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2176), 4, + ACTIONS(2184), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, [84706] = 14, - ACTIONS(2162), 1, + ACTIONS(2170), 1, anon_sym_in, - ACTIONS(2166), 1, + ACTIONS(2174), 1, anon_sym_QMARK, - ACTIONS(2170), 1, + ACTIONS(2178), 1, anon_sym_STAR, - ACTIONS(2180), 1, + ACTIONS(2188), 1, anon_sym_AMP_AMP, - ACTIONS(2182), 1, + ACTIONS(2190), 1, anon_sym_PIPE_PIPE, - ACTIONS(2210), 1, + ACTIONS(2218), 1, anon_sym_PIPE, - ACTIONS(2212), 1, + ACTIONS(2220), 1, anon_sym_PIPE_AMP, - ACTIONS(2398), 1, + ACTIONS(2406), 1, anon_sym_SEMI, - ACTIONS(2164), 2, + ACTIONS(2172), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2168), 2, + ACTIONS(2176), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2172), 2, + ACTIONS(2180), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2174), 2, + ACTIONS(2182), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2178), 2, + ACTIONS(2186), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2176), 4, + ACTIONS(2184), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, [84757] = 14, - ACTIONS(2162), 1, + ACTIONS(2170), 1, anon_sym_in, - ACTIONS(2166), 1, + ACTIONS(2174), 1, anon_sym_QMARK, - ACTIONS(2170), 1, + ACTIONS(2178), 1, anon_sym_STAR, - ACTIONS(2180), 1, + ACTIONS(2188), 1, anon_sym_AMP_AMP, - ACTIONS(2182), 1, + ACTIONS(2190), 1, anon_sym_PIPE_PIPE, - ACTIONS(2210), 1, + ACTIONS(2218), 1, anon_sym_PIPE, - ACTIONS(2212), 1, + ACTIONS(2220), 1, anon_sym_PIPE_AMP, - ACTIONS(2400), 1, + ACTIONS(2408), 1, anon_sym_RPAREN, - ACTIONS(2164), 2, + ACTIONS(2172), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2168), 2, + ACTIONS(2176), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2172), 2, + ACTIONS(2180), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2174), 2, + ACTIONS(2182), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2178), 2, + ACTIONS(2186), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2176), 4, + ACTIONS(2184), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, [84808] = 14, - ACTIONS(2162), 1, + ACTIONS(2170), 1, anon_sym_in, - ACTIONS(2166), 1, + ACTIONS(2174), 1, anon_sym_QMARK, - ACTIONS(2170), 1, + ACTIONS(2178), 1, anon_sym_STAR, - ACTIONS(2180), 1, + ACTIONS(2188), 1, anon_sym_AMP_AMP, - ACTIONS(2182), 1, + ACTIONS(2190), 1, anon_sym_PIPE_PIPE, - ACTIONS(2210), 1, + ACTIONS(2218), 1, anon_sym_PIPE, - ACTIONS(2212), 1, + ACTIONS(2220), 1, anon_sym_PIPE_AMP, - ACTIONS(2402), 1, + ACTIONS(2410), 1, anon_sym_SEMI, - ACTIONS(2164), 2, + ACTIONS(2172), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2168), 2, + ACTIONS(2176), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2172), 2, + ACTIONS(2180), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2174), 2, + ACTIONS(2182), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2178), 2, + ACTIONS(2186), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2176), 4, + ACTIONS(2184), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, [84859] = 14, - ACTIONS(2162), 1, + ACTIONS(2170), 1, anon_sym_in, - ACTIONS(2166), 1, + ACTIONS(2174), 1, anon_sym_QMARK, - ACTIONS(2170), 1, + ACTIONS(2178), 1, anon_sym_STAR, - ACTIONS(2180), 1, + ACTIONS(2188), 1, anon_sym_AMP_AMP, - ACTIONS(2182), 1, + ACTIONS(2190), 1, anon_sym_PIPE_PIPE, - ACTIONS(2210), 1, + ACTIONS(2218), 1, anon_sym_PIPE, - ACTIONS(2212), 1, + ACTIONS(2220), 1, anon_sym_PIPE_AMP, - ACTIONS(2404), 1, + ACTIONS(2412), 1, anon_sym_COLON, - ACTIONS(2164), 2, + ACTIONS(2172), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2168), 2, + ACTIONS(2176), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2172), 2, + ACTIONS(2180), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2174), 2, + ACTIONS(2182), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2178), 2, + ACTIONS(2186), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2176), 4, + ACTIONS(2184), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, [84910] = 14, - ACTIONS(2162), 1, + ACTIONS(2170), 1, anon_sym_in, - ACTIONS(2166), 1, + ACTIONS(2174), 1, anon_sym_QMARK, - ACTIONS(2170), 1, + ACTIONS(2178), 1, anon_sym_STAR, - ACTIONS(2180), 1, + ACTIONS(2188), 1, anon_sym_AMP_AMP, - ACTIONS(2182), 1, + ACTIONS(2190), 1, anon_sym_PIPE_PIPE, - ACTIONS(2210), 1, + ACTIONS(2218), 1, anon_sym_PIPE, - ACTIONS(2212), 1, + ACTIONS(2220), 1, anon_sym_PIPE_AMP, - ACTIONS(2406), 1, + ACTIONS(2414), 1, anon_sym_COLON, - ACTIONS(2164), 2, + ACTIONS(2172), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2168), 2, + ACTIONS(2176), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2172), 2, + ACTIONS(2180), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2174), 2, + ACTIONS(2182), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2178), 2, + ACTIONS(2186), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2176), 4, + ACTIONS(2184), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, [84961] = 14, - ACTIONS(2162), 1, + ACTIONS(2170), 1, anon_sym_in, - ACTIONS(2166), 1, + ACTIONS(2174), 1, anon_sym_QMARK, - ACTIONS(2170), 1, + ACTIONS(2178), 1, anon_sym_STAR, - ACTIONS(2180), 1, + ACTIONS(2188), 1, anon_sym_AMP_AMP, - ACTIONS(2182), 1, + ACTIONS(2190), 1, anon_sym_PIPE_PIPE, - ACTIONS(2210), 1, + ACTIONS(2218), 1, anon_sym_PIPE, - ACTIONS(2212), 1, + ACTIONS(2220), 1, anon_sym_PIPE_AMP, - ACTIONS(2408), 1, + ACTIONS(2416), 1, anon_sym_COLON, - ACTIONS(2164), 2, + ACTIONS(2172), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2168), 2, + ACTIONS(2176), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2172), 2, + ACTIONS(2180), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2174), 2, + ACTIONS(2182), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2178), 2, + ACTIONS(2186), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2176), 4, + ACTIONS(2184), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, [85012] = 14, - ACTIONS(2162), 1, + ACTIONS(2170), 1, anon_sym_in, - ACTIONS(2166), 1, + ACTIONS(2174), 1, anon_sym_QMARK, - ACTIONS(2170), 1, + ACTIONS(2178), 1, anon_sym_STAR, - ACTIONS(2180), 1, + ACTIONS(2188), 1, anon_sym_AMP_AMP, - ACTIONS(2182), 1, + ACTIONS(2190), 1, anon_sym_PIPE_PIPE, - ACTIONS(2210), 1, + ACTIONS(2218), 1, anon_sym_PIPE, - ACTIONS(2212), 1, + ACTIONS(2220), 1, anon_sym_PIPE_AMP, - ACTIONS(2410), 1, + ACTIONS(2418), 1, anon_sym_RPAREN, - ACTIONS(2164), 2, + ACTIONS(2172), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2168), 2, + ACTIONS(2176), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2172), 2, + ACTIONS(2180), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2174), 2, + ACTIONS(2182), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2178), 2, + ACTIONS(2186), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2176), 4, + ACTIONS(2184), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, [85063] = 14, - ACTIONS(2162), 1, + ACTIONS(2170), 1, anon_sym_in, - ACTIONS(2166), 1, + ACTIONS(2174), 1, anon_sym_QMARK, - ACTIONS(2170), 1, + ACTIONS(2178), 1, anon_sym_STAR, - ACTIONS(2180), 1, + ACTIONS(2188), 1, anon_sym_AMP_AMP, - ACTIONS(2182), 1, + ACTIONS(2190), 1, anon_sym_PIPE_PIPE, - ACTIONS(2210), 1, + ACTIONS(2218), 1, anon_sym_PIPE, - ACTIONS(2212), 1, + ACTIONS(2220), 1, anon_sym_PIPE_AMP, - ACTIONS(2412), 1, + ACTIONS(2420), 1, anon_sym_SEMI, - ACTIONS(2164), 2, + ACTIONS(2172), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2168), 2, + ACTIONS(2176), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2172), 2, + ACTIONS(2180), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2174), 2, + ACTIONS(2182), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2178), 2, + ACTIONS(2186), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2176), 4, + ACTIONS(2184), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, [85114] = 14, - ACTIONS(2162), 1, + ACTIONS(2170), 1, anon_sym_in, - ACTIONS(2166), 1, + ACTIONS(2174), 1, anon_sym_QMARK, - ACTIONS(2170), 1, + ACTIONS(2178), 1, anon_sym_STAR, - ACTIONS(2180), 1, + ACTIONS(2188), 1, anon_sym_AMP_AMP, - ACTIONS(2182), 1, + ACTIONS(2190), 1, anon_sym_PIPE_PIPE, - ACTIONS(2210), 1, + ACTIONS(2218), 1, anon_sym_PIPE, - ACTIONS(2212), 1, + ACTIONS(2220), 1, anon_sym_PIPE_AMP, - ACTIONS(2414), 1, + ACTIONS(2422), 1, anon_sym_RPAREN, - ACTIONS(2164), 2, + ACTIONS(2172), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2168), 2, + ACTIONS(2176), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2172), 2, + ACTIONS(2180), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2174), 2, + ACTIONS(2182), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2178), 2, + ACTIONS(2186), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2176), 4, + ACTIONS(2184), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, [85165] = 14, - ACTIONS(2162), 1, + ACTIONS(2170), 1, anon_sym_in, - ACTIONS(2166), 1, + ACTIONS(2174), 1, anon_sym_QMARK, - ACTIONS(2170), 1, + ACTIONS(2178), 1, anon_sym_STAR, - ACTIONS(2180), 1, + ACTIONS(2188), 1, anon_sym_AMP_AMP, - ACTIONS(2182), 1, + ACTIONS(2190), 1, anon_sym_PIPE_PIPE, - ACTIONS(2210), 1, + ACTIONS(2218), 1, anon_sym_PIPE, - ACTIONS(2212), 1, + ACTIONS(2220), 1, anon_sym_PIPE_AMP, - ACTIONS(2416), 1, + ACTIONS(2424), 1, anon_sym_RPAREN, - ACTIONS(2164), 2, + ACTIONS(2172), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2168), 2, + ACTIONS(2176), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2172), 2, + ACTIONS(2180), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2174), 2, + ACTIONS(2182), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2178), 2, + ACTIONS(2186), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2176), 4, + ACTIONS(2184), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, [85216] = 14, - ACTIONS(2162), 1, + ACTIONS(2170), 1, anon_sym_in, - ACTIONS(2166), 1, + ACTIONS(2174), 1, anon_sym_QMARK, - ACTIONS(2170), 1, + ACTIONS(2178), 1, anon_sym_STAR, - ACTIONS(2180), 1, + ACTIONS(2188), 1, anon_sym_AMP_AMP, - ACTIONS(2182), 1, + ACTIONS(2190), 1, anon_sym_PIPE_PIPE, - ACTIONS(2210), 1, + ACTIONS(2218), 1, anon_sym_PIPE, - ACTIONS(2212), 1, + ACTIONS(2220), 1, anon_sym_PIPE_AMP, - ACTIONS(2418), 1, + ACTIONS(2426), 1, anon_sym_SEMI, - ACTIONS(2164), 2, + ACTIONS(2172), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2168), 2, + ACTIONS(2176), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2172), 2, + ACTIONS(2180), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2174), 2, + ACTIONS(2182), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2178), 2, + ACTIONS(2186), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2176), 4, + ACTIONS(2184), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, [85267] = 14, - ACTIONS(2162), 1, + ACTIONS(2170), 1, anon_sym_in, - ACTIONS(2166), 1, + ACTIONS(2174), 1, anon_sym_QMARK, - ACTIONS(2170), 1, + ACTIONS(2178), 1, anon_sym_STAR, - ACTIONS(2180), 1, + ACTIONS(2188), 1, anon_sym_AMP_AMP, - ACTIONS(2182), 1, + ACTIONS(2190), 1, anon_sym_PIPE_PIPE, - ACTIONS(2210), 1, + ACTIONS(2218), 1, anon_sym_PIPE, - ACTIONS(2212), 1, + ACTIONS(2220), 1, anon_sym_PIPE_AMP, - ACTIONS(2420), 1, + ACTIONS(2428), 1, anon_sym_SEMI, - ACTIONS(2164), 2, + ACTIONS(2172), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2168), 2, + ACTIONS(2176), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2172), 2, + ACTIONS(2180), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2174), 2, + ACTIONS(2182), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2178), 2, + ACTIONS(2186), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2176), 4, + ACTIONS(2184), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, [85318] = 13, - ACTIONS(826), 1, + ACTIONS(834), 1, anon_sym_STAR, - ACTIONS(2210), 1, + ACTIONS(2218), 1, anon_sym_PIPE, - ACTIONS(2212), 1, + ACTIONS(2220), 1, anon_sym_PIPE_AMP, - ACTIONS(2422), 1, + ACTIONS(2430), 1, anon_sym_in, - ACTIONS(2424), 1, + ACTIONS(2432), 1, anon_sym_QMARK, - ACTIONS(2436), 1, + ACTIONS(2444), 1, anon_sym_AMP_AMP, - ACTIONS(2438), 1, + ACTIONS(2446), 1, anon_sym_PIPE_PIPE, - ACTIONS(822), 2, + ACTIONS(830), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2426), 2, + ACTIONS(2434), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2428), 2, + ACTIONS(2436), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2430), 2, + ACTIONS(2438), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2434), 2, + ACTIONS(2442), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2432), 4, + ACTIONS(2440), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, [85366] = 13, - ACTIONS(874), 1, + ACTIONS(882), 1, anon_sym_STAR, - ACTIONS(2210), 1, + ACTIONS(2218), 1, anon_sym_PIPE, - ACTIONS(2212), 1, + ACTIONS(2220), 1, anon_sym_PIPE_AMP, - ACTIONS(2440), 1, + ACTIONS(2448), 1, anon_sym_in, - ACTIONS(2442), 1, + ACTIONS(2450), 1, anon_sym_QMARK, - ACTIONS(2454), 1, + ACTIONS(2462), 1, anon_sym_AMP_AMP, - ACTIONS(2456), 1, + ACTIONS(2464), 1, anon_sym_PIPE_PIPE, - ACTIONS(866), 2, + ACTIONS(874), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2444), 2, + ACTIONS(2452), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2446), 2, + ACTIONS(2454), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2448), 2, + ACTIONS(2456), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2452), 2, + ACTIONS(2460), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2450), 4, + ACTIONS(2458), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, [85414] = 13, - ACTIONS(1937), 1, + ACTIONS(1945), 1, anon_sym_STAR, - ACTIONS(1941), 1, - anon_sym_in, ACTIONS(1949), 1, + anon_sym_in, + ACTIONS(1957), 1, anon_sym_QMARK, - ACTIONS(1955), 1, + ACTIONS(1963), 1, anon_sym_AMP_AMP, - ACTIONS(1957), 1, + ACTIONS(1965), 1, anon_sym_PIPE_PIPE, - ACTIONS(2210), 1, + ACTIONS(2218), 1, anon_sym_PIPE, - ACTIONS(2212), 1, + ACTIONS(2220), 1, anon_sym_PIPE_AMP, - ACTIONS(1935), 2, + ACTIONS(1943), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(1943), 2, + ACTIONS(1951), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1953), 2, + ACTIONS(1961), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2458), 2, + ACTIONS(2466), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2460), 2, + ACTIONS(2468), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1951), 4, + ACTIONS(1959), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, [85462] = 13, - ACTIONS(2070), 1, + ACTIONS(2078), 1, anon_sym_STAR, - ACTIONS(2210), 1, + ACTIONS(2218), 1, anon_sym_PIPE, - ACTIONS(2212), 1, + ACTIONS(2220), 1, anon_sym_PIPE_AMP, - ACTIONS(2462), 1, + ACTIONS(2470), 1, anon_sym_in, - ACTIONS(2464), 1, + ACTIONS(2472), 1, anon_sym_QMARK, - ACTIONS(2476), 1, + ACTIONS(2484), 1, anon_sym_AMP_AMP, - ACTIONS(2478), 1, + ACTIONS(2486), 1, anon_sym_PIPE_PIPE, - ACTIONS(2066), 2, + ACTIONS(2074), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2466), 2, + ACTIONS(2474), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2468), 2, + ACTIONS(2476), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2470), 2, + ACTIONS(2478), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2474), 2, + ACTIONS(2482), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2472), 4, + ACTIONS(2480), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, [85510] = 13, - ACTIONS(2152), 1, + ACTIONS(2160), 1, anon_sym_STAR, - ACTIONS(2210), 1, + ACTIONS(2218), 1, anon_sym_PIPE, - ACTIONS(2212), 1, + ACTIONS(2220), 1, anon_sym_PIPE_AMP, - ACTIONS(2480), 1, + ACTIONS(2488), 1, anon_sym_in, - ACTIONS(2482), 1, + ACTIONS(2490), 1, anon_sym_QMARK, - ACTIONS(2494), 1, + ACTIONS(2502), 1, anon_sym_AMP_AMP, - ACTIONS(2496), 1, + ACTIONS(2504), 1, anon_sym_PIPE_PIPE, - ACTIONS(2146), 2, + ACTIONS(2154), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2484), 2, + ACTIONS(2492), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2486), 2, + ACTIONS(2494), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2488), 2, + ACTIONS(2496), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2492), 2, + ACTIONS(2500), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2490), 4, + ACTIONS(2498), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, [85558] = 13, - ACTIONS(1237), 1, + ACTIONS(1245), 1, anon_sym_STAR, - ACTIONS(2210), 1, + ACTIONS(2218), 1, anon_sym_PIPE, - ACTIONS(2212), 1, + ACTIONS(2220), 1, anon_sym_PIPE_AMP, - ACTIONS(2498), 1, + ACTIONS(2506), 1, anon_sym_in, - ACTIONS(2500), 1, + ACTIONS(2508), 1, anon_sym_QMARK, - ACTIONS(2512), 1, + ACTIONS(2520), 1, anon_sym_AMP_AMP, - ACTIONS(2514), 1, + ACTIONS(2522), 1, anon_sym_PIPE_PIPE, - ACTIONS(1233), 2, + ACTIONS(1241), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2502), 2, + ACTIONS(2510), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2504), 2, + ACTIONS(2512), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2506), 2, + ACTIONS(2514), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2510), 2, + ACTIONS(2518), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2508), 4, + ACTIONS(2516), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, [85606] = 13, - ACTIONS(1801), 1, + ACTIONS(1809), 1, anon_sym_STAR, - ACTIONS(2210), 1, + ACTIONS(2218), 1, anon_sym_PIPE, - ACTIONS(2212), 1, + ACTIONS(2220), 1, anon_sym_PIPE_AMP, - ACTIONS(2516), 1, + ACTIONS(2524), 1, anon_sym_in, - ACTIONS(2518), 1, + ACTIONS(2526), 1, anon_sym_QMARK, - ACTIONS(2530), 1, + ACTIONS(2538), 1, anon_sym_AMP_AMP, - ACTIONS(2532), 1, + ACTIONS(2540), 1, anon_sym_PIPE_PIPE, - ACTIONS(1805), 2, + ACTIONS(1813), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2520), 2, + ACTIONS(2528), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2522), 2, + ACTIONS(2530), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2524), 2, + ACTIONS(2532), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2528), 2, + ACTIONS(2536), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2526), 4, + ACTIONS(2534), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, [85654] = 13, - ACTIONS(2042), 1, + ACTIONS(2050), 1, anon_sym_STAR, - ACTIONS(2210), 1, + ACTIONS(2218), 1, anon_sym_PIPE, - ACTIONS(2212), 1, + ACTIONS(2220), 1, anon_sym_PIPE_AMP, - ACTIONS(2534), 1, + ACTIONS(2542), 1, anon_sym_in, - ACTIONS(2536), 1, + ACTIONS(2544), 1, anon_sym_QMARK, - ACTIONS(2548), 1, + ACTIONS(2556), 1, anon_sym_AMP_AMP, - ACTIONS(2550), 1, + ACTIONS(2558), 1, anon_sym_PIPE_PIPE, - ACTIONS(2048), 2, + ACTIONS(2056), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2538), 2, + ACTIONS(2546), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2540), 2, + ACTIONS(2548), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2542), 2, + ACTIONS(2550), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2546), 2, + ACTIONS(2554), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2544), 4, + ACTIONS(2552), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, [85702] = 13, - ACTIONS(1089), 1, + ACTIONS(1097), 1, anon_sym_STAR, - ACTIONS(1101), 1, + ACTIONS(1109), 1, anon_sym_QMARK, - ACTIONS(1103), 1, + ACTIONS(1111), 1, anon_sym_AMP_AMP, - ACTIONS(1105), 1, + ACTIONS(1113), 1, anon_sym_PIPE_PIPE, - ACTIONS(2210), 1, + ACTIONS(2218), 1, anon_sym_PIPE, - ACTIONS(2212), 1, + ACTIONS(2220), 1, anon_sym_PIPE_AMP, - ACTIONS(2552), 1, + ACTIONS(2560), 1, anon_sym_in, - ACTIONS(1087), 2, + ACTIONS(1095), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(1093), 2, + ACTIONS(1101), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1097), 2, + ACTIONS(1105), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2554), 2, + ACTIONS(2562), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2556), 2, + ACTIONS(2564), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1095), 4, + ACTIONS(1103), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, [85750] = 13, - ACTIONS(1015), 1, + ACTIONS(1023), 1, anon_sym_STAR, - ACTIONS(2210), 1, + ACTIONS(2218), 1, anon_sym_PIPE, - ACTIONS(2212), 1, + ACTIONS(2220), 1, anon_sym_PIPE_AMP, - ACTIONS(2558), 1, + ACTIONS(2566), 1, anon_sym_in, - ACTIONS(2560), 1, + ACTIONS(2568), 1, anon_sym_QMARK, - ACTIONS(2572), 1, + ACTIONS(2580), 1, anon_sym_AMP_AMP, - ACTIONS(2574), 1, + ACTIONS(2582), 1, anon_sym_PIPE_PIPE, - ACTIONS(1007), 2, + ACTIONS(1015), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2562), 2, + ACTIONS(2570), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2564), 2, + ACTIONS(2572), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2566), 2, + ACTIONS(2574), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2570), 2, + ACTIONS(2578), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2568), 4, + ACTIONS(2576), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, [85798] = 13, - ACTIONS(1311), 1, + ACTIONS(1319), 1, anon_sym_STAR, - ACTIONS(2210), 1, + ACTIONS(2218), 1, anon_sym_PIPE, - ACTIONS(2212), 1, + ACTIONS(2220), 1, anon_sym_PIPE_AMP, - ACTIONS(2576), 1, + ACTIONS(2584), 1, anon_sym_in, - ACTIONS(2578), 1, + ACTIONS(2586), 1, anon_sym_QMARK, - ACTIONS(2590), 1, + ACTIONS(2598), 1, anon_sym_AMP_AMP, - ACTIONS(2592), 1, + ACTIONS(2600), 1, anon_sym_PIPE_PIPE, - ACTIONS(1321), 2, + ACTIONS(1329), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2580), 2, + ACTIONS(2588), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2582), 2, + ACTIONS(2590), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2584), 2, + ACTIONS(2592), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2588), 2, + ACTIONS(2596), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2586), 4, + ACTIONS(2594), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, [85846] = 13, - ACTIONS(1159), 1, + ACTIONS(1167), 1, anon_sym_QMARK, - ACTIONS(1163), 1, + ACTIONS(1171), 1, anon_sym_STAR, - ACTIONS(1173), 1, + ACTIONS(1181), 1, anon_sym_AMP_AMP, - ACTIONS(1175), 1, + ACTIONS(1183), 1, anon_sym_PIPE_PIPE, - ACTIONS(2210), 1, + ACTIONS(2218), 1, anon_sym_PIPE, - ACTIONS(2212), 1, + ACTIONS(2220), 1, anon_sym_PIPE_AMP, - ACTIONS(2594), 1, + ACTIONS(2602), 1, anon_sym_in, - ACTIONS(1153), 2, + ACTIONS(1161), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1161), 2, + ACTIONS(1169), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(1165), 2, + ACTIONS(1173), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1171), 2, + ACTIONS(1179), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2596), 2, + ACTIONS(2604), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1169), 4, + ACTIONS(1177), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, [85894] = 13, - ACTIONS(2162), 1, + ACTIONS(2170), 1, anon_sym_in, - ACTIONS(2166), 1, + ACTIONS(2174), 1, anon_sym_QMARK, - ACTIONS(2170), 1, + ACTIONS(2178), 1, anon_sym_STAR, - ACTIONS(2180), 1, + ACTIONS(2188), 1, anon_sym_AMP_AMP, - ACTIONS(2182), 1, + ACTIONS(2190), 1, anon_sym_PIPE_PIPE, - ACTIONS(2210), 1, + ACTIONS(2218), 1, anon_sym_PIPE, - ACTIONS(2212), 1, + ACTIONS(2220), 1, anon_sym_PIPE_AMP, - ACTIONS(2164), 2, + ACTIONS(2172), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2168), 2, + ACTIONS(2176), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2172), 2, + ACTIONS(2180), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2174), 2, + ACTIONS(2182), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2178), 2, + ACTIONS(2186), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2176), 4, + ACTIONS(2184), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, [85942] = 13, - ACTIONS(1047), 1, + ACTIONS(1055), 1, anon_sym_STAR, - ACTIONS(2210), 1, + ACTIONS(2218), 1, anon_sym_PIPE, - ACTIONS(2212), 1, + ACTIONS(2220), 1, anon_sym_PIPE_AMP, - ACTIONS(2598), 1, + ACTIONS(2606), 1, anon_sym_in, - ACTIONS(2600), 1, + ACTIONS(2608), 1, anon_sym_QMARK, - ACTIONS(2612), 1, + ACTIONS(2620), 1, anon_sym_AMP_AMP, - ACTIONS(2614), 1, + ACTIONS(2622), 1, anon_sym_PIPE_PIPE, - ACTIONS(1051), 2, + ACTIONS(1059), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2602), 2, + ACTIONS(2610), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2604), 2, + ACTIONS(2612), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2606), 2, + ACTIONS(2614), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2610), 2, + ACTIONS(2618), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2608), 4, + ACTIONS(2616), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, [85990] = 13, - ACTIONS(1693), 1, + ACTIONS(1701), 1, anon_sym_STAR, - ACTIONS(2210), 1, + ACTIONS(2218), 1, anon_sym_PIPE, - ACTIONS(2212), 1, + ACTIONS(2220), 1, anon_sym_PIPE_AMP, - ACTIONS(2616), 1, + ACTIONS(2624), 1, anon_sym_in, - ACTIONS(2618), 1, + ACTIONS(2626), 1, anon_sym_QMARK, - ACTIONS(2630), 1, + ACTIONS(2638), 1, anon_sym_AMP_AMP, - ACTIONS(2632), 1, + ACTIONS(2640), 1, anon_sym_PIPE_PIPE, - ACTIONS(1689), 2, + ACTIONS(1697), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2620), 2, + ACTIONS(2628), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2622), 2, + ACTIONS(2630), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2624), 2, + ACTIONS(2632), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2628), 2, + ACTIONS(2636), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2626), 4, + ACTIONS(2634), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, [86038] = 13, - ACTIONS(2118), 1, + ACTIONS(2126), 1, anon_sym_STAR, - ACTIONS(2210), 1, + ACTIONS(2218), 1, anon_sym_PIPE, - ACTIONS(2212), 1, + ACTIONS(2220), 1, anon_sym_PIPE_AMP, - ACTIONS(2634), 1, + ACTIONS(2642), 1, anon_sym_in, - ACTIONS(2636), 1, + ACTIONS(2644), 1, anon_sym_QMARK, - ACTIONS(2648), 1, + ACTIONS(2656), 1, anon_sym_AMP_AMP, - ACTIONS(2650), 1, + ACTIONS(2658), 1, anon_sym_PIPE_PIPE, - ACTIONS(2114), 2, + ACTIONS(2122), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2638), 2, + ACTIONS(2646), 2, anon_sym_CARET, anon_sym_STAR_STAR, - ACTIONS(2640), 2, + ACTIONS(2648), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2642), 2, + ACTIONS(2650), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2646), 2, + ACTIONS(2654), 2, anon_sym_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2644), 4, + ACTIONS(2652), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, [86086] = 2, - ACTIONS(2652), 5, + ACTIONS(2660), 5, anon_sym_getline, anon_sym_PLUS, anon_sym_DASH, sym_identifier, aux_sym_number_token1, - ACTIONS(2654), 9, + ACTIONS(2662), 9, anon_sym_LPAREN, anon_sym_SLASH, anon_sym_BANG, @@ -95685,15 +95691,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DQUOTE, [86105] = 4, - ACTIONS(1423), 1, + ACTIONS(1431), 1, sym__if_else_separator, - ACTIONS(2656), 2, + ACTIONS(2664), 2, anon_sym_GT, anon_sym_GT_GT, - ACTIONS(2658), 2, + ACTIONS(2666), 2, anon_sym_PIPE, anon_sym_PIPE_AMP, - ACTIONS(1417), 7, + ACTIONS(1425), 7, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, @@ -95702,13 +95708,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_POUND, [86126] = 3, - ACTIONS(2660), 2, + ACTIONS(2668), 2, anon_sym_GT, anon_sym_GT_GT, - ACTIONS(2662), 2, + ACTIONS(2670), 2, anon_sym_PIPE, anon_sym_PIPE_AMP, - ACTIONS(1417), 7, + ACTIONS(1425), 7, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, @@ -95717,27 +95723,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_POUND, [86144] = 4, - ACTIONS(1423), 1, + ACTIONS(1431), 1, sym__if_else_separator, - ACTIONS(2664), 2, + ACTIONS(2672), 2, anon_sym_GT, anon_sym_GT_GT, - ACTIONS(2666), 2, + ACTIONS(2674), 2, anon_sym_PIPE, anon_sym_PIPE_AMP, - ACTIONS(1417), 4, + ACTIONS(1425), 4, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, anon_sym_while, [86162] = 5, - ACTIONS(2668), 1, + ACTIONS(2676), 1, anon_sym_RBRACE, - ACTIONS(2670), 1, + ACTIONS(2678), 1, anon_sym_case, - ACTIONS(2673), 1, + ACTIONS(2681), 1, anon_sym_default, - ACTIONS(2676), 1, + ACTIONS(2684), 1, anon_sym_POUND, STATE(1659), 4, sym_switch_case, @@ -95745,9 +95751,9 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, aux_sym_switch_body_repeat1, [86181] = 2, - ACTIONS(2679), 1, + ACTIONS(2687), 1, sym__if_else_separator, - ACTIONS(1988), 7, + ACTIONS(1996), 7, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, @@ -95756,9 +95762,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_POUND, [86194] = 2, - ACTIONS(2679), 1, + ACTIONS(2687), 1, sym__if_else_separator, - ACTIONS(1988), 7, + ACTIONS(1996), 7, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, @@ -95769,11 +95775,11 @@ static const uint16_t ts_small_parse_table[] = { [86207] = 5, ACTIONS(37), 1, anon_sym_POUND, - ACTIONS(2681), 1, + ACTIONS(2689), 1, anon_sym_RBRACE, - ACTIONS(2683), 1, + ACTIONS(2691), 1, anon_sym_case, - ACTIONS(2685), 1, + ACTIONS(2693), 1, anon_sym_default, STATE(1659), 4, sym_switch_case, @@ -95781,13 +95787,13 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, aux_sym_switch_body_repeat1, [86226] = 5, - ACTIONS(2687), 1, + ACTIONS(2695), 1, anon_sym_SLASH, - ACTIONS(2689), 1, + ACTIONS(2697), 1, aux_sym_number_token1, - ACTIONS(2691), 1, + ACTIONS(2699), 1, aux_sym_number_token2, - ACTIONS(2693), 1, + ACTIONS(2701), 1, anon_sym_DQUOTE, STATE(1898), 4, sym_regex, @@ -95797,11 +95803,11 @@ static const uint16_t ts_small_parse_table[] = { [86245] = 5, ACTIONS(37), 1, anon_sym_POUND, - ACTIONS(2683), 1, + ACTIONS(2691), 1, anon_sym_case, - ACTIONS(2685), 1, + ACTIONS(2693), 1, anon_sym_default, - ACTIONS(2695), 1, + ACTIONS(2703), 1, anon_sym_RBRACE, STATE(1659), 4, sym_switch_case, @@ -95809,13 +95815,13 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, aux_sym_switch_body_repeat1, [86264] = 3, - ACTIONS(2697), 2, + ACTIONS(2705), 2, anon_sym_GT, anon_sym_GT_GT, - ACTIONS(2699), 2, + ACTIONS(2707), 2, anon_sym_PIPE, anon_sym_PIPE_AMP, - ACTIONS(1417), 4, + ACTIONS(1425), 4, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, @@ -95823,11 +95829,11 @@ static const uint16_t ts_small_parse_table[] = { [86279] = 5, ACTIONS(37), 1, anon_sym_POUND, - ACTIONS(2683), 1, + ACTIONS(2691), 1, anon_sym_case, - ACTIONS(2685), 1, + ACTIONS(2693), 1, anon_sym_default, - ACTIONS(2701), 1, + ACTIONS(2709), 1, anon_sym_RBRACE, STATE(1662), 4, sym_switch_case, @@ -95837,11 +95843,11 @@ static const uint16_t ts_small_parse_table[] = { [86298] = 5, ACTIONS(37), 1, anon_sym_POUND, - ACTIONS(2683), 1, + ACTIONS(2691), 1, anon_sym_case, - ACTIONS(2685), 1, + ACTIONS(2693), 1, anon_sym_default, - ACTIONS(2703), 1, + ACTIONS(2711), 1, anon_sym_RBRACE, STATE(1664), 4, sym_switch_case, @@ -95849,9 +95855,9 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, aux_sym_switch_body_repeat1, [86317] = 2, - ACTIONS(2705), 1, + ACTIONS(2713), 1, sym__if_else_separator, - ACTIONS(1988), 7, + ACTIONS(1996), 7, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, @@ -95860,9 +95866,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_POUND, [86330] = 2, - ACTIONS(2705), 1, + ACTIONS(2713), 1, sym__if_else_separator, - ACTIONS(1988), 7, + ACTIONS(1996), 7, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, @@ -95871,37 +95877,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_POUND, [86343] = 2, - ACTIONS(1931), 3, + ACTIONS(1939), 3, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, - ACTIONS(2707), 4, + ACTIONS(2715), 4, anon_sym_RBRACE, anon_sym_case, anon_sym_default, anon_sym_POUND, [86355] = 2, - ACTIONS(1931), 3, + ACTIONS(1939), 3, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, - ACTIONS(2709), 4, + ACTIONS(2717), 4, anon_sym_RBRACE, anon_sym_case, anon_sym_default, anon_sym_POUND, [86367] = 2, - ACTIONS(1931), 3, + ACTIONS(1939), 3, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, - ACTIONS(2711), 4, + ACTIONS(528), 4, anon_sym_RBRACE, anon_sym_case, anon_sym_default, anon_sym_POUND, [86379] = 2, - ACTIONS(1931), 3, + ACTIONS(1939), 3, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, @@ -95913,7 +95919,7 @@ static const uint16_t ts_small_parse_table[] = { [86391] = 5, ACTIONS(25), 1, anon_sym_DOLLAR, - ACTIONS(2713), 1, + ACTIONS(2719), 1, sym_identifier, STATE(335), 1, sym_field_ref, @@ -95923,9 +95929,9 @@ static const uint16_t ts_small_parse_table[] = { sym_array_ref, sym_ns_qualified_name, [86408] = 5, - ACTIONS(2715), 1, + ACTIONS(2721), 1, sym_identifier, - ACTIONS(2717), 1, + ACTIONS(2723), 1, anon_sym_DOLLAR, STATE(1388), 1, sym_field_ref, @@ -95935,9 +95941,9 @@ static const uint16_t ts_small_parse_table[] = { sym_array_ref, sym_ns_qualified_name, [86425] = 6, - ACTIONS(1645), 1, + ACTIONS(1653), 1, anon_sym_SLASH, - ACTIONS(2719), 1, + ACTIONS(2725), 1, sym_identifier, STATE(226), 1, sym_func_call, @@ -95950,7 +95956,7 @@ static const uint16_t ts_small_parse_table[] = { [86444] = 6, ACTIONS(366), 1, anon_sym_SLASH, - ACTIONS(2721), 1, + ACTIONS(2727), 1, sym_identifier, STATE(1383), 1, sym_func_call, @@ -95961,9 +95967,9 @@ static const uint16_t ts_small_parse_table[] = { STATE(1978), 1, sym_ns_qualified_name, [86463] = 5, - ACTIONS(2723), 1, + ACTIONS(2729), 1, sym_identifier, - ACTIONS(2725), 1, + ACTIONS(2731), 1, anon_sym_DOLLAR, STATE(463), 1, sym_field_ref, @@ -95973,9 +95979,9 @@ static const uint16_t ts_small_parse_table[] = { sym_array_ref, sym_ns_qualified_name, [86480] = 5, - ACTIONS(2727), 1, + ACTIONS(2733), 1, sym_identifier, - ACTIONS(2729), 1, + ACTIONS(2735), 1, anon_sym_DOLLAR, STATE(550), 1, sym_field_ref, @@ -95985,9 +95991,9 @@ static const uint16_t ts_small_parse_table[] = { sym_array_ref, sym_ns_qualified_name, [86497] = 6, - ACTIONS(1711), 1, + ACTIONS(1719), 1, anon_sym_SLASH, - ACTIONS(2731), 1, + ACTIONS(2737), 1, sym_identifier, STATE(1298), 1, sym_func_call, @@ -95998,9 +96004,9 @@ static const uint16_t ts_small_parse_table[] = { STATE(1942), 1, sym_namespace, [86516] = 5, - ACTIONS(2733), 1, + ACTIONS(2739), 1, sym_identifier, - ACTIONS(2735), 1, + ACTIONS(2741), 1, anon_sym_DOLLAR, STATE(1306), 1, sym_field_ref, @@ -96012,7 +96018,7 @@ static const uint16_t ts_small_parse_table[] = { [86533] = 6, ACTIONS(17), 1, anon_sym_SLASH, - ACTIONS(2737), 1, + ACTIONS(2743), 1, sym_identifier, STATE(551), 1, sym_regex, @@ -96023,9 +96029,9 @@ static const uint16_t ts_small_parse_table[] = { STATE(2020), 1, sym_ns_qualified_name, [86552] = 6, - ACTIONS(540), 1, + ACTIONS(546), 1, anon_sym_SLASH, - ACTIONS(2739), 1, + ACTIONS(2745), 1, sym_identifier, STATE(1326), 1, sym_func_call, @@ -96038,7 +96044,7 @@ static const uint16_t ts_small_parse_table[] = { [86571] = 5, ACTIONS(278), 1, anon_sym_DOLLAR, - ACTIONS(2741), 1, + ACTIONS(2747), 1, sym_identifier, STATE(218), 1, sym_field_ref, @@ -96048,9 +96054,9 @@ static const uint16_t ts_small_parse_table[] = { sym_array_ref, sym_ns_qualified_name, [86588] = 5, - ACTIONS(2743), 1, + ACTIONS(2749), 1, sym_identifier, - ACTIONS(2745), 1, + ACTIONS(2751), 1, anon_sym_DOLLAR, STATE(1349), 1, sym_field_ref, @@ -96060,9 +96066,9 @@ static const uint16_t ts_small_parse_table[] = { sym_array_ref, sym_ns_qualified_name, [86605] = 6, - ACTIONS(1679), 1, + ACTIONS(1687), 1, anon_sym_SLASH, - ACTIONS(2747), 1, + ACTIONS(2753), 1, sym_identifier, STATE(209), 1, sym_func_call, @@ -96075,7 +96081,7 @@ static const uint16_t ts_small_parse_table[] = { [86624] = 6, ACTIONS(153), 1, anon_sym_SLASH, - ACTIONS(2749), 1, + ACTIONS(2755), 1, sym_identifier, STATE(446), 1, sym_func_call, @@ -96088,7 +96094,7 @@ static const uint16_t ts_small_parse_table[] = { [86643] = 5, ACTIONS(478), 1, anon_sym_DOLLAR, - ACTIONS(2751), 1, + ACTIONS(2757), 1, sym_identifier, STATE(200), 1, sym_field_ref, @@ -96098,9 +96104,9 @@ static const uint16_t ts_small_parse_table[] = { sym_array_ref, sym_ns_qualified_name, [86660] = 6, - ACTIONS(1669), 1, + ACTIONS(1677), 1, anon_sym_SLASH, - ACTIONS(2753), 1, + ACTIONS(2759), 1, sym_identifier, STATE(1355), 1, sym_func_call, @@ -96111,9 +96117,9 @@ static const uint16_t ts_small_parse_table[] = { STATE(1942), 1, sym_namespace, [86679] = 6, - ACTIONS(1765), 1, + ACTIONS(1773), 1, anon_sym_SLASH, - ACTIONS(2719), 1, + ACTIONS(2725), 1, sym_identifier, STATE(226), 1, sym_func_call, @@ -96124,9 +96130,9 @@ static const uint16_t ts_small_parse_table[] = { STATE(1944), 1, sym_ns_qualified_name, [86698] = 5, - ACTIONS(2755), 1, + ACTIONS(2761), 1, sym_identifier, - ACTIONS(2757), 1, + ACTIONS(2763), 1, anon_sym_DOLLAR, STATE(1360), 1, sym_field_ref, @@ -96136,9 +96142,9 @@ static const uint16_t ts_small_parse_table[] = { sym_array_ref, sym_ns_qualified_name, [86715] = 5, - ACTIONS(546), 1, + ACTIONS(552), 1, anon_sym_DOLLAR, - ACTIONS(2751), 1, + ACTIONS(2757), 1, sym_identifier, STATE(200), 1, sym_field_ref, @@ -96148,9 +96154,9 @@ static const uint16_t ts_small_parse_table[] = { sym_array_ref, sym_ns_qualified_name, [86732] = 6, - ACTIONS(1603), 1, + ACTIONS(1611), 1, anon_sym_SLASH, - ACTIONS(2719), 1, + ACTIONS(2725), 1, sym_identifier, STATE(226), 1, sym_func_call, @@ -96161,9 +96167,9 @@ static const uint16_t ts_small_parse_table[] = { STATE(1944), 1, sym_ns_qualified_name, [86751] = 6, - ACTIONS(1751), 1, + ACTIONS(1759), 1, anon_sym_SLASH, - ACTIONS(2747), 1, + ACTIONS(2753), 1, sym_identifier, STATE(209), 1, sym_func_call, @@ -96176,7 +96182,7 @@ static const uint16_t ts_small_parse_table[] = { [86770] = 5, ACTIONS(374), 1, anon_sym_DOLLAR, - ACTIONS(2741), 1, + ACTIONS(2747), 1, sym_identifier, STATE(218), 1, sym_field_ref, @@ -96186,9 +96192,9 @@ static const uint16_t ts_small_parse_table[] = { sym_array_ref, sym_ns_qualified_name, [86787] = 5, - ACTIONS(2755), 1, + ACTIONS(2761), 1, sym_identifier, - ACTIONS(2759), 1, + ACTIONS(2765), 1, anon_sym_DOLLAR, STATE(1360), 1, sym_field_ref, @@ -96200,7 +96206,7 @@ static const uint16_t ts_small_parse_table[] = { [86804] = 6, ACTIONS(272), 1, anon_sym_SLASH, - ACTIONS(2721), 1, + ACTIONS(2727), 1, sym_identifier, STATE(1383), 1, sym_func_call, @@ -96211,9 +96217,9 @@ static const uint16_t ts_small_parse_table[] = { STATE(1978), 1, sym_ns_qualified_name, [86823] = 5, - ACTIONS(2761), 1, + ACTIONS(2767), 1, sym_identifier, - ACTIONS(2763), 1, + ACTIONS(2769), 1, anon_sym_DOLLAR, STATE(546), 1, sym_field_ref, @@ -96223,9 +96229,9 @@ static const uint16_t ts_small_parse_table[] = { sym_array_ref, sym_ns_qualified_name, [86840] = 6, - ACTIONS(1539), 1, + ACTIONS(1547), 1, anon_sym_SLASH, - ACTIONS(2753), 1, + ACTIONS(2759), 1, sym_identifier, STATE(1355), 1, sym_func_call, @@ -96236,9 +96242,9 @@ static const uint16_t ts_small_parse_table[] = { STATE(1942), 1, sym_namespace, [86859] = 5, - ACTIONS(2765), 1, + ACTIONS(2771), 1, sym_identifier, - ACTIONS(2767), 1, + ACTIONS(2773), 1, anon_sym_DOLLAR, STATE(1512), 1, sym_field_ref, @@ -96248,9 +96254,9 @@ static const uint16_t ts_small_parse_table[] = { sym_array_ref, sym_ns_qualified_name, [86876] = 5, - ACTIONS(2769), 1, + ACTIONS(2775), 1, sym_identifier, - ACTIONS(2771), 1, + ACTIONS(2777), 1, anon_sym_DOLLAR, STATE(429), 1, sym_field_ref, @@ -96260,9 +96266,9 @@ static const uint16_t ts_small_parse_table[] = { sym_array_ref, sym_ns_qualified_name, [86893] = 6, - ACTIONS(1559), 1, + ACTIONS(1567), 1, anon_sym_SLASH, - ACTIONS(2731), 1, + ACTIONS(2737), 1, sym_identifier, STATE(1298), 1, sym_func_call, @@ -96273,9 +96279,9 @@ static const uint16_t ts_small_parse_table[] = { STATE(1942), 1, sym_namespace, [86912] = 5, - ACTIONS(2733), 1, + ACTIONS(2739), 1, sym_identifier, - ACTIONS(2773), 1, + ACTIONS(2779), 1, anon_sym_DOLLAR, STATE(1306), 1, sym_field_ref, @@ -96285,9 +96291,9 @@ static const uint16_t ts_small_parse_table[] = { sym_array_ref, sym_ns_qualified_name, [86929] = 6, - ACTIONS(1251), 1, + ACTIONS(1259), 1, anon_sym_SLASH, - ACTIONS(2775), 1, + ACTIONS(2781), 1, sym_identifier, STATE(1505), 1, sym_regex, @@ -96298,9 +96304,9 @@ static const uint16_t ts_small_parse_table[] = { STATE(1942), 1, sym_namespace, [86948] = 6, - ACTIONS(1731), 1, + ACTIONS(1739), 1, anon_sym_SLASH, - ACTIONS(2777), 1, + ACTIONS(2783), 1, sym_identifier, STATE(310), 1, sym_regex, @@ -96313,7 +96319,7 @@ static const uint16_t ts_small_parse_table[] = { [86967] = 5, ACTIONS(161), 1, anon_sym_DOLLAR, - ACTIONS(2741), 1, + ACTIONS(2747), 1, sym_identifier, STATE(218), 1, sym_field_ref, @@ -96325,7 +96331,7 @@ static const uint16_t ts_small_parse_table[] = { [86984] = 6, ACTIONS(320), 1, anon_sym_SLASH, - ACTIONS(2779), 1, + ACTIONS(2785), 1, sym_identifier, STATE(435), 1, sym_regex, @@ -96336,9 +96342,9 @@ static const uint16_t ts_small_parse_table[] = { STATE(1942), 1, sym_namespace, [87003] = 5, - ACTIONS(1259), 1, + ACTIONS(1267), 1, anon_sym_DOLLAR, - ACTIONS(2713), 1, + ACTIONS(2719), 1, sym_identifier, STATE(335), 1, sym_field_ref, @@ -96348,9 +96354,9 @@ static const uint16_t ts_small_parse_table[] = { sym_array_ref, sym_ns_qualified_name, [87020] = 5, - ACTIONS(2715), 1, + ACTIONS(2721), 1, sym_identifier, - ACTIONS(2781), 1, + ACTIONS(2787), 1, anon_sym_DOLLAR, STATE(1388), 1, sym_field_ref, @@ -96360,9 +96366,9 @@ static const uint16_t ts_small_parse_table[] = { sym_array_ref, sym_ns_qualified_name, [87037] = 6, - ACTIONS(1659), 1, + ACTIONS(1667), 1, anon_sym_SLASH, - ACTIONS(2783), 1, + ACTIONS(2789), 1, sym_identifier, STATE(1494), 1, sym_func_call, @@ -96373,9 +96379,9 @@ static const uint16_t ts_small_parse_table[] = { STATE(1988), 1, sym_ns_qualified_name, [87056] = 5, - ACTIONS(2785), 1, + ACTIONS(2791), 1, sym_identifier, - ACTIONS(2787), 1, + ACTIONS(2793), 1, anon_sym_DOLLAR, STATE(1475), 1, sym_field_ref, @@ -96385,9 +96391,9 @@ static const uint16_t ts_small_parse_table[] = { sym_array_ref, sym_ns_qualified_name, [87073] = 6, - ACTIONS(1527), 1, + ACTIONS(1535), 1, anon_sym_SLASH, - ACTIONS(2789), 1, + ACTIONS(2795), 1, sym_identifier, STATE(542), 1, sym_func_call, @@ -96398,9 +96404,9 @@ static const uint16_t ts_small_parse_table[] = { STATE(2014), 1, sym_ns_qualified_name, [87092] = 5, - ACTIONS(2791), 1, + ACTIONS(2797), 1, sym_identifier, - ACTIONS(2793), 1, + ACTIONS(2799), 1, anon_sym_DOLLAR, STATE(355), 1, sym_field_ref, @@ -96410,9 +96416,9 @@ static const uint16_t ts_small_parse_table[] = { sym_array_ref, sym_ns_qualified_name, [87109] = 6, - ACTIONS(1549), 1, + ACTIONS(1557), 1, anon_sym_SLASH, - ACTIONS(2795), 1, + ACTIONS(2801), 1, sym_identifier, STATE(346), 1, sym_regex, @@ -96423,9 +96429,9 @@ static const uint16_t ts_small_parse_table[] = { STATE(1942), 1, sym_namespace, [87128] = 5, - ACTIONS(2743), 1, + ACTIONS(2749), 1, sym_identifier, - ACTIONS(2797), 1, + ACTIONS(2803), 1, anon_sym_DOLLAR, STATE(1349), 1, sym_field_ref, @@ -96435,9 +96441,9 @@ static const uint16_t ts_small_parse_table[] = { sym_array_ref, sym_ns_qualified_name, [87145] = 5, - ACTIONS(2799), 1, + ACTIONS(2805), 1, sym_identifier, - ACTIONS(2801), 1, + ACTIONS(2807), 1, anon_sym_DOLLAR, STATE(395), 1, sym_field_ref, @@ -96449,7 +96455,7 @@ static const uint16_t ts_small_parse_table[] = { [87162] = 6, ACTIONS(470), 1, anon_sym_SLASH, - ACTIONS(2739), 1, + ACTIONS(2745), 1, sym_identifier, STATE(1326), 1, sym_func_call, @@ -96460,9 +96466,9 @@ static const uint16_t ts_small_parse_table[] = { STATE(1942), 1, sym_namespace, [87181] = 6, - ACTIONS(1569), 1, + ACTIONS(1577), 1, anon_sym_SLASH, - ACTIONS(2803), 1, + ACTIONS(2809), 1, sym_identifier, STATE(413), 1, sym_regex, @@ -96475,7 +96481,7 @@ static const uint16_t ts_small_parse_table[] = { [87200] = 5, ACTIONS(328), 1, anon_sym_DOLLAR, - ACTIONS(2751), 1, + ACTIONS(2757), 1, sym_identifier, STATE(200), 1, sym_field_ref, @@ -96485,9 +96491,9 @@ static const uint16_t ts_small_parse_table[] = { sym_array_ref, sym_ns_qualified_name, [87217] = 6, - ACTIONS(1625), 1, + ACTIONS(1633), 1, anon_sym_SLASH, - ACTIONS(2777), 1, + ACTIONS(2783), 1, sym_identifier, STATE(310), 1, sym_regex, @@ -96498,9 +96504,9 @@ static const uint16_t ts_small_parse_table[] = { STATE(2002), 1, sym_ns_qualified_name, [87236] = 6, - ACTIONS(1581), 1, + ACTIONS(1589), 1, anon_sym_SLASH, - ACTIONS(2747), 1, + ACTIONS(2753), 1, sym_identifier, STATE(209), 1, sym_func_call, @@ -96513,7 +96519,7 @@ static const uint16_t ts_small_parse_table[] = { [87255] = 4, ACTIONS(37), 1, anon_sym_POUND, - ACTIONS(2805), 1, + ACTIONS(2811), 1, anon_sym_else, STATE(1215), 1, sym_else_clause, @@ -96523,7 +96529,7 @@ static const uint16_t ts_small_parse_table[] = { [87269] = 4, ACTIONS(37), 1, anon_sym_POUND, - ACTIONS(2807), 1, + ACTIONS(2813), 1, anon_sym_else, STATE(1215), 1, sym_else_clause, @@ -96533,7 +96539,7 @@ static const uint16_t ts_small_parse_table[] = { [87283] = 4, ACTIONS(37), 1, anon_sym_POUND, - ACTIONS(2809), 1, + ACTIONS(2815), 1, anon_sym_else, STATE(1101), 1, sym_else_clause, @@ -96543,7 +96549,7 @@ static const uint16_t ts_small_parse_table[] = { [87297] = 4, ACTIONS(37), 1, anon_sym_POUND, - ACTIONS(2807), 1, + ACTIONS(2813), 1, anon_sym_else, STATE(1241), 1, sym_else_clause, @@ -96553,7 +96559,7 @@ static const uint16_t ts_small_parse_table[] = { [87311] = 4, ACTIONS(37), 1, anon_sym_POUND, - ACTIONS(2811), 1, + ACTIONS(2817), 1, anon_sym_else, STATE(1101), 1, sym_else_clause, @@ -96563,7 +96569,7 @@ static const uint16_t ts_small_parse_table[] = { [87325] = 4, ACTIONS(37), 1, anon_sym_POUND, - ACTIONS(2813), 1, + ACTIONS(2819), 1, anon_sym_LBRACE, STATE(1103), 1, sym_switch_body, @@ -96573,7 +96579,7 @@ static const uint16_t ts_small_parse_table[] = { [87339] = 4, ACTIONS(37), 1, anon_sym_POUND, - ACTIONS(2815), 1, + ACTIONS(2821), 1, anon_sym_LBRACE, STATE(1203), 1, sym_switch_body, @@ -96583,7 +96589,7 @@ static const uint16_t ts_small_parse_table[] = { [87353] = 4, ACTIONS(37), 1, anon_sym_POUND, - ACTIONS(2817), 1, + ACTIONS(2823), 1, anon_sym_else, STATE(1215), 1, sym_else_clause, @@ -96593,7 +96599,7 @@ static const uint16_t ts_small_parse_table[] = { [87367] = 4, ACTIONS(37), 1, anon_sym_POUND, - ACTIONS(2813), 1, + ACTIONS(2819), 1, anon_sym_LBRACE, STATE(1114), 1, sym_switch_body, @@ -96601,9 +96607,9 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, aux_sym_if_statement_repeat1, [87381] = 2, - ACTIONS(2819), 1, + ACTIONS(2825), 1, sym__if_else_separator, - ACTIONS(1988), 4, + ACTIONS(1996), 4, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, @@ -96611,7 +96617,7 @@ static const uint16_t ts_small_parse_table[] = { [87391] = 4, ACTIONS(37), 1, anon_sym_POUND, - ACTIONS(2805), 1, + ACTIONS(2811), 1, anon_sym_else, STATE(1241), 1, sym_else_clause, @@ -96619,25 +96625,25 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, aux_sym_if_statement_repeat1, [87405] = 2, - ACTIONS(2819), 1, + ACTIONS(2825), 1, sym__if_else_separator, - ACTIONS(1988), 4, + ACTIONS(1996), 4, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, anon_sym_while, [87415] = 2, - ACTIONS(2821), 1, + ACTIONS(2827), 1, sym__if_else_separator, - ACTIONS(1988), 4, + ACTIONS(1996), 4, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, anon_sym_while, [87425] = 2, - ACTIONS(2821), 1, + ACTIONS(2827), 1, sym__if_else_separator, - ACTIONS(1988), 4, + ACTIONS(1996), 4, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, @@ -96645,7 +96651,7 @@ static const uint16_t ts_small_parse_table[] = { [87435] = 4, ACTIONS(37), 1, anon_sym_POUND, - ACTIONS(2823), 1, + ACTIONS(2829), 1, anon_sym_else, STATE(1155), 1, sym_else_clause, @@ -96655,7 +96661,7 @@ static const uint16_t ts_small_parse_table[] = { [87449] = 4, ACTIONS(37), 1, anon_sym_POUND, - ACTIONS(2815), 1, + ACTIONS(2821), 1, anon_sym_LBRACE, STATE(1189), 1, sym_switch_body, @@ -96665,7 +96671,7 @@ static const uint16_t ts_small_parse_table[] = { [87463] = 4, ACTIONS(37), 1, anon_sym_POUND, - ACTIONS(2809), 1, + ACTIONS(2815), 1, anon_sym_else, STATE(1155), 1, sym_else_clause, @@ -96675,7 +96681,7 @@ static const uint16_t ts_small_parse_table[] = { [87477] = 4, ACTIONS(37), 1, anon_sym_POUND, - ACTIONS(2811), 1, + ACTIONS(2817), 1, anon_sym_else, STATE(1155), 1, sym_else_clause, @@ -96683,9 +96689,9 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, aux_sym_if_statement_repeat1, [87491] = 3, - ACTIONS(2825), 1, + ACTIONS(2831), 1, anon_sym_POUND, - ACTIONS(1969), 2, + ACTIONS(1977), 2, anon_sym_else, anon_sym_LBRACE, STATE(1740), 2, @@ -96694,7 +96700,7 @@ static const uint16_t ts_small_parse_table[] = { [87503] = 4, ACTIONS(37), 1, anon_sym_POUND, - ACTIONS(2817), 1, + ACTIONS(2823), 1, anon_sym_else, STATE(1241), 1, sym_else_clause, @@ -96704,7 +96710,7 @@ static const uint16_t ts_small_parse_table[] = { [87517] = 4, ACTIONS(37), 1, anon_sym_POUND, - ACTIONS(2823), 1, + ACTIONS(2829), 1, anon_sym_else, STATE(1101), 1, sym_else_clause, @@ -96712,23 +96718,23 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, aux_sym_if_statement_repeat1, [87531] = 3, - ACTIONS(2828), 1, + ACTIONS(2834), 1, anon_sym_DQUOTE, STATE(1753), 1, aux_sym_string_repeat1, - ACTIONS(2830), 2, + ACTIONS(2836), 2, aux_sym_string_token1, sym_escape_sequence, [87542] = 3, - ACTIONS(2832), 1, + ACTIONS(2838), 1, anon_sym_DQUOTE, STATE(1757), 1, aux_sym_string_repeat1, - ACTIONS(2834), 2, + ACTIONS(2840), 2, aux_sym_string_token1, sym_escape_sequence, [87553] = 3, - ACTIONS(2836), 1, + ACTIONS(2842), 1, sym_identifier, STATE(1872), 1, sym_namespace, @@ -96736,47 +96742,47 @@ static const uint16_t ts_small_parse_table[] = { sym_array_ref, sym_ns_qualified_name, [87564] = 3, - ACTIONS(2838), 1, + ACTIONS(2844), 1, anon_sym_DQUOTE, STATE(1753), 1, aux_sym_string_repeat1, - ACTIONS(2830), 2, + ACTIONS(2836), 2, aux_sym_string_token1, sym_escape_sequence, [87575] = 3, - ACTIONS(2840), 1, + ACTIONS(2846), 1, anon_sym_DQUOTE, STATE(1754), 1, aux_sym_string_repeat1, - ACTIONS(2842), 2, + ACTIONS(2848), 2, aux_sym_string_token1, sym_escape_sequence, [87586] = 3, - ACTIONS(2844), 1, + ACTIONS(2850), 1, anon_sym_DQUOTE, STATE(1775), 1, aux_sym_string_repeat1, - ACTIONS(2846), 2, + ACTIONS(2852), 2, aux_sym_string_token1, sym_escape_sequence, [87597] = 3, - ACTIONS(2848), 1, + ACTIONS(2854), 1, anon_sym_DQUOTE, STATE(1771), 1, aux_sym_string_repeat1, - ACTIONS(2850), 2, + ACTIONS(2856), 2, aux_sym_string_token1, sym_escape_sequence, [87608] = 3, - ACTIONS(2852), 1, + ACTIONS(2858), 1, anon_sym_DQUOTE, STATE(1753), 1, aux_sym_string_repeat1, - ACTIONS(2830), 2, + ACTIONS(2836), 2, aux_sym_string_token1, sym_escape_sequence, [87619] = 3, - ACTIONS(2854), 1, + ACTIONS(2860), 1, sym_identifier, STATE(1872), 1, sym_namespace, @@ -96784,7 +96790,7 @@ static const uint16_t ts_small_parse_table[] = { sym_array_ref, sym_ns_qualified_name, [87630] = 3, - ACTIONS(2856), 1, + ACTIONS(2862), 1, sym_identifier, STATE(1949), 1, sym_namespace, @@ -96792,23 +96798,23 @@ static const uint16_t ts_small_parse_table[] = { sym_array_ref, sym_ns_qualified_name, [87641] = 3, - ACTIONS(2858), 1, + ACTIONS(2864), 1, anon_sym_DQUOTE, STATE(1753), 1, aux_sym_string_repeat1, - ACTIONS(2860), 2, + ACTIONS(2866), 2, aux_sym_string_token1, sym_escape_sequence, [87652] = 3, - ACTIONS(2863), 1, + ACTIONS(2869), 1, anon_sym_DQUOTE, STATE(1753), 1, aux_sym_string_repeat1, - ACTIONS(2830), 2, + ACTIONS(2836), 2, aux_sym_string_token1, sym_escape_sequence, [87663] = 3, - ACTIONS(2865), 1, + ACTIONS(2871), 1, sym_identifier, STATE(1872), 1, sym_namespace, @@ -96816,23 +96822,23 @@ static const uint16_t ts_small_parse_table[] = { sym_array_ref, sym_ns_qualified_name, [87674] = 3, - ACTIONS(2867), 1, + ACTIONS(2873), 1, anon_sym_DQUOTE, STATE(1753), 1, aux_sym_string_repeat1, - ACTIONS(2830), 2, + ACTIONS(2836), 2, aux_sym_string_token1, sym_escape_sequence, [87685] = 3, - ACTIONS(2869), 1, + ACTIONS(2875), 1, anon_sym_DQUOTE, STATE(1753), 1, aux_sym_string_repeat1, - ACTIONS(2830), 2, + ACTIONS(2836), 2, aux_sym_string_token1, sym_escape_sequence, [87696] = 3, - ACTIONS(2871), 1, + ACTIONS(2877), 1, sym_identifier, STATE(1872), 1, sym_namespace, @@ -96840,15 +96846,15 @@ static const uint16_t ts_small_parse_table[] = { sym_array_ref, sym_ns_qualified_name, [87707] = 3, - ACTIONS(2873), 1, + ACTIONS(2879), 1, anon_sym_DQUOTE, STATE(1756), 1, aux_sym_string_repeat1, - ACTIONS(2875), 2, + ACTIONS(2881), 2, aux_sym_string_token1, sym_escape_sequence, [87718] = 3, - ACTIONS(2877), 1, + ACTIONS(2883), 1, sym_identifier, STATE(1959), 1, sym_namespace, @@ -96856,28 +96862,28 @@ static const uint16_t ts_small_parse_table[] = { sym_array_ref, sym_ns_qualified_name, [87729] = 2, - ACTIONS(2879), 1, + ACTIONS(2885), 1, anon_sym_while, - ACTIONS(1931), 3, + ACTIONS(1939), 3, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, [87738] = 2, - ACTIONS(2881), 1, + ACTIONS(2887), 1, anon_sym_while, - ACTIONS(1931), 3, + ACTIONS(1939), 3, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, [87747] = 2, - ACTIONS(2883), 1, + ACTIONS(2889), 1, anon_sym_while, - ACTIONS(1931), 3, + ACTIONS(1939), 3, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, [87756] = 3, - ACTIONS(2885), 1, + ACTIONS(2891), 1, sym_identifier, STATE(1872), 1, sym_namespace, @@ -96885,23 +96891,23 @@ static const uint16_t ts_small_parse_table[] = { sym_array_ref, sym_ns_qualified_name, [87767] = 3, - ACTIONS(2887), 1, + ACTIONS(2893), 1, anon_sym_DQUOTE, STATE(1750), 1, aux_sym_string_repeat1, - ACTIONS(2889), 2, + ACTIONS(2895), 2, aux_sym_string_token1, sym_escape_sequence, [87778] = 3, - ACTIONS(2891), 1, + ACTIONS(2897), 1, anon_sym_DQUOTE, STATE(1746), 1, aux_sym_string_repeat1, - ACTIONS(2893), 2, + ACTIONS(2899), 2, aux_sym_string_token1, sym_escape_sequence, [87789] = 3, - ACTIONS(2895), 1, + ACTIONS(2901), 1, sym_identifier, STATE(1872), 1, sym_namespace, @@ -96909,300 +96915,300 @@ static const uint16_t ts_small_parse_table[] = { sym_array_ref, sym_ns_qualified_name, [87800] = 3, - ACTIONS(2897), 1, + ACTIONS(2903), 1, anon_sym_DQUOTE, STATE(1743), 1, aux_sym_string_repeat1, - ACTIONS(2899), 2, + ACTIONS(2905), 2, aux_sym_string_token1, sym_escape_sequence, [87811] = 3, - ACTIONS(2901), 1, + ACTIONS(2907), 1, anon_sym_DQUOTE, STATE(1753), 1, aux_sym_string_repeat1, - ACTIONS(2830), 2, + ACTIONS(2836), 2, aux_sym_string_token1, sym_escape_sequence, [87822] = 3, - ACTIONS(2903), 1, + ACTIONS(2909), 1, anon_sym_DQUOTE, STATE(1753), 1, aux_sym_string_repeat1, - ACTIONS(2830), 2, + ACTIONS(2836), 2, aux_sym_string_token1, sym_escape_sequence, [87833] = 3, - ACTIONS(2905), 1, + ACTIONS(2911), 1, anon_sym_DQUOTE, STATE(1753), 1, aux_sym_string_repeat1, - ACTIONS(2830), 2, + ACTIONS(2836), 2, aux_sym_string_token1, sym_escape_sequence, [87844] = 2, - ACTIONS(2907), 1, + ACTIONS(2913), 1, anon_sym_while, - ACTIONS(1931), 3, + ACTIONS(1939), 3, anon_sym_SEMI, anon_sym_LF, anon_sym_CR_LF, [87853] = 3, - ACTIONS(2909), 1, + ACTIONS(2915), 1, anon_sym_DQUOTE, STATE(1769), 1, aux_sym_string_repeat1, - ACTIONS(2911), 2, + ACTIONS(2917), 2, aux_sym_string_token1, sym_escape_sequence, [87864] = 3, - ACTIONS(2913), 1, + ACTIONS(2919), 1, anon_sym_DQUOTE, STATE(1770), 1, aux_sym_string_repeat1, - ACTIONS(2915), 2, + ACTIONS(2921), 2, aux_sym_string_token1, sym_escape_sequence, [87875] = 3, - ACTIONS(2917), 1, + ACTIONS(2923), 1, anon_sym_DQUOTE, STATE(1753), 1, aux_sym_string_repeat1, - ACTIONS(2830), 2, + ACTIONS(2836), 2, aux_sym_string_token1, sym_escape_sequence, [87886] = 3, - ACTIONS(2266), 1, + ACTIONS(2274), 1, anon_sym_RPAREN, - ACTIONS(2919), 1, + ACTIONS(2925), 1, anon_sym_COMMA, STATE(1776), 1, aux_sym_args_repeat1, [87896] = 3, - ACTIONS(644), 1, + ACTIONS(652), 1, anon_sym_COLON_COLON, - ACTIONS(1145), 1, + ACTIONS(1153), 1, anon_sym_LBRACK, - ACTIONS(2922), 1, + ACTIONS(2928), 1, anon_sym_RPAREN, [87906] = 3, - ACTIONS(2924), 1, + ACTIONS(2930), 1, sym_identifier, STATE(1872), 1, sym_namespace, STATE(2015), 1, sym_ns_qualified_name, [87916] = 3, - ACTIONS(644), 1, + ACTIONS(652), 1, anon_sym_COLON_COLON, - ACTIONS(1145), 1, + ACTIONS(1153), 1, anon_sym_LBRACK, - ACTIONS(2926), 1, + ACTIONS(2932), 1, anon_sym_RPAREN, [87926] = 3, - ACTIONS(644), 1, + ACTIONS(652), 1, anon_sym_COLON_COLON, - ACTIONS(1145), 1, + ACTIONS(1153), 1, anon_sym_LBRACK, - ACTIONS(2928), 1, + ACTIONS(2934), 1, anon_sym_RPAREN, [87936] = 3, - ACTIONS(644), 1, + ACTIONS(652), 1, anon_sym_COLON_COLON, - ACTIONS(1145), 1, + ACTIONS(1153), 1, anon_sym_LBRACK, - ACTIONS(2930), 1, + ACTIONS(2936), 1, anon_sym_RPAREN, [87946] = 3, - ACTIONS(2932), 1, + ACTIONS(2938), 1, anon_sym_COMMA, - ACTIONS(2935), 1, + ACTIONS(2941), 1, anon_sym_RPAREN, STATE(1782), 1, aux_sym_param_list_repeat1, [87956] = 3, - ACTIONS(644), 1, + ACTIONS(652), 1, anon_sym_COLON_COLON, - ACTIONS(1145), 1, + ACTIONS(1153), 1, anon_sym_LBRACK, - ACTIONS(2937), 1, + ACTIONS(2943), 1, anon_sym_RPAREN, [87966] = 3, - ACTIONS(644), 1, + ACTIONS(652), 1, anon_sym_COLON_COLON, - ACTIONS(1145), 1, + ACTIONS(1153), 1, anon_sym_LBRACK, - ACTIONS(2939), 1, + ACTIONS(2945), 1, anon_sym_RPAREN, [87976] = 3, - ACTIONS(2941), 1, + ACTIONS(2947), 1, anon_sym_COMMA, - ACTIONS(2943), 1, + ACTIONS(2949), 1, anon_sym_RPAREN, STATE(1782), 1, aux_sym_param_list_repeat1, [87986] = 3, - ACTIONS(2941), 1, + ACTIONS(2947), 1, anon_sym_COMMA, - ACTIONS(2945), 1, + ACTIONS(2951), 1, anon_sym_RPAREN, STATE(1785), 1, aux_sym_param_list_repeat1, [87996] = 3, - ACTIONS(2216), 1, + ACTIONS(2224), 1, anon_sym_COMMA, - ACTIONS(2947), 1, + ACTIONS(2953), 1, anon_sym_RPAREN, STATE(1776), 1, aux_sym_args_repeat1, [88006] = 3, - ACTIONS(2949), 1, + ACTIONS(2955), 1, sym_identifier, - ACTIONS(2951), 1, + ACTIONS(2957), 1, anon_sym_RPAREN, STATE(1924), 1, sym_param_list, [88016] = 2, - ACTIONS(644), 1, + ACTIONS(652), 1, anon_sym_COLON_COLON, - ACTIONS(2953), 1, + ACTIONS(2959), 1, anon_sym_LPAREN2, [88023] = 2, - ACTIONS(644), 1, + ACTIONS(652), 1, anon_sym_COLON_COLON, - ACTIONS(2955), 1, + ACTIONS(2961), 1, anon_sym_LPAREN2, [88030] = 2, - ACTIONS(2957), 1, + ACTIONS(2963), 1, anon_sym_getline, STATE(515), 1, sym_getline_input, [88037] = 2, - ACTIONS(2959), 1, + ACTIONS(2965), 1, anon_sym_getline, STATE(205), 1, sym_getline_input, [88044] = 2, - ACTIONS(2961), 1, + ACTIONS(2967), 1, anon_sym_getline, STATE(233), 1, sym_getline_input, [88051] = 2, - ACTIONS(2963), 1, + ACTIONS(2969), 1, anon_sym_getline, STATE(1346), 1, sym_getline_input, [88058] = 2, - ACTIONS(644), 1, + ACTIONS(652), 1, anon_sym_COLON_COLON, - ACTIONS(2965), 1, + ACTIONS(2971), 1, anon_sym_LPAREN2, [88065] = 2, - ACTIONS(644), 1, + ACTIONS(652), 1, anon_sym_COLON_COLON, - ACTIONS(995), 1, + ACTIONS(1003), 1, anon_sym_LPAREN2, [88072] = 2, - ACTIONS(2967), 1, + ACTIONS(2973), 1, anon_sym_getline, STATE(426), 1, sym_getline_input, [88079] = 2, - ACTIONS(644), 1, + ACTIONS(652), 1, anon_sym_COLON_COLON, - ACTIONS(2969), 1, + ACTIONS(2975), 1, anon_sym_LPAREN, [88086] = 2, - ACTIONS(2971), 1, + ACTIONS(2977), 1, anon_sym_getline, STATE(554), 1, sym_getline_input, [88093] = 2, - ACTIONS(644), 1, + ACTIONS(652), 1, anon_sym_COLON_COLON, - ACTIONS(884), 1, + ACTIONS(892), 1, anon_sym_LPAREN2, [88100] = 2, - ACTIONS(2973), 1, + ACTIONS(2979), 1, anon_sym_getline, STATE(1510), 1, sym_getline_input, [88107] = 2, - ACTIONS(2975), 1, + ACTIONS(2981), 1, anon_sym_getline, STATE(316), 1, sym_getline_input, [88114] = 2, - ACTIONS(644), 1, + ACTIONS(652), 1, anon_sym_COLON_COLON, - ACTIONS(1367), 1, + ACTIONS(1375), 1, anon_sym_LPAREN2, [88121] = 2, - ACTIONS(2977), 1, + ACTIONS(2983), 1, anon_sym_getline, STATE(352), 1, sym_getline_input, [88128] = 2, - ACTIONS(2693), 1, + ACTIONS(2701), 1, anon_sym_DQUOTE, STATE(1520), 1, sym_string, [88135] = 2, - ACTIONS(644), 1, + ACTIONS(652), 1, anon_sym_COLON_COLON, - ACTIONS(730), 1, + ACTIONS(738), 1, anon_sym_LPAREN2, [88142] = 2, - ACTIONS(2979), 1, + ACTIONS(2985), 1, anon_sym_getline, STATE(450), 1, sym_getline_input, [88149] = 2, - ACTIONS(2981), 1, + ACTIONS(2987), 1, anon_sym_getline, STATE(205), 1, sym_getline_input, [88156] = 2, - ACTIONS(644), 1, + ACTIONS(652), 1, anon_sym_COLON_COLON, - ACTIONS(682), 1, + ACTIONS(690), 1, anon_sym_LPAREN2, [88163] = 2, - ACTIONS(820), 1, + ACTIONS(828), 1, anon_sym_COLON, - ACTIONS(2983), 1, + ACTIONS(2989), 1, sym_regex_flags, [88170] = 2, - ACTIONS(644), 1, + ACTIONS(652), 1, anon_sym_COLON_COLON, - ACTIONS(1201), 1, + ACTIONS(1209), 1, anon_sym_LPAREN2, [88177] = 2, - ACTIONS(1145), 1, + ACTIONS(1153), 1, anon_sym_LBRACK, - ACTIONS(2928), 1, + ACTIONS(2934), 1, anon_sym_RPAREN, [88184] = 1, - ACTIONS(2935), 2, + ACTIONS(2941), 2, anon_sym_COMMA, anon_sym_RPAREN, [88189] = 2, - ACTIONS(1145), 1, + ACTIONS(1153), 1, anon_sym_LBRACK, - ACTIONS(2926), 1, + ACTIONS(2932), 1, anon_sym_RPAREN, [88196] = 2, - ACTIONS(1145), 1, + ACTIONS(1153), 1, anon_sym_LBRACK, - ACTIONS(2937), 1, + ACTIONS(2943), 1, anon_sym_RPAREN, [88203] = 2, - ACTIONS(644), 1, + ACTIONS(652), 1, anon_sym_COLON_COLON, - ACTIONS(688), 1, + ACTIONS(696), 1, anon_sym_LPAREN2, [88210] = 2, - ACTIONS(2985), 1, + ACTIONS(2991), 1, anon_sym_getline, STATE(427), 1, sym_getline_input, @@ -97212,72 +97218,72 @@ static const uint16_t ts_small_parse_table[] = { STATE(1515), 1, sym_block, [88224] = 2, - ACTIONS(638), 1, + ACTIONS(646), 1, anon_sym_LPAREN2, - ACTIONS(644), 1, + ACTIONS(652), 1, anon_sym_COLON_COLON, [88231] = 2, - ACTIONS(2987), 1, + ACTIONS(2993), 1, anon_sym_getline, STATE(1373), 1, sym_getline_input, [88238] = 2, - ACTIONS(644), 1, + ACTIONS(652), 1, anon_sym_COLON_COLON, - ACTIONS(2989), 1, + ACTIONS(2995), 1, anon_sym_LPAREN2, [88245] = 2, - ACTIONS(1145), 1, + ACTIONS(1153), 1, anon_sym_LBRACK, - ACTIONS(2922), 1, + ACTIONS(2928), 1, anon_sym_RPAREN, [88252] = 2, - ACTIONS(2991), 1, + ACTIONS(2997), 1, anon_sym_getline, STATE(1344), 1, sym_getline_input, [88259] = 2, - ACTIONS(1145), 1, + ACTIONS(1153), 1, anon_sym_LBRACK, - ACTIONS(2939), 1, + ACTIONS(2945), 1, anon_sym_RPAREN, [88266] = 2, - ACTIONS(2993), 1, + ACTIONS(2999), 1, anon_sym_getline, STATE(316), 1, sym_getline_input, [88273] = 2, - ACTIONS(1145), 1, + ACTIONS(1153), 1, anon_sym_LBRACK, - ACTIONS(2930), 1, + ACTIONS(2936), 1, anon_sym_RPAREN, [88280] = 2, - ACTIONS(644), 1, + ACTIONS(652), 1, anon_sym_COLON_COLON, - ACTIONS(2995), 1, + ACTIONS(3001), 1, anon_sym_LPAREN2, [88287] = 2, - ACTIONS(644), 1, + ACTIONS(652), 1, anon_sym_COLON_COLON, - ACTIONS(1187), 1, + ACTIONS(1195), 1, anon_sym_LPAREN2, [88294] = 2, - ACTIONS(644), 1, + ACTIONS(652), 1, anon_sym_COLON_COLON, - ACTIONS(2997), 1, + ACTIONS(3003), 1, anon_sym_LPAREN2, [88301] = 2, - ACTIONS(2999), 1, + ACTIONS(3005), 1, anon_sym_getline, STATE(233), 1, sym_getline_input, [88308] = 2, - ACTIONS(3001), 1, + ACTIONS(3007), 1, anon_sym_getline, STATE(1285), 1, sym_getline_input, [88315] = 2, - ACTIONS(3003), 1, + ACTIONS(3009), 1, anon_sym_getline, STATE(1467), 1, sym_getline_input, @@ -97287,670 +97293,670 @@ static const uint16_t ts_small_parse_table[] = { STATE(1521), 1, sym_block, [88329] = 1, - ACTIONS(3005), 1, + ACTIONS(3011), 1, anon_sym_SLASH2, [88333] = 1, - ACTIONS(3007), 1, + ACTIONS(3013), 1, anon_sym_while, [88337] = 1, - ACTIONS(2230), 1, + ACTIONS(2238), 1, anon_sym_RBRACK, [88341] = 1, - ACTIONS(3009), 1, + ACTIONS(3015), 1, sym_identifier, [88345] = 1, - ACTIONS(3011), 1, + ACTIONS(3017), 1, anon_sym_in, [88349] = 1, - ACTIONS(3013), 1, + ACTIONS(3019), 1, anon_sym_SLASH2, [88353] = 1, - ACTIONS(3015), 1, + ACTIONS(3021), 1, anon_sym_RPAREN, [88357] = 1, - ACTIONS(2224), 1, + ACTIONS(2232), 1, anon_sym_RBRACK, [88361] = 1, - ACTIONS(3017), 1, + ACTIONS(3023), 1, anon_sym_in, [88365] = 1, - ACTIONS(3019), 1, + ACTIONS(3025), 1, sym_identifier, [88369] = 1, - ACTIONS(3021), 1, + ACTIONS(3027), 1, anon_sym_SLASH2, [88373] = 1, - ACTIONS(3023), 1, + ACTIONS(3029), 1, anon_sym_SLASH2, [88377] = 1, - ACTIONS(3025), 1, + ACTIONS(3031), 1, sym_identifier, [88381] = 1, - ACTIONS(3027), 1, + ACTIONS(3033), 1, anon_sym_SLASH2, [88385] = 1, - ACTIONS(3029), 1, + ACTIONS(3035), 1, anon_sym_in, [88389] = 1, - ACTIONS(3031), 1, + ACTIONS(3037), 1, sym_identifier, [88393] = 1, - ACTIONS(3033), 1, + ACTIONS(3039), 1, anon_sym_SLASH2, [88397] = 1, - ACTIONS(3035), 1, + ACTIONS(3041), 1, sym_identifier, [88401] = 1, - ACTIONS(3037), 1, + ACTIONS(3043), 1, anon_sym_SLASH2, [88405] = 1, - ACTIONS(3039), 1, + ACTIONS(3045), 1, anon_sym_SLASH2, [88409] = 1, - ACTIONS(3041), 1, + ACTIONS(3047), 1, anon_sym_in, [88413] = 1, - ACTIONS(3043), 1, + ACTIONS(3049), 1, anon_sym_SLASH2, [88417] = 1, - ACTIONS(3045), 1, + ACTIONS(3051), 1, anon_sym_SLASH2, [88421] = 1, - ACTIONS(758), 1, + ACTIONS(766), 1, anon_sym_COLON, [88425] = 1, - ACTIONS(3047), 1, + ACTIONS(3053), 1, anon_sym_SLASH2, [88429] = 1, - ACTIONS(3049), 1, + ACTIONS(3055), 1, anon_sym_SLASH2, [88433] = 1, - ACTIONS(3051), 1, + ACTIONS(3057), 1, sym_regex_pattern, [88437] = 1, - ACTIONS(3053), 1, + ACTIONS(3059), 1, anon_sym_RPAREN, [88441] = 1, - ACTIONS(3055), 1, + ACTIONS(3061), 1, anon_sym_RPAREN, [88445] = 1, - ACTIONS(2997), 1, + ACTIONS(3003), 1, anon_sym_LPAREN2, [88449] = 1, - ACTIONS(3057), 1, + ACTIONS(3063), 1, anon_sym_RPAREN, [88453] = 1, - ACTIONS(3059), 1, + ACTIONS(3065), 1, sym_identifier, [88457] = 1, - ACTIONS(3061), 1, + ACTIONS(3067), 1, anon_sym_RPAREN, [88461] = 1, - ACTIONS(3063), 1, + ACTIONS(3069), 1, sym_identifier, [88465] = 1, - ACTIONS(3065), 1, + ACTIONS(3071), 1, anon_sym_RPAREN, [88469] = 1, - ACTIONS(3067), 1, + ACTIONS(3073), 1, sym__no_space, [88473] = 1, - ACTIONS(3069), 1, + ACTIONS(3075), 1, anon_sym_RPAREN, [88477] = 1, - ACTIONS(2232), 1, + ACTIONS(2240), 1, anon_sym_RBRACK, [88481] = 1, - ACTIONS(3071), 1, + ACTIONS(3077), 1, anon_sym_COLON_COLON, [88485] = 1, - ACTIONS(3073), 1, + ACTIONS(3079), 1, anon_sym_LPAREN, [88489] = 1, - ACTIONS(3075), 1, + ACTIONS(3081), 1, anon_sym_RPAREN, [88493] = 1, - ACTIONS(3077), 1, + ACTIONS(3083), 1, anon_sym_in, [88497] = 1, - ACTIONS(3079), 1, + ACTIONS(3085), 1, anon_sym_LPAREN, [88501] = 1, - ACTIONS(3081), 1, + ACTIONS(3087), 1, anon_sym_SLASH2, [88505] = 1, - ACTIONS(3083), 1, + ACTIONS(3089), 1, sym_identifier, [88509] = 1, - ACTIONS(3085), 1, + ACTIONS(3091), 1, anon_sym_LPAREN, [88513] = 1, - ACTIONS(3087), 1, + ACTIONS(3093), 1, anon_sym_LPAREN, [88517] = 1, - ACTIONS(3089), 1, + ACTIONS(3095), 1, anon_sym_COLON_COLON, [88521] = 1, - ACTIONS(2955), 1, + ACTIONS(2961), 1, anon_sym_LPAREN2, [88525] = 1, - ACTIONS(2262), 1, + ACTIONS(2270), 1, anon_sym_RBRACK, [88529] = 1, - ACTIONS(3091), 1, + ACTIONS(3097), 1, sym_regex_pattern, [88533] = 1, - ACTIONS(3093), 1, + ACTIONS(3099), 1, sym_regex_pattern, [88537] = 1, - ACTIONS(3095), 1, + ACTIONS(3101), 1, sym_regex_pattern, [88541] = 1, - ACTIONS(3097), 1, + ACTIONS(3103), 1, sym_regex_pattern, [88545] = 1, - ACTIONS(3099), 1, + ACTIONS(3105), 1, sym_regex_pattern, [88549] = 1, - ACTIONS(3101), 1, + ACTIONS(3107), 1, anon_sym_RPAREN, [88553] = 1, - ACTIONS(3103), 1, + ACTIONS(3109), 1, anon_sym_in, [88557] = 1, - ACTIONS(3105), 1, + ACTIONS(3111), 1, sym_regex_pattern, [88561] = 1, - ACTIONS(2236), 1, + ACTIONS(2244), 1, anon_sym_RBRACK, [88565] = 1, - ACTIONS(3107), 1, + ACTIONS(3113), 1, sym_regex_pattern, [88569] = 1, - ACTIONS(3109), 1, + ACTIONS(3115), 1, sym__no_space, [88573] = 1, - ACTIONS(3111), 1, + ACTIONS(3117), 1, sym_regex_pattern, [88577] = 1, - ACTIONS(3113), 1, + ACTIONS(3119), 1, sym__no_space, [88581] = 1, - ACTIONS(3115), 1, + ACTIONS(3121), 1, sym_regex_pattern, [88585] = 1, - ACTIONS(3117), 1, + ACTIONS(3123), 1, anon_sym_COLON, [88589] = 1, - ACTIONS(3119), 1, + ACTIONS(3125), 1, sym__no_space, [88593] = 1, - ACTIONS(3121), 1, + ACTIONS(3127), 1, sym_regex_pattern, [88597] = 1, - ACTIONS(3123), 1, + ACTIONS(3129), 1, sym__no_space, [88601] = 1, - ACTIONS(3125), 1, + ACTIONS(3131), 1, anon_sym_COLON, [88605] = 1, - ACTIONS(1187), 1, + ACTIONS(1195), 1, anon_sym_LPAREN2, [88609] = 1, - ACTIONS(3127), 1, + ACTIONS(3133), 1, sym_regex_pattern, [88613] = 1, - ACTIONS(3129), 1, + ACTIONS(3135), 1, sym__no_space, [88617] = 1, - ACTIONS(3131), 1, + ACTIONS(3137), 1, sym_identifier, [88621] = 1, - ACTIONS(2995), 1, + ACTIONS(3001), 1, anon_sym_LPAREN2, [88625] = 1, - ACTIONS(3133), 1, + ACTIONS(3139), 1, sym_regex_pattern, [88629] = 1, - ACTIONS(3135), 1, + ACTIONS(3141), 1, sym__no_space, [88633] = 1, - ACTIONS(3137), 1, + ACTIONS(3143), 1, anon_sym_in, [88637] = 1, - ACTIONS(3139), 1, + ACTIONS(3145), 1, anon_sym_RPAREN, [88641] = 1, - ACTIONS(638), 1, + ACTIONS(646), 1, anon_sym_LPAREN2, [88645] = 1, - ACTIONS(3141), 1, + ACTIONS(3147), 1, anon_sym_SLASH2, [88649] = 1, - ACTIONS(3143), 1, + ACTIONS(3149), 1, anon_sym_in, [88653] = 1, - ACTIONS(3145), 1, + ACTIONS(3151), 1, anon_sym_in, [88657] = 1, - ACTIONS(3147), 1, + ACTIONS(3153), 1, sym_identifier, [88661] = 1, - ACTIONS(3149), 1, + ACTIONS(3155), 1, sym_regex_pattern, [88665] = 1, - ACTIONS(3151), 1, + ACTIONS(3157), 1, sym__no_space, [88669] = 1, - ACTIONS(688), 1, + ACTIONS(696), 1, anon_sym_LPAREN2, [88673] = 1, - ACTIONS(3153), 1, + ACTIONS(3159), 1, anon_sym_RPAREN, [88677] = 1, - ACTIONS(3155), 1, + ACTIONS(3161), 1, sym_regex_pattern, [88681] = 1, - ACTIONS(3157), 1, + ACTIONS(3163), 1, sym__no_space, [88685] = 1, - ACTIONS(3159), 1, + ACTIONS(3165), 1, anon_sym_LPAREN, [88689] = 1, - ACTIONS(3161), 1, + ACTIONS(3167), 1, anon_sym_RPAREN, [88693] = 1, - ACTIONS(3163), 1, + ACTIONS(3169), 1, anon_sym_SLASH2, [88697] = 1, - ACTIONS(3165), 1, + ACTIONS(3171), 1, sym_regex_pattern, [88701] = 1, - ACTIONS(2260), 1, + ACTIONS(2268), 1, anon_sym_RBRACK, [88705] = 1, - ACTIONS(3167), 1, + ACTIONS(3173), 1, anon_sym_in, [88709] = 1, - ACTIONS(3169), 1, + ACTIONS(3175), 1, sym_identifier, [88713] = 1, - ACTIONS(3171), 1, + ACTIONS(3177), 1, sym_regex_pattern, [88717] = 1, - ACTIONS(3173), 1, + ACTIONS(3179), 1, anon_sym_in, [88721] = 1, - ACTIONS(3175), 1, + ACTIONS(3181), 1, sym__no_space, [88725] = 1, - ACTIONS(1201), 1, + ACTIONS(1209), 1, anon_sym_LPAREN2, [88729] = 1, - ACTIONS(3177), 1, + ACTIONS(3183), 1, sym_identifier, [88733] = 1, - ACTIONS(3179), 1, + ACTIONS(3185), 1, anon_sym_RPAREN, [88737] = 1, - ACTIONS(3181), 1, + ACTIONS(3187), 1, sym_regex_pattern, [88741] = 1, - ACTIONS(3183), 1, + ACTIONS(3189), 1, sym__no_space, [88745] = 1, - ACTIONS(3185), 1, + ACTIONS(3191), 1, anon_sym_RPAREN, [88749] = 1, - ACTIONS(3187), 1, + ACTIONS(3193), 1, anon_sym_RPAREN, [88753] = 1, - ACTIONS(3189), 1, + ACTIONS(3195), 1, anon_sym_RPAREN, [88757] = 1, - ACTIONS(3191), 1, + ACTIONS(3197), 1, anon_sym_SLASH2, [88761] = 1, - ACTIONS(3193), 1, + ACTIONS(3199), 1, anon_sym_COLON_COLON, [88765] = 1, - ACTIONS(3195), 1, + ACTIONS(3201), 1, anon_sym_LPAREN, [88769] = 1, - ACTIONS(682), 1, + ACTIONS(690), 1, anon_sym_LPAREN2, [88773] = 1, - ACTIONS(3197), 1, + ACTIONS(3203), 1, anon_sym_in, [88777] = 1, - ACTIONS(2244), 1, + ACTIONS(2252), 1, anon_sym_RBRACK, [88781] = 1, - ACTIONS(3199), 1, + ACTIONS(3205), 1, anon_sym_RPAREN, [88785] = 1, - ACTIONS(3201), 1, + ACTIONS(3207), 1, anon_sym_LPAREN, [88789] = 1, - ACTIONS(3203), 1, + ACTIONS(3209), 1, anon_sym_COLON_COLON, [88793] = 1, - ACTIONS(3205), 1, + ACTIONS(3211), 1, sym_regex_pattern, [88797] = 1, - ACTIONS(3207), 1, + ACTIONS(3213), 1, anon_sym_COLON_COLON, [88801] = 1, - ACTIONS(3209), 1, + ACTIONS(3215), 1, anon_sym_COLON_COLON, [88805] = 1, - ACTIONS(3211), 1, + ACTIONS(3217), 1, anon_sym_COLON_COLON, [88809] = 1, - ACTIONS(3213), 1, + ACTIONS(3219), 1, anon_sym_COLON_COLON, [88813] = 1, - ACTIONS(3215), 1, + ACTIONS(3221), 1, anon_sym_COLON_COLON, [88817] = 1, - ACTIONS(3217), 1, + ACTIONS(3223), 1, anon_sym_COLON_COLON, [88821] = 1, - ACTIONS(3219), 1, + ACTIONS(3225), 1, anon_sym_COLON_COLON, [88825] = 1, - ACTIONS(3221), 1, + ACTIONS(3227), 1, anon_sym_COLON_COLON, [88829] = 1, - ACTIONS(3223), 1, + ACTIONS(3229), 1, anon_sym_COLON_COLON, [88833] = 1, - ACTIONS(3225), 1, + ACTIONS(3231), 1, anon_sym_COLON_COLON, [88837] = 1, - ACTIONS(3227), 1, + ACTIONS(3233), 1, anon_sym_COLON_COLON, [88841] = 1, - ACTIONS(3229), 1, + ACTIONS(3235), 1, anon_sym_COLON_COLON, [88845] = 1, - ACTIONS(3231), 1, + ACTIONS(3237), 1, anon_sym_COLON_COLON, [88849] = 1, - ACTIONS(3233), 1, + ACTIONS(3239), 1, anon_sym_LPAREN, [88853] = 1, - ACTIONS(3235), 1, + ACTIONS(3241), 1, anon_sym_LPAREN, [88857] = 1, - ACTIONS(3237), 1, + ACTIONS(3243), 1, anon_sym_LPAREN, [88861] = 1, - ACTIONS(3239), 1, + ACTIONS(3245), 1, anon_sym_LPAREN, [88865] = 1, - ACTIONS(3241), 1, + ACTIONS(3247), 1, sym__no_space, [88869] = 1, - ACTIONS(3243), 1, + ACTIONS(3249), 1, anon_sym_while, [88873] = 1, - ACTIONS(3245), 1, + ACTIONS(3251), 1, anon_sym_RPAREN, [88877] = 1, - ACTIONS(730), 1, + ACTIONS(738), 1, anon_sym_LPAREN2, [88881] = 1, - ACTIONS(3247), 1, + ACTIONS(3253), 1, anon_sym_SLASH2, [88885] = 1, - ACTIONS(3249), 1, + ACTIONS(3255), 1, anon_sym_while, [88889] = 1, - ACTIONS(3251), 1, + ACTIONS(3257), 1, anon_sym_RPAREN, [88893] = 1, - ACTIONS(3253), 1, + ACTIONS(3259), 1, sym_regex_pattern, [88897] = 1, - ACTIONS(3255), 1, + ACTIONS(3261), 1, sym_identifier, [88901] = 1, - ACTIONS(3257), 1, + ACTIONS(3263), 1, sym__no_space, [88905] = 1, - ACTIONS(2953), 1, + ACTIONS(2959), 1, anon_sym_LPAREN2, [88909] = 1, - ACTIONS(3259), 1, + ACTIONS(3265), 1, sym_identifier, [88913] = 1, - ACTIONS(3261), 1, + ACTIONS(3267), 1, anon_sym_RPAREN, [88917] = 1, - ACTIONS(3263), 1, + ACTIONS(3269), 1, sym_regex_pattern, [88921] = 1, - ACTIONS(3265), 1, + ACTIONS(3271), 1, aux_sym_comment_token1, [88925] = 1, - ACTIONS(3267), 1, + ACTIONS(3273), 1, anon_sym_RPAREN, [88929] = 1, - ACTIONS(3269), 1, + ACTIONS(3275), 1, sym_identifier, [88933] = 1, - ACTIONS(2254), 1, + ACTIONS(2262), 1, anon_sym_RBRACK, [88937] = 1, - ACTIONS(3271), 1, + ACTIONS(3277), 1, sym__no_space, [88941] = 1, - ACTIONS(2250), 1, + ACTIONS(2258), 1, anon_sym_RBRACK, [88945] = 1, - ACTIONS(1367), 1, + ACTIONS(1375), 1, anon_sym_LPAREN2, [88949] = 1, - ACTIONS(3273), 1, + ACTIONS(3279), 1, anon_sym_RPAREN, [88953] = 1, - ACTIONS(3275), 1, + ACTIONS(3281), 1, anon_sym_RPAREN, [88957] = 1, - ACTIONS(3277), 1, + ACTIONS(3283), 1, anon_sym_SLASH2, [88961] = 1, - ACTIONS(3279), 1, + ACTIONS(3285), 1, anon_sym_in, [88965] = 1, - ACTIONS(2258), 1, + ACTIONS(2266), 1, anon_sym_RBRACK, [88969] = 1, - ACTIONS(3281), 1, + ACTIONS(3287), 1, sym_identifier, [88973] = 1, - ACTIONS(3283), 1, + ACTIONS(3289), 1, anon_sym_RPAREN, [88977] = 1, - ACTIONS(3285), 1, + ACTIONS(3291), 1, sym_regex_pattern, [88981] = 1, - ACTIONS(3287), 1, + ACTIONS(3293), 1, anon_sym_RPAREN, [88985] = 1, - ACTIONS(3289), 1, + ACTIONS(3295), 1, anon_sym_SLASH2, [88989] = 1, - ACTIONS(3291), 1, + ACTIONS(3297), 1, anon_sym_SLASH2, [88993] = 1, - ACTIONS(3293), 1, + ACTIONS(3299), 1, sym__no_space, [88997] = 1, - ACTIONS(2228), 1, + ACTIONS(2236), 1, anon_sym_RBRACK, [89001] = 1, - ACTIONS(884), 1, + ACTIONS(892), 1, anon_sym_LPAREN2, [89005] = 1, - ACTIONS(3295), 1, + ACTIONS(3301), 1, anon_sym_SLASH2, [89009] = 1, - ACTIONS(3297), 1, + ACTIONS(3303), 1, anon_sym_while, [89013] = 1, - ACTIONS(3299), 1, + ACTIONS(3305), 1, anon_sym_RPAREN, [89017] = 1, - ACTIONS(3301), 1, + ACTIONS(3307), 1, sym_regex_pattern, [89021] = 1, - ACTIONS(3303), 1, + ACTIONS(3309), 1, anon_sym_in, [89025] = 1, - ACTIONS(3305), 1, + ACTIONS(3311), 1, anon_sym_in, [89029] = 1, - ACTIONS(3307), 1, + ACTIONS(3313), 1, anon_sym_RPAREN, [89033] = 1, - ACTIONS(2248), 1, + ACTIONS(2256), 1, anon_sym_RBRACK, [89037] = 1, - ACTIONS(3309), 1, + ACTIONS(3315), 1, sym__no_space, [89041] = 1, - ACTIONS(3311), 1, + ACTIONS(3317), 1, anon_sym_RPAREN, [89045] = 1, - ACTIONS(3313), 1, + ACTIONS(3319), 1, sym__no_space, [89049] = 1, - ACTIONS(995), 1, + ACTIONS(1003), 1, anon_sym_LPAREN2, [89053] = 1, - ACTIONS(2969), 1, + ACTIONS(2975), 1, anon_sym_LPAREN, [89057] = 1, - ACTIONS(3315), 1, + ACTIONS(3321), 1, anon_sym_in, [89061] = 1, - ACTIONS(3317), 1, + ACTIONS(3323), 1, anon_sym_SLASH2, [89065] = 1, - ACTIONS(3319), 1, + ACTIONS(3325), 1, sym_identifier, [89069] = 1, - ACTIONS(3321), 1, + ACTIONS(3327), 1, anon_sym_RPAREN, [89073] = 1, - ACTIONS(2965), 1, + ACTIONS(2971), 1, anon_sym_LPAREN2, [89077] = 1, - ACTIONS(2238), 1, + ACTIONS(2246), 1, anon_sym_RBRACK, [89081] = 1, - ACTIONS(3323), 1, + ACTIONS(3329), 1, sym_regex_pattern, [89085] = 1, - ACTIONS(3325), 1, + ACTIONS(3331), 1, anon_sym_RPAREN, [89089] = 1, - ACTIONS(3327), 1, + ACTIONS(3333), 1, anon_sym_SLASH2, [89093] = 1, - ACTIONS(3329), 1, + ACTIONS(3335), 1, anon_sym_SLASH2, [89097] = 1, - ACTIONS(3331), 1, + ACTIONS(3337), 1, sym_identifier, [89101] = 1, - ACTIONS(3333), 1, + ACTIONS(3339), 1, anon_sym_LPAREN, [89105] = 1, - ACTIONS(3335), 1, + ACTIONS(3341), 1, anon_sym_RPAREN, [89109] = 1, - ACTIONS(3337), 1, + ACTIONS(3343), 1, anon_sym_LPAREN, [89113] = 1, - ACTIONS(3339), 1, + ACTIONS(3345), 1, anon_sym_LPAREN, [89117] = 1, - ACTIONS(3341), 1, + ACTIONS(3347), 1, anon_sym_LPAREN, [89121] = 1, - ACTIONS(3343), 1, + ACTIONS(3349), 1, anon_sym_LPAREN, [89125] = 1, - ACTIONS(3345), 1, + ACTIONS(3351), 1, anon_sym_LPAREN, [89129] = 1, - ACTIONS(3347), 1, + ACTIONS(3353), 1, anon_sym_LPAREN, [89133] = 1, - ACTIONS(2240), 1, + ACTIONS(2248), 1, anon_sym_RBRACK, [89137] = 1, - ACTIONS(3349), 1, + ACTIONS(3355), 1, anon_sym_RPAREN, [89141] = 1, - ACTIONS(3351), 1, + ACTIONS(3357), 1, anon_sym_SLASH2, [89145] = 1, - ACTIONS(3353), 1, + ACTIONS(3359), 1, anon_sym_RPAREN, [89149] = 1, - ACTIONS(3355), 1, + ACTIONS(3361), 1, anon_sym_COLON_COLON, [89153] = 1, - ACTIONS(3357), 1, + ACTIONS(3363), 1, anon_sym_RPAREN, [89157] = 1, - ACTIONS(3359), 1, + ACTIONS(3365), 1, sym__no_space, [89161] = 1, - ACTIONS(3361), 1, + ACTIONS(3367), 1, anon_sym_RPAREN, [89165] = 1, - ACTIONS(3363), 1, + ACTIONS(3369), 1, ts_builtin_sym_end, [89169] = 1, - ACTIONS(3365), 1, + ACTIONS(3371), 1, aux_sym_comment_token1, [89173] = 1, - ACTIONS(2220), 1, + ACTIONS(2228), 1, anon_sym_RBRACK, [89177] = 1, - ACTIONS(2989), 1, + ACTIONS(2995), 1, anon_sym_LPAREN2, [89181] = 1, - ACTIONS(3367), 1, + ACTIONS(3373), 1, anon_sym_LPAREN, [89185] = 1, - ACTIONS(3369), 1, + ACTIONS(3375), 1, anon_sym_LPAREN, [89189] = 1, - ACTIONS(3371), 1, + ACTIONS(3377), 1, anon_sym_LPAREN, [89193] = 1, - ACTIONS(3373), 1, + ACTIONS(3379), 1, sym_identifier, [89197] = 1, - ACTIONS(3375), 1, + ACTIONS(3381), 1, anon_sym_LPAREN, [89201] = 1, - ACTIONS(3377), 1, + ACTIONS(3383), 1, anon_sym_RPAREN, [89205] = 1, - ACTIONS(3379), 1, + ACTIONS(3385), 1, sym_regex_pattern, [89209] = 1, - ACTIONS(3381), 1, + ACTIONS(3387), 1, anon_sym_LPAREN, [89213] = 1, - ACTIONS(3383), 1, + ACTIONS(3389), 1, anon_sym_LPAREN, }; @@ -99821,7 +99827,7 @@ static const TSParseActionEntry ts_parse_actions[] = { [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2049), [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(631), [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1943), - [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(135), + [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(137), [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2048), [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1133), [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1760), @@ -99843,7 +99849,7 @@ static const TSParseActionEntry ts_parse_actions[] = { [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2047), [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(636), [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2031), - [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(138), + [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(140), [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2054), [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1224), [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1752), @@ -99889,7 +99895,7 @@ static const TSParseActionEntry ts_parse_actions[] = { [180] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(2034), [183] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(652), [186] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(2033), - [189] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(138), + [189] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(140), [192] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(2029), [195] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1265), [198] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1752), @@ -100046,1418 +100052,1421 @@ static const TSParseActionEntry ts_parse_actions[] = { [518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1217), [520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1219), [522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1220), - [524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1673), - [526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_case, 3, .production_id = 29), - [528] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_case, 3, .production_id = 29), - [530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1236), - [532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1237), - [534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1233), - [536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1234), - [538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), - [540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1886), - [542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), - [544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1685), - [546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), - [548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1683), - [550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1221), - [552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1222), - [554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1231), - [556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1232), - [558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1225), - [560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1226), - [562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1227), - [564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1228), - [566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1140), - [568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1139), - [570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1229), - [572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1230), - [574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1762), - [576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1761), - [578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1763), - [580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1772), - [582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(660), - [584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1900), - [586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1715), - [588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1097), - [590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1717), - [592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(633), - [594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1975), - [596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1709), - [598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(938), - [600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1677), - [602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1672), + [524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1671), + [526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_default, 3), + [528] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_default, 3), + [530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1673), + [532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_case, 3, .production_id = 29), + [534] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_case, 3, .production_id = 29), + [536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1236), + [538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1237), + [540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1233), + [542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1234), + [544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), + [546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1886), + [548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), + [550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1685), + [552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), + [554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1683), + [556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1221), + [558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1222), + [560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1231), + [562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1232), + [564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1225), + [566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1226), + [568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1227), + [570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1228), + [572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1140), + [574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1139), + [576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1229), + [578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1230), + [580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1672), + [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(1762), + [588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1761), + [590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1763), + [592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1772), + [594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(660), + [596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1900), + [598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1715), + [600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1097), + [602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1717), [604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1668), [606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1669), [608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1253), [610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1251), - [612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1660), - [614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1661), - [616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1671), - [618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1249), - [620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1248), - [622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1733), - [624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1731), - [626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1734), - [628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1735), - [630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1175), - [632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1157), - [634] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_concat, 3, .production_id = 7), - [636] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__exp, 1), - [638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), - [640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1523), - [642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(679), - [644] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace, 1, .production_id = 1), - [646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_concat, 3, .production_id = 7), - [648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(204), - [650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__exp, 1), - [652] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_print_statement, 1), - [654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(626), - [656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), - [658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1917), - [660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1701), - [662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(892), - [664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1707), - [666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1768), - [668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 1), - [670] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_getline_input, 2), - [672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_getline_input, 2), - [674] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_exp, 2, .production_id = 3), - [676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_exp, 2, .production_id = 3), - [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(687), - [684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(673), - [686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(225), - [688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), - [690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(375), - [692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(976), - [694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(192), - [696] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_getline_input, 1), - [698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(991), - [700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_getline_input, 1), - [702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(442), - [704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(950), - [706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), - [708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(755), - [710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(160), - [712] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_ref, 4, .production_id = 15), - [714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_ref, 4, .production_id = 15), - [716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(652), - [718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), - [720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1926), - [722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1678), - [724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1084), - [726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1687), - [728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1774), - [730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), - [732] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_regex, 4, .production_id = 14), - [734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_regex, 4, .production_id = 14), - [736] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_grouping, 3), - [738] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_grouping, 3), - [740] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_getline_file, 3, .production_id = 5), - [742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_getline_file, 3, .production_id = 5), - [744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(459), - [746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(973), - [748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), - [750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(231), - [752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(857), - [754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1003), - [756] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_number, 1), - [758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_number, 1), - [760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(415), - [762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(811), - [764] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_exp, 3, .production_id = 10), - [766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_exp, 3, .production_id = 10), - [768] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_ref, 2), - [770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_ref, 2), - [772] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_exp, 1, .production_id = 2), - [774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_exp, 1, .production_id = 2), - [776] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_func_call, 3, .production_id = 8), - [778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_func_call, 3, .production_id = 8), - [780] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_exp, 2, .production_id = 4), - [782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_exp, 2, .production_id = 4), - [784] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_piped_io_exp, 3, .production_id = 11), - [786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_piped_io_exp, 3, .production_id = 11), - [788] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_getline_file, 4, .production_id = 13), - [790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_getline_file, 4, .production_id = 13), - [792] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_indirect_func_call, 2), - [794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_indirect_func_call, 2), - [796] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 2), - [798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 2), - [800] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_regex_constant, 2), - [802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_regex_constant, 2), - [804] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 3), - [806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 3), - [808] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_func_call, 4, .production_id = 8), - [810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_func_call, 4, .production_id = 8), - [812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(180), - [814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(881), - [816] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_regex, 3, .production_id = 6), - [818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(184), - [820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_regex, 3, .production_id = 6), - [822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(814), - [824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(815), - [826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(816), - [828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(817), - [830] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__binary_in, 5, .production_id = 16), - [832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(818), - [834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_in, 5, .production_id = 16), - [836] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_exp, 3, .production_id = 7), - [838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(813), - [840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1808), - [842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1075), - [844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(819), - [846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(820), - [848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_exp, 3, .production_id = 7), - [850] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ternary_exp, 5, .production_id = 18), - [852] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ternary_exp, 5, .production_id = 18), - [854] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_exp, 2, .production_id = 3), - [856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_exp, 2, .production_id = 3), - [858] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__binary_in, 3, .production_id = 10), - [860] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_in, 3, .production_id = 10), - [862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(237), - [864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(831), - [866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(830), - [868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1830), - [870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1088), - [872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(829), - [874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(828), - [876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(827), - [878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(826), - [880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(822), - [882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(821), - [884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), - [886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), - [888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), - [890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1523), - [892] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 1), - [894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 1), - [896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(297), - [898] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_exit_statement, 1), - [900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exit_statement, 1), - [902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), - [904] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(353), - [907] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1518), - [910] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1805), - [913] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(653), - [916] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(6), - [919] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(496), - [922] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2053), - [925] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(770), - [928] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(770), - [931] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1679), - [934] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(774), - [937] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1682), - [940] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(510), - [943] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(510), - [946] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1766), - [949] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1778), - [952] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2044), - [955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 1), - [957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(305), - [959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(965), - [961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(330), - [963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(799), - [965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(681), - [967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), - [969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(324), - [971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(334), - [973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(978), - [975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(318), - [977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(939), - [979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(952), - [981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(680), - [983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(350), - [985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(823), - [987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(675), - [989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(392), - [991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(975), - [993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(361), - [995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), - [997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), - [999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(911), - [1001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), - [1003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), - [1005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(760), - [1007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(761), - [1009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1804), - [1011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1083), - [1013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(762), - [1015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(763), - [1017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(764), - [1019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(765), - [1021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(766), - [1023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(767), - [1025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(632), - [1027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), - [1029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(954), - [1031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), - [1033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(433), - [1035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(902), - [1037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(440), - [1039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(287), - [1041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(402), - [1043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(961), - [1045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(970), - [1047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(969), - [1049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(968), - [1051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(971), - [1053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(967), - [1055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(460), - [1057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(972), - [1059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(966), - [1061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1797), - [1063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1069), - [1065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(964), - [1067] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__print_args, 1), - [1069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1655), - [1071] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__print_args, 1), - [1073] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_exp_list, 2), - [1075] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exp_list, 2), - [1077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(866), - [1079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1817), - [1081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1807), - [1083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(340), - [1085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(948), - [1087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), - [1089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(947), - [1091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(946), - [1093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(949), - [1095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), - [1097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), - [1099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(951), - [1101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), - [1103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), - [1105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), - [1107] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 2), - [1109] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2), - [1111] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_exit_statement, 2), - [1113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exit_statement, 2), - [1115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1802), - [1117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1802), - [1119] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_piped_io_statement, 3, .production_id = 12), - [1121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_piped_io_statement, 3, .production_id = 12), - [1123] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_redirected_io_statement, 3, .production_id = 5), - [1125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_redirected_io_statement, 3, .production_id = 5), - [1127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(497), - [1129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(955), - [1131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(495), - [1133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), - [1135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(500), - [1137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(853), - [1139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(941), - [1141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(504), - [1143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(962), - [1145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), - [1147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(516), - [1149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(538), - [1151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(914), - [1153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(916), - [1155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1791), - [1157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1791), - [1159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), - [1161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), - [1163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(919), - [1165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), - [1167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(920), - [1169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), - [1171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), - [1173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), - [1175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), - [1177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1799), - [1179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1799), - [1181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 1), - [1183] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern, 1), - [1185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), - [1187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), - [1189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(573), - [1191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(998), - [1193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(579), - [1195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1005), - [1197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1296), - [1199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(936), - [1201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), - [1203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, .production_id = 9), - [1205] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, .production_id = 9), - [1207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1309), - [1209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(903), - [1211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), - [1213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(997), - [1215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1381), - [1217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(793), - [1219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), - [1221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1353), - [1223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(864), - [1225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1001), - [1227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(644), - [1229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(867), - [1231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1033), - [1233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1027), - [1235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1026), - [1237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1024), - [1239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1023), - [1241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1022), - [1243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), - [1245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(748), - [1247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), - [1249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1400), - [1251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1860), - [1253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1082), - [1255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), - [1257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1700), - [1259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), - [1261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1704), - [1263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1497), - [1265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1497), - [1267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1744), - [1269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(987), - [1271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1020), - [1273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1019), - [1275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1054), - [1277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1028), - [1279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), - [1281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), - [1283] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_printf_statement, 4), - [1285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_printf_statement, 4), - [1287] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_print_statement, 4), - [1289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 4), - [1291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1792), - [1293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(725), - [1295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(841), - [1297] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_printf_statement, 2), - [1299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_printf_statement, 2), - [1301] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_print_statement, 2), - [1303] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 2), - [1305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), - [1307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1287), - [1309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1089), - [1311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1090), - [1313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1095), - [1315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), - [1317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1482), - [1319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1073), - [1321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1079), - [1323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1793), - [1325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(989), - [1327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1059), - [1329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1068), - [1331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1071), - [1333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), - [1335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), - [1337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(869), - [1339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1368), - [1341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), - [1343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), - [1345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(759), - [1347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), - [1349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), - [1351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), - [1353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(921), - [1355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1514), - [1357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), - [1359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), - [1361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), - [1363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(981), - [1365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(907), - [1367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), - [1369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1501), - [1371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(833), - [1373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), - [1375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), - [1377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), - [1379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), - [1381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), - [1383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), - [1385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), - [1387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), - [1389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), - [1391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), - [1393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), - [1395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), - [1397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), - [1399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), - [1401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), - [1403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1243), - [1405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), - [1407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), - [1409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1246), - [1411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), - [1413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), - [1415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), - [1417] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__io_statement, 1), - [1419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1007), - [1421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1006), - [1423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__io_statement, 1), - [1425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), - [1427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), - [1429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), - [1431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1254), - [1433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), - [1435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(858), - [1437] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_exp_list_repeat1, 2), SHIFT_REPEAT(748), - [1440] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_exp_list_repeat1, 2), SHIFT_REPEAT(669), - [1443] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_exp_list_repeat1, 2), SHIFT_REPEAT(1400), - [1446] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_exp_list_repeat1, 2), SHIFT_REPEAT(1860), - [1449] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_exp_list_repeat1, 2), SHIFT_REPEAT(1082), - [1452] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_exp_list_repeat1, 2), SHIFT_REPEAT(1082), - [1455] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_exp_list_repeat1, 2), SHIFT_REPEAT(1700), - [1458] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_exp_list_repeat1, 2), SHIFT_REPEAT(1037), - [1461] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_exp_list_repeat1, 2), SHIFT_REPEAT(1704), - [1464] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_exp_list_repeat1, 2), SHIFT_REPEAT(1497), - [1467] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_exp_list_repeat1, 2), SHIFT_REPEAT(1497), - [1470] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_exp_list_repeat1, 2), SHIFT_REPEAT(1744), - [1473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), - [1475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1245), - [1477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), - [1479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), - [1481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), - [1483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), - [1485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), - [1487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), - [1489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), - [1491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), - [1493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), - [1495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), - [1497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), - [1499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), - [1501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), - [1503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1256), - [1505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), - [1507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), - [1509] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delete_statement, 2), - [1511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete_statement, 2), - [1513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062), - [1515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1250), - [1517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), - [1519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), - [1521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), - [1523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(366), - [1525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(492), - [1527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2022), - [1529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1698), - [1531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1712), - [1533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(178), - [1535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(674), - [1537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1310), - [1539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1930), - [1541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1696), - [1543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1699), - [1545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(169), - [1547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(291), - [1549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1908), - [1551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1713), - [1553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1714), - [1555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(604), - [1557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1284), - [1559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1897), - [1561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1703), - [1563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1702), - [1565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(194), - [1567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(292), - [1569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1950), - [1571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1716), - [1573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1718), - [1575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(156), - [1577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), - [1579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(170), - [1581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1904), - [1583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(772), - [1585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), - [1587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1719), - [1589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1721), - [1591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(193), - [1593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), - [1595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1773), - [1597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(164), - [1599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), - [1601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(613), - [1603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1921), - [1605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1085), - [1607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), - [1609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1695), - [1611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1693), - [1613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(221), - [1615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), - [1617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1765), - [1619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(279), - [1621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), - [1623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(367), - [1625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2006), - [1627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(909), - [1629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), - [1631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1674), - [1633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1720), - [1635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(337), - [1637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), - [1639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1749), - [1641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), - [1643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(191), - [1645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1936), - [1647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(787), - [1649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), - [1651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1706), - [1653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1676), - [1655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(693), - [1657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1378), - [1659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1996), - [1661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1711), - [1663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1710), - [1665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(578), - [1667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1244), - [1669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1888), - [1671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1691), - [1673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1689), - [1675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), - [1677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(582), - [1679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1895), - [1681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1087), - [1683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), - [1685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1688), - [1687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1686), - [1689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(797), - [1691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(798), - [1693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(800), - [1695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(802), - [1697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(803), - [1699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(796), - [1701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(804), - [1703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1063), - [1705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(805), - [1707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(566), - [1709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1190), - [1711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1885), - [1713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1681), - [1715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1680), - [1717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(957), - [1719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(959), - [1721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1682), - [1723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(559), - [1725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(387), - [1727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), - [1729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(691), - [1731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1981), - [1733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1077), - [1735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), - [1737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1708), - [1739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1705), - [1741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(568), - [1743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(183), - [1745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(883), - [1747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), - [1749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(563), - [1751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1884), - [1753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(993), - [1755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), - [1757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1692), - [1759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1694), - [1761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), - [1763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(565), - [1765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1887), - [1767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(994), - [1769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), - [1771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1684), - [1773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1690), - [1775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(741), - [1777] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_while_statement, 7, .production_id = 21), - [1779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_while_statement, 7, .production_id = 21), - [1781] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 23), - [1783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1134), - [1785] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 23), - [1787] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 7, .production_id = 19), - [1789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 7, .production_id = 19), - [1791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(786), - [1793] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_statement, 6), - [1795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_statement, 6), - [1797] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_body, 2), - [1799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_body, 2), - [1801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(785), - [1803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(784), - [1805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(807), - [1807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(783), - [1809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(824), - [1811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(775), - [1813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1061), - [1815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(773), - [1817] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_statement, 5), - [1819] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_statement, 5), - [1821] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6), - [1823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6), - [1825] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_while_statement, 6, .production_id = 20), - [1827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_while_statement, 6, .production_id = 20), - [1829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1255), - [1831] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 3), - [1833] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 3), - [1835] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 6, .production_id = 19), - [1837] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 6, .production_id = 19), - [1839] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 2), - [1841] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2), - [1843] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 10, .production_id = 30), - [1845] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 10, .production_id = 30), - [1847] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 5, .production_id = 19), - [1849] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 5, .production_id = 19), - [1851] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, .production_id = 30), - [1853] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, .production_id = 30), - [1855] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement, 2), - [1857] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement, 2), - [1859] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement_separated, 2), - [1861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement_separated, 2), - [1863] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, .production_id = 28), - [1865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, .production_id = 28), - [1867] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, .production_id = 27), - [1869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, .production_id = 27), - [1871] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, .production_id = 26), - [1873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, .production_id = 26), - [1875] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 28), - [1877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 28), - [1879] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 27), - [1881] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 27), - [1883] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 25), - [1885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 25), - [1887] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_statement, 8, .production_id = 24), - [1889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_statement, 8, .production_id = 24), - [1891] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 26), - [1893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 26), - [1895] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 23), - [1897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 23), - [1899] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 22), - [1901] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 22), - [1903] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 8, .production_id = 19), - [1905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 8, .production_id = 19), - [1907] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 2), - [1909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 2), - [1911] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_body, 3), - [1913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_body, 3), - [1915] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 25), - [1917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 25), - [1919] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_statement, 7, .production_id = 24), - [1921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_statement, 7, .production_id = 24), - [1923] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 22), - [1925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 22), - [1927] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7), - [1929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7), - [1931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1218), - [1933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1015), - [1935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), - [1937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(953), - [1939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(933), - [1941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), - [1943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1016), - [1945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1825), - [1947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1825), - [1949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), - [1951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), - [1953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), - [1955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), - [1957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), - [1959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1267), - [1961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(908), - [1963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1260), - [1965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1264), - [1967] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 2), - [1969] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 2), - [1971] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 2), SHIFT_REPEAT(1982), - [1974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1758), - [1976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1288), - [1978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(795), - [1980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1764), - [1982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1751), - [1984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1281), - [1986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(901), - [1988] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, .production_id = 19), - [1990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1726), - [1992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1755), - [1994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1729), - [1996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(692), - [1998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1767), - [2000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1745), - [2002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1299), - [2004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(690), - [2006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1320), - [2008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(791), - [2010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(677), - [2012] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__block_content, 1), - [2014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(937), - [2016] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_comment, 2), - [2018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comment, 2), - [2020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1305), - [2022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(905), - [2024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1385), - [2026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1043), - [2028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(865), - [2030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(651), - [2032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1404), - [2034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(910), - [2036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1342), - [2038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1357), - [2040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(847), - [2042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(848), - [2044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(849), - [2046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(794), - [2048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(843), - [2050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(854), - [2052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(842), - [2054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(855), - [2056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1064), - [2058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(856), - [2060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1831), - [2062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1403), - [2064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1017), - [2066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(897), - [2068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(896), - [2070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(895), - [2072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(894), - [2074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(906), - [2076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(893), - [2078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(889), - [2080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1060), - [2082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(888), - [2084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1411), - [2086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1369), - [2088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1414), - [2090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(792), - [2092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1823), - [2094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1409), - [2096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(845), - [2098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1794), - [2100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1056), - [2102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1442), - [2104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1072), - [2106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1820), - [2108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1448), - [2110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1030), - [2112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(924), - [2114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(872), - [2116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(873), - [2118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(874), - [2120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(875), - [2122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), - [2124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(810), - [2126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(769), - [2128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(871), - [2130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1070), - [2132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(876), - [2134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(877), - [2136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(878), - [2138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1502), - [2140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1092), - [2142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), - [2144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(899), - [2146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(891), - [2148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(926), - [2150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(890), - [2152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(887), - [2154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(886), - [2156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(885), - [2158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(882), - [2160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(880), - [2162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), - [2164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1057), - [2166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), - [2168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), - [2170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1053), - [2172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), - [2174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), - [2176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057), - [2178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1049), - [2180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), - [2182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), - [2184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1509), - [2186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rule, 1), - [2188] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_rule, 1), - [2190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1832), - [2192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1832), - [2194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rule, 2), - [2196] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_rule, 2), - [2198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_func_def, 6, .production_id = 17), - [2200] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_func_def, 6, .production_id = 17), - [2202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_directive, 2), - [2204] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_directive, 2), - [2206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_func_def, 5, .production_id = 17), - [2208] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_func_def, 5, .production_id = 17), - [2210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1801), - [2212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1801), - [2214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1655), - [2216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), - [2218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_args, 1), - [2220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1325), - [2222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1289), - [2224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1258), - [2226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), - [2228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), - [2230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1304), - [2232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), - [2234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), - [2236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1464), - [2238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1297), - [2240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), - [2242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1486), - [2244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), - [2246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), - [2248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), - [2250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), - [2252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), - [2254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), - [2256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1340), - [2258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), - [2260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1441), - [2262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), - [2264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), - [2266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_args_repeat1, 2), - [2268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), - [2270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), - [2272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), - [2274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), - [2276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), - [2278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), - [2280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), - [2282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), - [2284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), - [2286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), - [2288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), - [2290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), - [2292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), - [2294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), - [2296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), - [2298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), - [2300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), - [2302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), - [2304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), - [2306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), - [2308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), - [2310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), - [2312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), - [2314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), - [2316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), - [2318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), - [2320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), - [2322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), - [2324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), - [2326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), - [2328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), - [2330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), - [2332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1728), - [2334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), - [2336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), - [2338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), - [2340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), - [2342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), - [2344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), - [2346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), - [2348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), - [2350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), - [2352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), - [2354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), - [2356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), - [2358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), - [2360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), - [2362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), - [2364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), - [2366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), - [2368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), - [2370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1195), - [2372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), - [2374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), - [2376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), - [2378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), - [2380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), - [2382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), - [2384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), - [2386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1730), - [2388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1187), - [2390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), - [2392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), - [2394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), - [2396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), - [2398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), - [2400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), - [2402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), - [2404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), - [2406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), - [2408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), - [2410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), - [2412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), - [2414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), - [2416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), - [2418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), - [2420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), - [2422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), - [2424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), - [2426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), - [2428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), - [2430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), - [2432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), - [2434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), - [2436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), - [2438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), - [2440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), - [2442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), - [2444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), - [2446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), - [2448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), - [2450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), - [2452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), - [2454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), - [2456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), - [2458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), - [2460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), - [2462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), - [2464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), - [2466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), - [2468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), - [2470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), - [2472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), - [2474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), - [2476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), - [2478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), - [2480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), - [2482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), - [2484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), - [2486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), - [2488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), - [2490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), - [2492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), - [2494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), - [2496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), - [2498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), - [2500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), - [2502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), - [2504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), - [2506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), - [2508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), - [2510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), - [2512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), - [2514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), - [2516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), - [2518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), - [2520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), - [2522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), - [2524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), - [2526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), - [2528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), - [2530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), - [2532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), - [2534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), - [2536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), - [2538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), - [2540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), - [2542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), - [2544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), - [2546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), - [2548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), - [2550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), - [2552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), - [2554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), - [2556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), - [2558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), - [2560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), - [2562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), - [2564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), - [2566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), - [2568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), - [2570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), - [2572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), - [2574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), - [2576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1073), - [2578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), - [2580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), - [2582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), - [2584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), - [2586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), - [2588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1059), - [2590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), - [2592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1071), - [2594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), - [2596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), - [2598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), - [2600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), - [2602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), - [2604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), - [2606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), - [2608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), - [2610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), - [2612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), - [2614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), - [2616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), - [2618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), - [2620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), - [2622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), - [2624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), - [2626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), - [2628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), - [2630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), - [2632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), - [2634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), - [2636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), - [2638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), - [2640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), - [2642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), - [2644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), - [2646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), - [2648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), - [2650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), - [2652] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_exp_list_repeat1, 2), - [2654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_exp_list_repeat1, 2), - [2656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1078), - [2658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1080), - [2660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(956), - [2662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(960), - [2664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(861), - [2666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(859), - [2668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2), - [2670] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(1663), - [2673] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(1902), - [2676] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(2044), - [2679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1724), - [2681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1176), - [2683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1663), - [2685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1902), - [2687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1893), - [2689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1857), - [2691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1857), - [2693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1748), - [2695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1159), - [2697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1045), - [2699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1046), - [2701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), - [2703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), - [2705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1722), - [2707] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_case, 5, .production_id = 29), - [2709] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_default, 4), - [2711] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_default, 3), - [2713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), - [2715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1301), - [2717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1086), - [2719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1809), - [2721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1789), - [2723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), - [2725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), - [2727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), - [2729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), - [2731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1828), - [2733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1252), - [2735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), - [2737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1795), - [2739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1827), - [2741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), - [2743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1268), - [2745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), - [2747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1819), - [2749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1821), - [2751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), - [2753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1811), - [2755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1274), - [2757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), - [2759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), - [2761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), - [2763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), - [2765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1445), - [2767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), - [2769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), - [2771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), - [2773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), - [2775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1829), - [2777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1800), - [2779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1790), - [2781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), - [2783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1803), - [2785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1406), - [2787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), - [2789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1796), - [2791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), - [2793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), - [2795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1816), - [2797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), - [2799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), - [2801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), - [2803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1806), - [2805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), - [2807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), - [2809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), - [2811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), - [2813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1667), - [2815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1666), - [2817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), - [2819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1723), - [2821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1742), + [612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1733), + [614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1731), + [616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1249), + [618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1248), + [620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(633), + [622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1975), + [624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1709), + [626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(938), + [628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1677), + [630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1734), + [632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1735), + [634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1660), + [636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1661), + [638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1157), + [640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1175), + [642] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_concat, 3, .production_id = 7), + [644] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__exp, 1), + [646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), + [648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1523), + [650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(679), + [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 = 7), + [656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(204), + [658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__exp, 1), + [660] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_print_statement, 1), + [662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(626), + [664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), + [666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1917), + [668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1701), + [670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(892), + [672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1707), + [674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1768), + [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 = false}}, REDUCE(sym_ns_qualified_name, 4), + [688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ns_qualified_name, 4), + [690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), + [692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(673), + [694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(225), + [696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), + [698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(375), + [700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(976), + [702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(192), + [704] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_getline_input, 1), + [706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(991), + [708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_getline_input, 1), + [710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(442), + [712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(950), + [714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), + [716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(755), + [718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(160), + [720] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_ref, 4, .production_id = 15), + [722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_ref, 4, .production_id = 15), + [724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(652), + [726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), + [728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1926), + [730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1678), + [732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1084), + [734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1687), + [736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1774), + [738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), + [740] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_regex, 4, .production_id = 14), + [742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_regex, 4, .production_id = 14), + [744] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_grouping, 3), + [746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_grouping, 3), + [748] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_getline_file, 3, .production_id = 5), + [750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_getline_file, 3, .production_id = 5), + [752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(459), + [754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(973), + [756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), + [758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(231), + [760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(857), + [762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1003), + [764] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_number, 1), + [766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_number, 1), + [768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(415), + [770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(811), + [772] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_exp, 3, .production_id = 10), + [774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_exp, 3, .production_id = 10), + [776] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_ref, 2), + [778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_ref, 2), + [780] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_exp, 1, .production_id = 2), + [782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_exp, 1, .production_id = 2), + [784] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_func_call, 3, .production_id = 8), + [786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_func_call, 3, .production_id = 8), + [788] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_exp, 2, .production_id = 4), + [790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_exp, 2, .production_id = 4), + [792] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_piped_io_exp, 3, .production_id = 11), + [794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_piped_io_exp, 3, .production_id = 11), + [796] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_getline_file, 4, .production_id = 13), + [798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_getline_file, 4, .production_id = 13), + [800] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_indirect_func_call, 2), + [802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_indirect_func_call, 2), + [804] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 2), + [806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 2), + [808] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_regex_constant, 2), + [810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_regex_constant, 2), + [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_func_call, 4, .production_id = 8), + [818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_func_call, 4, .production_id = 8), + [820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(180), + [822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(881), + [824] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_regex, 3, .production_id = 6), + [826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(184), + [828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_regex, 3, .production_id = 6), + [830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(814), + [832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(815), + [834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(816), + [836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(817), + [838] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__binary_in, 5, .production_id = 16), + [840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(818), + [842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_in, 5, .production_id = 16), + [844] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_exp, 3, .production_id = 7), + [846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(813), + [848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1808), + [850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1075), + [852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(819), + [854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(820), + [856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_exp, 3, .production_id = 7), + [858] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ternary_exp, 5, .production_id = 18), + [860] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ternary_exp, 5, .production_id = 18), + [862] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_exp, 2, .production_id = 3), + [864] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_exp, 2, .production_id = 3), + [866] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__binary_in, 3, .production_id = 10), + [868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_in, 3, .production_id = 10), + [870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(237), + [872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(831), + [874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(830), + [876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1830), + [878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1088), + [880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(829), + [882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(828), + [884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(827), + [886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(826), + [888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(822), + [890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(821), + [892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), + [894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), + [896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), + [898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1523), + [900] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 1), + [902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 1), + [904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(297), + [906] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_exit_statement, 1), + [908] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exit_statement, 1), + [910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), + [912] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(353), + [915] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1518), + [918] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1805), + [921] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(653), + [924] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(6), + [927] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(496), + [930] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2053), + [933] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(770), + [936] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(770), + [939] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1679), + [942] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(774), + [945] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1682), + [948] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(510), + [951] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(510), + [954] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1766), + [957] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1778), + [960] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2044), + [963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 1), + [965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(305), + [967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(965), + [969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(330), + [971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(799), + [973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(681), + [975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), + [977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(324), + [979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(334), + [981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(978), + [983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(318), + [985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(939), + [987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(952), + [989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(680), + [991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(350), + [993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(823), + [995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(675), + [997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(392), + [999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(975), + [1001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(361), + [1003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), + [1005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), + [1007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(911), + [1009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), + [1011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), + [1013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(760), + [1015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(761), + [1017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1804), + [1019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1083), + [1021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(762), + [1023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(763), + [1025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(764), + [1027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(765), + [1029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(766), + [1031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(767), + [1033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(632), + [1035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), + [1037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(954), + [1039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), + [1041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(433), + [1043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(902), + [1045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(440), + [1047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(287), + [1049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(402), + [1051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(961), + [1053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(970), + [1055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(969), + [1057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(968), + [1059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(971), + [1061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(967), + [1063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(460), + [1065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(972), + [1067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(966), + [1069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1797), + [1071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1069), + [1073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(964), + [1075] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__print_args, 1), + [1077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1655), + [1079] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__print_args, 1), + [1081] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_exp_list, 2), + [1083] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exp_list, 2), + [1085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(866), + [1087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1817), + [1089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1807), + [1091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(340), + [1093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(948), + [1095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), + [1097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(947), + [1099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(946), + [1101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(949), + [1103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), + [1105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), + [1107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(951), + [1109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), + [1111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), + [1113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), + [1115] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 2), + [1117] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2), + [1119] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_exit_statement, 2), + [1121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exit_statement, 2), + [1123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1802), + [1125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1802), + [1127] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_piped_io_statement, 3, .production_id = 12), + [1129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_piped_io_statement, 3, .production_id = 12), + [1131] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_redirected_io_statement, 3, .production_id = 5), + [1133] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_redirected_io_statement, 3, .production_id = 5), + [1135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(497), + [1137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(955), + [1139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(495), + [1141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), + [1143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(500), + [1145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(853), + [1147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(941), + [1149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(504), + [1151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(962), + [1153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), + [1155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(516), + [1157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(538), + [1159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(914), + [1161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(916), + [1163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1791), + [1165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1791), + [1167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), + [1169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), + [1171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(919), + [1173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), + [1175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(920), + [1177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), + [1179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), + [1181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), + [1183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), + [1185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1799), + [1187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1799), + [1189] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 1), + [1191] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern, 1), + [1193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), + [1195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), + [1197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(573), + [1199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(998), + [1201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(579), + [1203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1005), + [1205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1296), + [1207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(936), + [1209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), + [1211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, .production_id = 9), + [1213] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, .production_id = 9), + [1215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1309), + [1217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(903), + [1219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), + [1221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(997), + [1223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1381), + [1225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(793), + [1227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), + [1229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1353), + [1231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(864), + [1233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1001), + [1235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(644), + [1237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(867), + [1239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1033), + [1241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1027), + [1243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1026), + [1245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1024), + [1247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1023), + [1249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1022), + [1251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), + [1253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(748), + [1255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), + [1257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1400), + [1259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1860), + [1261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1082), + [1263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), + [1265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1700), + [1267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), + [1269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1704), + [1271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1497), + [1273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1497), + [1275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1744), + [1277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(987), + [1279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1020), + [1281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1019), + [1283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1054), + [1285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1028), + [1287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), + [1289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), + [1291] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_printf_statement, 4), + [1293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_printf_statement, 4), + [1295] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_print_statement, 4), + [1297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 4), + [1299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1792), + [1301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(725), + [1303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(841), + [1305] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_printf_statement, 2), + [1307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_printf_statement, 2), + [1309] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_print_statement, 2), + [1311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 2), + [1313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), + [1315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1287), + [1317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1089), + [1319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1090), + [1321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1095), + [1323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), + [1325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1482), + [1327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1073), + [1329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1079), + [1331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1793), + [1333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(989), + [1335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1059), + [1337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1068), + [1339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1071), + [1341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), + [1343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), + [1345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(869), + [1347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1368), + [1349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), + [1351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), + [1353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(759), + [1355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), + [1357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), + [1359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), + [1361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(921), + [1363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1514), + [1365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), + [1367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), + [1369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), + [1371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(981), + [1373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(907), + [1375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), + [1377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1501), + [1379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(833), + [1381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), + [1383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), + [1385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), + [1387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), + [1389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), + [1391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), + [1393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), + [1395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), + [1397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), + [1399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), + [1401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), + [1403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), + [1405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), + [1407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), + [1409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), + [1411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1243), + [1413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), + [1415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), + [1417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1246), + [1419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), + [1421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), + [1423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), + [1425] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__io_statement, 1), + [1427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1007), + [1429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1006), + [1431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__io_statement, 1), + [1433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), + [1435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), + [1437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), + [1439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1254), + [1441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), + [1443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(858), + [1445] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_exp_list_repeat1, 2), SHIFT_REPEAT(748), + [1448] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_exp_list_repeat1, 2), SHIFT_REPEAT(669), + [1451] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_exp_list_repeat1, 2), SHIFT_REPEAT(1400), + [1454] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_exp_list_repeat1, 2), SHIFT_REPEAT(1860), + [1457] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_exp_list_repeat1, 2), SHIFT_REPEAT(1082), + [1460] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_exp_list_repeat1, 2), SHIFT_REPEAT(1082), + [1463] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_exp_list_repeat1, 2), SHIFT_REPEAT(1700), + [1466] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_exp_list_repeat1, 2), SHIFT_REPEAT(1037), + [1469] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_exp_list_repeat1, 2), SHIFT_REPEAT(1704), + [1472] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_exp_list_repeat1, 2), SHIFT_REPEAT(1497), + [1475] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_exp_list_repeat1, 2), SHIFT_REPEAT(1497), + [1478] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_exp_list_repeat1, 2), SHIFT_REPEAT(1744), + [1481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), + [1483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1245), + [1485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), + [1487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), + [1489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), + [1491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), + [1493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), + [1495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), + [1497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), + [1499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), + [1501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), + [1503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), + [1505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), + [1507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), + [1509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), + [1511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1256), + [1513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), + [1515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), + [1517] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delete_statement, 2), + [1519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete_statement, 2), + [1521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062), + [1523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1250), + [1525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), + [1527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), + [1529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), + [1531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(366), + [1533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(492), + [1535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2022), + [1537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1698), + [1539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1712), + [1541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(178), + [1543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(674), + [1545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1310), + [1547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1930), + [1549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1696), + [1551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1699), + [1553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(169), + [1555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(291), + [1557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1908), + [1559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1713), + [1561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1714), + [1563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(604), + [1565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1284), + [1567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1897), + [1569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1703), + [1571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1702), + [1573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(194), + [1575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(292), + [1577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1950), + [1579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1716), + [1581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1718), + [1583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(156), + [1585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), + [1587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(170), + [1589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1904), + [1591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(772), + [1593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), + [1595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1719), + [1597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1721), + [1599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(193), + [1601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), + [1603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1773), + [1605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(164), + [1607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), + [1609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(613), + [1611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1921), + [1613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1085), + [1615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), + [1617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1695), + [1619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1693), + [1621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(221), + [1623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), + [1625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1765), + [1627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(279), + [1629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), + [1631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(367), + [1633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2006), + [1635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(909), + [1637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), + [1639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1674), + [1641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1720), + [1643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(337), + [1645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), + [1647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1749), + [1649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), + [1651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(191), + [1653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1936), + [1655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(787), + [1657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), + [1659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1706), + [1661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1676), + [1663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(693), + [1665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1378), + [1667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1996), + [1669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1711), + [1671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1710), + [1673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(578), + [1675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1244), + [1677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1888), + [1679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1691), + [1681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1689), + [1683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), + [1685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(582), + [1687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1895), + [1689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1087), + [1691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), + [1693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1688), + [1695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1686), + [1697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(797), + [1699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(798), + [1701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(800), + [1703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(802), + [1705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(803), + [1707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(796), + [1709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(804), + [1711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1063), + [1713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(805), + [1715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(566), + [1717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1190), + [1719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1885), + [1721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1681), + [1723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1680), + [1725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(957), + [1727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(959), + [1729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1682), + [1731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(559), + [1733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(387), + [1735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), + [1737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(691), + [1739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1981), + [1741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1077), + [1743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), + [1745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1708), + [1747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1705), + [1749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(568), + [1751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(183), + [1753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(883), + [1755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), + [1757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(563), + [1759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1884), + [1761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(993), + [1763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), + [1765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1692), + [1767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1694), + [1769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), + [1771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(565), + [1773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1887), + [1775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(994), + [1777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), + [1779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1684), + [1781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1690), + [1783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(741), + [1785] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_while_statement, 7, .production_id = 21), + [1787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_while_statement, 7, .production_id = 21), + [1789] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 23), + [1791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1134), + [1793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 23), + [1795] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 7, .production_id = 19), + [1797] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 7, .production_id = 19), + [1799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(786), + [1801] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_statement, 6), + [1803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_statement, 6), + [1805] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_body, 2), + [1807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_body, 2), + [1809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(785), + [1811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(784), + [1813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(807), + [1815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(783), + [1817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(824), + [1819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(775), + [1821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1061), + [1823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(773), + [1825] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_statement, 5), + [1827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_statement, 5), + [1829] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6), + [1831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6), + [1833] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_while_statement, 6, .production_id = 20), + [1835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_while_statement, 6, .production_id = 20), + [1837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1255), + [1839] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 3), + [1841] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 3), + [1843] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 6, .production_id = 19), + [1845] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 6, .production_id = 19), + [1847] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 2), + [1849] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2), + [1851] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 10, .production_id = 30), + [1853] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 10, .production_id = 30), + [1855] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 5, .production_id = 19), + [1857] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 5, .production_id = 19), + [1859] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, .production_id = 30), + [1861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, .production_id = 30), + [1863] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement, 2), + [1865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement, 2), + [1867] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement_separated, 2), + [1869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement_separated, 2), + [1871] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, .production_id = 28), + [1873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, .production_id = 28), + [1875] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, .production_id = 27), + [1877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, .production_id = 27), + [1879] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, .production_id = 26), + [1881] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, .production_id = 26), + [1883] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 28), + [1885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 28), + [1887] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 27), + [1889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 27), + [1891] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 25), + [1893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 25), + [1895] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_statement, 8, .production_id = 24), + [1897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_statement, 8, .production_id = 24), + [1899] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 26), + [1901] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 26), + [1903] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 23), + [1905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 23), + [1907] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 22), + [1909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 22), + [1911] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 8, .production_id = 19), + [1913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 8, .production_id = 19), + [1915] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 2), + [1917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 2), + [1919] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_body, 3), + [1921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_body, 3), + [1923] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 25), + [1925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 25), + [1927] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_statement, 7, .production_id = 24), + [1929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_statement, 7, .production_id = 24), + [1931] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 22), + [1933] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 22), + [1935] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7), + [1937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7), + [1939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1218), + [1941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1015), + [1943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), + [1945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(953), + [1947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(933), + [1949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), + [1951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1016), + [1953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1825), + [1955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1825), + [1957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), + [1959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), + [1961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), + [1963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), + [1965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), + [1967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1267), + [1969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(908), + [1971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1260), + [1973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1264), + [1975] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 2), + [1977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 2), + [1979] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 2), SHIFT_REPEAT(1982), + [1982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1758), + [1984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1288), + [1986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(795), + [1988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1764), + [1990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1751), + [1992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1281), + [1994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(901), + [1996] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, .production_id = 19), + [1998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1726), + [2000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1755), + [2002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1729), + [2004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(692), + [2006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1767), + [2008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1745), + [2010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1299), + [2012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(690), + [2014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1320), + [2016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(791), + [2018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(677), + [2020] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__block_content, 1), + [2022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(937), + [2024] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_comment, 2), + [2026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comment, 2), + [2028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1305), + [2030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(905), + [2032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1385), + [2034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1043), + [2036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(865), + [2038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(651), + [2040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1404), + [2042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(910), + [2044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1342), + [2046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1357), + [2048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(847), + [2050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(848), + [2052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(849), + [2054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(794), + [2056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(843), + [2058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(854), + [2060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(842), + [2062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(855), + [2064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1064), + [2066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(856), + [2068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1831), + [2070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1403), + [2072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1017), + [2074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(897), + [2076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(896), + [2078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(895), + [2080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(894), + [2082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(906), + [2084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(893), + [2086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(889), + [2088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1060), + [2090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(888), + [2092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1411), + [2094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1369), + [2096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1414), + [2098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(792), + [2100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1823), + [2102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1409), + [2104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(845), + [2106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1794), + [2108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1056), + [2110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1442), + [2112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1072), + [2114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1820), + [2116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1448), + [2118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1030), + [2120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(924), + [2122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(872), + [2124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(873), + [2126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(874), + [2128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(875), + [2130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), + [2132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(810), + [2134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(769), + [2136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(871), + [2138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1070), + [2140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(876), + [2142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(877), + [2144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(878), + [2146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1502), + [2148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1092), + [2150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), + [2152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(899), + [2154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(891), + [2156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(926), + [2158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(890), + [2160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(887), + [2162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(886), + [2164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(885), + [2166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(882), + [2168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(880), + [2170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), + [2172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1057), + [2174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), + [2176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), + [2178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1053), + [2180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), + [2182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), + [2184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057), + [2186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1049), + [2188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), + [2190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), + [2192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1509), + [2194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rule, 1), + [2196] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_rule, 1), + [2198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1832), + [2200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1832), + [2202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rule, 2), + [2204] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_rule, 2), + [2206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_func_def, 6, .production_id = 17), + [2208] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_func_def, 6, .production_id = 17), + [2210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_directive, 2), + [2212] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_directive, 2), + [2214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_func_def, 5, .production_id = 17), + [2216] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_func_def, 5, .production_id = 17), + [2218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1801), + [2220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1801), + [2222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1655), + [2224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), + [2226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_args, 1), + [2228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1325), + [2230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1289), + [2232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1258), + [2234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), + [2236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), + [2238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1304), + [2240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), + [2242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), + [2244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1464), + [2246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1297), + [2248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), + [2250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1486), + [2252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), + [2254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), + [2256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), + [2258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), + [2260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), + [2262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), + [2264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1340), + [2266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), + [2268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1441), + [2270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), + [2272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), + [2274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_args_repeat1, 2), + [2276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), + [2278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), + [2280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), + [2282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), + [2284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), + [2286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), + [2288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), + [2290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), + [2292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), + [2294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), + [2296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), + [2298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), + [2300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), + [2302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), + [2304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), + [2306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), + [2308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), + [2310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), + [2312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), + [2314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), + [2316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), + [2318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), + [2320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), + [2322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), + [2324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), + [2326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), + [2328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), + [2330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), + [2332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), + [2334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), + [2336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), + [2338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), + [2340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1728), + [2342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), + [2344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), + [2346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), + [2348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), + [2350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), + [2352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), + [2354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), + [2356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), + [2358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), + [2360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), + [2362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), + [2364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), + [2366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), + [2368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), + [2370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), + [2372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), + [2374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), + [2376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), + [2378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1195), + [2380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), + [2382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), + [2384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), + [2386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), + [2388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), + [2390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), + [2392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), + [2394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1730), + [2396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1187), + [2398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), + [2400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), + [2402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), + [2404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), + [2406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), + [2408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), + [2410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), + [2412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), + [2414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), + [2416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), + [2418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), + [2420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), + [2422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), + [2424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), + [2426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), + [2428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), + [2430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), + [2432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), + [2434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), + [2436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), + [2438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), + [2440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), + [2442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), + [2444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), + [2446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), + [2448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), + [2450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), + [2452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), + [2454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), + [2456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), + [2458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), + [2460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), + [2462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), + [2464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), + [2466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), + [2468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), + [2470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), + [2472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), + [2474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), + [2476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), + [2478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), + [2480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), + [2482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), + [2484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), + [2486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), + [2488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), + [2490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), + [2492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), + [2494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), + [2496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), + [2498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), + [2500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), + [2502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), + [2504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), + [2506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), + [2508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), + [2510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), + [2512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), + [2514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), + [2516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), + [2518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), + [2520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), + [2522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), + [2524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), + [2526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), + [2528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), + [2530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), + [2532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), + [2534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), + [2536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), + [2538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), + [2540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), + [2542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), + [2544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), + [2546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), + [2548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), + [2550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), + [2552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), + [2554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), + [2556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), + [2558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), + [2560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), + [2562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), + [2564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), + [2566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), + [2568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), + [2570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), + [2572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), + [2574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), + [2576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), + [2578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), + [2580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), + [2582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), + [2584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1073), + [2586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), + [2588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), + [2590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), + [2592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), + [2594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), + [2596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1059), + [2598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), + [2600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1071), + [2602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), + [2604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), + [2606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), + [2608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), + [2610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), + [2612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), + [2614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), + [2616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), + [2618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), + [2620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), + [2622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), + [2624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), + [2626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), + [2628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), + [2630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), + [2632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), + [2634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), + [2636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), + [2638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), + [2640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), + [2642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), + [2644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), + [2646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), + [2648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), + [2650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), + [2652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), + [2654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), + [2656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), + [2658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), + [2660] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_exp_list_repeat1, 2), + [2662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_exp_list_repeat1, 2), + [2664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1078), + [2666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1080), + [2668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(956), + [2670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(960), + [2672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(861), + [2674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(859), + [2676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2), + [2678] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(1663), + [2681] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(1902), + [2684] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(2044), + [2687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1724), + [2689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1176), + [2691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1663), + [2693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1902), + [2695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1893), + [2697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1857), + [2699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1857), + [2701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1748), + [2703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1159), + [2705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1045), + [2707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1046), + [2709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), + [2711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), + [2713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1722), + [2715] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_case, 5, .production_id = 29), + [2717] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_default, 4), + [2719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), + [2721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1301), + [2723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1086), + [2725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1809), + [2727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1789), + [2729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), + [2731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), + [2733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), + [2735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), + [2737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1828), + [2739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1252), + [2741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), + [2743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1795), + [2745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1827), + [2747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), + [2749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1268), + [2751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), + [2753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1819), + [2755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1821), + [2757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), + [2759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1811), + [2761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1274), + [2763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), + [2765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), + [2767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), + [2769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), + [2771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1445), + [2773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), + [2775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), + [2777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), + [2779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), + [2781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1829), + [2783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1800), + [2785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1790), + [2787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), + [2789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1803), + [2791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1406), + [2793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), + [2795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1796), + [2797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), + [2799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), + [2801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1816), + [2803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), + [2805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), + [2807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), + [2809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1806), + [2811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), + [2813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), + [2815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), + [2817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), + [2819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1667), + [2821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1666), [2823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), - [2825] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 2), SHIFT_REPEAT(2044), - [2828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(376), - [2830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1753), - [2832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1468), - [2834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1757), - [2836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1780), - [2838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(514), - [2840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1324), - [2842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1754), - [2844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1487), - [2846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1775), - [2848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(342), - [2850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1771), - [2852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(246), - [2854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1781), - [2856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), - [2858] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2), - [2860] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(1753), - [2863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1323), - [2865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1779), - [2867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1294), - [2869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1466), - [2871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1777), - [2873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1283), - [2875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1756), - [2877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), - [2879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1876), - [2881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1879), - [2883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1923), - [2885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1783), - [2887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(245), - [2889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1750), - [2891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(539), - [2893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1746), - [2895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1784), - [2897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(385), - [2899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1743), - [2901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(214), - [2903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(409), - [2905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(320), - [2907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1948), - [2909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(212), - [2911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1769), - [2913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(443), - [2915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1770), - [2917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1481), - [2919] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_args_repeat1, 2), SHIFT_REPEAT(995), - [2922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), - [2924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1798), - [2926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), - [2928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), - [2930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), - [2932] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_param_list_repeat1, 2), SHIFT_REPEAT(1916), - [2935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_param_list_repeat1, 2), - [2937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), - [2939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), - [2941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1916), - [2943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_list, 2), - [2945] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_list, 1), - [2947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_args, 2), - [2949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1786), - [2951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1833), - [2953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), - [2955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), - [2957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), - [2959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), - [2961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), - [2963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1209), - [2965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), - [2967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), - [2969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1788), - [2971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), - [2973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1402), - [2975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), - [2977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), - [2979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), - [2981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), - [2983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), - [2985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), - [2987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1257), - [2989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), - [2991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1194), - [2993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), - [2995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), - [2997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), - [2999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), - [3001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), - [3003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1366), - [3005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1312), - [3007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1923), - [3009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), - [3011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), - [3013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), - [3015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1335), - [3017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), - [3019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), - [3021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1104), - [3023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), - [3025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), - [3027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1398), - [3029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), - [3031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1308), - [3033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), - [3035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1266), - [3037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1810), - [3039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1367), - [3041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), - [3043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), - [3045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1311), - [3047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1279), - [3049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), - [3051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1998), - [3053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2007), - [3055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1915), - [3057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1945), - [3059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), - [3061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1838), - [3063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1431), - [3065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1842), - [3067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1906), - [3069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1848), - [3071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2041), - [3073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), - [3075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), - [3077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), - [3079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), - [3081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), - [3083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), - [3085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), - [3087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), - [3089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1869), - [3091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1859), - [3093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1858), - [3095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1856), - [3097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1855), - [3099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1834), - [3101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1511), - [3103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), - [3105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1853), - [3107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1852), - [3109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1851), - [3111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1850), - [3113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1849), - [3115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1847), - [3117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), - [3119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1846), - [3121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1845), - [3123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1843), - [3125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), - [3127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1839), - [3129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1837), - [3131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), - [3133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1913), - [3135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1929), - [3137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), - [3139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1290), - [3141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), - [3143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), - [3145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), - [3147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1813), - [3149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1972), - [3151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1979), - [3153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1315), - [3155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1991), - [3157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1994), - [3159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), - [3161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1818), - [3163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), - [3165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1877), - [3167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), - [3169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), - [3171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2017), - [3173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), - [3175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2018), - [3177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), - [3179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), - [3181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2024), - [3183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2026), - [3185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1928), - [3187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), - [3189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1931), - [3191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), - [3193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2013), - [3195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), - [3197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), - [3199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1854), - [3201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), - [3203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2000), - [3205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1925), - [3207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1986), - [3209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1977), - [3211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1968), - [3213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1937), - [3215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1932), - [3217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1922), - [3219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1918), - [3221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1909), - [3223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1905), - [3225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1901), - [3227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1899), - [3229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1896), - [3231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1894), - [3233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), - [3235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), - [3237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), - [3239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), - [3241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2050), - [3243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1879), - [3245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), - [3247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), - [3249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1876), - [3251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1910), - [3253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2003), - [3255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), - [3257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1934), - [3259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1307), - [3261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1914), - [3263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1844), - [3265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1273), - [3267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), - [3269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), - [3271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1878), - [3273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), - [3275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), - [3277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), - [3279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), - [3281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), - [3283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1890), - [3285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2037), - [3287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), - [3289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1484), - [3291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), - [3293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1984), - [3295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1443), - [3297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1948), - [3299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1992), - [3301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1999), - [3303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), - [3305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), - [3307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1471), - [3309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1976), - [3311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), - [3313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1867), - [3315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), - [3317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1429), - [3319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), - [3321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2016), - [3323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1941), - [3325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), - [3327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), - [3329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), - [3331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), - [3333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), - [3335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), - [3337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), - [3339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), - [3341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), - [3343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), - [3345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), - [3347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), - [3349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2008), - [3351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438), - [3353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), - [3355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2011), - [3357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), - [3359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1865), - [3361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), - [3363] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [3365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1395), - [3367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), - [3369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), - [3371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), - [3373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1447), - [3375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), - [3377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1875), - [3379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2025), - [3381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), - [3383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), + [2825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1723), + [2827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1742), + [2829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), + [2831] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 2), SHIFT_REPEAT(2044), + [2834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(376), + [2836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1753), + [2838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1468), + [2840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1757), + [2842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1780), + [2844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(514), + [2846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1324), + [2848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1754), + [2850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1487), + [2852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1775), + [2854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(342), + [2856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1771), + [2858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(246), + [2860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1781), + [2862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), + [2864] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2), + [2866] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(1753), + [2869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1323), + [2871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1779), + [2873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1294), + [2875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1466), + [2877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1777), + [2879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1283), + [2881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1756), + [2883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), + [2885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1876), + [2887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1879), + [2889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1923), + [2891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1783), + [2893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(245), + [2895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1750), + [2897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(539), + [2899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1746), + [2901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1784), + [2903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(385), + [2905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1743), + [2907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(214), + [2909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(409), + [2911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(320), + [2913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1948), + [2915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(212), + [2917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1769), + [2919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(443), + [2921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1770), + [2923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1481), + [2925] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_args_repeat1, 2), SHIFT_REPEAT(995), + [2928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), + [2930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1798), + [2932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), + [2934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), + [2936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), + [2938] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_param_list_repeat1, 2), SHIFT_REPEAT(1916), + [2941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_param_list_repeat1, 2), + [2943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), + [2945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), + [2947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1916), + [2949] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_list, 2), + [2951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_list, 1), + [2953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_args, 2), + [2955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1786), + [2957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1833), + [2959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), + [2961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), + [2963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), + [2965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), + [2967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), + [2969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1209), + [2971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), + [2973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), + [2975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1788), + [2977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), + [2979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1402), + [2981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), + [2983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), + [2985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), + [2987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), + [2989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), + [2991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), + [2993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1257), + [2995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), + [2997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1194), + [2999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), + [3001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), + [3003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), + [3005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), + [3007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), + [3009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1366), + [3011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1312), + [3013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1923), + [3015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), + [3017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), + [3019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), + [3021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1335), + [3023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), + [3025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), + [3027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1104), + [3029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), + [3031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), + [3033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1398), + [3035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), + [3037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1308), + [3039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), + [3041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1266), + [3043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1810), + [3045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1367), + [3047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), + [3049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), + [3051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1311), + [3053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1279), + [3055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), + [3057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1998), + [3059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2007), + [3061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1915), + [3063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1945), + [3065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), + [3067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1838), + [3069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1431), + [3071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1842), + [3073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1906), + [3075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1848), + [3077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2041), + [3079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), + [3081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), + [3083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), + [3085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), + [3087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), + [3089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), + [3091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), + [3093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), + [3095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1869), + [3097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1859), + [3099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1858), + [3101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1856), + [3103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1855), + [3105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1834), + [3107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1511), + [3109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), + [3111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1853), + [3113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1852), + [3115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1851), + [3117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1850), + [3119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1849), + [3121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1847), + [3123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), + [3125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1846), + [3127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1845), + [3129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1843), + [3131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), + [3133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1839), + [3135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1837), + [3137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), + [3139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1913), + [3141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1929), + [3143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), + [3145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1290), + [3147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), + [3149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), + [3151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), + [3153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1813), + [3155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1972), + [3157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1979), + [3159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1315), + [3161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1991), + [3163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1994), + [3165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), + [3167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1818), + [3169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), + [3171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1877), + [3173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), + [3175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), + [3177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2017), + [3179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), + [3181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2018), + [3183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), + [3185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), + [3187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2024), + [3189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2026), + [3191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1928), + [3193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), + [3195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1931), + [3197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), + [3199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2013), + [3201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), + [3203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), + [3205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1854), + [3207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), + [3209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2000), + [3211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1925), + [3213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1986), + [3215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1977), + [3217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1968), + [3219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1937), + [3221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1932), + [3223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1922), + [3225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1918), + [3227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1909), + [3229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1905), + [3231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1901), + [3233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1899), + [3235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1896), + [3237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1894), + [3239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), + [3241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), + [3243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), + [3245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), + [3247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2050), + [3249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1879), + [3251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), + [3253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), + [3255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1876), + [3257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1910), + [3259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2003), + [3261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), + [3263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1934), + [3265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1307), + [3267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1914), + [3269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1844), + [3271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1273), + [3273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), + [3275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), + [3277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1878), + [3279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), + [3281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), + [3283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), + [3285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), + [3287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), + [3289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1890), + [3291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2037), + [3293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), + [3295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1484), + [3297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), + [3299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1984), + [3301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1443), + [3303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1948), + [3305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1992), + [3307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1999), + [3309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), + [3311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), + [3313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1471), + [3315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1976), + [3317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), + [3319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1867), + [3321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), + [3323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1429), + [3325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), + [3327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2016), + [3329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1941), + [3331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), + [3333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), + [3335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), + [3337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), + [3339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), + [3341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), + [3343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), + [3345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), + [3347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), + [3349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), + [3351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), + [3353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), + [3355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2008), + [3357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438), + [3359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), + [3361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2011), + [3363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), + [3365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1865), + [3367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), + [3369] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [3371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1395), + [3373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), + [3375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), + [3377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), + [3379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1447), + [3381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), + [3383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1875), + [3385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2025), + [3387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), + [3389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), }; #ifdef __cplusplus diff --git a/test/corpus/statement.txt b/test/corpus/statement.txt index 15a8780..13765f4 100644 --- a/test/corpus/statement.txt +++ b/test/corpus/statement.txt @@ -755,6 +755,26 @@ Switch statement body comment (break_statement)) (comment)))))) +==================================== +Switch statement empty default +==================================== + +{ + switch(1) { + default: + } +} + +------------------------------------ + +(program + (rule + (block + (switch_statement + (number) + (switch_body + (switch_default)))))) + ==================================== Print statement ====================================