From afef898293e5bd82d457e532ccb9ffa05c12f3b0 Mon Sep 17 00:00:00 2001 From: blindfs Date: Sat, 21 Dec 2024 10:36:10 +0800 Subject: [PATCH] fix: ctrl_do_parenthesized associativity --- grammar.js | 35 +- src/grammar.json | 172 +- src/parser.c | 61567 ++++++++++++++++++++------------------- test/corpus/ctrl/do.nu | 27 +- 4 files changed, 30898 insertions(+), 30903 deletions(-) diff --git a/grammar.js b/grammar.js index 5912ab6..5b9c10b 100644 --- a/grammar.js +++ b/grammar.js @@ -45,6 +45,7 @@ module.exports = grammar({ [$.block, $.val_closure], [$.block, $.val_record], [$.command, $.record_entry], + [$.ctrl_do_parenthesized], [$.ctrl_if_parenthesized], [$.ctrl_try_parenthesized], [$.expr_binary_parenthesized], @@ -322,12 +323,6 @@ module.exports = grammar({ /// Controls - _control: ($) => - prec( - STATEMENT_PREC().control, - choice($._ctrl_statement, $._ctrl_expression), - ), - // control statements cannot be used in pipeline because they // do not return values _ctrl_statement: ($) => @@ -397,26 +392,20 @@ module.exports = grammar({ ), ctrl_do: ($) => - prec.left( - PREC().low, - seq( - KEYWORD().do, - repeat($._flag), - choice($._blosure, $.val_variable), - repeat($._do_expression), - ), + seq( + KEYWORD().do, + repeat($._flag), + choice($._blosure, $.val_variable), + repeat($._do_expression), ), ctrl_do_parenthesized: ($) => - prec.left( - PREC().low, - seq( - KEYWORD().do, - repeat($._flags_parenthesized), - repeat1($._separator), - choice($._blosure, $.val_variable), - repeat(seq(repeat($._newline), $._do_expression)), - ), + seq( + KEYWORD().do, + repeat($._flags_parenthesized), + repeat1($._separator), + choice($._blosure, $.val_variable), + repeat(seq(repeat($._newline), $._do_expression)), ), ctrl_if: _ctrl_if_rule(false), diff --git a/src/grammar.json b/src/grammar.json index bcf7f23..1fdcff4 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -3311,23 +3311,6 @@ "value": "[\\p{Punctuation}\\p{Symbol}\\p{XID_Continue}]" } }, - "_control": { - "type": "PREC", - "value": 1, - "content": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_ctrl_statement" - }, - { - "type": "SYMBOL", - "name": "_ctrl_expression" - } - ] - } - }, "_ctrl_statement": { "type": "CHOICE", "members": [ @@ -3590,103 +3573,95 @@ ] }, "ctrl_do": { - "type": "PREC_LEFT", - "value": -1, - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "do" - }, - { - "type": "REPEAT", - "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "do" + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "_flag" + } + }, + { + "type": "CHOICE", + "members": [ + { "type": "SYMBOL", - "name": "_flag" - } - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_blosure" - }, - { - "type": "SYMBOL", - "name": "val_variable" - } - ] - }, - { - "type": "REPEAT", - "content": { + "name": "_blosure" + }, + { "type": "SYMBOL", - "name": "_do_expression" + "name": "val_variable" } + ] + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "_do_expression" } - ] - } + } + ] }, "ctrl_do_parenthesized": { - "type": "PREC_LEFT", - "value": -1, - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "do" - }, - { - "type": "REPEAT", - "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "do" + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "_flags_parenthesized" + } + }, + { + "type": "REPEAT1", + "content": { + "type": "SYMBOL", + "name": "_separator" + } + }, + { + "type": "CHOICE", + "members": [ + { "type": "SYMBOL", - "name": "_flags_parenthesized" - } - }, - { - "type": "REPEAT1", - "content": { + "name": "_blosure" + }, + { "type": "SYMBOL", - "name": "_separator" + "name": "val_variable" } - }, - { - "type": "CHOICE", + ] + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", "members": [ { - "type": "SYMBOL", - "name": "_blosure" + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "_newline" + } }, { "type": "SYMBOL", - "name": "val_variable" + "name": "_do_expression" } ] - }, - { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "REPEAT", - "content": { - "type": "SYMBOL", - "name": "_newline" - } - }, - { - "type": "SYMBOL", - "name": "_do_expression" - } - ] - } } - ] - } + } + ] }, "ctrl_if": { "type": "SEQ", @@ -20305,6 +20280,9 @@ "command", "record_entry" ], + [ + "ctrl_do_parenthesized" + ], [ "ctrl_if_parenthesized" ], diff --git a/src/parser.c b/src/parser.c index 29c6879..27f5f6a 100644 --- a/src/parser.c +++ b/src/parser.c @@ -162359,19 +162359,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_shebang_repeat1] = STATE(1053), [aux_sym_ctrl_do_parenthesized_repeat3] = STATE(779), [sym__newline] = ACTIONS(2757), - [anon_sym_SEMI] = ACTIONS(2757), - [anon_sym_PIPE] = ACTIONS(2757), - [anon_sym_err_GT_PIPE] = ACTIONS(2757), - [anon_sym_out_GT_PIPE] = ACTIONS(2757), - [anon_sym_e_GT_PIPE] = ACTIONS(2757), - [anon_sym_o_GT_PIPE] = ACTIONS(2757), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2757), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2757), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2757), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2757), + [anon_sym_SEMI] = ACTIONS(2760), + [anon_sym_PIPE] = ACTIONS(2760), + [anon_sym_err_GT_PIPE] = ACTIONS(2760), + [anon_sym_out_GT_PIPE] = ACTIONS(2760), + [anon_sym_e_GT_PIPE] = ACTIONS(2760), + [anon_sym_o_GT_PIPE] = ACTIONS(2760), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2760), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2760), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2760), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2760), [anon_sym_LBRACK] = ACTIONS(2695), [anon_sym_LPAREN] = ACTIONS(2697), - [anon_sym_RPAREN] = ACTIONS(2757), + [anon_sym_RPAREN] = ACTIONS(2760), [anon_sym_DOLLAR] = ACTIONS(2699), [anon_sym_DASH_DASH] = ACTIONS(2701), [anon_sym_DASH2] = ACTIONS(2703), @@ -162455,20 +162455,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = STATE(778), [aux_sym_shebang_repeat1] = STATE(1053), [aux_sym_ctrl_do_parenthesized_repeat3] = STATE(780), - [sym__newline] = ACTIONS(2759), - [anon_sym_SEMI] = ACTIONS(2757), - [anon_sym_PIPE] = ACTIONS(2757), - [anon_sym_err_GT_PIPE] = ACTIONS(2757), - [anon_sym_out_GT_PIPE] = ACTIONS(2757), - [anon_sym_e_GT_PIPE] = ACTIONS(2757), - [anon_sym_o_GT_PIPE] = ACTIONS(2757), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2757), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2757), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2757), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2757), + [sym__newline] = ACTIONS(2757), + [anon_sym_SEMI] = ACTIONS(2760), + [anon_sym_PIPE] = ACTIONS(2760), + [anon_sym_err_GT_PIPE] = ACTIONS(2760), + [anon_sym_out_GT_PIPE] = ACTIONS(2760), + [anon_sym_e_GT_PIPE] = ACTIONS(2760), + [anon_sym_o_GT_PIPE] = ACTIONS(2760), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2760), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2760), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2760), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2760), [anon_sym_LBRACK] = ACTIONS(2695), [anon_sym_LPAREN] = ACTIONS(2697), - [anon_sym_RPAREN] = ACTIONS(2757), + [anon_sym_RPAREN] = ACTIONS(2760), [anon_sym_DOLLAR] = ACTIONS(2699), [anon_sym_DASH_DASH] = ACTIONS(2701), [anon_sym_DASH2] = ACTIONS(2703), @@ -162552,20 +162552,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = STATE(779), [aux_sym_shebang_repeat1] = STATE(1053), [aux_sym_ctrl_do_parenthesized_repeat3] = STATE(780), - [sym__newline] = ACTIONS(2759), - [anon_sym_SEMI] = ACTIONS(2761), - [anon_sym_PIPE] = ACTIONS(2761), - [anon_sym_err_GT_PIPE] = ACTIONS(2761), - [anon_sym_out_GT_PIPE] = ACTIONS(2761), - [anon_sym_e_GT_PIPE] = ACTIONS(2761), - [anon_sym_o_GT_PIPE] = ACTIONS(2761), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2761), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2761), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2761), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2761), + [sym__newline] = ACTIONS(2762), + [anon_sym_SEMI] = ACTIONS(2765), + [anon_sym_PIPE] = ACTIONS(2765), + [anon_sym_err_GT_PIPE] = ACTIONS(2765), + [anon_sym_out_GT_PIPE] = ACTIONS(2765), + [anon_sym_e_GT_PIPE] = ACTIONS(2765), + [anon_sym_o_GT_PIPE] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2765), [anon_sym_LBRACK] = ACTIONS(2695), [anon_sym_LPAREN] = ACTIONS(2697), - [anon_sym_RPAREN] = ACTIONS(2761), + [anon_sym_RPAREN] = ACTIONS(2765), [anon_sym_DOLLAR] = ACTIONS(2699), [anon_sym_DASH_DASH] = ACTIONS(2701), [anon_sym_DASH2] = ACTIONS(2703), @@ -162649,111 +162649,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = STATE(780), [aux_sym_shebang_repeat1] = STATE(1053), [aux_sym_ctrl_do_parenthesized_repeat3] = STATE(780), - [sym__newline] = ACTIONS(2763), - [anon_sym_SEMI] = ACTIONS(2766), - [anon_sym_PIPE] = ACTIONS(2766), - [anon_sym_err_GT_PIPE] = ACTIONS(2766), - [anon_sym_out_GT_PIPE] = ACTIONS(2766), - [anon_sym_e_GT_PIPE] = ACTIONS(2766), - [anon_sym_o_GT_PIPE] = ACTIONS(2766), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2766), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2766), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2766), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2766), - [anon_sym_LBRACK] = ACTIONS(2768), - [anon_sym_LPAREN] = ACTIONS(2771), - [anon_sym_RPAREN] = ACTIONS(2766), - [anon_sym_DOLLAR] = ACTIONS(2774), - [anon_sym_DASH_DASH] = ACTIONS(2777), - [anon_sym_DASH2] = ACTIONS(2780), - [anon_sym_LBRACE] = ACTIONS(2783), - [anon_sym_DOT_DOT] = ACTIONS(2786), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2789), - [anon_sym_DOT_DOT_LT] = ACTIONS(2789), - [anon_sym_null] = ACTIONS(2792), - [anon_sym_true] = ACTIONS(2795), - [anon_sym_false] = ACTIONS(2795), - [aux_sym__val_number_decimal_token1] = ACTIONS(2798), - [aux_sym__val_number_decimal_token2] = ACTIONS(2801), - [aux_sym__val_number_decimal_token3] = ACTIONS(2804), - [aux_sym__val_number_decimal_token4] = ACTIONS(2807), - [aux_sym__val_number_token1] = ACTIONS(2810), - [aux_sym__val_number_token2] = ACTIONS(2810), - [aux_sym__val_number_token3] = ACTIONS(2810), - [aux_sym__val_number_token4] = ACTIONS(2813), - [aux_sym__val_number_token5] = ACTIONS(2813), - [aux_sym__val_number_token6] = ACTIONS(2813), - [anon_sym_0b] = ACTIONS(2816), - [anon_sym_0o] = ACTIONS(2819), - [anon_sym_0x] = ACTIONS(2819), - [sym_val_date] = ACTIONS(2822), - [anon_sym_DQUOTE] = ACTIONS(2825), - [sym__str_single_quotes] = ACTIONS(2828), - [sym__str_back_ticks] = ACTIONS(2828), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2831), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2834), - [anon_sym_err_GT] = ACTIONS(2837), - [anon_sym_out_GT] = ACTIONS(2837), - [anon_sym_e_GT] = ACTIONS(2837), - [anon_sym_o_GT] = ACTIONS(2837), - [anon_sym_err_PLUSout_GT] = ACTIONS(2837), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2837), - [anon_sym_o_PLUSe_GT] = ACTIONS(2837), - [anon_sym_e_PLUSo_GT] = ACTIONS(2837), - [anon_sym_err_GT_GT] = ACTIONS(2840), - [anon_sym_out_GT_GT] = ACTIONS(2840), - [anon_sym_e_GT_GT] = ACTIONS(2840), - [anon_sym_o_GT_GT] = ACTIONS(2840), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2840), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2840), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2840), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2840), - [aux_sym_unquoted_token1] = ACTIONS(2843), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2846), + [sym__newline] = ACTIONS(2767), + [anon_sym_SEMI] = ACTIONS(2770), + [anon_sym_PIPE] = ACTIONS(2770), + [anon_sym_err_GT_PIPE] = ACTIONS(2770), + [anon_sym_out_GT_PIPE] = ACTIONS(2770), + [anon_sym_e_GT_PIPE] = ACTIONS(2770), + [anon_sym_o_GT_PIPE] = ACTIONS(2770), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2770), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2770), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2770), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2770), + [anon_sym_LBRACK] = ACTIONS(2772), + [anon_sym_LPAREN] = ACTIONS(2775), + [anon_sym_RPAREN] = ACTIONS(2770), + [anon_sym_DOLLAR] = ACTIONS(2778), + [anon_sym_DASH_DASH] = ACTIONS(2781), + [anon_sym_DASH2] = ACTIONS(2784), + [anon_sym_LBRACE] = ACTIONS(2787), + [anon_sym_DOT_DOT] = ACTIONS(2790), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2793), + [anon_sym_DOT_DOT_LT] = ACTIONS(2793), + [anon_sym_null] = ACTIONS(2796), + [anon_sym_true] = ACTIONS(2799), + [anon_sym_false] = ACTIONS(2799), + [aux_sym__val_number_decimal_token1] = ACTIONS(2802), + [aux_sym__val_number_decimal_token2] = ACTIONS(2805), + [aux_sym__val_number_decimal_token3] = ACTIONS(2808), + [aux_sym__val_number_decimal_token4] = ACTIONS(2811), + [aux_sym__val_number_token1] = ACTIONS(2814), + [aux_sym__val_number_token2] = ACTIONS(2814), + [aux_sym__val_number_token3] = ACTIONS(2814), + [aux_sym__val_number_token4] = ACTIONS(2817), + [aux_sym__val_number_token5] = ACTIONS(2817), + [aux_sym__val_number_token6] = ACTIONS(2817), + [anon_sym_0b] = ACTIONS(2820), + [anon_sym_0o] = ACTIONS(2823), + [anon_sym_0x] = ACTIONS(2823), + [sym_val_date] = ACTIONS(2826), + [anon_sym_DQUOTE] = ACTIONS(2829), + [sym__str_single_quotes] = ACTIONS(2832), + [sym__str_back_ticks] = ACTIONS(2832), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2835), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2838), + [anon_sym_err_GT] = ACTIONS(2841), + [anon_sym_out_GT] = ACTIONS(2841), + [anon_sym_e_GT] = ACTIONS(2841), + [anon_sym_o_GT] = ACTIONS(2841), + [anon_sym_err_PLUSout_GT] = ACTIONS(2841), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2841), + [anon_sym_o_PLUSe_GT] = ACTIONS(2841), + [anon_sym_e_PLUSo_GT] = ACTIONS(2841), + [anon_sym_err_GT_GT] = ACTIONS(2844), + [anon_sym_out_GT_GT] = ACTIONS(2844), + [anon_sym_e_GT_GT] = ACTIONS(2844), + [anon_sym_o_GT_GT] = ACTIONS(2844), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2844), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2844), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2844), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2844), + [aux_sym_unquoted_token1] = ACTIONS(2847), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2850), }, [781] = { [sym_comment] = STATE(781), - [aux_sym_cmd_identifier_token1] = ACTIONS(2849), - [aux_sym_cmd_identifier_token2] = ACTIONS(2851), - [aux_sym_cmd_identifier_token3] = ACTIONS(2851), - [aux_sym_cmd_identifier_token4] = ACTIONS(2851), - [aux_sym_cmd_identifier_token5] = ACTIONS(2851), - [aux_sym_cmd_identifier_token6] = ACTIONS(2851), - [aux_sym_cmd_identifier_token7] = ACTIONS(2851), - [aux_sym_cmd_identifier_token8] = ACTIONS(2851), - [aux_sym_cmd_identifier_token9] = ACTIONS(2849), - [aux_sym_cmd_identifier_token10] = ACTIONS(2851), - [aux_sym_cmd_identifier_token11] = ACTIONS(2851), - [aux_sym_cmd_identifier_token12] = ACTIONS(2851), - [aux_sym_cmd_identifier_token13] = ACTIONS(2849), - [aux_sym_cmd_identifier_token14] = ACTIONS(2851), - [aux_sym_cmd_identifier_token15] = ACTIONS(2849), - [aux_sym_cmd_identifier_token16] = ACTIONS(2851), - [aux_sym_cmd_identifier_token17] = ACTIONS(2851), - [aux_sym_cmd_identifier_token18] = ACTIONS(2849), - [aux_sym_cmd_identifier_token19] = ACTIONS(2851), - [aux_sym_cmd_identifier_token20] = ACTIONS(2851), - [aux_sym_cmd_identifier_token21] = ACTIONS(2851), - [aux_sym_cmd_identifier_token22] = ACTIONS(2851), - [aux_sym_cmd_identifier_token23] = ACTIONS(2851), - [aux_sym_cmd_identifier_token24] = ACTIONS(2851), - [aux_sym_cmd_identifier_token25] = ACTIONS(2851), - [aux_sym_cmd_identifier_token26] = ACTIONS(2851), - [aux_sym_cmd_identifier_token27] = ACTIONS(2851), - [aux_sym_cmd_identifier_token28] = ACTIONS(2851), - [aux_sym_cmd_identifier_token29] = ACTIONS(2851), - [aux_sym_cmd_identifier_token30] = ACTIONS(2851), - [aux_sym_cmd_identifier_token31] = ACTIONS(2851), - [aux_sym_cmd_identifier_token32] = ACTIONS(2849), - [aux_sym_cmd_identifier_token33] = ACTIONS(2851), - [aux_sym_cmd_identifier_token34] = ACTIONS(2849), - [aux_sym_cmd_identifier_token35] = ACTIONS(2851), - [aux_sym_cmd_identifier_token36] = ACTIONS(2851), - [aux_sym_cmd_identifier_token37] = ACTIONS(2851), - [aux_sym_cmd_identifier_token38] = ACTIONS(2849), - [aux_sym_cmd_identifier_token39] = ACTIONS(2851), - [aux_sym_cmd_identifier_token40] = ACTIONS(2851), + [aux_sym_cmd_identifier_token1] = ACTIONS(2853), + [aux_sym_cmd_identifier_token2] = ACTIONS(2855), + [aux_sym_cmd_identifier_token3] = ACTIONS(2855), + [aux_sym_cmd_identifier_token4] = ACTIONS(2855), + [aux_sym_cmd_identifier_token5] = ACTIONS(2855), + [aux_sym_cmd_identifier_token6] = ACTIONS(2855), + [aux_sym_cmd_identifier_token7] = ACTIONS(2855), + [aux_sym_cmd_identifier_token8] = ACTIONS(2855), + [aux_sym_cmd_identifier_token9] = ACTIONS(2853), + [aux_sym_cmd_identifier_token10] = ACTIONS(2855), + [aux_sym_cmd_identifier_token11] = ACTIONS(2855), + [aux_sym_cmd_identifier_token12] = ACTIONS(2855), + [aux_sym_cmd_identifier_token13] = ACTIONS(2853), + [aux_sym_cmd_identifier_token14] = ACTIONS(2855), + [aux_sym_cmd_identifier_token15] = ACTIONS(2853), + [aux_sym_cmd_identifier_token16] = ACTIONS(2855), + [aux_sym_cmd_identifier_token17] = ACTIONS(2855), + [aux_sym_cmd_identifier_token18] = ACTIONS(2853), + [aux_sym_cmd_identifier_token19] = ACTIONS(2855), + [aux_sym_cmd_identifier_token20] = ACTIONS(2855), + [aux_sym_cmd_identifier_token21] = ACTIONS(2855), + [aux_sym_cmd_identifier_token22] = ACTIONS(2855), + [aux_sym_cmd_identifier_token23] = ACTIONS(2855), + [aux_sym_cmd_identifier_token24] = ACTIONS(2855), + [aux_sym_cmd_identifier_token25] = ACTIONS(2855), + [aux_sym_cmd_identifier_token26] = ACTIONS(2855), + [aux_sym_cmd_identifier_token27] = ACTIONS(2855), + [aux_sym_cmd_identifier_token28] = ACTIONS(2855), + [aux_sym_cmd_identifier_token29] = ACTIONS(2855), + [aux_sym_cmd_identifier_token30] = ACTIONS(2855), + [aux_sym_cmd_identifier_token31] = ACTIONS(2855), + [aux_sym_cmd_identifier_token32] = ACTIONS(2853), + [aux_sym_cmd_identifier_token33] = ACTIONS(2855), + [aux_sym_cmd_identifier_token34] = ACTIONS(2853), + [aux_sym_cmd_identifier_token35] = ACTIONS(2855), + [aux_sym_cmd_identifier_token36] = ACTIONS(2855), + [aux_sym_cmd_identifier_token37] = ACTIONS(2855), + [aux_sym_cmd_identifier_token38] = ACTIONS(2853), + [aux_sym_cmd_identifier_token39] = ACTIONS(2855), + [aux_sym_cmd_identifier_token40] = ACTIONS(2855), [sym__newline] = ACTIONS(1268), [anon_sym_PIPE] = ACTIONS(1268), [anon_sym_err_GT_PIPE] = ACTIONS(1268), @@ -162764,50 +162764,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1268), [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1268), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1268), - [anon_sym_LBRACK] = ACTIONS(2851), - [anon_sym_LPAREN] = ACTIONS(2851), - [anon_sym_DOLLAR] = ACTIONS(2849), - [anon_sym_DASH2] = ACTIONS(2849), - [anon_sym_break] = ACTIONS(2849), - [anon_sym_continue] = ACTIONS(2849), - [anon_sym_do] = ACTIONS(2849), - [anon_sym_if] = ACTIONS(2849), - [anon_sym_match] = ACTIONS(2849), - [anon_sym_LBRACE] = ACTIONS(2851), - [anon_sym_DOT_DOT] = ACTIONS(2849), - [anon_sym_try] = ACTIONS(2849), - [anon_sym_return] = ACTIONS(2849), - [anon_sym_where] = ACTIONS(2851), - [aux_sym_expr_unary_token1] = ACTIONS(2851), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2851), - [anon_sym_DOT_DOT_LT] = ACTIONS(2851), - [anon_sym_null] = ACTIONS(2849), - [anon_sym_true] = ACTIONS(2849), - [anon_sym_false] = ACTIONS(2849), - [aux_sym__val_number_decimal_token1] = ACTIONS(2849), - [aux_sym__val_number_decimal_token2] = ACTIONS(2851), - [aux_sym__val_number_decimal_token3] = ACTIONS(2851), - [aux_sym__val_number_decimal_token4] = ACTIONS(2851), - [aux_sym__val_number_token1] = ACTIONS(2851), - [aux_sym__val_number_token2] = ACTIONS(2851), - [aux_sym__val_number_token3] = ACTIONS(2851), - [aux_sym__val_number_token4] = ACTIONS(2849), - [aux_sym__val_number_token5] = ACTIONS(2849), - [aux_sym__val_number_token6] = ACTIONS(2849), - [anon_sym_0b] = ACTIONS(2849), - [anon_sym_0o] = ACTIONS(2849), - [anon_sym_0x] = ACTIONS(2849), - [sym_val_date] = ACTIONS(2851), - [anon_sym_DQUOTE] = ACTIONS(2851), - [sym__str_single_quotes] = ACTIONS(2851), - [sym__str_back_ticks] = ACTIONS(2851), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2851), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2851), - [aux_sym_env_var_token1] = ACTIONS(2849), - [anon_sym_CARET] = ACTIONS(2851), - [aux_sym_command_token1] = ACTIONS(2851), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2851), + [anon_sym_LBRACK] = ACTIONS(2855), + [anon_sym_LPAREN] = ACTIONS(2855), + [anon_sym_DOLLAR] = ACTIONS(2853), + [anon_sym_DASH2] = ACTIONS(2853), + [anon_sym_break] = ACTIONS(2853), + [anon_sym_continue] = ACTIONS(2853), + [anon_sym_do] = ACTIONS(2853), + [anon_sym_if] = ACTIONS(2853), + [anon_sym_match] = ACTIONS(2853), + [anon_sym_LBRACE] = ACTIONS(2855), + [anon_sym_DOT_DOT] = ACTIONS(2853), + [anon_sym_try] = ACTIONS(2853), + [anon_sym_return] = ACTIONS(2853), + [anon_sym_where] = ACTIONS(2855), + [aux_sym_expr_unary_token1] = ACTIONS(2855), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2855), + [anon_sym_DOT_DOT_LT] = ACTIONS(2855), + [anon_sym_null] = ACTIONS(2853), + [anon_sym_true] = ACTIONS(2853), + [anon_sym_false] = ACTIONS(2853), + [aux_sym__val_number_decimal_token1] = ACTIONS(2853), + [aux_sym__val_number_decimal_token2] = ACTIONS(2855), + [aux_sym__val_number_decimal_token3] = ACTIONS(2855), + [aux_sym__val_number_decimal_token4] = ACTIONS(2855), + [aux_sym__val_number_token1] = ACTIONS(2855), + [aux_sym__val_number_token2] = ACTIONS(2855), + [aux_sym__val_number_token3] = ACTIONS(2855), + [aux_sym__val_number_token4] = ACTIONS(2853), + [aux_sym__val_number_token5] = ACTIONS(2853), + [aux_sym__val_number_token6] = ACTIONS(2853), + [anon_sym_0b] = ACTIONS(2853), + [anon_sym_0o] = ACTIONS(2853), + [anon_sym_0x] = ACTIONS(2853), + [sym_val_date] = ACTIONS(2855), + [anon_sym_DQUOTE] = ACTIONS(2855), + [sym__str_single_quotes] = ACTIONS(2855), + [sym__str_back_ticks] = ACTIONS(2855), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2855), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2855), + [aux_sym_env_var_token1] = ACTIONS(2853), + [anon_sym_CARET] = ACTIONS(2855), + [aux_sym_command_token1] = ACTIONS(2855), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2855), }, [782] = { [sym_comment] = STATE(782), @@ -163037,20 +163037,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = STATE(784), [aux_sym_shebang_repeat1] = STATE(1053), [aux_sym_ctrl_do_parenthesized_repeat3] = STATE(778), - [sym__newline] = ACTIONS(2853), - [anon_sym_SEMI] = ACTIONS(2853), - [anon_sym_PIPE] = ACTIONS(2853), - [anon_sym_err_GT_PIPE] = ACTIONS(2853), - [anon_sym_out_GT_PIPE] = ACTIONS(2853), - [anon_sym_e_GT_PIPE] = ACTIONS(2853), - [anon_sym_o_GT_PIPE] = ACTIONS(2853), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2853), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2853), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2853), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2853), + [sym__newline] = ACTIONS(2857), + [anon_sym_SEMI] = ACTIONS(2860), + [anon_sym_PIPE] = ACTIONS(2860), + [anon_sym_err_GT_PIPE] = ACTIONS(2860), + [anon_sym_out_GT_PIPE] = ACTIONS(2860), + [anon_sym_e_GT_PIPE] = ACTIONS(2860), + [anon_sym_o_GT_PIPE] = ACTIONS(2860), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2860), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2860), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2860), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2860), [anon_sym_LBRACK] = ACTIONS(2695), [anon_sym_LPAREN] = ACTIONS(2697), - [anon_sym_RPAREN] = ACTIONS(2853), + [anon_sym_RPAREN] = ACTIONS(2860), [anon_sym_DOLLAR] = ACTIONS(2699), [anon_sym_DASH_DASH] = ACTIONS(2701), [anon_sym_DASH2] = ACTIONS(2703), @@ -163172,10 +163172,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bit_DASHxor2] = ACTIONS(1587), [anon_sym_bit_DASHor2] = ACTIONS(1587), [anon_sym_DOT_DOT2] = ACTIONS(1587), - [anon_sym_DOT] = ACTIONS(2855), + [anon_sym_DOT] = ACTIONS(2862), [anon_sym_DOT_DOT_EQ2] = ACTIONS(1589), [anon_sym_DOT_DOT_LT2] = ACTIONS(1589), - [aux_sym__immediate_decimal_token2] = ACTIONS(2857), + [aux_sym__immediate_decimal_token2] = ACTIONS(2864), [sym_filesize_unit] = ACTIONS(1587), [sym_duration_unit] = ACTIONS(1589), [anon_sym_COLON2] = ACTIONS(1587), @@ -163242,37 +163242,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2606), [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2606), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2606), - [anon_sym_LBRACK] = ACTIONS(2859), - [anon_sym_LPAREN] = ACTIONS(2862), - [anon_sym_DOLLAR] = ACTIONS(2865), - [anon_sym_DASH_DASH] = ACTIONS(2868), - [anon_sym_DASH2] = ACTIONS(2871), - [anon_sym_LBRACE] = ACTIONS(2874), - [anon_sym_DOT_DOT] = ACTIONS(2877), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2880), - [anon_sym_DOT_DOT_LT] = ACTIONS(2880), - [anon_sym_null] = ACTIONS(2883), - [anon_sym_true] = ACTIONS(2886), - [anon_sym_false] = ACTIONS(2886), - [aux_sym__val_number_decimal_token1] = ACTIONS(2889), - [aux_sym__val_number_decimal_token2] = ACTIONS(2892), - [aux_sym__val_number_decimal_token3] = ACTIONS(2895), - [aux_sym__val_number_decimal_token4] = ACTIONS(2898), - [aux_sym__val_number_token1] = ACTIONS(2901), - [aux_sym__val_number_token2] = ACTIONS(2901), - [aux_sym__val_number_token3] = ACTIONS(2901), - [aux_sym__val_number_token4] = ACTIONS(2904), - [aux_sym__val_number_token5] = ACTIONS(2904), - [aux_sym__val_number_token6] = ACTIONS(2904), - [anon_sym_0b] = ACTIONS(2907), - [anon_sym_0o] = ACTIONS(2910), - [anon_sym_0x] = ACTIONS(2910), - [sym_val_date] = ACTIONS(2913), - [anon_sym_DQUOTE] = ACTIONS(2916), - [sym__str_single_quotes] = ACTIONS(2919), - [sym__str_back_ticks] = ACTIONS(2919), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2922), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2925), + [anon_sym_LBRACK] = ACTIONS(2866), + [anon_sym_LPAREN] = ACTIONS(2869), + [anon_sym_DOLLAR] = ACTIONS(2872), + [anon_sym_DASH_DASH] = ACTIONS(2875), + [anon_sym_DASH2] = ACTIONS(2878), + [anon_sym_LBRACE] = ACTIONS(2881), + [anon_sym_DOT_DOT] = ACTIONS(2884), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2887), + [anon_sym_DOT_DOT_LT] = ACTIONS(2887), + [anon_sym_null] = ACTIONS(2890), + [anon_sym_true] = ACTIONS(2893), + [anon_sym_false] = ACTIONS(2893), + [aux_sym__val_number_decimal_token1] = ACTIONS(2896), + [aux_sym__val_number_decimal_token2] = ACTIONS(2899), + [aux_sym__val_number_decimal_token3] = ACTIONS(2902), + [aux_sym__val_number_decimal_token4] = ACTIONS(2905), + [aux_sym__val_number_token1] = ACTIONS(2908), + [aux_sym__val_number_token2] = ACTIONS(2908), + [aux_sym__val_number_token3] = ACTIONS(2908), + [aux_sym__val_number_token4] = ACTIONS(2911), + [aux_sym__val_number_token5] = ACTIONS(2911), + [aux_sym__val_number_token6] = ACTIONS(2911), + [anon_sym_0b] = ACTIONS(2914), + [anon_sym_0o] = ACTIONS(2917), + [anon_sym_0x] = ACTIONS(2917), + [sym_val_date] = ACTIONS(2920), + [anon_sym_DQUOTE] = ACTIONS(2923), + [sym__str_single_quotes] = ACTIONS(2926), + [sym__str_back_ticks] = ACTIONS(2926), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2929), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2932), [anon_sym_err_GT] = ACTIONS(2677), [anon_sym_out_GT] = ACTIONS(2677), [anon_sym_e_GT] = ACTIONS(2677), @@ -163289,9 +163289,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2680), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2680), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2680), - [aux_sym_unquoted_token1] = ACTIONS(2928), + [aux_sym_unquoted_token1] = ACTIONS(2935), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2931), + [sym_raw_string_begin] = ACTIONS(2938), }, [787] = { [sym_expr_parenthesized] = STATE(1551), @@ -163338,37 +163338,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2751), [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2751), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2751), - [anon_sym_LBRACK] = ACTIONS(2934), - [anon_sym_LPAREN] = ACTIONS(2936), - [anon_sym_DOLLAR] = ACTIONS(2938), - [anon_sym_DASH_DASH] = ACTIONS(2940), - [anon_sym_DASH2] = ACTIONS(2942), - [anon_sym_LBRACE] = ACTIONS(2944), - [anon_sym_DOT_DOT] = ACTIONS(2946), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2948), - [anon_sym_DOT_DOT_LT] = ACTIONS(2948), - [anon_sym_null] = ACTIONS(2950), - [anon_sym_true] = ACTIONS(2952), - [anon_sym_false] = ACTIONS(2952), - [aux_sym__val_number_decimal_token1] = ACTIONS(2954), - [aux_sym__val_number_decimal_token2] = ACTIONS(2956), - [aux_sym__val_number_decimal_token3] = ACTIONS(2958), - [aux_sym__val_number_decimal_token4] = ACTIONS(2960), - [aux_sym__val_number_token1] = ACTIONS(2962), - [aux_sym__val_number_token2] = ACTIONS(2962), - [aux_sym__val_number_token3] = ACTIONS(2962), - [aux_sym__val_number_token4] = ACTIONS(2964), - [aux_sym__val_number_token5] = ACTIONS(2964), - [aux_sym__val_number_token6] = ACTIONS(2964), - [anon_sym_0b] = ACTIONS(2966), - [anon_sym_0o] = ACTIONS(2968), - [anon_sym_0x] = ACTIONS(2968), - [sym_val_date] = ACTIONS(2970), - [anon_sym_DQUOTE] = ACTIONS(2972), - [sym__str_single_quotes] = ACTIONS(2974), - [sym__str_back_ticks] = ACTIONS(2974), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2976), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2978), + [anon_sym_LBRACK] = ACTIONS(2941), + [anon_sym_LPAREN] = ACTIONS(2943), + [anon_sym_DOLLAR] = ACTIONS(2945), + [anon_sym_DASH_DASH] = ACTIONS(2947), + [anon_sym_DASH2] = ACTIONS(2949), + [anon_sym_LBRACE] = ACTIONS(2951), + [anon_sym_DOT_DOT] = ACTIONS(2953), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2955), + [anon_sym_DOT_DOT_LT] = ACTIONS(2955), + [anon_sym_null] = ACTIONS(2957), + [anon_sym_true] = ACTIONS(2959), + [anon_sym_false] = ACTIONS(2959), + [aux_sym__val_number_decimal_token1] = ACTIONS(2961), + [aux_sym__val_number_decimal_token2] = ACTIONS(2963), + [aux_sym__val_number_decimal_token3] = ACTIONS(2965), + [aux_sym__val_number_decimal_token4] = ACTIONS(2967), + [aux_sym__val_number_token1] = ACTIONS(2969), + [aux_sym__val_number_token2] = ACTIONS(2969), + [aux_sym__val_number_token3] = ACTIONS(2969), + [aux_sym__val_number_token4] = ACTIONS(2971), + [aux_sym__val_number_token5] = ACTIONS(2971), + [aux_sym__val_number_token6] = ACTIONS(2971), + [anon_sym_0b] = ACTIONS(2973), + [anon_sym_0o] = ACTIONS(2975), + [anon_sym_0x] = ACTIONS(2975), + [sym_val_date] = ACTIONS(2977), + [anon_sym_DQUOTE] = ACTIONS(2979), + [sym__str_single_quotes] = ACTIONS(2981), + [sym__str_back_ticks] = ACTIONS(2981), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2983), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2985), [anon_sym_err_GT] = ACTIONS(2741), [anon_sym_out_GT] = ACTIONS(2741), [anon_sym_e_GT] = ACTIONS(2741), @@ -163385,9 +163385,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(2980), + [aux_sym_unquoted_token1] = ACTIONS(2987), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2982), + [sym_raw_string_begin] = ACTIONS(2989), }, [788] = { [sym_expr_parenthesized] = STATE(1551), @@ -163434,37 +163434,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2749), [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2749), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2749), - [anon_sym_LBRACK] = ACTIONS(2934), - [anon_sym_LPAREN] = ACTIONS(2936), - [anon_sym_DOLLAR] = ACTIONS(2938), - [anon_sym_DASH_DASH] = ACTIONS(2940), - [anon_sym_DASH2] = ACTIONS(2942), - [anon_sym_LBRACE] = ACTIONS(2944), - [anon_sym_DOT_DOT] = ACTIONS(2946), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2948), - [anon_sym_DOT_DOT_LT] = ACTIONS(2948), - [anon_sym_null] = ACTIONS(2950), - [anon_sym_true] = ACTIONS(2952), - [anon_sym_false] = ACTIONS(2952), - [aux_sym__val_number_decimal_token1] = ACTIONS(2954), - [aux_sym__val_number_decimal_token2] = ACTIONS(2956), - [aux_sym__val_number_decimal_token3] = ACTIONS(2958), - [aux_sym__val_number_decimal_token4] = ACTIONS(2960), - [aux_sym__val_number_token1] = ACTIONS(2962), - [aux_sym__val_number_token2] = ACTIONS(2962), - [aux_sym__val_number_token3] = ACTIONS(2962), - [aux_sym__val_number_token4] = ACTIONS(2964), - [aux_sym__val_number_token5] = ACTIONS(2964), - [aux_sym__val_number_token6] = ACTIONS(2964), - [anon_sym_0b] = ACTIONS(2966), - [anon_sym_0o] = ACTIONS(2968), - [anon_sym_0x] = ACTIONS(2968), - [sym_val_date] = ACTIONS(2970), - [anon_sym_DQUOTE] = ACTIONS(2972), - [sym__str_single_quotes] = ACTIONS(2974), - [sym__str_back_ticks] = ACTIONS(2974), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2976), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2978), + [anon_sym_LBRACK] = ACTIONS(2941), + [anon_sym_LPAREN] = ACTIONS(2943), + [anon_sym_DOLLAR] = ACTIONS(2945), + [anon_sym_DASH_DASH] = ACTIONS(2947), + [anon_sym_DASH2] = ACTIONS(2949), + [anon_sym_LBRACE] = ACTIONS(2951), + [anon_sym_DOT_DOT] = ACTIONS(2953), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2955), + [anon_sym_DOT_DOT_LT] = ACTIONS(2955), + [anon_sym_null] = ACTIONS(2957), + [anon_sym_true] = ACTIONS(2959), + [anon_sym_false] = ACTIONS(2959), + [aux_sym__val_number_decimal_token1] = ACTIONS(2961), + [aux_sym__val_number_decimal_token2] = ACTIONS(2963), + [aux_sym__val_number_decimal_token3] = ACTIONS(2965), + [aux_sym__val_number_decimal_token4] = ACTIONS(2967), + [aux_sym__val_number_token1] = ACTIONS(2969), + [aux_sym__val_number_token2] = ACTIONS(2969), + [aux_sym__val_number_token3] = ACTIONS(2969), + [aux_sym__val_number_token4] = ACTIONS(2971), + [aux_sym__val_number_token5] = ACTIONS(2971), + [aux_sym__val_number_token6] = ACTIONS(2971), + [anon_sym_0b] = ACTIONS(2973), + [anon_sym_0o] = ACTIONS(2975), + [anon_sym_0x] = ACTIONS(2975), + [sym_val_date] = ACTIONS(2977), + [anon_sym_DQUOTE] = ACTIONS(2979), + [sym__str_single_quotes] = ACTIONS(2981), + [sym__str_back_ticks] = ACTIONS(2981), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2983), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2985), [anon_sym_err_GT] = ACTIONS(2741), [anon_sym_out_GT] = ACTIONS(2741), [anon_sym_e_GT] = ACTIONS(2741), @@ -163481,9 +163481,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(2980), + [aux_sym_unquoted_token1] = ACTIONS(2987), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2982), + [sym_raw_string_begin] = ACTIONS(2989), }, [789] = { [sym_comment] = STATE(789), @@ -163557,10 +163557,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bit_DASHxor2] = ACTIONS(1587), [anon_sym_bit_DASHor2] = ACTIONS(1587), [anon_sym_DOT_DOT2] = ACTIONS(1587), - [anon_sym_DOT] = ACTIONS(2984), + [anon_sym_DOT] = ACTIONS(2991), [anon_sym_DOT_DOT_EQ2] = ACTIONS(1589), [anon_sym_DOT_DOT_LT2] = ACTIONS(1589), - [aux_sym__immediate_decimal_token2] = ACTIONS(2986), + [aux_sym__immediate_decimal_token2] = ACTIONS(2993), [sym_filesize_unit] = ACTIONS(1587), [sym_duration_unit] = ACTIONS(1589), [anon_sym_err_GT] = ACTIONS(1587), @@ -163626,37 +163626,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2693), [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2693), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2693), - [anon_sym_LBRACK] = ACTIONS(2934), - [anon_sym_LPAREN] = ACTIONS(2936), - [anon_sym_DOLLAR] = ACTIONS(2938), - [anon_sym_DASH_DASH] = ACTIONS(2940), - [anon_sym_DASH2] = ACTIONS(2942), - [anon_sym_LBRACE] = ACTIONS(2944), - [anon_sym_DOT_DOT] = ACTIONS(2946), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2948), - [anon_sym_DOT_DOT_LT] = ACTIONS(2948), - [anon_sym_null] = ACTIONS(2950), - [anon_sym_true] = ACTIONS(2952), - [anon_sym_false] = ACTIONS(2952), - [aux_sym__val_number_decimal_token1] = ACTIONS(2954), - [aux_sym__val_number_decimal_token2] = ACTIONS(2956), - [aux_sym__val_number_decimal_token3] = ACTIONS(2958), - [aux_sym__val_number_decimal_token4] = ACTIONS(2960), - [aux_sym__val_number_token1] = ACTIONS(2962), - [aux_sym__val_number_token2] = ACTIONS(2962), - [aux_sym__val_number_token3] = ACTIONS(2962), - [aux_sym__val_number_token4] = ACTIONS(2964), - [aux_sym__val_number_token5] = ACTIONS(2964), - [aux_sym__val_number_token6] = ACTIONS(2964), - [anon_sym_0b] = ACTIONS(2966), - [anon_sym_0o] = ACTIONS(2968), - [anon_sym_0x] = ACTIONS(2968), - [sym_val_date] = ACTIONS(2970), - [anon_sym_DQUOTE] = ACTIONS(2972), - [sym__str_single_quotes] = ACTIONS(2974), - [sym__str_back_ticks] = ACTIONS(2974), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2976), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2978), + [anon_sym_LBRACK] = ACTIONS(2941), + [anon_sym_LPAREN] = ACTIONS(2943), + [anon_sym_DOLLAR] = ACTIONS(2945), + [anon_sym_DASH_DASH] = ACTIONS(2947), + [anon_sym_DASH2] = ACTIONS(2949), + [anon_sym_LBRACE] = ACTIONS(2951), + [anon_sym_DOT_DOT] = ACTIONS(2953), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2955), + [anon_sym_DOT_DOT_LT] = ACTIONS(2955), + [anon_sym_null] = ACTIONS(2957), + [anon_sym_true] = ACTIONS(2959), + [anon_sym_false] = ACTIONS(2959), + [aux_sym__val_number_decimal_token1] = ACTIONS(2961), + [aux_sym__val_number_decimal_token2] = ACTIONS(2963), + [aux_sym__val_number_decimal_token3] = ACTIONS(2965), + [aux_sym__val_number_decimal_token4] = ACTIONS(2967), + [aux_sym__val_number_token1] = ACTIONS(2969), + [aux_sym__val_number_token2] = ACTIONS(2969), + [aux_sym__val_number_token3] = ACTIONS(2969), + [aux_sym__val_number_token4] = ACTIONS(2971), + [aux_sym__val_number_token5] = ACTIONS(2971), + [aux_sym__val_number_token6] = ACTIONS(2971), + [anon_sym_0b] = ACTIONS(2973), + [anon_sym_0o] = ACTIONS(2975), + [anon_sym_0x] = ACTIONS(2975), + [sym_val_date] = ACTIONS(2977), + [anon_sym_DQUOTE] = ACTIONS(2979), + [sym__str_single_quotes] = ACTIONS(2981), + [sym__str_back_ticks] = ACTIONS(2981), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2983), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2985), [anon_sym_err_GT] = ACTIONS(2741), [anon_sym_out_GT] = ACTIONS(2741), [anon_sym_e_GT] = ACTIONS(2741), @@ -163673,9 +163673,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(2980), + [aux_sym_unquoted_token1] = ACTIONS(2987), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2982), + [sym_raw_string_begin] = ACTIONS(2989), }, [791] = { [sym_comment] = STATE(791), @@ -163749,10 +163749,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bit_DASHxor2] = ACTIONS(1587), [anon_sym_bit_DASHor2] = ACTIONS(1587), [anon_sym_DOT_DOT2] = ACTIONS(1587), - [anon_sym_DOT] = ACTIONS(2988), + [anon_sym_DOT] = ACTIONS(2995), [anon_sym_DOT_DOT_EQ2] = ACTIONS(1589), [anon_sym_DOT_DOT_LT2] = ACTIONS(1589), - [aux_sym__immediate_decimal_token2] = ACTIONS(2990), + [aux_sym__immediate_decimal_token2] = ACTIONS(2997), [sym_filesize_unit] = ACTIONS(1587), [sym_duration_unit] = ACTIONS(1589), [anon_sym_err_GT] = ACTIONS(1587), @@ -163847,8 +163847,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT2] = ACTIONS(1595), [anon_sym_DOT_DOT_EQ2] = ACTIONS(1597), [anon_sym_DOT_DOT_LT2] = ACTIONS(1597), - [aux_sym__immediate_decimal_token1] = ACTIONS(2992), - [aux_sym__immediate_decimal_token2] = ACTIONS(2994), + [aux_sym__immediate_decimal_token1] = ACTIONS(2999), + [aux_sym__immediate_decimal_token2] = ACTIONS(3001), [sym_filesize_unit] = ACTIONS(1595), [sym_duration_unit] = ACTIONS(1597), [anon_sym_err_GT] = ACTIONS(1595), @@ -163914,37 +163914,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2749), [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2749), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2749), - [anon_sym_LBRACK] = ACTIONS(2934), - [anon_sym_LPAREN] = ACTIONS(2936), - [anon_sym_DOLLAR] = ACTIONS(2938), - [anon_sym_DASH_DASH] = ACTIONS(2940), - [anon_sym_DASH2] = ACTIONS(2942), - [anon_sym_LBRACE] = ACTIONS(2944), - [anon_sym_DOT_DOT] = ACTIONS(2946), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2948), - [anon_sym_DOT_DOT_LT] = ACTIONS(2948), - [anon_sym_null] = ACTIONS(2950), - [anon_sym_true] = ACTIONS(2952), - [anon_sym_false] = ACTIONS(2952), - [aux_sym__val_number_decimal_token1] = ACTIONS(2954), - [aux_sym__val_number_decimal_token2] = ACTIONS(2956), - [aux_sym__val_number_decimal_token3] = ACTIONS(2958), - [aux_sym__val_number_decimal_token4] = ACTIONS(2960), - [aux_sym__val_number_token1] = ACTIONS(2962), - [aux_sym__val_number_token2] = ACTIONS(2962), - [aux_sym__val_number_token3] = ACTIONS(2962), - [aux_sym__val_number_token4] = ACTIONS(2964), - [aux_sym__val_number_token5] = ACTIONS(2964), - [aux_sym__val_number_token6] = ACTIONS(2964), - [anon_sym_0b] = ACTIONS(2966), - [anon_sym_0o] = ACTIONS(2968), - [anon_sym_0x] = ACTIONS(2968), - [sym_val_date] = ACTIONS(2970), - [anon_sym_DQUOTE] = ACTIONS(2972), - [sym__str_single_quotes] = ACTIONS(2974), - [sym__str_back_ticks] = ACTIONS(2974), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2976), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2978), + [anon_sym_LBRACK] = ACTIONS(2941), + [anon_sym_LPAREN] = ACTIONS(2943), + [anon_sym_DOLLAR] = ACTIONS(2945), + [anon_sym_DASH_DASH] = ACTIONS(2947), + [anon_sym_DASH2] = ACTIONS(2949), + [anon_sym_LBRACE] = ACTIONS(2951), + [anon_sym_DOT_DOT] = ACTIONS(2953), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2955), + [anon_sym_DOT_DOT_LT] = ACTIONS(2955), + [anon_sym_null] = ACTIONS(2957), + [anon_sym_true] = ACTIONS(2959), + [anon_sym_false] = ACTIONS(2959), + [aux_sym__val_number_decimal_token1] = ACTIONS(2961), + [aux_sym__val_number_decimal_token2] = ACTIONS(2963), + [aux_sym__val_number_decimal_token3] = ACTIONS(2965), + [aux_sym__val_number_decimal_token4] = ACTIONS(2967), + [aux_sym__val_number_token1] = ACTIONS(2969), + [aux_sym__val_number_token2] = ACTIONS(2969), + [aux_sym__val_number_token3] = ACTIONS(2969), + [aux_sym__val_number_token4] = ACTIONS(2971), + [aux_sym__val_number_token5] = ACTIONS(2971), + [aux_sym__val_number_token6] = ACTIONS(2971), + [anon_sym_0b] = ACTIONS(2973), + [anon_sym_0o] = ACTIONS(2975), + [anon_sym_0x] = ACTIONS(2975), + [sym_val_date] = ACTIONS(2977), + [anon_sym_DQUOTE] = ACTIONS(2979), + [sym__str_single_quotes] = ACTIONS(2981), + [sym__str_back_ticks] = ACTIONS(2981), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2983), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2985), [anon_sym_err_GT] = ACTIONS(2741), [anon_sym_out_GT] = ACTIONS(2741), [anon_sym_e_GT] = ACTIONS(2741), @@ -163961,9 +163961,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(2980), + [aux_sym_unquoted_token1] = ACTIONS(2987), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2982), + [sym_raw_string_begin] = ACTIONS(2989), }, [794] = { [sym_comment] = STATE(794), @@ -164037,10 +164037,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bit_DASHxor2] = ACTIONS(1587), [anon_sym_bit_DASHor2] = ACTIONS(1587), [anon_sym_DOT_DOT2] = ACTIONS(1587), - [anon_sym_DOT] = ACTIONS(2996), + [anon_sym_DOT] = ACTIONS(3003), [anon_sym_DOT_DOT_EQ2] = ACTIONS(1589), [anon_sym_DOT_DOT_LT2] = ACTIONS(1589), - [aux_sym__immediate_decimal_token2] = ACTIONS(2998), + [aux_sym__immediate_decimal_token2] = ACTIONS(3005), [sym_filesize_unit] = ACTIONS(1587), [sym_duration_unit] = ACTIONS(1589), [anon_sym_err_GT] = ACTIONS(1587), @@ -164135,7 +164135,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT2] = ACTIONS(1667), [anon_sym_DOT_DOT_EQ2] = ACTIONS(1669), [anon_sym_DOT_DOT_LT2] = ACTIONS(1669), - [aux_sym__immediate_decimal_token2] = ACTIONS(3000), + [aux_sym__immediate_decimal_token2] = ACTIONS(3007), [sym_filesize_unit] = ACTIONS(1667), [sym_duration_unit] = ACTIONS(1669), [anon_sym_COLON2] = ACTIONS(1667), @@ -164231,8 +164231,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT2] = ACTIONS(1595), [anon_sym_DOT_DOT_EQ2] = ACTIONS(1597), [anon_sym_DOT_DOT_LT2] = ACTIONS(1597), - [aux_sym__immediate_decimal_token1] = ACTIONS(3002), - [aux_sym__immediate_decimal_token2] = ACTIONS(3004), + [aux_sym__immediate_decimal_token1] = ACTIONS(3009), + [aux_sym__immediate_decimal_token2] = ACTIONS(3011), [sym_filesize_unit] = ACTIONS(1595), [sym_duration_unit] = ACTIONS(1597), [anon_sym_err_GT] = ACTIONS(1595), @@ -164327,7 +164327,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT2] = ACTIONS(1587), [anon_sym_DOT_DOT_EQ2] = ACTIONS(1589), [anon_sym_DOT_DOT_LT2] = ACTIONS(1589), - [aux_sym__immediate_decimal_token2] = ACTIONS(2857), + [aux_sym__immediate_decimal_token2] = ACTIONS(2864), [sym_filesize_unit] = ACTIONS(1587), [sym_duration_unit] = ACTIONS(1589), [anon_sym_COLON2] = ACTIONS(1587), @@ -164423,8 +164423,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT2] = ACTIONS(1595), [anon_sym_DOT_DOT_EQ2] = ACTIONS(1597), [anon_sym_DOT_DOT_LT2] = ACTIONS(1597), - [aux_sym__immediate_decimal_token1] = ACTIONS(3006), - [aux_sym__immediate_decimal_token2] = ACTIONS(3008), + [aux_sym__immediate_decimal_token1] = ACTIONS(3013), + [aux_sym__immediate_decimal_token2] = ACTIONS(3015), [sym_filesize_unit] = ACTIONS(1595), [sym_duration_unit] = ACTIONS(1597), [anon_sym_err_GT] = ACTIONS(1595), @@ -164611,10 +164611,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bit_DASHxor2] = ACTIONS(1587), [anon_sym_bit_DASHor2] = ACTIONS(1587), [anon_sym_DOT_DOT2] = ACTIONS(1587), - [anon_sym_DOT] = ACTIONS(3010), + [anon_sym_DOT] = ACTIONS(3017), [anon_sym_DOT_DOT_EQ2] = ACTIONS(1589), [anon_sym_DOT_DOT_LT2] = ACTIONS(1589), - [aux_sym__immediate_decimal_token2] = ACTIONS(3012), + [aux_sym__immediate_decimal_token2] = ACTIONS(3019), [sym_filesize_unit] = ACTIONS(1587), [sym_duration_unit] = ACTIONS(1589), [anon_sym_err_GT] = ACTIONS(1587), @@ -164708,8 +164708,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT2] = ACTIONS(1595), [anon_sym_DOT_DOT_EQ2] = ACTIONS(1597), [anon_sym_DOT_DOT_LT2] = ACTIONS(1597), - [aux_sym__immediate_decimal_token1] = ACTIONS(3014), - [aux_sym__immediate_decimal_token2] = ACTIONS(3016), + [aux_sym__immediate_decimal_token1] = ACTIONS(3021), + [aux_sym__immediate_decimal_token2] = ACTIONS(3023), [sym_filesize_unit] = ACTIONS(1595), [sym_duration_unit] = ACTIONS(1597), [anon_sym_err_GT] = ACTIONS(1595), @@ -164804,7 +164804,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT2] = ACTIONS(1587), [anon_sym_DOT_DOT_EQ2] = ACTIONS(1589), [anon_sym_DOT_DOT_LT2] = ACTIONS(1589), - [aux_sym__immediate_decimal_token2] = ACTIONS(2986), + [aux_sym__immediate_decimal_token2] = ACTIONS(2993), [sym_filesize_unit] = ACTIONS(1587), [sym_duration_unit] = ACTIONS(1589), [anon_sym_err_GT] = ACTIONS(1587), @@ -164899,7 +164899,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT2] = ACTIONS(1587), [anon_sym_DOT_DOT_EQ2] = ACTIONS(1589), [anon_sym_DOT_DOT_LT2] = ACTIONS(1589), - [aux_sym__immediate_decimal_token2] = ACTIONS(2990), + [aux_sym__immediate_decimal_token2] = ACTIONS(2997), [sym_filesize_unit] = ACTIONS(1587), [sym_duration_unit] = ACTIONS(1589), [anon_sym_err_GT] = ACTIONS(1587), @@ -164922,35 +164922,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [804] = { [sym_comment] = STATE(804), - [anon_sym_STAR_STAR] = ACTIONS(3018), - [anon_sym_PLUS_PLUS] = ACTIONS(3018), - [anon_sym_STAR] = ACTIONS(3020), - [anon_sym_SLASH] = ACTIONS(3020), - [anon_sym_mod] = ACTIONS(3018), - [anon_sym_SLASH_SLASH] = ACTIONS(3018), - [anon_sym_PLUS] = ACTIONS(3020), - [anon_sym_DASH] = ACTIONS(3018), - [anon_sym_bit_DASHshl] = ACTIONS(3018), - [anon_sym_bit_DASHshr] = ACTIONS(3018), - [anon_sym_EQ_TILDE] = ACTIONS(3018), - [anon_sym_BANG_TILDE] = ACTIONS(3018), - [anon_sym_bit_DASHand] = ACTIONS(3018), - [anon_sym_bit_DASHxor] = ACTIONS(3018), - [anon_sym_bit_DASHor] = ACTIONS(3018), - [anon_sym_and] = ACTIONS(3018), - [anon_sym_xor] = ACTIONS(3018), - [anon_sym_or] = ACTIONS(3018), - [anon_sym_in] = ACTIONS(3018), - [anon_sym_not_DASHin] = ACTIONS(3018), - [anon_sym_starts_DASHwith] = ACTIONS(3018), - [anon_sym_ends_DASHwith] = ACTIONS(3018), - [anon_sym_EQ_EQ] = ACTIONS(3018), - [anon_sym_BANG_EQ] = ACTIONS(3018), - [anon_sym_LT] = ACTIONS(3020), - [anon_sym_LT_EQ] = ACTIONS(3018), - [anon_sym_GT] = ACTIONS(3020), - [anon_sym_GT_EQ] = ACTIONS(3018), - [aux_sym_cmd_identifier_token41] = ACTIONS(3022), + [anon_sym_STAR_STAR] = ACTIONS(3025), + [anon_sym_PLUS_PLUS] = ACTIONS(3025), + [anon_sym_STAR] = ACTIONS(3027), + [anon_sym_SLASH] = ACTIONS(3027), + [anon_sym_mod] = ACTIONS(3025), + [anon_sym_SLASH_SLASH] = ACTIONS(3025), + [anon_sym_PLUS] = ACTIONS(3027), + [anon_sym_DASH] = ACTIONS(3025), + [anon_sym_bit_DASHshl] = ACTIONS(3025), + [anon_sym_bit_DASHshr] = ACTIONS(3025), + [anon_sym_EQ_TILDE] = ACTIONS(3025), + [anon_sym_BANG_TILDE] = ACTIONS(3025), + [anon_sym_bit_DASHand] = ACTIONS(3025), + [anon_sym_bit_DASHxor] = ACTIONS(3025), + [anon_sym_bit_DASHor] = ACTIONS(3025), + [anon_sym_and] = ACTIONS(3025), + [anon_sym_xor] = ACTIONS(3025), + [anon_sym_or] = ACTIONS(3025), + [anon_sym_in] = ACTIONS(3025), + [anon_sym_not_DASHin] = ACTIONS(3025), + [anon_sym_starts_DASHwith] = ACTIONS(3025), + [anon_sym_ends_DASHwith] = ACTIONS(3025), + [anon_sym_EQ_EQ] = ACTIONS(3025), + [anon_sym_BANG_EQ] = ACTIONS(3025), + [anon_sym_LT] = ACTIONS(3027), + [anon_sym_LT_EQ] = ACTIONS(3025), + [anon_sym_GT] = ACTIONS(3027), + [anon_sym_GT_EQ] = ACTIONS(3025), + [aux_sym_cmd_identifier_token41] = ACTIONS(3029), [sym__newline] = ACTIONS(1681), [anon_sym_SEMI] = ACTIONS(1681), [anon_sym_PIPE] = ACTIONS(1681), @@ -164991,11 +164991,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bit_DASHand2] = ACTIONS(1681), [anon_sym_bit_DASHxor2] = ACTIONS(1681), [anon_sym_bit_DASHor2] = ACTIONS(1681), - [anon_sym_DOT_DOT2] = ACTIONS(3024), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(3026), - [anon_sym_DOT_DOT_LT2] = ACTIONS(3026), - [sym_filesize_unit] = ACTIONS(3028), - [sym_duration_unit] = ACTIONS(3030), + [anon_sym_DOT_DOT2] = ACTIONS(3031), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(3033), + [anon_sym_DOT_DOT_LT2] = ACTIONS(3033), + [sym_filesize_unit] = ACTIONS(3035), + [sym_duration_unit] = ACTIONS(3037), [anon_sym_COLON2] = ACTIONS(1681), [anon_sym_err_GT] = ACTIONS(1681), [anon_sym_out_GT] = ACTIONS(1681), @@ -165089,7 +165089,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT2] = ACTIONS(1667), [anon_sym_DOT_DOT_EQ2] = ACTIONS(1669), [anon_sym_DOT_DOT_LT2] = ACTIONS(1669), - [aux_sym__immediate_decimal_token2] = ACTIONS(3032), + [aux_sym__immediate_decimal_token2] = ACTIONS(3039), [sym_filesize_unit] = ACTIONS(1667), [sym_duration_unit] = ACTIONS(1669), [anon_sym_err_GT] = ACTIONS(1667), @@ -165184,7 +165184,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT2] = ACTIONS(1667), [anon_sym_DOT_DOT_EQ2] = ACTIONS(1669), [anon_sym_DOT_DOT_LT2] = ACTIONS(1669), - [aux_sym__immediate_decimal_token2] = ACTIONS(3034), + [aux_sym__immediate_decimal_token2] = ACTIONS(3041), [sym_filesize_unit] = ACTIONS(1667), [sym_duration_unit] = ACTIONS(1669), [anon_sym_err_GT] = ACTIONS(1667), @@ -165374,7 +165374,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT2] = ACTIONS(1667), [anon_sym_DOT_DOT_EQ2] = ACTIONS(1669), [anon_sym_DOT_DOT_LT2] = ACTIONS(1669), - [aux_sym__immediate_decimal_token2] = ACTIONS(3036), + [aux_sym__immediate_decimal_token2] = ACTIONS(3043), [sym_filesize_unit] = ACTIONS(1667), [sym_duration_unit] = ACTIONS(1669), [anon_sym_err_GT] = ACTIONS(1667), @@ -165564,7 +165564,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT2] = ACTIONS(1587), [anon_sym_DOT_DOT_EQ2] = ACTIONS(1589), [anon_sym_DOT_DOT_LT2] = ACTIONS(1589), - [aux_sym__immediate_decimal_token2] = ACTIONS(2998), + [aux_sym__immediate_decimal_token2] = ACTIONS(3005), [sym_filesize_unit] = ACTIONS(1587), [sym_duration_unit] = ACTIONS(1589), [anon_sym_err_GT] = ACTIONS(1587), @@ -165938,10 +165938,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bit_DASHxor2] = ACTIONS(1587), [anon_sym_bit_DASHor2] = ACTIONS(1587), [anon_sym_DOT_DOT2] = ACTIONS(1587), - [anon_sym_DOT] = ACTIONS(3038), + [anon_sym_DOT] = ACTIONS(3045), [anon_sym_DOT_DOT_EQ2] = ACTIONS(1589), [anon_sym_DOT_DOT_LT2] = ACTIONS(1589), - [aux_sym__immediate_decimal_token2] = ACTIONS(3040), + [aux_sym__immediate_decimal_token2] = ACTIONS(3047), [sym_filesize_unit] = ACTIONS(1587), [sym_duration_unit] = ACTIONS(1589), [anon_sym_err_GT] = ACTIONS(1587), @@ -165965,35 +165965,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [815] = { [sym_comment] = STATE(815), [ts_builtin_sym_end] = ACTIONS(1693), - [anon_sym_STAR_STAR] = ACTIONS(3042), - [anon_sym_PLUS_PLUS] = ACTIONS(3042), - [anon_sym_STAR] = ACTIONS(3044), - [anon_sym_SLASH] = ACTIONS(3044), - [anon_sym_mod] = ACTIONS(3042), - [anon_sym_SLASH_SLASH] = ACTIONS(3042), - [anon_sym_PLUS] = ACTIONS(3044), - [anon_sym_DASH] = ACTIONS(3042), - [anon_sym_bit_DASHshl] = ACTIONS(3042), - [anon_sym_bit_DASHshr] = ACTIONS(3042), - [anon_sym_EQ_TILDE] = ACTIONS(3042), - [anon_sym_BANG_TILDE] = ACTIONS(3042), - [anon_sym_bit_DASHand] = ACTIONS(3042), - [anon_sym_bit_DASHxor] = ACTIONS(3042), - [anon_sym_bit_DASHor] = ACTIONS(3042), - [anon_sym_and] = ACTIONS(3042), - [anon_sym_xor] = ACTIONS(3042), - [anon_sym_or] = ACTIONS(3042), - [anon_sym_in] = ACTIONS(3042), - [anon_sym_not_DASHin] = ACTIONS(3042), - [anon_sym_starts_DASHwith] = ACTIONS(3042), - [anon_sym_ends_DASHwith] = ACTIONS(3042), - [anon_sym_EQ_EQ] = ACTIONS(3042), - [anon_sym_BANG_EQ] = ACTIONS(3042), - [anon_sym_LT] = ACTIONS(3044), - [anon_sym_LT_EQ] = ACTIONS(3042), - [anon_sym_GT] = ACTIONS(3044), - [anon_sym_GT_EQ] = ACTIONS(3042), - [aux_sym_cmd_identifier_token41] = ACTIONS(3046), + [anon_sym_STAR_STAR] = ACTIONS(3049), + [anon_sym_PLUS_PLUS] = ACTIONS(3049), + [anon_sym_STAR] = ACTIONS(3051), + [anon_sym_SLASH] = ACTIONS(3051), + [anon_sym_mod] = ACTIONS(3049), + [anon_sym_SLASH_SLASH] = ACTIONS(3049), + [anon_sym_PLUS] = ACTIONS(3051), + [anon_sym_DASH] = ACTIONS(3049), + [anon_sym_bit_DASHshl] = ACTIONS(3049), + [anon_sym_bit_DASHshr] = ACTIONS(3049), + [anon_sym_EQ_TILDE] = ACTIONS(3049), + [anon_sym_BANG_TILDE] = ACTIONS(3049), + [anon_sym_bit_DASHand] = ACTIONS(3049), + [anon_sym_bit_DASHxor] = ACTIONS(3049), + [anon_sym_bit_DASHor] = ACTIONS(3049), + [anon_sym_and] = ACTIONS(3049), + [anon_sym_xor] = ACTIONS(3049), + [anon_sym_or] = ACTIONS(3049), + [anon_sym_in] = ACTIONS(3049), + [anon_sym_not_DASHin] = ACTIONS(3049), + [anon_sym_starts_DASHwith] = ACTIONS(3049), + [anon_sym_ends_DASHwith] = ACTIONS(3049), + [anon_sym_EQ_EQ] = ACTIONS(3049), + [anon_sym_BANG_EQ] = ACTIONS(3049), + [anon_sym_LT] = ACTIONS(3051), + [anon_sym_LT_EQ] = ACTIONS(3049), + [anon_sym_GT] = ACTIONS(3051), + [anon_sym_GT_EQ] = ACTIONS(3049), + [aux_sym_cmd_identifier_token41] = ACTIONS(3053), [sym__newline] = ACTIONS(1681), [anon_sym_SEMI] = ACTIONS(1681), [anon_sym_PIPE] = ACTIONS(1681), @@ -166033,11 +166033,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bit_DASHand2] = ACTIONS(1681), [anon_sym_bit_DASHxor2] = ACTIONS(1681), [anon_sym_bit_DASHor2] = ACTIONS(1681), - [anon_sym_DOT_DOT2] = ACTIONS(3048), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(3050), - [anon_sym_DOT_DOT_LT2] = ACTIONS(3050), - [sym_filesize_unit] = ACTIONS(3052), - [sym_duration_unit] = ACTIONS(3054), + [anon_sym_DOT_DOT2] = ACTIONS(3055), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(3057), + [anon_sym_DOT_DOT_LT2] = ACTIONS(3057), + [sym_filesize_unit] = ACTIONS(3059), + [sym_duration_unit] = ACTIONS(3061), [anon_sym_err_GT] = ACTIONS(1681), [anon_sym_out_GT] = ACTIONS(1681), [anon_sym_e_GT] = ACTIONS(1681), @@ -166129,7 +166129,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT2] = ACTIONS(1667), [anon_sym_DOT_DOT_EQ2] = ACTIONS(1669), [anon_sym_DOT_DOT_LT2] = ACTIONS(1669), - [aux_sym__immediate_decimal_token2] = ACTIONS(3056), + [aux_sym__immediate_decimal_token2] = ACTIONS(3063), [sym_filesize_unit] = ACTIONS(1667), [sym_duration_unit] = ACTIONS(1669), [anon_sym_err_GT] = ACTIONS(1667), @@ -166223,7 +166223,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT2] = ACTIONS(1587), [anon_sym_DOT_DOT_EQ2] = ACTIONS(1589), [anon_sym_DOT_DOT_LT2] = ACTIONS(1589), - [aux_sym__immediate_decimal_token2] = ACTIONS(3012), + [aux_sym__immediate_decimal_token2] = ACTIONS(3019), [sym_filesize_unit] = ACTIONS(1587), [sym_duration_unit] = ACTIONS(1589), [anon_sym_err_GT] = ACTIONS(1587), @@ -166340,35 +166340,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [819] = { [sym_comment] = STATE(819), - [anon_sym_STAR_STAR] = ACTIONS(3058), - [anon_sym_PLUS_PLUS] = ACTIONS(3058), - [anon_sym_STAR] = ACTIONS(3060), - [anon_sym_SLASH] = ACTIONS(3060), - [anon_sym_mod] = ACTIONS(3058), - [anon_sym_SLASH_SLASH] = ACTIONS(3058), - [anon_sym_PLUS] = ACTIONS(3060), - [anon_sym_DASH] = ACTIONS(3058), - [anon_sym_bit_DASHshl] = ACTIONS(3058), - [anon_sym_bit_DASHshr] = ACTIONS(3058), - [anon_sym_EQ_TILDE] = ACTIONS(3058), - [anon_sym_BANG_TILDE] = ACTIONS(3058), - [anon_sym_bit_DASHand] = ACTIONS(3058), - [anon_sym_bit_DASHxor] = ACTIONS(3058), - [anon_sym_bit_DASHor] = ACTIONS(3058), - [anon_sym_and] = ACTIONS(3058), - [anon_sym_xor] = ACTIONS(3058), - [anon_sym_or] = ACTIONS(3058), - [anon_sym_in] = ACTIONS(3058), - [anon_sym_not_DASHin] = ACTIONS(3058), - [anon_sym_starts_DASHwith] = ACTIONS(3058), - [anon_sym_ends_DASHwith] = ACTIONS(3058), - [anon_sym_EQ_EQ] = ACTIONS(3058), - [anon_sym_BANG_EQ] = ACTIONS(3058), - [anon_sym_LT] = ACTIONS(3060), - [anon_sym_LT_EQ] = ACTIONS(3058), - [anon_sym_GT] = ACTIONS(3060), - [anon_sym_GT_EQ] = ACTIONS(3058), - [aux_sym_cmd_identifier_token41] = ACTIONS(3062), + [anon_sym_STAR_STAR] = ACTIONS(3065), + [anon_sym_PLUS_PLUS] = ACTIONS(3065), + [anon_sym_STAR] = ACTIONS(3067), + [anon_sym_SLASH] = ACTIONS(3067), + [anon_sym_mod] = ACTIONS(3065), + [anon_sym_SLASH_SLASH] = ACTIONS(3065), + [anon_sym_PLUS] = ACTIONS(3067), + [anon_sym_DASH] = ACTIONS(3065), + [anon_sym_bit_DASHshl] = ACTIONS(3065), + [anon_sym_bit_DASHshr] = ACTIONS(3065), + [anon_sym_EQ_TILDE] = ACTIONS(3065), + [anon_sym_BANG_TILDE] = ACTIONS(3065), + [anon_sym_bit_DASHand] = ACTIONS(3065), + [anon_sym_bit_DASHxor] = ACTIONS(3065), + [anon_sym_bit_DASHor] = ACTIONS(3065), + [anon_sym_and] = ACTIONS(3065), + [anon_sym_xor] = ACTIONS(3065), + [anon_sym_or] = ACTIONS(3065), + [anon_sym_in] = ACTIONS(3065), + [anon_sym_not_DASHin] = ACTIONS(3065), + [anon_sym_starts_DASHwith] = ACTIONS(3065), + [anon_sym_ends_DASHwith] = ACTIONS(3065), + [anon_sym_EQ_EQ] = ACTIONS(3065), + [anon_sym_BANG_EQ] = ACTIONS(3065), + [anon_sym_LT] = ACTIONS(3067), + [anon_sym_LT_EQ] = ACTIONS(3065), + [anon_sym_GT] = ACTIONS(3067), + [anon_sym_GT_EQ] = ACTIONS(3065), + [aux_sym_cmd_identifier_token41] = ACTIONS(3069), [sym__newline] = ACTIONS(1681), [anon_sym_SEMI] = ACTIONS(1681), [anon_sym_PIPE] = ACTIONS(1681), @@ -166409,11 +166409,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bit_DASHand2] = ACTIONS(1681), [anon_sym_bit_DASHxor2] = ACTIONS(1681), [anon_sym_bit_DASHor2] = ACTIONS(1681), - [anon_sym_DOT_DOT2] = ACTIONS(3024), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(3026), - [anon_sym_DOT_DOT_LT2] = ACTIONS(3026), - [sym_filesize_unit] = ACTIONS(3064), - [sym_duration_unit] = ACTIONS(3066), + [anon_sym_DOT_DOT2] = ACTIONS(3031), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(3033), + [anon_sym_DOT_DOT_LT2] = ACTIONS(3033), + [sym_filesize_unit] = ACTIONS(3071), + [sym_duration_unit] = ACTIONS(3073), [anon_sym_err_GT] = ACTIONS(1681), [anon_sym_out_GT] = ACTIONS(1681), [anon_sym_e_GT] = ACTIONS(1681), @@ -166434,35 +166434,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [820] = { [sym_comment] = STATE(820), - [anon_sym_STAR_STAR] = ACTIONS(3058), - [anon_sym_PLUS_PLUS] = ACTIONS(3058), - [anon_sym_STAR] = ACTIONS(3060), - [anon_sym_SLASH] = ACTIONS(3060), - [anon_sym_mod] = ACTIONS(3058), - [anon_sym_SLASH_SLASH] = ACTIONS(3058), - [anon_sym_PLUS] = ACTIONS(3060), - [anon_sym_DASH] = ACTIONS(3058), - [anon_sym_bit_DASHshl] = ACTIONS(3058), - [anon_sym_bit_DASHshr] = ACTIONS(3058), - [anon_sym_EQ_TILDE] = ACTIONS(3058), - [anon_sym_BANG_TILDE] = ACTIONS(3058), - [anon_sym_bit_DASHand] = ACTIONS(3058), - [anon_sym_bit_DASHxor] = ACTIONS(3058), - [anon_sym_bit_DASHor] = ACTIONS(3058), - [anon_sym_and] = ACTIONS(3058), - [anon_sym_xor] = ACTIONS(3058), - [anon_sym_or] = ACTIONS(3058), - [anon_sym_in] = ACTIONS(3058), - [anon_sym_not_DASHin] = ACTIONS(3058), - [anon_sym_starts_DASHwith] = ACTIONS(3058), - [anon_sym_ends_DASHwith] = ACTIONS(3058), - [anon_sym_EQ_EQ] = ACTIONS(3058), - [anon_sym_BANG_EQ] = ACTIONS(3058), - [anon_sym_LT] = ACTIONS(3060), - [anon_sym_LT_EQ] = ACTIONS(3058), - [anon_sym_GT] = ACTIONS(3060), - [anon_sym_GT_EQ] = ACTIONS(3058), - [aux_sym_cmd_identifier_token41] = ACTIONS(3062), + [anon_sym_STAR_STAR] = ACTIONS(3065), + [anon_sym_PLUS_PLUS] = ACTIONS(3065), + [anon_sym_STAR] = ACTIONS(3067), + [anon_sym_SLASH] = ACTIONS(3067), + [anon_sym_mod] = ACTIONS(3065), + [anon_sym_SLASH_SLASH] = ACTIONS(3065), + [anon_sym_PLUS] = ACTIONS(3067), + [anon_sym_DASH] = ACTIONS(3065), + [anon_sym_bit_DASHshl] = ACTIONS(3065), + [anon_sym_bit_DASHshr] = ACTIONS(3065), + [anon_sym_EQ_TILDE] = ACTIONS(3065), + [anon_sym_BANG_TILDE] = ACTIONS(3065), + [anon_sym_bit_DASHand] = ACTIONS(3065), + [anon_sym_bit_DASHxor] = ACTIONS(3065), + [anon_sym_bit_DASHor] = ACTIONS(3065), + [anon_sym_and] = ACTIONS(3065), + [anon_sym_xor] = ACTIONS(3065), + [anon_sym_or] = ACTIONS(3065), + [anon_sym_in] = ACTIONS(3065), + [anon_sym_not_DASHin] = ACTIONS(3065), + [anon_sym_starts_DASHwith] = ACTIONS(3065), + [anon_sym_ends_DASHwith] = ACTIONS(3065), + [anon_sym_EQ_EQ] = ACTIONS(3065), + [anon_sym_BANG_EQ] = ACTIONS(3065), + [anon_sym_LT] = ACTIONS(3067), + [anon_sym_LT_EQ] = ACTIONS(3065), + [anon_sym_GT] = ACTIONS(3067), + [anon_sym_GT_EQ] = ACTIONS(3065), + [aux_sym_cmd_identifier_token41] = ACTIONS(3069), [sym__newline] = ACTIONS(1681), [anon_sym_SEMI] = ACTIONS(1681), [anon_sym_PIPE] = ACTIONS(1681), @@ -166503,11 +166503,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bit_DASHand2] = ACTIONS(1681), [anon_sym_bit_DASHxor2] = ACTIONS(1681), [anon_sym_bit_DASHor2] = ACTIONS(1681), - [anon_sym_DOT_DOT2] = ACTIONS(3024), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(3026), - [anon_sym_DOT_DOT_LT2] = ACTIONS(3026), - [sym_filesize_unit] = ACTIONS(3068), - [sym_duration_unit] = ACTIONS(3070), + [anon_sym_DOT_DOT2] = ACTIONS(3031), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(3033), + [anon_sym_DOT_DOT_LT2] = ACTIONS(3033), + [sym_filesize_unit] = ACTIONS(3075), + [sym_duration_unit] = ACTIONS(3077), [anon_sym_err_GT] = ACTIONS(1681), [anon_sym_out_GT] = ACTIONS(1681), [anon_sym_e_GT] = ACTIONS(1681), @@ -167068,8 +167068,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT2] = ACTIONS(1595), [anon_sym_DOT_DOT_EQ2] = ACTIONS(1597), [anon_sym_DOT_DOT_LT2] = ACTIONS(1597), - [aux_sym__immediate_decimal_token1] = ACTIONS(3072), - [aux_sym__immediate_decimal_token2] = ACTIONS(3074), + [aux_sym__immediate_decimal_token1] = ACTIONS(3079), + [aux_sym__immediate_decimal_token2] = ACTIONS(3081), [sym_filesize_unit] = ACTIONS(1595), [sym_duration_unit] = ACTIONS(1597), [anon_sym_err_GT] = ACTIONS(1595), @@ -167538,7 +167538,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT2] = ACTIONS(1587), [anon_sym_DOT_DOT_EQ2] = ACTIONS(1589), [anon_sym_DOT_DOT_LT2] = ACTIONS(1589), - [aux_sym__immediate_decimal_token2] = ACTIONS(3040), + [aux_sym__immediate_decimal_token2] = ACTIONS(3047), [sym_filesize_unit] = ACTIONS(1587), [sym_duration_unit] = ACTIONS(1589), [anon_sym_err_GT] = ACTIONS(1587), @@ -167747,35 +167747,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [834] = { [sym_comment] = STATE(834), - [anon_sym_STAR_STAR] = ACTIONS(3058), - [anon_sym_PLUS_PLUS] = ACTIONS(3058), - [anon_sym_STAR] = ACTIONS(3060), - [anon_sym_SLASH] = ACTIONS(3060), - [anon_sym_mod] = ACTIONS(3058), - [anon_sym_SLASH_SLASH] = ACTIONS(3058), - [anon_sym_PLUS] = ACTIONS(3060), - [anon_sym_DASH] = ACTIONS(3058), - [anon_sym_bit_DASHshl] = ACTIONS(3058), - [anon_sym_bit_DASHshr] = ACTIONS(3058), - [anon_sym_EQ_TILDE] = ACTIONS(3058), - [anon_sym_BANG_TILDE] = ACTIONS(3058), - [anon_sym_bit_DASHand] = ACTIONS(3058), - [anon_sym_bit_DASHxor] = ACTIONS(3058), - [anon_sym_bit_DASHor] = ACTIONS(3058), - [anon_sym_and] = ACTIONS(3058), - [anon_sym_xor] = ACTIONS(3058), - [anon_sym_or] = ACTIONS(3058), - [anon_sym_in] = ACTIONS(3058), - [anon_sym_not_DASHin] = ACTIONS(3058), - [anon_sym_starts_DASHwith] = ACTIONS(3058), - [anon_sym_ends_DASHwith] = ACTIONS(3058), - [anon_sym_EQ_EQ] = ACTIONS(3058), - [anon_sym_BANG_EQ] = ACTIONS(3058), - [anon_sym_LT] = ACTIONS(3060), - [anon_sym_LT_EQ] = ACTIONS(3058), - [anon_sym_GT] = ACTIONS(3060), - [anon_sym_GT_EQ] = ACTIONS(3058), - [aux_sym_cmd_identifier_token41] = ACTIONS(3062), + [anon_sym_STAR_STAR] = ACTIONS(3065), + [anon_sym_PLUS_PLUS] = ACTIONS(3065), + [anon_sym_STAR] = ACTIONS(3067), + [anon_sym_SLASH] = ACTIONS(3067), + [anon_sym_mod] = ACTIONS(3065), + [anon_sym_SLASH_SLASH] = ACTIONS(3065), + [anon_sym_PLUS] = ACTIONS(3067), + [anon_sym_DASH] = ACTIONS(3065), + [anon_sym_bit_DASHshl] = ACTIONS(3065), + [anon_sym_bit_DASHshr] = ACTIONS(3065), + [anon_sym_EQ_TILDE] = ACTIONS(3065), + [anon_sym_BANG_TILDE] = ACTIONS(3065), + [anon_sym_bit_DASHand] = ACTIONS(3065), + [anon_sym_bit_DASHxor] = ACTIONS(3065), + [anon_sym_bit_DASHor] = ACTIONS(3065), + [anon_sym_and] = ACTIONS(3065), + [anon_sym_xor] = ACTIONS(3065), + [anon_sym_or] = ACTIONS(3065), + [anon_sym_in] = ACTIONS(3065), + [anon_sym_not_DASHin] = ACTIONS(3065), + [anon_sym_starts_DASHwith] = ACTIONS(3065), + [anon_sym_ends_DASHwith] = ACTIONS(3065), + [anon_sym_EQ_EQ] = ACTIONS(3065), + [anon_sym_BANG_EQ] = ACTIONS(3065), + [anon_sym_LT] = ACTIONS(3067), + [anon_sym_LT_EQ] = ACTIONS(3065), + [anon_sym_GT] = ACTIONS(3067), + [anon_sym_GT_EQ] = ACTIONS(3065), + [aux_sym_cmd_identifier_token41] = ACTIONS(3069), [sym__newline] = ACTIONS(1681), [anon_sym_SEMI] = ACTIONS(1681), [anon_sym_PIPE] = ACTIONS(1681), @@ -167815,11 +167815,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bit_DASHand2] = ACTIONS(1681), [anon_sym_bit_DASHxor2] = ACTIONS(1681), [anon_sym_bit_DASHor2] = ACTIONS(1681), - [anon_sym_DOT_DOT2] = ACTIONS(3024), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(3026), - [anon_sym_DOT_DOT_LT2] = ACTIONS(3026), - [sym_filesize_unit] = ACTIONS(3076), - [sym_duration_unit] = ACTIONS(3078), + [anon_sym_DOT_DOT2] = ACTIONS(3031), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(3033), + [anon_sym_DOT_DOT_LT2] = ACTIONS(3033), + [sym_filesize_unit] = ACTIONS(3083), + [sym_duration_unit] = ACTIONS(3085), [anon_sym_err_GT] = ACTIONS(1681), [anon_sym_out_GT] = ACTIONS(1681), [anon_sym_e_GT] = ACTIONS(1681), @@ -168003,7 +168003,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT2] = ACTIONS(1667), [anon_sym_DOT_DOT_EQ2] = ACTIONS(1669), [anon_sym_DOT_DOT_LT2] = ACTIONS(1669), - [aux_sym__immediate_decimal_token2] = ACTIONS(3080), + [aux_sym__immediate_decimal_token2] = ACTIONS(3087), [sym_filesize_unit] = ACTIONS(1667), [sym_duration_unit] = ACTIONS(1669), [anon_sym_err_GT] = ACTIONS(1667), @@ -168155,37 +168155,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_parameter_repeat2] = STATE(6085), [aux_sym_list_body_repeat1] = STATE(973), [sym__newline] = ACTIONS(2537), - [anon_sym_LBRACK] = ACTIONS(3082), - [anon_sym_RBRACK] = ACTIONS(3084), - [anon_sym_LPAREN] = ACTIONS(3086), + [anon_sym_LBRACK] = ACTIONS(3089), + [anon_sym_RBRACK] = ACTIONS(3091), + [anon_sym_LPAREN] = ACTIONS(3093), [anon_sym_COMMA] = ACTIONS(2545), - [anon_sym_DOLLAR] = ACTIONS(3088), - [anon_sym_LBRACE] = ACTIONS(3090), - [anon_sym_DOT_DOT] = ACTIONS(3092), + [anon_sym_DOLLAR] = ACTIONS(3095), + [anon_sym_LBRACE] = ACTIONS(3097), + [anon_sym_DOT_DOT] = ACTIONS(3099), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3094), - [anon_sym_DOT_DOT_LT] = ACTIONS(3094), - [anon_sym_null] = ACTIONS(3096), - [anon_sym_true] = ACTIONS(3098), - [anon_sym_false] = ACTIONS(3098), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3101), + [anon_sym_DOT_DOT_LT] = ACTIONS(3101), + [anon_sym_null] = ACTIONS(3103), + [anon_sym_true] = ACTIONS(3105), + [anon_sym_false] = ACTIONS(3105), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), - [aux_sym__val_number_decimal_token1] = ACTIONS(3100), - [aux_sym__val_number_decimal_token2] = ACTIONS(3102), - [aux_sym__val_number_decimal_token3] = ACTIONS(3104), - [aux_sym__val_number_decimal_token4] = ACTIONS(3106), - [aux_sym__val_number_token1] = ACTIONS(3108), - [aux_sym__val_number_token2] = ACTIONS(3108), - [aux_sym__val_number_token3] = ACTIONS(3108), - [aux_sym__val_number_token4] = ACTIONS(3110), - [aux_sym__val_number_token5] = ACTIONS(3110), - [aux_sym__val_number_token6] = ACTIONS(3110), - [anon_sym_0b] = ACTIONS(3112), - [anon_sym_0o] = ACTIONS(3114), - [anon_sym_0x] = ACTIONS(3114), - [sym_val_date] = ACTIONS(3116), - [anon_sym_DQUOTE] = ACTIONS(3118), - [sym__str_single_quotes] = ACTIONS(3120), - [sym__str_back_ticks] = ACTIONS(3120), + [aux_sym__val_number_decimal_token1] = ACTIONS(3107), + [aux_sym__val_number_decimal_token2] = ACTIONS(3109), + [aux_sym__val_number_decimal_token3] = ACTIONS(3111), + [aux_sym__val_number_decimal_token4] = ACTIONS(3113), + [aux_sym__val_number_token1] = ACTIONS(3115), + [aux_sym__val_number_token2] = ACTIONS(3115), + [aux_sym__val_number_token3] = ACTIONS(3115), + [aux_sym__val_number_token4] = ACTIONS(3117), + [aux_sym__val_number_token5] = ACTIONS(3117), + [aux_sym__val_number_token6] = ACTIONS(3117), + [anon_sym_0b] = ACTIONS(3119), + [anon_sym_0o] = ACTIONS(3121), + [anon_sym_0x] = ACTIONS(3121), + [sym_val_date] = ACTIONS(3123), + [anon_sym_DQUOTE] = ACTIONS(3125), + [sym__str_single_quotes] = ACTIONS(3127), + [sym__str_back_ticks] = ACTIONS(3127), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2581), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2583), [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2585), @@ -168205,9 +168205,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2589), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2589), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2589), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3122), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3129), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3124), + [sym_raw_string_begin] = ACTIONS(3131), }, [839] = { [sym_expr_parenthesized] = STATE(5918), @@ -168247,37 +168247,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_parameter_repeat2] = STATE(6085), [aux_sym_list_body_repeat1] = STATE(973), [sym__newline] = ACTIONS(2537), - [anon_sym_LBRACK] = ACTIONS(3082), - [anon_sym_RBRACK] = ACTIONS(3126), - [anon_sym_LPAREN] = ACTIONS(3086), + [anon_sym_LBRACK] = ACTIONS(3089), + [anon_sym_RBRACK] = ACTIONS(3133), + [anon_sym_LPAREN] = ACTIONS(3093), [anon_sym_COMMA] = ACTIONS(2545), - [anon_sym_DOLLAR] = ACTIONS(3088), - [anon_sym_LBRACE] = ACTIONS(3090), - [anon_sym_DOT_DOT] = ACTIONS(3092), + [anon_sym_DOLLAR] = ACTIONS(3095), + [anon_sym_LBRACE] = ACTIONS(3097), + [anon_sym_DOT_DOT] = ACTIONS(3099), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3094), - [anon_sym_DOT_DOT_LT] = ACTIONS(3094), - [anon_sym_null] = ACTIONS(3096), - [anon_sym_true] = ACTIONS(3098), - [anon_sym_false] = ACTIONS(3098), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3101), + [anon_sym_DOT_DOT_LT] = ACTIONS(3101), + [anon_sym_null] = ACTIONS(3103), + [anon_sym_true] = ACTIONS(3105), + [anon_sym_false] = ACTIONS(3105), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), - [aux_sym__val_number_decimal_token1] = ACTIONS(3100), - [aux_sym__val_number_decimal_token2] = ACTIONS(3102), - [aux_sym__val_number_decimal_token3] = ACTIONS(3104), - [aux_sym__val_number_decimal_token4] = ACTIONS(3106), - [aux_sym__val_number_token1] = ACTIONS(3108), - [aux_sym__val_number_token2] = ACTIONS(3108), - [aux_sym__val_number_token3] = ACTIONS(3108), - [aux_sym__val_number_token4] = ACTIONS(3110), - [aux_sym__val_number_token5] = ACTIONS(3110), - [aux_sym__val_number_token6] = ACTIONS(3110), - [anon_sym_0b] = ACTIONS(3112), - [anon_sym_0o] = ACTIONS(3114), - [anon_sym_0x] = ACTIONS(3114), - [sym_val_date] = ACTIONS(3116), - [anon_sym_DQUOTE] = ACTIONS(3118), - [sym__str_single_quotes] = ACTIONS(3120), - [sym__str_back_ticks] = ACTIONS(3120), + [aux_sym__val_number_decimal_token1] = ACTIONS(3107), + [aux_sym__val_number_decimal_token2] = ACTIONS(3109), + [aux_sym__val_number_decimal_token3] = ACTIONS(3111), + [aux_sym__val_number_decimal_token4] = ACTIONS(3113), + [aux_sym__val_number_token1] = ACTIONS(3115), + [aux_sym__val_number_token2] = ACTIONS(3115), + [aux_sym__val_number_token3] = ACTIONS(3115), + [aux_sym__val_number_token4] = ACTIONS(3117), + [aux_sym__val_number_token5] = ACTIONS(3117), + [aux_sym__val_number_token6] = ACTIONS(3117), + [anon_sym_0b] = ACTIONS(3119), + [anon_sym_0o] = ACTIONS(3121), + [anon_sym_0x] = ACTIONS(3121), + [sym_val_date] = ACTIONS(3123), + [anon_sym_DQUOTE] = ACTIONS(3125), + [sym__str_single_quotes] = ACTIONS(3127), + [sym__str_back_ticks] = ACTIONS(3127), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2581), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2583), [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2585), @@ -168297,9 +168297,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2589), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2589), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2589), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3122), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3129), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3124), + [sym_raw_string_begin] = ACTIONS(3131), }, [840] = { [sym_comment] = STATE(840), @@ -168523,37 +168523,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_parameter_repeat2] = STATE(6085), [aux_sym_list_body_repeat1] = STATE(973), [sym__newline] = ACTIONS(2537), - [anon_sym_LBRACK] = ACTIONS(3128), - [anon_sym_RBRACK] = ACTIONS(3130), - [anon_sym_LPAREN] = ACTIONS(3086), + [anon_sym_LBRACK] = ACTIONS(3135), + [anon_sym_RBRACK] = ACTIONS(3137), + [anon_sym_LPAREN] = ACTIONS(3093), [anon_sym_COMMA] = ACTIONS(2545), - [anon_sym_DOLLAR] = ACTIONS(3088), - [anon_sym_LBRACE] = ACTIONS(3090), - [anon_sym_DOT_DOT] = ACTIONS(3092), + [anon_sym_DOLLAR] = ACTIONS(3095), + [anon_sym_LBRACE] = ACTIONS(3097), + [anon_sym_DOT_DOT] = ACTIONS(3099), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3094), - [anon_sym_DOT_DOT_LT] = ACTIONS(3094), - [anon_sym_null] = ACTIONS(3096), - [anon_sym_true] = ACTIONS(3098), - [anon_sym_false] = ACTIONS(3098), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3101), + [anon_sym_DOT_DOT_LT] = ACTIONS(3101), + [anon_sym_null] = ACTIONS(3103), + [anon_sym_true] = ACTIONS(3105), + [anon_sym_false] = ACTIONS(3105), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), - [aux_sym__val_number_decimal_token1] = ACTIONS(3100), - [aux_sym__val_number_decimal_token2] = ACTIONS(3102), - [aux_sym__val_number_decimal_token3] = ACTIONS(3104), - [aux_sym__val_number_decimal_token4] = ACTIONS(3106), - [aux_sym__val_number_token1] = ACTIONS(3108), - [aux_sym__val_number_token2] = ACTIONS(3108), - [aux_sym__val_number_token3] = ACTIONS(3108), - [aux_sym__val_number_token4] = ACTIONS(3110), - [aux_sym__val_number_token5] = ACTIONS(3110), - [aux_sym__val_number_token6] = ACTIONS(3110), - [anon_sym_0b] = ACTIONS(3112), - [anon_sym_0o] = ACTIONS(3114), - [anon_sym_0x] = ACTIONS(3114), - [sym_val_date] = ACTIONS(3116), - [anon_sym_DQUOTE] = ACTIONS(3118), - [sym__str_single_quotes] = ACTIONS(3120), - [sym__str_back_ticks] = ACTIONS(3120), + [aux_sym__val_number_decimal_token1] = ACTIONS(3107), + [aux_sym__val_number_decimal_token2] = ACTIONS(3109), + [aux_sym__val_number_decimal_token3] = ACTIONS(3111), + [aux_sym__val_number_decimal_token4] = ACTIONS(3113), + [aux_sym__val_number_token1] = ACTIONS(3115), + [aux_sym__val_number_token2] = ACTIONS(3115), + [aux_sym__val_number_token3] = ACTIONS(3115), + [aux_sym__val_number_token4] = ACTIONS(3117), + [aux_sym__val_number_token5] = ACTIONS(3117), + [aux_sym__val_number_token6] = ACTIONS(3117), + [anon_sym_0b] = ACTIONS(3119), + [anon_sym_0o] = ACTIONS(3121), + [anon_sym_0x] = ACTIONS(3121), + [sym_val_date] = ACTIONS(3123), + [anon_sym_DQUOTE] = ACTIONS(3125), + [sym__str_single_quotes] = ACTIONS(3127), + [sym__str_back_ticks] = ACTIONS(3127), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2581), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2583), [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2585), @@ -168573,9 +168573,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2589), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2589), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2589), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3122), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3129), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3124), + [sym_raw_string_begin] = ACTIONS(3131), }, [843] = { [sym_expr_parenthesized] = STATE(5918), @@ -168615,37 +168615,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_parameter_repeat2] = STATE(6085), [aux_sym_list_body_repeat1] = STATE(973), [sym__newline] = ACTIONS(2537), - [anon_sym_LBRACK] = ACTIONS(3128), - [anon_sym_RBRACK] = ACTIONS(3132), - [anon_sym_LPAREN] = ACTIONS(3086), + [anon_sym_LBRACK] = ACTIONS(3135), + [anon_sym_RBRACK] = ACTIONS(3139), + [anon_sym_LPAREN] = ACTIONS(3093), [anon_sym_COMMA] = ACTIONS(2545), - [anon_sym_DOLLAR] = ACTIONS(3088), - [anon_sym_LBRACE] = ACTIONS(3090), - [anon_sym_DOT_DOT] = ACTIONS(3092), + [anon_sym_DOLLAR] = ACTIONS(3095), + [anon_sym_LBRACE] = ACTIONS(3097), + [anon_sym_DOT_DOT] = ACTIONS(3099), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3094), - [anon_sym_DOT_DOT_LT] = ACTIONS(3094), - [anon_sym_null] = ACTIONS(3096), - [anon_sym_true] = ACTIONS(3098), - [anon_sym_false] = ACTIONS(3098), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3101), + [anon_sym_DOT_DOT_LT] = ACTIONS(3101), + [anon_sym_null] = ACTIONS(3103), + [anon_sym_true] = ACTIONS(3105), + [anon_sym_false] = ACTIONS(3105), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), - [aux_sym__val_number_decimal_token1] = ACTIONS(3100), - [aux_sym__val_number_decimal_token2] = ACTIONS(3102), - [aux_sym__val_number_decimal_token3] = ACTIONS(3104), - [aux_sym__val_number_decimal_token4] = ACTIONS(3106), - [aux_sym__val_number_token1] = ACTIONS(3108), - [aux_sym__val_number_token2] = ACTIONS(3108), - [aux_sym__val_number_token3] = ACTIONS(3108), - [aux_sym__val_number_token4] = ACTIONS(3110), - [aux_sym__val_number_token5] = ACTIONS(3110), - [aux_sym__val_number_token6] = ACTIONS(3110), - [anon_sym_0b] = ACTIONS(3112), - [anon_sym_0o] = ACTIONS(3114), - [anon_sym_0x] = ACTIONS(3114), - [sym_val_date] = ACTIONS(3116), - [anon_sym_DQUOTE] = ACTIONS(3118), - [sym__str_single_quotes] = ACTIONS(3120), - [sym__str_back_ticks] = ACTIONS(3120), + [aux_sym__val_number_decimal_token1] = ACTIONS(3107), + [aux_sym__val_number_decimal_token2] = ACTIONS(3109), + [aux_sym__val_number_decimal_token3] = ACTIONS(3111), + [aux_sym__val_number_decimal_token4] = ACTIONS(3113), + [aux_sym__val_number_token1] = ACTIONS(3115), + [aux_sym__val_number_token2] = ACTIONS(3115), + [aux_sym__val_number_token3] = ACTIONS(3115), + [aux_sym__val_number_token4] = ACTIONS(3117), + [aux_sym__val_number_token5] = ACTIONS(3117), + [aux_sym__val_number_token6] = ACTIONS(3117), + [anon_sym_0b] = ACTIONS(3119), + [anon_sym_0o] = ACTIONS(3121), + [anon_sym_0x] = ACTIONS(3121), + [sym_val_date] = ACTIONS(3123), + [anon_sym_DQUOTE] = ACTIONS(3125), + [sym__str_single_quotes] = ACTIONS(3127), + [sym__str_back_ticks] = ACTIONS(3127), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2581), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2583), [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2585), @@ -168665,9 +168665,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2589), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2589), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2589), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3122), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3129), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3124), + [sym_raw_string_begin] = ACTIONS(3131), }, [844] = { [sym_expr_parenthesized] = STATE(5918), @@ -168707,37 +168707,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_parameter_repeat2] = STATE(6085), [aux_sym_list_body_repeat1] = STATE(973), [sym__newline] = ACTIONS(2537), - [anon_sym_LBRACK] = ACTIONS(3128), - [anon_sym_RBRACK] = ACTIONS(3134), - [anon_sym_LPAREN] = ACTIONS(3086), + [anon_sym_LBRACK] = ACTIONS(3135), + [anon_sym_RBRACK] = ACTIONS(3141), + [anon_sym_LPAREN] = ACTIONS(3093), [anon_sym_COMMA] = ACTIONS(2545), - [anon_sym_DOLLAR] = ACTIONS(3088), - [anon_sym_LBRACE] = ACTIONS(3090), - [anon_sym_DOT_DOT] = ACTIONS(3092), + [anon_sym_DOLLAR] = ACTIONS(3095), + [anon_sym_LBRACE] = ACTIONS(3097), + [anon_sym_DOT_DOT] = ACTIONS(3099), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3094), - [anon_sym_DOT_DOT_LT] = ACTIONS(3094), - [anon_sym_null] = ACTIONS(3096), - [anon_sym_true] = ACTIONS(3098), - [anon_sym_false] = ACTIONS(3098), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3101), + [anon_sym_DOT_DOT_LT] = ACTIONS(3101), + [anon_sym_null] = ACTIONS(3103), + [anon_sym_true] = ACTIONS(3105), + [anon_sym_false] = ACTIONS(3105), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), - [aux_sym__val_number_decimal_token1] = ACTIONS(3100), - [aux_sym__val_number_decimal_token2] = ACTIONS(3102), - [aux_sym__val_number_decimal_token3] = ACTIONS(3104), - [aux_sym__val_number_decimal_token4] = ACTIONS(3106), - [aux_sym__val_number_token1] = ACTIONS(3108), - [aux_sym__val_number_token2] = ACTIONS(3108), - [aux_sym__val_number_token3] = ACTIONS(3108), - [aux_sym__val_number_token4] = ACTIONS(3110), - [aux_sym__val_number_token5] = ACTIONS(3110), - [aux_sym__val_number_token6] = ACTIONS(3110), - [anon_sym_0b] = ACTIONS(3112), - [anon_sym_0o] = ACTIONS(3114), - [anon_sym_0x] = ACTIONS(3114), - [sym_val_date] = ACTIONS(3116), - [anon_sym_DQUOTE] = ACTIONS(3118), - [sym__str_single_quotes] = ACTIONS(3120), - [sym__str_back_ticks] = ACTIONS(3120), + [aux_sym__val_number_decimal_token1] = ACTIONS(3107), + [aux_sym__val_number_decimal_token2] = ACTIONS(3109), + [aux_sym__val_number_decimal_token3] = ACTIONS(3111), + [aux_sym__val_number_decimal_token4] = ACTIONS(3113), + [aux_sym__val_number_token1] = ACTIONS(3115), + [aux_sym__val_number_token2] = ACTIONS(3115), + [aux_sym__val_number_token3] = ACTIONS(3115), + [aux_sym__val_number_token4] = ACTIONS(3117), + [aux_sym__val_number_token5] = ACTIONS(3117), + [aux_sym__val_number_token6] = ACTIONS(3117), + [anon_sym_0b] = ACTIONS(3119), + [anon_sym_0o] = ACTIONS(3121), + [anon_sym_0x] = ACTIONS(3121), + [sym_val_date] = ACTIONS(3123), + [anon_sym_DQUOTE] = ACTIONS(3125), + [sym__str_single_quotes] = ACTIONS(3127), + [sym__str_back_ticks] = ACTIONS(3127), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2581), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2583), [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2585), @@ -168757,9 +168757,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2589), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2589), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2589), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3122), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3129), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3124), + [sym_raw_string_begin] = ACTIONS(3131), }, [845] = { [sym_expr_parenthesized] = STATE(5918), @@ -168799,37 +168799,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_parameter_repeat2] = STATE(6085), [aux_sym_list_body_repeat1] = STATE(973), [sym__newline] = ACTIONS(2537), - [anon_sym_LBRACK] = ACTIONS(3128), - [anon_sym_RBRACK] = ACTIONS(3136), - [anon_sym_LPAREN] = ACTIONS(3086), + [anon_sym_LBRACK] = ACTIONS(3135), + [anon_sym_RBRACK] = ACTIONS(3143), + [anon_sym_LPAREN] = ACTIONS(3093), [anon_sym_COMMA] = ACTIONS(2545), - [anon_sym_DOLLAR] = ACTIONS(3088), - [anon_sym_LBRACE] = ACTIONS(3090), - [anon_sym_DOT_DOT] = ACTIONS(3092), + [anon_sym_DOLLAR] = ACTIONS(3095), + [anon_sym_LBRACE] = ACTIONS(3097), + [anon_sym_DOT_DOT] = ACTIONS(3099), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3094), - [anon_sym_DOT_DOT_LT] = ACTIONS(3094), - [anon_sym_null] = ACTIONS(3096), - [anon_sym_true] = ACTIONS(3098), - [anon_sym_false] = ACTIONS(3098), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3101), + [anon_sym_DOT_DOT_LT] = ACTIONS(3101), + [anon_sym_null] = ACTIONS(3103), + [anon_sym_true] = ACTIONS(3105), + [anon_sym_false] = ACTIONS(3105), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), - [aux_sym__val_number_decimal_token1] = ACTIONS(3100), - [aux_sym__val_number_decimal_token2] = ACTIONS(3102), - [aux_sym__val_number_decimal_token3] = ACTIONS(3104), - [aux_sym__val_number_decimal_token4] = ACTIONS(3106), - [aux_sym__val_number_token1] = ACTIONS(3108), - [aux_sym__val_number_token2] = ACTIONS(3108), - [aux_sym__val_number_token3] = ACTIONS(3108), - [aux_sym__val_number_token4] = ACTIONS(3110), - [aux_sym__val_number_token5] = ACTIONS(3110), - [aux_sym__val_number_token6] = ACTIONS(3110), - [anon_sym_0b] = ACTIONS(3112), - [anon_sym_0o] = ACTIONS(3114), - [anon_sym_0x] = ACTIONS(3114), - [sym_val_date] = ACTIONS(3116), - [anon_sym_DQUOTE] = ACTIONS(3118), - [sym__str_single_quotes] = ACTIONS(3120), - [sym__str_back_ticks] = ACTIONS(3120), + [aux_sym__val_number_decimal_token1] = ACTIONS(3107), + [aux_sym__val_number_decimal_token2] = ACTIONS(3109), + [aux_sym__val_number_decimal_token3] = ACTIONS(3111), + [aux_sym__val_number_decimal_token4] = ACTIONS(3113), + [aux_sym__val_number_token1] = ACTIONS(3115), + [aux_sym__val_number_token2] = ACTIONS(3115), + [aux_sym__val_number_token3] = ACTIONS(3115), + [aux_sym__val_number_token4] = ACTIONS(3117), + [aux_sym__val_number_token5] = ACTIONS(3117), + [aux_sym__val_number_token6] = ACTIONS(3117), + [anon_sym_0b] = ACTIONS(3119), + [anon_sym_0o] = ACTIONS(3121), + [anon_sym_0x] = ACTIONS(3121), + [sym_val_date] = ACTIONS(3123), + [anon_sym_DQUOTE] = ACTIONS(3125), + [sym__str_single_quotes] = ACTIONS(3127), + [sym__str_back_ticks] = ACTIONS(3127), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2581), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2583), [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2585), @@ -168849,9 +168849,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2589), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2589), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2589), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3122), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3129), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3124), + [sym_raw_string_begin] = ACTIONS(3131), }, [846] = { [sym_expr_parenthesized] = STATE(5918), @@ -168891,37 +168891,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_parameter_repeat2] = STATE(6085), [aux_sym_list_body_repeat1] = STATE(973), [sym__newline] = ACTIONS(2537), - [anon_sym_LBRACK] = ACTIONS(3128), - [anon_sym_RBRACK] = ACTIONS(3138), - [anon_sym_LPAREN] = ACTIONS(3086), + [anon_sym_LBRACK] = ACTIONS(3135), + [anon_sym_RBRACK] = ACTIONS(3145), + [anon_sym_LPAREN] = ACTIONS(3093), [anon_sym_COMMA] = ACTIONS(2545), - [anon_sym_DOLLAR] = ACTIONS(3088), - [anon_sym_LBRACE] = ACTIONS(3090), - [anon_sym_DOT_DOT] = ACTIONS(3092), + [anon_sym_DOLLAR] = ACTIONS(3095), + [anon_sym_LBRACE] = ACTIONS(3097), + [anon_sym_DOT_DOT] = ACTIONS(3099), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3094), - [anon_sym_DOT_DOT_LT] = ACTIONS(3094), - [anon_sym_null] = ACTIONS(3096), - [anon_sym_true] = ACTIONS(3098), - [anon_sym_false] = ACTIONS(3098), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3101), + [anon_sym_DOT_DOT_LT] = ACTIONS(3101), + [anon_sym_null] = ACTIONS(3103), + [anon_sym_true] = ACTIONS(3105), + [anon_sym_false] = ACTIONS(3105), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), - [aux_sym__val_number_decimal_token1] = ACTIONS(3100), - [aux_sym__val_number_decimal_token2] = ACTIONS(3102), - [aux_sym__val_number_decimal_token3] = ACTIONS(3104), - [aux_sym__val_number_decimal_token4] = ACTIONS(3106), - [aux_sym__val_number_token1] = ACTIONS(3108), - [aux_sym__val_number_token2] = ACTIONS(3108), - [aux_sym__val_number_token3] = ACTIONS(3108), - [aux_sym__val_number_token4] = ACTIONS(3110), - [aux_sym__val_number_token5] = ACTIONS(3110), - [aux_sym__val_number_token6] = ACTIONS(3110), - [anon_sym_0b] = ACTIONS(3112), - [anon_sym_0o] = ACTIONS(3114), - [anon_sym_0x] = ACTIONS(3114), - [sym_val_date] = ACTIONS(3116), - [anon_sym_DQUOTE] = ACTIONS(3118), - [sym__str_single_quotes] = ACTIONS(3120), - [sym__str_back_ticks] = ACTIONS(3120), + [aux_sym__val_number_decimal_token1] = ACTIONS(3107), + [aux_sym__val_number_decimal_token2] = ACTIONS(3109), + [aux_sym__val_number_decimal_token3] = ACTIONS(3111), + [aux_sym__val_number_decimal_token4] = ACTIONS(3113), + [aux_sym__val_number_token1] = ACTIONS(3115), + [aux_sym__val_number_token2] = ACTIONS(3115), + [aux_sym__val_number_token3] = ACTIONS(3115), + [aux_sym__val_number_token4] = ACTIONS(3117), + [aux_sym__val_number_token5] = ACTIONS(3117), + [aux_sym__val_number_token6] = ACTIONS(3117), + [anon_sym_0b] = ACTIONS(3119), + [anon_sym_0o] = ACTIONS(3121), + [anon_sym_0x] = ACTIONS(3121), + [sym_val_date] = ACTIONS(3123), + [anon_sym_DQUOTE] = ACTIONS(3125), + [sym__str_single_quotes] = ACTIONS(3127), + [sym__str_back_ticks] = ACTIONS(3127), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2581), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2583), [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2585), @@ -168941,9 +168941,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2589), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2589), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2589), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3122), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3129), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3124), + [sym_raw_string_begin] = ACTIONS(3131), }, [847] = { [sym_expr_parenthesized] = STATE(5918), @@ -168983,37 +168983,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_parameter_repeat2] = STATE(6085), [aux_sym_list_body_repeat1] = STATE(973), [sym__newline] = ACTIONS(2537), - [anon_sym_LBRACK] = ACTIONS(3128), - [anon_sym_RBRACK] = ACTIONS(3140), - [anon_sym_LPAREN] = ACTIONS(3086), + [anon_sym_LBRACK] = ACTIONS(3135), + [anon_sym_RBRACK] = ACTIONS(3147), + [anon_sym_LPAREN] = ACTIONS(3093), [anon_sym_COMMA] = ACTIONS(2545), - [anon_sym_DOLLAR] = ACTIONS(3088), - [anon_sym_LBRACE] = ACTIONS(3090), - [anon_sym_DOT_DOT] = ACTIONS(3092), + [anon_sym_DOLLAR] = ACTIONS(3095), + [anon_sym_LBRACE] = ACTIONS(3097), + [anon_sym_DOT_DOT] = ACTIONS(3099), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3094), - [anon_sym_DOT_DOT_LT] = ACTIONS(3094), - [anon_sym_null] = ACTIONS(3096), - [anon_sym_true] = ACTIONS(3098), - [anon_sym_false] = ACTIONS(3098), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3101), + [anon_sym_DOT_DOT_LT] = ACTIONS(3101), + [anon_sym_null] = ACTIONS(3103), + [anon_sym_true] = ACTIONS(3105), + [anon_sym_false] = ACTIONS(3105), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), - [aux_sym__val_number_decimal_token1] = ACTIONS(3100), - [aux_sym__val_number_decimal_token2] = ACTIONS(3102), - [aux_sym__val_number_decimal_token3] = ACTIONS(3104), - [aux_sym__val_number_decimal_token4] = ACTIONS(3106), - [aux_sym__val_number_token1] = ACTIONS(3108), - [aux_sym__val_number_token2] = ACTIONS(3108), - [aux_sym__val_number_token3] = ACTIONS(3108), - [aux_sym__val_number_token4] = ACTIONS(3110), - [aux_sym__val_number_token5] = ACTIONS(3110), - [aux_sym__val_number_token6] = ACTIONS(3110), - [anon_sym_0b] = ACTIONS(3112), - [anon_sym_0o] = ACTIONS(3114), - [anon_sym_0x] = ACTIONS(3114), - [sym_val_date] = ACTIONS(3116), - [anon_sym_DQUOTE] = ACTIONS(3118), - [sym__str_single_quotes] = ACTIONS(3120), - [sym__str_back_ticks] = ACTIONS(3120), + [aux_sym__val_number_decimal_token1] = ACTIONS(3107), + [aux_sym__val_number_decimal_token2] = ACTIONS(3109), + [aux_sym__val_number_decimal_token3] = ACTIONS(3111), + [aux_sym__val_number_decimal_token4] = ACTIONS(3113), + [aux_sym__val_number_token1] = ACTIONS(3115), + [aux_sym__val_number_token2] = ACTIONS(3115), + [aux_sym__val_number_token3] = ACTIONS(3115), + [aux_sym__val_number_token4] = ACTIONS(3117), + [aux_sym__val_number_token5] = ACTIONS(3117), + [aux_sym__val_number_token6] = ACTIONS(3117), + [anon_sym_0b] = ACTIONS(3119), + [anon_sym_0o] = ACTIONS(3121), + [anon_sym_0x] = ACTIONS(3121), + [sym_val_date] = ACTIONS(3123), + [anon_sym_DQUOTE] = ACTIONS(3125), + [sym__str_single_quotes] = ACTIONS(3127), + [sym__str_back_ticks] = ACTIONS(3127), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2581), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2583), [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2585), @@ -169033,9 +169033,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2589), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2589), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2589), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3122), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3129), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3124), + [sym_raw_string_begin] = ACTIONS(3131), }, [848] = { [sym_expr_parenthesized] = STATE(5918), @@ -169075,37 +169075,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_parameter_repeat2] = STATE(6085), [aux_sym_list_body_repeat1] = STATE(973), [sym__newline] = ACTIONS(2537), - [anon_sym_LBRACK] = ACTIONS(3128), - [anon_sym_RBRACK] = ACTIONS(3142), - [anon_sym_LPAREN] = ACTIONS(3086), + [anon_sym_LBRACK] = ACTIONS(3135), + [anon_sym_RBRACK] = ACTIONS(3149), + [anon_sym_LPAREN] = ACTIONS(3093), [anon_sym_COMMA] = ACTIONS(2545), - [anon_sym_DOLLAR] = ACTIONS(3088), - [anon_sym_LBRACE] = ACTIONS(3090), - [anon_sym_DOT_DOT] = ACTIONS(3092), + [anon_sym_DOLLAR] = ACTIONS(3095), + [anon_sym_LBRACE] = ACTIONS(3097), + [anon_sym_DOT_DOT] = ACTIONS(3099), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3094), - [anon_sym_DOT_DOT_LT] = ACTIONS(3094), - [anon_sym_null] = ACTIONS(3096), - [anon_sym_true] = ACTIONS(3098), - [anon_sym_false] = ACTIONS(3098), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3101), + [anon_sym_DOT_DOT_LT] = ACTIONS(3101), + [anon_sym_null] = ACTIONS(3103), + [anon_sym_true] = ACTIONS(3105), + [anon_sym_false] = ACTIONS(3105), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), - [aux_sym__val_number_decimal_token1] = ACTIONS(3100), - [aux_sym__val_number_decimal_token2] = ACTIONS(3102), - [aux_sym__val_number_decimal_token3] = ACTIONS(3104), - [aux_sym__val_number_decimal_token4] = ACTIONS(3106), - [aux_sym__val_number_token1] = ACTIONS(3108), - [aux_sym__val_number_token2] = ACTIONS(3108), - [aux_sym__val_number_token3] = ACTIONS(3108), - [aux_sym__val_number_token4] = ACTIONS(3110), - [aux_sym__val_number_token5] = ACTIONS(3110), - [aux_sym__val_number_token6] = ACTIONS(3110), - [anon_sym_0b] = ACTIONS(3112), - [anon_sym_0o] = ACTIONS(3114), - [anon_sym_0x] = ACTIONS(3114), - [sym_val_date] = ACTIONS(3116), - [anon_sym_DQUOTE] = ACTIONS(3118), - [sym__str_single_quotes] = ACTIONS(3120), - [sym__str_back_ticks] = ACTIONS(3120), + [aux_sym__val_number_decimal_token1] = ACTIONS(3107), + [aux_sym__val_number_decimal_token2] = ACTIONS(3109), + [aux_sym__val_number_decimal_token3] = ACTIONS(3111), + [aux_sym__val_number_decimal_token4] = ACTIONS(3113), + [aux_sym__val_number_token1] = ACTIONS(3115), + [aux_sym__val_number_token2] = ACTIONS(3115), + [aux_sym__val_number_token3] = ACTIONS(3115), + [aux_sym__val_number_token4] = ACTIONS(3117), + [aux_sym__val_number_token5] = ACTIONS(3117), + [aux_sym__val_number_token6] = ACTIONS(3117), + [anon_sym_0b] = ACTIONS(3119), + [anon_sym_0o] = ACTIONS(3121), + [anon_sym_0x] = ACTIONS(3121), + [sym_val_date] = ACTIONS(3123), + [anon_sym_DQUOTE] = ACTIONS(3125), + [sym__str_single_quotes] = ACTIONS(3127), + [sym__str_back_ticks] = ACTIONS(3127), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2581), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2583), [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2585), @@ -169125,9 +169125,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2589), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2589), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2589), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3122), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3129), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3124), + [sym_raw_string_begin] = ACTIONS(3131), }, [849] = { [sym_expr_parenthesized] = STATE(5918), @@ -169167,37 +169167,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_parameter_repeat2] = STATE(6085), [aux_sym_list_body_repeat1] = STATE(973), [sym__newline] = ACTIONS(2537), - [anon_sym_LBRACK] = ACTIONS(3128), - [anon_sym_RBRACK] = ACTIONS(3144), - [anon_sym_LPAREN] = ACTIONS(3086), + [anon_sym_LBRACK] = ACTIONS(3135), + [anon_sym_RBRACK] = ACTIONS(3151), + [anon_sym_LPAREN] = ACTIONS(3093), [anon_sym_COMMA] = ACTIONS(2545), - [anon_sym_DOLLAR] = ACTIONS(3088), - [anon_sym_LBRACE] = ACTIONS(3090), - [anon_sym_DOT_DOT] = ACTIONS(3092), + [anon_sym_DOLLAR] = ACTIONS(3095), + [anon_sym_LBRACE] = ACTIONS(3097), + [anon_sym_DOT_DOT] = ACTIONS(3099), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3094), - [anon_sym_DOT_DOT_LT] = ACTIONS(3094), - [anon_sym_null] = ACTIONS(3096), - [anon_sym_true] = ACTIONS(3098), - [anon_sym_false] = ACTIONS(3098), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3101), + [anon_sym_DOT_DOT_LT] = ACTIONS(3101), + [anon_sym_null] = ACTIONS(3103), + [anon_sym_true] = ACTIONS(3105), + [anon_sym_false] = ACTIONS(3105), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), - [aux_sym__val_number_decimal_token1] = ACTIONS(3100), - [aux_sym__val_number_decimal_token2] = ACTIONS(3102), - [aux_sym__val_number_decimal_token3] = ACTIONS(3104), - [aux_sym__val_number_decimal_token4] = ACTIONS(3106), - [aux_sym__val_number_token1] = ACTIONS(3108), - [aux_sym__val_number_token2] = ACTIONS(3108), - [aux_sym__val_number_token3] = ACTIONS(3108), - [aux_sym__val_number_token4] = ACTIONS(3110), - [aux_sym__val_number_token5] = ACTIONS(3110), - [aux_sym__val_number_token6] = ACTIONS(3110), - [anon_sym_0b] = ACTIONS(3112), - [anon_sym_0o] = ACTIONS(3114), - [anon_sym_0x] = ACTIONS(3114), - [sym_val_date] = ACTIONS(3116), - [anon_sym_DQUOTE] = ACTIONS(3118), - [sym__str_single_quotes] = ACTIONS(3120), - [sym__str_back_ticks] = ACTIONS(3120), + [aux_sym__val_number_decimal_token1] = ACTIONS(3107), + [aux_sym__val_number_decimal_token2] = ACTIONS(3109), + [aux_sym__val_number_decimal_token3] = ACTIONS(3111), + [aux_sym__val_number_decimal_token4] = ACTIONS(3113), + [aux_sym__val_number_token1] = ACTIONS(3115), + [aux_sym__val_number_token2] = ACTIONS(3115), + [aux_sym__val_number_token3] = ACTIONS(3115), + [aux_sym__val_number_token4] = ACTIONS(3117), + [aux_sym__val_number_token5] = ACTIONS(3117), + [aux_sym__val_number_token6] = ACTIONS(3117), + [anon_sym_0b] = ACTIONS(3119), + [anon_sym_0o] = ACTIONS(3121), + [anon_sym_0x] = ACTIONS(3121), + [sym_val_date] = ACTIONS(3123), + [anon_sym_DQUOTE] = ACTIONS(3125), + [sym__str_single_quotes] = ACTIONS(3127), + [sym__str_back_ticks] = ACTIONS(3127), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2581), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2583), [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2585), @@ -169217,9 +169217,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2589), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2589), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2589), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3122), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3129), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3124), + [sym_raw_string_begin] = ACTIONS(3131), }, [850] = { [sym_expr_parenthesized] = STATE(5918), @@ -169259,37 +169259,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_parameter_repeat2] = STATE(6085), [aux_sym_list_body_repeat1] = STATE(973), [sym__newline] = ACTIONS(2537), - [anon_sym_LBRACK] = ACTIONS(3128), - [anon_sym_RBRACK] = ACTIONS(3146), - [anon_sym_LPAREN] = ACTIONS(3086), + [anon_sym_LBRACK] = ACTIONS(3135), + [anon_sym_RBRACK] = ACTIONS(3153), + [anon_sym_LPAREN] = ACTIONS(3093), [anon_sym_COMMA] = ACTIONS(2545), - [anon_sym_DOLLAR] = ACTIONS(3088), - [anon_sym_LBRACE] = ACTIONS(3090), - [anon_sym_DOT_DOT] = ACTIONS(3092), + [anon_sym_DOLLAR] = ACTIONS(3095), + [anon_sym_LBRACE] = ACTIONS(3097), + [anon_sym_DOT_DOT] = ACTIONS(3099), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3094), - [anon_sym_DOT_DOT_LT] = ACTIONS(3094), - [anon_sym_null] = ACTIONS(3096), - [anon_sym_true] = ACTIONS(3098), - [anon_sym_false] = ACTIONS(3098), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3101), + [anon_sym_DOT_DOT_LT] = ACTIONS(3101), + [anon_sym_null] = ACTIONS(3103), + [anon_sym_true] = ACTIONS(3105), + [anon_sym_false] = ACTIONS(3105), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), - [aux_sym__val_number_decimal_token1] = ACTIONS(3100), - [aux_sym__val_number_decimal_token2] = ACTIONS(3102), - [aux_sym__val_number_decimal_token3] = ACTIONS(3104), - [aux_sym__val_number_decimal_token4] = ACTIONS(3106), - [aux_sym__val_number_token1] = ACTIONS(3108), - [aux_sym__val_number_token2] = ACTIONS(3108), - [aux_sym__val_number_token3] = ACTIONS(3108), - [aux_sym__val_number_token4] = ACTIONS(3110), - [aux_sym__val_number_token5] = ACTIONS(3110), - [aux_sym__val_number_token6] = ACTIONS(3110), - [anon_sym_0b] = ACTIONS(3112), - [anon_sym_0o] = ACTIONS(3114), - [anon_sym_0x] = ACTIONS(3114), - [sym_val_date] = ACTIONS(3116), - [anon_sym_DQUOTE] = ACTIONS(3118), - [sym__str_single_quotes] = ACTIONS(3120), - [sym__str_back_ticks] = ACTIONS(3120), + [aux_sym__val_number_decimal_token1] = ACTIONS(3107), + [aux_sym__val_number_decimal_token2] = ACTIONS(3109), + [aux_sym__val_number_decimal_token3] = ACTIONS(3111), + [aux_sym__val_number_decimal_token4] = ACTIONS(3113), + [aux_sym__val_number_token1] = ACTIONS(3115), + [aux_sym__val_number_token2] = ACTIONS(3115), + [aux_sym__val_number_token3] = ACTIONS(3115), + [aux_sym__val_number_token4] = ACTIONS(3117), + [aux_sym__val_number_token5] = ACTIONS(3117), + [aux_sym__val_number_token6] = ACTIONS(3117), + [anon_sym_0b] = ACTIONS(3119), + [anon_sym_0o] = ACTIONS(3121), + [anon_sym_0x] = ACTIONS(3121), + [sym_val_date] = ACTIONS(3123), + [anon_sym_DQUOTE] = ACTIONS(3125), + [sym__str_single_quotes] = ACTIONS(3127), + [sym__str_back_ticks] = ACTIONS(3127), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2581), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2583), [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2585), @@ -169309,9 +169309,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2589), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2589), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2589), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3122), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3129), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3124), + [sym_raw_string_begin] = ACTIONS(3131), }, [851] = { [sym_expr_parenthesized] = STATE(5918), @@ -169351,37 +169351,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_parameter_repeat2] = STATE(6085), [aux_sym_list_body_repeat1] = STATE(973), [sym__newline] = ACTIONS(2537), - [anon_sym_LBRACK] = ACTIONS(3128), - [anon_sym_RBRACK] = ACTIONS(3148), - [anon_sym_LPAREN] = ACTIONS(3086), + [anon_sym_LBRACK] = ACTIONS(3135), + [anon_sym_RBRACK] = ACTIONS(3155), + [anon_sym_LPAREN] = ACTIONS(3093), [anon_sym_COMMA] = ACTIONS(2545), - [anon_sym_DOLLAR] = ACTIONS(3088), - [anon_sym_LBRACE] = ACTIONS(3090), - [anon_sym_DOT_DOT] = ACTIONS(3092), + [anon_sym_DOLLAR] = ACTIONS(3095), + [anon_sym_LBRACE] = ACTIONS(3097), + [anon_sym_DOT_DOT] = ACTIONS(3099), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3094), - [anon_sym_DOT_DOT_LT] = ACTIONS(3094), - [anon_sym_null] = ACTIONS(3096), - [anon_sym_true] = ACTIONS(3098), - [anon_sym_false] = ACTIONS(3098), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3101), + [anon_sym_DOT_DOT_LT] = ACTIONS(3101), + [anon_sym_null] = ACTIONS(3103), + [anon_sym_true] = ACTIONS(3105), + [anon_sym_false] = ACTIONS(3105), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), - [aux_sym__val_number_decimal_token1] = ACTIONS(3100), - [aux_sym__val_number_decimal_token2] = ACTIONS(3102), - [aux_sym__val_number_decimal_token3] = ACTIONS(3104), - [aux_sym__val_number_decimal_token4] = ACTIONS(3106), - [aux_sym__val_number_token1] = ACTIONS(3108), - [aux_sym__val_number_token2] = ACTIONS(3108), - [aux_sym__val_number_token3] = ACTIONS(3108), - [aux_sym__val_number_token4] = ACTIONS(3110), - [aux_sym__val_number_token5] = ACTIONS(3110), - [aux_sym__val_number_token6] = ACTIONS(3110), - [anon_sym_0b] = ACTIONS(3112), - [anon_sym_0o] = ACTIONS(3114), - [anon_sym_0x] = ACTIONS(3114), - [sym_val_date] = ACTIONS(3116), - [anon_sym_DQUOTE] = ACTIONS(3118), - [sym__str_single_quotes] = ACTIONS(3120), - [sym__str_back_ticks] = ACTIONS(3120), + [aux_sym__val_number_decimal_token1] = ACTIONS(3107), + [aux_sym__val_number_decimal_token2] = ACTIONS(3109), + [aux_sym__val_number_decimal_token3] = ACTIONS(3111), + [aux_sym__val_number_decimal_token4] = ACTIONS(3113), + [aux_sym__val_number_token1] = ACTIONS(3115), + [aux_sym__val_number_token2] = ACTIONS(3115), + [aux_sym__val_number_token3] = ACTIONS(3115), + [aux_sym__val_number_token4] = ACTIONS(3117), + [aux_sym__val_number_token5] = ACTIONS(3117), + [aux_sym__val_number_token6] = ACTIONS(3117), + [anon_sym_0b] = ACTIONS(3119), + [anon_sym_0o] = ACTIONS(3121), + [anon_sym_0x] = ACTIONS(3121), + [sym_val_date] = ACTIONS(3123), + [anon_sym_DQUOTE] = ACTIONS(3125), + [sym__str_single_quotes] = ACTIONS(3127), + [sym__str_back_ticks] = ACTIONS(3127), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2581), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2583), [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2585), @@ -169401,9 +169401,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2589), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2589), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2589), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3122), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3129), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3124), + [sym_raw_string_begin] = ACTIONS(3131), }, [852] = { [sym_expr_parenthesized] = STATE(5918), @@ -169443,37 +169443,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_parameter_repeat2] = STATE(6085), [aux_sym_list_body_repeat1] = STATE(973), [sym__newline] = ACTIONS(2537), - [anon_sym_LBRACK] = ACTIONS(3128), - [anon_sym_RBRACK] = ACTIONS(3150), - [anon_sym_LPAREN] = ACTIONS(3086), + [anon_sym_LBRACK] = ACTIONS(3135), + [anon_sym_RBRACK] = ACTIONS(3157), + [anon_sym_LPAREN] = ACTIONS(3093), [anon_sym_COMMA] = ACTIONS(2545), - [anon_sym_DOLLAR] = ACTIONS(3088), - [anon_sym_LBRACE] = ACTIONS(3090), - [anon_sym_DOT_DOT] = ACTIONS(3092), + [anon_sym_DOLLAR] = ACTIONS(3095), + [anon_sym_LBRACE] = ACTIONS(3097), + [anon_sym_DOT_DOT] = ACTIONS(3099), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3094), - [anon_sym_DOT_DOT_LT] = ACTIONS(3094), - [anon_sym_null] = ACTIONS(3096), - [anon_sym_true] = ACTIONS(3098), - [anon_sym_false] = ACTIONS(3098), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3101), + [anon_sym_DOT_DOT_LT] = ACTIONS(3101), + [anon_sym_null] = ACTIONS(3103), + [anon_sym_true] = ACTIONS(3105), + [anon_sym_false] = ACTIONS(3105), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), - [aux_sym__val_number_decimal_token1] = ACTIONS(3100), - [aux_sym__val_number_decimal_token2] = ACTIONS(3102), - [aux_sym__val_number_decimal_token3] = ACTIONS(3104), - [aux_sym__val_number_decimal_token4] = ACTIONS(3106), - [aux_sym__val_number_token1] = ACTIONS(3108), - [aux_sym__val_number_token2] = ACTIONS(3108), - [aux_sym__val_number_token3] = ACTIONS(3108), - [aux_sym__val_number_token4] = ACTIONS(3110), - [aux_sym__val_number_token5] = ACTIONS(3110), - [aux_sym__val_number_token6] = ACTIONS(3110), - [anon_sym_0b] = ACTIONS(3112), - [anon_sym_0o] = ACTIONS(3114), - [anon_sym_0x] = ACTIONS(3114), - [sym_val_date] = ACTIONS(3116), - [anon_sym_DQUOTE] = ACTIONS(3118), - [sym__str_single_quotes] = ACTIONS(3120), - [sym__str_back_ticks] = ACTIONS(3120), + [aux_sym__val_number_decimal_token1] = ACTIONS(3107), + [aux_sym__val_number_decimal_token2] = ACTIONS(3109), + [aux_sym__val_number_decimal_token3] = ACTIONS(3111), + [aux_sym__val_number_decimal_token4] = ACTIONS(3113), + [aux_sym__val_number_token1] = ACTIONS(3115), + [aux_sym__val_number_token2] = ACTIONS(3115), + [aux_sym__val_number_token3] = ACTIONS(3115), + [aux_sym__val_number_token4] = ACTIONS(3117), + [aux_sym__val_number_token5] = ACTIONS(3117), + [aux_sym__val_number_token6] = ACTIONS(3117), + [anon_sym_0b] = ACTIONS(3119), + [anon_sym_0o] = ACTIONS(3121), + [anon_sym_0x] = ACTIONS(3121), + [sym_val_date] = ACTIONS(3123), + [anon_sym_DQUOTE] = ACTIONS(3125), + [sym__str_single_quotes] = ACTIONS(3127), + [sym__str_back_ticks] = ACTIONS(3127), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2581), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2583), [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2585), @@ -169493,9 +169493,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2589), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2589), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2589), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3122), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3129), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3124), + [sym_raw_string_begin] = ACTIONS(3131), }, [853] = { [sym_expr_parenthesized] = STATE(5918), @@ -169535,37 +169535,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_parameter_repeat2] = STATE(6085), [aux_sym_list_body_repeat1] = STATE(973), [sym__newline] = ACTIONS(2537), - [anon_sym_LBRACK] = ACTIONS(3128), - [anon_sym_RBRACK] = ACTIONS(3152), - [anon_sym_LPAREN] = ACTIONS(3086), + [anon_sym_LBRACK] = ACTIONS(3135), + [anon_sym_RBRACK] = ACTIONS(3159), + [anon_sym_LPAREN] = ACTIONS(3093), [anon_sym_COMMA] = ACTIONS(2545), - [anon_sym_DOLLAR] = ACTIONS(3088), - [anon_sym_LBRACE] = ACTIONS(3090), - [anon_sym_DOT_DOT] = ACTIONS(3092), + [anon_sym_DOLLAR] = ACTIONS(3095), + [anon_sym_LBRACE] = ACTIONS(3097), + [anon_sym_DOT_DOT] = ACTIONS(3099), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3094), - [anon_sym_DOT_DOT_LT] = ACTIONS(3094), - [anon_sym_null] = ACTIONS(3096), - [anon_sym_true] = ACTIONS(3098), - [anon_sym_false] = ACTIONS(3098), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3101), + [anon_sym_DOT_DOT_LT] = ACTIONS(3101), + [anon_sym_null] = ACTIONS(3103), + [anon_sym_true] = ACTIONS(3105), + [anon_sym_false] = ACTIONS(3105), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), - [aux_sym__val_number_decimal_token1] = ACTIONS(3100), - [aux_sym__val_number_decimal_token2] = ACTIONS(3102), - [aux_sym__val_number_decimal_token3] = ACTIONS(3104), - [aux_sym__val_number_decimal_token4] = ACTIONS(3106), - [aux_sym__val_number_token1] = ACTIONS(3108), - [aux_sym__val_number_token2] = ACTIONS(3108), - [aux_sym__val_number_token3] = ACTIONS(3108), - [aux_sym__val_number_token4] = ACTIONS(3110), - [aux_sym__val_number_token5] = ACTIONS(3110), - [aux_sym__val_number_token6] = ACTIONS(3110), - [anon_sym_0b] = ACTIONS(3112), - [anon_sym_0o] = ACTIONS(3114), - [anon_sym_0x] = ACTIONS(3114), - [sym_val_date] = ACTIONS(3116), - [anon_sym_DQUOTE] = ACTIONS(3118), - [sym__str_single_quotes] = ACTIONS(3120), - [sym__str_back_ticks] = ACTIONS(3120), + [aux_sym__val_number_decimal_token1] = ACTIONS(3107), + [aux_sym__val_number_decimal_token2] = ACTIONS(3109), + [aux_sym__val_number_decimal_token3] = ACTIONS(3111), + [aux_sym__val_number_decimal_token4] = ACTIONS(3113), + [aux_sym__val_number_token1] = ACTIONS(3115), + [aux_sym__val_number_token2] = ACTIONS(3115), + [aux_sym__val_number_token3] = ACTIONS(3115), + [aux_sym__val_number_token4] = ACTIONS(3117), + [aux_sym__val_number_token5] = ACTIONS(3117), + [aux_sym__val_number_token6] = ACTIONS(3117), + [anon_sym_0b] = ACTIONS(3119), + [anon_sym_0o] = ACTIONS(3121), + [anon_sym_0x] = ACTIONS(3121), + [sym_val_date] = ACTIONS(3123), + [anon_sym_DQUOTE] = ACTIONS(3125), + [sym__str_single_quotes] = ACTIONS(3127), + [sym__str_back_ticks] = ACTIONS(3127), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2581), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2583), [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2585), @@ -169585,9 +169585,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2589), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2589), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2589), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3122), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3129), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3124), + [sym_raw_string_begin] = ACTIONS(3131), }, [854] = { [sym_expr_parenthesized] = STATE(5918), @@ -169627,37 +169627,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_parameter_repeat2] = STATE(6085), [aux_sym_list_body_repeat1] = STATE(973), [sym__newline] = ACTIONS(2537), - [anon_sym_LBRACK] = ACTIONS(3128), - [anon_sym_RBRACK] = ACTIONS(3154), - [anon_sym_LPAREN] = ACTIONS(3086), + [anon_sym_LBRACK] = ACTIONS(3135), + [anon_sym_RBRACK] = ACTIONS(3161), + [anon_sym_LPAREN] = ACTIONS(3093), [anon_sym_COMMA] = ACTIONS(2545), - [anon_sym_DOLLAR] = ACTIONS(3088), - [anon_sym_LBRACE] = ACTIONS(3090), - [anon_sym_DOT_DOT] = ACTIONS(3092), + [anon_sym_DOLLAR] = ACTIONS(3095), + [anon_sym_LBRACE] = ACTIONS(3097), + [anon_sym_DOT_DOT] = ACTIONS(3099), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3094), - [anon_sym_DOT_DOT_LT] = ACTIONS(3094), - [anon_sym_null] = ACTIONS(3096), - [anon_sym_true] = ACTIONS(3098), - [anon_sym_false] = ACTIONS(3098), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3101), + [anon_sym_DOT_DOT_LT] = ACTIONS(3101), + [anon_sym_null] = ACTIONS(3103), + [anon_sym_true] = ACTIONS(3105), + [anon_sym_false] = ACTIONS(3105), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), - [aux_sym__val_number_decimal_token1] = ACTIONS(3100), - [aux_sym__val_number_decimal_token2] = ACTIONS(3102), - [aux_sym__val_number_decimal_token3] = ACTIONS(3104), - [aux_sym__val_number_decimal_token4] = ACTIONS(3106), - [aux_sym__val_number_token1] = ACTIONS(3108), - [aux_sym__val_number_token2] = ACTIONS(3108), - [aux_sym__val_number_token3] = ACTIONS(3108), - [aux_sym__val_number_token4] = ACTIONS(3110), - [aux_sym__val_number_token5] = ACTIONS(3110), - [aux_sym__val_number_token6] = ACTIONS(3110), - [anon_sym_0b] = ACTIONS(3112), - [anon_sym_0o] = ACTIONS(3114), - [anon_sym_0x] = ACTIONS(3114), - [sym_val_date] = ACTIONS(3116), - [anon_sym_DQUOTE] = ACTIONS(3118), - [sym__str_single_quotes] = ACTIONS(3120), - [sym__str_back_ticks] = ACTIONS(3120), + [aux_sym__val_number_decimal_token1] = ACTIONS(3107), + [aux_sym__val_number_decimal_token2] = ACTIONS(3109), + [aux_sym__val_number_decimal_token3] = ACTIONS(3111), + [aux_sym__val_number_decimal_token4] = ACTIONS(3113), + [aux_sym__val_number_token1] = ACTIONS(3115), + [aux_sym__val_number_token2] = ACTIONS(3115), + [aux_sym__val_number_token3] = ACTIONS(3115), + [aux_sym__val_number_token4] = ACTIONS(3117), + [aux_sym__val_number_token5] = ACTIONS(3117), + [aux_sym__val_number_token6] = ACTIONS(3117), + [anon_sym_0b] = ACTIONS(3119), + [anon_sym_0o] = ACTIONS(3121), + [anon_sym_0x] = ACTIONS(3121), + [sym_val_date] = ACTIONS(3123), + [anon_sym_DQUOTE] = ACTIONS(3125), + [sym__str_single_quotes] = ACTIONS(3127), + [sym__str_back_ticks] = ACTIONS(3127), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2581), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2583), [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2585), @@ -169677,9 +169677,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2589), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2589), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2589), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3122), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3129), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3124), + [sym_raw_string_begin] = ACTIONS(3131), }, [855] = { [sym_comment] = STATE(855), @@ -169811,37 +169811,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_parameter_repeat2] = STATE(6085), [aux_sym_list_body_repeat1] = STATE(973), [sym__newline] = ACTIONS(2537), - [anon_sym_LBRACK] = ACTIONS(3128), - [anon_sym_RBRACK] = ACTIONS(3156), - [anon_sym_LPAREN] = ACTIONS(3086), + [anon_sym_LBRACK] = ACTIONS(3135), + [anon_sym_RBRACK] = ACTIONS(3163), + [anon_sym_LPAREN] = ACTIONS(3093), [anon_sym_COMMA] = ACTIONS(2545), - [anon_sym_DOLLAR] = ACTIONS(3088), - [anon_sym_LBRACE] = ACTIONS(3090), - [anon_sym_DOT_DOT] = ACTIONS(3092), + [anon_sym_DOLLAR] = ACTIONS(3095), + [anon_sym_LBRACE] = ACTIONS(3097), + [anon_sym_DOT_DOT] = ACTIONS(3099), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3094), - [anon_sym_DOT_DOT_LT] = ACTIONS(3094), - [anon_sym_null] = ACTIONS(3096), - [anon_sym_true] = ACTIONS(3098), - [anon_sym_false] = ACTIONS(3098), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3101), + [anon_sym_DOT_DOT_LT] = ACTIONS(3101), + [anon_sym_null] = ACTIONS(3103), + [anon_sym_true] = ACTIONS(3105), + [anon_sym_false] = ACTIONS(3105), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), - [aux_sym__val_number_decimal_token1] = ACTIONS(3100), - [aux_sym__val_number_decimal_token2] = ACTIONS(3102), - [aux_sym__val_number_decimal_token3] = ACTIONS(3104), - [aux_sym__val_number_decimal_token4] = ACTIONS(3106), - [aux_sym__val_number_token1] = ACTIONS(3108), - [aux_sym__val_number_token2] = ACTIONS(3108), - [aux_sym__val_number_token3] = ACTIONS(3108), - [aux_sym__val_number_token4] = ACTIONS(3110), - [aux_sym__val_number_token5] = ACTIONS(3110), - [aux_sym__val_number_token6] = ACTIONS(3110), - [anon_sym_0b] = ACTIONS(3112), - [anon_sym_0o] = ACTIONS(3114), - [anon_sym_0x] = ACTIONS(3114), - [sym_val_date] = ACTIONS(3116), - [anon_sym_DQUOTE] = ACTIONS(3118), - [sym__str_single_quotes] = ACTIONS(3120), - [sym__str_back_ticks] = ACTIONS(3120), + [aux_sym__val_number_decimal_token1] = ACTIONS(3107), + [aux_sym__val_number_decimal_token2] = ACTIONS(3109), + [aux_sym__val_number_decimal_token3] = ACTIONS(3111), + [aux_sym__val_number_decimal_token4] = ACTIONS(3113), + [aux_sym__val_number_token1] = ACTIONS(3115), + [aux_sym__val_number_token2] = ACTIONS(3115), + [aux_sym__val_number_token3] = ACTIONS(3115), + [aux_sym__val_number_token4] = ACTIONS(3117), + [aux_sym__val_number_token5] = ACTIONS(3117), + [aux_sym__val_number_token6] = ACTIONS(3117), + [anon_sym_0b] = ACTIONS(3119), + [anon_sym_0o] = ACTIONS(3121), + [anon_sym_0x] = ACTIONS(3121), + [sym_val_date] = ACTIONS(3123), + [anon_sym_DQUOTE] = ACTIONS(3125), + [sym__str_single_quotes] = ACTIONS(3127), + [sym__str_back_ticks] = ACTIONS(3127), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2581), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2583), [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2585), @@ -169861,9 +169861,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2589), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2589), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2589), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3122), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3129), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3124), + [sym_raw_string_begin] = ACTIONS(3131), }, [857] = { [sym_expr_parenthesized] = STATE(5918), @@ -169903,37 +169903,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_parameter_repeat2] = STATE(6085), [aux_sym_list_body_repeat1] = STATE(973), [sym__newline] = ACTIONS(2537), - [anon_sym_LBRACK] = ACTIONS(3128), - [anon_sym_RBRACK] = ACTIONS(3158), - [anon_sym_LPAREN] = ACTIONS(3086), + [anon_sym_LBRACK] = ACTIONS(3135), + [anon_sym_RBRACK] = ACTIONS(3165), + [anon_sym_LPAREN] = ACTIONS(3093), [anon_sym_COMMA] = ACTIONS(2545), - [anon_sym_DOLLAR] = ACTIONS(3088), - [anon_sym_LBRACE] = ACTIONS(3090), - [anon_sym_DOT_DOT] = ACTIONS(3092), + [anon_sym_DOLLAR] = ACTIONS(3095), + [anon_sym_LBRACE] = ACTIONS(3097), + [anon_sym_DOT_DOT] = ACTIONS(3099), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3094), - [anon_sym_DOT_DOT_LT] = ACTIONS(3094), - [anon_sym_null] = ACTIONS(3096), - [anon_sym_true] = ACTIONS(3098), - [anon_sym_false] = ACTIONS(3098), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3101), + [anon_sym_DOT_DOT_LT] = ACTIONS(3101), + [anon_sym_null] = ACTIONS(3103), + [anon_sym_true] = ACTIONS(3105), + [anon_sym_false] = ACTIONS(3105), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), - [aux_sym__val_number_decimal_token1] = ACTIONS(3100), - [aux_sym__val_number_decimal_token2] = ACTIONS(3102), - [aux_sym__val_number_decimal_token3] = ACTIONS(3104), - [aux_sym__val_number_decimal_token4] = ACTIONS(3106), - [aux_sym__val_number_token1] = ACTIONS(3108), - [aux_sym__val_number_token2] = ACTIONS(3108), - [aux_sym__val_number_token3] = ACTIONS(3108), - [aux_sym__val_number_token4] = ACTIONS(3110), - [aux_sym__val_number_token5] = ACTIONS(3110), - [aux_sym__val_number_token6] = ACTIONS(3110), - [anon_sym_0b] = ACTIONS(3112), - [anon_sym_0o] = ACTIONS(3114), - [anon_sym_0x] = ACTIONS(3114), - [sym_val_date] = ACTIONS(3116), - [anon_sym_DQUOTE] = ACTIONS(3118), - [sym__str_single_quotes] = ACTIONS(3120), - [sym__str_back_ticks] = ACTIONS(3120), + [aux_sym__val_number_decimal_token1] = ACTIONS(3107), + [aux_sym__val_number_decimal_token2] = ACTIONS(3109), + [aux_sym__val_number_decimal_token3] = ACTIONS(3111), + [aux_sym__val_number_decimal_token4] = ACTIONS(3113), + [aux_sym__val_number_token1] = ACTIONS(3115), + [aux_sym__val_number_token2] = ACTIONS(3115), + [aux_sym__val_number_token3] = ACTIONS(3115), + [aux_sym__val_number_token4] = ACTIONS(3117), + [aux_sym__val_number_token5] = ACTIONS(3117), + [aux_sym__val_number_token6] = ACTIONS(3117), + [anon_sym_0b] = ACTIONS(3119), + [anon_sym_0o] = ACTIONS(3121), + [anon_sym_0x] = ACTIONS(3121), + [sym_val_date] = ACTIONS(3123), + [anon_sym_DQUOTE] = ACTIONS(3125), + [sym__str_single_quotes] = ACTIONS(3127), + [sym__str_back_ticks] = ACTIONS(3127), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2581), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2583), [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2585), @@ -169953,41 +169953,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2589), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2589), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2589), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3122), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3129), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3124), + [sym_raw_string_begin] = ACTIONS(3131), }, [858] = { [sym_comment] = STATE(858), - [anon_sym_STAR_STAR] = ACTIONS(3058), - [anon_sym_PLUS_PLUS] = ACTIONS(3058), - [anon_sym_STAR] = ACTIONS(3060), - [anon_sym_SLASH] = ACTIONS(3060), - [anon_sym_mod] = ACTIONS(3058), - [anon_sym_SLASH_SLASH] = ACTIONS(3058), - [anon_sym_PLUS] = ACTIONS(3060), - [anon_sym_DASH] = ACTIONS(3058), - [anon_sym_bit_DASHshl] = ACTIONS(3058), - [anon_sym_bit_DASHshr] = ACTIONS(3058), - [anon_sym_EQ_TILDE] = ACTIONS(3058), - [anon_sym_BANG_TILDE] = ACTIONS(3058), - [anon_sym_bit_DASHand] = ACTIONS(3058), - [anon_sym_bit_DASHxor] = ACTIONS(3058), - [anon_sym_bit_DASHor] = ACTIONS(3058), - [anon_sym_and] = ACTIONS(3058), - [anon_sym_xor] = ACTIONS(3058), - [anon_sym_or] = ACTIONS(3058), - [anon_sym_in] = ACTIONS(3058), - [anon_sym_not_DASHin] = ACTIONS(3058), - [anon_sym_starts_DASHwith] = ACTIONS(3058), - [anon_sym_ends_DASHwith] = ACTIONS(3058), - [anon_sym_EQ_EQ] = ACTIONS(3058), - [anon_sym_BANG_EQ] = ACTIONS(3058), - [anon_sym_LT] = ACTIONS(3060), - [anon_sym_LT_EQ] = ACTIONS(3058), - [anon_sym_GT] = ACTIONS(3060), - [anon_sym_GT_EQ] = ACTIONS(3058), - [aux_sym_cmd_identifier_token41] = ACTIONS(3062), + [anon_sym_STAR_STAR] = ACTIONS(3065), + [anon_sym_PLUS_PLUS] = ACTIONS(3065), + [anon_sym_STAR] = ACTIONS(3067), + [anon_sym_SLASH] = ACTIONS(3067), + [anon_sym_mod] = ACTIONS(3065), + [anon_sym_SLASH_SLASH] = ACTIONS(3065), + [anon_sym_PLUS] = ACTIONS(3067), + [anon_sym_DASH] = ACTIONS(3065), + [anon_sym_bit_DASHshl] = ACTIONS(3065), + [anon_sym_bit_DASHshr] = ACTIONS(3065), + [anon_sym_EQ_TILDE] = ACTIONS(3065), + [anon_sym_BANG_TILDE] = ACTIONS(3065), + [anon_sym_bit_DASHand] = ACTIONS(3065), + [anon_sym_bit_DASHxor] = ACTIONS(3065), + [anon_sym_bit_DASHor] = ACTIONS(3065), + [anon_sym_and] = ACTIONS(3065), + [anon_sym_xor] = ACTIONS(3065), + [anon_sym_or] = ACTIONS(3065), + [anon_sym_in] = ACTIONS(3065), + [anon_sym_not_DASHin] = ACTIONS(3065), + [anon_sym_starts_DASHwith] = ACTIONS(3065), + [anon_sym_ends_DASHwith] = ACTIONS(3065), + [anon_sym_EQ_EQ] = ACTIONS(3065), + [anon_sym_BANG_EQ] = ACTIONS(3065), + [anon_sym_LT] = ACTIONS(3067), + [anon_sym_LT_EQ] = ACTIONS(3065), + [anon_sym_GT] = ACTIONS(3067), + [anon_sym_GT_EQ] = ACTIONS(3065), + [aux_sym_cmd_identifier_token41] = ACTIONS(3069), [sym__newline] = ACTIONS(1681), [anon_sym_PIPE] = ACTIONS(1681), [anon_sym_err_GT_PIPE] = ACTIONS(1681), @@ -170026,11 +170026,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bit_DASHand2] = ACTIONS(1681), [anon_sym_bit_DASHxor2] = ACTIONS(1681), [anon_sym_bit_DASHor2] = ACTIONS(1681), - [anon_sym_DOT_DOT2] = ACTIONS(3024), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(3026), - [anon_sym_DOT_DOT_LT2] = ACTIONS(3026), - [sym_filesize_unit] = ACTIONS(3160), - [sym_duration_unit] = ACTIONS(3162), + [anon_sym_DOT_DOT2] = ACTIONS(3031), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(3033), + [anon_sym_DOT_DOT_LT2] = ACTIONS(3033), + [sym_filesize_unit] = ACTIONS(3167), + [sym_duration_unit] = ACTIONS(3169), [anon_sym_err_GT] = ACTIONS(1681), [anon_sym_out_GT] = ACTIONS(1681), [anon_sym_e_GT] = ACTIONS(1681), @@ -170087,37 +170087,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_parameter_repeat2] = STATE(6085), [aux_sym_list_body_repeat1] = STATE(973), [sym__newline] = ACTIONS(2537), - [anon_sym_LBRACK] = ACTIONS(3082), - [anon_sym_RBRACK] = ACTIONS(3132), - [anon_sym_LPAREN] = ACTIONS(3086), + [anon_sym_LBRACK] = ACTIONS(3089), + [anon_sym_RBRACK] = ACTIONS(3139), + [anon_sym_LPAREN] = ACTIONS(3093), [anon_sym_COMMA] = ACTIONS(2545), - [anon_sym_DOLLAR] = ACTIONS(3088), - [anon_sym_LBRACE] = ACTIONS(3090), - [anon_sym_DOT_DOT] = ACTIONS(3092), + [anon_sym_DOLLAR] = ACTIONS(3095), + [anon_sym_LBRACE] = ACTIONS(3097), + [anon_sym_DOT_DOT] = ACTIONS(3099), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3094), - [anon_sym_DOT_DOT_LT] = ACTIONS(3094), - [anon_sym_null] = ACTIONS(3096), - [anon_sym_true] = ACTIONS(3098), - [anon_sym_false] = ACTIONS(3098), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3101), + [anon_sym_DOT_DOT_LT] = ACTIONS(3101), + [anon_sym_null] = ACTIONS(3103), + [anon_sym_true] = ACTIONS(3105), + [anon_sym_false] = ACTIONS(3105), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), - [aux_sym__val_number_decimal_token1] = ACTIONS(3100), - [aux_sym__val_number_decimal_token2] = ACTIONS(3102), - [aux_sym__val_number_decimal_token3] = ACTIONS(3104), - [aux_sym__val_number_decimal_token4] = ACTIONS(3106), - [aux_sym__val_number_token1] = ACTIONS(3108), - [aux_sym__val_number_token2] = ACTIONS(3108), - [aux_sym__val_number_token3] = ACTIONS(3108), - [aux_sym__val_number_token4] = ACTIONS(3110), - [aux_sym__val_number_token5] = ACTIONS(3110), - [aux_sym__val_number_token6] = ACTIONS(3110), - [anon_sym_0b] = ACTIONS(3112), - [anon_sym_0o] = ACTIONS(3114), - [anon_sym_0x] = ACTIONS(3114), - [sym_val_date] = ACTIONS(3116), - [anon_sym_DQUOTE] = ACTIONS(3118), - [sym__str_single_quotes] = ACTIONS(3120), - [sym__str_back_ticks] = ACTIONS(3120), + [aux_sym__val_number_decimal_token1] = ACTIONS(3107), + [aux_sym__val_number_decimal_token2] = ACTIONS(3109), + [aux_sym__val_number_decimal_token3] = ACTIONS(3111), + [aux_sym__val_number_decimal_token4] = ACTIONS(3113), + [aux_sym__val_number_token1] = ACTIONS(3115), + [aux_sym__val_number_token2] = ACTIONS(3115), + [aux_sym__val_number_token3] = ACTIONS(3115), + [aux_sym__val_number_token4] = ACTIONS(3117), + [aux_sym__val_number_token5] = ACTIONS(3117), + [aux_sym__val_number_token6] = ACTIONS(3117), + [anon_sym_0b] = ACTIONS(3119), + [anon_sym_0o] = ACTIONS(3121), + [anon_sym_0x] = ACTIONS(3121), + [sym_val_date] = ACTIONS(3123), + [anon_sym_DQUOTE] = ACTIONS(3125), + [sym__str_single_quotes] = ACTIONS(3127), + [sym__str_back_ticks] = ACTIONS(3127), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2581), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2583), [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2585), @@ -170137,9 +170137,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2589), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2589), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2589), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3122), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3129), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3124), + [sym_raw_string_begin] = ACTIONS(3131), }, [860] = { [sym_expr_parenthesized] = STATE(5918), @@ -170179,37 +170179,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_parameter_repeat2] = STATE(6085), [aux_sym_list_body_repeat1] = STATE(973), [sym__newline] = ACTIONS(2537), - [anon_sym_LBRACK] = ACTIONS(3082), - [anon_sym_RBRACK] = ACTIONS(3164), - [anon_sym_LPAREN] = ACTIONS(3086), + [anon_sym_LBRACK] = ACTIONS(3089), + [anon_sym_RBRACK] = ACTIONS(3171), + [anon_sym_LPAREN] = ACTIONS(3093), [anon_sym_COMMA] = ACTIONS(2545), - [anon_sym_DOLLAR] = ACTIONS(3088), - [anon_sym_LBRACE] = ACTIONS(3090), - [anon_sym_DOT_DOT] = ACTIONS(3092), + [anon_sym_DOLLAR] = ACTIONS(3095), + [anon_sym_LBRACE] = ACTIONS(3097), + [anon_sym_DOT_DOT] = ACTIONS(3099), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3094), - [anon_sym_DOT_DOT_LT] = ACTIONS(3094), - [anon_sym_null] = ACTIONS(3096), - [anon_sym_true] = ACTIONS(3098), - [anon_sym_false] = ACTIONS(3098), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3101), + [anon_sym_DOT_DOT_LT] = ACTIONS(3101), + [anon_sym_null] = ACTIONS(3103), + [anon_sym_true] = ACTIONS(3105), + [anon_sym_false] = ACTIONS(3105), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), - [aux_sym__val_number_decimal_token1] = ACTIONS(3100), - [aux_sym__val_number_decimal_token2] = ACTIONS(3102), - [aux_sym__val_number_decimal_token3] = ACTIONS(3104), - [aux_sym__val_number_decimal_token4] = ACTIONS(3106), - [aux_sym__val_number_token1] = ACTIONS(3108), - [aux_sym__val_number_token2] = ACTIONS(3108), - [aux_sym__val_number_token3] = ACTIONS(3108), - [aux_sym__val_number_token4] = ACTIONS(3110), - [aux_sym__val_number_token5] = ACTIONS(3110), - [aux_sym__val_number_token6] = ACTIONS(3110), - [anon_sym_0b] = ACTIONS(3112), - [anon_sym_0o] = ACTIONS(3114), - [anon_sym_0x] = ACTIONS(3114), - [sym_val_date] = ACTIONS(3116), - [anon_sym_DQUOTE] = ACTIONS(3118), - [sym__str_single_quotes] = ACTIONS(3120), - [sym__str_back_ticks] = ACTIONS(3120), + [aux_sym__val_number_decimal_token1] = ACTIONS(3107), + [aux_sym__val_number_decimal_token2] = ACTIONS(3109), + [aux_sym__val_number_decimal_token3] = ACTIONS(3111), + [aux_sym__val_number_decimal_token4] = ACTIONS(3113), + [aux_sym__val_number_token1] = ACTIONS(3115), + [aux_sym__val_number_token2] = ACTIONS(3115), + [aux_sym__val_number_token3] = ACTIONS(3115), + [aux_sym__val_number_token4] = ACTIONS(3117), + [aux_sym__val_number_token5] = ACTIONS(3117), + [aux_sym__val_number_token6] = ACTIONS(3117), + [anon_sym_0b] = ACTIONS(3119), + [anon_sym_0o] = ACTIONS(3121), + [anon_sym_0x] = ACTIONS(3121), + [sym_val_date] = ACTIONS(3123), + [anon_sym_DQUOTE] = ACTIONS(3125), + [sym__str_single_quotes] = ACTIONS(3127), + [sym__str_back_ticks] = ACTIONS(3127), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2581), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2583), [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2585), @@ -170229,9 +170229,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2589), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2589), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2589), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3122), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3129), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3124), + [sym_raw_string_begin] = ACTIONS(3131), }, [861] = { [sym_expr_parenthesized] = STATE(5918), @@ -170271,37 +170271,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_parameter_repeat2] = STATE(6085), [aux_sym_list_body_repeat1] = STATE(973), [sym__newline] = ACTIONS(2537), - [anon_sym_LBRACK] = ACTIONS(3128), - [anon_sym_RBRACK] = ACTIONS(3166), - [anon_sym_LPAREN] = ACTIONS(3086), + [anon_sym_LBRACK] = ACTIONS(3135), + [anon_sym_RBRACK] = ACTIONS(3173), + [anon_sym_LPAREN] = ACTIONS(3093), [anon_sym_COMMA] = ACTIONS(2545), - [anon_sym_DOLLAR] = ACTIONS(3088), - [anon_sym_LBRACE] = ACTIONS(3090), - [anon_sym_DOT_DOT] = ACTIONS(3092), + [anon_sym_DOLLAR] = ACTIONS(3095), + [anon_sym_LBRACE] = ACTIONS(3097), + [anon_sym_DOT_DOT] = ACTIONS(3099), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3094), - [anon_sym_DOT_DOT_LT] = ACTIONS(3094), - [anon_sym_null] = ACTIONS(3096), - [anon_sym_true] = ACTIONS(3098), - [anon_sym_false] = ACTIONS(3098), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3101), + [anon_sym_DOT_DOT_LT] = ACTIONS(3101), + [anon_sym_null] = ACTIONS(3103), + [anon_sym_true] = ACTIONS(3105), + [anon_sym_false] = ACTIONS(3105), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), - [aux_sym__val_number_decimal_token1] = ACTIONS(3100), - [aux_sym__val_number_decimal_token2] = ACTIONS(3102), - [aux_sym__val_number_decimal_token3] = ACTIONS(3104), - [aux_sym__val_number_decimal_token4] = ACTIONS(3106), - [aux_sym__val_number_token1] = ACTIONS(3108), - [aux_sym__val_number_token2] = ACTIONS(3108), - [aux_sym__val_number_token3] = ACTIONS(3108), - [aux_sym__val_number_token4] = ACTIONS(3110), - [aux_sym__val_number_token5] = ACTIONS(3110), - [aux_sym__val_number_token6] = ACTIONS(3110), - [anon_sym_0b] = ACTIONS(3112), - [anon_sym_0o] = ACTIONS(3114), - [anon_sym_0x] = ACTIONS(3114), - [sym_val_date] = ACTIONS(3116), - [anon_sym_DQUOTE] = ACTIONS(3118), - [sym__str_single_quotes] = ACTIONS(3120), - [sym__str_back_ticks] = ACTIONS(3120), + [aux_sym__val_number_decimal_token1] = ACTIONS(3107), + [aux_sym__val_number_decimal_token2] = ACTIONS(3109), + [aux_sym__val_number_decimal_token3] = ACTIONS(3111), + [aux_sym__val_number_decimal_token4] = ACTIONS(3113), + [aux_sym__val_number_token1] = ACTIONS(3115), + [aux_sym__val_number_token2] = ACTIONS(3115), + [aux_sym__val_number_token3] = ACTIONS(3115), + [aux_sym__val_number_token4] = ACTIONS(3117), + [aux_sym__val_number_token5] = ACTIONS(3117), + [aux_sym__val_number_token6] = ACTIONS(3117), + [anon_sym_0b] = ACTIONS(3119), + [anon_sym_0o] = ACTIONS(3121), + [anon_sym_0x] = ACTIONS(3121), + [sym_val_date] = ACTIONS(3123), + [anon_sym_DQUOTE] = ACTIONS(3125), + [sym__str_single_quotes] = ACTIONS(3127), + [sym__str_back_ticks] = ACTIONS(3127), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2581), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2583), [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2585), @@ -170321,9 +170321,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2589), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2589), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2589), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3122), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3129), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3124), + [sym_raw_string_begin] = ACTIONS(3131), }, [862] = { [sym_comment] = STATE(862), @@ -170455,37 +170455,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_parameter_repeat2] = STATE(6085), [aux_sym_list_body_repeat1] = STATE(973), [sym__newline] = ACTIONS(2537), - [anon_sym_LBRACK] = ACTIONS(3082), - [anon_sym_RBRACK] = ACTIONS(3168), - [anon_sym_LPAREN] = ACTIONS(3086), + [anon_sym_LBRACK] = ACTIONS(3089), + [anon_sym_RBRACK] = ACTIONS(3175), + [anon_sym_LPAREN] = ACTIONS(3093), [anon_sym_COMMA] = ACTIONS(2545), - [anon_sym_DOLLAR] = ACTIONS(3088), - [anon_sym_LBRACE] = ACTIONS(3090), - [anon_sym_DOT_DOT] = ACTIONS(3092), + [anon_sym_DOLLAR] = ACTIONS(3095), + [anon_sym_LBRACE] = ACTIONS(3097), + [anon_sym_DOT_DOT] = ACTIONS(3099), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3094), - [anon_sym_DOT_DOT_LT] = ACTIONS(3094), - [anon_sym_null] = ACTIONS(3096), - [anon_sym_true] = ACTIONS(3098), - [anon_sym_false] = ACTIONS(3098), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3101), + [anon_sym_DOT_DOT_LT] = ACTIONS(3101), + [anon_sym_null] = ACTIONS(3103), + [anon_sym_true] = ACTIONS(3105), + [anon_sym_false] = ACTIONS(3105), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), - [aux_sym__val_number_decimal_token1] = ACTIONS(3100), - [aux_sym__val_number_decimal_token2] = ACTIONS(3102), - [aux_sym__val_number_decimal_token3] = ACTIONS(3104), - [aux_sym__val_number_decimal_token4] = ACTIONS(3106), - [aux_sym__val_number_token1] = ACTIONS(3108), - [aux_sym__val_number_token2] = ACTIONS(3108), - [aux_sym__val_number_token3] = ACTIONS(3108), - [aux_sym__val_number_token4] = ACTIONS(3110), - [aux_sym__val_number_token5] = ACTIONS(3110), - [aux_sym__val_number_token6] = ACTIONS(3110), - [anon_sym_0b] = ACTIONS(3112), - [anon_sym_0o] = ACTIONS(3114), - [anon_sym_0x] = ACTIONS(3114), - [sym_val_date] = ACTIONS(3116), - [anon_sym_DQUOTE] = ACTIONS(3118), - [sym__str_single_quotes] = ACTIONS(3120), - [sym__str_back_ticks] = ACTIONS(3120), + [aux_sym__val_number_decimal_token1] = ACTIONS(3107), + [aux_sym__val_number_decimal_token2] = ACTIONS(3109), + [aux_sym__val_number_decimal_token3] = ACTIONS(3111), + [aux_sym__val_number_decimal_token4] = ACTIONS(3113), + [aux_sym__val_number_token1] = ACTIONS(3115), + [aux_sym__val_number_token2] = ACTIONS(3115), + [aux_sym__val_number_token3] = ACTIONS(3115), + [aux_sym__val_number_token4] = ACTIONS(3117), + [aux_sym__val_number_token5] = ACTIONS(3117), + [aux_sym__val_number_token6] = ACTIONS(3117), + [anon_sym_0b] = ACTIONS(3119), + [anon_sym_0o] = ACTIONS(3121), + [anon_sym_0x] = ACTIONS(3121), + [sym_val_date] = ACTIONS(3123), + [anon_sym_DQUOTE] = ACTIONS(3125), + [sym__str_single_quotes] = ACTIONS(3127), + [sym__str_back_ticks] = ACTIONS(3127), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2581), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2583), [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2585), @@ -170505,41 +170505,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2589), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2589), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2589), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3122), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3129), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3124), + [sym_raw_string_begin] = ACTIONS(3131), }, [864] = { [sym_comment] = STATE(864), - [anon_sym_STAR_STAR] = ACTIONS(3170), - [anon_sym_PLUS_PLUS] = ACTIONS(3170), - [anon_sym_STAR] = ACTIONS(3172), - [anon_sym_SLASH] = ACTIONS(3172), - [anon_sym_mod] = ACTIONS(3170), - [anon_sym_SLASH_SLASH] = ACTIONS(3170), - [anon_sym_PLUS] = ACTIONS(3172), - [anon_sym_DASH] = ACTIONS(3170), - [anon_sym_bit_DASHshl] = ACTIONS(3170), - [anon_sym_bit_DASHshr] = ACTIONS(3170), - [anon_sym_EQ_TILDE] = ACTIONS(3170), - [anon_sym_BANG_TILDE] = ACTIONS(3170), - [anon_sym_bit_DASHand] = ACTIONS(3170), - [anon_sym_bit_DASHxor] = ACTIONS(3170), - [anon_sym_bit_DASHor] = ACTIONS(3170), - [anon_sym_and] = ACTIONS(3170), - [anon_sym_xor] = ACTIONS(3170), - [anon_sym_or] = ACTIONS(3170), - [anon_sym_in] = ACTIONS(3170), - [anon_sym_not_DASHin] = ACTIONS(3170), - [anon_sym_starts_DASHwith] = ACTIONS(3170), - [anon_sym_ends_DASHwith] = ACTIONS(3170), - [anon_sym_EQ_EQ] = ACTIONS(3170), - [anon_sym_BANG_EQ] = ACTIONS(3170), - [anon_sym_LT] = ACTIONS(3172), - [anon_sym_LT_EQ] = ACTIONS(3170), - [anon_sym_GT] = ACTIONS(3172), - [anon_sym_GT_EQ] = ACTIONS(3170), - [aux_sym_cmd_identifier_token41] = ACTIONS(3174), + [anon_sym_STAR_STAR] = ACTIONS(3177), + [anon_sym_PLUS_PLUS] = ACTIONS(3177), + [anon_sym_STAR] = ACTIONS(3179), + [anon_sym_SLASH] = ACTIONS(3179), + [anon_sym_mod] = ACTIONS(3177), + [anon_sym_SLASH_SLASH] = ACTIONS(3177), + [anon_sym_PLUS] = ACTIONS(3179), + [anon_sym_DASH] = ACTIONS(3177), + [anon_sym_bit_DASHshl] = ACTIONS(3177), + [anon_sym_bit_DASHshr] = ACTIONS(3177), + [anon_sym_EQ_TILDE] = ACTIONS(3177), + [anon_sym_BANG_TILDE] = ACTIONS(3177), + [anon_sym_bit_DASHand] = ACTIONS(3177), + [anon_sym_bit_DASHxor] = ACTIONS(3177), + [anon_sym_bit_DASHor] = ACTIONS(3177), + [anon_sym_and] = ACTIONS(3177), + [anon_sym_xor] = ACTIONS(3177), + [anon_sym_or] = ACTIONS(3177), + [anon_sym_in] = ACTIONS(3177), + [anon_sym_not_DASHin] = ACTIONS(3177), + [anon_sym_starts_DASHwith] = ACTIONS(3177), + [anon_sym_ends_DASHwith] = ACTIONS(3177), + [anon_sym_EQ_EQ] = ACTIONS(3177), + [anon_sym_BANG_EQ] = ACTIONS(3177), + [anon_sym_LT] = ACTIONS(3179), + [anon_sym_LT_EQ] = ACTIONS(3177), + [anon_sym_GT] = ACTIONS(3179), + [anon_sym_GT_EQ] = ACTIONS(3177), + [aux_sym_cmd_identifier_token41] = ACTIONS(3181), [sym__newline] = ACTIONS(2245), [anon_sym_SEMI] = ACTIONS(2245), [anon_sym_PIPE] = ACTIONS(2245), @@ -170601,35 +170601,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [865] = { [sym_comment] = STATE(865), [ts_builtin_sym_end] = ACTIONS(2247), - [anon_sym_STAR_STAR] = ACTIONS(3176), - [anon_sym_PLUS_PLUS] = ACTIONS(3176), - [anon_sym_STAR] = ACTIONS(3178), - [anon_sym_SLASH] = ACTIONS(3178), - [anon_sym_mod] = ACTIONS(3176), - [anon_sym_SLASH_SLASH] = ACTIONS(3176), - [anon_sym_PLUS] = ACTIONS(3178), - [anon_sym_DASH] = ACTIONS(3176), - [anon_sym_bit_DASHshl] = ACTIONS(3176), - [anon_sym_bit_DASHshr] = ACTIONS(3176), - [anon_sym_EQ_TILDE] = ACTIONS(3176), - [anon_sym_BANG_TILDE] = ACTIONS(3176), - [anon_sym_bit_DASHand] = ACTIONS(3176), - [anon_sym_bit_DASHxor] = ACTIONS(3176), - [anon_sym_bit_DASHor] = ACTIONS(3176), - [anon_sym_and] = ACTIONS(3176), - [anon_sym_xor] = ACTIONS(3176), - [anon_sym_or] = ACTIONS(3176), - [anon_sym_in] = ACTIONS(3176), - [anon_sym_not_DASHin] = ACTIONS(3176), - [anon_sym_starts_DASHwith] = ACTIONS(3176), - [anon_sym_ends_DASHwith] = ACTIONS(3176), - [anon_sym_EQ_EQ] = ACTIONS(3176), - [anon_sym_BANG_EQ] = ACTIONS(3176), - [anon_sym_LT] = ACTIONS(3178), - [anon_sym_LT_EQ] = ACTIONS(3176), - [anon_sym_GT] = ACTIONS(3178), - [anon_sym_GT_EQ] = ACTIONS(3176), - [aux_sym_cmd_identifier_token41] = ACTIONS(3180), + [anon_sym_STAR_STAR] = ACTIONS(3183), + [anon_sym_PLUS_PLUS] = ACTIONS(3183), + [anon_sym_STAR] = ACTIONS(3185), + [anon_sym_SLASH] = ACTIONS(3185), + [anon_sym_mod] = ACTIONS(3183), + [anon_sym_SLASH_SLASH] = ACTIONS(3183), + [anon_sym_PLUS] = ACTIONS(3185), + [anon_sym_DASH] = ACTIONS(3183), + [anon_sym_bit_DASHshl] = ACTIONS(3183), + [anon_sym_bit_DASHshr] = ACTIONS(3183), + [anon_sym_EQ_TILDE] = ACTIONS(3183), + [anon_sym_BANG_TILDE] = ACTIONS(3183), + [anon_sym_bit_DASHand] = ACTIONS(3183), + [anon_sym_bit_DASHxor] = ACTIONS(3183), + [anon_sym_bit_DASHor] = ACTIONS(3183), + [anon_sym_and] = ACTIONS(3183), + [anon_sym_xor] = ACTIONS(3183), + [anon_sym_or] = ACTIONS(3183), + [anon_sym_in] = ACTIONS(3183), + [anon_sym_not_DASHin] = ACTIONS(3183), + [anon_sym_starts_DASHwith] = ACTIONS(3183), + [anon_sym_ends_DASHwith] = ACTIONS(3183), + [anon_sym_EQ_EQ] = ACTIONS(3183), + [anon_sym_BANG_EQ] = ACTIONS(3183), + [anon_sym_LT] = ACTIONS(3185), + [anon_sym_LT_EQ] = ACTIONS(3183), + [anon_sym_GT] = ACTIONS(3185), + [anon_sym_GT_EQ] = ACTIONS(3183), + [aux_sym_cmd_identifier_token41] = ACTIONS(3187), [sym__newline] = ACTIONS(2245), [anon_sym_SEMI] = ACTIONS(2245), [anon_sym_PIPE] = ACTIONS(2245), @@ -170689,35 +170689,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [866] = { [sym_comment] = STATE(866), - [anon_sym_STAR_STAR] = ACTIONS(3170), - [anon_sym_PLUS_PLUS] = ACTIONS(3170), - [anon_sym_STAR] = ACTIONS(3172), - [anon_sym_SLASH] = ACTIONS(3172), - [anon_sym_mod] = ACTIONS(3170), - [anon_sym_SLASH_SLASH] = ACTIONS(3170), - [anon_sym_PLUS] = ACTIONS(3172), - [anon_sym_DASH] = ACTIONS(3170), - [anon_sym_bit_DASHshl] = ACTIONS(3170), - [anon_sym_bit_DASHshr] = ACTIONS(3170), - [anon_sym_EQ_TILDE] = ACTIONS(3170), - [anon_sym_BANG_TILDE] = ACTIONS(3170), - [anon_sym_bit_DASHand] = ACTIONS(3170), - [anon_sym_bit_DASHxor] = ACTIONS(3170), - [anon_sym_bit_DASHor] = ACTIONS(3170), - [anon_sym_and] = ACTIONS(3170), - [anon_sym_xor] = ACTIONS(3170), - [anon_sym_or] = ACTIONS(3170), - [anon_sym_in] = ACTIONS(3170), - [anon_sym_not_DASHin] = ACTIONS(3170), - [anon_sym_starts_DASHwith] = ACTIONS(3170), - [anon_sym_ends_DASHwith] = ACTIONS(3170), - [anon_sym_EQ_EQ] = ACTIONS(3170), - [anon_sym_BANG_EQ] = ACTIONS(3170), - [anon_sym_LT] = ACTIONS(3172), - [anon_sym_LT_EQ] = ACTIONS(3170), - [anon_sym_GT] = ACTIONS(3172), - [anon_sym_GT_EQ] = ACTIONS(3170), - [aux_sym_cmd_identifier_token41] = ACTIONS(3174), + [anon_sym_STAR_STAR] = ACTIONS(3177), + [anon_sym_PLUS_PLUS] = ACTIONS(3177), + [anon_sym_STAR] = ACTIONS(3179), + [anon_sym_SLASH] = ACTIONS(3179), + [anon_sym_mod] = ACTIONS(3177), + [anon_sym_SLASH_SLASH] = ACTIONS(3177), + [anon_sym_PLUS] = ACTIONS(3179), + [anon_sym_DASH] = ACTIONS(3177), + [anon_sym_bit_DASHshl] = ACTIONS(3177), + [anon_sym_bit_DASHshr] = ACTIONS(3177), + [anon_sym_EQ_TILDE] = ACTIONS(3177), + [anon_sym_BANG_TILDE] = ACTIONS(3177), + [anon_sym_bit_DASHand] = ACTIONS(3177), + [anon_sym_bit_DASHxor] = ACTIONS(3177), + [anon_sym_bit_DASHor] = ACTIONS(3177), + [anon_sym_and] = ACTIONS(3177), + [anon_sym_xor] = ACTIONS(3177), + [anon_sym_or] = ACTIONS(3177), + [anon_sym_in] = ACTIONS(3177), + [anon_sym_not_DASHin] = ACTIONS(3177), + [anon_sym_starts_DASHwith] = ACTIONS(3177), + [anon_sym_ends_DASHwith] = ACTIONS(3177), + [anon_sym_EQ_EQ] = ACTIONS(3177), + [anon_sym_BANG_EQ] = ACTIONS(3177), + [anon_sym_LT] = ACTIONS(3179), + [anon_sym_LT_EQ] = ACTIONS(3177), + [anon_sym_GT] = ACTIONS(3179), + [anon_sym_GT_EQ] = ACTIONS(3177), + [aux_sym_cmd_identifier_token41] = ACTIONS(3181), [sym__newline] = ACTIONS(2237), [anon_sym_SEMI] = ACTIONS(2237), [anon_sym_PIPE] = ACTIONS(2237), @@ -170778,35 +170778,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [867] = { [sym_comment] = STATE(867), - [anon_sym_STAR_STAR] = ACTIONS(3170), - [anon_sym_PLUS_PLUS] = ACTIONS(3170), - [anon_sym_STAR] = ACTIONS(3172), - [anon_sym_SLASH] = ACTIONS(3172), - [anon_sym_mod] = ACTIONS(3170), - [anon_sym_SLASH_SLASH] = ACTIONS(3170), - [anon_sym_PLUS] = ACTIONS(3172), - [anon_sym_DASH] = ACTIONS(3170), - [anon_sym_bit_DASHshl] = ACTIONS(3170), - [anon_sym_bit_DASHshr] = ACTIONS(3170), - [anon_sym_EQ_TILDE] = ACTIONS(3170), - [anon_sym_BANG_TILDE] = ACTIONS(3170), - [anon_sym_bit_DASHand] = ACTIONS(3170), - [anon_sym_bit_DASHxor] = ACTIONS(3170), - [anon_sym_bit_DASHor] = ACTIONS(3170), - [anon_sym_and] = ACTIONS(3170), - [anon_sym_xor] = ACTIONS(3170), - [anon_sym_or] = ACTIONS(3170), - [anon_sym_in] = ACTIONS(3170), - [anon_sym_not_DASHin] = ACTIONS(3170), - [anon_sym_starts_DASHwith] = ACTIONS(3170), - [anon_sym_ends_DASHwith] = ACTIONS(3170), - [anon_sym_EQ_EQ] = ACTIONS(3170), - [anon_sym_BANG_EQ] = ACTIONS(3170), - [anon_sym_LT] = ACTIONS(3172), - [anon_sym_LT_EQ] = ACTIONS(3170), - [anon_sym_GT] = ACTIONS(3172), - [anon_sym_GT_EQ] = ACTIONS(3170), - [aux_sym_cmd_identifier_token41] = ACTIONS(3174), + [anon_sym_STAR_STAR] = ACTIONS(3177), + [anon_sym_PLUS_PLUS] = ACTIONS(3177), + [anon_sym_STAR] = ACTIONS(3179), + [anon_sym_SLASH] = ACTIONS(3179), + [anon_sym_mod] = ACTIONS(3177), + [anon_sym_SLASH_SLASH] = ACTIONS(3177), + [anon_sym_PLUS] = ACTIONS(3179), + [anon_sym_DASH] = ACTIONS(3177), + [anon_sym_bit_DASHshl] = ACTIONS(3177), + [anon_sym_bit_DASHshr] = ACTIONS(3177), + [anon_sym_EQ_TILDE] = ACTIONS(3177), + [anon_sym_BANG_TILDE] = ACTIONS(3177), + [anon_sym_bit_DASHand] = ACTIONS(3177), + [anon_sym_bit_DASHxor] = ACTIONS(3177), + [anon_sym_bit_DASHor] = ACTIONS(3177), + [anon_sym_and] = ACTIONS(3177), + [anon_sym_xor] = ACTIONS(3177), + [anon_sym_or] = ACTIONS(3177), + [anon_sym_in] = ACTIONS(3177), + [anon_sym_not_DASHin] = ACTIONS(3177), + [anon_sym_starts_DASHwith] = ACTIONS(3177), + [anon_sym_ends_DASHwith] = ACTIONS(3177), + [anon_sym_EQ_EQ] = ACTIONS(3177), + [anon_sym_BANG_EQ] = ACTIONS(3177), + [anon_sym_LT] = ACTIONS(3179), + [anon_sym_LT_EQ] = ACTIONS(3177), + [anon_sym_GT] = ACTIONS(3179), + [anon_sym_GT_EQ] = ACTIONS(3177), + [aux_sym_cmd_identifier_token41] = ACTIONS(3181), [sym__newline] = ACTIONS(2245), [anon_sym_SEMI] = ACTIONS(2245), [anon_sym_PIPE] = ACTIONS(2245), @@ -170868,35 +170868,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [868] = { [sym_comment] = STATE(868), [ts_builtin_sym_end] = ACTIONS(2241), - [anon_sym_STAR_STAR] = ACTIONS(3176), - [anon_sym_PLUS_PLUS] = ACTIONS(3176), - [anon_sym_STAR] = ACTIONS(3178), - [anon_sym_SLASH] = ACTIONS(3178), - [anon_sym_mod] = ACTIONS(3176), - [anon_sym_SLASH_SLASH] = ACTIONS(3176), - [anon_sym_PLUS] = ACTIONS(3178), - [anon_sym_DASH] = ACTIONS(3176), - [anon_sym_bit_DASHshl] = ACTIONS(3176), - [anon_sym_bit_DASHshr] = ACTIONS(3176), - [anon_sym_EQ_TILDE] = ACTIONS(3176), - [anon_sym_BANG_TILDE] = ACTIONS(3176), - [anon_sym_bit_DASHand] = ACTIONS(3176), - [anon_sym_bit_DASHxor] = ACTIONS(3176), - [anon_sym_bit_DASHor] = ACTIONS(3176), - [anon_sym_and] = ACTIONS(3176), - [anon_sym_xor] = ACTIONS(3176), - [anon_sym_or] = ACTIONS(3176), - [anon_sym_in] = ACTIONS(3176), - [anon_sym_not_DASHin] = ACTIONS(3176), - [anon_sym_starts_DASHwith] = ACTIONS(3176), - [anon_sym_ends_DASHwith] = ACTIONS(3176), - [anon_sym_EQ_EQ] = ACTIONS(3176), - [anon_sym_BANG_EQ] = ACTIONS(3176), - [anon_sym_LT] = ACTIONS(3178), - [anon_sym_LT_EQ] = ACTIONS(3176), - [anon_sym_GT] = ACTIONS(3178), - [anon_sym_GT_EQ] = ACTIONS(3176), - [aux_sym_cmd_identifier_token41] = ACTIONS(3180), + [anon_sym_STAR_STAR] = ACTIONS(3183), + [anon_sym_PLUS_PLUS] = ACTIONS(3183), + [anon_sym_STAR] = ACTIONS(3185), + [anon_sym_SLASH] = ACTIONS(3185), + [anon_sym_mod] = ACTIONS(3183), + [anon_sym_SLASH_SLASH] = ACTIONS(3183), + [anon_sym_PLUS] = ACTIONS(3185), + [anon_sym_DASH] = ACTIONS(3183), + [anon_sym_bit_DASHshl] = ACTIONS(3183), + [anon_sym_bit_DASHshr] = ACTIONS(3183), + [anon_sym_EQ_TILDE] = ACTIONS(3183), + [anon_sym_BANG_TILDE] = ACTIONS(3183), + [anon_sym_bit_DASHand] = ACTIONS(3183), + [anon_sym_bit_DASHxor] = ACTIONS(3183), + [anon_sym_bit_DASHor] = ACTIONS(3183), + [anon_sym_and] = ACTIONS(3183), + [anon_sym_xor] = ACTIONS(3183), + [anon_sym_or] = ACTIONS(3183), + [anon_sym_in] = ACTIONS(3183), + [anon_sym_not_DASHin] = ACTIONS(3183), + [anon_sym_starts_DASHwith] = ACTIONS(3183), + [anon_sym_ends_DASHwith] = ACTIONS(3183), + [anon_sym_EQ_EQ] = ACTIONS(3183), + [anon_sym_BANG_EQ] = ACTIONS(3183), + [anon_sym_LT] = ACTIONS(3185), + [anon_sym_LT_EQ] = ACTIONS(3183), + [anon_sym_GT] = ACTIONS(3185), + [anon_sym_GT_EQ] = ACTIONS(3183), + [aux_sym_cmd_identifier_token41] = ACTIONS(3187), [sym__newline] = ACTIONS(2237), [anon_sym_SEMI] = ACTIONS(2237), [anon_sym_PIPE] = ACTIONS(2237), @@ -170956,35 +170956,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [869] = { [sym_comment] = STATE(869), - [anon_sym_STAR_STAR] = ACTIONS(3182), - [anon_sym_PLUS_PLUS] = ACTIONS(3182), - [anon_sym_STAR] = ACTIONS(3184), - [anon_sym_SLASH] = ACTIONS(3184), - [anon_sym_mod] = ACTIONS(3182), - [anon_sym_SLASH_SLASH] = ACTIONS(3182), - [anon_sym_PLUS] = ACTIONS(3184), - [anon_sym_DASH] = ACTIONS(3182), - [anon_sym_bit_DASHshl] = ACTIONS(3182), - [anon_sym_bit_DASHshr] = ACTIONS(3182), - [anon_sym_EQ_TILDE] = ACTIONS(3182), - [anon_sym_BANG_TILDE] = ACTIONS(3182), - [anon_sym_bit_DASHand] = ACTIONS(3182), - [anon_sym_bit_DASHxor] = ACTIONS(3182), - [anon_sym_bit_DASHor] = ACTIONS(3182), - [anon_sym_and] = ACTIONS(3182), - [anon_sym_xor] = ACTIONS(3182), - [anon_sym_or] = ACTIONS(3182), - [anon_sym_in] = ACTIONS(3182), - [anon_sym_not_DASHin] = ACTIONS(3182), - [anon_sym_starts_DASHwith] = ACTIONS(3182), - [anon_sym_ends_DASHwith] = ACTIONS(3182), - [anon_sym_EQ_EQ] = ACTIONS(3182), - [anon_sym_BANG_EQ] = ACTIONS(3182), - [anon_sym_LT] = ACTIONS(3184), - [anon_sym_LT_EQ] = ACTIONS(3182), - [anon_sym_GT] = ACTIONS(3184), - [anon_sym_GT_EQ] = ACTIONS(3182), - [aux_sym_cmd_identifier_token41] = ACTIONS(3186), + [anon_sym_STAR_STAR] = ACTIONS(3189), + [anon_sym_PLUS_PLUS] = ACTIONS(3189), + [anon_sym_STAR] = ACTIONS(3191), + [anon_sym_SLASH] = ACTIONS(3191), + [anon_sym_mod] = ACTIONS(3189), + [anon_sym_SLASH_SLASH] = ACTIONS(3189), + [anon_sym_PLUS] = ACTIONS(3191), + [anon_sym_DASH] = ACTIONS(3189), + [anon_sym_bit_DASHshl] = ACTIONS(3189), + [anon_sym_bit_DASHshr] = ACTIONS(3189), + [anon_sym_EQ_TILDE] = ACTIONS(3189), + [anon_sym_BANG_TILDE] = ACTIONS(3189), + [anon_sym_bit_DASHand] = ACTIONS(3189), + [anon_sym_bit_DASHxor] = ACTIONS(3189), + [anon_sym_bit_DASHor] = ACTIONS(3189), + [anon_sym_and] = ACTIONS(3189), + [anon_sym_xor] = ACTIONS(3189), + [anon_sym_or] = ACTIONS(3189), + [anon_sym_in] = ACTIONS(3189), + [anon_sym_not_DASHin] = ACTIONS(3189), + [anon_sym_starts_DASHwith] = ACTIONS(3189), + [anon_sym_ends_DASHwith] = ACTIONS(3189), + [anon_sym_EQ_EQ] = ACTIONS(3189), + [anon_sym_BANG_EQ] = ACTIONS(3189), + [anon_sym_LT] = ACTIONS(3191), + [anon_sym_LT_EQ] = ACTIONS(3189), + [anon_sym_GT] = ACTIONS(3191), + [anon_sym_GT_EQ] = ACTIONS(3189), + [aux_sym_cmd_identifier_token41] = ACTIONS(3193), [sym__newline] = ACTIONS(2237), [anon_sym_SEMI] = ACTIONS(2237), [anon_sym_PIPE] = ACTIONS(2237), @@ -171045,35 +171045,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [870] = { [sym_comment] = STATE(870), - [anon_sym_STAR_STAR] = ACTIONS(3182), - [anon_sym_PLUS_PLUS] = ACTIONS(3182), - [anon_sym_STAR] = ACTIONS(3184), - [anon_sym_SLASH] = ACTIONS(3184), - [anon_sym_mod] = ACTIONS(3182), - [anon_sym_SLASH_SLASH] = ACTIONS(3182), - [anon_sym_PLUS] = ACTIONS(3184), - [anon_sym_DASH] = ACTIONS(3182), - [anon_sym_bit_DASHshl] = ACTIONS(3182), - [anon_sym_bit_DASHshr] = ACTIONS(3182), - [anon_sym_EQ_TILDE] = ACTIONS(3182), - [anon_sym_BANG_TILDE] = ACTIONS(3182), - [anon_sym_bit_DASHand] = ACTIONS(3182), - [anon_sym_bit_DASHxor] = ACTIONS(3182), - [anon_sym_bit_DASHor] = ACTIONS(3182), - [anon_sym_and] = ACTIONS(3182), - [anon_sym_xor] = ACTIONS(3182), - [anon_sym_or] = ACTIONS(3182), - [anon_sym_in] = ACTIONS(3182), - [anon_sym_not_DASHin] = ACTIONS(3182), - [anon_sym_starts_DASHwith] = ACTIONS(3182), - [anon_sym_ends_DASHwith] = ACTIONS(3182), - [anon_sym_EQ_EQ] = ACTIONS(3182), - [anon_sym_BANG_EQ] = ACTIONS(3182), - [anon_sym_LT] = ACTIONS(3184), - [anon_sym_LT_EQ] = ACTIONS(3182), - [anon_sym_GT] = ACTIONS(3184), - [anon_sym_GT_EQ] = ACTIONS(3182), - [aux_sym_cmd_identifier_token41] = ACTIONS(3186), + [anon_sym_STAR_STAR] = ACTIONS(3189), + [anon_sym_PLUS_PLUS] = ACTIONS(3189), + [anon_sym_STAR] = ACTIONS(3191), + [anon_sym_SLASH] = ACTIONS(3191), + [anon_sym_mod] = ACTIONS(3189), + [anon_sym_SLASH_SLASH] = ACTIONS(3189), + [anon_sym_PLUS] = ACTIONS(3191), + [anon_sym_DASH] = ACTIONS(3189), + [anon_sym_bit_DASHshl] = ACTIONS(3189), + [anon_sym_bit_DASHshr] = ACTIONS(3189), + [anon_sym_EQ_TILDE] = ACTIONS(3189), + [anon_sym_BANG_TILDE] = ACTIONS(3189), + [anon_sym_bit_DASHand] = ACTIONS(3189), + [anon_sym_bit_DASHxor] = ACTIONS(3189), + [anon_sym_bit_DASHor] = ACTIONS(3189), + [anon_sym_and] = ACTIONS(3189), + [anon_sym_xor] = ACTIONS(3189), + [anon_sym_or] = ACTIONS(3189), + [anon_sym_in] = ACTIONS(3189), + [anon_sym_not_DASHin] = ACTIONS(3189), + [anon_sym_starts_DASHwith] = ACTIONS(3189), + [anon_sym_ends_DASHwith] = ACTIONS(3189), + [anon_sym_EQ_EQ] = ACTIONS(3189), + [anon_sym_BANG_EQ] = ACTIONS(3189), + [anon_sym_LT] = ACTIONS(3191), + [anon_sym_LT_EQ] = ACTIONS(3189), + [anon_sym_GT] = ACTIONS(3191), + [anon_sym_GT_EQ] = ACTIONS(3189), + [aux_sym_cmd_identifier_token41] = ACTIONS(3193), [sym__newline] = ACTIONS(2245), [anon_sym_SEMI] = ACTIONS(2245), [anon_sym_PIPE] = ACTIONS(2245), @@ -171134,35 +171134,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [871] = { [sym_comment] = STATE(871), - [anon_sym_STAR_STAR] = ACTIONS(3170), - [anon_sym_PLUS_PLUS] = ACTIONS(3170), - [anon_sym_STAR] = ACTIONS(3172), - [anon_sym_SLASH] = ACTIONS(3172), - [anon_sym_mod] = ACTIONS(3170), - [anon_sym_SLASH_SLASH] = ACTIONS(3170), - [anon_sym_PLUS] = ACTIONS(3172), - [anon_sym_DASH] = ACTIONS(3170), - [anon_sym_bit_DASHshl] = ACTIONS(3170), - [anon_sym_bit_DASHshr] = ACTIONS(3170), - [anon_sym_EQ_TILDE] = ACTIONS(3170), - [anon_sym_BANG_TILDE] = ACTIONS(3170), - [anon_sym_bit_DASHand] = ACTIONS(3170), - [anon_sym_bit_DASHxor] = ACTIONS(3170), - [anon_sym_bit_DASHor] = ACTIONS(3170), - [anon_sym_and] = ACTIONS(3170), - [anon_sym_xor] = ACTIONS(3170), - [anon_sym_or] = ACTIONS(3170), - [anon_sym_in] = ACTIONS(3170), - [anon_sym_not_DASHin] = ACTIONS(3170), - [anon_sym_starts_DASHwith] = ACTIONS(3170), - [anon_sym_ends_DASHwith] = ACTIONS(3170), - [anon_sym_EQ_EQ] = ACTIONS(3170), - [anon_sym_BANG_EQ] = ACTIONS(3170), - [anon_sym_LT] = ACTIONS(3172), - [anon_sym_LT_EQ] = ACTIONS(3170), - [anon_sym_GT] = ACTIONS(3172), - [anon_sym_GT_EQ] = ACTIONS(3170), - [aux_sym_cmd_identifier_token41] = ACTIONS(3174), + [anon_sym_STAR_STAR] = ACTIONS(3177), + [anon_sym_PLUS_PLUS] = ACTIONS(3177), + [anon_sym_STAR] = ACTIONS(3179), + [anon_sym_SLASH] = ACTIONS(3179), + [anon_sym_mod] = ACTIONS(3177), + [anon_sym_SLASH_SLASH] = ACTIONS(3177), + [anon_sym_PLUS] = ACTIONS(3179), + [anon_sym_DASH] = ACTIONS(3177), + [anon_sym_bit_DASHshl] = ACTIONS(3177), + [anon_sym_bit_DASHshr] = ACTIONS(3177), + [anon_sym_EQ_TILDE] = ACTIONS(3177), + [anon_sym_BANG_TILDE] = ACTIONS(3177), + [anon_sym_bit_DASHand] = ACTIONS(3177), + [anon_sym_bit_DASHxor] = ACTIONS(3177), + [anon_sym_bit_DASHor] = ACTIONS(3177), + [anon_sym_and] = ACTIONS(3177), + [anon_sym_xor] = ACTIONS(3177), + [anon_sym_or] = ACTIONS(3177), + [anon_sym_in] = ACTIONS(3177), + [anon_sym_not_DASHin] = ACTIONS(3177), + [anon_sym_starts_DASHwith] = ACTIONS(3177), + [anon_sym_ends_DASHwith] = ACTIONS(3177), + [anon_sym_EQ_EQ] = ACTIONS(3177), + [anon_sym_BANG_EQ] = ACTIONS(3177), + [anon_sym_LT] = ACTIONS(3179), + [anon_sym_LT_EQ] = ACTIONS(3177), + [anon_sym_GT] = ACTIONS(3179), + [anon_sym_GT_EQ] = ACTIONS(3177), + [aux_sym_cmd_identifier_token41] = ACTIONS(3181), [sym__newline] = ACTIONS(2237), [anon_sym_SEMI] = ACTIONS(2237), [anon_sym_PIPE] = ACTIONS(2237), @@ -171256,36 +171256,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = STATE(872), [aux_sym_shebang_repeat1] = STATE(2797), [aux_sym_list_body_repeat1] = STATE(1048), - [sym__newline] = ACTIONS(3188), - [anon_sym_LBRACK] = ACTIONS(3128), - [anon_sym_LPAREN] = ACTIONS(3086), - [anon_sym_DOLLAR] = ACTIONS(3088), - [anon_sym_LBRACE] = ACTIONS(3090), - [anon_sym_DOT_DOT] = ACTIONS(3092), + [sym__newline] = ACTIONS(3195), + [anon_sym_LBRACK] = ACTIONS(3135), + [anon_sym_LPAREN] = ACTIONS(3093), + [anon_sym_DOLLAR] = ACTIONS(3095), + [anon_sym_LBRACE] = ACTIONS(3097), + [anon_sym_DOT_DOT] = ACTIONS(3099), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3094), - [anon_sym_DOT_DOT_LT] = ACTIONS(3094), - [anon_sym_null] = ACTIONS(3096), - [anon_sym_true] = ACTIONS(3098), - [anon_sym_false] = ACTIONS(3098), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3101), + [anon_sym_DOT_DOT_LT] = ACTIONS(3101), + [anon_sym_null] = ACTIONS(3103), + [anon_sym_true] = ACTIONS(3105), + [anon_sym_false] = ACTIONS(3105), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), - [aux_sym__val_number_decimal_token1] = ACTIONS(3100), - [aux_sym__val_number_decimal_token2] = ACTIONS(3102), - [aux_sym__val_number_decimal_token3] = ACTIONS(3104), - [aux_sym__val_number_decimal_token4] = ACTIONS(3106), - [aux_sym__val_number_token1] = ACTIONS(3108), - [aux_sym__val_number_token2] = ACTIONS(3108), - [aux_sym__val_number_token3] = ACTIONS(3108), - [aux_sym__val_number_token4] = ACTIONS(3110), - [aux_sym__val_number_token5] = ACTIONS(3110), - [aux_sym__val_number_token6] = ACTIONS(3110), - [anon_sym_0b] = ACTIONS(3112), - [anon_sym_0o] = ACTIONS(3114), - [anon_sym_0x] = ACTIONS(3114), - [sym_val_date] = ACTIONS(3116), - [anon_sym_DQUOTE] = ACTIONS(3118), - [sym__str_single_quotes] = ACTIONS(3120), - [sym__str_back_ticks] = ACTIONS(3120), + [aux_sym__val_number_decimal_token1] = ACTIONS(3107), + [aux_sym__val_number_decimal_token2] = ACTIONS(3109), + [aux_sym__val_number_decimal_token3] = ACTIONS(3111), + [aux_sym__val_number_decimal_token4] = ACTIONS(3113), + [aux_sym__val_number_token1] = ACTIONS(3115), + [aux_sym__val_number_token2] = ACTIONS(3115), + [aux_sym__val_number_token3] = ACTIONS(3115), + [aux_sym__val_number_token4] = ACTIONS(3117), + [aux_sym__val_number_token5] = ACTIONS(3117), + [aux_sym__val_number_token6] = ACTIONS(3117), + [anon_sym_0b] = ACTIONS(3119), + [anon_sym_0o] = ACTIONS(3121), + [anon_sym_0x] = ACTIONS(3121), + [sym_val_date] = ACTIONS(3123), + [anon_sym_DQUOTE] = ACTIONS(3125), + [sym__str_single_quotes] = ACTIONS(3127), + [sym__str_back_ticks] = ACTIONS(3127), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2581), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2583), [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2585), @@ -171305,9 +171305,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2589), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2589), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2589), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3122), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3129), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3124), + [sym_raw_string_begin] = ACTIONS(3131), }, [873] = { [sym_expr_parenthesized] = STATE(5918), @@ -171344,36 +171344,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = STATE(873), [aux_sym_shebang_repeat1] = STATE(2797), [aux_sym_list_body_repeat1] = STATE(1048), - [sym__newline] = ACTIONS(3188), - [anon_sym_LBRACK] = ACTIONS(3128), - [anon_sym_LPAREN] = ACTIONS(3086), - [anon_sym_DOLLAR] = ACTIONS(3088), - [anon_sym_LBRACE] = ACTIONS(3090), - [anon_sym_DOT_DOT] = ACTIONS(3092), + [sym__newline] = ACTIONS(3195), + [anon_sym_LBRACK] = ACTIONS(3135), + [anon_sym_LPAREN] = ACTIONS(3093), + [anon_sym_DOLLAR] = ACTIONS(3095), + [anon_sym_LBRACE] = ACTIONS(3097), + [anon_sym_DOT_DOT] = ACTIONS(3099), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3094), - [anon_sym_DOT_DOT_LT] = ACTIONS(3094), - [anon_sym_null] = ACTIONS(3096), - [anon_sym_true] = ACTIONS(3098), - [anon_sym_false] = ACTIONS(3098), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3101), + [anon_sym_DOT_DOT_LT] = ACTIONS(3101), + [anon_sym_null] = ACTIONS(3103), + [anon_sym_true] = ACTIONS(3105), + [anon_sym_false] = ACTIONS(3105), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), - [aux_sym__val_number_decimal_token1] = ACTIONS(3100), - [aux_sym__val_number_decimal_token2] = ACTIONS(3102), - [aux_sym__val_number_decimal_token3] = ACTIONS(3104), - [aux_sym__val_number_decimal_token4] = ACTIONS(3106), - [aux_sym__val_number_token1] = ACTIONS(3108), - [aux_sym__val_number_token2] = ACTIONS(3108), - [aux_sym__val_number_token3] = ACTIONS(3108), - [aux_sym__val_number_token4] = ACTIONS(3110), - [aux_sym__val_number_token5] = ACTIONS(3110), - [aux_sym__val_number_token6] = ACTIONS(3110), - [anon_sym_0b] = ACTIONS(3112), - [anon_sym_0o] = ACTIONS(3114), - [anon_sym_0x] = ACTIONS(3114), - [sym_val_date] = ACTIONS(3116), - [anon_sym_DQUOTE] = ACTIONS(3118), - [sym__str_single_quotes] = ACTIONS(3120), - [sym__str_back_ticks] = ACTIONS(3120), + [aux_sym__val_number_decimal_token1] = ACTIONS(3107), + [aux_sym__val_number_decimal_token2] = ACTIONS(3109), + [aux_sym__val_number_decimal_token3] = ACTIONS(3111), + [aux_sym__val_number_decimal_token4] = ACTIONS(3113), + [aux_sym__val_number_token1] = ACTIONS(3115), + [aux_sym__val_number_token2] = ACTIONS(3115), + [aux_sym__val_number_token3] = ACTIONS(3115), + [aux_sym__val_number_token4] = ACTIONS(3117), + [aux_sym__val_number_token5] = ACTIONS(3117), + [aux_sym__val_number_token6] = ACTIONS(3117), + [anon_sym_0b] = ACTIONS(3119), + [anon_sym_0o] = ACTIONS(3121), + [anon_sym_0x] = ACTIONS(3121), + [sym_val_date] = ACTIONS(3123), + [anon_sym_DQUOTE] = ACTIONS(3125), + [sym__str_single_quotes] = ACTIONS(3127), + [sym__str_back_ticks] = ACTIONS(3127), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2581), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2583), [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2585), @@ -171393,9 +171393,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2589), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2589), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2589), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3122), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3129), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3124), + [sym_raw_string_begin] = ACTIONS(3131), }, [874] = { [sym_expr_parenthesized] = STATE(5918), @@ -171432,36 +171432,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = STATE(874), [aux_sym_shebang_repeat1] = STATE(2797), [aux_sym_list_body_repeat1] = STATE(1048), - [sym__newline] = ACTIONS(3188), - [anon_sym_LBRACK] = ACTIONS(3128), - [anon_sym_LPAREN] = ACTIONS(3086), - [anon_sym_DOLLAR] = ACTIONS(3088), - [anon_sym_LBRACE] = ACTIONS(3090), - [anon_sym_DOT_DOT] = ACTIONS(3092), + [sym__newline] = ACTIONS(3195), + [anon_sym_LBRACK] = ACTIONS(3135), + [anon_sym_LPAREN] = ACTIONS(3093), + [anon_sym_DOLLAR] = ACTIONS(3095), + [anon_sym_LBRACE] = ACTIONS(3097), + [anon_sym_DOT_DOT] = ACTIONS(3099), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3094), - [anon_sym_DOT_DOT_LT] = ACTIONS(3094), - [anon_sym_null] = ACTIONS(3096), - [anon_sym_true] = ACTIONS(3098), - [anon_sym_false] = ACTIONS(3098), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3101), + [anon_sym_DOT_DOT_LT] = ACTIONS(3101), + [anon_sym_null] = ACTIONS(3103), + [anon_sym_true] = ACTIONS(3105), + [anon_sym_false] = ACTIONS(3105), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), - [aux_sym__val_number_decimal_token1] = ACTIONS(3100), - [aux_sym__val_number_decimal_token2] = ACTIONS(3102), - [aux_sym__val_number_decimal_token3] = ACTIONS(3104), - [aux_sym__val_number_decimal_token4] = ACTIONS(3106), - [aux_sym__val_number_token1] = ACTIONS(3108), - [aux_sym__val_number_token2] = ACTIONS(3108), - [aux_sym__val_number_token3] = ACTIONS(3108), - [aux_sym__val_number_token4] = ACTIONS(3110), - [aux_sym__val_number_token5] = ACTIONS(3110), - [aux_sym__val_number_token6] = ACTIONS(3110), - [anon_sym_0b] = ACTIONS(3112), - [anon_sym_0o] = ACTIONS(3114), - [anon_sym_0x] = ACTIONS(3114), - [sym_val_date] = ACTIONS(3116), - [anon_sym_DQUOTE] = ACTIONS(3118), - [sym__str_single_quotes] = ACTIONS(3120), - [sym__str_back_ticks] = ACTIONS(3120), + [aux_sym__val_number_decimal_token1] = ACTIONS(3107), + [aux_sym__val_number_decimal_token2] = ACTIONS(3109), + [aux_sym__val_number_decimal_token3] = ACTIONS(3111), + [aux_sym__val_number_decimal_token4] = ACTIONS(3113), + [aux_sym__val_number_token1] = ACTIONS(3115), + [aux_sym__val_number_token2] = ACTIONS(3115), + [aux_sym__val_number_token3] = ACTIONS(3115), + [aux_sym__val_number_token4] = ACTIONS(3117), + [aux_sym__val_number_token5] = ACTIONS(3117), + [aux_sym__val_number_token6] = ACTIONS(3117), + [anon_sym_0b] = ACTIONS(3119), + [anon_sym_0o] = ACTIONS(3121), + [anon_sym_0x] = ACTIONS(3121), + [sym_val_date] = ACTIONS(3123), + [anon_sym_DQUOTE] = ACTIONS(3125), + [sym__str_single_quotes] = ACTIONS(3127), + [sym__str_back_ticks] = ACTIONS(3127), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2581), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2583), [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2585), @@ -171481,9 +171481,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2589), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2589), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2589), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3122), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3129), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3124), + [sym_raw_string_begin] = ACTIONS(3131), }, [875] = { [sym_expr_parenthesized] = STATE(5918), @@ -171520,36 +171520,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = STATE(875), [aux_sym_shebang_repeat1] = STATE(2797), [aux_sym_list_body_repeat1] = STATE(1048), - [sym__newline] = ACTIONS(3188), - [anon_sym_LBRACK] = ACTIONS(3082), - [anon_sym_LPAREN] = ACTIONS(3086), - [anon_sym_DOLLAR] = ACTIONS(3088), - [anon_sym_LBRACE] = ACTIONS(3090), - [anon_sym_DOT_DOT] = ACTIONS(3092), + [sym__newline] = ACTIONS(3195), + [anon_sym_LBRACK] = ACTIONS(3089), + [anon_sym_LPAREN] = ACTIONS(3093), + [anon_sym_DOLLAR] = ACTIONS(3095), + [anon_sym_LBRACE] = ACTIONS(3097), + [anon_sym_DOT_DOT] = ACTIONS(3099), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3094), - [anon_sym_DOT_DOT_LT] = ACTIONS(3094), - [anon_sym_null] = ACTIONS(3096), - [anon_sym_true] = ACTIONS(3098), - [anon_sym_false] = ACTIONS(3098), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3101), + [anon_sym_DOT_DOT_LT] = ACTIONS(3101), + [anon_sym_null] = ACTIONS(3103), + [anon_sym_true] = ACTIONS(3105), + [anon_sym_false] = ACTIONS(3105), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), - [aux_sym__val_number_decimal_token1] = ACTIONS(3100), - [aux_sym__val_number_decimal_token2] = ACTIONS(3102), - [aux_sym__val_number_decimal_token3] = ACTIONS(3104), - [aux_sym__val_number_decimal_token4] = ACTIONS(3106), - [aux_sym__val_number_token1] = ACTIONS(3108), - [aux_sym__val_number_token2] = ACTIONS(3108), - [aux_sym__val_number_token3] = ACTIONS(3108), - [aux_sym__val_number_token4] = ACTIONS(3110), - [aux_sym__val_number_token5] = ACTIONS(3110), - [aux_sym__val_number_token6] = ACTIONS(3110), - [anon_sym_0b] = ACTIONS(3112), - [anon_sym_0o] = ACTIONS(3114), - [anon_sym_0x] = ACTIONS(3114), - [sym_val_date] = ACTIONS(3116), - [anon_sym_DQUOTE] = ACTIONS(3118), - [sym__str_single_quotes] = ACTIONS(3120), - [sym__str_back_ticks] = ACTIONS(3120), + [aux_sym__val_number_decimal_token1] = ACTIONS(3107), + [aux_sym__val_number_decimal_token2] = ACTIONS(3109), + [aux_sym__val_number_decimal_token3] = ACTIONS(3111), + [aux_sym__val_number_decimal_token4] = ACTIONS(3113), + [aux_sym__val_number_token1] = ACTIONS(3115), + [aux_sym__val_number_token2] = ACTIONS(3115), + [aux_sym__val_number_token3] = ACTIONS(3115), + [aux_sym__val_number_token4] = ACTIONS(3117), + [aux_sym__val_number_token5] = ACTIONS(3117), + [aux_sym__val_number_token6] = ACTIONS(3117), + [anon_sym_0b] = ACTIONS(3119), + [anon_sym_0o] = ACTIONS(3121), + [anon_sym_0x] = ACTIONS(3121), + [sym_val_date] = ACTIONS(3123), + [anon_sym_DQUOTE] = ACTIONS(3125), + [sym__str_single_quotes] = ACTIONS(3127), + [sym__str_back_ticks] = ACTIONS(3127), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2581), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2583), [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2585), @@ -171569,9 +171569,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2589), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2589), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2589), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3122), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3129), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3124), + [sym_raw_string_begin] = ACTIONS(3131), }, [876] = { [sym_expr_parenthesized] = STATE(5918), @@ -171608,36 +171608,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = STATE(876), [aux_sym_shebang_repeat1] = STATE(2797), [aux_sym_list_body_repeat1] = STATE(1048), - [sym__newline] = ACTIONS(3188), - [anon_sym_LBRACK] = ACTIONS(3128), - [anon_sym_LPAREN] = ACTIONS(3086), - [anon_sym_DOLLAR] = ACTIONS(3088), - [anon_sym_LBRACE] = ACTIONS(3090), - [anon_sym_DOT_DOT] = ACTIONS(3092), + [sym__newline] = ACTIONS(3195), + [anon_sym_LBRACK] = ACTIONS(3135), + [anon_sym_LPAREN] = ACTIONS(3093), + [anon_sym_DOLLAR] = ACTIONS(3095), + [anon_sym_LBRACE] = ACTIONS(3097), + [anon_sym_DOT_DOT] = ACTIONS(3099), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3094), - [anon_sym_DOT_DOT_LT] = ACTIONS(3094), - [anon_sym_null] = ACTIONS(3096), - [anon_sym_true] = ACTIONS(3098), - [anon_sym_false] = ACTIONS(3098), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3101), + [anon_sym_DOT_DOT_LT] = ACTIONS(3101), + [anon_sym_null] = ACTIONS(3103), + [anon_sym_true] = ACTIONS(3105), + [anon_sym_false] = ACTIONS(3105), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), - [aux_sym__val_number_decimal_token1] = ACTIONS(3100), - [aux_sym__val_number_decimal_token2] = ACTIONS(3102), - [aux_sym__val_number_decimal_token3] = ACTIONS(3104), - [aux_sym__val_number_decimal_token4] = ACTIONS(3106), - [aux_sym__val_number_token1] = ACTIONS(3108), - [aux_sym__val_number_token2] = ACTIONS(3108), - [aux_sym__val_number_token3] = ACTIONS(3108), - [aux_sym__val_number_token4] = ACTIONS(3110), - [aux_sym__val_number_token5] = ACTIONS(3110), - [aux_sym__val_number_token6] = ACTIONS(3110), - [anon_sym_0b] = ACTIONS(3112), - [anon_sym_0o] = ACTIONS(3114), - [anon_sym_0x] = ACTIONS(3114), - [sym_val_date] = ACTIONS(3116), - [anon_sym_DQUOTE] = ACTIONS(3118), - [sym__str_single_quotes] = ACTIONS(3120), - [sym__str_back_ticks] = ACTIONS(3120), + [aux_sym__val_number_decimal_token1] = ACTIONS(3107), + [aux_sym__val_number_decimal_token2] = ACTIONS(3109), + [aux_sym__val_number_decimal_token3] = ACTIONS(3111), + [aux_sym__val_number_decimal_token4] = ACTIONS(3113), + [aux_sym__val_number_token1] = ACTIONS(3115), + [aux_sym__val_number_token2] = ACTIONS(3115), + [aux_sym__val_number_token3] = ACTIONS(3115), + [aux_sym__val_number_token4] = ACTIONS(3117), + [aux_sym__val_number_token5] = ACTIONS(3117), + [aux_sym__val_number_token6] = ACTIONS(3117), + [anon_sym_0b] = ACTIONS(3119), + [anon_sym_0o] = ACTIONS(3121), + [anon_sym_0x] = ACTIONS(3121), + [sym_val_date] = ACTIONS(3123), + [anon_sym_DQUOTE] = ACTIONS(3125), + [sym__str_single_quotes] = ACTIONS(3127), + [sym__str_back_ticks] = ACTIONS(3127), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2581), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2583), [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2585), @@ -171657,41 +171657,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2589), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2589), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2589), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3122), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3129), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3124), + [sym_raw_string_begin] = ACTIONS(3131), }, [877] = { [sym_comment] = STATE(877), - [anon_sym_STAR_STAR] = ACTIONS(3170), - [anon_sym_PLUS_PLUS] = ACTIONS(3170), - [anon_sym_STAR] = ACTIONS(3172), - [anon_sym_SLASH] = ACTIONS(3172), - [anon_sym_mod] = ACTIONS(3170), - [anon_sym_SLASH_SLASH] = ACTIONS(3170), - [anon_sym_PLUS] = ACTIONS(3172), - [anon_sym_DASH] = ACTIONS(3170), - [anon_sym_bit_DASHshl] = ACTIONS(3170), - [anon_sym_bit_DASHshr] = ACTIONS(3170), - [anon_sym_EQ_TILDE] = ACTIONS(3170), - [anon_sym_BANG_TILDE] = ACTIONS(3170), - [anon_sym_bit_DASHand] = ACTIONS(3170), - [anon_sym_bit_DASHxor] = ACTIONS(3170), - [anon_sym_bit_DASHor] = ACTIONS(3170), - [anon_sym_and] = ACTIONS(3170), - [anon_sym_xor] = ACTIONS(3170), - [anon_sym_or] = ACTIONS(3170), - [anon_sym_in] = ACTIONS(3170), - [anon_sym_not_DASHin] = ACTIONS(3170), - [anon_sym_starts_DASHwith] = ACTIONS(3170), - [anon_sym_ends_DASHwith] = ACTIONS(3170), - [anon_sym_EQ_EQ] = ACTIONS(3170), - [anon_sym_BANG_EQ] = ACTIONS(3170), - [anon_sym_LT] = ACTIONS(3172), - [anon_sym_LT_EQ] = ACTIONS(3170), - [anon_sym_GT] = ACTIONS(3172), - [anon_sym_GT_EQ] = ACTIONS(3170), - [aux_sym_cmd_identifier_token41] = ACTIONS(3174), + [anon_sym_STAR_STAR] = ACTIONS(3177), + [anon_sym_PLUS_PLUS] = ACTIONS(3177), + [anon_sym_STAR] = ACTIONS(3179), + [anon_sym_SLASH] = ACTIONS(3179), + [anon_sym_mod] = ACTIONS(3177), + [anon_sym_SLASH_SLASH] = ACTIONS(3177), + [anon_sym_PLUS] = ACTIONS(3179), + [anon_sym_DASH] = ACTIONS(3177), + [anon_sym_bit_DASHshl] = ACTIONS(3177), + [anon_sym_bit_DASHshr] = ACTIONS(3177), + [anon_sym_EQ_TILDE] = ACTIONS(3177), + [anon_sym_BANG_TILDE] = ACTIONS(3177), + [anon_sym_bit_DASHand] = ACTIONS(3177), + [anon_sym_bit_DASHxor] = ACTIONS(3177), + [anon_sym_bit_DASHor] = ACTIONS(3177), + [anon_sym_and] = ACTIONS(3177), + [anon_sym_xor] = ACTIONS(3177), + [anon_sym_or] = ACTIONS(3177), + [anon_sym_in] = ACTIONS(3177), + [anon_sym_not_DASHin] = ACTIONS(3177), + [anon_sym_starts_DASHwith] = ACTIONS(3177), + [anon_sym_ends_DASHwith] = ACTIONS(3177), + [anon_sym_EQ_EQ] = ACTIONS(3177), + [anon_sym_BANG_EQ] = ACTIONS(3177), + [anon_sym_LT] = ACTIONS(3179), + [anon_sym_LT_EQ] = ACTIONS(3177), + [anon_sym_GT] = ACTIONS(3179), + [anon_sym_GT_EQ] = ACTIONS(3177), + [aux_sym_cmd_identifier_token41] = ACTIONS(3181), [sym__newline] = ACTIONS(2245), [anon_sym_SEMI] = ACTIONS(2245), [anon_sym_PIPE] = ACTIONS(2245), @@ -171784,36 +171784,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = STATE(878), [aux_sym_shebang_repeat1] = STATE(2797), [aux_sym_list_body_repeat1] = STATE(1048), - [sym__newline] = ACTIONS(3188), - [anon_sym_LBRACK] = ACTIONS(3128), - [anon_sym_LPAREN] = ACTIONS(3086), - [anon_sym_DOLLAR] = ACTIONS(3088), - [anon_sym_LBRACE] = ACTIONS(3090), - [anon_sym_DOT_DOT] = ACTIONS(3092), + [sym__newline] = ACTIONS(3195), + [anon_sym_LBRACK] = ACTIONS(3135), + [anon_sym_LPAREN] = ACTIONS(3093), + [anon_sym_DOLLAR] = ACTIONS(3095), + [anon_sym_LBRACE] = ACTIONS(3097), + [anon_sym_DOT_DOT] = ACTIONS(3099), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3094), - [anon_sym_DOT_DOT_LT] = ACTIONS(3094), - [anon_sym_null] = ACTIONS(3096), - [anon_sym_true] = ACTIONS(3098), - [anon_sym_false] = ACTIONS(3098), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3101), + [anon_sym_DOT_DOT_LT] = ACTIONS(3101), + [anon_sym_null] = ACTIONS(3103), + [anon_sym_true] = ACTIONS(3105), + [anon_sym_false] = ACTIONS(3105), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), - [aux_sym__val_number_decimal_token1] = ACTIONS(3100), - [aux_sym__val_number_decimal_token2] = ACTIONS(3102), - [aux_sym__val_number_decimal_token3] = ACTIONS(3104), - [aux_sym__val_number_decimal_token4] = ACTIONS(3106), - [aux_sym__val_number_token1] = ACTIONS(3108), - [aux_sym__val_number_token2] = ACTIONS(3108), - [aux_sym__val_number_token3] = ACTIONS(3108), - [aux_sym__val_number_token4] = ACTIONS(3110), - [aux_sym__val_number_token5] = ACTIONS(3110), - [aux_sym__val_number_token6] = ACTIONS(3110), - [anon_sym_0b] = ACTIONS(3112), - [anon_sym_0o] = ACTIONS(3114), - [anon_sym_0x] = ACTIONS(3114), - [sym_val_date] = ACTIONS(3116), - [anon_sym_DQUOTE] = ACTIONS(3118), - [sym__str_single_quotes] = ACTIONS(3120), - [sym__str_back_ticks] = ACTIONS(3120), + [aux_sym__val_number_decimal_token1] = ACTIONS(3107), + [aux_sym__val_number_decimal_token2] = ACTIONS(3109), + [aux_sym__val_number_decimal_token3] = ACTIONS(3111), + [aux_sym__val_number_decimal_token4] = ACTIONS(3113), + [aux_sym__val_number_token1] = ACTIONS(3115), + [aux_sym__val_number_token2] = ACTIONS(3115), + [aux_sym__val_number_token3] = ACTIONS(3115), + [aux_sym__val_number_token4] = ACTIONS(3117), + [aux_sym__val_number_token5] = ACTIONS(3117), + [aux_sym__val_number_token6] = ACTIONS(3117), + [anon_sym_0b] = ACTIONS(3119), + [anon_sym_0o] = ACTIONS(3121), + [anon_sym_0x] = ACTIONS(3121), + [sym_val_date] = ACTIONS(3123), + [anon_sym_DQUOTE] = ACTIONS(3125), + [sym__str_single_quotes] = ACTIONS(3127), + [sym__str_back_ticks] = ACTIONS(3127), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2581), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2583), [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2585), @@ -171833,41 +171833,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2589), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2589), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2589), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3122), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3129), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3124), + [sym_raw_string_begin] = ACTIONS(3131), }, [879] = { [sym_comment] = STATE(879), - [anon_sym_STAR_STAR] = ACTIONS(3170), - [anon_sym_PLUS_PLUS] = ACTIONS(3170), - [anon_sym_STAR] = ACTIONS(3172), - [anon_sym_SLASH] = ACTIONS(3172), - [anon_sym_mod] = ACTIONS(3170), - [anon_sym_SLASH_SLASH] = ACTIONS(3170), - [anon_sym_PLUS] = ACTIONS(3172), - [anon_sym_DASH] = ACTIONS(3170), - [anon_sym_bit_DASHshl] = ACTIONS(3170), - [anon_sym_bit_DASHshr] = ACTIONS(3170), - [anon_sym_EQ_TILDE] = ACTIONS(3170), - [anon_sym_BANG_TILDE] = ACTIONS(3170), - [anon_sym_bit_DASHand] = ACTIONS(3170), - [anon_sym_bit_DASHxor] = ACTIONS(3170), - [anon_sym_bit_DASHor] = ACTIONS(3170), - [anon_sym_and] = ACTIONS(3170), - [anon_sym_xor] = ACTIONS(3170), - [anon_sym_or] = ACTIONS(3170), - [anon_sym_in] = ACTIONS(3170), - [anon_sym_not_DASHin] = ACTIONS(3170), - [anon_sym_starts_DASHwith] = ACTIONS(3170), - [anon_sym_ends_DASHwith] = ACTIONS(3170), - [anon_sym_EQ_EQ] = ACTIONS(3170), - [anon_sym_BANG_EQ] = ACTIONS(3170), - [anon_sym_LT] = ACTIONS(3172), - [anon_sym_LT_EQ] = ACTIONS(3170), - [anon_sym_GT] = ACTIONS(3172), - [anon_sym_GT_EQ] = ACTIONS(3170), - [aux_sym_cmd_identifier_token41] = ACTIONS(3174), + [anon_sym_STAR_STAR] = ACTIONS(3177), + [anon_sym_PLUS_PLUS] = ACTIONS(3177), + [anon_sym_STAR] = ACTIONS(3179), + [anon_sym_SLASH] = ACTIONS(3179), + [anon_sym_mod] = ACTIONS(3177), + [anon_sym_SLASH_SLASH] = ACTIONS(3177), + [anon_sym_PLUS] = ACTIONS(3179), + [anon_sym_DASH] = ACTIONS(3177), + [anon_sym_bit_DASHshl] = ACTIONS(3177), + [anon_sym_bit_DASHshr] = ACTIONS(3177), + [anon_sym_EQ_TILDE] = ACTIONS(3177), + [anon_sym_BANG_TILDE] = ACTIONS(3177), + [anon_sym_bit_DASHand] = ACTIONS(3177), + [anon_sym_bit_DASHxor] = ACTIONS(3177), + [anon_sym_bit_DASHor] = ACTIONS(3177), + [anon_sym_and] = ACTIONS(3177), + [anon_sym_xor] = ACTIONS(3177), + [anon_sym_or] = ACTIONS(3177), + [anon_sym_in] = ACTIONS(3177), + [anon_sym_not_DASHin] = ACTIONS(3177), + [anon_sym_starts_DASHwith] = ACTIONS(3177), + [anon_sym_ends_DASHwith] = ACTIONS(3177), + [anon_sym_EQ_EQ] = ACTIONS(3177), + [anon_sym_BANG_EQ] = ACTIONS(3177), + [anon_sym_LT] = ACTIONS(3179), + [anon_sym_LT_EQ] = ACTIONS(3177), + [anon_sym_GT] = ACTIONS(3179), + [anon_sym_GT_EQ] = ACTIONS(3177), + [aux_sym_cmd_identifier_token41] = ACTIONS(3181), [sym__newline] = ACTIONS(2237), [anon_sym_SEMI] = ACTIONS(2237), [anon_sym_PIPE] = ACTIONS(2237), @@ -171960,36 +171960,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = STATE(880), [aux_sym_shebang_repeat1] = STATE(2797), [aux_sym_list_body_repeat1] = STATE(1048), - [sym__newline] = ACTIONS(3188), - [anon_sym_LBRACK] = ACTIONS(3128), - [anon_sym_LPAREN] = ACTIONS(3086), - [anon_sym_DOLLAR] = ACTIONS(3088), - [anon_sym_LBRACE] = ACTIONS(3090), - [anon_sym_DOT_DOT] = ACTIONS(3092), + [sym__newline] = ACTIONS(3195), + [anon_sym_LBRACK] = ACTIONS(3135), + [anon_sym_LPAREN] = ACTIONS(3093), + [anon_sym_DOLLAR] = ACTIONS(3095), + [anon_sym_LBRACE] = ACTIONS(3097), + [anon_sym_DOT_DOT] = ACTIONS(3099), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3094), - [anon_sym_DOT_DOT_LT] = ACTIONS(3094), - [anon_sym_null] = ACTIONS(3096), - [anon_sym_true] = ACTIONS(3098), - [anon_sym_false] = ACTIONS(3098), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3101), + [anon_sym_DOT_DOT_LT] = ACTIONS(3101), + [anon_sym_null] = ACTIONS(3103), + [anon_sym_true] = ACTIONS(3105), + [anon_sym_false] = ACTIONS(3105), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), - [aux_sym__val_number_decimal_token1] = ACTIONS(3100), - [aux_sym__val_number_decimal_token2] = ACTIONS(3102), - [aux_sym__val_number_decimal_token3] = ACTIONS(3104), - [aux_sym__val_number_decimal_token4] = ACTIONS(3106), - [aux_sym__val_number_token1] = ACTIONS(3108), - [aux_sym__val_number_token2] = ACTIONS(3108), - [aux_sym__val_number_token3] = ACTIONS(3108), - [aux_sym__val_number_token4] = ACTIONS(3110), - [aux_sym__val_number_token5] = ACTIONS(3110), - [aux_sym__val_number_token6] = ACTIONS(3110), - [anon_sym_0b] = ACTIONS(3112), - [anon_sym_0o] = ACTIONS(3114), - [anon_sym_0x] = ACTIONS(3114), - [sym_val_date] = ACTIONS(3116), - [anon_sym_DQUOTE] = ACTIONS(3118), - [sym__str_single_quotes] = ACTIONS(3120), - [sym__str_back_ticks] = ACTIONS(3120), + [aux_sym__val_number_decimal_token1] = ACTIONS(3107), + [aux_sym__val_number_decimal_token2] = ACTIONS(3109), + [aux_sym__val_number_decimal_token3] = ACTIONS(3111), + [aux_sym__val_number_decimal_token4] = ACTIONS(3113), + [aux_sym__val_number_token1] = ACTIONS(3115), + [aux_sym__val_number_token2] = ACTIONS(3115), + [aux_sym__val_number_token3] = ACTIONS(3115), + [aux_sym__val_number_token4] = ACTIONS(3117), + [aux_sym__val_number_token5] = ACTIONS(3117), + [aux_sym__val_number_token6] = ACTIONS(3117), + [anon_sym_0b] = ACTIONS(3119), + [anon_sym_0o] = ACTIONS(3121), + [anon_sym_0x] = ACTIONS(3121), + [sym_val_date] = ACTIONS(3123), + [anon_sym_DQUOTE] = ACTIONS(3125), + [sym__str_single_quotes] = ACTIONS(3127), + [sym__str_back_ticks] = ACTIONS(3127), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2581), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2583), [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2585), @@ -172009,9 +172009,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2589), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2589), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2589), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3122), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3129), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3124), + [sym_raw_string_begin] = ACTIONS(3131), }, [881] = { [sym_expr_parenthesized] = STATE(5918), @@ -172048,36 +172048,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = STATE(881), [aux_sym_shebang_repeat1] = STATE(2797), [aux_sym_list_body_repeat1] = STATE(1048), - [sym__newline] = ACTIONS(3188), - [anon_sym_LBRACK] = ACTIONS(3128), - [anon_sym_LPAREN] = ACTIONS(3086), - [anon_sym_DOLLAR] = ACTIONS(3088), - [anon_sym_LBRACE] = ACTIONS(3090), - [anon_sym_DOT_DOT] = ACTIONS(3092), + [sym__newline] = ACTIONS(3195), + [anon_sym_LBRACK] = ACTIONS(3135), + [anon_sym_LPAREN] = ACTIONS(3093), + [anon_sym_DOLLAR] = ACTIONS(3095), + [anon_sym_LBRACE] = ACTIONS(3097), + [anon_sym_DOT_DOT] = ACTIONS(3099), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3094), - [anon_sym_DOT_DOT_LT] = ACTIONS(3094), - [anon_sym_null] = ACTIONS(3096), - [anon_sym_true] = ACTIONS(3098), - [anon_sym_false] = ACTIONS(3098), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3101), + [anon_sym_DOT_DOT_LT] = ACTIONS(3101), + [anon_sym_null] = ACTIONS(3103), + [anon_sym_true] = ACTIONS(3105), + [anon_sym_false] = ACTIONS(3105), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), - [aux_sym__val_number_decimal_token1] = ACTIONS(3100), - [aux_sym__val_number_decimal_token2] = ACTIONS(3102), - [aux_sym__val_number_decimal_token3] = ACTIONS(3104), - [aux_sym__val_number_decimal_token4] = ACTIONS(3106), - [aux_sym__val_number_token1] = ACTIONS(3108), - [aux_sym__val_number_token2] = ACTIONS(3108), - [aux_sym__val_number_token3] = ACTIONS(3108), - [aux_sym__val_number_token4] = ACTIONS(3110), - [aux_sym__val_number_token5] = ACTIONS(3110), - [aux_sym__val_number_token6] = ACTIONS(3110), - [anon_sym_0b] = ACTIONS(3112), - [anon_sym_0o] = ACTIONS(3114), - [anon_sym_0x] = ACTIONS(3114), - [sym_val_date] = ACTIONS(3116), - [anon_sym_DQUOTE] = ACTIONS(3118), - [sym__str_single_quotes] = ACTIONS(3120), - [sym__str_back_ticks] = ACTIONS(3120), + [aux_sym__val_number_decimal_token1] = ACTIONS(3107), + [aux_sym__val_number_decimal_token2] = ACTIONS(3109), + [aux_sym__val_number_decimal_token3] = ACTIONS(3111), + [aux_sym__val_number_decimal_token4] = ACTIONS(3113), + [aux_sym__val_number_token1] = ACTIONS(3115), + [aux_sym__val_number_token2] = ACTIONS(3115), + [aux_sym__val_number_token3] = ACTIONS(3115), + [aux_sym__val_number_token4] = ACTIONS(3117), + [aux_sym__val_number_token5] = ACTIONS(3117), + [aux_sym__val_number_token6] = ACTIONS(3117), + [anon_sym_0b] = ACTIONS(3119), + [anon_sym_0o] = ACTIONS(3121), + [anon_sym_0x] = ACTIONS(3121), + [sym_val_date] = ACTIONS(3123), + [anon_sym_DQUOTE] = ACTIONS(3125), + [sym__str_single_quotes] = ACTIONS(3127), + [sym__str_back_ticks] = ACTIONS(3127), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2581), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2583), [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2585), @@ -172097,9 +172097,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2589), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2589), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2589), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3122), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3129), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3124), + [sym_raw_string_begin] = ACTIONS(3131), }, [882] = { [sym_expr_parenthesized] = STATE(5918), @@ -172136,36 +172136,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = STATE(882), [aux_sym_shebang_repeat1] = STATE(2797), [aux_sym_list_body_repeat1] = STATE(1048), - [sym__newline] = ACTIONS(3188), - [anon_sym_LBRACK] = ACTIONS(3128), - [anon_sym_LPAREN] = ACTIONS(3086), - [anon_sym_DOLLAR] = ACTIONS(3088), - [anon_sym_LBRACE] = ACTIONS(3090), - [anon_sym_DOT_DOT] = ACTIONS(3092), + [sym__newline] = ACTIONS(3195), + [anon_sym_LBRACK] = ACTIONS(3135), + [anon_sym_LPAREN] = ACTIONS(3093), + [anon_sym_DOLLAR] = ACTIONS(3095), + [anon_sym_LBRACE] = ACTIONS(3097), + [anon_sym_DOT_DOT] = ACTIONS(3099), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3094), - [anon_sym_DOT_DOT_LT] = ACTIONS(3094), - [anon_sym_null] = ACTIONS(3096), - [anon_sym_true] = ACTIONS(3098), - [anon_sym_false] = ACTIONS(3098), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3101), + [anon_sym_DOT_DOT_LT] = ACTIONS(3101), + [anon_sym_null] = ACTIONS(3103), + [anon_sym_true] = ACTIONS(3105), + [anon_sym_false] = ACTIONS(3105), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), - [aux_sym__val_number_decimal_token1] = ACTIONS(3100), - [aux_sym__val_number_decimal_token2] = ACTIONS(3102), - [aux_sym__val_number_decimal_token3] = ACTIONS(3104), - [aux_sym__val_number_decimal_token4] = ACTIONS(3106), - [aux_sym__val_number_token1] = ACTIONS(3108), - [aux_sym__val_number_token2] = ACTIONS(3108), - [aux_sym__val_number_token3] = ACTIONS(3108), - [aux_sym__val_number_token4] = ACTIONS(3110), - [aux_sym__val_number_token5] = ACTIONS(3110), - [aux_sym__val_number_token6] = ACTIONS(3110), - [anon_sym_0b] = ACTIONS(3112), - [anon_sym_0o] = ACTIONS(3114), - [anon_sym_0x] = ACTIONS(3114), - [sym_val_date] = ACTIONS(3116), - [anon_sym_DQUOTE] = ACTIONS(3118), - [sym__str_single_quotes] = ACTIONS(3120), - [sym__str_back_ticks] = ACTIONS(3120), + [aux_sym__val_number_decimal_token1] = ACTIONS(3107), + [aux_sym__val_number_decimal_token2] = ACTIONS(3109), + [aux_sym__val_number_decimal_token3] = ACTIONS(3111), + [aux_sym__val_number_decimal_token4] = ACTIONS(3113), + [aux_sym__val_number_token1] = ACTIONS(3115), + [aux_sym__val_number_token2] = ACTIONS(3115), + [aux_sym__val_number_token3] = ACTIONS(3115), + [aux_sym__val_number_token4] = ACTIONS(3117), + [aux_sym__val_number_token5] = ACTIONS(3117), + [aux_sym__val_number_token6] = ACTIONS(3117), + [anon_sym_0b] = ACTIONS(3119), + [anon_sym_0o] = ACTIONS(3121), + [anon_sym_0x] = ACTIONS(3121), + [sym_val_date] = ACTIONS(3123), + [anon_sym_DQUOTE] = ACTIONS(3125), + [sym__str_single_quotes] = ACTIONS(3127), + [sym__str_back_ticks] = ACTIONS(3127), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2581), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2583), [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2585), @@ -172185,9 +172185,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2589), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2589), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2589), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3122), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3129), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3124), + [sym_raw_string_begin] = ACTIONS(3131), }, [883] = { [sym_expr_parenthesized] = STATE(5918), @@ -172224,36 +172224,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = STATE(883), [aux_sym_shebang_repeat1] = STATE(2797), [aux_sym_list_body_repeat1] = STATE(1048), - [sym__newline] = ACTIONS(3188), - [anon_sym_LBRACK] = ACTIONS(3128), - [anon_sym_LPAREN] = ACTIONS(3086), - [anon_sym_DOLLAR] = ACTIONS(3088), - [anon_sym_LBRACE] = ACTIONS(3090), - [anon_sym_DOT_DOT] = ACTIONS(3092), + [sym__newline] = ACTIONS(3195), + [anon_sym_LBRACK] = ACTIONS(3135), + [anon_sym_LPAREN] = ACTIONS(3093), + [anon_sym_DOLLAR] = ACTIONS(3095), + [anon_sym_LBRACE] = ACTIONS(3097), + [anon_sym_DOT_DOT] = ACTIONS(3099), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3094), - [anon_sym_DOT_DOT_LT] = ACTIONS(3094), - [anon_sym_null] = ACTIONS(3096), - [anon_sym_true] = ACTIONS(3098), - [anon_sym_false] = ACTIONS(3098), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3101), + [anon_sym_DOT_DOT_LT] = ACTIONS(3101), + [anon_sym_null] = ACTIONS(3103), + [anon_sym_true] = ACTIONS(3105), + [anon_sym_false] = ACTIONS(3105), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), - [aux_sym__val_number_decimal_token1] = ACTIONS(3100), - [aux_sym__val_number_decimal_token2] = ACTIONS(3102), - [aux_sym__val_number_decimal_token3] = ACTIONS(3104), - [aux_sym__val_number_decimal_token4] = ACTIONS(3106), - [aux_sym__val_number_token1] = ACTIONS(3108), - [aux_sym__val_number_token2] = ACTIONS(3108), - [aux_sym__val_number_token3] = ACTIONS(3108), - [aux_sym__val_number_token4] = ACTIONS(3110), - [aux_sym__val_number_token5] = ACTIONS(3110), - [aux_sym__val_number_token6] = ACTIONS(3110), - [anon_sym_0b] = ACTIONS(3112), - [anon_sym_0o] = ACTIONS(3114), - [anon_sym_0x] = ACTIONS(3114), - [sym_val_date] = ACTIONS(3116), - [anon_sym_DQUOTE] = ACTIONS(3118), - [sym__str_single_quotes] = ACTIONS(3120), - [sym__str_back_ticks] = ACTIONS(3120), + [aux_sym__val_number_decimal_token1] = ACTIONS(3107), + [aux_sym__val_number_decimal_token2] = ACTIONS(3109), + [aux_sym__val_number_decimal_token3] = ACTIONS(3111), + [aux_sym__val_number_decimal_token4] = ACTIONS(3113), + [aux_sym__val_number_token1] = ACTIONS(3115), + [aux_sym__val_number_token2] = ACTIONS(3115), + [aux_sym__val_number_token3] = ACTIONS(3115), + [aux_sym__val_number_token4] = ACTIONS(3117), + [aux_sym__val_number_token5] = ACTIONS(3117), + [aux_sym__val_number_token6] = ACTIONS(3117), + [anon_sym_0b] = ACTIONS(3119), + [anon_sym_0o] = ACTIONS(3121), + [anon_sym_0x] = ACTIONS(3121), + [sym_val_date] = ACTIONS(3123), + [anon_sym_DQUOTE] = ACTIONS(3125), + [sym__str_single_quotes] = ACTIONS(3127), + [sym__str_back_ticks] = ACTIONS(3127), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2581), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2583), [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2585), @@ -172273,9 +172273,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2589), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2589), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2589), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3122), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3129), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3124), + [sym_raw_string_begin] = ACTIONS(3131), }, [884] = { [sym_expr_parenthesized] = STATE(5918), @@ -172312,36 +172312,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = STATE(884), [aux_sym_shebang_repeat1] = STATE(2797), [aux_sym_list_body_repeat1] = STATE(1048), - [sym__newline] = ACTIONS(3188), - [anon_sym_LBRACK] = ACTIONS(3128), - [anon_sym_LPAREN] = ACTIONS(3086), - [anon_sym_DOLLAR] = ACTIONS(3088), - [anon_sym_LBRACE] = ACTIONS(3090), - [anon_sym_DOT_DOT] = ACTIONS(3092), + [sym__newline] = ACTIONS(3195), + [anon_sym_LBRACK] = ACTIONS(3135), + [anon_sym_LPAREN] = ACTIONS(3093), + [anon_sym_DOLLAR] = ACTIONS(3095), + [anon_sym_LBRACE] = ACTIONS(3097), + [anon_sym_DOT_DOT] = ACTIONS(3099), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3094), - [anon_sym_DOT_DOT_LT] = ACTIONS(3094), - [anon_sym_null] = ACTIONS(3096), - [anon_sym_true] = ACTIONS(3098), - [anon_sym_false] = ACTIONS(3098), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3101), + [anon_sym_DOT_DOT_LT] = ACTIONS(3101), + [anon_sym_null] = ACTIONS(3103), + [anon_sym_true] = ACTIONS(3105), + [anon_sym_false] = ACTIONS(3105), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), - [aux_sym__val_number_decimal_token1] = ACTIONS(3100), - [aux_sym__val_number_decimal_token2] = ACTIONS(3102), - [aux_sym__val_number_decimal_token3] = ACTIONS(3104), - [aux_sym__val_number_decimal_token4] = ACTIONS(3106), - [aux_sym__val_number_token1] = ACTIONS(3108), - [aux_sym__val_number_token2] = ACTIONS(3108), - [aux_sym__val_number_token3] = ACTIONS(3108), - [aux_sym__val_number_token4] = ACTIONS(3110), - [aux_sym__val_number_token5] = ACTIONS(3110), - [aux_sym__val_number_token6] = ACTIONS(3110), - [anon_sym_0b] = ACTIONS(3112), - [anon_sym_0o] = ACTIONS(3114), - [anon_sym_0x] = ACTIONS(3114), - [sym_val_date] = ACTIONS(3116), - [anon_sym_DQUOTE] = ACTIONS(3118), - [sym__str_single_quotes] = ACTIONS(3120), - [sym__str_back_ticks] = ACTIONS(3120), + [aux_sym__val_number_decimal_token1] = ACTIONS(3107), + [aux_sym__val_number_decimal_token2] = ACTIONS(3109), + [aux_sym__val_number_decimal_token3] = ACTIONS(3111), + [aux_sym__val_number_decimal_token4] = ACTIONS(3113), + [aux_sym__val_number_token1] = ACTIONS(3115), + [aux_sym__val_number_token2] = ACTIONS(3115), + [aux_sym__val_number_token3] = ACTIONS(3115), + [aux_sym__val_number_token4] = ACTIONS(3117), + [aux_sym__val_number_token5] = ACTIONS(3117), + [aux_sym__val_number_token6] = ACTIONS(3117), + [anon_sym_0b] = ACTIONS(3119), + [anon_sym_0o] = ACTIONS(3121), + [anon_sym_0x] = ACTIONS(3121), + [sym_val_date] = ACTIONS(3123), + [anon_sym_DQUOTE] = ACTIONS(3125), + [sym__str_single_quotes] = ACTIONS(3127), + [sym__str_back_ticks] = ACTIONS(3127), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2581), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2583), [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2585), @@ -172361,9 +172361,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2589), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2589), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2589), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3122), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3129), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3124), + [sym_raw_string_begin] = ACTIONS(3131), }, [885] = { [sym_expr_parenthesized] = STATE(5918), @@ -172400,36 +172400,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = STATE(885), [aux_sym_shebang_repeat1] = STATE(2797), [aux_sym_list_body_repeat1] = STATE(1048), - [sym__newline] = ACTIONS(3188), - [anon_sym_LBRACK] = ACTIONS(3128), - [anon_sym_LPAREN] = ACTIONS(3086), - [anon_sym_DOLLAR] = ACTIONS(3088), - [anon_sym_LBRACE] = ACTIONS(3090), - [anon_sym_DOT_DOT] = ACTIONS(3092), + [sym__newline] = ACTIONS(3195), + [anon_sym_LBRACK] = ACTIONS(3135), + [anon_sym_LPAREN] = ACTIONS(3093), + [anon_sym_DOLLAR] = ACTIONS(3095), + [anon_sym_LBRACE] = ACTIONS(3097), + [anon_sym_DOT_DOT] = ACTIONS(3099), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3094), - [anon_sym_DOT_DOT_LT] = ACTIONS(3094), - [anon_sym_null] = ACTIONS(3096), - [anon_sym_true] = ACTIONS(3098), - [anon_sym_false] = ACTIONS(3098), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3101), + [anon_sym_DOT_DOT_LT] = ACTIONS(3101), + [anon_sym_null] = ACTIONS(3103), + [anon_sym_true] = ACTIONS(3105), + [anon_sym_false] = ACTIONS(3105), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), - [aux_sym__val_number_decimal_token1] = ACTIONS(3100), - [aux_sym__val_number_decimal_token2] = ACTIONS(3102), - [aux_sym__val_number_decimal_token3] = ACTIONS(3104), - [aux_sym__val_number_decimal_token4] = ACTIONS(3106), - [aux_sym__val_number_token1] = ACTIONS(3108), - [aux_sym__val_number_token2] = ACTIONS(3108), - [aux_sym__val_number_token3] = ACTIONS(3108), - [aux_sym__val_number_token4] = ACTIONS(3110), - [aux_sym__val_number_token5] = ACTIONS(3110), - [aux_sym__val_number_token6] = ACTIONS(3110), - [anon_sym_0b] = ACTIONS(3112), - [anon_sym_0o] = ACTIONS(3114), - [anon_sym_0x] = ACTIONS(3114), - [sym_val_date] = ACTIONS(3116), - [anon_sym_DQUOTE] = ACTIONS(3118), - [sym__str_single_quotes] = ACTIONS(3120), - [sym__str_back_ticks] = ACTIONS(3120), + [aux_sym__val_number_decimal_token1] = ACTIONS(3107), + [aux_sym__val_number_decimal_token2] = ACTIONS(3109), + [aux_sym__val_number_decimal_token3] = ACTIONS(3111), + [aux_sym__val_number_decimal_token4] = ACTIONS(3113), + [aux_sym__val_number_token1] = ACTIONS(3115), + [aux_sym__val_number_token2] = ACTIONS(3115), + [aux_sym__val_number_token3] = ACTIONS(3115), + [aux_sym__val_number_token4] = ACTIONS(3117), + [aux_sym__val_number_token5] = ACTIONS(3117), + [aux_sym__val_number_token6] = ACTIONS(3117), + [anon_sym_0b] = ACTIONS(3119), + [anon_sym_0o] = ACTIONS(3121), + [anon_sym_0x] = ACTIONS(3121), + [sym_val_date] = ACTIONS(3123), + [anon_sym_DQUOTE] = ACTIONS(3125), + [sym__str_single_quotes] = ACTIONS(3127), + [sym__str_back_ticks] = ACTIONS(3127), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2581), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2583), [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2585), @@ -172449,9 +172449,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2589), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2589), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2589), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3122), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3129), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3124), + [sym_raw_string_begin] = ACTIONS(3131), }, [886] = { [sym_expr_parenthesized] = STATE(5918), @@ -172488,36 +172488,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = STATE(886), [aux_sym_shebang_repeat1] = STATE(2797), [aux_sym_list_body_repeat1] = STATE(1048), - [sym__newline] = ACTIONS(3188), - [anon_sym_LBRACK] = ACTIONS(3128), - [anon_sym_LPAREN] = ACTIONS(3086), - [anon_sym_DOLLAR] = ACTIONS(3088), - [anon_sym_LBRACE] = ACTIONS(3090), - [anon_sym_DOT_DOT] = ACTIONS(3092), + [sym__newline] = ACTIONS(3195), + [anon_sym_LBRACK] = ACTIONS(3135), + [anon_sym_LPAREN] = ACTIONS(3093), + [anon_sym_DOLLAR] = ACTIONS(3095), + [anon_sym_LBRACE] = ACTIONS(3097), + [anon_sym_DOT_DOT] = ACTIONS(3099), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3094), - [anon_sym_DOT_DOT_LT] = ACTIONS(3094), - [anon_sym_null] = ACTIONS(3096), - [anon_sym_true] = ACTIONS(3098), - [anon_sym_false] = ACTIONS(3098), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3101), + [anon_sym_DOT_DOT_LT] = ACTIONS(3101), + [anon_sym_null] = ACTIONS(3103), + [anon_sym_true] = ACTIONS(3105), + [anon_sym_false] = ACTIONS(3105), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), - [aux_sym__val_number_decimal_token1] = ACTIONS(3100), - [aux_sym__val_number_decimal_token2] = ACTIONS(3102), - [aux_sym__val_number_decimal_token3] = ACTIONS(3104), - [aux_sym__val_number_decimal_token4] = ACTIONS(3106), - [aux_sym__val_number_token1] = ACTIONS(3108), - [aux_sym__val_number_token2] = ACTIONS(3108), - [aux_sym__val_number_token3] = ACTIONS(3108), - [aux_sym__val_number_token4] = ACTIONS(3110), - [aux_sym__val_number_token5] = ACTIONS(3110), - [aux_sym__val_number_token6] = ACTIONS(3110), - [anon_sym_0b] = ACTIONS(3112), - [anon_sym_0o] = ACTIONS(3114), - [anon_sym_0x] = ACTIONS(3114), - [sym_val_date] = ACTIONS(3116), - [anon_sym_DQUOTE] = ACTIONS(3118), - [sym__str_single_quotes] = ACTIONS(3120), - [sym__str_back_ticks] = ACTIONS(3120), + [aux_sym__val_number_decimal_token1] = ACTIONS(3107), + [aux_sym__val_number_decimal_token2] = ACTIONS(3109), + [aux_sym__val_number_decimal_token3] = ACTIONS(3111), + [aux_sym__val_number_decimal_token4] = ACTIONS(3113), + [aux_sym__val_number_token1] = ACTIONS(3115), + [aux_sym__val_number_token2] = ACTIONS(3115), + [aux_sym__val_number_token3] = ACTIONS(3115), + [aux_sym__val_number_token4] = ACTIONS(3117), + [aux_sym__val_number_token5] = ACTIONS(3117), + [aux_sym__val_number_token6] = ACTIONS(3117), + [anon_sym_0b] = ACTIONS(3119), + [anon_sym_0o] = ACTIONS(3121), + [anon_sym_0x] = ACTIONS(3121), + [sym_val_date] = ACTIONS(3123), + [anon_sym_DQUOTE] = ACTIONS(3125), + [sym__str_single_quotes] = ACTIONS(3127), + [sym__str_back_ticks] = ACTIONS(3127), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2581), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2583), [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2585), @@ -172537,9 +172537,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2589), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2589), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2589), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3122), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3129), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3124), + [sym_raw_string_begin] = ACTIONS(3131), }, [887] = { [sym_expr_parenthesized] = STATE(5918), @@ -172576,36 +172576,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = STATE(887), [aux_sym_shebang_repeat1] = STATE(2797), [aux_sym_list_body_repeat1] = STATE(1048), - [sym__newline] = ACTIONS(3188), - [anon_sym_LBRACK] = ACTIONS(3128), - [anon_sym_LPAREN] = ACTIONS(3086), - [anon_sym_DOLLAR] = ACTIONS(3088), - [anon_sym_LBRACE] = ACTIONS(3090), - [anon_sym_DOT_DOT] = ACTIONS(3092), + [sym__newline] = ACTIONS(3195), + [anon_sym_LBRACK] = ACTIONS(3135), + [anon_sym_LPAREN] = ACTIONS(3093), + [anon_sym_DOLLAR] = ACTIONS(3095), + [anon_sym_LBRACE] = ACTIONS(3097), + [anon_sym_DOT_DOT] = ACTIONS(3099), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3094), - [anon_sym_DOT_DOT_LT] = ACTIONS(3094), - [anon_sym_null] = ACTIONS(3096), - [anon_sym_true] = ACTIONS(3098), - [anon_sym_false] = ACTIONS(3098), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3101), + [anon_sym_DOT_DOT_LT] = ACTIONS(3101), + [anon_sym_null] = ACTIONS(3103), + [anon_sym_true] = ACTIONS(3105), + [anon_sym_false] = ACTIONS(3105), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), - [aux_sym__val_number_decimal_token1] = ACTIONS(3100), - [aux_sym__val_number_decimal_token2] = ACTIONS(3102), - [aux_sym__val_number_decimal_token3] = ACTIONS(3104), - [aux_sym__val_number_decimal_token4] = ACTIONS(3106), - [aux_sym__val_number_token1] = ACTIONS(3108), - [aux_sym__val_number_token2] = ACTIONS(3108), - [aux_sym__val_number_token3] = ACTIONS(3108), - [aux_sym__val_number_token4] = ACTIONS(3110), - [aux_sym__val_number_token5] = ACTIONS(3110), - [aux_sym__val_number_token6] = ACTIONS(3110), - [anon_sym_0b] = ACTIONS(3112), - [anon_sym_0o] = ACTIONS(3114), - [anon_sym_0x] = ACTIONS(3114), - [sym_val_date] = ACTIONS(3116), - [anon_sym_DQUOTE] = ACTIONS(3118), - [sym__str_single_quotes] = ACTIONS(3120), - [sym__str_back_ticks] = ACTIONS(3120), + [aux_sym__val_number_decimal_token1] = ACTIONS(3107), + [aux_sym__val_number_decimal_token2] = ACTIONS(3109), + [aux_sym__val_number_decimal_token3] = ACTIONS(3111), + [aux_sym__val_number_decimal_token4] = ACTIONS(3113), + [aux_sym__val_number_token1] = ACTIONS(3115), + [aux_sym__val_number_token2] = ACTIONS(3115), + [aux_sym__val_number_token3] = ACTIONS(3115), + [aux_sym__val_number_token4] = ACTIONS(3117), + [aux_sym__val_number_token5] = ACTIONS(3117), + [aux_sym__val_number_token6] = ACTIONS(3117), + [anon_sym_0b] = ACTIONS(3119), + [anon_sym_0o] = ACTIONS(3121), + [anon_sym_0x] = ACTIONS(3121), + [sym_val_date] = ACTIONS(3123), + [anon_sym_DQUOTE] = ACTIONS(3125), + [sym__str_single_quotes] = ACTIONS(3127), + [sym__str_back_ticks] = ACTIONS(3127), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2581), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2583), [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2585), @@ -172625,9 +172625,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2589), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2589), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2589), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3122), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3129), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3124), + [sym_raw_string_begin] = ACTIONS(3131), }, [888] = { [sym_expr_parenthesized] = STATE(5918), @@ -172664,36 +172664,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = STATE(888), [aux_sym_shebang_repeat1] = STATE(2797), [aux_sym_list_body_repeat1] = STATE(1048), - [sym__newline] = ACTIONS(3188), - [anon_sym_LBRACK] = ACTIONS(3128), - [anon_sym_LPAREN] = ACTIONS(3086), - [anon_sym_DOLLAR] = ACTIONS(3088), - [anon_sym_LBRACE] = ACTIONS(3090), - [anon_sym_DOT_DOT] = ACTIONS(3092), + [sym__newline] = ACTIONS(3195), + [anon_sym_LBRACK] = ACTIONS(3135), + [anon_sym_LPAREN] = ACTIONS(3093), + [anon_sym_DOLLAR] = ACTIONS(3095), + [anon_sym_LBRACE] = ACTIONS(3097), + [anon_sym_DOT_DOT] = ACTIONS(3099), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3094), - [anon_sym_DOT_DOT_LT] = ACTIONS(3094), - [anon_sym_null] = ACTIONS(3096), - [anon_sym_true] = ACTIONS(3098), - [anon_sym_false] = ACTIONS(3098), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3101), + [anon_sym_DOT_DOT_LT] = ACTIONS(3101), + [anon_sym_null] = ACTIONS(3103), + [anon_sym_true] = ACTIONS(3105), + [anon_sym_false] = ACTIONS(3105), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), - [aux_sym__val_number_decimal_token1] = ACTIONS(3100), - [aux_sym__val_number_decimal_token2] = ACTIONS(3102), - [aux_sym__val_number_decimal_token3] = ACTIONS(3104), - [aux_sym__val_number_decimal_token4] = ACTIONS(3106), - [aux_sym__val_number_token1] = ACTIONS(3108), - [aux_sym__val_number_token2] = ACTIONS(3108), - [aux_sym__val_number_token3] = ACTIONS(3108), - [aux_sym__val_number_token4] = ACTIONS(3110), - [aux_sym__val_number_token5] = ACTIONS(3110), - [aux_sym__val_number_token6] = ACTIONS(3110), - [anon_sym_0b] = ACTIONS(3112), - [anon_sym_0o] = ACTIONS(3114), - [anon_sym_0x] = ACTIONS(3114), - [sym_val_date] = ACTIONS(3116), - [anon_sym_DQUOTE] = ACTIONS(3118), - [sym__str_single_quotes] = ACTIONS(3120), - [sym__str_back_ticks] = ACTIONS(3120), + [aux_sym__val_number_decimal_token1] = ACTIONS(3107), + [aux_sym__val_number_decimal_token2] = ACTIONS(3109), + [aux_sym__val_number_decimal_token3] = ACTIONS(3111), + [aux_sym__val_number_decimal_token4] = ACTIONS(3113), + [aux_sym__val_number_token1] = ACTIONS(3115), + [aux_sym__val_number_token2] = ACTIONS(3115), + [aux_sym__val_number_token3] = ACTIONS(3115), + [aux_sym__val_number_token4] = ACTIONS(3117), + [aux_sym__val_number_token5] = ACTIONS(3117), + [aux_sym__val_number_token6] = ACTIONS(3117), + [anon_sym_0b] = ACTIONS(3119), + [anon_sym_0o] = ACTIONS(3121), + [anon_sym_0x] = ACTIONS(3121), + [sym_val_date] = ACTIONS(3123), + [anon_sym_DQUOTE] = ACTIONS(3125), + [sym__str_single_quotes] = ACTIONS(3127), + [sym__str_back_ticks] = ACTIONS(3127), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2581), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2583), [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2585), @@ -172713,9 +172713,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2589), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2589), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2589), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3122), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3129), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3124), + [sym_raw_string_begin] = ACTIONS(3131), }, [889] = { [sym_expr_parenthesized] = STATE(5918), @@ -172752,36 +172752,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = STATE(889), [aux_sym_shebang_repeat1] = STATE(2797), [aux_sym_list_body_repeat1] = STATE(1048), - [sym__newline] = ACTIONS(3188), - [anon_sym_LBRACK] = ACTIONS(3128), - [anon_sym_LPAREN] = ACTIONS(3086), - [anon_sym_DOLLAR] = ACTIONS(3088), - [anon_sym_LBRACE] = ACTIONS(3090), - [anon_sym_DOT_DOT] = ACTIONS(3092), + [sym__newline] = ACTIONS(3195), + [anon_sym_LBRACK] = ACTIONS(3135), + [anon_sym_LPAREN] = ACTIONS(3093), + [anon_sym_DOLLAR] = ACTIONS(3095), + [anon_sym_LBRACE] = ACTIONS(3097), + [anon_sym_DOT_DOT] = ACTIONS(3099), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3094), - [anon_sym_DOT_DOT_LT] = ACTIONS(3094), - [anon_sym_null] = ACTIONS(3096), - [anon_sym_true] = ACTIONS(3098), - [anon_sym_false] = ACTIONS(3098), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3101), + [anon_sym_DOT_DOT_LT] = ACTIONS(3101), + [anon_sym_null] = ACTIONS(3103), + [anon_sym_true] = ACTIONS(3105), + [anon_sym_false] = ACTIONS(3105), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), - [aux_sym__val_number_decimal_token1] = ACTIONS(3100), - [aux_sym__val_number_decimal_token2] = ACTIONS(3102), - [aux_sym__val_number_decimal_token3] = ACTIONS(3104), - [aux_sym__val_number_decimal_token4] = ACTIONS(3106), - [aux_sym__val_number_token1] = ACTIONS(3108), - [aux_sym__val_number_token2] = ACTIONS(3108), - [aux_sym__val_number_token3] = ACTIONS(3108), - [aux_sym__val_number_token4] = ACTIONS(3110), - [aux_sym__val_number_token5] = ACTIONS(3110), - [aux_sym__val_number_token6] = ACTIONS(3110), - [anon_sym_0b] = ACTIONS(3112), - [anon_sym_0o] = ACTIONS(3114), - [anon_sym_0x] = ACTIONS(3114), - [sym_val_date] = ACTIONS(3116), - [anon_sym_DQUOTE] = ACTIONS(3118), - [sym__str_single_quotes] = ACTIONS(3120), - [sym__str_back_ticks] = ACTIONS(3120), + [aux_sym__val_number_decimal_token1] = ACTIONS(3107), + [aux_sym__val_number_decimal_token2] = ACTIONS(3109), + [aux_sym__val_number_decimal_token3] = ACTIONS(3111), + [aux_sym__val_number_decimal_token4] = ACTIONS(3113), + [aux_sym__val_number_token1] = ACTIONS(3115), + [aux_sym__val_number_token2] = ACTIONS(3115), + [aux_sym__val_number_token3] = ACTIONS(3115), + [aux_sym__val_number_token4] = ACTIONS(3117), + [aux_sym__val_number_token5] = ACTIONS(3117), + [aux_sym__val_number_token6] = ACTIONS(3117), + [anon_sym_0b] = ACTIONS(3119), + [anon_sym_0o] = ACTIONS(3121), + [anon_sym_0x] = ACTIONS(3121), + [sym_val_date] = ACTIONS(3123), + [anon_sym_DQUOTE] = ACTIONS(3125), + [sym__str_single_quotes] = ACTIONS(3127), + [sym__str_back_ticks] = ACTIONS(3127), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2581), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2583), [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2585), @@ -172801,9 +172801,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2589), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2589), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2589), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3122), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3129), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3124), + [sym_raw_string_begin] = ACTIONS(3131), }, [890] = { [sym_expr_parenthesized] = STATE(5918), @@ -172840,36 +172840,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = STATE(890), [aux_sym_shebang_repeat1] = STATE(2797), [aux_sym_list_body_repeat1] = STATE(1048), - [sym__newline] = ACTIONS(3188), - [anon_sym_LBRACK] = ACTIONS(3128), - [anon_sym_LPAREN] = ACTIONS(3086), - [anon_sym_DOLLAR] = ACTIONS(3088), - [anon_sym_LBRACE] = ACTIONS(3090), - [anon_sym_DOT_DOT] = ACTIONS(3092), + [sym__newline] = ACTIONS(3195), + [anon_sym_LBRACK] = ACTIONS(3135), + [anon_sym_LPAREN] = ACTIONS(3093), + [anon_sym_DOLLAR] = ACTIONS(3095), + [anon_sym_LBRACE] = ACTIONS(3097), + [anon_sym_DOT_DOT] = ACTIONS(3099), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3094), - [anon_sym_DOT_DOT_LT] = ACTIONS(3094), - [anon_sym_null] = ACTIONS(3096), - [anon_sym_true] = ACTIONS(3098), - [anon_sym_false] = ACTIONS(3098), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3101), + [anon_sym_DOT_DOT_LT] = ACTIONS(3101), + [anon_sym_null] = ACTIONS(3103), + [anon_sym_true] = ACTIONS(3105), + [anon_sym_false] = ACTIONS(3105), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), - [aux_sym__val_number_decimal_token1] = ACTIONS(3100), - [aux_sym__val_number_decimal_token2] = ACTIONS(3102), - [aux_sym__val_number_decimal_token3] = ACTIONS(3104), - [aux_sym__val_number_decimal_token4] = ACTIONS(3106), - [aux_sym__val_number_token1] = ACTIONS(3108), - [aux_sym__val_number_token2] = ACTIONS(3108), - [aux_sym__val_number_token3] = ACTIONS(3108), - [aux_sym__val_number_token4] = ACTIONS(3110), - [aux_sym__val_number_token5] = ACTIONS(3110), - [aux_sym__val_number_token6] = ACTIONS(3110), - [anon_sym_0b] = ACTIONS(3112), - [anon_sym_0o] = ACTIONS(3114), - [anon_sym_0x] = ACTIONS(3114), - [sym_val_date] = ACTIONS(3116), - [anon_sym_DQUOTE] = ACTIONS(3118), - [sym__str_single_quotes] = ACTIONS(3120), - [sym__str_back_ticks] = ACTIONS(3120), + [aux_sym__val_number_decimal_token1] = ACTIONS(3107), + [aux_sym__val_number_decimal_token2] = ACTIONS(3109), + [aux_sym__val_number_decimal_token3] = ACTIONS(3111), + [aux_sym__val_number_decimal_token4] = ACTIONS(3113), + [aux_sym__val_number_token1] = ACTIONS(3115), + [aux_sym__val_number_token2] = ACTIONS(3115), + [aux_sym__val_number_token3] = ACTIONS(3115), + [aux_sym__val_number_token4] = ACTIONS(3117), + [aux_sym__val_number_token5] = ACTIONS(3117), + [aux_sym__val_number_token6] = ACTIONS(3117), + [anon_sym_0b] = ACTIONS(3119), + [anon_sym_0o] = ACTIONS(3121), + [anon_sym_0x] = ACTIONS(3121), + [sym_val_date] = ACTIONS(3123), + [anon_sym_DQUOTE] = ACTIONS(3125), + [sym__str_single_quotes] = ACTIONS(3127), + [sym__str_back_ticks] = ACTIONS(3127), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2581), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2583), [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2585), @@ -172889,9 +172889,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2589), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2589), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2589), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3122), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3129), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3124), + [sym_raw_string_begin] = ACTIONS(3131), }, [891] = { [sym_expr_parenthesized] = STATE(5918), @@ -172928,36 +172928,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = STATE(891), [aux_sym_shebang_repeat1] = STATE(2797), [aux_sym_list_body_repeat1] = STATE(1048), - [sym__newline] = ACTIONS(3188), - [anon_sym_LBRACK] = ACTIONS(3128), - [anon_sym_LPAREN] = ACTIONS(3086), - [anon_sym_DOLLAR] = ACTIONS(3088), - [anon_sym_LBRACE] = ACTIONS(3090), - [anon_sym_DOT_DOT] = ACTIONS(3092), + [sym__newline] = ACTIONS(3195), + [anon_sym_LBRACK] = ACTIONS(3135), + [anon_sym_LPAREN] = ACTIONS(3093), + [anon_sym_DOLLAR] = ACTIONS(3095), + [anon_sym_LBRACE] = ACTIONS(3097), + [anon_sym_DOT_DOT] = ACTIONS(3099), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3094), - [anon_sym_DOT_DOT_LT] = ACTIONS(3094), - [anon_sym_null] = ACTIONS(3096), - [anon_sym_true] = ACTIONS(3098), - [anon_sym_false] = ACTIONS(3098), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3101), + [anon_sym_DOT_DOT_LT] = ACTIONS(3101), + [anon_sym_null] = ACTIONS(3103), + [anon_sym_true] = ACTIONS(3105), + [anon_sym_false] = ACTIONS(3105), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), - [aux_sym__val_number_decimal_token1] = ACTIONS(3100), - [aux_sym__val_number_decimal_token2] = ACTIONS(3102), - [aux_sym__val_number_decimal_token3] = ACTIONS(3104), - [aux_sym__val_number_decimal_token4] = ACTIONS(3106), - [aux_sym__val_number_token1] = ACTIONS(3108), - [aux_sym__val_number_token2] = ACTIONS(3108), - [aux_sym__val_number_token3] = ACTIONS(3108), - [aux_sym__val_number_token4] = ACTIONS(3110), - [aux_sym__val_number_token5] = ACTIONS(3110), - [aux_sym__val_number_token6] = ACTIONS(3110), - [anon_sym_0b] = ACTIONS(3112), - [anon_sym_0o] = ACTIONS(3114), - [anon_sym_0x] = ACTIONS(3114), - [sym_val_date] = ACTIONS(3116), - [anon_sym_DQUOTE] = ACTIONS(3118), - [sym__str_single_quotes] = ACTIONS(3120), - [sym__str_back_ticks] = ACTIONS(3120), + [aux_sym__val_number_decimal_token1] = ACTIONS(3107), + [aux_sym__val_number_decimal_token2] = ACTIONS(3109), + [aux_sym__val_number_decimal_token3] = ACTIONS(3111), + [aux_sym__val_number_decimal_token4] = ACTIONS(3113), + [aux_sym__val_number_token1] = ACTIONS(3115), + [aux_sym__val_number_token2] = ACTIONS(3115), + [aux_sym__val_number_token3] = ACTIONS(3115), + [aux_sym__val_number_token4] = ACTIONS(3117), + [aux_sym__val_number_token5] = ACTIONS(3117), + [aux_sym__val_number_token6] = ACTIONS(3117), + [anon_sym_0b] = ACTIONS(3119), + [anon_sym_0o] = ACTIONS(3121), + [anon_sym_0x] = ACTIONS(3121), + [sym_val_date] = ACTIONS(3123), + [anon_sym_DQUOTE] = ACTIONS(3125), + [sym__str_single_quotes] = ACTIONS(3127), + [sym__str_back_ticks] = ACTIONS(3127), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2581), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2583), [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2585), @@ -172977,41 +172977,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2589), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2589), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2589), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3122), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3129), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3124), + [sym_raw_string_begin] = ACTIONS(3131), }, [892] = { [sym_comment] = STATE(892), - [anon_sym_STAR_STAR] = ACTIONS(3170), - [anon_sym_PLUS_PLUS] = ACTIONS(3170), - [anon_sym_STAR] = ACTIONS(3172), - [anon_sym_SLASH] = ACTIONS(3172), - [anon_sym_mod] = ACTIONS(3170), - [anon_sym_SLASH_SLASH] = ACTIONS(3170), - [anon_sym_PLUS] = ACTIONS(3172), - [anon_sym_DASH] = ACTIONS(3170), - [anon_sym_bit_DASHshl] = ACTIONS(3170), - [anon_sym_bit_DASHshr] = ACTIONS(3170), - [anon_sym_EQ_TILDE] = ACTIONS(3170), - [anon_sym_BANG_TILDE] = ACTIONS(3170), - [anon_sym_bit_DASHand] = ACTIONS(3170), - [anon_sym_bit_DASHxor] = ACTIONS(3170), - [anon_sym_bit_DASHor] = ACTIONS(3170), - [anon_sym_and] = ACTIONS(3170), - [anon_sym_xor] = ACTIONS(3170), - [anon_sym_or] = ACTIONS(3170), - [anon_sym_in] = ACTIONS(3170), - [anon_sym_not_DASHin] = ACTIONS(3170), - [anon_sym_starts_DASHwith] = ACTIONS(3170), - [anon_sym_ends_DASHwith] = ACTIONS(3170), - [anon_sym_EQ_EQ] = ACTIONS(3170), - [anon_sym_BANG_EQ] = ACTIONS(3170), - [anon_sym_LT] = ACTIONS(3172), - [anon_sym_LT_EQ] = ACTIONS(3170), - [anon_sym_GT] = ACTIONS(3172), - [anon_sym_GT_EQ] = ACTIONS(3170), - [aux_sym_cmd_identifier_token41] = ACTIONS(3174), + [anon_sym_STAR_STAR] = ACTIONS(3177), + [anon_sym_PLUS_PLUS] = ACTIONS(3177), + [anon_sym_STAR] = ACTIONS(3179), + [anon_sym_SLASH] = ACTIONS(3179), + [anon_sym_mod] = ACTIONS(3177), + [anon_sym_SLASH_SLASH] = ACTIONS(3177), + [anon_sym_PLUS] = ACTIONS(3179), + [anon_sym_DASH] = ACTIONS(3177), + [anon_sym_bit_DASHshl] = ACTIONS(3177), + [anon_sym_bit_DASHshr] = ACTIONS(3177), + [anon_sym_EQ_TILDE] = ACTIONS(3177), + [anon_sym_BANG_TILDE] = ACTIONS(3177), + [anon_sym_bit_DASHand] = ACTIONS(3177), + [anon_sym_bit_DASHxor] = ACTIONS(3177), + [anon_sym_bit_DASHor] = ACTIONS(3177), + [anon_sym_and] = ACTIONS(3177), + [anon_sym_xor] = ACTIONS(3177), + [anon_sym_or] = ACTIONS(3177), + [anon_sym_in] = ACTIONS(3177), + [anon_sym_not_DASHin] = ACTIONS(3177), + [anon_sym_starts_DASHwith] = ACTIONS(3177), + [anon_sym_ends_DASHwith] = ACTIONS(3177), + [anon_sym_EQ_EQ] = ACTIONS(3177), + [anon_sym_BANG_EQ] = ACTIONS(3177), + [anon_sym_LT] = ACTIONS(3179), + [anon_sym_LT_EQ] = ACTIONS(3177), + [anon_sym_GT] = ACTIONS(3179), + [anon_sym_GT_EQ] = ACTIONS(3177), + [aux_sym_cmd_identifier_token41] = ACTIONS(3181), [sym__newline] = ACTIONS(2245), [anon_sym_PIPE] = ACTIONS(2245), [anon_sym_err_GT_PIPE] = ACTIONS(2245), @@ -173070,35 +173070,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [893] = { [sym_comment] = STATE(893), - [anon_sym_STAR_STAR] = ACTIONS(3170), - [anon_sym_PLUS_PLUS] = ACTIONS(3170), - [anon_sym_STAR] = ACTIONS(3172), - [anon_sym_SLASH] = ACTIONS(3172), - [anon_sym_mod] = ACTIONS(3170), - [anon_sym_SLASH_SLASH] = ACTIONS(3170), - [anon_sym_PLUS] = ACTIONS(3172), - [anon_sym_DASH] = ACTIONS(3170), - [anon_sym_bit_DASHshl] = ACTIONS(3170), - [anon_sym_bit_DASHshr] = ACTIONS(3170), - [anon_sym_EQ_TILDE] = ACTIONS(3170), - [anon_sym_BANG_TILDE] = ACTIONS(3170), - [anon_sym_bit_DASHand] = ACTIONS(3170), - [anon_sym_bit_DASHxor] = ACTIONS(3170), - [anon_sym_bit_DASHor] = ACTIONS(3170), - [anon_sym_and] = ACTIONS(3170), - [anon_sym_xor] = ACTIONS(3170), - [anon_sym_or] = ACTIONS(3170), - [anon_sym_in] = ACTIONS(3170), - [anon_sym_not_DASHin] = ACTIONS(3170), - [anon_sym_starts_DASHwith] = ACTIONS(3170), - [anon_sym_ends_DASHwith] = ACTIONS(3170), - [anon_sym_EQ_EQ] = ACTIONS(3170), - [anon_sym_BANG_EQ] = ACTIONS(3170), - [anon_sym_LT] = ACTIONS(3172), - [anon_sym_LT_EQ] = ACTIONS(3170), - [anon_sym_GT] = ACTIONS(3172), - [anon_sym_GT_EQ] = ACTIONS(3170), - [aux_sym_cmd_identifier_token41] = ACTIONS(3174), + [anon_sym_STAR_STAR] = ACTIONS(3177), + [anon_sym_PLUS_PLUS] = ACTIONS(3177), + [anon_sym_STAR] = ACTIONS(3179), + [anon_sym_SLASH] = ACTIONS(3179), + [anon_sym_mod] = ACTIONS(3177), + [anon_sym_SLASH_SLASH] = ACTIONS(3177), + [anon_sym_PLUS] = ACTIONS(3179), + [anon_sym_DASH] = ACTIONS(3177), + [anon_sym_bit_DASHshl] = ACTIONS(3177), + [anon_sym_bit_DASHshr] = ACTIONS(3177), + [anon_sym_EQ_TILDE] = ACTIONS(3177), + [anon_sym_BANG_TILDE] = ACTIONS(3177), + [anon_sym_bit_DASHand] = ACTIONS(3177), + [anon_sym_bit_DASHxor] = ACTIONS(3177), + [anon_sym_bit_DASHor] = ACTIONS(3177), + [anon_sym_and] = ACTIONS(3177), + [anon_sym_xor] = ACTIONS(3177), + [anon_sym_or] = ACTIONS(3177), + [anon_sym_in] = ACTIONS(3177), + [anon_sym_not_DASHin] = ACTIONS(3177), + [anon_sym_starts_DASHwith] = ACTIONS(3177), + [anon_sym_ends_DASHwith] = ACTIONS(3177), + [anon_sym_EQ_EQ] = ACTIONS(3177), + [anon_sym_BANG_EQ] = ACTIONS(3177), + [anon_sym_LT] = ACTIONS(3179), + [anon_sym_LT_EQ] = ACTIONS(3177), + [anon_sym_GT] = ACTIONS(3179), + [anon_sym_GT_EQ] = ACTIONS(3177), + [aux_sym_cmd_identifier_token41] = ACTIONS(3181), [sym__newline] = ACTIONS(2237), [anon_sym_PIPE] = ACTIONS(2237), [anon_sym_err_GT_PIPE] = ACTIONS(2237), @@ -173189,33 +173189,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__unquoted_anonymous_prefix] = STATE(7204), [sym_comment] = STATE(894), [aux_sym_shebang_repeat1] = STATE(994), - [sym__newline] = ACTIONS(3190), + [sym__newline] = ACTIONS(3197), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3192), + [anon_sym_DOT_DOT] = ACTIONS(3199), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3194), - [anon_sym_DOT_DOT_LT] = ACTIONS(3194), - [anon_sym_null] = ACTIONS(3196), - [anon_sym_true] = ACTIONS(3198), - [anon_sym_false] = ACTIONS(3198), - [aux_sym__val_number_decimal_token1] = ACTIONS(3200), - [aux_sym__val_number_decimal_token2] = ACTIONS(3202), - [aux_sym__val_number_decimal_token3] = ACTIONS(3204), - [aux_sym__val_number_decimal_token4] = ACTIONS(3206), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3201), + [anon_sym_DOT_DOT_LT] = ACTIONS(3201), + [anon_sym_null] = ACTIONS(3203), + [anon_sym_true] = ACTIONS(3205), + [anon_sym_false] = ACTIONS(3205), + [aux_sym__val_number_decimal_token1] = ACTIONS(3207), + [aux_sym__val_number_decimal_token2] = ACTIONS(3209), + [aux_sym__val_number_decimal_token3] = ACTIONS(3211), + [aux_sym__val_number_decimal_token4] = ACTIONS(3213), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3208), - [aux_sym__val_number_token5] = ACTIONS(3208), - [aux_sym__val_number_token6] = ACTIONS(3208), + [aux_sym__val_number_token4] = ACTIONS(3215), + [aux_sym__val_number_token5] = ACTIONS(3215), + [aux_sym__val_number_token6] = ACTIONS(3215), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3210), + [sym_val_date] = ACTIONS(3217), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), @@ -173237,7 +173237,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3212), + [aux_sym_unquoted_token1] = ACTIONS(3219), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, @@ -173275,33 +173275,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__unquoted_anonymous_prefix] = STATE(7204), [sym_comment] = STATE(895), [aux_sym_shebang_repeat1] = STATE(974), - [sym__newline] = ACTIONS(3190), + [sym__newline] = ACTIONS(3197), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3214), + [anon_sym_DOT_DOT] = ACTIONS(3221), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3216), - [anon_sym_DOT_DOT_LT] = ACTIONS(3216), - [anon_sym_null] = ACTIONS(3218), - [anon_sym_true] = ACTIONS(3220), - [anon_sym_false] = ACTIONS(3220), - [aux_sym__val_number_decimal_token1] = ACTIONS(3222), - [aux_sym__val_number_decimal_token2] = ACTIONS(3224), - [aux_sym__val_number_decimal_token3] = ACTIONS(3226), - [aux_sym__val_number_decimal_token4] = ACTIONS(3228), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3223), + [anon_sym_DOT_DOT_LT] = ACTIONS(3223), + [anon_sym_null] = ACTIONS(3225), + [anon_sym_true] = ACTIONS(3227), + [anon_sym_false] = ACTIONS(3227), + [aux_sym__val_number_decimal_token1] = ACTIONS(3229), + [aux_sym__val_number_decimal_token2] = ACTIONS(3231), + [aux_sym__val_number_decimal_token3] = ACTIONS(3233), + [aux_sym__val_number_decimal_token4] = ACTIONS(3235), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3230), - [aux_sym__val_number_token5] = ACTIONS(3230), - [aux_sym__val_number_token6] = ACTIONS(3230), + [aux_sym__val_number_token4] = ACTIONS(3237), + [aux_sym__val_number_token5] = ACTIONS(3237), + [aux_sym__val_number_token6] = ACTIONS(3237), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3232), + [sym_val_date] = ACTIONS(3239), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), @@ -173323,7 +173323,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3212), + [aux_sym_unquoted_token1] = ACTIONS(3219), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, @@ -173361,33 +173361,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__unquoted_anonymous_prefix] = STATE(7204), [sym_comment] = STATE(896), [aux_sym_shebang_repeat1] = STATE(2817), - [sym__newline] = ACTIONS(3190), + [sym__newline] = ACTIONS(3197), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3214), + [anon_sym_DOT_DOT] = ACTIONS(3221), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3216), - [anon_sym_DOT_DOT_LT] = ACTIONS(3216), - [anon_sym_null] = ACTIONS(3218), - [anon_sym_true] = ACTIONS(3220), - [anon_sym_false] = ACTIONS(3220), - [aux_sym__val_number_decimal_token1] = ACTIONS(3222), - [aux_sym__val_number_decimal_token2] = ACTIONS(3224), - [aux_sym__val_number_decimal_token3] = ACTIONS(3226), - [aux_sym__val_number_decimal_token4] = ACTIONS(3228), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3223), + [anon_sym_DOT_DOT_LT] = ACTIONS(3223), + [anon_sym_null] = ACTIONS(3225), + [anon_sym_true] = ACTIONS(3227), + [anon_sym_false] = ACTIONS(3227), + [aux_sym__val_number_decimal_token1] = ACTIONS(3229), + [aux_sym__val_number_decimal_token2] = ACTIONS(3231), + [aux_sym__val_number_decimal_token3] = ACTIONS(3233), + [aux_sym__val_number_decimal_token4] = ACTIONS(3235), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3230), - [aux_sym__val_number_token5] = ACTIONS(3230), - [aux_sym__val_number_token6] = ACTIONS(3230), + [aux_sym__val_number_token4] = ACTIONS(3237), + [aux_sym__val_number_token5] = ACTIONS(3237), + [aux_sym__val_number_token6] = ACTIONS(3237), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3232), + [sym_val_date] = ACTIONS(3239), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), @@ -173409,7 +173409,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3212), + [aux_sym_unquoted_token1] = ACTIONS(3219), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, @@ -173447,33 +173447,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__unquoted_anonymous_prefix] = STATE(7204), [sym_comment] = STATE(897), [aux_sym_shebang_repeat1] = STATE(977), - [sym__newline] = ACTIONS(3190), + [sym__newline] = ACTIONS(3197), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3214), + [anon_sym_DOT_DOT] = ACTIONS(3221), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3216), - [anon_sym_DOT_DOT_LT] = ACTIONS(3216), - [anon_sym_null] = ACTIONS(3218), - [anon_sym_true] = ACTIONS(3220), - [anon_sym_false] = ACTIONS(3220), - [aux_sym__val_number_decimal_token1] = ACTIONS(3222), - [aux_sym__val_number_decimal_token2] = ACTIONS(3224), - [aux_sym__val_number_decimal_token3] = ACTIONS(3226), - [aux_sym__val_number_decimal_token4] = ACTIONS(3228), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3223), + [anon_sym_DOT_DOT_LT] = ACTIONS(3223), + [anon_sym_null] = ACTIONS(3225), + [anon_sym_true] = ACTIONS(3227), + [anon_sym_false] = ACTIONS(3227), + [aux_sym__val_number_decimal_token1] = ACTIONS(3229), + [aux_sym__val_number_decimal_token2] = ACTIONS(3231), + [aux_sym__val_number_decimal_token3] = ACTIONS(3233), + [aux_sym__val_number_decimal_token4] = ACTIONS(3235), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3230), - [aux_sym__val_number_token5] = ACTIONS(3230), - [aux_sym__val_number_token6] = ACTIONS(3230), + [aux_sym__val_number_token4] = ACTIONS(3237), + [aux_sym__val_number_token5] = ACTIONS(3237), + [aux_sym__val_number_token6] = ACTIONS(3237), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3232), + [sym_val_date] = ACTIONS(3239), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), @@ -173495,7 +173495,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3212), + [aux_sym_unquoted_token1] = ACTIONS(3219), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, @@ -173533,33 +173533,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__unquoted_anonymous_prefix] = STATE(7204), [sym_comment] = STATE(898), [aux_sym_shebang_repeat1] = STATE(1052), - [sym__newline] = ACTIONS(3190), + [sym__newline] = ACTIONS(3197), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3214), + [anon_sym_DOT_DOT] = ACTIONS(3221), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3216), - [anon_sym_DOT_DOT_LT] = ACTIONS(3216), - [anon_sym_null] = ACTIONS(3218), - [anon_sym_true] = ACTIONS(3220), - [anon_sym_false] = ACTIONS(3220), - [aux_sym__val_number_decimal_token1] = ACTIONS(3222), - [aux_sym__val_number_decimal_token2] = ACTIONS(3224), - [aux_sym__val_number_decimal_token3] = ACTIONS(3226), - [aux_sym__val_number_decimal_token4] = ACTIONS(3228), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3223), + [anon_sym_DOT_DOT_LT] = ACTIONS(3223), + [anon_sym_null] = ACTIONS(3225), + [anon_sym_true] = ACTIONS(3227), + [anon_sym_false] = ACTIONS(3227), + [aux_sym__val_number_decimal_token1] = ACTIONS(3229), + [aux_sym__val_number_decimal_token2] = ACTIONS(3231), + [aux_sym__val_number_decimal_token3] = ACTIONS(3233), + [aux_sym__val_number_decimal_token4] = ACTIONS(3235), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3230), - [aux_sym__val_number_token5] = ACTIONS(3230), - [aux_sym__val_number_token6] = ACTIONS(3230), + [aux_sym__val_number_token4] = ACTIONS(3237), + [aux_sym__val_number_token5] = ACTIONS(3237), + [aux_sym__val_number_token6] = ACTIONS(3237), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3232), + [sym_val_date] = ACTIONS(3239), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), @@ -173581,7 +173581,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3212), + [aux_sym_unquoted_token1] = ACTIONS(3219), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, @@ -173619,33 +173619,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__unquoted_anonymous_prefix] = STATE(7204), [sym_comment] = STATE(899), [aux_sym_shebang_repeat1] = STATE(1034), - [sym__newline] = ACTIONS(3190), + [sym__newline] = ACTIONS(3197), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3214), + [anon_sym_DOT_DOT] = ACTIONS(3221), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3216), - [anon_sym_DOT_DOT_LT] = ACTIONS(3216), - [anon_sym_null] = ACTIONS(3218), - [anon_sym_true] = ACTIONS(3220), - [anon_sym_false] = ACTIONS(3220), - [aux_sym__val_number_decimal_token1] = ACTIONS(3222), - [aux_sym__val_number_decimal_token2] = ACTIONS(3224), - [aux_sym__val_number_decimal_token3] = ACTIONS(3226), - [aux_sym__val_number_decimal_token4] = ACTIONS(3228), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3223), + [anon_sym_DOT_DOT_LT] = ACTIONS(3223), + [anon_sym_null] = ACTIONS(3225), + [anon_sym_true] = ACTIONS(3227), + [anon_sym_false] = ACTIONS(3227), + [aux_sym__val_number_decimal_token1] = ACTIONS(3229), + [aux_sym__val_number_decimal_token2] = ACTIONS(3231), + [aux_sym__val_number_decimal_token3] = ACTIONS(3233), + [aux_sym__val_number_decimal_token4] = ACTIONS(3235), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3230), - [aux_sym__val_number_token5] = ACTIONS(3230), - [aux_sym__val_number_token6] = ACTIONS(3230), + [aux_sym__val_number_token4] = ACTIONS(3237), + [aux_sym__val_number_token5] = ACTIONS(3237), + [aux_sym__val_number_token6] = ACTIONS(3237), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3232), + [sym_val_date] = ACTIONS(3239), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), @@ -173667,7 +173667,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3212), + [aux_sym_unquoted_token1] = ACTIONS(3219), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, @@ -173705,33 +173705,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__unquoted_anonymous_prefix] = STATE(7204), [sym_comment] = STATE(900), [aux_sym_shebang_repeat1] = STATE(1035), - [sym__newline] = ACTIONS(3190), + [sym__newline] = ACTIONS(3197), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3214), + [anon_sym_DOT_DOT] = ACTIONS(3221), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3216), - [anon_sym_DOT_DOT_LT] = ACTIONS(3216), - [anon_sym_null] = ACTIONS(3218), - [anon_sym_true] = ACTIONS(3220), - [anon_sym_false] = ACTIONS(3220), - [aux_sym__val_number_decimal_token1] = ACTIONS(3222), - [aux_sym__val_number_decimal_token2] = ACTIONS(3224), - [aux_sym__val_number_decimal_token3] = ACTIONS(3226), - [aux_sym__val_number_decimal_token4] = ACTIONS(3228), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3223), + [anon_sym_DOT_DOT_LT] = ACTIONS(3223), + [anon_sym_null] = ACTIONS(3225), + [anon_sym_true] = ACTIONS(3227), + [anon_sym_false] = ACTIONS(3227), + [aux_sym__val_number_decimal_token1] = ACTIONS(3229), + [aux_sym__val_number_decimal_token2] = ACTIONS(3231), + [aux_sym__val_number_decimal_token3] = ACTIONS(3233), + [aux_sym__val_number_decimal_token4] = ACTIONS(3235), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3230), - [aux_sym__val_number_token5] = ACTIONS(3230), - [aux_sym__val_number_token6] = ACTIONS(3230), + [aux_sym__val_number_token4] = ACTIONS(3237), + [aux_sym__val_number_token5] = ACTIONS(3237), + [aux_sym__val_number_token6] = ACTIONS(3237), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3232), + [sym_val_date] = ACTIONS(3239), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), @@ -173753,7 +173753,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3212), + [aux_sym_unquoted_token1] = ACTIONS(3219), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, @@ -173791,33 +173791,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__unquoted_anonymous_prefix] = STATE(7204), [sym_comment] = STATE(901), [aux_sym_shebang_repeat1] = STATE(971), - [sym__newline] = ACTIONS(3190), + [sym__newline] = ACTIONS(3197), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3214), + [anon_sym_DOT_DOT] = ACTIONS(3221), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3216), - [anon_sym_DOT_DOT_LT] = ACTIONS(3216), - [anon_sym_null] = ACTIONS(3218), - [anon_sym_true] = ACTIONS(3220), - [anon_sym_false] = ACTIONS(3220), - [aux_sym__val_number_decimal_token1] = ACTIONS(3222), - [aux_sym__val_number_decimal_token2] = ACTIONS(3224), - [aux_sym__val_number_decimal_token3] = ACTIONS(3226), - [aux_sym__val_number_decimal_token4] = ACTIONS(3228), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3223), + [anon_sym_DOT_DOT_LT] = ACTIONS(3223), + [anon_sym_null] = ACTIONS(3225), + [anon_sym_true] = ACTIONS(3227), + [anon_sym_false] = ACTIONS(3227), + [aux_sym__val_number_decimal_token1] = ACTIONS(3229), + [aux_sym__val_number_decimal_token2] = ACTIONS(3231), + [aux_sym__val_number_decimal_token3] = ACTIONS(3233), + [aux_sym__val_number_decimal_token4] = ACTIONS(3235), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3230), - [aux_sym__val_number_token5] = ACTIONS(3230), - [aux_sym__val_number_token6] = ACTIONS(3230), + [aux_sym__val_number_token4] = ACTIONS(3237), + [aux_sym__val_number_token5] = ACTIONS(3237), + [aux_sym__val_number_token6] = ACTIONS(3237), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3232), + [sym_val_date] = ACTIONS(3239), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), @@ -173839,7 +173839,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3212), + [aux_sym_unquoted_token1] = ACTIONS(3219), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, @@ -173877,33 +173877,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__unquoted_anonymous_prefix] = STATE(7204), [sym_comment] = STATE(902), [aux_sym_shebang_repeat1] = STATE(912), - [sym__newline] = ACTIONS(3190), + [sym__newline] = ACTIONS(3197), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3214), + [anon_sym_DOT_DOT] = ACTIONS(3221), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3216), - [anon_sym_DOT_DOT_LT] = ACTIONS(3216), - [anon_sym_null] = ACTIONS(3218), - [anon_sym_true] = ACTIONS(3220), - [anon_sym_false] = ACTIONS(3220), - [aux_sym__val_number_decimal_token1] = ACTIONS(3222), - [aux_sym__val_number_decimal_token2] = ACTIONS(3224), - [aux_sym__val_number_decimal_token3] = ACTIONS(3226), - [aux_sym__val_number_decimal_token4] = ACTIONS(3228), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3223), + [anon_sym_DOT_DOT_LT] = ACTIONS(3223), + [anon_sym_null] = ACTIONS(3225), + [anon_sym_true] = ACTIONS(3227), + [anon_sym_false] = ACTIONS(3227), + [aux_sym__val_number_decimal_token1] = ACTIONS(3229), + [aux_sym__val_number_decimal_token2] = ACTIONS(3231), + [aux_sym__val_number_decimal_token3] = ACTIONS(3233), + [aux_sym__val_number_decimal_token4] = ACTIONS(3235), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3230), - [aux_sym__val_number_token5] = ACTIONS(3230), - [aux_sym__val_number_token6] = ACTIONS(3230), + [aux_sym__val_number_token4] = ACTIONS(3237), + [aux_sym__val_number_token5] = ACTIONS(3237), + [aux_sym__val_number_token6] = ACTIONS(3237), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3232), + [sym_val_date] = ACTIONS(3239), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), @@ -173925,7 +173925,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3212), + [aux_sym_unquoted_token1] = ACTIONS(3219), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, @@ -173963,33 +173963,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__unquoted_anonymous_prefix] = STATE(7204), [sym_comment] = STATE(903), [aux_sym_shebang_repeat1] = STATE(1037), - [sym__newline] = ACTIONS(3190), + [sym__newline] = ACTIONS(3197), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3214), + [anon_sym_DOT_DOT] = ACTIONS(3221), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3216), - [anon_sym_DOT_DOT_LT] = ACTIONS(3216), - [anon_sym_null] = ACTIONS(3218), - [anon_sym_true] = ACTIONS(3220), - [anon_sym_false] = ACTIONS(3220), - [aux_sym__val_number_decimal_token1] = ACTIONS(3222), - [aux_sym__val_number_decimal_token2] = ACTIONS(3224), - [aux_sym__val_number_decimal_token3] = ACTIONS(3226), - [aux_sym__val_number_decimal_token4] = ACTIONS(3228), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3223), + [anon_sym_DOT_DOT_LT] = ACTIONS(3223), + [anon_sym_null] = ACTIONS(3225), + [anon_sym_true] = ACTIONS(3227), + [anon_sym_false] = ACTIONS(3227), + [aux_sym__val_number_decimal_token1] = ACTIONS(3229), + [aux_sym__val_number_decimal_token2] = ACTIONS(3231), + [aux_sym__val_number_decimal_token3] = ACTIONS(3233), + [aux_sym__val_number_decimal_token4] = ACTIONS(3235), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3230), - [aux_sym__val_number_token5] = ACTIONS(3230), - [aux_sym__val_number_token6] = ACTIONS(3230), + [aux_sym__val_number_token4] = ACTIONS(3237), + [aux_sym__val_number_token5] = ACTIONS(3237), + [aux_sym__val_number_token6] = ACTIONS(3237), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3232), + [sym_val_date] = ACTIONS(3239), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), @@ -174011,7 +174011,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3212), + [aux_sym_unquoted_token1] = ACTIONS(3219), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, @@ -174049,33 +174049,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__unquoted_anonymous_prefix] = STATE(7204), [sym_comment] = STATE(904), [aux_sym_shebang_repeat1] = STATE(1046), - [sym__newline] = ACTIONS(3190), + [sym__newline] = ACTIONS(3197), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3214), + [anon_sym_DOT_DOT] = ACTIONS(3221), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3216), - [anon_sym_DOT_DOT_LT] = ACTIONS(3216), - [anon_sym_null] = ACTIONS(3218), - [anon_sym_true] = ACTIONS(3220), - [anon_sym_false] = ACTIONS(3220), - [aux_sym__val_number_decimal_token1] = ACTIONS(3222), - [aux_sym__val_number_decimal_token2] = ACTIONS(3224), - [aux_sym__val_number_decimal_token3] = ACTIONS(3226), - [aux_sym__val_number_decimal_token4] = ACTIONS(3228), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3223), + [anon_sym_DOT_DOT_LT] = ACTIONS(3223), + [anon_sym_null] = ACTIONS(3225), + [anon_sym_true] = ACTIONS(3227), + [anon_sym_false] = ACTIONS(3227), + [aux_sym__val_number_decimal_token1] = ACTIONS(3229), + [aux_sym__val_number_decimal_token2] = ACTIONS(3231), + [aux_sym__val_number_decimal_token3] = ACTIONS(3233), + [aux_sym__val_number_decimal_token4] = ACTIONS(3235), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3230), - [aux_sym__val_number_token5] = ACTIONS(3230), - [aux_sym__val_number_token6] = ACTIONS(3230), + [aux_sym__val_number_token4] = ACTIONS(3237), + [aux_sym__val_number_token5] = ACTIONS(3237), + [aux_sym__val_number_token6] = ACTIONS(3237), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3232), + [sym_val_date] = ACTIONS(3239), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), @@ -174097,7 +174097,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3212), + [aux_sym_unquoted_token1] = ACTIONS(3219), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, @@ -174135,33 +174135,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__unquoted_anonymous_prefix] = STATE(7204), [sym_comment] = STATE(905), [aux_sym_shebang_repeat1] = STATE(1032), - [sym__newline] = ACTIONS(3190), + [sym__newline] = ACTIONS(3197), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3214), + [anon_sym_DOT_DOT] = ACTIONS(3221), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3216), - [anon_sym_DOT_DOT_LT] = ACTIONS(3216), - [anon_sym_null] = ACTIONS(3218), - [anon_sym_true] = ACTIONS(3220), - [anon_sym_false] = ACTIONS(3220), - [aux_sym__val_number_decimal_token1] = ACTIONS(3222), - [aux_sym__val_number_decimal_token2] = ACTIONS(3224), - [aux_sym__val_number_decimal_token3] = ACTIONS(3226), - [aux_sym__val_number_decimal_token4] = ACTIONS(3228), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3223), + [anon_sym_DOT_DOT_LT] = ACTIONS(3223), + [anon_sym_null] = ACTIONS(3225), + [anon_sym_true] = ACTIONS(3227), + [anon_sym_false] = ACTIONS(3227), + [aux_sym__val_number_decimal_token1] = ACTIONS(3229), + [aux_sym__val_number_decimal_token2] = ACTIONS(3231), + [aux_sym__val_number_decimal_token3] = ACTIONS(3233), + [aux_sym__val_number_decimal_token4] = ACTIONS(3235), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3230), - [aux_sym__val_number_token5] = ACTIONS(3230), - [aux_sym__val_number_token6] = ACTIONS(3230), + [aux_sym__val_number_token4] = ACTIONS(3237), + [aux_sym__val_number_token5] = ACTIONS(3237), + [aux_sym__val_number_token6] = ACTIONS(3237), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3232), + [sym_val_date] = ACTIONS(3239), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), @@ -174183,7 +174183,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3212), + [aux_sym_unquoted_token1] = ACTIONS(3219), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, @@ -174221,33 +174221,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__unquoted_anonymous_prefix] = STATE(7204), [sym_comment] = STATE(906), [aux_sym_shebang_repeat1] = STATE(2817), - [sym__newline] = ACTIONS(3190), + [sym__newline] = ACTIONS(3197), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3214), + [anon_sym_DOT_DOT] = ACTIONS(3221), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3216), - [anon_sym_DOT_DOT_LT] = ACTIONS(3216), - [anon_sym_null] = ACTIONS(3218), - [anon_sym_true] = ACTIONS(3220), - [anon_sym_false] = ACTIONS(3220), - [aux_sym__val_number_decimal_token1] = ACTIONS(3222), - [aux_sym__val_number_decimal_token2] = ACTIONS(3224), - [aux_sym__val_number_decimal_token3] = ACTIONS(3226), - [aux_sym__val_number_decimal_token4] = ACTIONS(3228), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3223), + [anon_sym_DOT_DOT_LT] = ACTIONS(3223), + [anon_sym_null] = ACTIONS(3225), + [anon_sym_true] = ACTIONS(3227), + [anon_sym_false] = ACTIONS(3227), + [aux_sym__val_number_decimal_token1] = ACTIONS(3229), + [aux_sym__val_number_decimal_token2] = ACTIONS(3231), + [aux_sym__val_number_decimal_token3] = ACTIONS(3233), + [aux_sym__val_number_decimal_token4] = ACTIONS(3235), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3230), - [aux_sym__val_number_token5] = ACTIONS(3230), - [aux_sym__val_number_token6] = ACTIONS(3230), + [aux_sym__val_number_token4] = ACTIONS(3237), + [aux_sym__val_number_token5] = ACTIONS(3237), + [aux_sym__val_number_token6] = ACTIONS(3237), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3232), + [sym_val_date] = ACTIONS(3239), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), @@ -174269,7 +174269,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3212), + [aux_sym_unquoted_token1] = ACTIONS(3219), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, @@ -174307,33 +174307,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__unquoted_anonymous_prefix] = STATE(7204), [sym_comment] = STATE(907), [aux_sym_shebang_repeat1] = STATE(1045), - [sym__newline] = ACTIONS(3190), + [sym__newline] = ACTIONS(3197), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3214), + [anon_sym_DOT_DOT] = ACTIONS(3221), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3216), - [anon_sym_DOT_DOT_LT] = ACTIONS(3216), - [anon_sym_null] = ACTIONS(3218), - [anon_sym_true] = ACTIONS(3220), - [anon_sym_false] = ACTIONS(3220), - [aux_sym__val_number_decimal_token1] = ACTIONS(3222), - [aux_sym__val_number_decimal_token2] = ACTIONS(3224), - [aux_sym__val_number_decimal_token3] = ACTIONS(3226), - [aux_sym__val_number_decimal_token4] = ACTIONS(3228), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3223), + [anon_sym_DOT_DOT_LT] = ACTIONS(3223), + [anon_sym_null] = ACTIONS(3225), + [anon_sym_true] = ACTIONS(3227), + [anon_sym_false] = ACTIONS(3227), + [aux_sym__val_number_decimal_token1] = ACTIONS(3229), + [aux_sym__val_number_decimal_token2] = ACTIONS(3231), + [aux_sym__val_number_decimal_token3] = ACTIONS(3233), + [aux_sym__val_number_decimal_token4] = ACTIONS(3235), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3230), - [aux_sym__val_number_token5] = ACTIONS(3230), - [aux_sym__val_number_token6] = ACTIONS(3230), + [aux_sym__val_number_token4] = ACTIONS(3237), + [aux_sym__val_number_token5] = ACTIONS(3237), + [aux_sym__val_number_token6] = ACTIONS(3237), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3232), + [sym_val_date] = ACTIONS(3239), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), @@ -174355,7 +174355,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3212), + [aux_sym_unquoted_token1] = ACTIONS(3219), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, @@ -174393,33 +174393,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__unquoted_anonymous_prefix] = STATE(7204), [sym_comment] = STATE(908), [aux_sym_shebang_repeat1] = STATE(906), - [sym__newline] = ACTIONS(3190), + [sym__newline] = ACTIONS(3197), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3214), + [anon_sym_DOT_DOT] = ACTIONS(3221), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3216), - [anon_sym_DOT_DOT_LT] = ACTIONS(3216), - [anon_sym_null] = ACTIONS(3218), - [anon_sym_true] = ACTIONS(3220), - [anon_sym_false] = ACTIONS(3220), - [aux_sym__val_number_decimal_token1] = ACTIONS(3222), - [aux_sym__val_number_decimal_token2] = ACTIONS(3224), - [aux_sym__val_number_decimal_token3] = ACTIONS(3226), - [aux_sym__val_number_decimal_token4] = ACTIONS(3228), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3223), + [anon_sym_DOT_DOT_LT] = ACTIONS(3223), + [anon_sym_null] = ACTIONS(3225), + [anon_sym_true] = ACTIONS(3227), + [anon_sym_false] = ACTIONS(3227), + [aux_sym__val_number_decimal_token1] = ACTIONS(3229), + [aux_sym__val_number_decimal_token2] = ACTIONS(3231), + [aux_sym__val_number_decimal_token3] = ACTIONS(3233), + [aux_sym__val_number_decimal_token4] = ACTIONS(3235), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3230), - [aux_sym__val_number_token5] = ACTIONS(3230), - [aux_sym__val_number_token6] = ACTIONS(3230), + [aux_sym__val_number_token4] = ACTIONS(3237), + [aux_sym__val_number_token5] = ACTIONS(3237), + [aux_sym__val_number_token6] = ACTIONS(3237), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3232), + [sym_val_date] = ACTIONS(3239), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), @@ -174441,7 +174441,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3212), + [aux_sym_unquoted_token1] = ACTIONS(3219), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, @@ -174479,33 +174479,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__unquoted_anonymous_prefix] = STATE(7204), [sym_comment] = STATE(909), [aux_sym_shebang_repeat1] = STATE(1038), - [sym__newline] = ACTIONS(3190), + [sym__newline] = ACTIONS(3197), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3214), + [anon_sym_DOT_DOT] = ACTIONS(3221), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3216), - [anon_sym_DOT_DOT_LT] = ACTIONS(3216), - [anon_sym_null] = ACTIONS(3218), - [anon_sym_true] = ACTIONS(3220), - [anon_sym_false] = ACTIONS(3220), - [aux_sym__val_number_decimal_token1] = ACTIONS(3222), - [aux_sym__val_number_decimal_token2] = ACTIONS(3224), - [aux_sym__val_number_decimal_token3] = ACTIONS(3226), - [aux_sym__val_number_decimal_token4] = ACTIONS(3228), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3223), + [anon_sym_DOT_DOT_LT] = ACTIONS(3223), + [anon_sym_null] = ACTIONS(3225), + [anon_sym_true] = ACTIONS(3227), + [anon_sym_false] = ACTIONS(3227), + [aux_sym__val_number_decimal_token1] = ACTIONS(3229), + [aux_sym__val_number_decimal_token2] = ACTIONS(3231), + [aux_sym__val_number_decimal_token3] = ACTIONS(3233), + [aux_sym__val_number_decimal_token4] = ACTIONS(3235), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3230), - [aux_sym__val_number_token5] = ACTIONS(3230), - [aux_sym__val_number_token6] = ACTIONS(3230), + [aux_sym__val_number_token4] = ACTIONS(3237), + [aux_sym__val_number_token5] = ACTIONS(3237), + [aux_sym__val_number_token6] = ACTIONS(3237), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3232), + [sym_val_date] = ACTIONS(3239), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), @@ -174527,7 +174527,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3212), + [aux_sym_unquoted_token1] = ACTIONS(3219), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, @@ -174565,33 +174565,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__unquoted_anonymous_prefix] = STATE(7204), [sym_comment] = STATE(910), [aux_sym_shebang_repeat1] = STATE(1051), - [sym__newline] = ACTIONS(3190), + [sym__newline] = ACTIONS(3197), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3214), + [anon_sym_DOT_DOT] = ACTIONS(3221), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3216), - [anon_sym_DOT_DOT_LT] = ACTIONS(3216), - [anon_sym_null] = ACTIONS(3218), - [anon_sym_true] = ACTIONS(3220), - [anon_sym_false] = ACTIONS(3220), - [aux_sym__val_number_decimal_token1] = ACTIONS(3222), - [aux_sym__val_number_decimal_token2] = ACTIONS(3224), - [aux_sym__val_number_decimal_token3] = ACTIONS(3226), - [aux_sym__val_number_decimal_token4] = ACTIONS(3228), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3223), + [anon_sym_DOT_DOT_LT] = ACTIONS(3223), + [anon_sym_null] = ACTIONS(3225), + [anon_sym_true] = ACTIONS(3227), + [anon_sym_false] = ACTIONS(3227), + [aux_sym__val_number_decimal_token1] = ACTIONS(3229), + [aux_sym__val_number_decimal_token2] = ACTIONS(3231), + [aux_sym__val_number_decimal_token3] = ACTIONS(3233), + [aux_sym__val_number_decimal_token4] = ACTIONS(3235), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3230), - [aux_sym__val_number_token5] = ACTIONS(3230), - [aux_sym__val_number_token6] = ACTIONS(3230), + [aux_sym__val_number_token4] = ACTIONS(3237), + [aux_sym__val_number_token5] = ACTIONS(3237), + [aux_sym__val_number_token6] = ACTIONS(3237), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3232), + [sym_val_date] = ACTIONS(3239), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), @@ -174613,7 +174613,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3212), + [aux_sym_unquoted_token1] = ACTIONS(3219), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, @@ -174651,33 +174651,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__unquoted_anonymous_prefix] = STATE(7204), [sym_comment] = STATE(911), [aux_sym_shebang_repeat1] = STATE(896), - [sym__newline] = ACTIONS(3190), + [sym__newline] = ACTIONS(3197), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3214), + [anon_sym_DOT_DOT] = ACTIONS(3221), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3216), - [anon_sym_DOT_DOT_LT] = ACTIONS(3216), - [anon_sym_null] = ACTIONS(3218), - [anon_sym_true] = ACTIONS(3220), - [anon_sym_false] = ACTIONS(3220), - [aux_sym__val_number_decimal_token1] = ACTIONS(3222), - [aux_sym__val_number_decimal_token2] = ACTIONS(3224), - [aux_sym__val_number_decimal_token3] = ACTIONS(3226), - [aux_sym__val_number_decimal_token4] = ACTIONS(3228), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3223), + [anon_sym_DOT_DOT_LT] = ACTIONS(3223), + [anon_sym_null] = ACTIONS(3225), + [anon_sym_true] = ACTIONS(3227), + [anon_sym_false] = ACTIONS(3227), + [aux_sym__val_number_decimal_token1] = ACTIONS(3229), + [aux_sym__val_number_decimal_token2] = ACTIONS(3231), + [aux_sym__val_number_decimal_token3] = ACTIONS(3233), + [aux_sym__val_number_decimal_token4] = ACTIONS(3235), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3230), - [aux_sym__val_number_token5] = ACTIONS(3230), - [aux_sym__val_number_token6] = ACTIONS(3230), + [aux_sym__val_number_token4] = ACTIONS(3237), + [aux_sym__val_number_token5] = ACTIONS(3237), + [aux_sym__val_number_token6] = ACTIONS(3237), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3232), + [sym_val_date] = ACTIONS(3239), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), @@ -174699,7 +174699,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3212), + [aux_sym_unquoted_token1] = ACTIONS(3219), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, @@ -174737,33 +174737,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__unquoted_anonymous_prefix] = STATE(7204), [sym_comment] = STATE(912), [aux_sym_shebang_repeat1] = STATE(2817), - [sym__newline] = ACTIONS(3190), + [sym__newline] = ACTIONS(3197), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3214), + [anon_sym_DOT_DOT] = ACTIONS(3221), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3216), - [anon_sym_DOT_DOT_LT] = ACTIONS(3216), - [anon_sym_null] = ACTIONS(3218), - [anon_sym_true] = ACTIONS(3220), - [anon_sym_false] = ACTIONS(3220), - [aux_sym__val_number_decimal_token1] = ACTIONS(3222), - [aux_sym__val_number_decimal_token2] = ACTIONS(3224), - [aux_sym__val_number_decimal_token3] = ACTIONS(3226), - [aux_sym__val_number_decimal_token4] = ACTIONS(3228), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3223), + [anon_sym_DOT_DOT_LT] = ACTIONS(3223), + [anon_sym_null] = ACTIONS(3225), + [anon_sym_true] = ACTIONS(3227), + [anon_sym_false] = ACTIONS(3227), + [aux_sym__val_number_decimal_token1] = ACTIONS(3229), + [aux_sym__val_number_decimal_token2] = ACTIONS(3231), + [aux_sym__val_number_decimal_token3] = ACTIONS(3233), + [aux_sym__val_number_decimal_token4] = ACTIONS(3235), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3230), - [aux_sym__val_number_token5] = ACTIONS(3230), - [aux_sym__val_number_token6] = ACTIONS(3230), + [aux_sym__val_number_token4] = ACTIONS(3237), + [aux_sym__val_number_token5] = ACTIONS(3237), + [aux_sym__val_number_token6] = ACTIONS(3237), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3232), + [sym_val_date] = ACTIONS(3239), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), @@ -174785,7 +174785,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3212), + [aux_sym_unquoted_token1] = ACTIONS(3219), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, @@ -174823,33 +174823,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__unquoted_anonymous_prefix] = STATE(7204), [sym_comment] = STATE(913), [aux_sym_shebang_repeat1] = STATE(1040), - [sym__newline] = ACTIONS(3190), + [sym__newline] = ACTIONS(3197), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3214), + [anon_sym_DOT_DOT] = ACTIONS(3221), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3216), - [anon_sym_DOT_DOT_LT] = ACTIONS(3216), - [anon_sym_null] = ACTIONS(3218), - [anon_sym_true] = ACTIONS(3220), - [anon_sym_false] = ACTIONS(3220), - [aux_sym__val_number_decimal_token1] = ACTIONS(3222), - [aux_sym__val_number_decimal_token2] = ACTIONS(3224), - [aux_sym__val_number_decimal_token3] = ACTIONS(3226), - [aux_sym__val_number_decimal_token4] = ACTIONS(3228), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3223), + [anon_sym_DOT_DOT_LT] = ACTIONS(3223), + [anon_sym_null] = ACTIONS(3225), + [anon_sym_true] = ACTIONS(3227), + [anon_sym_false] = ACTIONS(3227), + [aux_sym__val_number_decimal_token1] = ACTIONS(3229), + [aux_sym__val_number_decimal_token2] = ACTIONS(3231), + [aux_sym__val_number_decimal_token3] = ACTIONS(3233), + [aux_sym__val_number_decimal_token4] = ACTIONS(3235), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3230), - [aux_sym__val_number_token5] = ACTIONS(3230), - [aux_sym__val_number_token6] = ACTIONS(3230), + [aux_sym__val_number_token4] = ACTIONS(3237), + [aux_sym__val_number_token5] = ACTIONS(3237), + [aux_sym__val_number_token6] = ACTIONS(3237), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3232), + [sym_val_date] = ACTIONS(3239), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), @@ -174871,7 +174871,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3212), + [aux_sym_unquoted_token1] = ACTIONS(3219), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, @@ -174909,33 +174909,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__unquoted_anonymous_prefix] = STATE(7204), [sym_comment] = STATE(914), [aux_sym_shebang_repeat1] = STATE(927), - [sym__newline] = ACTIONS(3190), + [sym__newline] = ACTIONS(3197), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3234), + [anon_sym_DOT_DOT] = ACTIONS(3241), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3236), - [anon_sym_DOT_DOT_LT] = ACTIONS(3236), - [anon_sym_null] = ACTIONS(3238), - [anon_sym_true] = ACTIONS(3240), - [anon_sym_false] = ACTIONS(3240), - [aux_sym__val_number_decimal_token1] = ACTIONS(3242), - [aux_sym__val_number_decimal_token2] = ACTIONS(3244), - [aux_sym__val_number_decimal_token3] = ACTIONS(3246), - [aux_sym__val_number_decimal_token4] = ACTIONS(3248), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3243), + [anon_sym_DOT_DOT_LT] = ACTIONS(3243), + [anon_sym_null] = ACTIONS(3245), + [anon_sym_true] = ACTIONS(3247), + [anon_sym_false] = ACTIONS(3247), + [aux_sym__val_number_decimal_token1] = ACTIONS(3249), + [aux_sym__val_number_decimal_token2] = ACTIONS(3251), + [aux_sym__val_number_decimal_token3] = ACTIONS(3253), + [aux_sym__val_number_decimal_token4] = ACTIONS(3255), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3250), - [aux_sym__val_number_token5] = ACTIONS(3250), - [aux_sym__val_number_token6] = ACTIONS(3250), + [aux_sym__val_number_token4] = ACTIONS(3257), + [aux_sym__val_number_token5] = ACTIONS(3257), + [aux_sym__val_number_token6] = ACTIONS(3257), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3252), + [sym_val_date] = ACTIONS(3259), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), @@ -174957,7 +174957,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3212), + [aux_sym_unquoted_token1] = ACTIONS(3219), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, @@ -174995,33 +174995,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__unquoted_anonymous_prefix] = STATE(7204), [sym_comment] = STATE(915), [aux_sym_shebang_repeat1] = STATE(928), - [sym__newline] = ACTIONS(3190), + [sym__newline] = ACTIONS(3197), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3234), + [anon_sym_DOT_DOT] = ACTIONS(3241), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3236), - [anon_sym_DOT_DOT_LT] = ACTIONS(3236), - [anon_sym_null] = ACTIONS(3238), - [anon_sym_true] = ACTIONS(3240), - [anon_sym_false] = ACTIONS(3240), - [aux_sym__val_number_decimal_token1] = ACTIONS(3242), - [aux_sym__val_number_decimal_token2] = ACTIONS(3244), - [aux_sym__val_number_decimal_token3] = ACTIONS(3246), - [aux_sym__val_number_decimal_token4] = ACTIONS(3248), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3243), + [anon_sym_DOT_DOT_LT] = ACTIONS(3243), + [anon_sym_null] = ACTIONS(3245), + [anon_sym_true] = ACTIONS(3247), + [anon_sym_false] = ACTIONS(3247), + [aux_sym__val_number_decimal_token1] = ACTIONS(3249), + [aux_sym__val_number_decimal_token2] = ACTIONS(3251), + [aux_sym__val_number_decimal_token3] = ACTIONS(3253), + [aux_sym__val_number_decimal_token4] = ACTIONS(3255), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3250), - [aux_sym__val_number_token5] = ACTIONS(3250), - [aux_sym__val_number_token6] = ACTIONS(3250), + [aux_sym__val_number_token4] = ACTIONS(3257), + [aux_sym__val_number_token5] = ACTIONS(3257), + [aux_sym__val_number_token6] = ACTIONS(3257), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3252), + [sym_val_date] = ACTIONS(3259), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), @@ -175043,7 +175043,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3212), + [aux_sym_unquoted_token1] = ACTIONS(3219), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, @@ -175081,33 +175081,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__unquoted_anonymous_prefix] = STATE(7204), [sym_comment] = STATE(916), [aux_sym_shebang_repeat1] = STATE(929), - [sym__newline] = ACTIONS(3190), + [sym__newline] = ACTIONS(3197), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3234), + [anon_sym_DOT_DOT] = ACTIONS(3241), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3236), - [anon_sym_DOT_DOT_LT] = ACTIONS(3236), - [anon_sym_null] = ACTIONS(3238), - [anon_sym_true] = ACTIONS(3240), - [anon_sym_false] = ACTIONS(3240), - [aux_sym__val_number_decimal_token1] = ACTIONS(3242), - [aux_sym__val_number_decimal_token2] = ACTIONS(3244), - [aux_sym__val_number_decimal_token3] = ACTIONS(3246), - [aux_sym__val_number_decimal_token4] = ACTIONS(3248), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3243), + [anon_sym_DOT_DOT_LT] = ACTIONS(3243), + [anon_sym_null] = ACTIONS(3245), + [anon_sym_true] = ACTIONS(3247), + [anon_sym_false] = ACTIONS(3247), + [aux_sym__val_number_decimal_token1] = ACTIONS(3249), + [aux_sym__val_number_decimal_token2] = ACTIONS(3251), + [aux_sym__val_number_decimal_token3] = ACTIONS(3253), + [aux_sym__val_number_decimal_token4] = ACTIONS(3255), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3250), - [aux_sym__val_number_token5] = ACTIONS(3250), - [aux_sym__val_number_token6] = ACTIONS(3250), + [aux_sym__val_number_token4] = ACTIONS(3257), + [aux_sym__val_number_token5] = ACTIONS(3257), + [aux_sym__val_number_token6] = ACTIONS(3257), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3252), + [sym_val_date] = ACTIONS(3259), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), @@ -175129,7 +175129,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3212), + [aux_sym_unquoted_token1] = ACTIONS(3219), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, @@ -175167,33 +175167,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__unquoted_anonymous_prefix] = STATE(7204), [sym_comment] = STATE(917), [aux_sym_shebang_repeat1] = STATE(930), - [sym__newline] = ACTIONS(3190), + [sym__newline] = ACTIONS(3197), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3234), + [anon_sym_DOT_DOT] = ACTIONS(3241), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3236), - [anon_sym_DOT_DOT_LT] = ACTIONS(3236), - [anon_sym_null] = ACTIONS(3238), - [anon_sym_true] = ACTIONS(3240), - [anon_sym_false] = ACTIONS(3240), - [aux_sym__val_number_decimal_token1] = ACTIONS(3242), - [aux_sym__val_number_decimal_token2] = ACTIONS(3244), - [aux_sym__val_number_decimal_token3] = ACTIONS(3246), - [aux_sym__val_number_decimal_token4] = ACTIONS(3248), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3243), + [anon_sym_DOT_DOT_LT] = ACTIONS(3243), + [anon_sym_null] = ACTIONS(3245), + [anon_sym_true] = ACTIONS(3247), + [anon_sym_false] = ACTIONS(3247), + [aux_sym__val_number_decimal_token1] = ACTIONS(3249), + [aux_sym__val_number_decimal_token2] = ACTIONS(3251), + [aux_sym__val_number_decimal_token3] = ACTIONS(3253), + [aux_sym__val_number_decimal_token4] = ACTIONS(3255), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3250), - [aux_sym__val_number_token5] = ACTIONS(3250), - [aux_sym__val_number_token6] = ACTIONS(3250), + [aux_sym__val_number_token4] = ACTIONS(3257), + [aux_sym__val_number_token5] = ACTIONS(3257), + [aux_sym__val_number_token6] = ACTIONS(3257), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3252), + [sym_val_date] = ACTIONS(3259), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), @@ -175215,7 +175215,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3212), + [aux_sym_unquoted_token1] = ACTIONS(3219), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, @@ -175253,33 +175253,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__unquoted_anonymous_prefix] = STATE(7204), [sym_comment] = STATE(918), [aux_sym_shebang_repeat1] = STATE(931), - [sym__newline] = ACTIONS(3190), + [sym__newline] = ACTIONS(3197), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3234), + [anon_sym_DOT_DOT] = ACTIONS(3241), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3236), - [anon_sym_DOT_DOT_LT] = ACTIONS(3236), - [anon_sym_null] = ACTIONS(3238), - [anon_sym_true] = ACTIONS(3240), - [anon_sym_false] = ACTIONS(3240), - [aux_sym__val_number_decimal_token1] = ACTIONS(3242), - [aux_sym__val_number_decimal_token2] = ACTIONS(3244), - [aux_sym__val_number_decimal_token3] = ACTIONS(3246), - [aux_sym__val_number_decimal_token4] = ACTIONS(3248), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3243), + [anon_sym_DOT_DOT_LT] = ACTIONS(3243), + [anon_sym_null] = ACTIONS(3245), + [anon_sym_true] = ACTIONS(3247), + [anon_sym_false] = ACTIONS(3247), + [aux_sym__val_number_decimal_token1] = ACTIONS(3249), + [aux_sym__val_number_decimal_token2] = ACTIONS(3251), + [aux_sym__val_number_decimal_token3] = ACTIONS(3253), + [aux_sym__val_number_decimal_token4] = ACTIONS(3255), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3250), - [aux_sym__val_number_token5] = ACTIONS(3250), - [aux_sym__val_number_token6] = ACTIONS(3250), + [aux_sym__val_number_token4] = ACTIONS(3257), + [aux_sym__val_number_token5] = ACTIONS(3257), + [aux_sym__val_number_token6] = ACTIONS(3257), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3252), + [sym_val_date] = ACTIONS(3259), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), @@ -175301,7 +175301,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3212), + [aux_sym_unquoted_token1] = ACTIONS(3219), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, @@ -175339,33 +175339,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__unquoted_anonymous_prefix] = STATE(7204), [sym_comment] = STATE(919), [aux_sym_shebang_repeat1] = STATE(932), - [sym__newline] = ACTIONS(3190), + [sym__newline] = ACTIONS(3197), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3234), + [anon_sym_DOT_DOT] = ACTIONS(3241), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3236), - [anon_sym_DOT_DOT_LT] = ACTIONS(3236), - [anon_sym_null] = ACTIONS(3238), - [anon_sym_true] = ACTIONS(3240), - [anon_sym_false] = ACTIONS(3240), - [aux_sym__val_number_decimal_token1] = ACTIONS(3242), - [aux_sym__val_number_decimal_token2] = ACTIONS(3244), - [aux_sym__val_number_decimal_token3] = ACTIONS(3246), - [aux_sym__val_number_decimal_token4] = ACTIONS(3248), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3243), + [anon_sym_DOT_DOT_LT] = ACTIONS(3243), + [anon_sym_null] = ACTIONS(3245), + [anon_sym_true] = ACTIONS(3247), + [anon_sym_false] = ACTIONS(3247), + [aux_sym__val_number_decimal_token1] = ACTIONS(3249), + [aux_sym__val_number_decimal_token2] = ACTIONS(3251), + [aux_sym__val_number_decimal_token3] = ACTIONS(3253), + [aux_sym__val_number_decimal_token4] = ACTIONS(3255), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3250), - [aux_sym__val_number_token5] = ACTIONS(3250), - [aux_sym__val_number_token6] = ACTIONS(3250), + [aux_sym__val_number_token4] = ACTIONS(3257), + [aux_sym__val_number_token5] = ACTIONS(3257), + [aux_sym__val_number_token6] = ACTIONS(3257), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3252), + [sym_val_date] = ACTIONS(3259), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), @@ -175387,7 +175387,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3212), + [aux_sym_unquoted_token1] = ACTIONS(3219), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, @@ -175425,33 +175425,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__unquoted_anonymous_prefix] = STATE(7204), [sym_comment] = STATE(920), [aux_sym_shebang_repeat1] = STATE(933), - [sym__newline] = ACTIONS(3190), + [sym__newline] = ACTIONS(3197), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3234), + [anon_sym_DOT_DOT] = ACTIONS(3241), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3236), - [anon_sym_DOT_DOT_LT] = ACTIONS(3236), - [anon_sym_null] = ACTIONS(3238), - [anon_sym_true] = ACTIONS(3240), - [anon_sym_false] = ACTIONS(3240), - [aux_sym__val_number_decimal_token1] = ACTIONS(3242), - [aux_sym__val_number_decimal_token2] = ACTIONS(3244), - [aux_sym__val_number_decimal_token3] = ACTIONS(3246), - [aux_sym__val_number_decimal_token4] = ACTIONS(3248), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3243), + [anon_sym_DOT_DOT_LT] = ACTIONS(3243), + [anon_sym_null] = ACTIONS(3245), + [anon_sym_true] = ACTIONS(3247), + [anon_sym_false] = ACTIONS(3247), + [aux_sym__val_number_decimal_token1] = ACTIONS(3249), + [aux_sym__val_number_decimal_token2] = ACTIONS(3251), + [aux_sym__val_number_decimal_token3] = ACTIONS(3253), + [aux_sym__val_number_decimal_token4] = ACTIONS(3255), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3250), - [aux_sym__val_number_token5] = ACTIONS(3250), - [aux_sym__val_number_token6] = ACTIONS(3250), + [aux_sym__val_number_token4] = ACTIONS(3257), + [aux_sym__val_number_token5] = ACTIONS(3257), + [aux_sym__val_number_token6] = ACTIONS(3257), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3252), + [sym_val_date] = ACTIONS(3259), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), @@ -175473,7 +175473,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3212), + [aux_sym_unquoted_token1] = ACTIONS(3219), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, @@ -175511,33 +175511,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__unquoted_anonymous_prefix] = STATE(7204), [sym_comment] = STATE(921), [aux_sym_shebang_repeat1] = STATE(934), - [sym__newline] = ACTIONS(3190), + [sym__newline] = ACTIONS(3197), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3234), + [anon_sym_DOT_DOT] = ACTIONS(3241), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3236), - [anon_sym_DOT_DOT_LT] = ACTIONS(3236), - [anon_sym_null] = ACTIONS(3238), - [anon_sym_true] = ACTIONS(3240), - [anon_sym_false] = ACTIONS(3240), - [aux_sym__val_number_decimal_token1] = ACTIONS(3242), - [aux_sym__val_number_decimal_token2] = ACTIONS(3244), - [aux_sym__val_number_decimal_token3] = ACTIONS(3246), - [aux_sym__val_number_decimal_token4] = ACTIONS(3248), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3243), + [anon_sym_DOT_DOT_LT] = ACTIONS(3243), + [anon_sym_null] = ACTIONS(3245), + [anon_sym_true] = ACTIONS(3247), + [anon_sym_false] = ACTIONS(3247), + [aux_sym__val_number_decimal_token1] = ACTIONS(3249), + [aux_sym__val_number_decimal_token2] = ACTIONS(3251), + [aux_sym__val_number_decimal_token3] = ACTIONS(3253), + [aux_sym__val_number_decimal_token4] = ACTIONS(3255), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3250), - [aux_sym__val_number_token5] = ACTIONS(3250), - [aux_sym__val_number_token6] = ACTIONS(3250), + [aux_sym__val_number_token4] = ACTIONS(3257), + [aux_sym__val_number_token5] = ACTIONS(3257), + [aux_sym__val_number_token6] = ACTIONS(3257), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3252), + [sym_val_date] = ACTIONS(3259), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), @@ -175559,7 +175559,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3212), + [aux_sym_unquoted_token1] = ACTIONS(3219), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, @@ -175597,33 +175597,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__unquoted_anonymous_prefix] = STATE(7204), [sym_comment] = STATE(922), [aux_sym_shebang_repeat1] = STATE(935), - [sym__newline] = ACTIONS(3190), + [sym__newline] = ACTIONS(3197), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3234), + [anon_sym_DOT_DOT] = ACTIONS(3241), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3236), - [anon_sym_DOT_DOT_LT] = ACTIONS(3236), - [anon_sym_null] = ACTIONS(3238), - [anon_sym_true] = ACTIONS(3240), - [anon_sym_false] = ACTIONS(3240), - [aux_sym__val_number_decimal_token1] = ACTIONS(3242), - [aux_sym__val_number_decimal_token2] = ACTIONS(3244), - [aux_sym__val_number_decimal_token3] = ACTIONS(3246), - [aux_sym__val_number_decimal_token4] = ACTIONS(3248), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3243), + [anon_sym_DOT_DOT_LT] = ACTIONS(3243), + [anon_sym_null] = ACTIONS(3245), + [anon_sym_true] = ACTIONS(3247), + [anon_sym_false] = ACTIONS(3247), + [aux_sym__val_number_decimal_token1] = ACTIONS(3249), + [aux_sym__val_number_decimal_token2] = ACTIONS(3251), + [aux_sym__val_number_decimal_token3] = ACTIONS(3253), + [aux_sym__val_number_decimal_token4] = ACTIONS(3255), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3250), - [aux_sym__val_number_token5] = ACTIONS(3250), - [aux_sym__val_number_token6] = ACTIONS(3250), + [aux_sym__val_number_token4] = ACTIONS(3257), + [aux_sym__val_number_token5] = ACTIONS(3257), + [aux_sym__val_number_token6] = ACTIONS(3257), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3252), + [sym_val_date] = ACTIONS(3259), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), @@ -175645,7 +175645,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3212), + [aux_sym_unquoted_token1] = ACTIONS(3219), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, @@ -175683,33 +175683,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__unquoted_anonymous_prefix] = STATE(7204), [sym_comment] = STATE(923), [aux_sym_shebang_repeat1] = STATE(936), - [sym__newline] = ACTIONS(3190), + [sym__newline] = ACTIONS(3197), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3234), + [anon_sym_DOT_DOT] = ACTIONS(3241), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3236), - [anon_sym_DOT_DOT_LT] = ACTIONS(3236), - [anon_sym_null] = ACTIONS(3238), - [anon_sym_true] = ACTIONS(3240), - [anon_sym_false] = ACTIONS(3240), - [aux_sym__val_number_decimal_token1] = ACTIONS(3242), - [aux_sym__val_number_decimal_token2] = ACTIONS(3244), - [aux_sym__val_number_decimal_token3] = ACTIONS(3246), - [aux_sym__val_number_decimal_token4] = ACTIONS(3248), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3243), + [anon_sym_DOT_DOT_LT] = ACTIONS(3243), + [anon_sym_null] = ACTIONS(3245), + [anon_sym_true] = ACTIONS(3247), + [anon_sym_false] = ACTIONS(3247), + [aux_sym__val_number_decimal_token1] = ACTIONS(3249), + [aux_sym__val_number_decimal_token2] = ACTIONS(3251), + [aux_sym__val_number_decimal_token3] = ACTIONS(3253), + [aux_sym__val_number_decimal_token4] = ACTIONS(3255), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3250), - [aux_sym__val_number_token5] = ACTIONS(3250), - [aux_sym__val_number_token6] = ACTIONS(3250), + [aux_sym__val_number_token4] = ACTIONS(3257), + [aux_sym__val_number_token5] = ACTIONS(3257), + [aux_sym__val_number_token6] = ACTIONS(3257), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3252), + [sym_val_date] = ACTIONS(3259), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), @@ -175731,7 +175731,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3212), + [aux_sym_unquoted_token1] = ACTIONS(3219), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, @@ -175769,33 +175769,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__unquoted_anonymous_prefix] = STATE(7204), [sym_comment] = STATE(924), [aux_sym_shebang_repeat1] = STATE(937), - [sym__newline] = ACTIONS(3190), + [sym__newline] = ACTIONS(3197), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3234), + [anon_sym_DOT_DOT] = ACTIONS(3241), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3236), - [anon_sym_DOT_DOT_LT] = ACTIONS(3236), - [anon_sym_null] = ACTIONS(3238), - [anon_sym_true] = ACTIONS(3240), - [anon_sym_false] = ACTIONS(3240), - [aux_sym__val_number_decimal_token1] = ACTIONS(3242), - [aux_sym__val_number_decimal_token2] = ACTIONS(3244), - [aux_sym__val_number_decimal_token3] = ACTIONS(3246), - [aux_sym__val_number_decimal_token4] = ACTIONS(3248), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3243), + [anon_sym_DOT_DOT_LT] = ACTIONS(3243), + [anon_sym_null] = ACTIONS(3245), + [anon_sym_true] = ACTIONS(3247), + [anon_sym_false] = ACTIONS(3247), + [aux_sym__val_number_decimal_token1] = ACTIONS(3249), + [aux_sym__val_number_decimal_token2] = ACTIONS(3251), + [aux_sym__val_number_decimal_token3] = ACTIONS(3253), + [aux_sym__val_number_decimal_token4] = ACTIONS(3255), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3250), - [aux_sym__val_number_token5] = ACTIONS(3250), - [aux_sym__val_number_token6] = ACTIONS(3250), + [aux_sym__val_number_token4] = ACTIONS(3257), + [aux_sym__val_number_token5] = ACTIONS(3257), + [aux_sym__val_number_token6] = ACTIONS(3257), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3252), + [sym_val_date] = ACTIONS(3259), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), @@ -175817,7 +175817,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3212), + [aux_sym_unquoted_token1] = ACTIONS(3219), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, @@ -175855,33 +175855,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__unquoted_anonymous_prefix] = STATE(7204), [sym_comment] = STATE(925), [aux_sym_shebang_repeat1] = STATE(938), - [sym__newline] = ACTIONS(3190), + [sym__newline] = ACTIONS(3197), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3234), + [anon_sym_DOT_DOT] = ACTIONS(3241), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3236), - [anon_sym_DOT_DOT_LT] = ACTIONS(3236), - [anon_sym_null] = ACTIONS(3238), - [anon_sym_true] = ACTIONS(3240), - [anon_sym_false] = ACTIONS(3240), - [aux_sym__val_number_decimal_token1] = ACTIONS(3242), - [aux_sym__val_number_decimal_token2] = ACTIONS(3244), - [aux_sym__val_number_decimal_token3] = ACTIONS(3246), - [aux_sym__val_number_decimal_token4] = ACTIONS(3248), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3243), + [anon_sym_DOT_DOT_LT] = ACTIONS(3243), + [anon_sym_null] = ACTIONS(3245), + [anon_sym_true] = ACTIONS(3247), + [anon_sym_false] = ACTIONS(3247), + [aux_sym__val_number_decimal_token1] = ACTIONS(3249), + [aux_sym__val_number_decimal_token2] = ACTIONS(3251), + [aux_sym__val_number_decimal_token3] = ACTIONS(3253), + [aux_sym__val_number_decimal_token4] = ACTIONS(3255), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3250), - [aux_sym__val_number_token5] = ACTIONS(3250), - [aux_sym__val_number_token6] = ACTIONS(3250), + [aux_sym__val_number_token4] = ACTIONS(3257), + [aux_sym__val_number_token5] = ACTIONS(3257), + [aux_sym__val_number_token6] = ACTIONS(3257), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3252), + [sym_val_date] = ACTIONS(3259), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), @@ -175903,7 +175903,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3212), + [aux_sym_unquoted_token1] = ACTIONS(3219), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, @@ -175941,33 +175941,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__unquoted_anonymous_prefix] = STATE(7204), [sym_comment] = STATE(926), [aux_sym_shebang_repeat1] = STATE(939), - [sym__newline] = ACTIONS(3190), + [sym__newline] = ACTIONS(3197), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3234), + [anon_sym_DOT_DOT] = ACTIONS(3241), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3236), - [anon_sym_DOT_DOT_LT] = ACTIONS(3236), - [anon_sym_null] = ACTIONS(3238), - [anon_sym_true] = ACTIONS(3240), - [anon_sym_false] = ACTIONS(3240), - [aux_sym__val_number_decimal_token1] = ACTIONS(3242), - [aux_sym__val_number_decimal_token2] = ACTIONS(3244), - [aux_sym__val_number_decimal_token3] = ACTIONS(3246), - [aux_sym__val_number_decimal_token4] = ACTIONS(3248), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3243), + [anon_sym_DOT_DOT_LT] = ACTIONS(3243), + [anon_sym_null] = ACTIONS(3245), + [anon_sym_true] = ACTIONS(3247), + [anon_sym_false] = ACTIONS(3247), + [aux_sym__val_number_decimal_token1] = ACTIONS(3249), + [aux_sym__val_number_decimal_token2] = ACTIONS(3251), + [aux_sym__val_number_decimal_token3] = ACTIONS(3253), + [aux_sym__val_number_decimal_token4] = ACTIONS(3255), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3250), - [aux_sym__val_number_token5] = ACTIONS(3250), - [aux_sym__val_number_token6] = ACTIONS(3250), + [aux_sym__val_number_token4] = ACTIONS(3257), + [aux_sym__val_number_token5] = ACTIONS(3257), + [aux_sym__val_number_token6] = ACTIONS(3257), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3252), + [sym_val_date] = ACTIONS(3259), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), @@ -175989,7 +175989,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3212), + [aux_sym_unquoted_token1] = ACTIONS(3219), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, @@ -176027,33 +176027,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__unquoted_anonymous_prefix] = STATE(7204), [sym_comment] = STATE(927), [aux_sym_shebang_repeat1] = STATE(2817), - [sym__newline] = ACTIONS(3190), + [sym__newline] = ACTIONS(3197), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3234), + [anon_sym_DOT_DOT] = ACTIONS(3241), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3236), - [anon_sym_DOT_DOT_LT] = ACTIONS(3236), - [anon_sym_null] = ACTIONS(3238), - [anon_sym_true] = ACTIONS(3240), - [anon_sym_false] = ACTIONS(3240), - [aux_sym__val_number_decimal_token1] = ACTIONS(3242), - [aux_sym__val_number_decimal_token2] = ACTIONS(3244), - [aux_sym__val_number_decimal_token3] = ACTIONS(3246), - [aux_sym__val_number_decimal_token4] = ACTIONS(3248), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3243), + [anon_sym_DOT_DOT_LT] = ACTIONS(3243), + [anon_sym_null] = ACTIONS(3245), + [anon_sym_true] = ACTIONS(3247), + [anon_sym_false] = ACTIONS(3247), + [aux_sym__val_number_decimal_token1] = ACTIONS(3249), + [aux_sym__val_number_decimal_token2] = ACTIONS(3251), + [aux_sym__val_number_decimal_token3] = ACTIONS(3253), + [aux_sym__val_number_decimal_token4] = ACTIONS(3255), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3250), - [aux_sym__val_number_token5] = ACTIONS(3250), - [aux_sym__val_number_token6] = ACTIONS(3250), + [aux_sym__val_number_token4] = ACTIONS(3257), + [aux_sym__val_number_token5] = ACTIONS(3257), + [aux_sym__val_number_token6] = ACTIONS(3257), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3252), + [sym_val_date] = ACTIONS(3259), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), @@ -176075,7 +176075,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3212), + [aux_sym_unquoted_token1] = ACTIONS(3219), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, @@ -176113,33 +176113,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__unquoted_anonymous_prefix] = STATE(7204), [sym_comment] = STATE(928), [aux_sym_shebang_repeat1] = STATE(2817), - [sym__newline] = ACTIONS(3190), + [sym__newline] = ACTIONS(3197), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3234), + [anon_sym_DOT_DOT] = ACTIONS(3241), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3236), - [anon_sym_DOT_DOT_LT] = ACTIONS(3236), - [anon_sym_null] = ACTIONS(3238), - [anon_sym_true] = ACTIONS(3240), - [anon_sym_false] = ACTIONS(3240), - [aux_sym__val_number_decimal_token1] = ACTIONS(3242), - [aux_sym__val_number_decimal_token2] = ACTIONS(3244), - [aux_sym__val_number_decimal_token3] = ACTIONS(3246), - [aux_sym__val_number_decimal_token4] = ACTIONS(3248), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3243), + [anon_sym_DOT_DOT_LT] = ACTIONS(3243), + [anon_sym_null] = ACTIONS(3245), + [anon_sym_true] = ACTIONS(3247), + [anon_sym_false] = ACTIONS(3247), + [aux_sym__val_number_decimal_token1] = ACTIONS(3249), + [aux_sym__val_number_decimal_token2] = ACTIONS(3251), + [aux_sym__val_number_decimal_token3] = ACTIONS(3253), + [aux_sym__val_number_decimal_token4] = ACTIONS(3255), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3250), - [aux_sym__val_number_token5] = ACTIONS(3250), - [aux_sym__val_number_token6] = ACTIONS(3250), + [aux_sym__val_number_token4] = ACTIONS(3257), + [aux_sym__val_number_token5] = ACTIONS(3257), + [aux_sym__val_number_token6] = ACTIONS(3257), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3252), + [sym_val_date] = ACTIONS(3259), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), @@ -176161,7 +176161,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3212), + [aux_sym_unquoted_token1] = ACTIONS(3219), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, @@ -176199,33 +176199,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__unquoted_anonymous_prefix] = STATE(7204), [sym_comment] = STATE(929), [aux_sym_shebang_repeat1] = STATE(2817), - [sym__newline] = ACTIONS(3190), + [sym__newline] = ACTIONS(3197), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3234), + [anon_sym_DOT_DOT] = ACTIONS(3241), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3236), - [anon_sym_DOT_DOT_LT] = ACTIONS(3236), - [anon_sym_null] = ACTIONS(3238), - [anon_sym_true] = ACTIONS(3240), - [anon_sym_false] = ACTIONS(3240), - [aux_sym__val_number_decimal_token1] = ACTIONS(3242), - [aux_sym__val_number_decimal_token2] = ACTIONS(3244), - [aux_sym__val_number_decimal_token3] = ACTIONS(3246), - [aux_sym__val_number_decimal_token4] = ACTIONS(3248), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3243), + [anon_sym_DOT_DOT_LT] = ACTIONS(3243), + [anon_sym_null] = ACTIONS(3245), + [anon_sym_true] = ACTIONS(3247), + [anon_sym_false] = ACTIONS(3247), + [aux_sym__val_number_decimal_token1] = ACTIONS(3249), + [aux_sym__val_number_decimal_token2] = ACTIONS(3251), + [aux_sym__val_number_decimal_token3] = ACTIONS(3253), + [aux_sym__val_number_decimal_token4] = ACTIONS(3255), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3250), - [aux_sym__val_number_token5] = ACTIONS(3250), - [aux_sym__val_number_token6] = ACTIONS(3250), + [aux_sym__val_number_token4] = ACTIONS(3257), + [aux_sym__val_number_token5] = ACTIONS(3257), + [aux_sym__val_number_token6] = ACTIONS(3257), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3252), + [sym_val_date] = ACTIONS(3259), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), @@ -176247,7 +176247,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3212), + [aux_sym_unquoted_token1] = ACTIONS(3219), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, @@ -176285,33 +176285,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__unquoted_anonymous_prefix] = STATE(7204), [sym_comment] = STATE(930), [aux_sym_shebang_repeat1] = STATE(2817), - [sym__newline] = ACTIONS(3190), + [sym__newline] = ACTIONS(3197), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3234), + [anon_sym_DOT_DOT] = ACTIONS(3241), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3236), - [anon_sym_DOT_DOT_LT] = ACTIONS(3236), - [anon_sym_null] = ACTIONS(3238), - [anon_sym_true] = ACTIONS(3240), - [anon_sym_false] = ACTIONS(3240), - [aux_sym__val_number_decimal_token1] = ACTIONS(3242), - [aux_sym__val_number_decimal_token2] = ACTIONS(3244), - [aux_sym__val_number_decimal_token3] = ACTIONS(3246), - [aux_sym__val_number_decimal_token4] = ACTIONS(3248), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3243), + [anon_sym_DOT_DOT_LT] = ACTIONS(3243), + [anon_sym_null] = ACTIONS(3245), + [anon_sym_true] = ACTIONS(3247), + [anon_sym_false] = ACTIONS(3247), + [aux_sym__val_number_decimal_token1] = ACTIONS(3249), + [aux_sym__val_number_decimal_token2] = ACTIONS(3251), + [aux_sym__val_number_decimal_token3] = ACTIONS(3253), + [aux_sym__val_number_decimal_token4] = ACTIONS(3255), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3250), - [aux_sym__val_number_token5] = ACTIONS(3250), - [aux_sym__val_number_token6] = ACTIONS(3250), + [aux_sym__val_number_token4] = ACTIONS(3257), + [aux_sym__val_number_token5] = ACTIONS(3257), + [aux_sym__val_number_token6] = ACTIONS(3257), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3252), + [sym_val_date] = ACTIONS(3259), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), @@ -176333,7 +176333,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3212), + [aux_sym_unquoted_token1] = ACTIONS(3219), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, @@ -176371,33 +176371,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__unquoted_anonymous_prefix] = STATE(7204), [sym_comment] = STATE(931), [aux_sym_shebang_repeat1] = STATE(2817), - [sym__newline] = ACTIONS(3190), + [sym__newline] = ACTIONS(3197), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3234), + [anon_sym_DOT_DOT] = ACTIONS(3241), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3236), - [anon_sym_DOT_DOT_LT] = ACTIONS(3236), - [anon_sym_null] = ACTIONS(3238), - [anon_sym_true] = ACTIONS(3240), - [anon_sym_false] = ACTIONS(3240), - [aux_sym__val_number_decimal_token1] = ACTIONS(3242), - [aux_sym__val_number_decimal_token2] = ACTIONS(3244), - [aux_sym__val_number_decimal_token3] = ACTIONS(3246), - [aux_sym__val_number_decimal_token4] = ACTIONS(3248), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3243), + [anon_sym_DOT_DOT_LT] = ACTIONS(3243), + [anon_sym_null] = ACTIONS(3245), + [anon_sym_true] = ACTIONS(3247), + [anon_sym_false] = ACTIONS(3247), + [aux_sym__val_number_decimal_token1] = ACTIONS(3249), + [aux_sym__val_number_decimal_token2] = ACTIONS(3251), + [aux_sym__val_number_decimal_token3] = ACTIONS(3253), + [aux_sym__val_number_decimal_token4] = ACTIONS(3255), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3250), - [aux_sym__val_number_token5] = ACTIONS(3250), - [aux_sym__val_number_token6] = ACTIONS(3250), + [aux_sym__val_number_token4] = ACTIONS(3257), + [aux_sym__val_number_token5] = ACTIONS(3257), + [aux_sym__val_number_token6] = ACTIONS(3257), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3252), + [sym_val_date] = ACTIONS(3259), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), @@ -176419,7 +176419,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3212), + [aux_sym_unquoted_token1] = ACTIONS(3219), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, @@ -176457,33 +176457,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__unquoted_anonymous_prefix] = STATE(7204), [sym_comment] = STATE(932), [aux_sym_shebang_repeat1] = STATE(2817), - [sym__newline] = ACTIONS(3190), + [sym__newline] = ACTIONS(3197), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3234), + [anon_sym_DOT_DOT] = ACTIONS(3241), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3236), - [anon_sym_DOT_DOT_LT] = ACTIONS(3236), - [anon_sym_null] = ACTIONS(3238), - [anon_sym_true] = ACTIONS(3240), - [anon_sym_false] = ACTIONS(3240), - [aux_sym__val_number_decimal_token1] = ACTIONS(3242), - [aux_sym__val_number_decimal_token2] = ACTIONS(3244), - [aux_sym__val_number_decimal_token3] = ACTIONS(3246), - [aux_sym__val_number_decimal_token4] = ACTIONS(3248), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3243), + [anon_sym_DOT_DOT_LT] = ACTIONS(3243), + [anon_sym_null] = ACTIONS(3245), + [anon_sym_true] = ACTIONS(3247), + [anon_sym_false] = ACTIONS(3247), + [aux_sym__val_number_decimal_token1] = ACTIONS(3249), + [aux_sym__val_number_decimal_token2] = ACTIONS(3251), + [aux_sym__val_number_decimal_token3] = ACTIONS(3253), + [aux_sym__val_number_decimal_token4] = ACTIONS(3255), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3250), - [aux_sym__val_number_token5] = ACTIONS(3250), - [aux_sym__val_number_token6] = ACTIONS(3250), + [aux_sym__val_number_token4] = ACTIONS(3257), + [aux_sym__val_number_token5] = ACTIONS(3257), + [aux_sym__val_number_token6] = ACTIONS(3257), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3252), + [sym_val_date] = ACTIONS(3259), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), @@ -176505,7 +176505,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3212), + [aux_sym_unquoted_token1] = ACTIONS(3219), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, @@ -176543,33 +176543,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__unquoted_anonymous_prefix] = STATE(7204), [sym_comment] = STATE(933), [aux_sym_shebang_repeat1] = STATE(2817), - [sym__newline] = ACTIONS(3190), + [sym__newline] = ACTIONS(3197), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3234), + [anon_sym_DOT_DOT] = ACTIONS(3241), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3236), - [anon_sym_DOT_DOT_LT] = ACTIONS(3236), - [anon_sym_null] = ACTIONS(3238), - [anon_sym_true] = ACTIONS(3240), - [anon_sym_false] = ACTIONS(3240), - [aux_sym__val_number_decimal_token1] = ACTIONS(3242), - [aux_sym__val_number_decimal_token2] = ACTIONS(3244), - [aux_sym__val_number_decimal_token3] = ACTIONS(3246), - [aux_sym__val_number_decimal_token4] = ACTIONS(3248), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3243), + [anon_sym_DOT_DOT_LT] = ACTIONS(3243), + [anon_sym_null] = ACTIONS(3245), + [anon_sym_true] = ACTIONS(3247), + [anon_sym_false] = ACTIONS(3247), + [aux_sym__val_number_decimal_token1] = ACTIONS(3249), + [aux_sym__val_number_decimal_token2] = ACTIONS(3251), + [aux_sym__val_number_decimal_token3] = ACTIONS(3253), + [aux_sym__val_number_decimal_token4] = ACTIONS(3255), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3250), - [aux_sym__val_number_token5] = ACTIONS(3250), - [aux_sym__val_number_token6] = ACTIONS(3250), + [aux_sym__val_number_token4] = ACTIONS(3257), + [aux_sym__val_number_token5] = ACTIONS(3257), + [aux_sym__val_number_token6] = ACTIONS(3257), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3252), + [sym_val_date] = ACTIONS(3259), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), @@ -176591,7 +176591,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3212), + [aux_sym_unquoted_token1] = ACTIONS(3219), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, @@ -176629,33 +176629,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__unquoted_anonymous_prefix] = STATE(7204), [sym_comment] = STATE(934), [aux_sym_shebang_repeat1] = STATE(2817), - [sym__newline] = ACTIONS(3190), + [sym__newline] = ACTIONS(3197), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3234), + [anon_sym_DOT_DOT] = ACTIONS(3241), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3236), - [anon_sym_DOT_DOT_LT] = ACTIONS(3236), - [anon_sym_null] = ACTIONS(3238), - [anon_sym_true] = ACTIONS(3240), - [anon_sym_false] = ACTIONS(3240), - [aux_sym__val_number_decimal_token1] = ACTIONS(3242), - [aux_sym__val_number_decimal_token2] = ACTIONS(3244), - [aux_sym__val_number_decimal_token3] = ACTIONS(3246), - [aux_sym__val_number_decimal_token4] = ACTIONS(3248), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3243), + [anon_sym_DOT_DOT_LT] = ACTIONS(3243), + [anon_sym_null] = ACTIONS(3245), + [anon_sym_true] = ACTIONS(3247), + [anon_sym_false] = ACTIONS(3247), + [aux_sym__val_number_decimal_token1] = ACTIONS(3249), + [aux_sym__val_number_decimal_token2] = ACTIONS(3251), + [aux_sym__val_number_decimal_token3] = ACTIONS(3253), + [aux_sym__val_number_decimal_token4] = ACTIONS(3255), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3250), - [aux_sym__val_number_token5] = ACTIONS(3250), - [aux_sym__val_number_token6] = ACTIONS(3250), + [aux_sym__val_number_token4] = ACTIONS(3257), + [aux_sym__val_number_token5] = ACTIONS(3257), + [aux_sym__val_number_token6] = ACTIONS(3257), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3252), + [sym_val_date] = ACTIONS(3259), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), @@ -176677,7 +176677,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3212), + [aux_sym_unquoted_token1] = ACTIONS(3219), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, @@ -176715,33 +176715,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__unquoted_anonymous_prefix] = STATE(7204), [sym_comment] = STATE(935), [aux_sym_shebang_repeat1] = STATE(2817), - [sym__newline] = ACTIONS(3190), + [sym__newline] = ACTIONS(3197), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3234), + [anon_sym_DOT_DOT] = ACTIONS(3241), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3236), - [anon_sym_DOT_DOT_LT] = ACTIONS(3236), - [anon_sym_null] = ACTIONS(3238), - [anon_sym_true] = ACTIONS(3240), - [anon_sym_false] = ACTIONS(3240), - [aux_sym__val_number_decimal_token1] = ACTIONS(3242), - [aux_sym__val_number_decimal_token2] = ACTIONS(3244), - [aux_sym__val_number_decimal_token3] = ACTIONS(3246), - [aux_sym__val_number_decimal_token4] = ACTIONS(3248), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3243), + [anon_sym_DOT_DOT_LT] = ACTIONS(3243), + [anon_sym_null] = ACTIONS(3245), + [anon_sym_true] = ACTIONS(3247), + [anon_sym_false] = ACTIONS(3247), + [aux_sym__val_number_decimal_token1] = ACTIONS(3249), + [aux_sym__val_number_decimal_token2] = ACTIONS(3251), + [aux_sym__val_number_decimal_token3] = ACTIONS(3253), + [aux_sym__val_number_decimal_token4] = ACTIONS(3255), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3250), - [aux_sym__val_number_token5] = ACTIONS(3250), - [aux_sym__val_number_token6] = ACTIONS(3250), + [aux_sym__val_number_token4] = ACTIONS(3257), + [aux_sym__val_number_token5] = ACTIONS(3257), + [aux_sym__val_number_token6] = ACTIONS(3257), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3252), + [sym_val_date] = ACTIONS(3259), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), @@ -176763,7 +176763,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3212), + [aux_sym_unquoted_token1] = ACTIONS(3219), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, @@ -176801,33 +176801,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__unquoted_anonymous_prefix] = STATE(7204), [sym_comment] = STATE(936), [aux_sym_shebang_repeat1] = STATE(2817), - [sym__newline] = ACTIONS(3190), + [sym__newline] = ACTIONS(3197), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3234), + [anon_sym_DOT_DOT] = ACTIONS(3241), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3236), - [anon_sym_DOT_DOT_LT] = ACTIONS(3236), - [anon_sym_null] = ACTIONS(3238), - [anon_sym_true] = ACTIONS(3240), - [anon_sym_false] = ACTIONS(3240), - [aux_sym__val_number_decimal_token1] = ACTIONS(3242), - [aux_sym__val_number_decimal_token2] = ACTIONS(3244), - [aux_sym__val_number_decimal_token3] = ACTIONS(3246), - [aux_sym__val_number_decimal_token4] = ACTIONS(3248), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3243), + [anon_sym_DOT_DOT_LT] = ACTIONS(3243), + [anon_sym_null] = ACTIONS(3245), + [anon_sym_true] = ACTIONS(3247), + [anon_sym_false] = ACTIONS(3247), + [aux_sym__val_number_decimal_token1] = ACTIONS(3249), + [aux_sym__val_number_decimal_token2] = ACTIONS(3251), + [aux_sym__val_number_decimal_token3] = ACTIONS(3253), + [aux_sym__val_number_decimal_token4] = ACTIONS(3255), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3250), - [aux_sym__val_number_token5] = ACTIONS(3250), - [aux_sym__val_number_token6] = ACTIONS(3250), + [aux_sym__val_number_token4] = ACTIONS(3257), + [aux_sym__val_number_token5] = ACTIONS(3257), + [aux_sym__val_number_token6] = ACTIONS(3257), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3252), + [sym_val_date] = ACTIONS(3259), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), @@ -176849,7 +176849,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3212), + [aux_sym_unquoted_token1] = ACTIONS(3219), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, @@ -176887,33 +176887,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__unquoted_anonymous_prefix] = STATE(7204), [sym_comment] = STATE(937), [aux_sym_shebang_repeat1] = STATE(2817), - [sym__newline] = ACTIONS(3190), + [sym__newline] = ACTIONS(3197), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3234), + [anon_sym_DOT_DOT] = ACTIONS(3241), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3236), - [anon_sym_DOT_DOT_LT] = ACTIONS(3236), - [anon_sym_null] = ACTIONS(3238), - [anon_sym_true] = ACTIONS(3240), - [anon_sym_false] = ACTIONS(3240), - [aux_sym__val_number_decimal_token1] = ACTIONS(3242), - [aux_sym__val_number_decimal_token2] = ACTIONS(3244), - [aux_sym__val_number_decimal_token3] = ACTIONS(3246), - [aux_sym__val_number_decimal_token4] = ACTIONS(3248), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3243), + [anon_sym_DOT_DOT_LT] = ACTIONS(3243), + [anon_sym_null] = ACTIONS(3245), + [anon_sym_true] = ACTIONS(3247), + [anon_sym_false] = ACTIONS(3247), + [aux_sym__val_number_decimal_token1] = ACTIONS(3249), + [aux_sym__val_number_decimal_token2] = ACTIONS(3251), + [aux_sym__val_number_decimal_token3] = ACTIONS(3253), + [aux_sym__val_number_decimal_token4] = ACTIONS(3255), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3250), - [aux_sym__val_number_token5] = ACTIONS(3250), - [aux_sym__val_number_token6] = ACTIONS(3250), + [aux_sym__val_number_token4] = ACTIONS(3257), + [aux_sym__val_number_token5] = ACTIONS(3257), + [aux_sym__val_number_token6] = ACTIONS(3257), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3252), + [sym_val_date] = ACTIONS(3259), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), @@ -176935,7 +176935,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3212), + [aux_sym_unquoted_token1] = ACTIONS(3219), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, @@ -176973,33 +176973,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__unquoted_anonymous_prefix] = STATE(7204), [sym_comment] = STATE(938), [aux_sym_shebang_repeat1] = STATE(2817), - [sym__newline] = ACTIONS(3190), + [sym__newline] = ACTIONS(3197), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3234), + [anon_sym_DOT_DOT] = ACTIONS(3241), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3236), - [anon_sym_DOT_DOT_LT] = ACTIONS(3236), - [anon_sym_null] = ACTIONS(3238), - [anon_sym_true] = ACTIONS(3240), - [anon_sym_false] = ACTIONS(3240), - [aux_sym__val_number_decimal_token1] = ACTIONS(3242), - [aux_sym__val_number_decimal_token2] = ACTIONS(3244), - [aux_sym__val_number_decimal_token3] = ACTIONS(3246), - [aux_sym__val_number_decimal_token4] = ACTIONS(3248), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3243), + [anon_sym_DOT_DOT_LT] = ACTIONS(3243), + [anon_sym_null] = ACTIONS(3245), + [anon_sym_true] = ACTIONS(3247), + [anon_sym_false] = ACTIONS(3247), + [aux_sym__val_number_decimal_token1] = ACTIONS(3249), + [aux_sym__val_number_decimal_token2] = ACTIONS(3251), + [aux_sym__val_number_decimal_token3] = ACTIONS(3253), + [aux_sym__val_number_decimal_token4] = ACTIONS(3255), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3250), - [aux_sym__val_number_token5] = ACTIONS(3250), - [aux_sym__val_number_token6] = ACTIONS(3250), + [aux_sym__val_number_token4] = ACTIONS(3257), + [aux_sym__val_number_token5] = ACTIONS(3257), + [aux_sym__val_number_token6] = ACTIONS(3257), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3252), + [sym_val_date] = ACTIONS(3259), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), @@ -177021,7 +177021,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3212), + [aux_sym_unquoted_token1] = ACTIONS(3219), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, @@ -177059,33 +177059,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__unquoted_anonymous_prefix] = STATE(7204), [sym_comment] = STATE(939), [aux_sym_shebang_repeat1] = STATE(2817), - [sym__newline] = ACTIONS(3190), + [sym__newline] = ACTIONS(3197), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3234), + [anon_sym_DOT_DOT] = ACTIONS(3241), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3236), - [anon_sym_DOT_DOT_LT] = ACTIONS(3236), - [anon_sym_null] = ACTIONS(3238), - [anon_sym_true] = ACTIONS(3240), - [anon_sym_false] = ACTIONS(3240), - [aux_sym__val_number_decimal_token1] = ACTIONS(3242), - [aux_sym__val_number_decimal_token2] = ACTIONS(3244), - [aux_sym__val_number_decimal_token3] = ACTIONS(3246), - [aux_sym__val_number_decimal_token4] = ACTIONS(3248), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3243), + [anon_sym_DOT_DOT_LT] = ACTIONS(3243), + [anon_sym_null] = ACTIONS(3245), + [anon_sym_true] = ACTIONS(3247), + [anon_sym_false] = ACTIONS(3247), + [aux_sym__val_number_decimal_token1] = ACTIONS(3249), + [aux_sym__val_number_decimal_token2] = ACTIONS(3251), + [aux_sym__val_number_decimal_token3] = ACTIONS(3253), + [aux_sym__val_number_decimal_token4] = ACTIONS(3255), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3250), - [aux_sym__val_number_token5] = ACTIONS(3250), - [aux_sym__val_number_token6] = ACTIONS(3250), + [aux_sym__val_number_token4] = ACTIONS(3257), + [aux_sym__val_number_token5] = ACTIONS(3257), + [aux_sym__val_number_token6] = ACTIONS(3257), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3252), + [sym_val_date] = ACTIONS(3259), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), @@ -177107,7 +177107,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3212), + [aux_sym_unquoted_token1] = ACTIONS(3219), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, @@ -177145,33 +177145,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__unquoted_anonymous_prefix] = STATE(7204), [sym_comment] = STATE(940), [aux_sym_shebang_repeat1] = STATE(953), - [sym__newline] = ACTIONS(3190), + [sym__newline] = ACTIONS(3197), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3234), + [anon_sym_DOT_DOT] = ACTIONS(3241), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3236), - [anon_sym_DOT_DOT_LT] = ACTIONS(3236), - [anon_sym_null] = ACTIONS(3238), - [anon_sym_true] = ACTIONS(3240), - [anon_sym_false] = ACTIONS(3240), - [aux_sym__val_number_decimal_token1] = ACTIONS(3242), - [aux_sym__val_number_decimal_token2] = ACTIONS(3244), - [aux_sym__val_number_decimal_token3] = ACTIONS(3246), - [aux_sym__val_number_decimal_token4] = ACTIONS(3248), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3243), + [anon_sym_DOT_DOT_LT] = ACTIONS(3243), + [anon_sym_null] = ACTIONS(3245), + [anon_sym_true] = ACTIONS(3247), + [anon_sym_false] = ACTIONS(3247), + [aux_sym__val_number_decimal_token1] = ACTIONS(3249), + [aux_sym__val_number_decimal_token2] = ACTIONS(3251), + [aux_sym__val_number_decimal_token3] = ACTIONS(3253), + [aux_sym__val_number_decimal_token4] = ACTIONS(3255), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3250), - [aux_sym__val_number_token5] = ACTIONS(3250), - [aux_sym__val_number_token6] = ACTIONS(3250), + [aux_sym__val_number_token4] = ACTIONS(3257), + [aux_sym__val_number_token5] = ACTIONS(3257), + [aux_sym__val_number_token6] = ACTIONS(3257), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3252), + [sym_val_date] = ACTIONS(3259), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), @@ -177193,7 +177193,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3212), + [aux_sym_unquoted_token1] = ACTIONS(3219), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, @@ -177231,33 +177231,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__unquoted_anonymous_prefix] = STATE(7204), [sym_comment] = STATE(941), [aux_sym_shebang_repeat1] = STATE(954), - [sym__newline] = ACTIONS(3190), + [sym__newline] = ACTIONS(3197), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3234), + [anon_sym_DOT_DOT] = ACTIONS(3241), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3236), - [anon_sym_DOT_DOT_LT] = ACTIONS(3236), - [anon_sym_null] = ACTIONS(3238), - [anon_sym_true] = ACTIONS(3240), - [anon_sym_false] = ACTIONS(3240), - [aux_sym__val_number_decimal_token1] = ACTIONS(3242), - [aux_sym__val_number_decimal_token2] = ACTIONS(3244), - [aux_sym__val_number_decimal_token3] = ACTIONS(3246), - [aux_sym__val_number_decimal_token4] = ACTIONS(3248), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3243), + [anon_sym_DOT_DOT_LT] = ACTIONS(3243), + [anon_sym_null] = ACTIONS(3245), + [anon_sym_true] = ACTIONS(3247), + [anon_sym_false] = ACTIONS(3247), + [aux_sym__val_number_decimal_token1] = ACTIONS(3249), + [aux_sym__val_number_decimal_token2] = ACTIONS(3251), + [aux_sym__val_number_decimal_token3] = ACTIONS(3253), + [aux_sym__val_number_decimal_token4] = ACTIONS(3255), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3250), - [aux_sym__val_number_token5] = ACTIONS(3250), - [aux_sym__val_number_token6] = ACTIONS(3250), + [aux_sym__val_number_token4] = ACTIONS(3257), + [aux_sym__val_number_token5] = ACTIONS(3257), + [aux_sym__val_number_token6] = ACTIONS(3257), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3252), + [sym_val_date] = ACTIONS(3259), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), @@ -177279,7 +177279,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3212), + [aux_sym_unquoted_token1] = ACTIONS(3219), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, @@ -177317,33 +177317,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__unquoted_anonymous_prefix] = STATE(7204), [sym_comment] = STATE(942), [aux_sym_shebang_repeat1] = STATE(955), - [sym__newline] = ACTIONS(3190), + [sym__newline] = ACTIONS(3197), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3234), + [anon_sym_DOT_DOT] = ACTIONS(3241), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3236), - [anon_sym_DOT_DOT_LT] = ACTIONS(3236), - [anon_sym_null] = ACTIONS(3238), - [anon_sym_true] = ACTIONS(3240), - [anon_sym_false] = ACTIONS(3240), - [aux_sym__val_number_decimal_token1] = ACTIONS(3242), - [aux_sym__val_number_decimal_token2] = ACTIONS(3244), - [aux_sym__val_number_decimal_token3] = ACTIONS(3246), - [aux_sym__val_number_decimal_token4] = ACTIONS(3248), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3243), + [anon_sym_DOT_DOT_LT] = ACTIONS(3243), + [anon_sym_null] = ACTIONS(3245), + [anon_sym_true] = ACTIONS(3247), + [anon_sym_false] = ACTIONS(3247), + [aux_sym__val_number_decimal_token1] = ACTIONS(3249), + [aux_sym__val_number_decimal_token2] = ACTIONS(3251), + [aux_sym__val_number_decimal_token3] = ACTIONS(3253), + [aux_sym__val_number_decimal_token4] = ACTIONS(3255), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3250), - [aux_sym__val_number_token5] = ACTIONS(3250), - [aux_sym__val_number_token6] = ACTIONS(3250), + [aux_sym__val_number_token4] = ACTIONS(3257), + [aux_sym__val_number_token5] = ACTIONS(3257), + [aux_sym__val_number_token6] = ACTIONS(3257), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3252), + [sym_val_date] = ACTIONS(3259), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), @@ -177365,7 +177365,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3212), + [aux_sym_unquoted_token1] = ACTIONS(3219), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, @@ -177403,33 +177403,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__unquoted_anonymous_prefix] = STATE(7204), [sym_comment] = STATE(943), [aux_sym_shebang_repeat1] = STATE(956), - [sym__newline] = ACTIONS(3190), + [sym__newline] = ACTIONS(3197), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3234), + [anon_sym_DOT_DOT] = ACTIONS(3241), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3236), - [anon_sym_DOT_DOT_LT] = ACTIONS(3236), - [anon_sym_null] = ACTIONS(3238), - [anon_sym_true] = ACTIONS(3240), - [anon_sym_false] = ACTIONS(3240), - [aux_sym__val_number_decimal_token1] = ACTIONS(3242), - [aux_sym__val_number_decimal_token2] = ACTIONS(3244), - [aux_sym__val_number_decimal_token3] = ACTIONS(3246), - [aux_sym__val_number_decimal_token4] = ACTIONS(3248), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3243), + [anon_sym_DOT_DOT_LT] = ACTIONS(3243), + [anon_sym_null] = ACTIONS(3245), + [anon_sym_true] = ACTIONS(3247), + [anon_sym_false] = ACTIONS(3247), + [aux_sym__val_number_decimal_token1] = ACTIONS(3249), + [aux_sym__val_number_decimal_token2] = ACTIONS(3251), + [aux_sym__val_number_decimal_token3] = ACTIONS(3253), + [aux_sym__val_number_decimal_token4] = ACTIONS(3255), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3250), - [aux_sym__val_number_token5] = ACTIONS(3250), - [aux_sym__val_number_token6] = ACTIONS(3250), + [aux_sym__val_number_token4] = ACTIONS(3257), + [aux_sym__val_number_token5] = ACTIONS(3257), + [aux_sym__val_number_token6] = ACTIONS(3257), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3252), + [sym_val_date] = ACTIONS(3259), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), @@ -177451,7 +177451,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3212), + [aux_sym_unquoted_token1] = ACTIONS(3219), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, @@ -177489,33 +177489,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__unquoted_anonymous_prefix] = STATE(7204), [sym_comment] = STATE(944), [aux_sym_shebang_repeat1] = STATE(957), - [sym__newline] = ACTIONS(3190), + [sym__newline] = ACTIONS(3197), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3234), + [anon_sym_DOT_DOT] = ACTIONS(3241), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3236), - [anon_sym_DOT_DOT_LT] = ACTIONS(3236), - [anon_sym_null] = ACTIONS(3238), - [anon_sym_true] = ACTIONS(3240), - [anon_sym_false] = ACTIONS(3240), - [aux_sym__val_number_decimal_token1] = ACTIONS(3242), - [aux_sym__val_number_decimal_token2] = ACTIONS(3244), - [aux_sym__val_number_decimal_token3] = ACTIONS(3246), - [aux_sym__val_number_decimal_token4] = ACTIONS(3248), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3243), + [anon_sym_DOT_DOT_LT] = ACTIONS(3243), + [anon_sym_null] = ACTIONS(3245), + [anon_sym_true] = ACTIONS(3247), + [anon_sym_false] = ACTIONS(3247), + [aux_sym__val_number_decimal_token1] = ACTIONS(3249), + [aux_sym__val_number_decimal_token2] = ACTIONS(3251), + [aux_sym__val_number_decimal_token3] = ACTIONS(3253), + [aux_sym__val_number_decimal_token4] = ACTIONS(3255), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3250), - [aux_sym__val_number_token5] = ACTIONS(3250), - [aux_sym__val_number_token6] = ACTIONS(3250), + [aux_sym__val_number_token4] = ACTIONS(3257), + [aux_sym__val_number_token5] = ACTIONS(3257), + [aux_sym__val_number_token6] = ACTIONS(3257), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3252), + [sym_val_date] = ACTIONS(3259), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), @@ -177537,7 +177537,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3212), + [aux_sym_unquoted_token1] = ACTIONS(3219), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, @@ -177575,33 +177575,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__unquoted_anonymous_prefix] = STATE(7204), [sym_comment] = STATE(945), [aux_sym_shebang_repeat1] = STATE(958), - [sym__newline] = ACTIONS(3190), + [sym__newline] = ACTIONS(3197), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3234), + [anon_sym_DOT_DOT] = ACTIONS(3241), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3236), - [anon_sym_DOT_DOT_LT] = ACTIONS(3236), - [anon_sym_null] = ACTIONS(3238), - [anon_sym_true] = ACTIONS(3240), - [anon_sym_false] = ACTIONS(3240), - [aux_sym__val_number_decimal_token1] = ACTIONS(3242), - [aux_sym__val_number_decimal_token2] = ACTIONS(3244), - [aux_sym__val_number_decimal_token3] = ACTIONS(3246), - [aux_sym__val_number_decimal_token4] = ACTIONS(3248), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3243), + [anon_sym_DOT_DOT_LT] = ACTIONS(3243), + [anon_sym_null] = ACTIONS(3245), + [anon_sym_true] = ACTIONS(3247), + [anon_sym_false] = ACTIONS(3247), + [aux_sym__val_number_decimal_token1] = ACTIONS(3249), + [aux_sym__val_number_decimal_token2] = ACTIONS(3251), + [aux_sym__val_number_decimal_token3] = ACTIONS(3253), + [aux_sym__val_number_decimal_token4] = ACTIONS(3255), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3250), - [aux_sym__val_number_token5] = ACTIONS(3250), - [aux_sym__val_number_token6] = ACTIONS(3250), + [aux_sym__val_number_token4] = ACTIONS(3257), + [aux_sym__val_number_token5] = ACTIONS(3257), + [aux_sym__val_number_token6] = ACTIONS(3257), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3252), + [sym_val_date] = ACTIONS(3259), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), @@ -177623,7 +177623,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3212), + [aux_sym_unquoted_token1] = ACTIONS(3219), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, @@ -177661,33 +177661,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__unquoted_anonymous_prefix] = STATE(7204), [sym_comment] = STATE(946), [aux_sym_shebang_repeat1] = STATE(959), - [sym__newline] = ACTIONS(3190), + [sym__newline] = ACTIONS(3197), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3234), + [anon_sym_DOT_DOT] = ACTIONS(3241), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3236), - [anon_sym_DOT_DOT_LT] = ACTIONS(3236), - [anon_sym_null] = ACTIONS(3238), - [anon_sym_true] = ACTIONS(3240), - [anon_sym_false] = ACTIONS(3240), - [aux_sym__val_number_decimal_token1] = ACTIONS(3242), - [aux_sym__val_number_decimal_token2] = ACTIONS(3244), - [aux_sym__val_number_decimal_token3] = ACTIONS(3246), - [aux_sym__val_number_decimal_token4] = ACTIONS(3248), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3243), + [anon_sym_DOT_DOT_LT] = ACTIONS(3243), + [anon_sym_null] = ACTIONS(3245), + [anon_sym_true] = ACTIONS(3247), + [anon_sym_false] = ACTIONS(3247), + [aux_sym__val_number_decimal_token1] = ACTIONS(3249), + [aux_sym__val_number_decimal_token2] = ACTIONS(3251), + [aux_sym__val_number_decimal_token3] = ACTIONS(3253), + [aux_sym__val_number_decimal_token4] = ACTIONS(3255), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3250), - [aux_sym__val_number_token5] = ACTIONS(3250), - [aux_sym__val_number_token6] = ACTIONS(3250), + [aux_sym__val_number_token4] = ACTIONS(3257), + [aux_sym__val_number_token5] = ACTIONS(3257), + [aux_sym__val_number_token6] = ACTIONS(3257), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3252), + [sym_val_date] = ACTIONS(3259), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), @@ -177709,7 +177709,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3212), + [aux_sym_unquoted_token1] = ACTIONS(3219), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, @@ -177747,33 +177747,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__unquoted_anonymous_prefix] = STATE(7204), [sym_comment] = STATE(947), [aux_sym_shebang_repeat1] = STATE(960), - [sym__newline] = ACTIONS(3190), + [sym__newline] = ACTIONS(3197), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3234), + [anon_sym_DOT_DOT] = ACTIONS(3241), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3236), - [anon_sym_DOT_DOT_LT] = ACTIONS(3236), - [anon_sym_null] = ACTIONS(3238), - [anon_sym_true] = ACTIONS(3240), - [anon_sym_false] = ACTIONS(3240), - [aux_sym__val_number_decimal_token1] = ACTIONS(3242), - [aux_sym__val_number_decimal_token2] = ACTIONS(3244), - [aux_sym__val_number_decimal_token3] = ACTIONS(3246), - [aux_sym__val_number_decimal_token4] = ACTIONS(3248), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3243), + [anon_sym_DOT_DOT_LT] = ACTIONS(3243), + [anon_sym_null] = ACTIONS(3245), + [anon_sym_true] = ACTIONS(3247), + [anon_sym_false] = ACTIONS(3247), + [aux_sym__val_number_decimal_token1] = ACTIONS(3249), + [aux_sym__val_number_decimal_token2] = ACTIONS(3251), + [aux_sym__val_number_decimal_token3] = ACTIONS(3253), + [aux_sym__val_number_decimal_token4] = ACTIONS(3255), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3250), - [aux_sym__val_number_token5] = ACTIONS(3250), - [aux_sym__val_number_token6] = ACTIONS(3250), + [aux_sym__val_number_token4] = ACTIONS(3257), + [aux_sym__val_number_token5] = ACTIONS(3257), + [aux_sym__val_number_token6] = ACTIONS(3257), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3252), + [sym_val_date] = ACTIONS(3259), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), @@ -177795,7 +177795,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3212), + [aux_sym_unquoted_token1] = ACTIONS(3219), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, @@ -177833,33 +177833,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__unquoted_anonymous_prefix] = STATE(7204), [sym_comment] = STATE(948), [aux_sym_shebang_repeat1] = STATE(961), - [sym__newline] = ACTIONS(3190), + [sym__newline] = ACTIONS(3197), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3234), + [anon_sym_DOT_DOT] = ACTIONS(3241), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3236), - [anon_sym_DOT_DOT_LT] = ACTIONS(3236), - [anon_sym_null] = ACTIONS(3238), - [anon_sym_true] = ACTIONS(3240), - [anon_sym_false] = ACTIONS(3240), - [aux_sym__val_number_decimal_token1] = ACTIONS(3242), - [aux_sym__val_number_decimal_token2] = ACTIONS(3244), - [aux_sym__val_number_decimal_token3] = ACTIONS(3246), - [aux_sym__val_number_decimal_token4] = ACTIONS(3248), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3243), + [anon_sym_DOT_DOT_LT] = ACTIONS(3243), + [anon_sym_null] = ACTIONS(3245), + [anon_sym_true] = ACTIONS(3247), + [anon_sym_false] = ACTIONS(3247), + [aux_sym__val_number_decimal_token1] = ACTIONS(3249), + [aux_sym__val_number_decimal_token2] = ACTIONS(3251), + [aux_sym__val_number_decimal_token3] = ACTIONS(3253), + [aux_sym__val_number_decimal_token4] = ACTIONS(3255), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3250), - [aux_sym__val_number_token5] = ACTIONS(3250), - [aux_sym__val_number_token6] = ACTIONS(3250), + [aux_sym__val_number_token4] = ACTIONS(3257), + [aux_sym__val_number_token5] = ACTIONS(3257), + [aux_sym__val_number_token6] = ACTIONS(3257), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3252), + [sym_val_date] = ACTIONS(3259), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), @@ -177881,7 +177881,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3212), + [aux_sym_unquoted_token1] = ACTIONS(3219), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, @@ -177919,33 +177919,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__unquoted_anonymous_prefix] = STATE(7204), [sym_comment] = STATE(949), [aux_sym_shebang_repeat1] = STATE(962), - [sym__newline] = ACTIONS(3190), + [sym__newline] = ACTIONS(3197), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3234), + [anon_sym_DOT_DOT] = ACTIONS(3241), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3236), - [anon_sym_DOT_DOT_LT] = ACTIONS(3236), - [anon_sym_null] = ACTIONS(3238), - [anon_sym_true] = ACTIONS(3240), - [anon_sym_false] = ACTIONS(3240), - [aux_sym__val_number_decimal_token1] = ACTIONS(3242), - [aux_sym__val_number_decimal_token2] = ACTIONS(3244), - [aux_sym__val_number_decimal_token3] = ACTIONS(3246), - [aux_sym__val_number_decimal_token4] = ACTIONS(3248), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3243), + [anon_sym_DOT_DOT_LT] = ACTIONS(3243), + [anon_sym_null] = ACTIONS(3245), + [anon_sym_true] = ACTIONS(3247), + [anon_sym_false] = ACTIONS(3247), + [aux_sym__val_number_decimal_token1] = ACTIONS(3249), + [aux_sym__val_number_decimal_token2] = ACTIONS(3251), + [aux_sym__val_number_decimal_token3] = ACTIONS(3253), + [aux_sym__val_number_decimal_token4] = ACTIONS(3255), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3250), - [aux_sym__val_number_token5] = ACTIONS(3250), - [aux_sym__val_number_token6] = ACTIONS(3250), + [aux_sym__val_number_token4] = ACTIONS(3257), + [aux_sym__val_number_token5] = ACTIONS(3257), + [aux_sym__val_number_token6] = ACTIONS(3257), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3252), + [sym_val_date] = ACTIONS(3259), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), @@ -177967,7 +177967,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3212), + [aux_sym_unquoted_token1] = ACTIONS(3219), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, @@ -178005,33 +178005,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__unquoted_anonymous_prefix] = STATE(7204), [sym_comment] = STATE(950), [aux_sym_shebang_repeat1] = STATE(963), - [sym__newline] = ACTIONS(3190), + [sym__newline] = ACTIONS(3197), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3234), + [anon_sym_DOT_DOT] = ACTIONS(3241), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3236), - [anon_sym_DOT_DOT_LT] = ACTIONS(3236), - [anon_sym_null] = ACTIONS(3238), - [anon_sym_true] = ACTIONS(3240), - [anon_sym_false] = ACTIONS(3240), - [aux_sym__val_number_decimal_token1] = ACTIONS(3242), - [aux_sym__val_number_decimal_token2] = ACTIONS(3244), - [aux_sym__val_number_decimal_token3] = ACTIONS(3246), - [aux_sym__val_number_decimal_token4] = ACTIONS(3248), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3243), + [anon_sym_DOT_DOT_LT] = ACTIONS(3243), + [anon_sym_null] = ACTIONS(3245), + [anon_sym_true] = ACTIONS(3247), + [anon_sym_false] = ACTIONS(3247), + [aux_sym__val_number_decimal_token1] = ACTIONS(3249), + [aux_sym__val_number_decimal_token2] = ACTIONS(3251), + [aux_sym__val_number_decimal_token3] = ACTIONS(3253), + [aux_sym__val_number_decimal_token4] = ACTIONS(3255), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3250), - [aux_sym__val_number_token5] = ACTIONS(3250), - [aux_sym__val_number_token6] = ACTIONS(3250), + [aux_sym__val_number_token4] = ACTIONS(3257), + [aux_sym__val_number_token5] = ACTIONS(3257), + [aux_sym__val_number_token6] = ACTIONS(3257), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3252), + [sym_val_date] = ACTIONS(3259), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), @@ -178053,7 +178053,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3212), + [aux_sym_unquoted_token1] = ACTIONS(3219), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, @@ -178091,33 +178091,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__unquoted_anonymous_prefix] = STATE(7204), [sym_comment] = STATE(951), [aux_sym_shebang_repeat1] = STATE(964), - [sym__newline] = ACTIONS(3190), + [sym__newline] = ACTIONS(3197), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3234), + [anon_sym_DOT_DOT] = ACTIONS(3241), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3236), - [anon_sym_DOT_DOT_LT] = ACTIONS(3236), - [anon_sym_null] = ACTIONS(3238), - [anon_sym_true] = ACTIONS(3240), - [anon_sym_false] = ACTIONS(3240), - [aux_sym__val_number_decimal_token1] = ACTIONS(3242), - [aux_sym__val_number_decimal_token2] = ACTIONS(3244), - [aux_sym__val_number_decimal_token3] = ACTIONS(3246), - [aux_sym__val_number_decimal_token4] = ACTIONS(3248), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3243), + [anon_sym_DOT_DOT_LT] = ACTIONS(3243), + [anon_sym_null] = ACTIONS(3245), + [anon_sym_true] = ACTIONS(3247), + [anon_sym_false] = ACTIONS(3247), + [aux_sym__val_number_decimal_token1] = ACTIONS(3249), + [aux_sym__val_number_decimal_token2] = ACTIONS(3251), + [aux_sym__val_number_decimal_token3] = ACTIONS(3253), + [aux_sym__val_number_decimal_token4] = ACTIONS(3255), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3250), - [aux_sym__val_number_token5] = ACTIONS(3250), - [aux_sym__val_number_token6] = ACTIONS(3250), + [aux_sym__val_number_token4] = ACTIONS(3257), + [aux_sym__val_number_token5] = ACTIONS(3257), + [aux_sym__val_number_token6] = ACTIONS(3257), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3252), + [sym_val_date] = ACTIONS(3259), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), @@ -178139,7 +178139,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3212), + [aux_sym_unquoted_token1] = ACTIONS(3219), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, @@ -178177,33 +178177,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__unquoted_anonymous_prefix] = STATE(7204), [sym_comment] = STATE(952), [aux_sym_shebang_repeat1] = STATE(965), - [sym__newline] = ACTIONS(3190), + [sym__newline] = ACTIONS(3197), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3234), + [anon_sym_DOT_DOT] = ACTIONS(3241), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3236), - [anon_sym_DOT_DOT_LT] = ACTIONS(3236), - [anon_sym_null] = ACTIONS(3238), - [anon_sym_true] = ACTIONS(3240), - [anon_sym_false] = ACTIONS(3240), - [aux_sym__val_number_decimal_token1] = ACTIONS(3242), - [aux_sym__val_number_decimal_token2] = ACTIONS(3244), - [aux_sym__val_number_decimal_token3] = ACTIONS(3246), - [aux_sym__val_number_decimal_token4] = ACTIONS(3248), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3243), + [anon_sym_DOT_DOT_LT] = ACTIONS(3243), + [anon_sym_null] = ACTIONS(3245), + [anon_sym_true] = ACTIONS(3247), + [anon_sym_false] = ACTIONS(3247), + [aux_sym__val_number_decimal_token1] = ACTIONS(3249), + [aux_sym__val_number_decimal_token2] = ACTIONS(3251), + [aux_sym__val_number_decimal_token3] = ACTIONS(3253), + [aux_sym__val_number_decimal_token4] = ACTIONS(3255), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3250), - [aux_sym__val_number_token5] = ACTIONS(3250), - [aux_sym__val_number_token6] = ACTIONS(3250), + [aux_sym__val_number_token4] = ACTIONS(3257), + [aux_sym__val_number_token5] = ACTIONS(3257), + [aux_sym__val_number_token6] = ACTIONS(3257), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3252), + [sym_val_date] = ACTIONS(3259), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), @@ -178225,7 +178225,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3212), + [aux_sym_unquoted_token1] = ACTIONS(3219), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, @@ -178263,33 +178263,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__unquoted_anonymous_prefix] = STATE(7204), [sym_comment] = STATE(953), [aux_sym_shebang_repeat1] = STATE(2817), - [sym__newline] = ACTIONS(3190), + [sym__newline] = ACTIONS(3197), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3234), + [anon_sym_DOT_DOT] = ACTIONS(3241), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3236), - [anon_sym_DOT_DOT_LT] = ACTIONS(3236), - [anon_sym_null] = ACTIONS(3238), - [anon_sym_true] = ACTIONS(3240), - [anon_sym_false] = ACTIONS(3240), - [aux_sym__val_number_decimal_token1] = ACTIONS(3242), - [aux_sym__val_number_decimal_token2] = ACTIONS(3244), - [aux_sym__val_number_decimal_token3] = ACTIONS(3246), - [aux_sym__val_number_decimal_token4] = ACTIONS(3248), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3243), + [anon_sym_DOT_DOT_LT] = ACTIONS(3243), + [anon_sym_null] = ACTIONS(3245), + [anon_sym_true] = ACTIONS(3247), + [anon_sym_false] = ACTIONS(3247), + [aux_sym__val_number_decimal_token1] = ACTIONS(3249), + [aux_sym__val_number_decimal_token2] = ACTIONS(3251), + [aux_sym__val_number_decimal_token3] = ACTIONS(3253), + [aux_sym__val_number_decimal_token4] = ACTIONS(3255), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3250), - [aux_sym__val_number_token5] = ACTIONS(3250), - [aux_sym__val_number_token6] = ACTIONS(3250), + [aux_sym__val_number_token4] = ACTIONS(3257), + [aux_sym__val_number_token5] = ACTIONS(3257), + [aux_sym__val_number_token6] = ACTIONS(3257), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3252), + [sym_val_date] = ACTIONS(3259), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), @@ -178311,7 +178311,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3212), + [aux_sym_unquoted_token1] = ACTIONS(3219), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, @@ -178349,33 +178349,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__unquoted_anonymous_prefix] = STATE(7204), [sym_comment] = STATE(954), [aux_sym_shebang_repeat1] = STATE(2817), - [sym__newline] = ACTIONS(3190), + [sym__newline] = ACTIONS(3197), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3234), + [anon_sym_DOT_DOT] = ACTIONS(3241), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3236), - [anon_sym_DOT_DOT_LT] = ACTIONS(3236), - [anon_sym_null] = ACTIONS(3238), - [anon_sym_true] = ACTIONS(3240), - [anon_sym_false] = ACTIONS(3240), - [aux_sym__val_number_decimal_token1] = ACTIONS(3242), - [aux_sym__val_number_decimal_token2] = ACTIONS(3244), - [aux_sym__val_number_decimal_token3] = ACTIONS(3246), - [aux_sym__val_number_decimal_token4] = ACTIONS(3248), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3243), + [anon_sym_DOT_DOT_LT] = ACTIONS(3243), + [anon_sym_null] = ACTIONS(3245), + [anon_sym_true] = ACTIONS(3247), + [anon_sym_false] = ACTIONS(3247), + [aux_sym__val_number_decimal_token1] = ACTIONS(3249), + [aux_sym__val_number_decimal_token2] = ACTIONS(3251), + [aux_sym__val_number_decimal_token3] = ACTIONS(3253), + [aux_sym__val_number_decimal_token4] = ACTIONS(3255), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3250), - [aux_sym__val_number_token5] = ACTIONS(3250), - [aux_sym__val_number_token6] = ACTIONS(3250), + [aux_sym__val_number_token4] = ACTIONS(3257), + [aux_sym__val_number_token5] = ACTIONS(3257), + [aux_sym__val_number_token6] = ACTIONS(3257), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3252), + [sym_val_date] = ACTIONS(3259), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), @@ -178397,7 +178397,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3212), + [aux_sym_unquoted_token1] = ACTIONS(3219), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, @@ -178435,33 +178435,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__unquoted_anonymous_prefix] = STATE(7204), [sym_comment] = STATE(955), [aux_sym_shebang_repeat1] = STATE(2817), - [sym__newline] = ACTIONS(3190), + [sym__newline] = ACTIONS(3197), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3234), + [anon_sym_DOT_DOT] = ACTIONS(3241), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3236), - [anon_sym_DOT_DOT_LT] = ACTIONS(3236), - [anon_sym_null] = ACTIONS(3238), - [anon_sym_true] = ACTIONS(3240), - [anon_sym_false] = ACTIONS(3240), - [aux_sym__val_number_decimal_token1] = ACTIONS(3242), - [aux_sym__val_number_decimal_token2] = ACTIONS(3244), - [aux_sym__val_number_decimal_token3] = ACTIONS(3246), - [aux_sym__val_number_decimal_token4] = ACTIONS(3248), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3243), + [anon_sym_DOT_DOT_LT] = ACTIONS(3243), + [anon_sym_null] = ACTIONS(3245), + [anon_sym_true] = ACTIONS(3247), + [anon_sym_false] = ACTIONS(3247), + [aux_sym__val_number_decimal_token1] = ACTIONS(3249), + [aux_sym__val_number_decimal_token2] = ACTIONS(3251), + [aux_sym__val_number_decimal_token3] = ACTIONS(3253), + [aux_sym__val_number_decimal_token4] = ACTIONS(3255), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3250), - [aux_sym__val_number_token5] = ACTIONS(3250), - [aux_sym__val_number_token6] = ACTIONS(3250), + [aux_sym__val_number_token4] = ACTIONS(3257), + [aux_sym__val_number_token5] = ACTIONS(3257), + [aux_sym__val_number_token6] = ACTIONS(3257), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3252), + [sym_val_date] = ACTIONS(3259), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), @@ -178483,7 +178483,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3212), + [aux_sym_unquoted_token1] = ACTIONS(3219), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, @@ -178521,33 +178521,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__unquoted_anonymous_prefix] = STATE(7204), [sym_comment] = STATE(956), [aux_sym_shebang_repeat1] = STATE(2817), - [sym__newline] = ACTIONS(3190), + [sym__newline] = ACTIONS(3197), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3234), + [anon_sym_DOT_DOT] = ACTIONS(3241), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3236), - [anon_sym_DOT_DOT_LT] = ACTIONS(3236), - [anon_sym_null] = ACTIONS(3238), - [anon_sym_true] = ACTIONS(3240), - [anon_sym_false] = ACTIONS(3240), - [aux_sym__val_number_decimal_token1] = ACTIONS(3242), - [aux_sym__val_number_decimal_token2] = ACTIONS(3244), - [aux_sym__val_number_decimal_token3] = ACTIONS(3246), - [aux_sym__val_number_decimal_token4] = ACTIONS(3248), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3243), + [anon_sym_DOT_DOT_LT] = ACTIONS(3243), + [anon_sym_null] = ACTIONS(3245), + [anon_sym_true] = ACTIONS(3247), + [anon_sym_false] = ACTIONS(3247), + [aux_sym__val_number_decimal_token1] = ACTIONS(3249), + [aux_sym__val_number_decimal_token2] = ACTIONS(3251), + [aux_sym__val_number_decimal_token3] = ACTIONS(3253), + [aux_sym__val_number_decimal_token4] = ACTIONS(3255), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3250), - [aux_sym__val_number_token5] = ACTIONS(3250), - [aux_sym__val_number_token6] = ACTIONS(3250), + [aux_sym__val_number_token4] = ACTIONS(3257), + [aux_sym__val_number_token5] = ACTIONS(3257), + [aux_sym__val_number_token6] = ACTIONS(3257), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3252), + [sym_val_date] = ACTIONS(3259), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), @@ -178569,7 +178569,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3212), + [aux_sym_unquoted_token1] = ACTIONS(3219), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, @@ -178607,33 +178607,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__unquoted_anonymous_prefix] = STATE(7204), [sym_comment] = STATE(957), [aux_sym_shebang_repeat1] = STATE(2817), - [sym__newline] = ACTIONS(3190), + [sym__newline] = ACTIONS(3197), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3234), + [anon_sym_DOT_DOT] = ACTIONS(3241), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3236), - [anon_sym_DOT_DOT_LT] = ACTIONS(3236), - [anon_sym_null] = ACTIONS(3238), - [anon_sym_true] = ACTIONS(3240), - [anon_sym_false] = ACTIONS(3240), - [aux_sym__val_number_decimal_token1] = ACTIONS(3242), - [aux_sym__val_number_decimal_token2] = ACTIONS(3244), - [aux_sym__val_number_decimal_token3] = ACTIONS(3246), - [aux_sym__val_number_decimal_token4] = ACTIONS(3248), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3243), + [anon_sym_DOT_DOT_LT] = ACTIONS(3243), + [anon_sym_null] = ACTIONS(3245), + [anon_sym_true] = ACTIONS(3247), + [anon_sym_false] = ACTIONS(3247), + [aux_sym__val_number_decimal_token1] = ACTIONS(3249), + [aux_sym__val_number_decimal_token2] = ACTIONS(3251), + [aux_sym__val_number_decimal_token3] = ACTIONS(3253), + [aux_sym__val_number_decimal_token4] = ACTIONS(3255), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3250), - [aux_sym__val_number_token5] = ACTIONS(3250), - [aux_sym__val_number_token6] = ACTIONS(3250), + [aux_sym__val_number_token4] = ACTIONS(3257), + [aux_sym__val_number_token5] = ACTIONS(3257), + [aux_sym__val_number_token6] = ACTIONS(3257), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3252), + [sym_val_date] = ACTIONS(3259), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), @@ -178655,7 +178655,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3212), + [aux_sym_unquoted_token1] = ACTIONS(3219), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, @@ -178693,33 +178693,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__unquoted_anonymous_prefix] = STATE(7204), [sym_comment] = STATE(958), [aux_sym_shebang_repeat1] = STATE(2817), - [sym__newline] = ACTIONS(3190), + [sym__newline] = ACTIONS(3197), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3234), + [anon_sym_DOT_DOT] = ACTIONS(3241), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3236), - [anon_sym_DOT_DOT_LT] = ACTIONS(3236), - [anon_sym_null] = ACTIONS(3238), - [anon_sym_true] = ACTIONS(3240), - [anon_sym_false] = ACTIONS(3240), - [aux_sym__val_number_decimal_token1] = ACTIONS(3242), - [aux_sym__val_number_decimal_token2] = ACTIONS(3244), - [aux_sym__val_number_decimal_token3] = ACTIONS(3246), - [aux_sym__val_number_decimal_token4] = ACTIONS(3248), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3243), + [anon_sym_DOT_DOT_LT] = ACTIONS(3243), + [anon_sym_null] = ACTIONS(3245), + [anon_sym_true] = ACTIONS(3247), + [anon_sym_false] = ACTIONS(3247), + [aux_sym__val_number_decimal_token1] = ACTIONS(3249), + [aux_sym__val_number_decimal_token2] = ACTIONS(3251), + [aux_sym__val_number_decimal_token3] = ACTIONS(3253), + [aux_sym__val_number_decimal_token4] = ACTIONS(3255), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3250), - [aux_sym__val_number_token5] = ACTIONS(3250), - [aux_sym__val_number_token6] = ACTIONS(3250), + [aux_sym__val_number_token4] = ACTIONS(3257), + [aux_sym__val_number_token5] = ACTIONS(3257), + [aux_sym__val_number_token6] = ACTIONS(3257), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3252), + [sym_val_date] = ACTIONS(3259), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), @@ -178741,7 +178741,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3212), + [aux_sym_unquoted_token1] = ACTIONS(3219), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, @@ -178779,33 +178779,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__unquoted_anonymous_prefix] = STATE(7204), [sym_comment] = STATE(959), [aux_sym_shebang_repeat1] = STATE(2817), - [sym__newline] = ACTIONS(3190), + [sym__newline] = ACTIONS(3197), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3234), + [anon_sym_DOT_DOT] = ACTIONS(3241), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3236), - [anon_sym_DOT_DOT_LT] = ACTIONS(3236), - [anon_sym_null] = ACTIONS(3238), - [anon_sym_true] = ACTIONS(3240), - [anon_sym_false] = ACTIONS(3240), - [aux_sym__val_number_decimal_token1] = ACTIONS(3242), - [aux_sym__val_number_decimal_token2] = ACTIONS(3244), - [aux_sym__val_number_decimal_token3] = ACTIONS(3246), - [aux_sym__val_number_decimal_token4] = ACTIONS(3248), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3243), + [anon_sym_DOT_DOT_LT] = ACTIONS(3243), + [anon_sym_null] = ACTIONS(3245), + [anon_sym_true] = ACTIONS(3247), + [anon_sym_false] = ACTIONS(3247), + [aux_sym__val_number_decimal_token1] = ACTIONS(3249), + [aux_sym__val_number_decimal_token2] = ACTIONS(3251), + [aux_sym__val_number_decimal_token3] = ACTIONS(3253), + [aux_sym__val_number_decimal_token4] = ACTIONS(3255), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3250), - [aux_sym__val_number_token5] = ACTIONS(3250), - [aux_sym__val_number_token6] = ACTIONS(3250), + [aux_sym__val_number_token4] = ACTIONS(3257), + [aux_sym__val_number_token5] = ACTIONS(3257), + [aux_sym__val_number_token6] = ACTIONS(3257), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3252), + [sym_val_date] = ACTIONS(3259), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), @@ -178827,7 +178827,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3212), + [aux_sym_unquoted_token1] = ACTIONS(3219), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, @@ -178865,33 +178865,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__unquoted_anonymous_prefix] = STATE(7204), [sym_comment] = STATE(960), [aux_sym_shebang_repeat1] = STATE(2817), - [sym__newline] = ACTIONS(3190), + [sym__newline] = ACTIONS(3197), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3234), + [anon_sym_DOT_DOT] = ACTIONS(3241), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3236), - [anon_sym_DOT_DOT_LT] = ACTIONS(3236), - [anon_sym_null] = ACTIONS(3238), - [anon_sym_true] = ACTIONS(3240), - [anon_sym_false] = ACTIONS(3240), - [aux_sym__val_number_decimal_token1] = ACTIONS(3242), - [aux_sym__val_number_decimal_token2] = ACTIONS(3244), - [aux_sym__val_number_decimal_token3] = ACTIONS(3246), - [aux_sym__val_number_decimal_token4] = ACTIONS(3248), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3243), + [anon_sym_DOT_DOT_LT] = ACTIONS(3243), + [anon_sym_null] = ACTIONS(3245), + [anon_sym_true] = ACTIONS(3247), + [anon_sym_false] = ACTIONS(3247), + [aux_sym__val_number_decimal_token1] = ACTIONS(3249), + [aux_sym__val_number_decimal_token2] = ACTIONS(3251), + [aux_sym__val_number_decimal_token3] = ACTIONS(3253), + [aux_sym__val_number_decimal_token4] = ACTIONS(3255), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3250), - [aux_sym__val_number_token5] = ACTIONS(3250), - [aux_sym__val_number_token6] = ACTIONS(3250), + [aux_sym__val_number_token4] = ACTIONS(3257), + [aux_sym__val_number_token5] = ACTIONS(3257), + [aux_sym__val_number_token6] = ACTIONS(3257), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3252), + [sym_val_date] = ACTIONS(3259), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), @@ -178913,7 +178913,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3212), + [aux_sym_unquoted_token1] = ACTIONS(3219), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, @@ -178951,33 +178951,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__unquoted_anonymous_prefix] = STATE(7204), [sym_comment] = STATE(961), [aux_sym_shebang_repeat1] = STATE(2817), - [sym__newline] = ACTIONS(3190), + [sym__newline] = ACTIONS(3197), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3234), + [anon_sym_DOT_DOT] = ACTIONS(3241), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3236), - [anon_sym_DOT_DOT_LT] = ACTIONS(3236), - [anon_sym_null] = ACTIONS(3238), - [anon_sym_true] = ACTIONS(3240), - [anon_sym_false] = ACTIONS(3240), - [aux_sym__val_number_decimal_token1] = ACTIONS(3242), - [aux_sym__val_number_decimal_token2] = ACTIONS(3244), - [aux_sym__val_number_decimal_token3] = ACTIONS(3246), - [aux_sym__val_number_decimal_token4] = ACTIONS(3248), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3243), + [anon_sym_DOT_DOT_LT] = ACTIONS(3243), + [anon_sym_null] = ACTIONS(3245), + [anon_sym_true] = ACTIONS(3247), + [anon_sym_false] = ACTIONS(3247), + [aux_sym__val_number_decimal_token1] = ACTIONS(3249), + [aux_sym__val_number_decimal_token2] = ACTIONS(3251), + [aux_sym__val_number_decimal_token3] = ACTIONS(3253), + [aux_sym__val_number_decimal_token4] = ACTIONS(3255), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3250), - [aux_sym__val_number_token5] = ACTIONS(3250), - [aux_sym__val_number_token6] = ACTIONS(3250), + [aux_sym__val_number_token4] = ACTIONS(3257), + [aux_sym__val_number_token5] = ACTIONS(3257), + [aux_sym__val_number_token6] = ACTIONS(3257), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3252), + [sym_val_date] = ACTIONS(3259), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), @@ -178999,7 +178999,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3212), + [aux_sym_unquoted_token1] = ACTIONS(3219), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, @@ -179037,33 +179037,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__unquoted_anonymous_prefix] = STATE(7204), [sym_comment] = STATE(962), [aux_sym_shebang_repeat1] = STATE(2817), - [sym__newline] = ACTIONS(3190), + [sym__newline] = ACTIONS(3197), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3234), + [anon_sym_DOT_DOT] = ACTIONS(3241), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3236), - [anon_sym_DOT_DOT_LT] = ACTIONS(3236), - [anon_sym_null] = ACTIONS(3238), - [anon_sym_true] = ACTIONS(3240), - [anon_sym_false] = ACTIONS(3240), - [aux_sym__val_number_decimal_token1] = ACTIONS(3242), - [aux_sym__val_number_decimal_token2] = ACTIONS(3244), - [aux_sym__val_number_decimal_token3] = ACTIONS(3246), - [aux_sym__val_number_decimal_token4] = ACTIONS(3248), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3243), + [anon_sym_DOT_DOT_LT] = ACTIONS(3243), + [anon_sym_null] = ACTIONS(3245), + [anon_sym_true] = ACTIONS(3247), + [anon_sym_false] = ACTIONS(3247), + [aux_sym__val_number_decimal_token1] = ACTIONS(3249), + [aux_sym__val_number_decimal_token2] = ACTIONS(3251), + [aux_sym__val_number_decimal_token3] = ACTIONS(3253), + [aux_sym__val_number_decimal_token4] = ACTIONS(3255), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3250), - [aux_sym__val_number_token5] = ACTIONS(3250), - [aux_sym__val_number_token6] = ACTIONS(3250), + [aux_sym__val_number_token4] = ACTIONS(3257), + [aux_sym__val_number_token5] = ACTIONS(3257), + [aux_sym__val_number_token6] = ACTIONS(3257), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3252), + [sym_val_date] = ACTIONS(3259), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), @@ -179085,7 +179085,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3212), + [aux_sym_unquoted_token1] = ACTIONS(3219), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, @@ -179123,33 +179123,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__unquoted_anonymous_prefix] = STATE(7204), [sym_comment] = STATE(963), [aux_sym_shebang_repeat1] = STATE(2817), - [sym__newline] = ACTIONS(3190), + [sym__newline] = ACTIONS(3197), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3234), + [anon_sym_DOT_DOT] = ACTIONS(3241), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3236), - [anon_sym_DOT_DOT_LT] = ACTIONS(3236), - [anon_sym_null] = ACTIONS(3238), - [anon_sym_true] = ACTIONS(3240), - [anon_sym_false] = ACTIONS(3240), - [aux_sym__val_number_decimal_token1] = ACTIONS(3242), - [aux_sym__val_number_decimal_token2] = ACTIONS(3244), - [aux_sym__val_number_decimal_token3] = ACTIONS(3246), - [aux_sym__val_number_decimal_token4] = ACTIONS(3248), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3243), + [anon_sym_DOT_DOT_LT] = ACTIONS(3243), + [anon_sym_null] = ACTIONS(3245), + [anon_sym_true] = ACTIONS(3247), + [anon_sym_false] = ACTIONS(3247), + [aux_sym__val_number_decimal_token1] = ACTIONS(3249), + [aux_sym__val_number_decimal_token2] = ACTIONS(3251), + [aux_sym__val_number_decimal_token3] = ACTIONS(3253), + [aux_sym__val_number_decimal_token4] = ACTIONS(3255), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3250), - [aux_sym__val_number_token5] = ACTIONS(3250), - [aux_sym__val_number_token6] = ACTIONS(3250), + [aux_sym__val_number_token4] = ACTIONS(3257), + [aux_sym__val_number_token5] = ACTIONS(3257), + [aux_sym__val_number_token6] = ACTIONS(3257), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3252), + [sym_val_date] = ACTIONS(3259), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), @@ -179171,7 +179171,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3212), + [aux_sym_unquoted_token1] = ACTIONS(3219), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, @@ -179209,33 +179209,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__unquoted_anonymous_prefix] = STATE(7204), [sym_comment] = STATE(964), [aux_sym_shebang_repeat1] = STATE(2817), - [sym__newline] = ACTIONS(3190), + [sym__newline] = ACTIONS(3197), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3234), + [anon_sym_DOT_DOT] = ACTIONS(3241), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3236), - [anon_sym_DOT_DOT_LT] = ACTIONS(3236), - [anon_sym_null] = ACTIONS(3238), - [anon_sym_true] = ACTIONS(3240), - [anon_sym_false] = ACTIONS(3240), - [aux_sym__val_number_decimal_token1] = ACTIONS(3242), - [aux_sym__val_number_decimal_token2] = ACTIONS(3244), - [aux_sym__val_number_decimal_token3] = ACTIONS(3246), - [aux_sym__val_number_decimal_token4] = ACTIONS(3248), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3243), + [anon_sym_DOT_DOT_LT] = ACTIONS(3243), + [anon_sym_null] = ACTIONS(3245), + [anon_sym_true] = ACTIONS(3247), + [anon_sym_false] = ACTIONS(3247), + [aux_sym__val_number_decimal_token1] = ACTIONS(3249), + [aux_sym__val_number_decimal_token2] = ACTIONS(3251), + [aux_sym__val_number_decimal_token3] = ACTIONS(3253), + [aux_sym__val_number_decimal_token4] = ACTIONS(3255), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3250), - [aux_sym__val_number_token5] = ACTIONS(3250), - [aux_sym__val_number_token6] = ACTIONS(3250), + [aux_sym__val_number_token4] = ACTIONS(3257), + [aux_sym__val_number_token5] = ACTIONS(3257), + [aux_sym__val_number_token6] = ACTIONS(3257), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3252), + [sym_val_date] = ACTIONS(3259), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), @@ -179257,7 +179257,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3212), + [aux_sym_unquoted_token1] = ACTIONS(3219), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, @@ -179295,33 +179295,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__unquoted_anonymous_prefix] = STATE(7204), [sym_comment] = STATE(965), [aux_sym_shebang_repeat1] = STATE(2817), - [sym__newline] = ACTIONS(3190), + [sym__newline] = ACTIONS(3197), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3234), + [anon_sym_DOT_DOT] = ACTIONS(3241), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3236), - [anon_sym_DOT_DOT_LT] = ACTIONS(3236), - [anon_sym_null] = ACTIONS(3238), - [anon_sym_true] = ACTIONS(3240), - [anon_sym_false] = ACTIONS(3240), - [aux_sym__val_number_decimal_token1] = ACTIONS(3242), - [aux_sym__val_number_decimal_token2] = ACTIONS(3244), - [aux_sym__val_number_decimal_token3] = ACTIONS(3246), - [aux_sym__val_number_decimal_token4] = ACTIONS(3248), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3243), + [anon_sym_DOT_DOT_LT] = ACTIONS(3243), + [anon_sym_null] = ACTIONS(3245), + [anon_sym_true] = ACTIONS(3247), + [anon_sym_false] = ACTIONS(3247), + [aux_sym__val_number_decimal_token1] = ACTIONS(3249), + [aux_sym__val_number_decimal_token2] = ACTIONS(3251), + [aux_sym__val_number_decimal_token3] = ACTIONS(3253), + [aux_sym__val_number_decimal_token4] = ACTIONS(3255), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3250), - [aux_sym__val_number_token5] = ACTIONS(3250), - [aux_sym__val_number_token6] = ACTIONS(3250), + [aux_sym__val_number_token4] = ACTIONS(3257), + [aux_sym__val_number_token5] = ACTIONS(3257), + [aux_sym__val_number_token6] = ACTIONS(3257), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3252), + [sym_val_date] = ACTIONS(3259), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), @@ -179343,7 +179343,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3212), + [aux_sym_unquoted_token1] = ACTIONS(3219), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, @@ -179381,33 +179381,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__unquoted_anonymous_prefix] = STATE(7204), [sym_comment] = STATE(966), [aux_sym_shebang_repeat1] = STATE(2817), - [sym__newline] = ACTIONS(3190), + [sym__newline] = ACTIONS(3197), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3214), + [anon_sym_DOT_DOT] = ACTIONS(3221), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3216), - [anon_sym_DOT_DOT_LT] = ACTIONS(3216), - [anon_sym_null] = ACTIONS(3218), - [anon_sym_true] = ACTIONS(3220), - [anon_sym_false] = ACTIONS(3220), - [aux_sym__val_number_decimal_token1] = ACTIONS(3222), - [aux_sym__val_number_decimal_token2] = ACTIONS(3224), - [aux_sym__val_number_decimal_token3] = ACTIONS(3226), - [aux_sym__val_number_decimal_token4] = ACTIONS(3228), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3223), + [anon_sym_DOT_DOT_LT] = ACTIONS(3223), + [anon_sym_null] = ACTIONS(3225), + [anon_sym_true] = ACTIONS(3227), + [anon_sym_false] = ACTIONS(3227), + [aux_sym__val_number_decimal_token1] = ACTIONS(3229), + [aux_sym__val_number_decimal_token2] = ACTIONS(3231), + [aux_sym__val_number_decimal_token3] = ACTIONS(3233), + [aux_sym__val_number_decimal_token4] = ACTIONS(3235), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3230), - [aux_sym__val_number_token5] = ACTIONS(3230), - [aux_sym__val_number_token6] = ACTIONS(3230), + [aux_sym__val_number_token4] = ACTIONS(3237), + [aux_sym__val_number_token5] = ACTIONS(3237), + [aux_sym__val_number_token6] = ACTIONS(3237), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3232), + [sym_val_date] = ACTIONS(3239), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), @@ -179429,7 +179429,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3212), + [aux_sym_unquoted_token1] = ACTIONS(3219), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, @@ -179467,33 +179467,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__unquoted_anonymous_prefix] = STATE(7204), [sym_comment] = STATE(967), [aux_sym_shebang_repeat1] = STATE(2817), - [sym__newline] = ACTIONS(3190), + [sym__newline] = ACTIONS(3197), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3214), + [anon_sym_DOT_DOT] = ACTIONS(3221), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3216), - [anon_sym_DOT_DOT_LT] = ACTIONS(3216), - [anon_sym_null] = ACTIONS(3218), - [anon_sym_true] = ACTIONS(3220), - [anon_sym_false] = ACTIONS(3220), - [aux_sym__val_number_decimal_token1] = ACTIONS(3222), - [aux_sym__val_number_decimal_token2] = ACTIONS(3224), - [aux_sym__val_number_decimal_token3] = ACTIONS(3226), - [aux_sym__val_number_decimal_token4] = ACTIONS(3228), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3223), + [anon_sym_DOT_DOT_LT] = ACTIONS(3223), + [anon_sym_null] = ACTIONS(3225), + [anon_sym_true] = ACTIONS(3227), + [anon_sym_false] = ACTIONS(3227), + [aux_sym__val_number_decimal_token1] = ACTIONS(3229), + [aux_sym__val_number_decimal_token2] = ACTIONS(3231), + [aux_sym__val_number_decimal_token3] = ACTIONS(3233), + [aux_sym__val_number_decimal_token4] = ACTIONS(3235), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3230), - [aux_sym__val_number_token5] = ACTIONS(3230), - [aux_sym__val_number_token6] = ACTIONS(3230), + [aux_sym__val_number_token4] = ACTIONS(3237), + [aux_sym__val_number_token5] = ACTIONS(3237), + [aux_sym__val_number_token6] = ACTIONS(3237), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3232), + [sym_val_date] = ACTIONS(3239), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), @@ -179515,7 +179515,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3212), + [aux_sym_unquoted_token1] = ACTIONS(3219), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, @@ -179553,33 +179553,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__unquoted_anonymous_prefix] = STATE(7204), [sym_comment] = STATE(968), [aux_sym_shebang_repeat1] = STATE(2817), - [sym__newline] = ACTIONS(3190), + [sym__newline] = ACTIONS(3197), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3214), + [anon_sym_DOT_DOT] = ACTIONS(3221), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3216), - [anon_sym_DOT_DOT_LT] = ACTIONS(3216), - [anon_sym_null] = ACTIONS(3218), - [anon_sym_true] = ACTIONS(3220), - [anon_sym_false] = ACTIONS(3220), - [aux_sym__val_number_decimal_token1] = ACTIONS(3222), - [aux_sym__val_number_decimal_token2] = ACTIONS(3224), - [aux_sym__val_number_decimal_token3] = ACTIONS(3226), - [aux_sym__val_number_decimal_token4] = ACTIONS(3228), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3223), + [anon_sym_DOT_DOT_LT] = ACTIONS(3223), + [anon_sym_null] = ACTIONS(3225), + [anon_sym_true] = ACTIONS(3227), + [anon_sym_false] = ACTIONS(3227), + [aux_sym__val_number_decimal_token1] = ACTIONS(3229), + [aux_sym__val_number_decimal_token2] = ACTIONS(3231), + [aux_sym__val_number_decimal_token3] = ACTIONS(3233), + [aux_sym__val_number_decimal_token4] = ACTIONS(3235), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3230), - [aux_sym__val_number_token5] = ACTIONS(3230), - [aux_sym__val_number_token6] = ACTIONS(3230), + [aux_sym__val_number_token4] = ACTIONS(3237), + [aux_sym__val_number_token5] = ACTIONS(3237), + [aux_sym__val_number_token6] = ACTIONS(3237), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3232), + [sym_val_date] = ACTIONS(3239), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), @@ -179601,7 +179601,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3212), + [aux_sym_unquoted_token1] = ACTIONS(3219), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, @@ -179639,33 +179639,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__unquoted_anonymous_prefix] = STATE(7204), [sym_comment] = STATE(969), [aux_sym_shebang_repeat1] = STATE(972), - [sym__newline] = ACTIONS(3190), + [sym__newline] = ACTIONS(3197), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3214), + [anon_sym_DOT_DOT] = ACTIONS(3221), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3216), - [anon_sym_DOT_DOT_LT] = ACTIONS(3216), - [anon_sym_null] = ACTIONS(3218), - [anon_sym_true] = ACTIONS(3220), - [anon_sym_false] = ACTIONS(3220), - [aux_sym__val_number_decimal_token1] = ACTIONS(3222), - [aux_sym__val_number_decimal_token2] = ACTIONS(3224), - [aux_sym__val_number_decimal_token3] = ACTIONS(3226), - [aux_sym__val_number_decimal_token4] = ACTIONS(3228), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3223), + [anon_sym_DOT_DOT_LT] = ACTIONS(3223), + [anon_sym_null] = ACTIONS(3225), + [anon_sym_true] = ACTIONS(3227), + [anon_sym_false] = ACTIONS(3227), + [aux_sym__val_number_decimal_token1] = ACTIONS(3229), + [aux_sym__val_number_decimal_token2] = ACTIONS(3231), + [aux_sym__val_number_decimal_token3] = ACTIONS(3233), + [aux_sym__val_number_decimal_token4] = ACTIONS(3235), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3230), - [aux_sym__val_number_token5] = ACTIONS(3230), - [aux_sym__val_number_token6] = ACTIONS(3230), + [aux_sym__val_number_token4] = ACTIONS(3237), + [aux_sym__val_number_token5] = ACTIONS(3237), + [aux_sym__val_number_token6] = ACTIONS(3237), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3232), + [sym_val_date] = ACTIONS(3239), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), @@ -179687,7 +179687,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3212), + [aux_sym_unquoted_token1] = ACTIONS(3219), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, @@ -179725,33 +179725,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__unquoted_anonymous_prefix] = STATE(7204), [sym_comment] = STATE(970), [aux_sym_shebang_repeat1] = STATE(975), - [sym__newline] = ACTIONS(3190), + [sym__newline] = ACTIONS(3197), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3214), + [anon_sym_DOT_DOT] = ACTIONS(3221), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3216), - [anon_sym_DOT_DOT_LT] = ACTIONS(3216), - [anon_sym_null] = ACTIONS(3218), - [anon_sym_true] = ACTIONS(3220), - [anon_sym_false] = ACTIONS(3220), - [aux_sym__val_number_decimal_token1] = ACTIONS(3222), - [aux_sym__val_number_decimal_token2] = ACTIONS(3224), - [aux_sym__val_number_decimal_token3] = ACTIONS(3226), - [aux_sym__val_number_decimal_token4] = ACTIONS(3228), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3223), + [anon_sym_DOT_DOT_LT] = ACTIONS(3223), + [anon_sym_null] = ACTIONS(3225), + [anon_sym_true] = ACTIONS(3227), + [anon_sym_false] = ACTIONS(3227), + [aux_sym__val_number_decimal_token1] = ACTIONS(3229), + [aux_sym__val_number_decimal_token2] = ACTIONS(3231), + [aux_sym__val_number_decimal_token3] = ACTIONS(3233), + [aux_sym__val_number_decimal_token4] = ACTIONS(3235), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3230), - [aux_sym__val_number_token5] = ACTIONS(3230), - [aux_sym__val_number_token6] = ACTIONS(3230), + [aux_sym__val_number_token4] = ACTIONS(3237), + [aux_sym__val_number_token5] = ACTIONS(3237), + [aux_sym__val_number_token6] = ACTIONS(3237), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3232), + [sym_val_date] = ACTIONS(3239), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), @@ -179773,7 +179773,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3212), + [aux_sym_unquoted_token1] = ACTIONS(3219), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, @@ -179811,33 +179811,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__unquoted_anonymous_prefix] = STATE(7204), [sym_comment] = STATE(971), [aux_sym_shebang_repeat1] = STATE(2817), - [sym__newline] = ACTIONS(3190), + [sym__newline] = ACTIONS(3197), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3214), + [anon_sym_DOT_DOT] = ACTIONS(3221), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3216), - [anon_sym_DOT_DOT_LT] = ACTIONS(3216), - [anon_sym_null] = ACTIONS(3218), - [anon_sym_true] = ACTIONS(3220), - [anon_sym_false] = ACTIONS(3220), - [aux_sym__val_number_decimal_token1] = ACTIONS(3222), - [aux_sym__val_number_decimal_token2] = ACTIONS(3224), - [aux_sym__val_number_decimal_token3] = ACTIONS(3226), - [aux_sym__val_number_decimal_token4] = ACTIONS(3228), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3223), + [anon_sym_DOT_DOT_LT] = ACTIONS(3223), + [anon_sym_null] = ACTIONS(3225), + [anon_sym_true] = ACTIONS(3227), + [anon_sym_false] = ACTIONS(3227), + [aux_sym__val_number_decimal_token1] = ACTIONS(3229), + [aux_sym__val_number_decimal_token2] = ACTIONS(3231), + [aux_sym__val_number_decimal_token3] = ACTIONS(3233), + [aux_sym__val_number_decimal_token4] = ACTIONS(3235), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3230), - [aux_sym__val_number_token5] = ACTIONS(3230), - [aux_sym__val_number_token6] = ACTIONS(3230), + [aux_sym__val_number_token4] = ACTIONS(3237), + [aux_sym__val_number_token5] = ACTIONS(3237), + [aux_sym__val_number_token6] = ACTIONS(3237), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3232), + [sym_val_date] = ACTIONS(3239), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), @@ -179859,7 +179859,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3212), + [aux_sym_unquoted_token1] = ACTIONS(3219), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, @@ -179897,33 +179897,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__unquoted_anonymous_prefix] = STATE(7204), [sym_comment] = STATE(972), [aux_sym_shebang_repeat1] = STATE(2817), - [sym__newline] = ACTIONS(3190), + [sym__newline] = ACTIONS(3197), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3214), + [anon_sym_DOT_DOT] = ACTIONS(3221), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3216), - [anon_sym_DOT_DOT_LT] = ACTIONS(3216), - [anon_sym_null] = ACTIONS(3218), - [anon_sym_true] = ACTIONS(3220), - [anon_sym_false] = ACTIONS(3220), - [aux_sym__val_number_decimal_token1] = ACTIONS(3222), - [aux_sym__val_number_decimal_token2] = ACTIONS(3224), - [aux_sym__val_number_decimal_token3] = ACTIONS(3226), - [aux_sym__val_number_decimal_token4] = ACTIONS(3228), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3223), + [anon_sym_DOT_DOT_LT] = ACTIONS(3223), + [anon_sym_null] = ACTIONS(3225), + [anon_sym_true] = ACTIONS(3227), + [anon_sym_false] = ACTIONS(3227), + [aux_sym__val_number_decimal_token1] = ACTIONS(3229), + [aux_sym__val_number_decimal_token2] = ACTIONS(3231), + [aux_sym__val_number_decimal_token3] = ACTIONS(3233), + [aux_sym__val_number_decimal_token4] = ACTIONS(3235), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3230), - [aux_sym__val_number_token5] = ACTIONS(3230), - [aux_sym__val_number_token6] = ACTIONS(3230), + [aux_sym__val_number_token4] = ACTIONS(3237), + [aux_sym__val_number_token5] = ACTIONS(3237), + [aux_sym__val_number_token6] = ACTIONS(3237), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3232), + [sym_val_date] = ACTIONS(3239), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), @@ -179945,7 +179945,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3212), + [aux_sym_unquoted_token1] = ACTIONS(3219), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, @@ -179983,35 +179983,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__unquoted_anonymous_prefix] = STATE(6930), [sym_comment] = STATE(973), [aux_sym_list_body_repeat1] = STATE(1049), - [anon_sym_LBRACK] = ACTIONS(3082), - [anon_sym_LPAREN] = ACTIONS(3086), - [anon_sym_DOLLAR] = ACTIONS(3088), - [anon_sym_LBRACE] = ACTIONS(3090), - [anon_sym_DOT_DOT] = ACTIONS(3092), + [anon_sym_LBRACK] = ACTIONS(3089), + [anon_sym_LPAREN] = ACTIONS(3093), + [anon_sym_DOLLAR] = ACTIONS(3095), + [anon_sym_LBRACE] = ACTIONS(3097), + [anon_sym_DOT_DOT] = ACTIONS(3099), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3094), - [anon_sym_DOT_DOT_LT] = ACTIONS(3094), - [anon_sym_null] = ACTIONS(3096), - [anon_sym_true] = ACTIONS(3098), - [anon_sym_false] = ACTIONS(3098), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3101), + [anon_sym_DOT_DOT_LT] = ACTIONS(3101), + [anon_sym_null] = ACTIONS(3103), + [anon_sym_true] = ACTIONS(3105), + [anon_sym_false] = ACTIONS(3105), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), - [aux_sym__val_number_decimal_token1] = ACTIONS(3100), - [aux_sym__val_number_decimal_token2] = ACTIONS(3102), - [aux_sym__val_number_decimal_token3] = ACTIONS(3104), - [aux_sym__val_number_decimal_token4] = ACTIONS(3106), - [aux_sym__val_number_token1] = ACTIONS(3108), - [aux_sym__val_number_token2] = ACTIONS(3108), - [aux_sym__val_number_token3] = ACTIONS(3108), - [aux_sym__val_number_token4] = ACTIONS(3110), - [aux_sym__val_number_token5] = ACTIONS(3110), - [aux_sym__val_number_token6] = ACTIONS(3110), - [anon_sym_0b] = ACTIONS(3112), - [anon_sym_0o] = ACTIONS(3114), - [anon_sym_0x] = ACTIONS(3114), - [sym_val_date] = ACTIONS(3116), - [anon_sym_DQUOTE] = ACTIONS(3118), - [sym__str_single_quotes] = ACTIONS(3120), - [sym__str_back_ticks] = ACTIONS(3120), + [aux_sym__val_number_decimal_token1] = ACTIONS(3107), + [aux_sym__val_number_decimal_token2] = ACTIONS(3109), + [aux_sym__val_number_decimal_token3] = ACTIONS(3111), + [aux_sym__val_number_decimal_token4] = ACTIONS(3113), + [aux_sym__val_number_token1] = ACTIONS(3115), + [aux_sym__val_number_token2] = ACTIONS(3115), + [aux_sym__val_number_token3] = ACTIONS(3115), + [aux_sym__val_number_token4] = ACTIONS(3117), + [aux_sym__val_number_token5] = ACTIONS(3117), + [aux_sym__val_number_token6] = ACTIONS(3117), + [anon_sym_0b] = ACTIONS(3119), + [anon_sym_0o] = ACTIONS(3121), + [anon_sym_0x] = ACTIONS(3121), + [sym_val_date] = ACTIONS(3123), + [anon_sym_DQUOTE] = ACTIONS(3125), + [sym__str_single_quotes] = ACTIONS(3127), + [sym__str_back_ticks] = ACTIONS(3127), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2581), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2583), [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2585), @@ -180031,9 +180031,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2589), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2589), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2589), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3122), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3129), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3124), + [sym_raw_string_begin] = ACTIONS(3131), }, [974] = { [sym_expr_unary] = STATE(2432), @@ -180069,33 +180069,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__unquoted_anonymous_prefix] = STATE(7204), [sym_comment] = STATE(974), [aux_sym_shebang_repeat1] = STATE(2817), - [sym__newline] = ACTIONS(3190), + [sym__newline] = ACTIONS(3197), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3214), + [anon_sym_DOT_DOT] = ACTIONS(3221), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3216), - [anon_sym_DOT_DOT_LT] = ACTIONS(3216), - [anon_sym_null] = ACTIONS(3218), - [anon_sym_true] = ACTIONS(3220), - [anon_sym_false] = ACTIONS(3220), - [aux_sym__val_number_decimal_token1] = ACTIONS(3222), - [aux_sym__val_number_decimal_token2] = ACTIONS(3224), - [aux_sym__val_number_decimal_token3] = ACTIONS(3226), - [aux_sym__val_number_decimal_token4] = ACTIONS(3228), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3223), + [anon_sym_DOT_DOT_LT] = ACTIONS(3223), + [anon_sym_null] = ACTIONS(3225), + [anon_sym_true] = ACTIONS(3227), + [anon_sym_false] = ACTIONS(3227), + [aux_sym__val_number_decimal_token1] = ACTIONS(3229), + [aux_sym__val_number_decimal_token2] = ACTIONS(3231), + [aux_sym__val_number_decimal_token3] = ACTIONS(3233), + [aux_sym__val_number_decimal_token4] = ACTIONS(3235), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3230), - [aux_sym__val_number_token5] = ACTIONS(3230), - [aux_sym__val_number_token6] = ACTIONS(3230), + [aux_sym__val_number_token4] = ACTIONS(3237), + [aux_sym__val_number_token5] = ACTIONS(3237), + [aux_sym__val_number_token6] = ACTIONS(3237), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3232), + [sym_val_date] = ACTIONS(3239), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), @@ -180117,7 +180117,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3212), + [aux_sym_unquoted_token1] = ACTIONS(3219), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, @@ -180155,33 +180155,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__unquoted_anonymous_prefix] = STATE(7204), [sym_comment] = STATE(975), [aux_sym_shebang_repeat1] = STATE(2817), - [sym__newline] = ACTIONS(3190), + [sym__newline] = ACTIONS(3197), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3214), + [anon_sym_DOT_DOT] = ACTIONS(3221), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3216), - [anon_sym_DOT_DOT_LT] = ACTIONS(3216), - [anon_sym_null] = ACTIONS(3218), - [anon_sym_true] = ACTIONS(3220), - [anon_sym_false] = ACTIONS(3220), - [aux_sym__val_number_decimal_token1] = ACTIONS(3222), - [aux_sym__val_number_decimal_token2] = ACTIONS(3224), - [aux_sym__val_number_decimal_token3] = ACTIONS(3226), - [aux_sym__val_number_decimal_token4] = ACTIONS(3228), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3223), + [anon_sym_DOT_DOT_LT] = ACTIONS(3223), + [anon_sym_null] = ACTIONS(3225), + [anon_sym_true] = ACTIONS(3227), + [anon_sym_false] = ACTIONS(3227), + [aux_sym__val_number_decimal_token1] = ACTIONS(3229), + [aux_sym__val_number_decimal_token2] = ACTIONS(3231), + [aux_sym__val_number_decimal_token3] = ACTIONS(3233), + [aux_sym__val_number_decimal_token4] = ACTIONS(3235), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3230), - [aux_sym__val_number_token5] = ACTIONS(3230), - [aux_sym__val_number_token6] = ACTIONS(3230), + [aux_sym__val_number_token4] = ACTIONS(3237), + [aux_sym__val_number_token5] = ACTIONS(3237), + [aux_sym__val_number_token6] = ACTIONS(3237), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3232), + [sym_val_date] = ACTIONS(3239), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), @@ -180203,7 +180203,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3212), + [aux_sym_unquoted_token1] = ACTIONS(3219), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, @@ -180241,33 +180241,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__unquoted_anonymous_prefix] = STATE(7204), [sym_comment] = STATE(976), [aux_sym_shebang_repeat1] = STATE(2817), - [sym__newline] = ACTIONS(3190), + [sym__newline] = ACTIONS(3197), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3214), + [anon_sym_DOT_DOT] = ACTIONS(3221), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3216), - [anon_sym_DOT_DOT_LT] = ACTIONS(3216), - [anon_sym_null] = ACTIONS(3218), - [anon_sym_true] = ACTIONS(3220), - [anon_sym_false] = ACTIONS(3220), - [aux_sym__val_number_decimal_token1] = ACTIONS(3222), - [aux_sym__val_number_decimal_token2] = ACTIONS(3224), - [aux_sym__val_number_decimal_token3] = ACTIONS(3226), - [aux_sym__val_number_decimal_token4] = ACTIONS(3228), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3223), + [anon_sym_DOT_DOT_LT] = ACTIONS(3223), + [anon_sym_null] = ACTIONS(3225), + [anon_sym_true] = ACTIONS(3227), + [anon_sym_false] = ACTIONS(3227), + [aux_sym__val_number_decimal_token1] = ACTIONS(3229), + [aux_sym__val_number_decimal_token2] = ACTIONS(3231), + [aux_sym__val_number_decimal_token3] = ACTIONS(3233), + [aux_sym__val_number_decimal_token4] = ACTIONS(3235), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3230), - [aux_sym__val_number_token5] = ACTIONS(3230), - [aux_sym__val_number_token6] = ACTIONS(3230), + [aux_sym__val_number_token4] = ACTIONS(3237), + [aux_sym__val_number_token5] = ACTIONS(3237), + [aux_sym__val_number_token6] = ACTIONS(3237), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3232), + [sym_val_date] = ACTIONS(3239), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), @@ -180289,7 +180289,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3212), + [aux_sym_unquoted_token1] = ACTIONS(3219), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, @@ -180327,33 +180327,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__unquoted_anonymous_prefix] = STATE(7204), [sym_comment] = STATE(977), [aux_sym_shebang_repeat1] = STATE(2817), - [sym__newline] = ACTIONS(3190), + [sym__newline] = ACTIONS(3197), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3214), + [anon_sym_DOT_DOT] = ACTIONS(3221), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3216), - [anon_sym_DOT_DOT_LT] = ACTIONS(3216), - [anon_sym_null] = ACTIONS(3218), - [anon_sym_true] = ACTIONS(3220), - [anon_sym_false] = ACTIONS(3220), - [aux_sym__val_number_decimal_token1] = ACTIONS(3222), - [aux_sym__val_number_decimal_token2] = ACTIONS(3224), - [aux_sym__val_number_decimal_token3] = ACTIONS(3226), - [aux_sym__val_number_decimal_token4] = ACTIONS(3228), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3223), + [anon_sym_DOT_DOT_LT] = ACTIONS(3223), + [anon_sym_null] = ACTIONS(3225), + [anon_sym_true] = ACTIONS(3227), + [anon_sym_false] = ACTIONS(3227), + [aux_sym__val_number_decimal_token1] = ACTIONS(3229), + [aux_sym__val_number_decimal_token2] = ACTIONS(3231), + [aux_sym__val_number_decimal_token3] = ACTIONS(3233), + [aux_sym__val_number_decimal_token4] = ACTIONS(3235), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3230), - [aux_sym__val_number_token5] = ACTIONS(3230), - [aux_sym__val_number_token6] = ACTIONS(3230), + [aux_sym__val_number_token4] = ACTIONS(3237), + [aux_sym__val_number_token5] = ACTIONS(3237), + [aux_sym__val_number_token6] = ACTIONS(3237), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3232), + [sym_val_date] = ACTIONS(3239), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), @@ -180375,7 +180375,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3212), + [aux_sym_unquoted_token1] = ACTIONS(3219), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, @@ -180413,33 +180413,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__unquoted_anonymous_prefix] = STATE(7204), [sym_comment] = STATE(978), [aux_sym_shebang_repeat1] = STATE(968), - [sym__newline] = ACTIONS(3190), + [sym__newline] = ACTIONS(3197), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3214), + [anon_sym_DOT_DOT] = ACTIONS(3221), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3216), - [anon_sym_DOT_DOT_LT] = ACTIONS(3216), - [anon_sym_null] = ACTIONS(3218), - [anon_sym_true] = ACTIONS(3220), - [anon_sym_false] = ACTIONS(3220), - [aux_sym__val_number_decimal_token1] = ACTIONS(3222), - [aux_sym__val_number_decimal_token2] = ACTIONS(3224), - [aux_sym__val_number_decimal_token3] = ACTIONS(3226), - [aux_sym__val_number_decimal_token4] = ACTIONS(3228), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3223), + [anon_sym_DOT_DOT_LT] = ACTIONS(3223), + [anon_sym_null] = ACTIONS(3225), + [anon_sym_true] = ACTIONS(3227), + [anon_sym_false] = ACTIONS(3227), + [aux_sym__val_number_decimal_token1] = ACTIONS(3229), + [aux_sym__val_number_decimal_token2] = ACTIONS(3231), + [aux_sym__val_number_decimal_token3] = ACTIONS(3233), + [aux_sym__val_number_decimal_token4] = ACTIONS(3235), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3230), - [aux_sym__val_number_token5] = ACTIONS(3230), - [aux_sym__val_number_token6] = ACTIONS(3230), + [aux_sym__val_number_token4] = ACTIONS(3237), + [aux_sym__val_number_token5] = ACTIONS(3237), + [aux_sym__val_number_token6] = ACTIONS(3237), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3232), + [sym_val_date] = ACTIONS(3239), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), @@ -180461,7 +180461,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3212), + [aux_sym_unquoted_token1] = ACTIONS(3219), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, @@ -180499,33 +180499,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__unquoted_anonymous_prefix] = STATE(7204), [sym_comment] = STATE(979), [aux_sym_shebang_repeat1] = STATE(2817), - [sym__newline] = ACTIONS(3190), + [sym__newline] = ACTIONS(3197), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3214), + [anon_sym_DOT_DOT] = ACTIONS(3221), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3216), - [anon_sym_DOT_DOT_LT] = ACTIONS(3216), - [anon_sym_null] = ACTIONS(3218), - [anon_sym_true] = ACTIONS(3220), - [anon_sym_false] = ACTIONS(3220), - [aux_sym__val_number_decimal_token1] = ACTIONS(3222), - [aux_sym__val_number_decimal_token2] = ACTIONS(3224), - [aux_sym__val_number_decimal_token3] = ACTIONS(3226), - [aux_sym__val_number_decimal_token4] = ACTIONS(3228), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3223), + [anon_sym_DOT_DOT_LT] = ACTIONS(3223), + [anon_sym_null] = ACTIONS(3225), + [anon_sym_true] = ACTIONS(3227), + [anon_sym_false] = ACTIONS(3227), + [aux_sym__val_number_decimal_token1] = ACTIONS(3229), + [aux_sym__val_number_decimal_token2] = ACTIONS(3231), + [aux_sym__val_number_decimal_token3] = ACTIONS(3233), + [aux_sym__val_number_decimal_token4] = ACTIONS(3235), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3230), - [aux_sym__val_number_token5] = ACTIONS(3230), - [aux_sym__val_number_token6] = ACTIONS(3230), + [aux_sym__val_number_token4] = ACTIONS(3237), + [aux_sym__val_number_token5] = ACTIONS(3237), + [aux_sym__val_number_token6] = ACTIONS(3237), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3232), + [sym_val_date] = ACTIONS(3239), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), @@ -180547,7 +180547,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3212), + [aux_sym_unquoted_token1] = ACTIONS(3219), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, @@ -180585,33 +180585,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__unquoted_anonymous_prefix] = STATE(7204), [sym_comment] = STATE(980), [aux_sym_shebang_repeat1] = STATE(2817), - [sym__newline] = ACTIONS(3190), + [sym__newline] = ACTIONS(3197), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3214), + [anon_sym_DOT_DOT] = ACTIONS(3221), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3216), - [anon_sym_DOT_DOT_LT] = ACTIONS(3216), - [anon_sym_null] = ACTIONS(3218), - [anon_sym_true] = ACTIONS(3220), - [anon_sym_false] = ACTIONS(3220), - [aux_sym__val_number_decimal_token1] = ACTIONS(3222), - [aux_sym__val_number_decimal_token2] = ACTIONS(3224), - [aux_sym__val_number_decimal_token3] = ACTIONS(3226), - [aux_sym__val_number_decimal_token4] = ACTIONS(3228), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3223), + [anon_sym_DOT_DOT_LT] = ACTIONS(3223), + [anon_sym_null] = ACTIONS(3225), + [anon_sym_true] = ACTIONS(3227), + [anon_sym_false] = ACTIONS(3227), + [aux_sym__val_number_decimal_token1] = ACTIONS(3229), + [aux_sym__val_number_decimal_token2] = ACTIONS(3231), + [aux_sym__val_number_decimal_token3] = ACTIONS(3233), + [aux_sym__val_number_decimal_token4] = ACTIONS(3235), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3230), - [aux_sym__val_number_token5] = ACTIONS(3230), - [aux_sym__val_number_token6] = ACTIONS(3230), + [aux_sym__val_number_token4] = ACTIONS(3237), + [aux_sym__val_number_token5] = ACTIONS(3237), + [aux_sym__val_number_token6] = ACTIONS(3237), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3232), + [sym_val_date] = ACTIONS(3239), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), @@ -180633,7 +180633,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3212), + [aux_sym_unquoted_token1] = ACTIONS(3219), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, @@ -180671,33 +180671,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__unquoted_anonymous_prefix] = STATE(7204), [sym_comment] = STATE(981), [aux_sym_shebang_repeat1] = STATE(993), - [sym__newline] = ACTIONS(3190), + [sym__newline] = ACTIONS(3197), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3192), + [anon_sym_DOT_DOT] = ACTIONS(3199), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3194), - [anon_sym_DOT_DOT_LT] = ACTIONS(3194), - [anon_sym_null] = ACTIONS(3196), - [anon_sym_true] = ACTIONS(3198), - [anon_sym_false] = ACTIONS(3198), - [aux_sym__val_number_decimal_token1] = ACTIONS(3200), - [aux_sym__val_number_decimal_token2] = ACTIONS(3202), - [aux_sym__val_number_decimal_token3] = ACTIONS(3204), - [aux_sym__val_number_decimal_token4] = ACTIONS(3206), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3201), + [anon_sym_DOT_DOT_LT] = ACTIONS(3201), + [anon_sym_null] = ACTIONS(3203), + [anon_sym_true] = ACTIONS(3205), + [anon_sym_false] = ACTIONS(3205), + [aux_sym__val_number_decimal_token1] = ACTIONS(3207), + [aux_sym__val_number_decimal_token2] = ACTIONS(3209), + [aux_sym__val_number_decimal_token3] = ACTIONS(3211), + [aux_sym__val_number_decimal_token4] = ACTIONS(3213), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3208), - [aux_sym__val_number_token5] = ACTIONS(3208), - [aux_sym__val_number_token6] = ACTIONS(3208), + [aux_sym__val_number_token4] = ACTIONS(3215), + [aux_sym__val_number_token5] = ACTIONS(3215), + [aux_sym__val_number_token6] = ACTIONS(3215), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3210), + [sym_val_date] = ACTIONS(3217), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), @@ -180719,7 +180719,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3212), + [aux_sym_unquoted_token1] = ACTIONS(3219), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, @@ -180757,33 +180757,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__unquoted_anonymous_prefix] = STATE(7204), [sym_comment] = STATE(982), [aux_sym_shebang_repeat1] = STATE(995), - [sym__newline] = ACTIONS(3190), + [sym__newline] = ACTIONS(3197), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3192), + [anon_sym_DOT_DOT] = ACTIONS(3199), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3194), - [anon_sym_DOT_DOT_LT] = ACTIONS(3194), - [anon_sym_null] = ACTIONS(3196), - [anon_sym_true] = ACTIONS(3198), - [anon_sym_false] = ACTIONS(3198), - [aux_sym__val_number_decimal_token1] = ACTIONS(3200), - [aux_sym__val_number_decimal_token2] = ACTIONS(3202), - [aux_sym__val_number_decimal_token3] = ACTIONS(3204), - [aux_sym__val_number_decimal_token4] = ACTIONS(3206), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3201), + [anon_sym_DOT_DOT_LT] = ACTIONS(3201), + [anon_sym_null] = ACTIONS(3203), + [anon_sym_true] = ACTIONS(3205), + [anon_sym_false] = ACTIONS(3205), + [aux_sym__val_number_decimal_token1] = ACTIONS(3207), + [aux_sym__val_number_decimal_token2] = ACTIONS(3209), + [aux_sym__val_number_decimal_token3] = ACTIONS(3211), + [aux_sym__val_number_decimal_token4] = ACTIONS(3213), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3208), - [aux_sym__val_number_token5] = ACTIONS(3208), - [aux_sym__val_number_token6] = ACTIONS(3208), + [aux_sym__val_number_token4] = ACTIONS(3215), + [aux_sym__val_number_token5] = ACTIONS(3215), + [aux_sym__val_number_token6] = ACTIONS(3215), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3210), + [sym_val_date] = ACTIONS(3217), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), @@ -180805,7 +180805,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3212), + [aux_sym_unquoted_token1] = ACTIONS(3219), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, @@ -180843,33 +180843,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__unquoted_anonymous_prefix] = STATE(7204), [sym_comment] = STATE(983), [aux_sym_shebang_repeat1] = STATE(996), - [sym__newline] = ACTIONS(3190), + [sym__newline] = ACTIONS(3197), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3192), + [anon_sym_DOT_DOT] = ACTIONS(3199), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3194), - [anon_sym_DOT_DOT_LT] = ACTIONS(3194), - [anon_sym_null] = ACTIONS(3196), - [anon_sym_true] = ACTIONS(3198), - [anon_sym_false] = ACTIONS(3198), - [aux_sym__val_number_decimal_token1] = ACTIONS(3200), - [aux_sym__val_number_decimal_token2] = ACTIONS(3202), - [aux_sym__val_number_decimal_token3] = ACTIONS(3204), - [aux_sym__val_number_decimal_token4] = ACTIONS(3206), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3201), + [anon_sym_DOT_DOT_LT] = ACTIONS(3201), + [anon_sym_null] = ACTIONS(3203), + [anon_sym_true] = ACTIONS(3205), + [anon_sym_false] = ACTIONS(3205), + [aux_sym__val_number_decimal_token1] = ACTIONS(3207), + [aux_sym__val_number_decimal_token2] = ACTIONS(3209), + [aux_sym__val_number_decimal_token3] = ACTIONS(3211), + [aux_sym__val_number_decimal_token4] = ACTIONS(3213), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3208), - [aux_sym__val_number_token5] = ACTIONS(3208), - [aux_sym__val_number_token6] = ACTIONS(3208), + [aux_sym__val_number_token4] = ACTIONS(3215), + [aux_sym__val_number_token5] = ACTIONS(3215), + [aux_sym__val_number_token6] = ACTIONS(3215), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3210), + [sym_val_date] = ACTIONS(3217), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), @@ -180891,7 +180891,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3212), + [aux_sym_unquoted_token1] = ACTIONS(3219), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, @@ -180929,33 +180929,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__unquoted_anonymous_prefix] = STATE(7204), [sym_comment] = STATE(984), [aux_sym_shebang_repeat1] = STATE(997), - [sym__newline] = ACTIONS(3190), + [sym__newline] = ACTIONS(3197), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3192), + [anon_sym_DOT_DOT] = ACTIONS(3199), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3194), - [anon_sym_DOT_DOT_LT] = ACTIONS(3194), - [anon_sym_null] = ACTIONS(3196), - [anon_sym_true] = ACTIONS(3198), - [anon_sym_false] = ACTIONS(3198), - [aux_sym__val_number_decimal_token1] = ACTIONS(3200), - [aux_sym__val_number_decimal_token2] = ACTIONS(3202), - [aux_sym__val_number_decimal_token3] = ACTIONS(3204), - [aux_sym__val_number_decimal_token4] = ACTIONS(3206), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3201), + [anon_sym_DOT_DOT_LT] = ACTIONS(3201), + [anon_sym_null] = ACTIONS(3203), + [anon_sym_true] = ACTIONS(3205), + [anon_sym_false] = ACTIONS(3205), + [aux_sym__val_number_decimal_token1] = ACTIONS(3207), + [aux_sym__val_number_decimal_token2] = ACTIONS(3209), + [aux_sym__val_number_decimal_token3] = ACTIONS(3211), + [aux_sym__val_number_decimal_token4] = ACTIONS(3213), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3208), - [aux_sym__val_number_token5] = ACTIONS(3208), - [aux_sym__val_number_token6] = ACTIONS(3208), + [aux_sym__val_number_token4] = ACTIONS(3215), + [aux_sym__val_number_token5] = ACTIONS(3215), + [aux_sym__val_number_token6] = ACTIONS(3215), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3210), + [sym_val_date] = ACTIONS(3217), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), @@ -180977,7 +180977,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3212), + [aux_sym_unquoted_token1] = ACTIONS(3219), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, @@ -181015,33 +181015,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__unquoted_anonymous_prefix] = STATE(7204), [sym_comment] = STATE(985), [aux_sym_shebang_repeat1] = STATE(998), - [sym__newline] = ACTIONS(3190), + [sym__newline] = ACTIONS(3197), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3192), + [anon_sym_DOT_DOT] = ACTIONS(3199), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3194), - [anon_sym_DOT_DOT_LT] = ACTIONS(3194), - [anon_sym_null] = ACTIONS(3196), - [anon_sym_true] = ACTIONS(3198), - [anon_sym_false] = ACTIONS(3198), - [aux_sym__val_number_decimal_token1] = ACTIONS(3200), - [aux_sym__val_number_decimal_token2] = ACTIONS(3202), - [aux_sym__val_number_decimal_token3] = ACTIONS(3204), - [aux_sym__val_number_decimal_token4] = ACTIONS(3206), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3201), + [anon_sym_DOT_DOT_LT] = ACTIONS(3201), + [anon_sym_null] = ACTIONS(3203), + [anon_sym_true] = ACTIONS(3205), + [anon_sym_false] = ACTIONS(3205), + [aux_sym__val_number_decimal_token1] = ACTIONS(3207), + [aux_sym__val_number_decimal_token2] = ACTIONS(3209), + [aux_sym__val_number_decimal_token3] = ACTIONS(3211), + [aux_sym__val_number_decimal_token4] = ACTIONS(3213), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3208), - [aux_sym__val_number_token5] = ACTIONS(3208), - [aux_sym__val_number_token6] = ACTIONS(3208), + [aux_sym__val_number_token4] = ACTIONS(3215), + [aux_sym__val_number_token5] = ACTIONS(3215), + [aux_sym__val_number_token6] = ACTIONS(3215), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3210), + [sym_val_date] = ACTIONS(3217), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), @@ -181063,7 +181063,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3212), + [aux_sym_unquoted_token1] = ACTIONS(3219), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, @@ -181101,33 +181101,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__unquoted_anonymous_prefix] = STATE(7204), [sym_comment] = STATE(986), [aux_sym_shebang_repeat1] = STATE(999), - [sym__newline] = ACTIONS(3190), + [sym__newline] = ACTIONS(3197), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3192), + [anon_sym_DOT_DOT] = ACTIONS(3199), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3194), - [anon_sym_DOT_DOT_LT] = ACTIONS(3194), - [anon_sym_null] = ACTIONS(3196), - [anon_sym_true] = ACTIONS(3198), - [anon_sym_false] = ACTIONS(3198), - [aux_sym__val_number_decimal_token1] = ACTIONS(3200), - [aux_sym__val_number_decimal_token2] = ACTIONS(3202), - [aux_sym__val_number_decimal_token3] = ACTIONS(3204), - [aux_sym__val_number_decimal_token4] = ACTIONS(3206), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3201), + [anon_sym_DOT_DOT_LT] = ACTIONS(3201), + [anon_sym_null] = ACTIONS(3203), + [anon_sym_true] = ACTIONS(3205), + [anon_sym_false] = ACTIONS(3205), + [aux_sym__val_number_decimal_token1] = ACTIONS(3207), + [aux_sym__val_number_decimal_token2] = ACTIONS(3209), + [aux_sym__val_number_decimal_token3] = ACTIONS(3211), + [aux_sym__val_number_decimal_token4] = ACTIONS(3213), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3208), - [aux_sym__val_number_token5] = ACTIONS(3208), - [aux_sym__val_number_token6] = ACTIONS(3208), + [aux_sym__val_number_token4] = ACTIONS(3215), + [aux_sym__val_number_token5] = ACTIONS(3215), + [aux_sym__val_number_token6] = ACTIONS(3215), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3210), + [sym_val_date] = ACTIONS(3217), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), @@ -181149,7 +181149,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3212), + [aux_sym_unquoted_token1] = ACTIONS(3219), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, @@ -181187,33 +181187,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__unquoted_anonymous_prefix] = STATE(7204), [sym_comment] = STATE(987), [aux_sym_shebang_repeat1] = STATE(1000), - [sym__newline] = ACTIONS(3190), + [sym__newline] = ACTIONS(3197), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3192), + [anon_sym_DOT_DOT] = ACTIONS(3199), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3194), - [anon_sym_DOT_DOT_LT] = ACTIONS(3194), - [anon_sym_null] = ACTIONS(3196), - [anon_sym_true] = ACTIONS(3198), - [anon_sym_false] = ACTIONS(3198), - [aux_sym__val_number_decimal_token1] = ACTIONS(3200), - [aux_sym__val_number_decimal_token2] = ACTIONS(3202), - [aux_sym__val_number_decimal_token3] = ACTIONS(3204), - [aux_sym__val_number_decimal_token4] = ACTIONS(3206), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3201), + [anon_sym_DOT_DOT_LT] = ACTIONS(3201), + [anon_sym_null] = ACTIONS(3203), + [anon_sym_true] = ACTIONS(3205), + [anon_sym_false] = ACTIONS(3205), + [aux_sym__val_number_decimal_token1] = ACTIONS(3207), + [aux_sym__val_number_decimal_token2] = ACTIONS(3209), + [aux_sym__val_number_decimal_token3] = ACTIONS(3211), + [aux_sym__val_number_decimal_token4] = ACTIONS(3213), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3208), - [aux_sym__val_number_token5] = ACTIONS(3208), - [aux_sym__val_number_token6] = ACTIONS(3208), + [aux_sym__val_number_token4] = ACTIONS(3215), + [aux_sym__val_number_token5] = ACTIONS(3215), + [aux_sym__val_number_token6] = ACTIONS(3215), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3210), + [sym_val_date] = ACTIONS(3217), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), @@ -181235,7 +181235,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3212), + [aux_sym_unquoted_token1] = ACTIONS(3219), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, @@ -181273,33 +181273,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__unquoted_anonymous_prefix] = STATE(7204), [sym_comment] = STATE(988), [aux_sym_shebang_repeat1] = STATE(1001), - [sym__newline] = ACTIONS(3190), + [sym__newline] = ACTIONS(3197), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3192), + [anon_sym_DOT_DOT] = ACTIONS(3199), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3194), - [anon_sym_DOT_DOT_LT] = ACTIONS(3194), - [anon_sym_null] = ACTIONS(3196), - [anon_sym_true] = ACTIONS(3198), - [anon_sym_false] = ACTIONS(3198), - [aux_sym__val_number_decimal_token1] = ACTIONS(3200), - [aux_sym__val_number_decimal_token2] = ACTIONS(3202), - [aux_sym__val_number_decimal_token3] = ACTIONS(3204), - [aux_sym__val_number_decimal_token4] = ACTIONS(3206), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3201), + [anon_sym_DOT_DOT_LT] = ACTIONS(3201), + [anon_sym_null] = ACTIONS(3203), + [anon_sym_true] = ACTIONS(3205), + [anon_sym_false] = ACTIONS(3205), + [aux_sym__val_number_decimal_token1] = ACTIONS(3207), + [aux_sym__val_number_decimal_token2] = ACTIONS(3209), + [aux_sym__val_number_decimal_token3] = ACTIONS(3211), + [aux_sym__val_number_decimal_token4] = ACTIONS(3213), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3208), - [aux_sym__val_number_token5] = ACTIONS(3208), - [aux_sym__val_number_token6] = ACTIONS(3208), + [aux_sym__val_number_token4] = ACTIONS(3215), + [aux_sym__val_number_token5] = ACTIONS(3215), + [aux_sym__val_number_token6] = ACTIONS(3215), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3210), + [sym_val_date] = ACTIONS(3217), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), @@ -181321,7 +181321,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3212), + [aux_sym_unquoted_token1] = ACTIONS(3219), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, @@ -181359,33 +181359,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__unquoted_anonymous_prefix] = STATE(7204), [sym_comment] = STATE(989), [aux_sym_shebang_repeat1] = STATE(1002), - [sym__newline] = ACTIONS(3190), + [sym__newline] = ACTIONS(3197), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3192), + [anon_sym_DOT_DOT] = ACTIONS(3199), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3194), - [anon_sym_DOT_DOT_LT] = ACTIONS(3194), - [anon_sym_null] = ACTIONS(3196), - [anon_sym_true] = ACTIONS(3198), - [anon_sym_false] = ACTIONS(3198), - [aux_sym__val_number_decimal_token1] = ACTIONS(3200), - [aux_sym__val_number_decimal_token2] = ACTIONS(3202), - [aux_sym__val_number_decimal_token3] = ACTIONS(3204), - [aux_sym__val_number_decimal_token4] = ACTIONS(3206), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3201), + [anon_sym_DOT_DOT_LT] = ACTIONS(3201), + [anon_sym_null] = ACTIONS(3203), + [anon_sym_true] = ACTIONS(3205), + [anon_sym_false] = ACTIONS(3205), + [aux_sym__val_number_decimal_token1] = ACTIONS(3207), + [aux_sym__val_number_decimal_token2] = ACTIONS(3209), + [aux_sym__val_number_decimal_token3] = ACTIONS(3211), + [aux_sym__val_number_decimal_token4] = ACTIONS(3213), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3208), - [aux_sym__val_number_token5] = ACTIONS(3208), - [aux_sym__val_number_token6] = ACTIONS(3208), + [aux_sym__val_number_token4] = ACTIONS(3215), + [aux_sym__val_number_token5] = ACTIONS(3215), + [aux_sym__val_number_token6] = ACTIONS(3215), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3210), + [sym_val_date] = ACTIONS(3217), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), @@ -181407,7 +181407,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3212), + [aux_sym_unquoted_token1] = ACTIONS(3219), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, @@ -181445,33 +181445,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__unquoted_anonymous_prefix] = STATE(7204), [sym_comment] = STATE(990), [aux_sym_shebang_repeat1] = STATE(1003), - [sym__newline] = ACTIONS(3190), + [sym__newline] = ACTIONS(3197), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3192), + [anon_sym_DOT_DOT] = ACTIONS(3199), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3194), - [anon_sym_DOT_DOT_LT] = ACTIONS(3194), - [anon_sym_null] = ACTIONS(3196), - [anon_sym_true] = ACTIONS(3198), - [anon_sym_false] = ACTIONS(3198), - [aux_sym__val_number_decimal_token1] = ACTIONS(3200), - [aux_sym__val_number_decimal_token2] = ACTIONS(3202), - [aux_sym__val_number_decimal_token3] = ACTIONS(3204), - [aux_sym__val_number_decimal_token4] = ACTIONS(3206), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3201), + [anon_sym_DOT_DOT_LT] = ACTIONS(3201), + [anon_sym_null] = ACTIONS(3203), + [anon_sym_true] = ACTIONS(3205), + [anon_sym_false] = ACTIONS(3205), + [aux_sym__val_number_decimal_token1] = ACTIONS(3207), + [aux_sym__val_number_decimal_token2] = ACTIONS(3209), + [aux_sym__val_number_decimal_token3] = ACTIONS(3211), + [aux_sym__val_number_decimal_token4] = ACTIONS(3213), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3208), - [aux_sym__val_number_token5] = ACTIONS(3208), - [aux_sym__val_number_token6] = ACTIONS(3208), + [aux_sym__val_number_token4] = ACTIONS(3215), + [aux_sym__val_number_token5] = ACTIONS(3215), + [aux_sym__val_number_token6] = ACTIONS(3215), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3210), + [sym_val_date] = ACTIONS(3217), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), @@ -181493,7 +181493,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3212), + [aux_sym_unquoted_token1] = ACTIONS(3219), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, @@ -181531,33 +181531,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__unquoted_anonymous_prefix] = STATE(7204), [sym_comment] = STATE(991), [aux_sym_shebang_repeat1] = STATE(1004), - [sym__newline] = ACTIONS(3190), + [sym__newline] = ACTIONS(3197), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3192), + [anon_sym_DOT_DOT] = ACTIONS(3199), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3194), - [anon_sym_DOT_DOT_LT] = ACTIONS(3194), - [anon_sym_null] = ACTIONS(3196), - [anon_sym_true] = ACTIONS(3198), - [anon_sym_false] = ACTIONS(3198), - [aux_sym__val_number_decimal_token1] = ACTIONS(3200), - [aux_sym__val_number_decimal_token2] = ACTIONS(3202), - [aux_sym__val_number_decimal_token3] = ACTIONS(3204), - [aux_sym__val_number_decimal_token4] = ACTIONS(3206), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3201), + [anon_sym_DOT_DOT_LT] = ACTIONS(3201), + [anon_sym_null] = ACTIONS(3203), + [anon_sym_true] = ACTIONS(3205), + [anon_sym_false] = ACTIONS(3205), + [aux_sym__val_number_decimal_token1] = ACTIONS(3207), + [aux_sym__val_number_decimal_token2] = ACTIONS(3209), + [aux_sym__val_number_decimal_token3] = ACTIONS(3211), + [aux_sym__val_number_decimal_token4] = ACTIONS(3213), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3208), - [aux_sym__val_number_token5] = ACTIONS(3208), - [aux_sym__val_number_token6] = ACTIONS(3208), + [aux_sym__val_number_token4] = ACTIONS(3215), + [aux_sym__val_number_token5] = ACTIONS(3215), + [aux_sym__val_number_token6] = ACTIONS(3215), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3210), + [sym_val_date] = ACTIONS(3217), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), @@ -181579,7 +181579,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3212), + [aux_sym_unquoted_token1] = ACTIONS(3219), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, @@ -181617,33 +181617,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__unquoted_anonymous_prefix] = STATE(7204), [sym_comment] = STATE(992), [aux_sym_shebang_repeat1] = STATE(1005), - [sym__newline] = ACTIONS(3190), + [sym__newline] = ACTIONS(3197), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3192), + [anon_sym_DOT_DOT] = ACTIONS(3199), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3194), - [anon_sym_DOT_DOT_LT] = ACTIONS(3194), - [anon_sym_null] = ACTIONS(3196), - [anon_sym_true] = ACTIONS(3198), - [anon_sym_false] = ACTIONS(3198), - [aux_sym__val_number_decimal_token1] = ACTIONS(3200), - [aux_sym__val_number_decimal_token2] = ACTIONS(3202), - [aux_sym__val_number_decimal_token3] = ACTIONS(3204), - [aux_sym__val_number_decimal_token4] = ACTIONS(3206), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3201), + [anon_sym_DOT_DOT_LT] = ACTIONS(3201), + [anon_sym_null] = ACTIONS(3203), + [anon_sym_true] = ACTIONS(3205), + [anon_sym_false] = ACTIONS(3205), + [aux_sym__val_number_decimal_token1] = ACTIONS(3207), + [aux_sym__val_number_decimal_token2] = ACTIONS(3209), + [aux_sym__val_number_decimal_token3] = ACTIONS(3211), + [aux_sym__val_number_decimal_token4] = ACTIONS(3213), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3208), - [aux_sym__val_number_token5] = ACTIONS(3208), - [aux_sym__val_number_token6] = ACTIONS(3208), + [aux_sym__val_number_token4] = ACTIONS(3215), + [aux_sym__val_number_token5] = ACTIONS(3215), + [aux_sym__val_number_token6] = ACTIONS(3215), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3210), + [sym_val_date] = ACTIONS(3217), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), @@ -181665,7 +181665,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3212), + [aux_sym_unquoted_token1] = ACTIONS(3219), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, @@ -181703,33 +181703,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__unquoted_anonymous_prefix] = STATE(7204), [sym_comment] = STATE(993), [aux_sym_shebang_repeat1] = STATE(2817), - [sym__newline] = ACTIONS(3190), + [sym__newline] = ACTIONS(3197), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3192), + [anon_sym_DOT_DOT] = ACTIONS(3199), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3194), - [anon_sym_DOT_DOT_LT] = ACTIONS(3194), - [anon_sym_null] = ACTIONS(3196), - [anon_sym_true] = ACTIONS(3198), - [anon_sym_false] = ACTIONS(3198), - [aux_sym__val_number_decimal_token1] = ACTIONS(3200), - [aux_sym__val_number_decimal_token2] = ACTIONS(3202), - [aux_sym__val_number_decimal_token3] = ACTIONS(3204), - [aux_sym__val_number_decimal_token4] = ACTIONS(3206), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3201), + [anon_sym_DOT_DOT_LT] = ACTIONS(3201), + [anon_sym_null] = ACTIONS(3203), + [anon_sym_true] = ACTIONS(3205), + [anon_sym_false] = ACTIONS(3205), + [aux_sym__val_number_decimal_token1] = ACTIONS(3207), + [aux_sym__val_number_decimal_token2] = ACTIONS(3209), + [aux_sym__val_number_decimal_token3] = ACTIONS(3211), + [aux_sym__val_number_decimal_token4] = ACTIONS(3213), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3208), - [aux_sym__val_number_token5] = ACTIONS(3208), - [aux_sym__val_number_token6] = ACTIONS(3208), + [aux_sym__val_number_token4] = ACTIONS(3215), + [aux_sym__val_number_token5] = ACTIONS(3215), + [aux_sym__val_number_token6] = ACTIONS(3215), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3210), + [sym_val_date] = ACTIONS(3217), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), @@ -181751,7 +181751,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3212), + [aux_sym_unquoted_token1] = ACTIONS(3219), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, @@ -181789,33 +181789,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__unquoted_anonymous_prefix] = STATE(7204), [sym_comment] = STATE(994), [aux_sym_shebang_repeat1] = STATE(2817), - [sym__newline] = ACTIONS(3190), + [sym__newline] = ACTIONS(3197), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3192), + [anon_sym_DOT_DOT] = ACTIONS(3199), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3194), - [anon_sym_DOT_DOT_LT] = ACTIONS(3194), - [anon_sym_null] = ACTIONS(3196), - [anon_sym_true] = ACTIONS(3198), - [anon_sym_false] = ACTIONS(3198), - [aux_sym__val_number_decimal_token1] = ACTIONS(3200), - [aux_sym__val_number_decimal_token2] = ACTIONS(3202), - [aux_sym__val_number_decimal_token3] = ACTIONS(3204), - [aux_sym__val_number_decimal_token4] = ACTIONS(3206), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3201), + [anon_sym_DOT_DOT_LT] = ACTIONS(3201), + [anon_sym_null] = ACTIONS(3203), + [anon_sym_true] = ACTIONS(3205), + [anon_sym_false] = ACTIONS(3205), + [aux_sym__val_number_decimal_token1] = ACTIONS(3207), + [aux_sym__val_number_decimal_token2] = ACTIONS(3209), + [aux_sym__val_number_decimal_token3] = ACTIONS(3211), + [aux_sym__val_number_decimal_token4] = ACTIONS(3213), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3208), - [aux_sym__val_number_token5] = ACTIONS(3208), - [aux_sym__val_number_token6] = ACTIONS(3208), + [aux_sym__val_number_token4] = ACTIONS(3215), + [aux_sym__val_number_token5] = ACTIONS(3215), + [aux_sym__val_number_token6] = ACTIONS(3215), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3210), + [sym_val_date] = ACTIONS(3217), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), @@ -181837,7 +181837,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3212), + [aux_sym_unquoted_token1] = ACTIONS(3219), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, @@ -181875,33 +181875,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__unquoted_anonymous_prefix] = STATE(7204), [sym_comment] = STATE(995), [aux_sym_shebang_repeat1] = STATE(2817), - [sym__newline] = ACTIONS(3190), + [sym__newline] = ACTIONS(3197), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3192), + [anon_sym_DOT_DOT] = ACTIONS(3199), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3194), - [anon_sym_DOT_DOT_LT] = ACTIONS(3194), - [anon_sym_null] = ACTIONS(3196), - [anon_sym_true] = ACTIONS(3198), - [anon_sym_false] = ACTIONS(3198), - [aux_sym__val_number_decimal_token1] = ACTIONS(3200), - [aux_sym__val_number_decimal_token2] = ACTIONS(3202), - [aux_sym__val_number_decimal_token3] = ACTIONS(3204), - [aux_sym__val_number_decimal_token4] = ACTIONS(3206), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3201), + [anon_sym_DOT_DOT_LT] = ACTIONS(3201), + [anon_sym_null] = ACTIONS(3203), + [anon_sym_true] = ACTIONS(3205), + [anon_sym_false] = ACTIONS(3205), + [aux_sym__val_number_decimal_token1] = ACTIONS(3207), + [aux_sym__val_number_decimal_token2] = ACTIONS(3209), + [aux_sym__val_number_decimal_token3] = ACTIONS(3211), + [aux_sym__val_number_decimal_token4] = ACTIONS(3213), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3208), - [aux_sym__val_number_token5] = ACTIONS(3208), - [aux_sym__val_number_token6] = ACTIONS(3208), + [aux_sym__val_number_token4] = ACTIONS(3215), + [aux_sym__val_number_token5] = ACTIONS(3215), + [aux_sym__val_number_token6] = ACTIONS(3215), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3210), + [sym_val_date] = ACTIONS(3217), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), @@ -181923,7 +181923,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3212), + [aux_sym_unquoted_token1] = ACTIONS(3219), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, @@ -181961,33 +181961,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__unquoted_anonymous_prefix] = STATE(7204), [sym_comment] = STATE(996), [aux_sym_shebang_repeat1] = STATE(2817), - [sym__newline] = ACTIONS(3190), + [sym__newline] = ACTIONS(3197), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3192), + [anon_sym_DOT_DOT] = ACTIONS(3199), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3194), - [anon_sym_DOT_DOT_LT] = ACTIONS(3194), - [anon_sym_null] = ACTIONS(3196), - [anon_sym_true] = ACTIONS(3198), - [anon_sym_false] = ACTIONS(3198), - [aux_sym__val_number_decimal_token1] = ACTIONS(3200), - [aux_sym__val_number_decimal_token2] = ACTIONS(3202), - [aux_sym__val_number_decimal_token3] = ACTIONS(3204), - [aux_sym__val_number_decimal_token4] = ACTIONS(3206), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3201), + [anon_sym_DOT_DOT_LT] = ACTIONS(3201), + [anon_sym_null] = ACTIONS(3203), + [anon_sym_true] = ACTIONS(3205), + [anon_sym_false] = ACTIONS(3205), + [aux_sym__val_number_decimal_token1] = ACTIONS(3207), + [aux_sym__val_number_decimal_token2] = ACTIONS(3209), + [aux_sym__val_number_decimal_token3] = ACTIONS(3211), + [aux_sym__val_number_decimal_token4] = ACTIONS(3213), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3208), - [aux_sym__val_number_token5] = ACTIONS(3208), - [aux_sym__val_number_token6] = ACTIONS(3208), + [aux_sym__val_number_token4] = ACTIONS(3215), + [aux_sym__val_number_token5] = ACTIONS(3215), + [aux_sym__val_number_token6] = ACTIONS(3215), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3210), + [sym_val_date] = ACTIONS(3217), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), @@ -182009,7 +182009,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3212), + [aux_sym_unquoted_token1] = ACTIONS(3219), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, @@ -182047,33 +182047,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__unquoted_anonymous_prefix] = STATE(7204), [sym_comment] = STATE(997), [aux_sym_shebang_repeat1] = STATE(2817), - [sym__newline] = ACTIONS(3190), + [sym__newline] = ACTIONS(3197), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3192), + [anon_sym_DOT_DOT] = ACTIONS(3199), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3194), - [anon_sym_DOT_DOT_LT] = ACTIONS(3194), - [anon_sym_null] = ACTIONS(3196), - [anon_sym_true] = ACTIONS(3198), - [anon_sym_false] = ACTIONS(3198), - [aux_sym__val_number_decimal_token1] = ACTIONS(3200), - [aux_sym__val_number_decimal_token2] = ACTIONS(3202), - [aux_sym__val_number_decimal_token3] = ACTIONS(3204), - [aux_sym__val_number_decimal_token4] = ACTIONS(3206), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3201), + [anon_sym_DOT_DOT_LT] = ACTIONS(3201), + [anon_sym_null] = ACTIONS(3203), + [anon_sym_true] = ACTIONS(3205), + [anon_sym_false] = ACTIONS(3205), + [aux_sym__val_number_decimal_token1] = ACTIONS(3207), + [aux_sym__val_number_decimal_token2] = ACTIONS(3209), + [aux_sym__val_number_decimal_token3] = ACTIONS(3211), + [aux_sym__val_number_decimal_token4] = ACTIONS(3213), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3208), - [aux_sym__val_number_token5] = ACTIONS(3208), - [aux_sym__val_number_token6] = ACTIONS(3208), + [aux_sym__val_number_token4] = ACTIONS(3215), + [aux_sym__val_number_token5] = ACTIONS(3215), + [aux_sym__val_number_token6] = ACTIONS(3215), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3210), + [sym_val_date] = ACTIONS(3217), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), @@ -182095,7 +182095,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3212), + [aux_sym_unquoted_token1] = ACTIONS(3219), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, @@ -182133,33 +182133,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__unquoted_anonymous_prefix] = STATE(7204), [sym_comment] = STATE(998), [aux_sym_shebang_repeat1] = STATE(2817), - [sym__newline] = ACTIONS(3190), + [sym__newline] = ACTIONS(3197), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3192), + [anon_sym_DOT_DOT] = ACTIONS(3199), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3194), - [anon_sym_DOT_DOT_LT] = ACTIONS(3194), - [anon_sym_null] = ACTIONS(3196), - [anon_sym_true] = ACTIONS(3198), - [anon_sym_false] = ACTIONS(3198), - [aux_sym__val_number_decimal_token1] = ACTIONS(3200), - [aux_sym__val_number_decimal_token2] = ACTIONS(3202), - [aux_sym__val_number_decimal_token3] = ACTIONS(3204), - [aux_sym__val_number_decimal_token4] = ACTIONS(3206), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3201), + [anon_sym_DOT_DOT_LT] = ACTIONS(3201), + [anon_sym_null] = ACTIONS(3203), + [anon_sym_true] = ACTIONS(3205), + [anon_sym_false] = ACTIONS(3205), + [aux_sym__val_number_decimal_token1] = ACTIONS(3207), + [aux_sym__val_number_decimal_token2] = ACTIONS(3209), + [aux_sym__val_number_decimal_token3] = ACTIONS(3211), + [aux_sym__val_number_decimal_token4] = ACTIONS(3213), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3208), - [aux_sym__val_number_token5] = ACTIONS(3208), - [aux_sym__val_number_token6] = ACTIONS(3208), + [aux_sym__val_number_token4] = ACTIONS(3215), + [aux_sym__val_number_token5] = ACTIONS(3215), + [aux_sym__val_number_token6] = ACTIONS(3215), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3210), + [sym_val_date] = ACTIONS(3217), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), @@ -182181,7 +182181,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3212), + [aux_sym_unquoted_token1] = ACTIONS(3219), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, @@ -182219,33 +182219,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__unquoted_anonymous_prefix] = STATE(7204), [sym_comment] = STATE(999), [aux_sym_shebang_repeat1] = STATE(2817), - [sym__newline] = ACTIONS(3190), + [sym__newline] = ACTIONS(3197), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3192), + [anon_sym_DOT_DOT] = ACTIONS(3199), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3194), - [anon_sym_DOT_DOT_LT] = ACTIONS(3194), - [anon_sym_null] = ACTIONS(3196), - [anon_sym_true] = ACTIONS(3198), - [anon_sym_false] = ACTIONS(3198), - [aux_sym__val_number_decimal_token1] = ACTIONS(3200), - [aux_sym__val_number_decimal_token2] = ACTIONS(3202), - [aux_sym__val_number_decimal_token3] = ACTIONS(3204), - [aux_sym__val_number_decimal_token4] = ACTIONS(3206), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3201), + [anon_sym_DOT_DOT_LT] = ACTIONS(3201), + [anon_sym_null] = ACTIONS(3203), + [anon_sym_true] = ACTIONS(3205), + [anon_sym_false] = ACTIONS(3205), + [aux_sym__val_number_decimal_token1] = ACTIONS(3207), + [aux_sym__val_number_decimal_token2] = ACTIONS(3209), + [aux_sym__val_number_decimal_token3] = ACTIONS(3211), + [aux_sym__val_number_decimal_token4] = ACTIONS(3213), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3208), - [aux_sym__val_number_token5] = ACTIONS(3208), - [aux_sym__val_number_token6] = ACTIONS(3208), + [aux_sym__val_number_token4] = ACTIONS(3215), + [aux_sym__val_number_token5] = ACTIONS(3215), + [aux_sym__val_number_token6] = ACTIONS(3215), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3210), + [sym_val_date] = ACTIONS(3217), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), @@ -182267,7 +182267,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3212), + [aux_sym_unquoted_token1] = ACTIONS(3219), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, @@ -182305,33 +182305,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__unquoted_anonymous_prefix] = STATE(7204), [sym_comment] = STATE(1000), [aux_sym_shebang_repeat1] = STATE(2817), - [sym__newline] = ACTIONS(3190), + [sym__newline] = ACTIONS(3197), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3192), + [anon_sym_DOT_DOT] = ACTIONS(3199), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3194), - [anon_sym_DOT_DOT_LT] = ACTIONS(3194), - [anon_sym_null] = ACTIONS(3196), - [anon_sym_true] = ACTIONS(3198), - [anon_sym_false] = ACTIONS(3198), - [aux_sym__val_number_decimal_token1] = ACTIONS(3200), - [aux_sym__val_number_decimal_token2] = ACTIONS(3202), - [aux_sym__val_number_decimal_token3] = ACTIONS(3204), - [aux_sym__val_number_decimal_token4] = ACTIONS(3206), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3201), + [anon_sym_DOT_DOT_LT] = ACTIONS(3201), + [anon_sym_null] = ACTIONS(3203), + [anon_sym_true] = ACTIONS(3205), + [anon_sym_false] = ACTIONS(3205), + [aux_sym__val_number_decimal_token1] = ACTIONS(3207), + [aux_sym__val_number_decimal_token2] = ACTIONS(3209), + [aux_sym__val_number_decimal_token3] = ACTIONS(3211), + [aux_sym__val_number_decimal_token4] = ACTIONS(3213), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3208), - [aux_sym__val_number_token5] = ACTIONS(3208), - [aux_sym__val_number_token6] = ACTIONS(3208), + [aux_sym__val_number_token4] = ACTIONS(3215), + [aux_sym__val_number_token5] = ACTIONS(3215), + [aux_sym__val_number_token6] = ACTIONS(3215), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3210), + [sym_val_date] = ACTIONS(3217), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), @@ -182353,7 +182353,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3212), + [aux_sym_unquoted_token1] = ACTIONS(3219), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, @@ -182391,33 +182391,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__unquoted_anonymous_prefix] = STATE(7204), [sym_comment] = STATE(1001), [aux_sym_shebang_repeat1] = STATE(2817), - [sym__newline] = ACTIONS(3190), + [sym__newline] = ACTIONS(3197), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3192), + [anon_sym_DOT_DOT] = ACTIONS(3199), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3194), - [anon_sym_DOT_DOT_LT] = ACTIONS(3194), - [anon_sym_null] = ACTIONS(3196), - [anon_sym_true] = ACTIONS(3198), - [anon_sym_false] = ACTIONS(3198), - [aux_sym__val_number_decimal_token1] = ACTIONS(3200), - [aux_sym__val_number_decimal_token2] = ACTIONS(3202), - [aux_sym__val_number_decimal_token3] = ACTIONS(3204), - [aux_sym__val_number_decimal_token4] = ACTIONS(3206), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3201), + [anon_sym_DOT_DOT_LT] = ACTIONS(3201), + [anon_sym_null] = ACTIONS(3203), + [anon_sym_true] = ACTIONS(3205), + [anon_sym_false] = ACTIONS(3205), + [aux_sym__val_number_decimal_token1] = ACTIONS(3207), + [aux_sym__val_number_decimal_token2] = ACTIONS(3209), + [aux_sym__val_number_decimal_token3] = ACTIONS(3211), + [aux_sym__val_number_decimal_token4] = ACTIONS(3213), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3208), - [aux_sym__val_number_token5] = ACTIONS(3208), - [aux_sym__val_number_token6] = ACTIONS(3208), + [aux_sym__val_number_token4] = ACTIONS(3215), + [aux_sym__val_number_token5] = ACTIONS(3215), + [aux_sym__val_number_token6] = ACTIONS(3215), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3210), + [sym_val_date] = ACTIONS(3217), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), @@ -182439,7 +182439,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3212), + [aux_sym_unquoted_token1] = ACTIONS(3219), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, @@ -182477,33 +182477,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__unquoted_anonymous_prefix] = STATE(7204), [sym_comment] = STATE(1002), [aux_sym_shebang_repeat1] = STATE(2817), - [sym__newline] = ACTIONS(3190), + [sym__newline] = ACTIONS(3197), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3192), + [anon_sym_DOT_DOT] = ACTIONS(3199), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3194), - [anon_sym_DOT_DOT_LT] = ACTIONS(3194), - [anon_sym_null] = ACTIONS(3196), - [anon_sym_true] = ACTIONS(3198), - [anon_sym_false] = ACTIONS(3198), - [aux_sym__val_number_decimal_token1] = ACTIONS(3200), - [aux_sym__val_number_decimal_token2] = ACTIONS(3202), - [aux_sym__val_number_decimal_token3] = ACTIONS(3204), - [aux_sym__val_number_decimal_token4] = ACTIONS(3206), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3201), + [anon_sym_DOT_DOT_LT] = ACTIONS(3201), + [anon_sym_null] = ACTIONS(3203), + [anon_sym_true] = ACTIONS(3205), + [anon_sym_false] = ACTIONS(3205), + [aux_sym__val_number_decimal_token1] = ACTIONS(3207), + [aux_sym__val_number_decimal_token2] = ACTIONS(3209), + [aux_sym__val_number_decimal_token3] = ACTIONS(3211), + [aux_sym__val_number_decimal_token4] = ACTIONS(3213), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3208), - [aux_sym__val_number_token5] = ACTIONS(3208), - [aux_sym__val_number_token6] = ACTIONS(3208), + [aux_sym__val_number_token4] = ACTIONS(3215), + [aux_sym__val_number_token5] = ACTIONS(3215), + [aux_sym__val_number_token6] = ACTIONS(3215), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3210), + [sym_val_date] = ACTIONS(3217), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), @@ -182525,7 +182525,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3212), + [aux_sym_unquoted_token1] = ACTIONS(3219), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, @@ -182563,33 +182563,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__unquoted_anonymous_prefix] = STATE(7204), [sym_comment] = STATE(1003), [aux_sym_shebang_repeat1] = STATE(2817), - [sym__newline] = ACTIONS(3190), + [sym__newline] = ACTIONS(3197), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3192), + [anon_sym_DOT_DOT] = ACTIONS(3199), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3194), - [anon_sym_DOT_DOT_LT] = ACTIONS(3194), - [anon_sym_null] = ACTIONS(3196), - [anon_sym_true] = ACTIONS(3198), - [anon_sym_false] = ACTIONS(3198), - [aux_sym__val_number_decimal_token1] = ACTIONS(3200), - [aux_sym__val_number_decimal_token2] = ACTIONS(3202), - [aux_sym__val_number_decimal_token3] = ACTIONS(3204), - [aux_sym__val_number_decimal_token4] = ACTIONS(3206), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3201), + [anon_sym_DOT_DOT_LT] = ACTIONS(3201), + [anon_sym_null] = ACTIONS(3203), + [anon_sym_true] = ACTIONS(3205), + [anon_sym_false] = ACTIONS(3205), + [aux_sym__val_number_decimal_token1] = ACTIONS(3207), + [aux_sym__val_number_decimal_token2] = ACTIONS(3209), + [aux_sym__val_number_decimal_token3] = ACTIONS(3211), + [aux_sym__val_number_decimal_token4] = ACTIONS(3213), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3208), - [aux_sym__val_number_token5] = ACTIONS(3208), - [aux_sym__val_number_token6] = ACTIONS(3208), + [aux_sym__val_number_token4] = ACTIONS(3215), + [aux_sym__val_number_token5] = ACTIONS(3215), + [aux_sym__val_number_token6] = ACTIONS(3215), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3210), + [sym_val_date] = ACTIONS(3217), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), @@ -182611,7 +182611,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3212), + [aux_sym_unquoted_token1] = ACTIONS(3219), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, @@ -182649,33 +182649,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__unquoted_anonymous_prefix] = STATE(7204), [sym_comment] = STATE(1004), [aux_sym_shebang_repeat1] = STATE(2817), - [sym__newline] = ACTIONS(3190), + [sym__newline] = ACTIONS(3197), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3192), + [anon_sym_DOT_DOT] = ACTIONS(3199), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3194), - [anon_sym_DOT_DOT_LT] = ACTIONS(3194), - [anon_sym_null] = ACTIONS(3196), - [anon_sym_true] = ACTIONS(3198), - [anon_sym_false] = ACTIONS(3198), - [aux_sym__val_number_decimal_token1] = ACTIONS(3200), - [aux_sym__val_number_decimal_token2] = ACTIONS(3202), - [aux_sym__val_number_decimal_token3] = ACTIONS(3204), - [aux_sym__val_number_decimal_token4] = ACTIONS(3206), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3201), + [anon_sym_DOT_DOT_LT] = ACTIONS(3201), + [anon_sym_null] = ACTIONS(3203), + [anon_sym_true] = ACTIONS(3205), + [anon_sym_false] = ACTIONS(3205), + [aux_sym__val_number_decimal_token1] = ACTIONS(3207), + [aux_sym__val_number_decimal_token2] = ACTIONS(3209), + [aux_sym__val_number_decimal_token3] = ACTIONS(3211), + [aux_sym__val_number_decimal_token4] = ACTIONS(3213), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3208), - [aux_sym__val_number_token5] = ACTIONS(3208), - [aux_sym__val_number_token6] = ACTIONS(3208), + [aux_sym__val_number_token4] = ACTIONS(3215), + [aux_sym__val_number_token5] = ACTIONS(3215), + [aux_sym__val_number_token6] = ACTIONS(3215), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3210), + [sym_val_date] = ACTIONS(3217), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), @@ -182697,7 +182697,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3212), + [aux_sym_unquoted_token1] = ACTIONS(3219), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, @@ -182735,33 +182735,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__unquoted_anonymous_prefix] = STATE(7204), [sym_comment] = STATE(1005), [aux_sym_shebang_repeat1] = STATE(2817), - [sym__newline] = ACTIONS(3190), + [sym__newline] = ACTIONS(3197), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3192), + [anon_sym_DOT_DOT] = ACTIONS(3199), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3194), - [anon_sym_DOT_DOT_LT] = ACTIONS(3194), - [anon_sym_null] = ACTIONS(3196), - [anon_sym_true] = ACTIONS(3198), - [anon_sym_false] = ACTIONS(3198), - [aux_sym__val_number_decimal_token1] = ACTIONS(3200), - [aux_sym__val_number_decimal_token2] = ACTIONS(3202), - [aux_sym__val_number_decimal_token3] = ACTIONS(3204), - [aux_sym__val_number_decimal_token4] = ACTIONS(3206), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3201), + [anon_sym_DOT_DOT_LT] = ACTIONS(3201), + [anon_sym_null] = ACTIONS(3203), + [anon_sym_true] = ACTIONS(3205), + [anon_sym_false] = ACTIONS(3205), + [aux_sym__val_number_decimal_token1] = ACTIONS(3207), + [aux_sym__val_number_decimal_token2] = ACTIONS(3209), + [aux_sym__val_number_decimal_token3] = ACTIONS(3211), + [aux_sym__val_number_decimal_token4] = ACTIONS(3213), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3208), - [aux_sym__val_number_token5] = ACTIONS(3208), - [aux_sym__val_number_token6] = ACTIONS(3208), + [aux_sym__val_number_token4] = ACTIONS(3215), + [aux_sym__val_number_token5] = ACTIONS(3215), + [aux_sym__val_number_token6] = ACTIONS(3215), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3210), + [sym_val_date] = ACTIONS(3217), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), @@ -182783,7 +182783,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3212), + [aux_sym_unquoted_token1] = ACTIONS(3219), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, @@ -182821,33 +182821,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__unquoted_anonymous_prefix] = STATE(7204), [sym_comment] = STATE(1006), [aux_sym_shebang_repeat1] = STATE(1019), - [sym__newline] = ACTIONS(3190), + [sym__newline] = ACTIONS(3197), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3192), + [anon_sym_DOT_DOT] = ACTIONS(3199), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3194), - [anon_sym_DOT_DOT_LT] = ACTIONS(3194), - [anon_sym_null] = ACTIONS(3196), - [anon_sym_true] = ACTIONS(3198), - [anon_sym_false] = ACTIONS(3198), - [aux_sym__val_number_decimal_token1] = ACTIONS(3200), - [aux_sym__val_number_decimal_token2] = ACTIONS(3202), - [aux_sym__val_number_decimal_token3] = ACTIONS(3204), - [aux_sym__val_number_decimal_token4] = ACTIONS(3206), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3201), + [anon_sym_DOT_DOT_LT] = ACTIONS(3201), + [anon_sym_null] = ACTIONS(3203), + [anon_sym_true] = ACTIONS(3205), + [anon_sym_false] = ACTIONS(3205), + [aux_sym__val_number_decimal_token1] = ACTIONS(3207), + [aux_sym__val_number_decimal_token2] = ACTIONS(3209), + [aux_sym__val_number_decimal_token3] = ACTIONS(3211), + [aux_sym__val_number_decimal_token4] = ACTIONS(3213), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3208), - [aux_sym__val_number_token5] = ACTIONS(3208), - [aux_sym__val_number_token6] = ACTIONS(3208), + [aux_sym__val_number_token4] = ACTIONS(3215), + [aux_sym__val_number_token5] = ACTIONS(3215), + [aux_sym__val_number_token6] = ACTIONS(3215), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3210), + [sym_val_date] = ACTIONS(3217), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), @@ -182869,7 +182869,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3212), + [aux_sym_unquoted_token1] = ACTIONS(3219), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, @@ -182907,33 +182907,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__unquoted_anonymous_prefix] = STATE(7204), [sym_comment] = STATE(1007), [aux_sym_shebang_repeat1] = STATE(1020), - [sym__newline] = ACTIONS(3190), + [sym__newline] = ACTIONS(3197), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3192), + [anon_sym_DOT_DOT] = ACTIONS(3199), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3194), - [anon_sym_DOT_DOT_LT] = ACTIONS(3194), - [anon_sym_null] = ACTIONS(3196), - [anon_sym_true] = ACTIONS(3198), - [anon_sym_false] = ACTIONS(3198), - [aux_sym__val_number_decimal_token1] = ACTIONS(3200), - [aux_sym__val_number_decimal_token2] = ACTIONS(3202), - [aux_sym__val_number_decimal_token3] = ACTIONS(3204), - [aux_sym__val_number_decimal_token4] = ACTIONS(3206), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3201), + [anon_sym_DOT_DOT_LT] = ACTIONS(3201), + [anon_sym_null] = ACTIONS(3203), + [anon_sym_true] = ACTIONS(3205), + [anon_sym_false] = ACTIONS(3205), + [aux_sym__val_number_decimal_token1] = ACTIONS(3207), + [aux_sym__val_number_decimal_token2] = ACTIONS(3209), + [aux_sym__val_number_decimal_token3] = ACTIONS(3211), + [aux_sym__val_number_decimal_token4] = ACTIONS(3213), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3208), - [aux_sym__val_number_token5] = ACTIONS(3208), - [aux_sym__val_number_token6] = ACTIONS(3208), + [aux_sym__val_number_token4] = ACTIONS(3215), + [aux_sym__val_number_token5] = ACTIONS(3215), + [aux_sym__val_number_token6] = ACTIONS(3215), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3210), + [sym_val_date] = ACTIONS(3217), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), @@ -182955,7 +182955,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3212), + [aux_sym_unquoted_token1] = ACTIONS(3219), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, @@ -182993,33 +182993,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__unquoted_anonymous_prefix] = STATE(7204), [sym_comment] = STATE(1008), [aux_sym_shebang_repeat1] = STATE(1021), - [sym__newline] = ACTIONS(3190), + [sym__newline] = ACTIONS(3197), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3192), + [anon_sym_DOT_DOT] = ACTIONS(3199), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3194), - [anon_sym_DOT_DOT_LT] = ACTIONS(3194), - [anon_sym_null] = ACTIONS(3196), - [anon_sym_true] = ACTIONS(3198), - [anon_sym_false] = ACTIONS(3198), - [aux_sym__val_number_decimal_token1] = ACTIONS(3200), - [aux_sym__val_number_decimal_token2] = ACTIONS(3202), - [aux_sym__val_number_decimal_token3] = ACTIONS(3204), - [aux_sym__val_number_decimal_token4] = ACTIONS(3206), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3201), + [anon_sym_DOT_DOT_LT] = ACTIONS(3201), + [anon_sym_null] = ACTIONS(3203), + [anon_sym_true] = ACTIONS(3205), + [anon_sym_false] = ACTIONS(3205), + [aux_sym__val_number_decimal_token1] = ACTIONS(3207), + [aux_sym__val_number_decimal_token2] = ACTIONS(3209), + [aux_sym__val_number_decimal_token3] = ACTIONS(3211), + [aux_sym__val_number_decimal_token4] = ACTIONS(3213), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3208), - [aux_sym__val_number_token5] = ACTIONS(3208), - [aux_sym__val_number_token6] = ACTIONS(3208), + [aux_sym__val_number_token4] = ACTIONS(3215), + [aux_sym__val_number_token5] = ACTIONS(3215), + [aux_sym__val_number_token6] = ACTIONS(3215), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3210), + [sym_val_date] = ACTIONS(3217), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), @@ -183041,7 +183041,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3212), + [aux_sym_unquoted_token1] = ACTIONS(3219), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, @@ -183079,33 +183079,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__unquoted_anonymous_prefix] = STATE(7204), [sym_comment] = STATE(1009), [aux_sym_shebang_repeat1] = STATE(1022), - [sym__newline] = ACTIONS(3190), + [sym__newline] = ACTIONS(3197), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3192), + [anon_sym_DOT_DOT] = ACTIONS(3199), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3194), - [anon_sym_DOT_DOT_LT] = ACTIONS(3194), - [anon_sym_null] = ACTIONS(3196), - [anon_sym_true] = ACTIONS(3198), - [anon_sym_false] = ACTIONS(3198), - [aux_sym__val_number_decimal_token1] = ACTIONS(3200), - [aux_sym__val_number_decimal_token2] = ACTIONS(3202), - [aux_sym__val_number_decimal_token3] = ACTIONS(3204), - [aux_sym__val_number_decimal_token4] = ACTIONS(3206), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3201), + [anon_sym_DOT_DOT_LT] = ACTIONS(3201), + [anon_sym_null] = ACTIONS(3203), + [anon_sym_true] = ACTIONS(3205), + [anon_sym_false] = ACTIONS(3205), + [aux_sym__val_number_decimal_token1] = ACTIONS(3207), + [aux_sym__val_number_decimal_token2] = ACTIONS(3209), + [aux_sym__val_number_decimal_token3] = ACTIONS(3211), + [aux_sym__val_number_decimal_token4] = ACTIONS(3213), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3208), - [aux_sym__val_number_token5] = ACTIONS(3208), - [aux_sym__val_number_token6] = ACTIONS(3208), + [aux_sym__val_number_token4] = ACTIONS(3215), + [aux_sym__val_number_token5] = ACTIONS(3215), + [aux_sym__val_number_token6] = ACTIONS(3215), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3210), + [sym_val_date] = ACTIONS(3217), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), @@ -183127,7 +183127,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3212), + [aux_sym_unquoted_token1] = ACTIONS(3219), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, @@ -183165,33 +183165,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__unquoted_anonymous_prefix] = STATE(7204), [sym_comment] = STATE(1010), [aux_sym_shebang_repeat1] = STATE(1023), - [sym__newline] = ACTIONS(3190), + [sym__newline] = ACTIONS(3197), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3192), + [anon_sym_DOT_DOT] = ACTIONS(3199), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3194), - [anon_sym_DOT_DOT_LT] = ACTIONS(3194), - [anon_sym_null] = ACTIONS(3196), - [anon_sym_true] = ACTIONS(3198), - [anon_sym_false] = ACTIONS(3198), - [aux_sym__val_number_decimal_token1] = ACTIONS(3200), - [aux_sym__val_number_decimal_token2] = ACTIONS(3202), - [aux_sym__val_number_decimal_token3] = ACTIONS(3204), - [aux_sym__val_number_decimal_token4] = ACTIONS(3206), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3201), + [anon_sym_DOT_DOT_LT] = ACTIONS(3201), + [anon_sym_null] = ACTIONS(3203), + [anon_sym_true] = ACTIONS(3205), + [anon_sym_false] = ACTIONS(3205), + [aux_sym__val_number_decimal_token1] = ACTIONS(3207), + [aux_sym__val_number_decimal_token2] = ACTIONS(3209), + [aux_sym__val_number_decimal_token3] = ACTIONS(3211), + [aux_sym__val_number_decimal_token4] = ACTIONS(3213), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3208), - [aux_sym__val_number_token5] = ACTIONS(3208), - [aux_sym__val_number_token6] = ACTIONS(3208), + [aux_sym__val_number_token4] = ACTIONS(3215), + [aux_sym__val_number_token5] = ACTIONS(3215), + [aux_sym__val_number_token6] = ACTIONS(3215), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3210), + [sym_val_date] = ACTIONS(3217), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), @@ -183213,7 +183213,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3212), + [aux_sym_unquoted_token1] = ACTIONS(3219), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, @@ -183251,33 +183251,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__unquoted_anonymous_prefix] = STATE(7204), [sym_comment] = STATE(1011), [aux_sym_shebang_repeat1] = STATE(1024), - [sym__newline] = ACTIONS(3190), + [sym__newline] = ACTIONS(3197), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3192), + [anon_sym_DOT_DOT] = ACTIONS(3199), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3194), - [anon_sym_DOT_DOT_LT] = ACTIONS(3194), - [anon_sym_null] = ACTIONS(3196), - [anon_sym_true] = ACTIONS(3198), - [anon_sym_false] = ACTIONS(3198), - [aux_sym__val_number_decimal_token1] = ACTIONS(3200), - [aux_sym__val_number_decimal_token2] = ACTIONS(3202), - [aux_sym__val_number_decimal_token3] = ACTIONS(3204), - [aux_sym__val_number_decimal_token4] = ACTIONS(3206), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3201), + [anon_sym_DOT_DOT_LT] = ACTIONS(3201), + [anon_sym_null] = ACTIONS(3203), + [anon_sym_true] = ACTIONS(3205), + [anon_sym_false] = ACTIONS(3205), + [aux_sym__val_number_decimal_token1] = ACTIONS(3207), + [aux_sym__val_number_decimal_token2] = ACTIONS(3209), + [aux_sym__val_number_decimal_token3] = ACTIONS(3211), + [aux_sym__val_number_decimal_token4] = ACTIONS(3213), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3208), - [aux_sym__val_number_token5] = ACTIONS(3208), - [aux_sym__val_number_token6] = ACTIONS(3208), + [aux_sym__val_number_token4] = ACTIONS(3215), + [aux_sym__val_number_token5] = ACTIONS(3215), + [aux_sym__val_number_token6] = ACTIONS(3215), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3210), + [sym_val_date] = ACTIONS(3217), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), @@ -183299,7 +183299,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3212), + [aux_sym_unquoted_token1] = ACTIONS(3219), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, @@ -183337,33 +183337,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__unquoted_anonymous_prefix] = STATE(7204), [sym_comment] = STATE(1012), [aux_sym_shebang_repeat1] = STATE(1025), - [sym__newline] = ACTIONS(3190), + [sym__newline] = ACTIONS(3197), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3192), + [anon_sym_DOT_DOT] = ACTIONS(3199), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3194), - [anon_sym_DOT_DOT_LT] = ACTIONS(3194), - [anon_sym_null] = ACTIONS(3196), - [anon_sym_true] = ACTIONS(3198), - [anon_sym_false] = ACTIONS(3198), - [aux_sym__val_number_decimal_token1] = ACTIONS(3200), - [aux_sym__val_number_decimal_token2] = ACTIONS(3202), - [aux_sym__val_number_decimal_token3] = ACTIONS(3204), - [aux_sym__val_number_decimal_token4] = ACTIONS(3206), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3201), + [anon_sym_DOT_DOT_LT] = ACTIONS(3201), + [anon_sym_null] = ACTIONS(3203), + [anon_sym_true] = ACTIONS(3205), + [anon_sym_false] = ACTIONS(3205), + [aux_sym__val_number_decimal_token1] = ACTIONS(3207), + [aux_sym__val_number_decimal_token2] = ACTIONS(3209), + [aux_sym__val_number_decimal_token3] = ACTIONS(3211), + [aux_sym__val_number_decimal_token4] = ACTIONS(3213), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3208), - [aux_sym__val_number_token5] = ACTIONS(3208), - [aux_sym__val_number_token6] = ACTIONS(3208), + [aux_sym__val_number_token4] = ACTIONS(3215), + [aux_sym__val_number_token5] = ACTIONS(3215), + [aux_sym__val_number_token6] = ACTIONS(3215), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3210), + [sym_val_date] = ACTIONS(3217), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), @@ -183385,7 +183385,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3212), + [aux_sym_unquoted_token1] = ACTIONS(3219), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, @@ -183423,33 +183423,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__unquoted_anonymous_prefix] = STATE(7204), [sym_comment] = STATE(1013), [aux_sym_shebang_repeat1] = STATE(1026), - [sym__newline] = ACTIONS(3190), + [sym__newline] = ACTIONS(3197), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3192), + [anon_sym_DOT_DOT] = ACTIONS(3199), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3194), - [anon_sym_DOT_DOT_LT] = ACTIONS(3194), - [anon_sym_null] = ACTIONS(3196), - [anon_sym_true] = ACTIONS(3198), - [anon_sym_false] = ACTIONS(3198), - [aux_sym__val_number_decimal_token1] = ACTIONS(3200), - [aux_sym__val_number_decimal_token2] = ACTIONS(3202), - [aux_sym__val_number_decimal_token3] = ACTIONS(3204), - [aux_sym__val_number_decimal_token4] = ACTIONS(3206), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3201), + [anon_sym_DOT_DOT_LT] = ACTIONS(3201), + [anon_sym_null] = ACTIONS(3203), + [anon_sym_true] = ACTIONS(3205), + [anon_sym_false] = ACTIONS(3205), + [aux_sym__val_number_decimal_token1] = ACTIONS(3207), + [aux_sym__val_number_decimal_token2] = ACTIONS(3209), + [aux_sym__val_number_decimal_token3] = ACTIONS(3211), + [aux_sym__val_number_decimal_token4] = ACTIONS(3213), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3208), - [aux_sym__val_number_token5] = ACTIONS(3208), - [aux_sym__val_number_token6] = ACTIONS(3208), + [aux_sym__val_number_token4] = ACTIONS(3215), + [aux_sym__val_number_token5] = ACTIONS(3215), + [aux_sym__val_number_token6] = ACTIONS(3215), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3210), + [sym_val_date] = ACTIONS(3217), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), @@ -183471,7 +183471,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3212), + [aux_sym_unquoted_token1] = ACTIONS(3219), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, @@ -183509,33 +183509,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__unquoted_anonymous_prefix] = STATE(7204), [sym_comment] = STATE(1014), [aux_sym_shebang_repeat1] = STATE(1027), - [sym__newline] = ACTIONS(3190), + [sym__newline] = ACTIONS(3197), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3192), + [anon_sym_DOT_DOT] = ACTIONS(3199), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3194), - [anon_sym_DOT_DOT_LT] = ACTIONS(3194), - [anon_sym_null] = ACTIONS(3196), - [anon_sym_true] = ACTIONS(3198), - [anon_sym_false] = ACTIONS(3198), - [aux_sym__val_number_decimal_token1] = ACTIONS(3200), - [aux_sym__val_number_decimal_token2] = ACTIONS(3202), - [aux_sym__val_number_decimal_token3] = ACTIONS(3204), - [aux_sym__val_number_decimal_token4] = ACTIONS(3206), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3201), + [anon_sym_DOT_DOT_LT] = ACTIONS(3201), + [anon_sym_null] = ACTIONS(3203), + [anon_sym_true] = ACTIONS(3205), + [anon_sym_false] = ACTIONS(3205), + [aux_sym__val_number_decimal_token1] = ACTIONS(3207), + [aux_sym__val_number_decimal_token2] = ACTIONS(3209), + [aux_sym__val_number_decimal_token3] = ACTIONS(3211), + [aux_sym__val_number_decimal_token4] = ACTIONS(3213), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3208), - [aux_sym__val_number_token5] = ACTIONS(3208), - [aux_sym__val_number_token6] = ACTIONS(3208), + [aux_sym__val_number_token4] = ACTIONS(3215), + [aux_sym__val_number_token5] = ACTIONS(3215), + [aux_sym__val_number_token6] = ACTIONS(3215), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3210), + [sym_val_date] = ACTIONS(3217), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), @@ -183557,7 +183557,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3212), + [aux_sym_unquoted_token1] = ACTIONS(3219), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, @@ -183595,33 +183595,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__unquoted_anonymous_prefix] = STATE(7204), [sym_comment] = STATE(1015), [aux_sym_shebang_repeat1] = STATE(1028), - [sym__newline] = ACTIONS(3190), + [sym__newline] = ACTIONS(3197), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3192), + [anon_sym_DOT_DOT] = ACTIONS(3199), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3194), - [anon_sym_DOT_DOT_LT] = ACTIONS(3194), - [anon_sym_null] = ACTIONS(3196), - [anon_sym_true] = ACTIONS(3198), - [anon_sym_false] = ACTIONS(3198), - [aux_sym__val_number_decimal_token1] = ACTIONS(3200), - [aux_sym__val_number_decimal_token2] = ACTIONS(3202), - [aux_sym__val_number_decimal_token3] = ACTIONS(3204), - [aux_sym__val_number_decimal_token4] = ACTIONS(3206), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3201), + [anon_sym_DOT_DOT_LT] = ACTIONS(3201), + [anon_sym_null] = ACTIONS(3203), + [anon_sym_true] = ACTIONS(3205), + [anon_sym_false] = ACTIONS(3205), + [aux_sym__val_number_decimal_token1] = ACTIONS(3207), + [aux_sym__val_number_decimal_token2] = ACTIONS(3209), + [aux_sym__val_number_decimal_token3] = ACTIONS(3211), + [aux_sym__val_number_decimal_token4] = ACTIONS(3213), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3208), - [aux_sym__val_number_token5] = ACTIONS(3208), - [aux_sym__val_number_token6] = ACTIONS(3208), + [aux_sym__val_number_token4] = ACTIONS(3215), + [aux_sym__val_number_token5] = ACTIONS(3215), + [aux_sym__val_number_token6] = ACTIONS(3215), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3210), + [sym_val_date] = ACTIONS(3217), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), @@ -183643,7 +183643,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3212), + [aux_sym_unquoted_token1] = ACTIONS(3219), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, @@ -183681,33 +183681,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__unquoted_anonymous_prefix] = STATE(7204), [sym_comment] = STATE(1016), [aux_sym_shebang_repeat1] = STATE(1029), - [sym__newline] = ACTIONS(3190), + [sym__newline] = ACTIONS(3197), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3192), + [anon_sym_DOT_DOT] = ACTIONS(3199), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3194), - [anon_sym_DOT_DOT_LT] = ACTIONS(3194), - [anon_sym_null] = ACTIONS(3196), - [anon_sym_true] = ACTIONS(3198), - [anon_sym_false] = ACTIONS(3198), - [aux_sym__val_number_decimal_token1] = ACTIONS(3200), - [aux_sym__val_number_decimal_token2] = ACTIONS(3202), - [aux_sym__val_number_decimal_token3] = ACTIONS(3204), - [aux_sym__val_number_decimal_token4] = ACTIONS(3206), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3201), + [anon_sym_DOT_DOT_LT] = ACTIONS(3201), + [anon_sym_null] = ACTIONS(3203), + [anon_sym_true] = ACTIONS(3205), + [anon_sym_false] = ACTIONS(3205), + [aux_sym__val_number_decimal_token1] = ACTIONS(3207), + [aux_sym__val_number_decimal_token2] = ACTIONS(3209), + [aux_sym__val_number_decimal_token3] = ACTIONS(3211), + [aux_sym__val_number_decimal_token4] = ACTIONS(3213), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3208), - [aux_sym__val_number_token5] = ACTIONS(3208), - [aux_sym__val_number_token6] = ACTIONS(3208), + [aux_sym__val_number_token4] = ACTIONS(3215), + [aux_sym__val_number_token5] = ACTIONS(3215), + [aux_sym__val_number_token6] = ACTIONS(3215), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3210), + [sym_val_date] = ACTIONS(3217), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), @@ -183729,7 +183729,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3212), + [aux_sym_unquoted_token1] = ACTIONS(3219), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, @@ -183767,33 +183767,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__unquoted_anonymous_prefix] = STATE(7204), [sym_comment] = STATE(1017), [aux_sym_shebang_repeat1] = STATE(1030), - [sym__newline] = ACTIONS(3190), + [sym__newline] = ACTIONS(3197), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3192), + [anon_sym_DOT_DOT] = ACTIONS(3199), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3194), - [anon_sym_DOT_DOT_LT] = ACTIONS(3194), - [anon_sym_null] = ACTIONS(3196), - [anon_sym_true] = ACTIONS(3198), - [anon_sym_false] = ACTIONS(3198), - [aux_sym__val_number_decimal_token1] = ACTIONS(3200), - [aux_sym__val_number_decimal_token2] = ACTIONS(3202), - [aux_sym__val_number_decimal_token3] = ACTIONS(3204), - [aux_sym__val_number_decimal_token4] = ACTIONS(3206), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3201), + [anon_sym_DOT_DOT_LT] = ACTIONS(3201), + [anon_sym_null] = ACTIONS(3203), + [anon_sym_true] = ACTIONS(3205), + [anon_sym_false] = ACTIONS(3205), + [aux_sym__val_number_decimal_token1] = ACTIONS(3207), + [aux_sym__val_number_decimal_token2] = ACTIONS(3209), + [aux_sym__val_number_decimal_token3] = ACTIONS(3211), + [aux_sym__val_number_decimal_token4] = ACTIONS(3213), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3208), - [aux_sym__val_number_token5] = ACTIONS(3208), - [aux_sym__val_number_token6] = ACTIONS(3208), + [aux_sym__val_number_token4] = ACTIONS(3215), + [aux_sym__val_number_token5] = ACTIONS(3215), + [aux_sym__val_number_token6] = ACTIONS(3215), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3210), + [sym_val_date] = ACTIONS(3217), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), @@ -183815,7 +183815,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3212), + [aux_sym_unquoted_token1] = ACTIONS(3219), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, @@ -183853,33 +183853,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__unquoted_anonymous_prefix] = STATE(7204), [sym_comment] = STATE(1018), [aux_sym_shebang_repeat1] = STATE(1031), - [sym__newline] = ACTIONS(3190), + [sym__newline] = ACTIONS(3197), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3192), + [anon_sym_DOT_DOT] = ACTIONS(3199), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3194), - [anon_sym_DOT_DOT_LT] = ACTIONS(3194), - [anon_sym_null] = ACTIONS(3196), - [anon_sym_true] = ACTIONS(3198), - [anon_sym_false] = ACTIONS(3198), - [aux_sym__val_number_decimal_token1] = ACTIONS(3200), - [aux_sym__val_number_decimal_token2] = ACTIONS(3202), - [aux_sym__val_number_decimal_token3] = ACTIONS(3204), - [aux_sym__val_number_decimal_token4] = ACTIONS(3206), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3201), + [anon_sym_DOT_DOT_LT] = ACTIONS(3201), + [anon_sym_null] = ACTIONS(3203), + [anon_sym_true] = ACTIONS(3205), + [anon_sym_false] = ACTIONS(3205), + [aux_sym__val_number_decimal_token1] = ACTIONS(3207), + [aux_sym__val_number_decimal_token2] = ACTIONS(3209), + [aux_sym__val_number_decimal_token3] = ACTIONS(3211), + [aux_sym__val_number_decimal_token4] = ACTIONS(3213), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3208), - [aux_sym__val_number_token5] = ACTIONS(3208), - [aux_sym__val_number_token6] = ACTIONS(3208), + [aux_sym__val_number_token4] = ACTIONS(3215), + [aux_sym__val_number_token5] = ACTIONS(3215), + [aux_sym__val_number_token6] = ACTIONS(3215), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3210), + [sym_val_date] = ACTIONS(3217), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), @@ -183901,7 +183901,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3212), + [aux_sym_unquoted_token1] = ACTIONS(3219), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, @@ -183939,33 +183939,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__unquoted_anonymous_prefix] = STATE(7204), [sym_comment] = STATE(1019), [aux_sym_shebang_repeat1] = STATE(2817), - [sym__newline] = ACTIONS(3190), + [sym__newline] = ACTIONS(3197), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3192), + [anon_sym_DOT_DOT] = ACTIONS(3199), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3194), - [anon_sym_DOT_DOT_LT] = ACTIONS(3194), - [anon_sym_null] = ACTIONS(3196), - [anon_sym_true] = ACTIONS(3198), - [anon_sym_false] = ACTIONS(3198), - [aux_sym__val_number_decimal_token1] = ACTIONS(3200), - [aux_sym__val_number_decimal_token2] = ACTIONS(3202), - [aux_sym__val_number_decimal_token3] = ACTIONS(3204), - [aux_sym__val_number_decimal_token4] = ACTIONS(3206), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3201), + [anon_sym_DOT_DOT_LT] = ACTIONS(3201), + [anon_sym_null] = ACTIONS(3203), + [anon_sym_true] = ACTIONS(3205), + [anon_sym_false] = ACTIONS(3205), + [aux_sym__val_number_decimal_token1] = ACTIONS(3207), + [aux_sym__val_number_decimal_token2] = ACTIONS(3209), + [aux_sym__val_number_decimal_token3] = ACTIONS(3211), + [aux_sym__val_number_decimal_token4] = ACTIONS(3213), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3208), - [aux_sym__val_number_token5] = ACTIONS(3208), - [aux_sym__val_number_token6] = ACTIONS(3208), + [aux_sym__val_number_token4] = ACTIONS(3215), + [aux_sym__val_number_token5] = ACTIONS(3215), + [aux_sym__val_number_token6] = ACTIONS(3215), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3210), + [sym_val_date] = ACTIONS(3217), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), @@ -183987,7 +183987,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3212), + [aux_sym_unquoted_token1] = ACTIONS(3219), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, @@ -184025,33 +184025,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__unquoted_anonymous_prefix] = STATE(7204), [sym_comment] = STATE(1020), [aux_sym_shebang_repeat1] = STATE(2817), - [sym__newline] = ACTIONS(3190), + [sym__newline] = ACTIONS(3197), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3192), + [anon_sym_DOT_DOT] = ACTIONS(3199), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3194), - [anon_sym_DOT_DOT_LT] = ACTIONS(3194), - [anon_sym_null] = ACTIONS(3196), - [anon_sym_true] = ACTIONS(3198), - [anon_sym_false] = ACTIONS(3198), - [aux_sym__val_number_decimal_token1] = ACTIONS(3200), - [aux_sym__val_number_decimal_token2] = ACTIONS(3202), - [aux_sym__val_number_decimal_token3] = ACTIONS(3204), - [aux_sym__val_number_decimal_token4] = ACTIONS(3206), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3201), + [anon_sym_DOT_DOT_LT] = ACTIONS(3201), + [anon_sym_null] = ACTIONS(3203), + [anon_sym_true] = ACTIONS(3205), + [anon_sym_false] = ACTIONS(3205), + [aux_sym__val_number_decimal_token1] = ACTIONS(3207), + [aux_sym__val_number_decimal_token2] = ACTIONS(3209), + [aux_sym__val_number_decimal_token3] = ACTIONS(3211), + [aux_sym__val_number_decimal_token4] = ACTIONS(3213), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3208), - [aux_sym__val_number_token5] = ACTIONS(3208), - [aux_sym__val_number_token6] = ACTIONS(3208), + [aux_sym__val_number_token4] = ACTIONS(3215), + [aux_sym__val_number_token5] = ACTIONS(3215), + [aux_sym__val_number_token6] = ACTIONS(3215), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3210), + [sym_val_date] = ACTIONS(3217), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), @@ -184073,7 +184073,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3212), + [aux_sym_unquoted_token1] = ACTIONS(3219), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, @@ -184111,33 +184111,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__unquoted_anonymous_prefix] = STATE(7204), [sym_comment] = STATE(1021), [aux_sym_shebang_repeat1] = STATE(2817), - [sym__newline] = ACTIONS(3190), + [sym__newline] = ACTIONS(3197), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3192), + [anon_sym_DOT_DOT] = ACTIONS(3199), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3194), - [anon_sym_DOT_DOT_LT] = ACTIONS(3194), - [anon_sym_null] = ACTIONS(3196), - [anon_sym_true] = ACTIONS(3198), - [anon_sym_false] = ACTIONS(3198), - [aux_sym__val_number_decimal_token1] = ACTIONS(3200), - [aux_sym__val_number_decimal_token2] = ACTIONS(3202), - [aux_sym__val_number_decimal_token3] = ACTIONS(3204), - [aux_sym__val_number_decimal_token4] = ACTIONS(3206), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3201), + [anon_sym_DOT_DOT_LT] = ACTIONS(3201), + [anon_sym_null] = ACTIONS(3203), + [anon_sym_true] = ACTIONS(3205), + [anon_sym_false] = ACTIONS(3205), + [aux_sym__val_number_decimal_token1] = ACTIONS(3207), + [aux_sym__val_number_decimal_token2] = ACTIONS(3209), + [aux_sym__val_number_decimal_token3] = ACTIONS(3211), + [aux_sym__val_number_decimal_token4] = ACTIONS(3213), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3208), - [aux_sym__val_number_token5] = ACTIONS(3208), - [aux_sym__val_number_token6] = ACTIONS(3208), + [aux_sym__val_number_token4] = ACTIONS(3215), + [aux_sym__val_number_token5] = ACTIONS(3215), + [aux_sym__val_number_token6] = ACTIONS(3215), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3210), + [sym_val_date] = ACTIONS(3217), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), @@ -184159,7 +184159,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3212), + [aux_sym_unquoted_token1] = ACTIONS(3219), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, @@ -184197,33 +184197,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__unquoted_anonymous_prefix] = STATE(7204), [sym_comment] = STATE(1022), [aux_sym_shebang_repeat1] = STATE(2817), - [sym__newline] = ACTIONS(3190), + [sym__newline] = ACTIONS(3197), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3192), + [anon_sym_DOT_DOT] = ACTIONS(3199), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3194), - [anon_sym_DOT_DOT_LT] = ACTIONS(3194), - [anon_sym_null] = ACTIONS(3196), - [anon_sym_true] = ACTIONS(3198), - [anon_sym_false] = ACTIONS(3198), - [aux_sym__val_number_decimal_token1] = ACTIONS(3200), - [aux_sym__val_number_decimal_token2] = ACTIONS(3202), - [aux_sym__val_number_decimal_token3] = ACTIONS(3204), - [aux_sym__val_number_decimal_token4] = ACTIONS(3206), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3201), + [anon_sym_DOT_DOT_LT] = ACTIONS(3201), + [anon_sym_null] = ACTIONS(3203), + [anon_sym_true] = ACTIONS(3205), + [anon_sym_false] = ACTIONS(3205), + [aux_sym__val_number_decimal_token1] = ACTIONS(3207), + [aux_sym__val_number_decimal_token2] = ACTIONS(3209), + [aux_sym__val_number_decimal_token3] = ACTIONS(3211), + [aux_sym__val_number_decimal_token4] = ACTIONS(3213), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3208), - [aux_sym__val_number_token5] = ACTIONS(3208), - [aux_sym__val_number_token6] = ACTIONS(3208), + [aux_sym__val_number_token4] = ACTIONS(3215), + [aux_sym__val_number_token5] = ACTIONS(3215), + [aux_sym__val_number_token6] = ACTIONS(3215), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3210), + [sym_val_date] = ACTIONS(3217), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), @@ -184245,7 +184245,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3212), + [aux_sym_unquoted_token1] = ACTIONS(3219), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, @@ -184283,33 +184283,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__unquoted_anonymous_prefix] = STATE(7204), [sym_comment] = STATE(1023), [aux_sym_shebang_repeat1] = STATE(2817), - [sym__newline] = ACTIONS(3190), + [sym__newline] = ACTIONS(3197), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3192), + [anon_sym_DOT_DOT] = ACTIONS(3199), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3194), - [anon_sym_DOT_DOT_LT] = ACTIONS(3194), - [anon_sym_null] = ACTIONS(3196), - [anon_sym_true] = ACTIONS(3198), - [anon_sym_false] = ACTIONS(3198), - [aux_sym__val_number_decimal_token1] = ACTIONS(3200), - [aux_sym__val_number_decimal_token2] = ACTIONS(3202), - [aux_sym__val_number_decimal_token3] = ACTIONS(3204), - [aux_sym__val_number_decimal_token4] = ACTIONS(3206), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3201), + [anon_sym_DOT_DOT_LT] = ACTIONS(3201), + [anon_sym_null] = ACTIONS(3203), + [anon_sym_true] = ACTIONS(3205), + [anon_sym_false] = ACTIONS(3205), + [aux_sym__val_number_decimal_token1] = ACTIONS(3207), + [aux_sym__val_number_decimal_token2] = ACTIONS(3209), + [aux_sym__val_number_decimal_token3] = ACTIONS(3211), + [aux_sym__val_number_decimal_token4] = ACTIONS(3213), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3208), - [aux_sym__val_number_token5] = ACTIONS(3208), - [aux_sym__val_number_token6] = ACTIONS(3208), + [aux_sym__val_number_token4] = ACTIONS(3215), + [aux_sym__val_number_token5] = ACTIONS(3215), + [aux_sym__val_number_token6] = ACTIONS(3215), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3210), + [sym_val_date] = ACTIONS(3217), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), @@ -184331,7 +184331,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3212), + [aux_sym_unquoted_token1] = ACTIONS(3219), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, @@ -184369,33 +184369,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__unquoted_anonymous_prefix] = STATE(7204), [sym_comment] = STATE(1024), [aux_sym_shebang_repeat1] = STATE(2817), - [sym__newline] = ACTIONS(3190), + [sym__newline] = ACTIONS(3197), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3192), + [anon_sym_DOT_DOT] = ACTIONS(3199), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3194), - [anon_sym_DOT_DOT_LT] = ACTIONS(3194), - [anon_sym_null] = ACTIONS(3196), - [anon_sym_true] = ACTIONS(3198), - [anon_sym_false] = ACTIONS(3198), - [aux_sym__val_number_decimal_token1] = ACTIONS(3200), - [aux_sym__val_number_decimal_token2] = ACTIONS(3202), - [aux_sym__val_number_decimal_token3] = ACTIONS(3204), - [aux_sym__val_number_decimal_token4] = ACTIONS(3206), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3201), + [anon_sym_DOT_DOT_LT] = ACTIONS(3201), + [anon_sym_null] = ACTIONS(3203), + [anon_sym_true] = ACTIONS(3205), + [anon_sym_false] = ACTIONS(3205), + [aux_sym__val_number_decimal_token1] = ACTIONS(3207), + [aux_sym__val_number_decimal_token2] = ACTIONS(3209), + [aux_sym__val_number_decimal_token3] = ACTIONS(3211), + [aux_sym__val_number_decimal_token4] = ACTIONS(3213), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3208), - [aux_sym__val_number_token5] = ACTIONS(3208), - [aux_sym__val_number_token6] = ACTIONS(3208), + [aux_sym__val_number_token4] = ACTIONS(3215), + [aux_sym__val_number_token5] = ACTIONS(3215), + [aux_sym__val_number_token6] = ACTIONS(3215), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3210), + [sym_val_date] = ACTIONS(3217), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), @@ -184417,7 +184417,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3212), + [aux_sym_unquoted_token1] = ACTIONS(3219), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, @@ -184455,33 +184455,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__unquoted_anonymous_prefix] = STATE(7204), [sym_comment] = STATE(1025), [aux_sym_shebang_repeat1] = STATE(2817), - [sym__newline] = ACTIONS(3190), + [sym__newline] = ACTIONS(3197), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3192), + [anon_sym_DOT_DOT] = ACTIONS(3199), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3194), - [anon_sym_DOT_DOT_LT] = ACTIONS(3194), - [anon_sym_null] = ACTIONS(3196), - [anon_sym_true] = ACTIONS(3198), - [anon_sym_false] = ACTIONS(3198), - [aux_sym__val_number_decimal_token1] = ACTIONS(3200), - [aux_sym__val_number_decimal_token2] = ACTIONS(3202), - [aux_sym__val_number_decimal_token3] = ACTIONS(3204), - [aux_sym__val_number_decimal_token4] = ACTIONS(3206), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3201), + [anon_sym_DOT_DOT_LT] = ACTIONS(3201), + [anon_sym_null] = ACTIONS(3203), + [anon_sym_true] = ACTIONS(3205), + [anon_sym_false] = ACTIONS(3205), + [aux_sym__val_number_decimal_token1] = ACTIONS(3207), + [aux_sym__val_number_decimal_token2] = ACTIONS(3209), + [aux_sym__val_number_decimal_token3] = ACTIONS(3211), + [aux_sym__val_number_decimal_token4] = ACTIONS(3213), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3208), - [aux_sym__val_number_token5] = ACTIONS(3208), - [aux_sym__val_number_token6] = ACTIONS(3208), + [aux_sym__val_number_token4] = ACTIONS(3215), + [aux_sym__val_number_token5] = ACTIONS(3215), + [aux_sym__val_number_token6] = ACTIONS(3215), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3210), + [sym_val_date] = ACTIONS(3217), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), @@ -184503,7 +184503,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3212), + [aux_sym_unquoted_token1] = ACTIONS(3219), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, @@ -184541,33 +184541,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__unquoted_anonymous_prefix] = STATE(7204), [sym_comment] = STATE(1026), [aux_sym_shebang_repeat1] = STATE(2817), - [sym__newline] = ACTIONS(3190), + [sym__newline] = ACTIONS(3197), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3192), + [anon_sym_DOT_DOT] = ACTIONS(3199), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3194), - [anon_sym_DOT_DOT_LT] = ACTIONS(3194), - [anon_sym_null] = ACTIONS(3196), - [anon_sym_true] = ACTIONS(3198), - [anon_sym_false] = ACTIONS(3198), - [aux_sym__val_number_decimal_token1] = ACTIONS(3200), - [aux_sym__val_number_decimal_token2] = ACTIONS(3202), - [aux_sym__val_number_decimal_token3] = ACTIONS(3204), - [aux_sym__val_number_decimal_token4] = ACTIONS(3206), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3201), + [anon_sym_DOT_DOT_LT] = ACTIONS(3201), + [anon_sym_null] = ACTIONS(3203), + [anon_sym_true] = ACTIONS(3205), + [anon_sym_false] = ACTIONS(3205), + [aux_sym__val_number_decimal_token1] = ACTIONS(3207), + [aux_sym__val_number_decimal_token2] = ACTIONS(3209), + [aux_sym__val_number_decimal_token3] = ACTIONS(3211), + [aux_sym__val_number_decimal_token4] = ACTIONS(3213), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3208), - [aux_sym__val_number_token5] = ACTIONS(3208), - [aux_sym__val_number_token6] = ACTIONS(3208), + [aux_sym__val_number_token4] = ACTIONS(3215), + [aux_sym__val_number_token5] = ACTIONS(3215), + [aux_sym__val_number_token6] = ACTIONS(3215), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3210), + [sym_val_date] = ACTIONS(3217), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), @@ -184589,7 +184589,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3212), + [aux_sym_unquoted_token1] = ACTIONS(3219), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, @@ -184627,33 +184627,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__unquoted_anonymous_prefix] = STATE(7204), [sym_comment] = STATE(1027), [aux_sym_shebang_repeat1] = STATE(2817), - [sym__newline] = ACTIONS(3190), + [sym__newline] = ACTIONS(3197), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3192), + [anon_sym_DOT_DOT] = ACTIONS(3199), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3194), - [anon_sym_DOT_DOT_LT] = ACTIONS(3194), - [anon_sym_null] = ACTIONS(3196), - [anon_sym_true] = ACTIONS(3198), - [anon_sym_false] = ACTIONS(3198), - [aux_sym__val_number_decimal_token1] = ACTIONS(3200), - [aux_sym__val_number_decimal_token2] = ACTIONS(3202), - [aux_sym__val_number_decimal_token3] = ACTIONS(3204), - [aux_sym__val_number_decimal_token4] = ACTIONS(3206), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3201), + [anon_sym_DOT_DOT_LT] = ACTIONS(3201), + [anon_sym_null] = ACTIONS(3203), + [anon_sym_true] = ACTIONS(3205), + [anon_sym_false] = ACTIONS(3205), + [aux_sym__val_number_decimal_token1] = ACTIONS(3207), + [aux_sym__val_number_decimal_token2] = ACTIONS(3209), + [aux_sym__val_number_decimal_token3] = ACTIONS(3211), + [aux_sym__val_number_decimal_token4] = ACTIONS(3213), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3208), - [aux_sym__val_number_token5] = ACTIONS(3208), - [aux_sym__val_number_token6] = ACTIONS(3208), + [aux_sym__val_number_token4] = ACTIONS(3215), + [aux_sym__val_number_token5] = ACTIONS(3215), + [aux_sym__val_number_token6] = ACTIONS(3215), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3210), + [sym_val_date] = ACTIONS(3217), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), @@ -184675,7 +184675,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3212), + [aux_sym_unquoted_token1] = ACTIONS(3219), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, @@ -184713,33 +184713,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__unquoted_anonymous_prefix] = STATE(7204), [sym_comment] = STATE(1028), [aux_sym_shebang_repeat1] = STATE(2817), - [sym__newline] = ACTIONS(3190), + [sym__newline] = ACTIONS(3197), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3192), + [anon_sym_DOT_DOT] = ACTIONS(3199), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3194), - [anon_sym_DOT_DOT_LT] = ACTIONS(3194), - [anon_sym_null] = ACTIONS(3196), - [anon_sym_true] = ACTIONS(3198), - [anon_sym_false] = ACTIONS(3198), - [aux_sym__val_number_decimal_token1] = ACTIONS(3200), - [aux_sym__val_number_decimal_token2] = ACTIONS(3202), - [aux_sym__val_number_decimal_token3] = ACTIONS(3204), - [aux_sym__val_number_decimal_token4] = ACTIONS(3206), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3201), + [anon_sym_DOT_DOT_LT] = ACTIONS(3201), + [anon_sym_null] = ACTIONS(3203), + [anon_sym_true] = ACTIONS(3205), + [anon_sym_false] = ACTIONS(3205), + [aux_sym__val_number_decimal_token1] = ACTIONS(3207), + [aux_sym__val_number_decimal_token2] = ACTIONS(3209), + [aux_sym__val_number_decimal_token3] = ACTIONS(3211), + [aux_sym__val_number_decimal_token4] = ACTIONS(3213), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3208), - [aux_sym__val_number_token5] = ACTIONS(3208), - [aux_sym__val_number_token6] = ACTIONS(3208), + [aux_sym__val_number_token4] = ACTIONS(3215), + [aux_sym__val_number_token5] = ACTIONS(3215), + [aux_sym__val_number_token6] = ACTIONS(3215), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3210), + [sym_val_date] = ACTIONS(3217), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), @@ -184761,7 +184761,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3212), + [aux_sym_unquoted_token1] = ACTIONS(3219), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, @@ -184799,33 +184799,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__unquoted_anonymous_prefix] = STATE(7204), [sym_comment] = STATE(1029), [aux_sym_shebang_repeat1] = STATE(2817), - [sym__newline] = ACTIONS(3190), + [sym__newline] = ACTIONS(3197), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3192), + [anon_sym_DOT_DOT] = ACTIONS(3199), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3194), - [anon_sym_DOT_DOT_LT] = ACTIONS(3194), - [anon_sym_null] = ACTIONS(3196), - [anon_sym_true] = ACTIONS(3198), - [anon_sym_false] = ACTIONS(3198), - [aux_sym__val_number_decimal_token1] = ACTIONS(3200), - [aux_sym__val_number_decimal_token2] = ACTIONS(3202), - [aux_sym__val_number_decimal_token3] = ACTIONS(3204), - [aux_sym__val_number_decimal_token4] = ACTIONS(3206), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3201), + [anon_sym_DOT_DOT_LT] = ACTIONS(3201), + [anon_sym_null] = ACTIONS(3203), + [anon_sym_true] = ACTIONS(3205), + [anon_sym_false] = ACTIONS(3205), + [aux_sym__val_number_decimal_token1] = ACTIONS(3207), + [aux_sym__val_number_decimal_token2] = ACTIONS(3209), + [aux_sym__val_number_decimal_token3] = ACTIONS(3211), + [aux_sym__val_number_decimal_token4] = ACTIONS(3213), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3208), - [aux_sym__val_number_token5] = ACTIONS(3208), - [aux_sym__val_number_token6] = ACTIONS(3208), + [aux_sym__val_number_token4] = ACTIONS(3215), + [aux_sym__val_number_token5] = ACTIONS(3215), + [aux_sym__val_number_token6] = ACTIONS(3215), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3210), + [sym_val_date] = ACTIONS(3217), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), @@ -184847,7 +184847,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3212), + [aux_sym_unquoted_token1] = ACTIONS(3219), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, @@ -184885,33 +184885,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__unquoted_anonymous_prefix] = STATE(7204), [sym_comment] = STATE(1030), [aux_sym_shebang_repeat1] = STATE(2817), - [sym__newline] = ACTIONS(3190), + [sym__newline] = ACTIONS(3197), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3192), + [anon_sym_DOT_DOT] = ACTIONS(3199), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3194), - [anon_sym_DOT_DOT_LT] = ACTIONS(3194), - [anon_sym_null] = ACTIONS(3196), - [anon_sym_true] = ACTIONS(3198), - [anon_sym_false] = ACTIONS(3198), - [aux_sym__val_number_decimal_token1] = ACTIONS(3200), - [aux_sym__val_number_decimal_token2] = ACTIONS(3202), - [aux_sym__val_number_decimal_token3] = ACTIONS(3204), - [aux_sym__val_number_decimal_token4] = ACTIONS(3206), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3201), + [anon_sym_DOT_DOT_LT] = ACTIONS(3201), + [anon_sym_null] = ACTIONS(3203), + [anon_sym_true] = ACTIONS(3205), + [anon_sym_false] = ACTIONS(3205), + [aux_sym__val_number_decimal_token1] = ACTIONS(3207), + [aux_sym__val_number_decimal_token2] = ACTIONS(3209), + [aux_sym__val_number_decimal_token3] = ACTIONS(3211), + [aux_sym__val_number_decimal_token4] = ACTIONS(3213), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3208), - [aux_sym__val_number_token5] = ACTIONS(3208), - [aux_sym__val_number_token6] = ACTIONS(3208), + [aux_sym__val_number_token4] = ACTIONS(3215), + [aux_sym__val_number_token5] = ACTIONS(3215), + [aux_sym__val_number_token6] = ACTIONS(3215), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3210), + [sym_val_date] = ACTIONS(3217), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), @@ -184933,7 +184933,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3212), + [aux_sym_unquoted_token1] = ACTIONS(3219), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, @@ -184971,33 +184971,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__unquoted_anonymous_prefix] = STATE(7204), [sym_comment] = STATE(1031), [aux_sym_shebang_repeat1] = STATE(2817), - [sym__newline] = ACTIONS(3190), + [sym__newline] = ACTIONS(3197), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3192), + [anon_sym_DOT_DOT] = ACTIONS(3199), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3194), - [anon_sym_DOT_DOT_LT] = ACTIONS(3194), - [anon_sym_null] = ACTIONS(3196), - [anon_sym_true] = ACTIONS(3198), - [anon_sym_false] = ACTIONS(3198), - [aux_sym__val_number_decimal_token1] = ACTIONS(3200), - [aux_sym__val_number_decimal_token2] = ACTIONS(3202), - [aux_sym__val_number_decimal_token3] = ACTIONS(3204), - [aux_sym__val_number_decimal_token4] = ACTIONS(3206), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3201), + [anon_sym_DOT_DOT_LT] = ACTIONS(3201), + [anon_sym_null] = ACTIONS(3203), + [anon_sym_true] = ACTIONS(3205), + [anon_sym_false] = ACTIONS(3205), + [aux_sym__val_number_decimal_token1] = ACTIONS(3207), + [aux_sym__val_number_decimal_token2] = ACTIONS(3209), + [aux_sym__val_number_decimal_token3] = ACTIONS(3211), + [aux_sym__val_number_decimal_token4] = ACTIONS(3213), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3208), - [aux_sym__val_number_token5] = ACTIONS(3208), - [aux_sym__val_number_token6] = ACTIONS(3208), + [aux_sym__val_number_token4] = ACTIONS(3215), + [aux_sym__val_number_token5] = ACTIONS(3215), + [aux_sym__val_number_token6] = ACTIONS(3215), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3210), + [sym_val_date] = ACTIONS(3217), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), @@ -185019,7 +185019,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3212), + [aux_sym_unquoted_token1] = ACTIONS(3219), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, @@ -185057,33 +185057,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__unquoted_anonymous_prefix] = STATE(7204), [sym_comment] = STATE(1032), [aux_sym_shebang_repeat1] = STATE(2817), - [sym__newline] = ACTIONS(3190), + [sym__newline] = ACTIONS(3197), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3214), + [anon_sym_DOT_DOT] = ACTIONS(3221), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3216), - [anon_sym_DOT_DOT_LT] = ACTIONS(3216), - [anon_sym_null] = ACTIONS(3218), - [anon_sym_true] = ACTIONS(3220), - [anon_sym_false] = ACTIONS(3220), - [aux_sym__val_number_decimal_token1] = ACTIONS(3222), - [aux_sym__val_number_decimal_token2] = ACTIONS(3224), - [aux_sym__val_number_decimal_token3] = ACTIONS(3226), - [aux_sym__val_number_decimal_token4] = ACTIONS(3228), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3223), + [anon_sym_DOT_DOT_LT] = ACTIONS(3223), + [anon_sym_null] = ACTIONS(3225), + [anon_sym_true] = ACTIONS(3227), + [anon_sym_false] = ACTIONS(3227), + [aux_sym__val_number_decimal_token1] = ACTIONS(3229), + [aux_sym__val_number_decimal_token2] = ACTIONS(3231), + [aux_sym__val_number_decimal_token3] = ACTIONS(3233), + [aux_sym__val_number_decimal_token4] = ACTIONS(3235), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3230), - [aux_sym__val_number_token5] = ACTIONS(3230), - [aux_sym__val_number_token6] = ACTIONS(3230), + [aux_sym__val_number_token4] = ACTIONS(3237), + [aux_sym__val_number_token5] = ACTIONS(3237), + [aux_sym__val_number_token6] = ACTIONS(3237), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3232), + [sym_val_date] = ACTIONS(3239), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), @@ -185105,7 +185105,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3212), + [aux_sym_unquoted_token1] = ACTIONS(3219), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, @@ -185143,33 +185143,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__unquoted_anonymous_prefix] = STATE(7204), [sym_comment] = STATE(1033), [aux_sym_shebang_repeat1] = STATE(966), - [sym__newline] = ACTIONS(3190), + [sym__newline] = ACTIONS(3197), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3214), + [anon_sym_DOT_DOT] = ACTIONS(3221), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3216), - [anon_sym_DOT_DOT_LT] = ACTIONS(3216), - [anon_sym_null] = ACTIONS(3218), - [anon_sym_true] = ACTIONS(3220), - [anon_sym_false] = ACTIONS(3220), - [aux_sym__val_number_decimal_token1] = ACTIONS(3222), - [aux_sym__val_number_decimal_token2] = ACTIONS(3224), - [aux_sym__val_number_decimal_token3] = ACTIONS(3226), - [aux_sym__val_number_decimal_token4] = ACTIONS(3228), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3223), + [anon_sym_DOT_DOT_LT] = ACTIONS(3223), + [anon_sym_null] = ACTIONS(3225), + [anon_sym_true] = ACTIONS(3227), + [anon_sym_false] = ACTIONS(3227), + [aux_sym__val_number_decimal_token1] = ACTIONS(3229), + [aux_sym__val_number_decimal_token2] = ACTIONS(3231), + [aux_sym__val_number_decimal_token3] = ACTIONS(3233), + [aux_sym__val_number_decimal_token4] = ACTIONS(3235), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3230), - [aux_sym__val_number_token5] = ACTIONS(3230), - [aux_sym__val_number_token6] = ACTIONS(3230), + [aux_sym__val_number_token4] = ACTIONS(3237), + [aux_sym__val_number_token5] = ACTIONS(3237), + [aux_sym__val_number_token6] = ACTIONS(3237), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3232), + [sym_val_date] = ACTIONS(3239), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), @@ -185191,7 +185191,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3212), + [aux_sym_unquoted_token1] = ACTIONS(3219), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, @@ -185229,33 +185229,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__unquoted_anonymous_prefix] = STATE(7204), [sym_comment] = STATE(1034), [aux_sym_shebang_repeat1] = STATE(2817), - [sym__newline] = ACTIONS(3190), + [sym__newline] = ACTIONS(3197), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3214), + [anon_sym_DOT_DOT] = ACTIONS(3221), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3216), - [anon_sym_DOT_DOT_LT] = ACTIONS(3216), - [anon_sym_null] = ACTIONS(3218), - [anon_sym_true] = ACTIONS(3220), - [anon_sym_false] = ACTIONS(3220), - [aux_sym__val_number_decimal_token1] = ACTIONS(3222), - [aux_sym__val_number_decimal_token2] = ACTIONS(3224), - [aux_sym__val_number_decimal_token3] = ACTIONS(3226), - [aux_sym__val_number_decimal_token4] = ACTIONS(3228), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3223), + [anon_sym_DOT_DOT_LT] = ACTIONS(3223), + [anon_sym_null] = ACTIONS(3225), + [anon_sym_true] = ACTIONS(3227), + [anon_sym_false] = ACTIONS(3227), + [aux_sym__val_number_decimal_token1] = ACTIONS(3229), + [aux_sym__val_number_decimal_token2] = ACTIONS(3231), + [aux_sym__val_number_decimal_token3] = ACTIONS(3233), + [aux_sym__val_number_decimal_token4] = ACTIONS(3235), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3230), - [aux_sym__val_number_token5] = ACTIONS(3230), - [aux_sym__val_number_token6] = ACTIONS(3230), + [aux_sym__val_number_token4] = ACTIONS(3237), + [aux_sym__val_number_token5] = ACTIONS(3237), + [aux_sym__val_number_token6] = ACTIONS(3237), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3232), + [sym_val_date] = ACTIONS(3239), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), @@ -185277,7 +185277,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3212), + [aux_sym_unquoted_token1] = ACTIONS(3219), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, @@ -185315,33 +185315,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__unquoted_anonymous_prefix] = STATE(7204), [sym_comment] = STATE(1035), [aux_sym_shebang_repeat1] = STATE(2817), - [sym__newline] = ACTIONS(3190), + [sym__newline] = ACTIONS(3197), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3214), + [anon_sym_DOT_DOT] = ACTIONS(3221), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3216), - [anon_sym_DOT_DOT_LT] = ACTIONS(3216), - [anon_sym_null] = ACTIONS(3218), - [anon_sym_true] = ACTIONS(3220), - [anon_sym_false] = ACTIONS(3220), - [aux_sym__val_number_decimal_token1] = ACTIONS(3222), - [aux_sym__val_number_decimal_token2] = ACTIONS(3224), - [aux_sym__val_number_decimal_token3] = ACTIONS(3226), - [aux_sym__val_number_decimal_token4] = ACTIONS(3228), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3223), + [anon_sym_DOT_DOT_LT] = ACTIONS(3223), + [anon_sym_null] = ACTIONS(3225), + [anon_sym_true] = ACTIONS(3227), + [anon_sym_false] = ACTIONS(3227), + [aux_sym__val_number_decimal_token1] = ACTIONS(3229), + [aux_sym__val_number_decimal_token2] = ACTIONS(3231), + [aux_sym__val_number_decimal_token3] = ACTIONS(3233), + [aux_sym__val_number_decimal_token4] = ACTIONS(3235), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3230), - [aux_sym__val_number_token5] = ACTIONS(3230), - [aux_sym__val_number_token6] = ACTIONS(3230), + [aux_sym__val_number_token4] = ACTIONS(3237), + [aux_sym__val_number_token5] = ACTIONS(3237), + [aux_sym__val_number_token6] = ACTIONS(3237), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3232), + [sym_val_date] = ACTIONS(3239), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), @@ -185363,7 +185363,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3212), + [aux_sym_unquoted_token1] = ACTIONS(3219), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, @@ -185401,33 +185401,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__unquoted_anonymous_prefix] = STATE(7204), [sym_comment] = STATE(1036), [aux_sym_shebang_repeat1] = STATE(1041), - [sym__newline] = ACTIONS(3190), + [sym__newline] = ACTIONS(3197), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3214), + [anon_sym_DOT_DOT] = ACTIONS(3221), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3216), - [anon_sym_DOT_DOT_LT] = ACTIONS(3216), - [anon_sym_null] = ACTIONS(3218), - [anon_sym_true] = ACTIONS(3220), - [anon_sym_false] = ACTIONS(3220), - [aux_sym__val_number_decimal_token1] = ACTIONS(3222), - [aux_sym__val_number_decimal_token2] = ACTIONS(3224), - [aux_sym__val_number_decimal_token3] = ACTIONS(3226), - [aux_sym__val_number_decimal_token4] = ACTIONS(3228), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3223), + [anon_sym_DOT_DOT_LT] = ACTIONS(3223), + [anon_sym_null] = ACTIONS(3225), + [anon_sym_true] = ACTIONS(3227), + [anon_sym_false] = ACTIONS(3227), + [aux_sym__val_number_decimal_token1] = ACTIONS(3229), + [aux_sym__val_number_decimal_token2] = ACTIONS(3231), + [aux_sym__val_number_decimal_token3] = ACTIONS(3233), + [aux_sym__val_number_decimal_token4] = ACTIONS(3235), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3230), - [aux_sym__val_number_token5] = ACTIONS(3230), - [aux_sym__val_number_token6] = ACTIONS(3230), + [aux_sym__val_number_token4] = ACTIONS(3237), + [aux_sym__val_number_token5] = ACTIONS(3237), + [aux_sym__val_number_token6] = ACTIONS(3237), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3232), + [sym_val_date] = ACTIONS(3239), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), @@ -185449,7 +185449,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3212), + [aux_sym_unquoted_token1] = ACTIONS(3219), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, @@ -185487,33 +185487,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__unquoted_anonymous_prefix] = STATE(7204), [sym_comment] = STATE(1037), [aux_sym_shebang_repeat1] = STATE(2817), - [sym__newline] = ACTIONS(3190), + [sym__newline] = ACTIONS(3197), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3214), + [anon_sym_DOT_DOT] = ACTIONS(3221), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3216), - [anon_sym_DOT_DOT_LT] = ACTIONS(3216), - [anon_sym_null] = ACTIONS(3218), - [anon_sym_true] = ACTIONS(3220), - [anon_sym_false] = ACTIONS(3220), - [aux_sym__val_number_decimal_token1] = ACTIONS(3222), - [aux_sym__val_number_decimal_token2] = ACTIONS(3224), - [aux_sym__val_number_decimal_token3] = ACTIONS(3226), - [aux_sym__val_number_decimal_token4] = ACTIONS(3228), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3223), + [anon_sym_DOT_DOT_LT] = ACTIONS(3223), + [anon_sym_null] = ACTIONS(3225), + [anon_sym_true] = ACTIONS(3227), + [anon_sym_false] = ACTIONS(3227), + [aux_sym__val_number_decimal_token1] = ACTIONS(3229), + [aux_sym__val_number_decimal_token2] = ACTIONS(3231), + [aux_sym__val_number_decimal_token3] = ACTIONS(3233), + [aux_sym__val_number_decimal_token4] = ACTIONS(3235), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3230), - [aux_sym__val_number_token5] = ACTIONS(3230), - [aux_sym__val_number_token6] = ACTIONS(3230), + [aux_sym__val_number_token4] = ACTIONS(3237), + [aux_sym__val_number_token5] = ACTIONS(3237), + [aux_sym__val_number_token6] = ACTIONS(3237), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3232), + [sym_val_date] = ACTIONS(3239), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), @@ -185535,7 +185535,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3212), + [aux_sym_unquoted_token1] = ACTIONS(3219), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, @@ -185573,33 +185573,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__unquoted_anonymous_prefix] = STATE(7204), [sym_comment] = STATE(1038), [aux_sym_shebang_repeat1] = STATE(2817), - [sym__newline] = ACTIONS(3190), + [sym__newline] = ACTIONS(3197), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3214), + [anon_sym_DOT_DOT] = ACTIONS(3221), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3216), - [anon_sym_DOT_DOT_LT] = ACTIONS(3216), - [anon_sym_null] = ACTIONS(3218), - [anon_sym_true] = ACTIONS(3220), - [anon_sym_false] = ACTIONS(3220), - [aux_sym__val_number_decimal_token1] = ACTIONS(3222), - [aux_sym__val_number_decimal_token2] = ACTIONS(3224), - [aux_sym__val_number_decimal_token3] = ACTIONS(3226), - [aux_sym__val_number_decimal_token4] = ACTIONS(3228), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3223), + [anon_sym_DOT_DOT_LT] = ACTIONS(3223), + [anon_sym_null] = ACTIONS(3225), + [anon_sym_true] = ACTIONS(3227), + [anon_sym_false] = ACTIONS(3227), + [aux_sym__val_number_decimal_token1] = ACTIONS(3229), + [aux_sym__val_number_decimal_token2] = ACTIONS(3231), + [aux_sym__val_number_decimal_token3] = ACTIONS(3233), + [aux_sym__val_number_decimal_token4] = ACTIONS(3235), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3230), - [aux_sym__val_number_token5] = ACTIONS(3230), - [aux_sym__val_number_token6] = ACTIONS(3230), + [aux_sym__val_number_token4] = ACTIONS(3237), + [aux_sym__val_number_token5] = ACTIONS(3237), + [aux_sym__val_number_token6] = ACTIONS(3237), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3232), + [sym_val_date] = ACTIONS(3239), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), @@ -185621,7 +185621,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3212), + [aux_sym_unquoted_token1] = ACTIONS(3219), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, @@ -185659,33 +185659,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__unquoted_anonymous_prefix] = STATE(7204), [sym_comment] = STATE(1039), [aux_sym_shebang_repeat1] = STATE(2817), - [sym__newline] = ACTIONS(3190), + [sym__newline] = ACTIONS(3197), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3214), + [anon_sym_DOT_DOT] = ACTIONS(3221), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3216), - [anon_sym_DOT_DOT_LT] = ACTIONS(3216), - [anon_sym_null] = ACTIONS(3218), - [anon_sym_true] = ACTIONS(3220), - [anon_sym_false] = ACTIONS(3220), - [aux_sym__val_number_decimal_token1] = ACTIONS(3222), - [aux_sym__val_number_decimal_token2] = ACTIONS(3224), - [aux_sym__val_number_decimal_token3] = ACTIONS(3226), - [aux_sym__val_number_decimal_token4] = ACTIONS(3228), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3223), + [anon_sym_DOT_DOT_LT] = ACTIONS(3223), + [anon_sym_null] = ACTIONS(3225), + [anon_sym_true] = ACTIONS(3227), + [anon_sym_false] = ACTIONS(3227), + [aux_sym__val_number_decimal_token1] = ACTIONS(3229), + [aux_sym__val_number_decimal_token2] = ACTIONS(3231), + [aux_sym__val_number_decimal_token3] = ACTIONS(3233), + [aux_sym__val_number_decimal_token4] = ACTIONS(3235), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3230), - [aux_sym__val_number_token5] = ACTIONS(3230), - [aux_sym__val_number_token6] = ACTIONS(3230), + [aux_sym__val_number_token4] = ACTIONS(3237), + [aux_sym__val_number_token5] = ACTIONS(3237), + [aux_sym__val_number_token6] = ACTIONS(3237), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3232), + [sym_val_date] = ACTIONS(3239), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), @@ -185707,7 +185707,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3212), + [aux_sym_unquoted_token1] = ACTIONS(3219), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, @@ -185745,33 +185745,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__unquoted_anonymous_prefix] = STATE(7204), [sym_comment] = STATE(1040), [aux_sym_shebang_repeat1] = STATE(2817), - [sym__newline] = ACTIONS(3190), + [sym__newline] = ACTIONS(3197), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3214), + [anon_sym_DOT_DOT] = ACTIONS(3221), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3216), - [anon_sym_DOT_DOT_LT] = ACTIONS(3216), - [anon_sym_null] = ACTIONS(3218), - [anon_sym_true] = ACTIONS(3220), - [anon_sym_false] = ACTIONS(3220), - [aux_sym__val_number_decimal_token1] = ACTIONS(3222), - [aux_sym__val_number_decimal_token2] = ACTIONS(3224), - [aux_sym__val_number_decimal_token3] = ACTIONS(3226), - [aux_sym__val_number_decimal_token4] = ACTIONS(3228), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3223), + [anon_sym_DOT_DOT_LT] = ACTIONS(3223), + [anon_sym_null] = ACTIONS(3225), + [anon_sym_true] = ACTIONS(3227), + [anon_sym_false] = ACTIONS(3227), + [aux_sym__val_number_decimal_token1] = ACTIONS(3229), + [aux_sym__val_number_decimal_token2] = ACTIONS(3231), + [aux_sym__val_number_decimal_token3] = ACTIONS(3233), + [aux_sym__val_number_decimal_token4] = ACTIONS(3235), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3230), - [aux_sym__val_number_token5] = ACTIONS(3230), - [aux_sym__val_number_token6] = ACTIONS(3230), + [aux_sym__val_number_token4] = ACTIONS(3237), + [aux_sym__val_number_token5] = ACTIONS(3237), + [aux_sym__val_number_token6] = ACTIONS(3237), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3232), + [sym_val_date] = ACTIONS(3239), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), @@ -185793,7 +185793,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3212), + [aux_sym_unquoted_token1] = ACTIONS(3219), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, @@ -185831,33 +185831,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__unquoted_anonymous_prefix] = STATE(7204), [sym_comment] = STATE(1041), [aux_sym_shebang_repeat1] = STATE(2817), - [sym__newline] = ACTIONS(3190), + [sym__newline] = ACTIONS(3197), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3214), + [anon_sym_DOT_DOT] = ACTIONS(3221), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3216), - [anon_sym_DOT_DOT_LT] = ACTIONS(3216), - [anon_sym_null] = ACTIONS(3218), - [anon_sym_true] = ACTIONS(3220), - [anon_sym_false] = ACTIONS(3220), - [aux_sym__val_number_decimal_token1] = ACTIONS(3222), - [aux_sym__val_number_decimal_token2] = ACTIONS(3224), - [aux_sym__val_number_decimal_token3] = ACTIONS(3226), - [aux_sym__val_number_decimal_token4] = ACTIONS(3228), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3223), + [anon_sym_DOT_DOT_LT] = ACTIONS(3223), + [anon_sym_null] = ACTIONS(3225), + [anon_sym_true] = ACTIONS(3227), + [anon_sym_false] = ACTIONS(3227), + [aux_sym__val_number_decimal_token1] = ACTIONS(3229), + [aux_sym__val_number_decimal_token2] = ACTIONS(3231), + [aux_sym__val_number_decimal_token3] = ACTIONS(3233), + [aux_sym__val_number_decimal_token4] = ACTIONS(3235), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3230), - [aux_sym__val_number_token5] = ACTIONS(3230), - [aux_sym__val_number_token6] = ACTIONS(3230), + [aux_sym__val_number_token4] = ACTIONS(3237), + [aux_sym__val_number_token5] = ACTIONS(3237), + [aux_sym__val_number_token6] = ACTIONS(3237), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3232), + [sym_val_date] = ACTIONS(3239), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), @@ -185879,7 +185879,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3212), + [aux_sym_unquoted_token1] = ACTIONS(3219), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, @@ -185917,33 +185917,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__unquoted_anonymous_prefix] = STATE(7204), [sym_comment] = STATE(1042), [aux_sym_shebang_repeat1] = STATE(979), - [sym__newline] = ACTIONS(3190), + [sym__newline] = ACTIONS(3197), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3214), + [anon_sym_DOT_DOT] = ACTIONS(3221), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3216), - [anon_sym_DOT_DOT_LT] = ACTIONS(3216), - [anon_sym_null] = ACTIONS(3218), - [anon_sym_true] = ACTIONS(3220), - [anon_sym_false] = ACTIONS(3220), - [aux_sym__val_number_decimal_token1] = ACTIONS(3222), - [aux_sym__val_number_decimal_token2] = ACTIONS(3224), - [aux_sym__val_number_decimal_token3] = ACTIONS(3226), - [aux_sym__val_number_decimal_token4] = ACTIONS(3228), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3223), + [anon_sym_DOT_DOT_LT] = ACTIONS(3223), + [anon_sym_null] = ACTIONS(3225), + [anon_sym_true] = ACTIONS(3227), + [anon_sym_false] = ACTIONS(3227), + [aux_sym__val_number_decimal_token1] = ACTIONS(3229), + [aux_sym__val_number_decimal_token2] = ACTIONS(3231), + [aux_sym__val_number_decimal_token3] = ACTIONS(3233), + [aux_sym__val_number_decimal_token4] = ACTIONS(3235), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3230), - [aux_sym__val_number_token5] = ACTIONS(3230), - [aux_sym__val_number_token6] = ACTIONS(3230), + [aux_sym__val_number_token4] = ACTIONS(3237), + [aux_sym__val_number_token5] = ACTIONS(3237), + [aux_sym__val_number_token6] = ACTIONS(3237), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3232), + [sym_val_date] = ACTIONS(3239), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), @@ -185965,7 +185965,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3212), + [aux_sym_unquoted_token1] = ACTIONS(3219), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, @@ -186003,33 +186003,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__unquoted_anonymous_prefix] = STATE(7204), [sym_comment] = STATE(1043), [aux_sym_shebang_repeat1] = STATE(980), - [sym__newline] = ACTIONS(3190), + [sym__newline] = ACTIONS(3197), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3214), + [anon_sym_DOT_DOT] = ACTIONS(3221), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3216), - [anon_sym_DOT_DOT_LT] = ACTIONS(3216), - [anon_sym_null] = ACTIONS(3218), - [anon_sym_true] = ACTIONS(3220), - [anon_sym_false] = ACTIONS(3220), - [aux_sym__val_number_decimal_token1] = ACTIONS(3222), - [aux_sym__val_number_decimal_token2] = ACTIONS(3224), - [aux_sym__val_number_decimal_token3] = ACTIONS(3226), - [aux_sym__val_number_decimal_token4] = ACTIONS(3228), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3223), + [anon_sym_DOT_DOT_LT] = ACTIONS(3223), + [anon_sym_null] = ACTIONS(3225), + [anon_sym_true] = ACTIONS(3227), + [anon_sym_false] = ACTIONS(3227), + [aux_sym__val_number_decimal_token1] = ACTIONS(3229), + [aux_sym__val_number_decimal_token2] = ACTIONS(3231), + [aux_sym__val_number_decimal_token3] = ACTIONS(3233), + [aux_sym__val_number_decimal_token4] = ACTIONS(3235), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3230), - [aux_sym__val_number_token5] = ACTIONS(3230), - [aux_sym__val_number_token6] = ACTIONS(3230), + [aux_sym__val_number_token4] = ACTIONS(3237), + [aux_sym__val_number_token5] = ACTIONS(3237), + [aux_sym__val_number_token6] = ACTIONS(3237), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3232), + [sym_val_date] = ACTIONS(3239), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), @@ -186051,7 +186051,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3212), + [aux_sym_unquoted_token1] = ACTIONS(3219), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, @@ -186089,33 +186089,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__unquoted_anonymous_prefix] = STATE(7204), [sym_comment] = STATE(1044), [aux_sym_shebang_repeat1] = STATE(1039), - [sym__newline] = ACTIONS(3190), + [sym__newline] = ACTIONS(3197), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3214), + [anon_sym_DOT_DOT] = ACTIONS(3221), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3216), - [anon_sym_DOT_DOT_LT] = ACTIONS(3216), - [anon_sym_null] = ACTIONS(3218), - [anon_sym_true] = ACTIONS(3220), - [anon_sym_false] = ACTIONS(3220), - [aux_sym__val_number_decimal_token1] = ACTIONS(3222), - [aux_sym__val_number_decimal_token2] = ACTIONS(3224), - [aux_sym__val_number_decimal_token3] = ACTIONS(3226), - [aux_sym__val_number_decimal_token4] = ACTIONS(3228), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3223), + [anon_sym_DOT_DOT_LT] = ACTIONS(3223), + [anon_sym_null] = ACTIONS(3225), + [anon_sym_true] = ACTIONS(3227), + [anon_sym_false] = ACTIONS(3227), + [aux_sym__val_number_decimal_token1] = ACTIONS(3229), + [aux_sym__val_number_decimal_token2] = ACTIONS(3231), + [aux_sym__val_number_decimal_token3] = ACTIONS(3233), + [aux_sym__val_number_decimal_token4] = ACTIONS(3235), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3230), - [aux_sym__val_number_token5] = ACTIONS(3230), - [aux_sym__val_number_token6] = ACTIONS(3230), + [aux_sym__val_number_token4] = ACTIONS(3237), + [aux_sym__val_number_token5] = ACTIONS(3237), + [aux_sym__val_number_token6] = ACTIONS(3237), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3232), + [sym_val_date] = ACTIONS(3239), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), @@ -186137,7 +186137,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3212), + [aux_sym_unquoted_token1] = ACTIONS(3219), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, @@ -186175,33 +186175,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__unquoted_anonymous_prefix] = STATE(7204), [sym_comment] = STATE(1045), [aux_sym_shebang_repeat1] = STATE(2817), - [sym__newline] = ACTIONS(3190), + [sym__newline] = ACTIONS(3197), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3214), + [anon_sym_DOT_DOT] = ACTIONS(3221), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3216), - [anon_sym_DOT_DOT_LT] = ACTIONS(3216), - [anon_sym_null] = ACTIONS(3218), - [anon_sym_true] = ACTIONS(3220), - [anon_sym_false] = ACTIONS(3220), - [aux_sym__val_number_decimal_token1] = ACTIONS(3222), - [aux_sym__val_number_decimal_token2] = ACTIONS(3224), - [aux_sym__val_number_decimal_token3] = ACTIONS(3226), - [aux_sym__val_number_decimal_token4] = ACTIONS(3228), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3223), + [anon_sym_DOT_DOT_LT] = ACTIONS(3223), + [anon_sym_null] = ACTIONS(3225), + [anon_sym_true] = ACTIONS(3227), + [anon_sym_false] = ACTIONS(3227), + [aux_sym__val_number_decimal_token1] = ACTIONS(3229), + [aux_sym__val_number_decimal_token2] = ACTIONS(3231), + [aux_sym__val_number_decimal_token3] = ACTIONS(3233), + [aux_sym__val_number_decimal_token4] = ACTIONS(3235), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3230), - [aux_sym__val_number_token5] = ACTIONS(3230), - [aux_sym__val_number_token6] = ACTIONS(3230), + [aux_sym__val_number_token4] = ACTIONS(3237), + [aux_sym__val_number_token5] = ACTIONS(3237), + [aux_sym__val_number_token6] = ACTIONS(3237), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3232), + [sym_val_date] = ACTIONS(3239), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), @@ -186223,7 +186223,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3212), + [aux_sym_unquoted_token1] = ACTIONS(3219), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, @@ -186261,33 +186261,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__unquoted_anonymous_prefix] = STATE(7204), [sym_comment] = STATE(1046), [aux_sym_shebang_repeat1] = STATE(2817), - [sym__newline] = ACTIONS(3190), + [sym__newline] = ACTIONS(3197), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3214), + [anon_sym_DOT_DOT] = ACTIONS(3221), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3216), - [anon_sym_DOT_DOT_LT] = ACTIONS(3216), - [anon_sym_null] = ACTIONS(3218), - [anon_sym_true] = ACTIONS(3220), - [anon_sym_false] = ACTIONS(3220), - [aux_sym__val_number_decimal_token1] = ACTIONS(3222), - [aux_sym__val_number_decimal_token2] = ACTIONS(3224), - [aux_sym__val_number_decimal_token3] = ACTIONS(3226), - [aux_sym__val_number_decimal_token4] = ACTIONS(3228), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3223), + [anon_sym_DOT_DOT_LT] = ACTIONS(3223), + [anon_sym_null] = ACTIONS(3225), + [anon_sym_true] = ACTIONS(3227), + [anon_sym_false] = ACTIONS(3227), + [aux_sym__val_number_decimal_token1] = ACTIONS(3229), + [aux_sym__val_number_decimal_token2] = ACTIONS(3231), + [aux_sym__val_number_decimal_token3] = ACTIONS(3233), + [aux_sym__val_number_decimal_token4] = ACTIONS(3235), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3230), - [aux_sym__val_number_token5] = ACTIONS(3230), - [aux_sym__val_number_token6] = ACTIONS(3230), + [aux_sym__val_number_token4] = ACTIONS(3237), + [aux_sym__val_number_token5] = ACTIONS(3237), + [aux_sym__val_number_token6] = ACTIONS(3237), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3232), + [sym_val_date] = ACTIONS(3239), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), @@ -186309,7 +186309,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3212), + [aux_sym_unquoted_token1] = ACTIONS(3219), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, @@ -186347,33 +186347,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__unquoted_anonymous_prefix] = STATE(7204), [sym_comment] = STATE(1047), [aux_sym_shebang_repeat1] = STATE(976), - [sym__newline] = ACTIONS(3190), + [sym__newline] = ACTIONS(3197), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3214), + [anon_sym_DOT_DOT] = ACTIONS(3221), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3216), - [anon_sym_DOT_DOT_LT] = ACTIONS(3216), - [anon_sym_null] = ACTIONS(3218), - [anon_sym_true] = ACTIONS(3220), - [anon_sym_false] = ACTIONS(3220), - [aux_sym__val_number_decimal_token1] = ACTIONS(3222), - [aux_sym__val_number_decimal_token2] = ACTIONS(3224), - [aux_sym__val_number_decimal_token3] = ACTIONS(3226), - [aux_sym__val_number_decimal_token4] = ACTIONS(3228), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3223), + [anon_sym_DOT_DOT_LT] = ACTIONS(3223), + [anon_sym_null] = ACTIONS(3225), + [anon_sym_true] = ACTIONS(3227), + [anon_sym_false] = ACTIONS(3227), + [aux_sym__val_number_decimal_token1] = ACTIONS(3229), + [aux_sym__val_number_decimal_token2] = ACTIONS(3231), + [aux_sym__val_number_decimal_token3] = ACTIONS(3233), + [aux_sym__val_number_decimal_token4] = ACTIONS(3235), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3230), - [aux_sym__val_number_token5] = ACTIONS(3230), - [aux_sym__val_number_token6] = ACTIONS(3230), + [aux_sym__val_number_token4] = ACTIONS(3237), + [aux_sym__val_number_token5] = ACTIONS(3237), + [aux_sym__val_number_token6] = ACTIONS(3237), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3232), + [sym_val_date] = ACTIONS(3239), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), @@ -186395,7 +186395,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3212), + [aux_sym_unquoted_token1] = ACTIONS(3219), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, @@ -186433,35 +186433,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__unquoted_anonymous_prefix] = STATE(6930), [sym_comment] = STATE(1048), [aux_sym_list_body_repeat1] = STATE(1049), - [anon_sym_LBRACK] = ACTIONS(3082), - [anon_sym_LPAREN] = ACTIONS(3086), - [anon_sym_DOLLAR] = ACTIONS(3088), - [anon_sym_LBRACE] = ACTIONS(3090), - [anon_sym_DOT_DOT] = ACTIONS(3092), + [anon_sym_LBRACK] = ACTIONS(3089), + [anon_sym_LPAREN] = ACTIONS(3093), + [anon_sym_DOLLAR] = ACTIONS(3095), + [anon_sym_LBRACE] = ACTIONS(3097), + [anon_sym_DOT_DOT] = ACTIONS(3099), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3094), - [anon_sym_DOT_DOT_LT] = ACTIONS(3094), - [anon_sym_null] = ACTIONS(3096), - [anon_sym_true] = ACTIONS(3098), - [anon_sym_false] = ACTIONS(3098), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3101), + [anon_sym_DOT_DOT_LT] = ACTIONS(3101), + [anon_sym_null] = ACTIONS(3103), + [anon_sym_true] = ACTIONS(3105), + [anon_sym_false] = ACTIONS(3105), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), - [aux_sym__val_number_decimal_token1] = ACTIONS(3100), - [aux_sym__val_number_decimal_token2] = ACTIONS(3102), - [aux_sym__val_number_decimal_token3] = ACTIONS(3104), - [aux_sym__val_number_decimal_token4] = ACTIONS(3106), - [aux_sym__val_number_token1] = ACTIONS(3108), - [aux_sym__val_number_token2] = ACTIONS(3108), - [aux_sym__val_number_token3] = ACTIONS(3108), - [aux_sym__val_number_token4] = ACTIONS(3110), - [aux_sym__val_number_token5] = ACTIONS(3110), - [aux_sym__val_number_token6] = ACTIONS(3110), - [anon_sym_0b] = ACTIONS(3112), - [anon_sym_0o] = ACTIONS(3114), - [anon_sym_0x] = ACTIONS(3114), - [sym_val_date] = ACTIONS(3116), - [anon_sym_DQUOTE] = ACTIONS(3118), - [sym__str_single_quotes] = ACTIONS(3120), - [sym__str_back_ticks] = ACTIONS(3120), + [aux_sym__val_number_decimal_token1] = ACTIONS(3107), + [aux_sym__val_number_decimal_token2] = ACTIONS(3109), + [aux_sym__val_number_decimal_token3] = ACTIONS(3111), + [aux_sym__val_number_decimal_token4] = ACTIONS(3113), + [aux_sym__val_number_token1] = ACTIONS(3115), + [aux_sym__val_number_token2] = ACTIONS(3115), + [aux_sym__val_number_token3] = ACTIONS(3115), + [aux_sym__val_number_token4] = ACTIONS(3117), + [aux_sym__val_number_token5] = ACTIONS(3117), + [aux_sym__val_number_token6] = ACTIONS(3117), + [anon_sym_0b] = ACTIONS(3119), + [anon_sym_0o] = ACTIONS(3121), + [anon_sym_0x] = ACTIONS(3121), + [sym_val_date] = ACTIONS(3123), + [anon_sym_DQUOTE] = ACTIONS(3125), + [sym__str_single_quotes] = ACTIONS(3127), + [sym__str_back_ticks] = ACTIONS(3127), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2581), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2583), [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2585), @@ -186481,9 +186481,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2589), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2589), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2589), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3122), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3129), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3124), + [sym_raw_string_begin] = ACTIONS(3131), }, [1049] = { [sym_expr_parenthesized] = STATE(5918), @@ -186519,57 +186519,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__unquoted_anonymous_prefix] = STATE(6930), [sym_comment] = STATE(1049), [aux_sym_list_body_repeat1] = STATE(1049), - [anon_sym_LBRACK] = ACTIONS(3254), - [anon_sym_LPAREN] = ACTIONS(3257), - [anon_sym_DOLLAR] = ACTIONS(3260), - [anon_sym_LBRACE] = ACTIONS(3263), - [anon_sym_DOT_DOT] = ACTIONS(3266), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(3269), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3272), - [anon_sym_DOT_DOT_LT] = ACTIONS(3272), - [anon_sym_null] = ACTIONS(3275), - [anon_sym_true] = ACTIONS(3278), - [anon_sym_false] = ACTIONS(3278), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(3281), - [aux_sym__val_number_decimal_token1] = ACTIONS(3284), - [aux_sym__val_number_decimal_token2] = ACTIONS(3287), - [aux_sym__val_number_decimal_token3] = ACTIONS(3290), - [aux_sym__val_number_decimal_token4] = ACTIONS(3293), - [aux_sym__val_number_token1] = ACTIONS(3296), - [aux_sym__val_number_token2] = ACTIONS(3296), - [aux_sym__val_number_token3] = ACTIONS(3296), - [aux_sym__val_number_token4] = ACTIONS(3299), - [aux_sym__val_number_token5] = ACTIONS(3299), - [aux_sym__val_number_token6] = ACTIONS(3299), - [anon_sym_0b] = ACTIONS(3302), - [anon_sym_0o] = ACTIONS(3305), - [anon_sym_0x] = ACTIONS(3305), - [sym_val_date] = ACTIONS(3308), - [anon_sym_DQUOTE] = ACTIONS(3311), - [sym__str_single_quotes] = ACTIONS(3314), - [sym__str_back_ticks] = ACTIONS(3314), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3317), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3320), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(3323), - [anon_sym_err_GT] = ACTIONS(3326), - [anon_sym_out_GT] = ACTIONS(3326), - [anon_sym_e_GT] = ACTIONS(3326), - [anon_sym_o_GT] = ACTIONS(3326), - [anon_sym_err_PLUSout_GT] = ACTIONS(3326), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3326), - [anon_sym_o_PLUSe_GT] = ACTIONS(3326), - [anon_sym_e_PLUSo_GT] = ACTIONS(3326), - [anon_sym_err_GT_GT] = ACTIONS(3329), - [anon_sym_out_GT_GT] = ACTIONS(3329), - [anon_sym_e_GT_GT] = ACTIONS(3329), - [anon_sym_o_GT_GT] = ACTIONS(3329), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3329), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3329), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3329), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3329), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3332), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3335), + [anon_sym_LBRACK] = ACTIONS(3261), + [anon_sym_LPAREN] = ACTIONS(3264), + [anon_sym_DOLLAR] = ACTIONS(3267), + [anon_sym_LBRACE] = ACTIONS(3270), + [anon_sym_DOT_DOT] = ACTIONS(3273), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(3276), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3279), + [anon_sym_DOT_DOT_LT] = ACTIONS(3279), + [anon_sym_null] = ACTIONS(3282), + [anon_sym_true] = ACTIONS(3285), + [anon_sym_false] = ACTIONS(3285), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(3288), + [aux_sym__val_number_decimal_token1] = ACTIONS(3291), + [aux_sym__val_number_decimal_token2] = ACTIONS(3294), + [aux_sym__val_number_decimal_token3] = ACTIONS(3297), + [aux_sym__val_number_decimal_token4] = ACTIONS(3300), + [aux_sym__val_number_token1] = ACTIONS(3303), + [aux_sym__val_number_token2] = ACTIONS(3303), + [aux_sym__val_number_token3] = ACTIONS(3303), + [aux_sym__val_number_token4] = ACTIONS(3306), + [aux_sym__val_number_token5] = ACTIONS(3306), + [aux_sym__val_number_token6] = ACTIONS(3306), + [anon_sym_0b] = ACTIONS(3309), + [anon_sym_0o] = ACTIONS(3312), + [anon_sym_0x] = ACTIONS(3312), + [sym_val_date] = ACTIONS(3315), + [anon_sym_DQUOTE] = ACTIONS(3318), + [sym__str_single_quotes] = ACTIONS(3321), + [sym__str_back_ticks] = ACTIONS(3321), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3324), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3327), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(3330), + [anon_sym_err_GT] = ACTIONS(3333), + [anon_sym_out_GT] = ACTIONS(3333), + [anon_sym_e_GT] = ACTIONS(3333), + [anon_sym_o_GT] = ACTIONS(3333), + [anon_sym_err_PLUSout_GT] = ACTIONS(3333), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3333), + [anon_sym_o_PLUSe_GT] = ACTIONS(3333), + [anon_sym_e_PLUSo_GT] = ACTIONS(3333), + [anon_sym_err_GT_GT] = ACTIONS(3336), + [anon_sym_out_GT_GT] = ACTIONS(3336), + [anon_sym_e_GT_GT] = ACTIONS(3336), + [anon_sym_o_GT_GT] = ACTIONS(3336), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3336), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3336), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3336), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3336), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3339), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(3342), }, [1050] = { [sym_expr_unary] = STATE(2432), @@ -186605,33 +186605,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__unquoted_anonymous_prefix] = STATE(7204), [sym_comment] = STATE(1050), [aux_sym_shebang_repeat1] = STATE(967), - [sym__newline] = ACTIONS(3190), + [sym__newline] = ACTIONS(3197), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3214), + [anon_sym_DOT_DOT] = ACTIONS(3221), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3216), - [anon_sym_DOT_DOT_LT] = ACTIONS(3216), - [anon_sym_null] = ACTIONS(3218), - [anon_sym_true] = ACTIONS(3220), - [anon_sym_false] = ACTIONS(3220), - [aux_sym__val_number_decimal_token1] = ACTIONS(3222), - [aux_sym__val_number_decimal_token2] = ACTIONS(3224), - [aux_sym__val_number_decimal_token3] = ACTIONS(3226), - [aux_sym__val_number_decimal_token4] = ACTIONS(3228), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3223), + [anon_sym_DOT_DOT_LT] = ACTIONS(3223), + [anon_sym_null] = ACTIONS(3225), + [anon_sym_true] = ACTIONS(3227), + [anon_sym_false] = ACTIONS(3227), + [aux_sym__val_number_decimal_token1] = ACTIONS(3229), + [aux_sym__val_number_decimal_token2] = ACTIONS(3231), + [aux_sym__val_number_decimal_token3] = ACTIONS(3233), + [aux_sym__val_number_decimal_token4] = ACTIONS(3235), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3230), - [aux_sym__val_number_token5] = ACTIONS(3230), - [aux_sym__val_number_token6] = ACTIONS(3230), + [aux_sym__val_number_token4] = ACTIONS(3237), + [aux_sym__val_number_token5] = ACTIONS(3237), + [aux_sym__val_number_token6] = ACTIONS(3237), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3232), + [sym_val_date] = ACTIONS(3239), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), @@ -186653,7 +186653,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3212), + [aux_sym_unquoted_token1] = ACTIONS(3219), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, @@ -186691,33 +186691,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__unquoted_anonymous_prefix] = STATE(7204), [sym_comment] = STATE(1051), [aux_sym_shebang_repeat1] = STATE(2817), - [sym__newline] = ACTIONS(3190), + [sym__newline] = ACTIONS(3197), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3214), + [anon_sym_DOT_DOT] = ACTIONS(3221), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3216), - [anon_sym_DOT_DOT_LT] = ACTIONS(3216), - [anon_sym_null] = ACTIONS(3218), - [anon_sym_true] = ACTIONS(3220), - [anon_sym_false] = ACTIONS(3220), - [aux_sym__val_number_decimal_token1] = ACTIONS(3222), - [aux_sym__val_number_decimal_token2] = ACTIONS(3224), - [aux_sym__val_number_decimal_token3] = ACTIONS(3226), - [aux_sym__val_number_decimal_token4] = ACTIONS(3228), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3223), + [anon_sym_DOT_DOT_LT] = ACTIONS(3223), + [anon_sym_null] = ACTIONS(3225), + [anon_sym_true] = ACTIONS(3227), + [anon_sym_false] = ACTIONS(3227), + [aux_sym__val_number_decimal_token1] = ACTIONS(3229), + [aux_sym__val_number_decimal_token2] = ACTIONS(3231), + [aux_sym__val_number_decimal_token3] = ACTIONS(3233), + [aux_sym__val_number_decimal_token4] = ACTIONS(3235), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3230), - [aux_sym__val_number_token5] = ACTIONS(3230), - [aux_sym__val_number_token6] = ACTIONS(3230), + [aux_sym__val_number_token4] = ACTIONS(3237), + [aux_sym__val_number_token5] = ACTIONS(3237), + [aux_sym__val_number_token6] = ACTIONS(3237), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3232), + [sym_val_date] = ACTIONS(3239), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), @@ -186739,7 +186739,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3212), + [aux_sym_unquoted_token1] = ACTIONS(3219), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, @@ -186777,33 +186777,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__unquoted_anonymous_prefix] = STATE(7204), [sym_comment] = STATE(1052), [aux_sym_shebang_repeat1] = STATE(2817), - [sym__newline] = ACTIONS(3190), + [sym__newline] = ACTIONS(3197), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3214), + [anon_sym_DOT_DOT] = ACTIONS(3221), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3216), - [anon_sym_DOT_DOT_LT] = ACTIONS(3216), - [anon_sym_null] = ACTIONS(3218), - [anon_sym_true] = ACTIONS(3220), - [anon_sym_false] = ACTIONS(3220), - [aux_sym__val_number_decimal_token1] = ACTIONS(3222), - [aux_sym__val_number_decimal_token2] = ACTIONS(3224), - [aux_sym__val_number_decimal_token3] = ACTIONS(3226), - [aux_sym__val_number_decimal_token4] = ACTIONS(3228), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3223), + [anon_sym_DOT_DOT_LT] = ACTIONS(3223), + [anon_sym_null] = ACTIONS(3225), + [anon_sym_true] = ACTIONS(3227), + [anon_sym_false] = ACTIONS(3227), + [aux_sym__val_number_decimal_token1] = ACTIONS(3229), + [aux_sym__val_number_decimal_token2] = ACTIONS(3231), + [aux_sym__val_number_decimal_token3] = ACTIONS(3233), + [aux_sym__val_number_decimal_token4] = ACTIONS(3235), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3230), - [aux_sym__val_number_token5] = ACTIONS(3230), - [aux_sym__val_number_token6] = ACTIONS(3230), + [aux_sym__val_number_token4] = ACTIONS(3237), + [aux_sym__val_number_token5] = ACTIONS(3237), + [aux_sym__val_number_token6] = ACTIONS(3237), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3232), + [sym_val_date] = ACTIONS(3239), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), @@ -186825,7 +186825,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3212), + [aux_sym_unquoted_token1] = ACTIONS(3219), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, @@ -186862,7 +186862,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__unquoted_anonymous_prefix] = STATE(6658), [sym_comment] = STATE(1053), [aux_sym_shebang_repeat1] = STATE(2810), - [sym__newline] = ACTIONS(2759), + [sym__newline] = ACTIONS(3345), [anon_sym_LBRACK] = ACTIONS(2695), [anon_sym_LPAREN] = ACTIONS(2697), [anon_sym_DOLLAR] = ACTIONS(2699), @@ -186952,27 +186952,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3192), + [anon_sym_DOT_DOT] = ACTIONS(3199), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3194), - [anon_sym_DOT_DOT_LT] = ACTIONS(3194), - [anon_sym_null] = ACTIONS(3196), - [anon_sym_true] = ACTIONS(3198), - [anon_sym_false] = ACTIONS(3198), - [aux_sym__val_number_decimal_token1] = ACTIONS(3200), - [aux_sym__val_number_decimal_token2] = ACTIONS(3202), - [aux_sym__val_number_decimal_token3] = ACTIONS(3204), - [aux_sym__val_number_decimal_token4] = ACTIONS(3206), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3201), + [anon_sym_DOT_DOT_LT] = ACTIONS(3201), + [anon_sym_null] = ACTIONS(3203), + [anon_sym_true] = ACTIONS(3205), + [anon_sym_false] = ACTIONS(3205), + [aux_sym__val_number_decimal_token1] = ACTIONS(3207), + [aux_sym__val_number_decimal_token2] = ACTIONS(3209), + [aux_sym__val_number_decimal_token3] = ACTIONS(3211), + [aux_sym__val_number_decimal_token4] = ACTIONS(3213), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3208), - [aux_sym__val_number_token5] = ACTIONS(3208), - [aux_sym__val_number_token6] = ACTIONS(3208), + [aux_sym__val_number_token4] = ACTIONS(3215), + [aux_sym__val_number_token5] = ACTIONS(3215), + [aux_sym__val_number_token6] = ACTIONS(3215), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3210), + [sym_val_date] = ACTIONS(3217), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), @@ -186994,7 +186994,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3212), + [aux_sym_unquoted_token1] = ACTIONS(3219), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, @@ -187036,27 +187036,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(45), [anon_sym_LBRACE] = ACTIONS(63), - [anon_sym_DOT_DOT] = ACTIONS(3338), + [anon_sym_DOT_DOT] = ACTIONS(3347), [aux_sym_expr_unary_token1] = ACTIONS(83), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3340), - [anon_sym_DOT_DOT_LT] = ACTIONS(3340), - [anon_sym_null] = ACTIONS(3342), - [anon_sym_true] = ACTIONS(3344), - [anon_sym_false] = ACTIONS(3344), - [aux_sym__val_number_decimal_token1] = ACTIONS(3346), - [aux_sym__val_number_decimal_token2] = ACTIONS(3348), - [aux_sym__val_number_decimal_token3] = ACTIONS(3350), - [aux_sym__val_number_decimal_token4] = ACTIONS(3352), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3349), + [anon_sym_DOT_DOT_LT] = ACTIONS(3349), + [anon_sym_null] = ACTIONS(3351), + [anon_sym_true] = ACTIONS(3353), + [anon_sym_false] = ACTIONS(3353), + [aux_sym__val_number_decimal_token1] = ACTIONS(3355), + [aux_sym__val_number_decimal_token2] = ACTIONS(3357), + [aux_sym__val_number_decimal_token3] = ACTIONS(3359), + [aux_sym__val_number_decimal_token4] = ACTIONS(3361), [aux_sym__val_number_token1] = ACTIONS(99), [aux_sym__val_number_token2] = ACTIONS(99), [aux_sym__val_number_token3] = ACTIONS(99), - [aux_sym__val_number_token4] = ACTIONS(3354), - [aux_sym__val_number_token5] = ACTIONS(3354), - [aux_sym__val_number_token6] = ACTIONS(3354), + [aux_sym__val_number_token4] = ACTIONS(3363), + [aux_sym__val_number_token5] = ACTIONS(3363), + [aux_sym__val_number_token6] = ACTIONS(3363), [anon_sym_0b] = ACTIONS(103), [anon_sym_0o] = ACTIONS(105), [anon_sym_0x] = ACTIONS(105), - [sym_val_date] = ACTIONS(3356), + [sym_val_date] = ACTIONS(3365), [anon_sym_DQUOTE] = ACTIONS(109), [sym__str_single_quotes] = ACTIONS(111), [sym__str_back_ticks] = ACTIONS(111), @@ -187078,7 +187078,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3358), + [aux_sym_unquoted_token1] = ACTIONS(3367), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(123), }, @@ -187120,27 +187120,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(45), [anon_sym_LBRACE] = ACTIONS(63), - [anon_sym_DOT_DOT] = ACTIONS(3338), + [anon_sym_DOT_DOT] = ACTIONS(3347), [aux_sym_expr_unary_token1] = ACTIONS(83), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3340), - [anon_sym_DOT_DOT_LT] = ACTIONS(3340), - [anon_sym_null] = ACTIONS(3342), - [anon_sym_true] = ACTIONS(3344), - [anon_sym_false] = ACTIONS(3344), - [aux_sym__val_number_decimal_token1] = ACTIONS(3346), - [aux_sym__val_number_decimal_token2] = ACTIONS(3348), - [aux_sym__val_number_decimal_token3] = ACTIONS(3350), - [aux_sym__val_number_decimal_token4] = ACTIONS(3352), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3349), + [anon_sym_DOT_DOT_LT] = ACTIONS(3349), + [anon_sym_null] = ACTIONS(3351), + [anon_sym_true] = ACTIONS(3353), + [anon_sym_false] = ACTIONS(3353), + [aux_sym__val_number_decimal_token1] = ACTIONS(3355), + [aux_sym__val_number_decimal_token2] = ACTIONS(3357), + [aux_sym__val_number_decimal_token3] = ACTIONS(3359), + [aux_sym__val_number_decimal_token4] = ACTIONS(3361), [aux_sym__val_number_token1] = ACTIONS(99), [aux_sym__val_number_token2] = ACTIONS(99), [aux_sym__val_number_token3] = ACTIONS(99), - [aux_sym__val_number_token4] = ACTIONS(3354), - [aux_sym__val_number_token5] = ACTIONS(3354), - [aux_sym__val_number_token6] = ACTIONS(3354), + [aux_sym__val_number_token4] = ACTIONS(3363), + [aux_sym__val_number_token5] = ACTIONS(3363), + [aux_sym__val_number_token6] = ACTIONS(3363), [anon_sym_0b] = ACTIONS(103), [anon_sym_0o] = ACTIONS(105), [anon_sym_0x] = ACTIONS(105), - [sym_val_date] = ACTIONS(3356), + [sym_val_date] = ACTIONS(3365), [anon_sym_DQUOTE] = ACTIONS(109), [sym__str_single_quotes] = ACTIONS(111), [sym__str_back_ticks] = ACTIONS(111), @@ -187162,7 +187162,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3358), + [aux_sym_unquoted_token1] = ACTIONS(3367), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(123), }, @@ -187204,27 +187204,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(45), [anon_sym_LBRACE] = ACTIONS(63), - [anon_sym_DOT_DOT] = ACTIONS(3338), + [anon_sym_DOT_DOT] = ACTIONS(3347), [aux_sym_expr_unary_token1] = ACTIONS(83), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3340), - [anon_sym_DOT_DOT_LT] = ACTIONS(3340), - [anon_sym_null] = ACTIONS(3342), - [anon_sym_true] = ACTIONS(3344), - [anon_sym_false] = ACTIONS(3344), - [aux_sym__val_number_decimal_token1] = ACTIONS(3346), - [aux_sym__val_number_decimal_token2] = ACTIONS(3348), - [aux_sym__val_number_decimal_token3] = ACTIONS(3350), - [aux_sym__val_number_decimal_token4] = ACTIONS(3352), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3349), + [anon_sym_DOT_DOT_LT] = ACTIONS(3349), + [anon_sym_null] = ACTIONS(3351), + [anon_sym_true] = ACTIONS(3353), + [anon_sym_false] = ACTIONS(3353), + [aux_sym__val_number_decimal_token1] = ACTIONS(3355), + [aux_sym__val_number_decimal_token2] = ACTIONS(3357), + [aux_sym__val_number_decimal_token3] = ACTIONS(3359), + [aux_sym__val_number_decimal_token4] = ACTIONS(3361), [aux_sym__val_number_token1] = ACTIONS(99), [aux_sym__val_number_token2] = ACTIONS(99), [aux_sym__val_number_token3] = ACTIONS(99), - [aux_sym__val_number_token4] = ACTIONS(3354), - [aux_sym__val_number_token5] = ACTIONS(3354), - [aux_sym__val_number_token6] = ACTIONS(3354), + [aux_sym__val_number_token4] = ACTIONS(3363), + [aux_sym__val_number_token5] = ACTIONS(3363), + [aux_sym__val_number_token6] = ACTIONS(3363), [anon_sym_0b] = ACTIONS(103), [anon_sym_0o] = ACTIONS(105), [anon_sym_0x] = ACTIONS(105), - [sym_val_date] = ACTIONS(3356), + [sym_val_date] = ACTIONS(3365), [anon_sym_DQUOTE] = ACTIONS(109), [sym__str_single_quotes] = ACTIONS(111), [sym__str_back_ticks] = ACTIONS(111), @@ -187246,7 +187246,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3358), + [aux_sym_unquoted_token1] = ACTIONS(3367), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(123), }, @@ -187288,27 +187288,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3214), + [anon_sym_DOT_DOT] = ACTIONS(3221), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3216), - [anon_sym_DOT_DOT_LT] = ACTIONS(3216), - [anon_sym_null] = ACTIONS(3218), - [anon_sym_true] = ACTIONS(3220), - [anon_sym_false] = ACTIONS(3220), - [aux_sym__val_number_decimal_token1] = ACTIONS(3222), - [aux_sym__val_number_decimal_token2] = ACTIONS(3224), - [aux_sym__val_number_decimal_token3] = ACTIONS(3226), - [aux_sym__val_number_decimal_token4] = ACTIONS(3228), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3223), + [anon_sym_DOT_DOT_LT] = ACTIONS(3223), + [anon_sym_null] = ACTIONS(3225), + [anon_sym_true] = ACTIONS(3227), + [anon_sym_false] = ACTIONS(3227), + [aux_sym__val_number_decimal_token1] = ACTIONS(3229), + [aux_sym__val_number_decimal_token2] = ACTIONS(3231), + [aux_sym__val_number_decimal_token3] = ACTIONS(3233), + [aux_sym__val_number_decimal_token4] = ACTIONS(3235), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3230), - [aux_sym__val_number_token5] = ACTIONS(3230), - [aux_sym__val_number_token6] = ACTIONS(3230), + [aux_sym__val_number_token4] = ACTIONS(3237), + [aux_sym__val_number_token5] = ACTIONS(3237), + [aux_sym__val_number_token6] = ACTIONS(3237), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3232), + [sym_val_date] = ACTIONS(3239), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), @@ -187330,7 +187330,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3212), + [aux_sym_unquoted_token1] = ACTIONS(3219), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, @@ -187372,27 +187372,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3214), + [anon_sym_DOT_DOT] = ACTIONS(3221), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3216), - [anon_sym_DOT_DOT_LT] = ACTIONS(3216), - [anon_sym_null] = ACTIONS(3218), - [anon_sym_true] = ACTIONS(3220), - [anon_sym_false] = ACTIONS(3220), - [aux_sym__val_number_decimal_token1] = ACTIONS(3222), - [aux_sym__val_number_decimal_token2] = ACTIONS(3224), - [aux_sym__val_number_decimal_token3] = ACTIONS(3226), - [aux_sym__val_number_decimal_token4] = ACTIONS(3228), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3223), + [anon_sym_DOT_DOT_LT] = ACTIONS(3223), + [anon_sym_null] = ACTIONS(3225), + [anon_sym_true] = ACTIONS(3227), + [anon_sym_false] = ACTIONS(3227), + [aux_sym__val_number_decimal_token1] = ACTIONS(3229), + [aux_sym__val_number_decimal_token2] = ACTIONS(3231), + [aux_sym__val_number_decimal_token3] = ACTIONS(3233), + [aux_sym__val_number_decimal_token4] = ACTIONS(3235), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3230), - [aux_sym__val_number_token5] = ACTIONS(3230), - [aux_sym__val_number_token6] = ACTIONS(3230), + [aux_sym__val_number_token4] = ACTIONS(3237), + [aux_sym__val_number_token5] = ACTIONS(3237), + [aux_sym__val_number_token6] = ACTIONS(3237), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3232), + [sym_val_date] = ACTIONS(3239), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), @@ -187414,7 +187414,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3212), + [aux_sym_unquoted_token1] = ACTIONS(3219), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, @@ -187456,27 +187456,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3214), + [anon_sym_DOT_DOT] = ACTIONS(3221), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3216), - [anon_sym_DOT_DOT_LT] = ACTIONS(3216), - [anon_sym_null] = ACTIONS(3218), - [anon_sym_true] = ACTIONS(3220), - [anon_sym_false] = ACTIONS(3220), - [aux_sym__val_number_decimal_token1] = ACTIONS(3222), - [aux_sym__val_number_decimal_token2] = ACTIONS(3224), - [aux_sym__val_number_decimal_token3] = ACTIONS(3226), - [aux_sym__val_number_decimal_token4] = ACTIONS(3228), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3223), + [anon_sym_DOT_DOT_LT] = ACTIONS(3223), + [anon_sym_null] = ACTIONS(3225), + [anon_sym_true] = ACTIONS(3227), + [anon_sym_false] = ACTIONS(3227), + [aux_sym__val_number_decimal_token1] = ACTIONS(3229), + [aux_sym__val_number_decimal_token2] = ACTIONS(3231), + [aux_sym__val_number_decimal_token3] = ACTIONS(3233), + [aux_sym__val_number_decimal_token4] = ACTIONS(3235), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3230), - [aux_sym__val_number_token5] = ACTIONS(3230), - [aux_sym__val_number_token6] = ACTIONS(3230), + [aux_sym__val_number_token4] = ACTIONS(3237), + [aux_sym__val_number_token5] = ACTIONS(3237), + [aux_sym__val_number_token6] = ACTIONS(3237), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3232), + [sym_val_date] = ACTIONS(3239), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), @@ -187498,7 +187498,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3212), + [aux_sym_unquoted_token1] = ACTIONS(3219), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, @@ -187540,27 +187540,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3214), + [anon_sym_DOT_DOT] = ACTIONS(3221), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3216), - [anon_sym_DOT_DOT_LT] = ACTIONS(3216), - [anon_sym_null] = ACTIONS(3218), - [anon_sym_true] = ACTIONS(3220), - [anon_sym_false] = ACTIONS(3220), - [aux_sym__val_number_decimal_token1] = ACTIONS(3222), - [aux_sym__val_number_decimal_token2] = ACTIONS(3224), - [aux_sym__val_number_decimal_token3] = ACTIONS(3226), - [aux_sym__val_number_decimal_token4] = ACTIONS(3228), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3223), + [anon_sym_DOT_DOT_LT] = ACTIONS(3223), + [anon_sym_null] = ACTIONS(3225), + [anon_sym_true] = ACTIONS(3227), + [anon_sym_false] = ACTIONS(3227), + [aux_sym__val_number_decimal_token1] = ACTIONS(3229), + [aux_sym__val_number_decimal_token2] = ACTIONS(3231), + [aux_sym__val_number_decimal_token3] = ACTIONS(3233), + [aux_sym__val_number_decimal_token4] = ACTIONS(3235), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3230), - [aux_sym__val_number_token5] = ACTIONS(3230), - [aux_sym__val_number_token6] = ACTIONS(3230), + [aux_sym__val_number_token4] = ACTIONS(3237), + [aux_sym__val_number_token5] = ACTIONS(3237), + [aux_sym__val_number_token6] = ACTIONS(3237), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3232), + [sym_val_date] = ACTIONS(3239), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), @@ -187582,7 +187582,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3212), + [aux_sym_unquoted_token1] = ACTIONS(3219), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, @@ -187624,27 +187624,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3214), + [anon_sym_DOT_DOT] = ACTIONS(3221), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3216), - [anon_sym_DOT_DOT_LT] = ACTIONS(3216), - [anon_sym_null] = ACTIONS(3218), - [anon_sym_true] = ACTIONS(3220), - [anon_sym_false] = ACTIONS(3220), - [aux_sym__val_number_decimal_token1] = ACTIONS(3222), - [aux_sym__val_number_decimal_token2] = ACTIONS(3224), - [aux_sym__val_number_decimal_token3] = ACTIONS(3226), - [aux_sym__val_number_decimal_token4] = ACTIONS(3228), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3223), + [anon_sym_DOT_DOT_LT] = ACTIONS(3223), + [anon_sym_null] = ACTIONS(3225), + [anon_sym_true] = ACTIONS(3227), + [anon_sym_false] = ACTIONS(3227), + [aux_sym__val_number_decimal_token1] = ACTIONS(3229), + [aux_sym__val_number_decimal_token2] = ACTIONS(3231), + [aux_sym__val_number_decimal_token3] = ACTIONS(3233), + [aux_sym__val_number_decimal_token4] = ACTIONS(3235), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3230), - [aux_sym__val_number_token5] = ACTIONS(3230), - [aux_sym__val_number_token6] = ACTIONS(3230), + [aux_sym__val_number_token4] = ACTIONS(3237), + [aux_sym__val_number_token5] = ACTIONS(3237), + [aux_sym__val_number_token6] = ACTIONS(3237), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3232), + [sym_val_date] = ACTIONS(3239), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), @@ -187666,7 +187666,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3212), + [aux_sym_unquoted_token1] = ACTIONS(3219), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, @@ -187708,27 +187708,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3214), + [anon_sym_DOT_DOT] = ACTIONS(3221), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3216), - [anon_sym_DOT_DOT_LT] = ACTIONS(3216), - [anon_sym_null] = ACTIONS(3218), - [anon_sym_true] = ACTIONS(3220), - [anon_sym_false] = ACTIONS(3220), - [aux_sym__val_number_decimal_token1] = ACTIONS(3222), - [aux_sym__val_number_decimal_token2] = ACTIONS(3224), - [aux_sym__val_number_decimal_token3] = ACTIONS(3226), - [aux_sym__val_number_decimal_token4] = ACTIONS(3228), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3223), + [anon_sym_DOT_DOT_LT] = ACTIONS(3223), + [anon_sym_null] = ACTIONS(3225), + [anon_sym_true] = ACTIONS(3227), + [anon_sym_false] = ACTIONS(3227), + [aux_sym__val_number_decimal_token1] = ACTIONS(3229), + [aux_sym__val_number_decimal_token2] = ACTIONS(3231), + [aux_sym__val_number_decimal_token3] = ACTIONS(3233), + [aux_sym__val_number_decimal_token4] = ACTIONS(3235), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3230), - [aux_sym__val_number_token5] = ACTIONS(3230), - [aux_sym__val_number_token6] = ACTIONS(3230), + [aux_sym__val_number_token4] = ACTIONS(3237), + [aux_sym__val_number_token5] = ACTIONS(3237), + [aux_sym__val_number_token6] = ACTIONS(3237), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3232), + [sym_val_date] = ACTIONS(3239), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), @@ -187750,7 +187750,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3212), + [aux_sym_unquoted_token1] = ACTIONS(3219), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, @@ -187792,27 +187792,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3214), + [anon_sym_DOT_DOT] = ACTIONS(3221), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3216), - [anon_sym_DOT_DOT_LT] = ACTIONS(3216), - [anon_sym_null] = ACTIONS(3218), - [anon_sym_true] = ACTIONS(3220), - [anon_sym_false] = ACTIONS(3220), - [aux_sym__val_number_decimal_token1] = ACTIONS(3222), - [aux_sym__val_number_decimal_token2] = ACTIONS(3224), - [aux_sym__val_number_decimal_token3] = ACTIONS(3226), - [aux_sym__val_number_decimal_token4] = ACTIONS(3228), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3223), + [anon_sym_DOT_DOT_LT] = ACTIONS(3223), + [anon_sym_null] = ACTIONS(3225), + [anon_sym_true] = ACTIONS(3227), + [anon_sym_false] = ACTIONS(3227), + [aux_sym__val_number_decimal_token1] = ACTIONS(3229), + [aux_sym__val_number_decimal_token2] = ACTIONS(3231), + [aux_sym__val_number_decimal_token3] = ACTIONS(3233), + [aux_sym__val_number_decimal_token4] = ACTIONS(3235), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3230), - [aux_sym__val_number_token5] = ACTIONS(3230), - [aux_sym__val_number_token6] = ACTIONS(3230), + [aux_sym__val_number_token4] = ACTIONS(3237), + [aux_sym__val_number_token5] = ACTIONS(3237), + [aux_sym__val_number_token6] = ACTIONS(3237), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3232), + [sym_val_date] = ACTIONS(3239), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), @@ -187834,7 +187834,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3212), + [aux_sym_unquoted_token1] = ACTIONS(3219), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, @@ -187876,27 +187876,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3214), + [anon_sym_DOT_DOT] = ACTIONS(3221), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3216), - [anon_sym_DOT_DOT_LT] = ACTIONS(3216), - [anon_sym_null] = ACTIONS(3218), - [anon_sym_true] = ACTIONS(3220), - [anon_sym_false] = ACTIONS(3220), - [aux_sym__val_number_decimal_token1] = ACTIONS(3222), - [aux_sym__val_number_decimal_token2] = ACTIONS(3224), - [aux_sym__val_number_decimal_token3] = ACTIONS(3226), - [aux_sym__val_number_decimal_token4] = ACTIONS(3228), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3223), + [anon_sym_DOT_DOT_LT] = ACTIONS(3223), + [anon_sym_null] = ACTIONS(3225), + [anon_sym_true] = ACTIONS(3227), + [anon_sym_false] = ACTIONS(3227), + [aux_sym__val_number_decimal_token1] = ACTIONS(3229), + [aux_sym__val_number_decimal_token2] = ACTIONS(3231), + [aux_sym__val_number_decimal_token3] = ACTIONS(3233), + [aux_sym__val_number_decimal_token4] = ACTIONS(3235), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3230), - [aux_sym__val_number_token5] = ACTIONS(3230), - [aux_sym__val_number_token6] = ACTIONS(3230), + [aux_sym__val_number_token4] = ACTIONS(3237), + [aux_sym__val_number_token5] = ACTIONS(3237), + [aux_sym__val_number_token6] = ACTIONS(3237), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3232), + [sym_val_date] = ACTIONS(3239), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), @@ -187918,7 +187918,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3212), + [aux_sym_unquoted_token1] = ACTIONS(3219), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, @@ -187960,27 +187960,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3214), + [anon_sym_DOT_DOT] = ACTIONS(3221), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3216), - [anon_sym_DOT_DOT_LT] = ACTIONS(3216), - [anon_sym_null] = ACTIONS(3218), - [anon_sym_true] = ACTIONS(3220), - [anon_sym_false] = ACTIONS(3220), - [aux_sym__val_number_decimal_token1] = ACTIONS(3222), - [aux_sym__val_number_decimal_token2] = ACTIONS(3224), - [aux_sym__val_number_decimal_token3] = ACTIONS(3226), - [aux_sym__val_number_decimal_token4] = ACTIONS(3228), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3223), + [anon_sym_DOT_DOT_LT] = ACTIONS(3223), + [anon_sym_null] = ACTIONS(3225), + [anon_sym_true] = ACTIONS(3227), + [anon_sym_false] = ACTIONS(3227), + [aux_sym__val_number_decimal_token1] = ACTIONS(3229), + [aux_sym__val_number_decimal_token2] = ACTIONS(3231), + [aux_sym__val_number_decimal_token3] = ACTIONS(3233), + [aux_sym__val_number_decimal_token4] = ACTIONS(3235), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3230), - [aux_sym__val_number_token5] = ACTIONS(3230), - [aux_sym__val_number_token6] = ACTIONS(3230), + [aux_sym__val_number_token4] = ACTIONS(3237), + [aux_sym__val_number_token5] = ACTIONS(3237), + [aux_sym__val_number_token6] = ACTIONS(3237), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3232), + [sym_val_date] = ACTIONS(3239), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), @@ -188002,7 +188002,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3212), + [aux_sym_unquoted_token1] = ACTIONS(3219), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, @@ -188044,27 +188044,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3214), + [anon_sym_DOT_DOT] = ACTIONS(3221), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3216), - [anon_sym_DOT_DOT_LT] = ACTIONS(3216), - [anon_sym_null] = ACTIONS(3218), - [anon_sym_true] = ACTIONS(3220), - [anon_sym_false] = ACTIONS(3220), - [aux_sym__val_number_decimal_token1] = ACTIONS(3222), - [aux_sym__val_number_decimal_token2] = ACTIONS(3224), - [aux_sym__val_number_decimal_token3] = ACTIONS(3226), - [aux_sym__val_number_decimal_token4] = ACTIONS(3228), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3223), + [anon_sym_DOT_DOT_LT] = ACTIONS(3223), + [anon_sym_null] = ACTIONS(3225), + [anon_sym_true] = ACTIONS(3227), + [anon_sym_false] = ACTIONS(3227), + [aux_sym__val_number_decimal_token1] = ACTIONS(3229), + [aux_sym__val_number_decimal_token2] = ACTIONS(3231), + [aux_sym__val_number_decimal_token3] = ACTIONS(3233), + [aux_sym__val_number_decimal_token4] = ACTIONS(3235), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3230), - [aux_sym__val_number_token5] = ACTIONS(3230), - [aux_sym__val_number_token6] = ACTIONS(3230), + [aux_sym__val_number_token4] = ACTIONS(3237), + [aux_sym__val_number_token5] = ACTIONS(3237), + [aux_sym__val_number_token6] = ACTIONS(3237), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3232), + [sym_val_date] = ACTIONS(3239), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), @@ -188086,7 +188086,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3212), + [aux_sym_unquoted_token1] = ACTIONS(3219), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, @@ -188128,27 +188128,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3214), + [anon_sym_DOT_DOT] = ACTIONS(3221), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3216), - [anon_sym_DOT_DOT_LT] = ACTIONS(3216), - [anon_sym_null] = ACTIONS(3218), - [anon_sym_true] = ACTIONS(3220), - [anon_sym_false] = ACTIONS(3220), - [aux_sym__val_number_decimal_token1] = ACTIONS(3222), - [aux_sym__val_number_decimal_token2] = ACTIONS(3224), - [aux_sym__val_number_decimal_token3] = ACTIONS(3226), - [aux_sym__val_number_decimal_token4] = ACTIONS(3228), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3223), + [anon_sym_DOT_DOT_LT] = ACTIONS(3223), + [anon_sym_null] = ACTIONS(3225), + [anon_sym_true] = ACTIONS(3227), + [anon_sym_false] = ACTIONS(3227), + [aux_sym__val_number_decimal_token1] = ACTIONS(3229), + [aux_sym__val_number_decimal_token2] = ACTIONS(3231), + [aux_sym__val_number_decimal_token3] = ACTIONS(3233), + [aux_sym__val_number_decimal_token4] = ACTIONS(3235), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3230), - [aux_sym__val_number_token5] = ACTIONS(3230), - [aux_sym__val_number_token6] = ACTIONS(3230), + [aux_sym__val_number_token4] = ACTIONS(3237), + [aux_sym__val_number_token5] = ACTIONS(3237), + [aux_sym__val_number_token6] = ACTIONS(3237), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3232), + [sym_val_date] = ACTIONS(3239), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), @@ -188170,7 +188170,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3212), + [aux_sym_unquoted_token1] = ACTIONS(3219), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, @@ -188212,27 +188212,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3214), + [anon_sym_DOT_DOT] = ACTIONS(3221), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3216), - [anon_sym_DOT_DOT_LT] = ACTIONS(3216), - [anon_sym_null] = ACTIONS(3218), - [anon_sym_true] = ACTIONS(3220), - [anon_sym_false] = ACTIONS(3220), - [aux_sym__val_number_decimal_token1] = ACTIONS(3222), - [aux_sym__val_number_decimal_token2] = ACTIONS(3224), - [aux_sym__val_number_decimal_token3] = ACTIONS(3226), - [aux_sym__val_number_decimal_token4] = ACTIONS(3228), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3223), + [anon_sym_DOT_DOT_LT] = ACTIONS(3223), + [anon_sym_null] = ACTIONS(3225), + [anon_sym_true] = ACTIONS(3227), + [anon_sym_false] = ACTIONS(3227), + [aux_sym__val_number_decimal_token1] = ACTIONS(3229), + [aux_sym__val_number_decimal_token2] = ACTIONS(3231), + [aux_sym__val_number_decimal_token3] = ACTIONS(3233), + [aux_sym__val_number_decimal_token4] = ACTIONS(3235), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3230), - [aux_sym__val_number_token5] = ACTIONS(3230), - [aux_sym__val_number_token6] = ACTIONS(3230), + [aux_sym__val_number_token4] = ACTIONS(3237), + [aux_sym__val_number_token5] = ACTIONS(3237), + [aux_sym__val_number_token6] = ACTIONS(3237), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3232), + [sym_val_date] = ACTIONS(3239), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), @@ -188254,7 +188254,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3212), + [aux_sym_unquoted_token1] = ACTIONS(3219), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, @@ -188296,27 +188296,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3214), + [anon_sym_DOT_DOT] = ACTIONS(3221), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3216), - [anon_sym_DOT_DOT_LT] = ACTIONS(3216), - [anon_sym_null] = ACTIONS(3218), - [anon_sym_true] = ACTIONS(3220), - [anon_sym_false] = ACTIONS(3220), - [aux_sym__val_number_decimal_token1] = ACTIONS(3222), - [aux_sym__val_number_decimal_token2] = ACTIONS(3224), - [aux_sym__val_number_decimal_token3] = ACTIONS(3226), - [aux_sym__val_number_decimal_token4] = ACTIONS(3228), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3223), + [anon_sym_DOT_DOT_LT] = ACTIONS(3223), + [anon_sym_null] = ACTIONS(3225), + [anon_sym_true] = ACTIONS(3227), + [anon_sym_false] = ACTIONS(3227), + [aux_sym__val_number_decimal_token1] = ACTIONS(3229), + [aux_sym__val_number_decimal_token2] = ACTIONS(3231), + [aux_sym__val_number_decimal_token3] = ACTIONS(3233), + [aux_sym__val_number_decimal_token4] = ACTIONS(3235), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3230), - [aux_sym__val_number_token5] = ACTIONS(3230), - [aux_sym__val_number_token6] = ACTIONS(3230), + [aux_sym__val_number_token4] = ACTIONS(3237), + [aux_sym__val_number_token5] = ACTIONS(3237), + [aux_sym__val_number_token6] = ACTIONS(3237), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3232), + [sym_val_date] = ACTIONS(3239), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), @@ -188338,7 +188338,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3212), + [aux_sym_unquoted_token1] = ACTIONS(3219), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, @@ -188380,27 +188380,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(45), [anon_sym_LBRACE] = ACTIONS(63), - [anon_sym_DOT_DOT] = ACTIONS(3338), + [anon_sym_DOT_DOT] = ACTIONS(3347), [aux_sym_expr_unary_token1] = ACTIONS(83), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3340), - [anon_sym_DOT_DOT_LT] = ACTIONS(3340), - [anon_sym_null] = ACTIONS(3342), - [anon_sym_true] = ACTIONS(3344), - [anon_sym_false] = ACTIONS(3344), - [aux_sym__val_number_decimal_token1] = ACTIONS(3346), - [aux_sym__val_number_decimal_token2] = ACTIONS(3348), - [aux_sym__val_number_decimal_token3] = ACTIONS(3350), - [aux_sym__val_number_decimal_token4] = ACTIONS(3352), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3349), + [anon_sym_DOT_DOT_LT] = ACTIONS(3349), + [anon_sym_null] = ACTIONS(3351), + [anon_sym_true] = ACTIONS(3353), + [anon_sym_false] = ACTIONS(3353), + [aux_sym__val_number_decimal_token1] = ACTIONS(3355), + [aux_sym__val_number_decimal_token2] = ACTIONS(3357), + [aux_sym__val_number_decimal_token3] = ACTIONS(3359), + [aux_sym__val_number_decimal_token4] = ACTIONS(3361), [aux_sym__val_number_token1] = ACTIONS(99), [aux_sym__val_number_token2] = ACTIONS(99), [aux_sym__val_number_token3] = ACTIONS(99), - [aux_sym__val_number_token4] = ACTIONS(3354), - [aux_sym__val_number_token5] = ACTIONS(3354), - [aux_sym__val_number_token6] = ACTIONS(3354), + [aux_sym__val_number_token4] = ACTIONS(3363), + [aux_sym__val_number_token5] = ACTIONS(3363), + [aux_sym__val_number_token6] = ACTIONS(3363), [anon_sym_0b] = ACTIONS(103), [anon_sym_0o] = ACTIONS(105), [anon_sym_0x] = ACTIONS(105), - [sym_val_date] = ACTIONS(3356), + [sym_val_date] = ACTIONS(3365), [anon_sym_DQUOTE] = ACTIONS(109), [sym__str_single_quotes] = ACTIONS(111), [sym__str_back_ticks] = ACTIONS(111), @@ -188422,7 +188422,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3358), + [aux_sym_unquoted_token1] = ACTIONS(3367), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(123), }, @@ -188464,27 +188464,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(45), [anon_sym_LBRACE] = ACTIONS(63), - [anon_sym_DOT_DOT] = ACTIONS(3338), + [anon_sym_DOT_DOT] = ACTIONS(3347), [aux_sym_expr_unary_token1] = ACTIONS(83), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3340), - [anon_sym_DOT_DOT_LT] = ACTIONS(3340), - [anon_sym_null] = ACTIONS(3342), - [anon_sym_true] = ACTIONS(3344), - [anon_sym_false] = ACTIONS(3344), - [aux_sym__val_number_decimal_token1] = ACTIONS(3346), - [aux_sym__val_number_decimal_token2] = ACTIONS(3348), - [aux_sym__val_number_decimal_token3] = ACTIONS(3350), - [aux_sym__val_number_decimal_token4] = ACTIONS(3352), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3349), + [anon_sym_DOT_DOT_LT] = ACTIONS(3349), + [anon_sym_null] = ACTIONS(3351), + [anon_sym_true] = ACTIONS(3353), + [anon_sym_false] = ACTIONS(3353), + [aux_sym__val_number_decimal_token1] = ACTIONS(3355), + [aux_sym__val_number_decimal_token2] = ACTIONS(3357), + [aux_sym__val_number_decimal_token3] = ACTIONS(3359), + [aux_sym__val_number_decimal_token4] = ACTIONS(3361), [aux_sym__val_number_token1] = ACTIONS(99), [aux_sym__val_number_token2] = ACTIONS(99), [aux_sym__val_number_token3] = ACTIONS(99), - [aux_sym__val_number_token4] = ACTIONS(3354), - [aux_sym__val_number_token5] = ACTIONS(3354), - [aux_sym__val_number_token6] = ACTIONS(3354), + [aux_sym__val_number_token4] = ACTIONS(3363), + [aux_sym__val_number_token5] = ACTIONS(3363), + [aux_sym__val_number_token6] = ACTIONS(3363), [anon_sym_0b] = ACTIONS(103), [anon_sym_0o] = ACTIONS(105), [anon_sym_0x] = ACTIONS(105), - [sym_val_date] = ACTIONS(3356), + [sym_val_date] = ACTIONS(3365), [anon_sym_DQUOTE] = ACTIONS(109), [sym__str_single_quotes] = ACTIONS(111), [sym__str_back_ticks] = ACTIONS(111), @@ -188506,7 +188506,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3358), + [aux_sym_unquoted_token1] = ACTIONS(3367), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(123), }, @@ -188548,27 +188548,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(45), [anon_sym_LBRACE] = ACTIONS(63), - [anon_sym_DOT_DOT] = ACTIONS(3338), + [anon_sym_DOT_DOT] = ACTIONS(3347), [aux_sym_expr_unary_token1] = ACTIONS(83), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3340), - [anon_sym_DOT_DOT_LT] = ACTIONS(3340), - [anon_sym_null] = ACTIONS(3342), - [anon_sym_true] = ACTIONS(3344), - [anon_sym_false] = ACTIONS(3344), - [aux_sym__val_number_decimal_token1] = ACTIONS(3346), - [aux_sym__val_number_decimal_token2] = ACTIONS(3348), - [aux_sym__val_number_decimal_token3] = ACTIONS(3350), - [aux_sym__val_number_decimal_token4] = ACTIONS(3352), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3349), + [anon_sym_DOT_DOT_LT] = ACTIONS(3349), + [anon_sym_null] = ACTIONS(3351), + [anon_sym_true] = ACTIONS(3353), + [anon_sym_false] = ACTIONS(3353), + [aux_sym__val_number_decimal_token1] = ACTIONS(3355), + [aux_sym__val_number_decimal_token2] = ACTIONS(3357), + [aux_sym__val_number_decimal_token3] = ACTIONS(3359), + [aux_sym__val_number_decimal_token4] = ACTIONS(3361), [aux_sym__val_number_token1] = ACTIONS(99), [aux_sym__val_number_token2] = ACTIONS(99), [aux_sym__val_number_token3] = ACTIONS(99), - [aux_sym__val_number_token4] = ACTIONS(3354), - [aux_sym__val_number_token5] = ACTIONS(3354), - [aux_sym__val_number_token6] = ACTIONS(3354), + [aux_sym__val_number_token4] = ACTIONS(3363), + [aux_sym__val_number_token5] = ACTIONS(3363), + [aux_sym__val_number_token6] = ACTIONS(3363), [anon_sym_0b] = ACTIONS(103), [anon_sym_0o] = ACTIONS(105), [anon_sym_0x] = ACTIONS(105), - [sym_val_date] = ACTIONS(3356), + [sym_val_date] = ACTIONS(3365), [anon_sym_DQUOTE] = ACTIONS(109), [sym__str_single_quotes] = ACTIONS(111), [sym__str_back_ticks] = ACTIONS(111), @@ -188590,7 +188590,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3358), + [aux_sym_unquoted_token1] = ACTIONS(3367), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(123), }, @@ -188632,27 +188632,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(45), [anon_sym_LBRACE] = ACTIONS(63), - [anon_sym_DOT_DOT] = ACTIONS(3338), + [anon_sym_DOT_DOT] = ACTIONS(3347), [aux_sym_expr_unary_token1] = ACTIONS(83), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3340), - [anon_sym_DOT_DOT_LT] = ACTIONS(3340), - [anon_sym_null] = ACTIONS(3342), - [anon_sym_true] = ACTIONS(3344), - [anon_sym_false] = ACTIONS(3344), - [aux_sym__val_number_decimal_token1] = ACTIONS(3346), - [aux_sym__val_number_decimal_token2] = ACTIONS(3348), - [aux_sym__val_number_decimal_token3] = ACTIONS(3350), - [aux_sym__val_number_decimal_token4] = ACTIONS(3352), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3349), + [anon_sym_DOT_DOT_LT] = ACTIONS(3349), + [anon_sym_null] = ACTIONS(3351), + [anon_sym_true] = ACTIONS(3353), + [anon_sym_false] = ACTIONS(3353), + [aux_sym__val_number_decimal_token1] = ACTIONS(3355), + [aux_sym__val_number_decimal_token2] = ACTIONS(3357), + [aux_sym__val_number_decimal_token3] = ACTIONS(3359), + [aux_sym__val_number_decimal_token4] = ACTIONS(3361), [aux_sym__val_number_token1] = ACTIONS(99), [aux_sym__val_number_token2] = ACTIONS(99), [aux_sym__val_number_token3] = ACTIONS(99), - [aux_sym__val_number_token4] = ACTIONS(3354), - [aux_sym__val_number_token5] = ACTIONS(3354), - [aux_sym__val_number_token6] = ACTIONS(3354), + [aux_sym__val_number_token4] = ACTIONS(3363), + [aux_sym__val_number_token5] = ACTIONS(3363), + [aux_sym__val_number_token6] = ACTIONS(3363), [anon_sym_0b] = ACTIONS(103), [anon_sym_0o] = ACTIONS(105), [anon_sym_0x] = ACTIONS(105), - [sym_val_date] = ACTIONS(3356), + [sym_val_date] = ACTIONS(3365), [anon_sym_DQUOTE] = ACTIONS(109), [sym__str_single_quotes] = ACTIONS(111), [sym__str_back_ticks] = ACTIONS(111), @@ -188674,7 +188674,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3358), + [aux_sym_unquoted_token1] = ACTIONS(3367), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(123), }, @@ -188716,27 +188716,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(45), [anon_sym_LBRACE] = ACTIONS(63), - [anon_sym_DOT_DOT] = ACTIONS(3338), + [anon_sym_DOT_DOT] = ACTIONS(3347), [aux_sym_expr_unary_token1] = ACTIONS(83), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3340), - [anon_sym_DOT_DOT_LT] = ACTIONS(3340), - [anon_sym_null] = ACTIONS(3342), - [anon_sym_true] = ACTIONS(3344), - [anon_sym_false] = ACTIONS(3344), - [aux_sym__val_number_decimal_token1] = ACTIONS(3346), - [aux_sym__val_number_decimal_token2] = ACTIONS(3348), - [aux_sym__val_number_decimal_token3] = ACTIONS(3350), - [aux_sym__val_number_decimal_token4] = ACTIONS(3352), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3349), + [anon_sym_DOT_DOT_LT] = ACTIONS(3349), + [anon_sym_null] = ACTIONS(3351), + [anon_sym_true] = ACTIONS(3353), + [anon_sym_false] = ACTIONS(3353), + [aux_sym__val_number_decimal_token1] = ACTIONS(3355), + [aux_sym__val_number_decimal_token2] = ACTIONS(3357), + [aux_sym__val_number_decimal_token3] = ACTIONS(3359), + [aux_sym__val_number_decimal_token4] = ACTIONS(3361), [aux_sym__val_number_token1] = ACTIONS(99), [aux_sym__val_number_token2] = ACTIONS(99), [aux_sym__val_number_token3] = ACTIONS(99), - [aux_sym__val_number_token4] = ACTIONS(3354), - [aux_sym__val_number_token5] = ACTIONS(3354), - [aux_sym__val_number_token6] = ACTIONS(3354), + [aux_sym__val_number_token4] = ACTIONS(3363), + [aux_sym__val_number_token5] = ACTIONS(3363), + [aux_sym__val_number_token6] = ACTIONS(3363), [anon_sym_0b] = ACTIONS(103), [anon_sym_0o] = ACTIONS(105), [anon_sym_0x] = ACTIONS(105), - [sym_val_date] = ACTIONS(3356), + [sym_val_date] = ACTIONS(3365), [anon_sym_DQUOTE] = ACTIONS(109), [sym__str_single_quotes] = ACTIONS(111), [sym__str_back_ticks] = ACTIONS(111), @@ -188758,7 +188758,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3358), + [aux_sym_unquoted_token1] = ACTIONS(3367), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(123), }, @@ -188800,27 +188800,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(45), [anon_sym_LBRACE] = ACTIONS(63), - [anon_sym_DOT_DOT] = ACTIONS(3338), + [anon_sym_DOT_DOT] = ACTIONS(3347), [aux_sym_expr_unary_token1] = ACTIONS(83), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3340), - [anon_sym_DOT_DOT_LT] = ACTIONS(3340), - [anon_sym_null] = ACTIONS(3342), - [anon_sym_true] = ACTIONS(3344), - [anon_sym_false] = ACTIONS(3344), - [aux_sym__val_number_decimal_token1] = ACTIONS(3346), - [aux_sym__val_number_decimal_token2] = ACTIONS(3348), - [aux_sym__val_number_decimal_token3] = ACTIONS(3350), - [aux_sym__val_number_decimal_token4] = ACTIONS(3352), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3349), + [anon_sym_DOT_DOT_LT] = ACTIONS(3349), + [anon_sym_null] = ACTIONS(3351), + [anon_sym_true] = ACTIONS(3353), + [anon_sym_false] = ACTIONS(3353), + [aux_sym__val_number_decimal_token1] = ACTIONS(3355), + [aux_sym__val_number_decimal_token2] = ACTIONS(3357), + [aux_sym__val_number_decimal_token3] = ACTIONS(3359), + [aux_sym__val_number_decimal_token4] = ACTIONS(3361), [aux_sym__val_number_token1] = ACTIONS(99), [aux_sym__val_number_token2] = ACTIONS(99), [aux_sym__val_number_token3] = ACTIONS(99), - [aux_sym__val_number_token4] = ACTIONS(3354), - [aux_sym__val_number_token5] = ACTIONS(3354), - [aux_sym__val_number_token6] = ACTIONS(3354), + [aux_sym__val_number_token4] = ACTIONS(3363), + [aux_sym__val_number_token5] = ACTIONS(3363), + [aux_sym__val_number_token6] = ACTIONS(3363), [anon_sym_0b] = ACTIONS(103), [anon_sym_0o] = ACTIONS(105), [anon_sym_0x] = ACTIONS(105), - [sym_val_date] = ACTIONS(3356), + [sym_val_date] = ACTIONS(3365), [anon_sym_DQUOTE] = ACTIONS(109), [sym__str_single_quotes] = ACTIONS(111), [sym__str_back_ticks] = ACTIONS(111), @@ -188842,7 +188842,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3358), + [aux_sym_unquoted_token1] = ACTIONS(3367), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(123), }, @@ -188884,27 +188884,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(45), [anon_sym_LBRACE] = ACTIONS(63), - [anon_sym_DOT_DOT] = ACTIONS(3360), + [anon_sym_DOT_DOT] = ACTIONS(3369), [aux_sym_expr_unary_token1] = ACTIONS(83), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3362), - [anon_sym_DOT_DOT_LT] = ACTIONS(3362), - [anon_sym_null] = ACTIONS(3364), - [anon_sym_true] = ACTIONS(3366), - [anon_sym_false] = ACTIONS(3366), - [aux_sym__val_number_decimal_token1] = ACTIONS(3368), - [aux_sym__val_number_decimal_token2] = ACTIONS(3370), - [aux_sym__val_number_decimal_token3] = ACTIONS(3372), - [aux_sym__val_number_decimal_token4] = ACTIONS(3374), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3371), + [anon_sym_DOT_DOT_LT] = ACTIONS(3371), + [anon_sym_null] = ACTIONS(3373), + [anon_sym_true] = ACTIONS(3375), + [anon_sym_false] = ACTIONS(3375), + [aux_sym__val_number_decimal_token1] = ACTIONS(3377), + [aux_sym__val_number_decimal_token2] = ACTIONS(3379), + [aux_sym__val_number_decimal_token3] = ACTIONS(3381), + [aux_sym__val_number_decimal_token4] = ACTIONS(3383), [aux_sym__val_number_token1] = ACTIONS(99), [aux_sym__val_number_token2] = ACTIONS(99), [aux_sym__val_number_token3] = ACTIONS(99), - [aux_sym__val_number_token4] = ACTIONS(3376), - [aux_sym__val_number_token5] = ACTIONS(3376), - [aux_sym__val_number_token6] = ACTIONS(3376), + [aux_sym__val_number_token4] = ACTIONS(3385), + [aux_sym__val_number_token5] = ACTIONS(3385), + [aux_sym__val_number_token6] = ACTIONS(3385), [anon_sym_0b] = ACTIONS(103), [anon_sym_0o] = ACTIONS(105), [anon_sym_0x] = ACTIONS(105), - [sym_val_date] = ACTIONS(3378), + [sym_val_date] = ACTIONS(3387), [anon_sym_DQUOTE] = ACTIONS(109), [sym__str_single_quotes] = ACTIONS(111), [sym__str_back_ticks] = ACTIONS(111), @@ -188926,7 +188926,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3358), + [aux_sym_unquoted_token1] = ACTIONS(3367), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(123), }, @@ -188968,27 +188968,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3234), + [anon_sym_DOT_DOT] = ACTIONS(3241), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3236), - [anon_sym_DOT_DOT_LT] = ACTIONS(3236), - [anon_sym_null] = ACTIONS(3238), - [anon_sym_true] = ACTIONS(3240), - [anon_sym_false] = ACTIONS(3240), - [aux_sym__val_number_decimal_token1] = ACTIONS(3242), - [aux_sym__val_number_decimal_token2] = ACTIONS(3244), - [aux_sym__val_number_decimal_token3] = ACTIONS(3246), - [aux_sym__val_number_decimal_token4] = ACTIONS(3248), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3243), + [anon_sym_DOT_DOT_LT] = ACTIONS(3243), + [anon_sym_null] = ACTIONS(3245), + [anon_sym_true] = ACTIONS(3247), + [anon_sym_false] = ACTIONS(3247), + [aux_sym__val_number_decimal_token1] = ACTIONS(3249), + [aux_sym__val_number_decimal_token2] = ACTIONS(3251), + [aux_sym__val_number_decimal_token3] = ACTIONS(3253), + [aux_sym__val_number_decimal_token4] = ACTIONS(3255), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3250), - [aux_sym__val_number_token5] = ACTIONS(3250), - [aux_sym__val_number_token6] = ACTIONS(3250), + [aux_sym__val_number_token4] = ACTIONS(3257), + [aux_sym__val_number_token5] = ACTIONS(3257), + [aux_sym__val_number_token6] = ACTIONS(3257), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3252), + [sym_val_date] = ACTIONS(3259), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), @@ -189010,7 +189010,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3212), + [aux_sym_unquoted_token1] = ACTIONS(3219), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, @@ -189052,27 +189052,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3234), + [anon_sym_DOT_DOT] = ACTIONS(3241), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3236), - [anon_sym_DOT_DOT_LT] = ACTIONS(3236), - [anon_sym_null] = ACTIONS(3238), - [anon_sym_true] = ACTIONS(3240), - [anon_sym_false] = ACTIONS(3240), - [aux_sym__val_number_decimal_token1] = ACTIONS(3242), - [aux_sym__val_number_decimal_token2] = ACTIONS(3244), - [aux_sym__val_number_decimal_token3] = ACTIONS(3246), - [aux_sym__val_number_decimal_token4] = ACTIONS(3248), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3243), + [anon_sym_DOT_DOT_LT] = ACTIONS(3243), + [anon_sym_null] = ACTIONS(3245), + [anon_sym_true] = ACTIONS(3247), + [anon_sym_false] = ACTIONS(3247), + [aux_sym__val_number_decimal_token1] = ACTIONS(3249), + [aux_sym__val_number_decimal_token2] = ACTIONS(3251), + [aux_sym__val_number_decimal_token3] = ACTIONS(3253), + [aux_sym__val_number_decimal_token4] = ACTIONS(3255), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3250), - [aux_sym__val_number_token5] = ACTIONS(3250), - [aux_sym__val_number_token6] = ACTIONS(3250), + [aux_sym__val_number_token4] = ACTIONS(3257), + [aux_sym__val_number_token5] = ACTIONS(3257), + [aux_sym__val_number_token6] = ACTIONS(3257), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3252), + [sym_val_date] = ACTIONS(3259), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), @@ -189094,7 +189094,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3212), + [aux_sym_unquoted_token1] = ACTIONS(3219), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, @@ -189136,27 +189136,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3234), + [anon_sym_DOT_DOT] = ACTIONS(3241), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3236), - [anon_sym_DOT_DOT_LT] = ACTIONS(3236), - [anon_sym_null] = ACTIONS(3238), - [anon_sym_true] = ACTIONS(3240), - [anon_sym_false] = ACTIONS(3240), - [aux_sym__val_number_decimal_token1] = ACTIONS(3242), - [aux_sym__val_number_decimal_token2] = ACTIONS(3244), - [aux_sym__val_number_decimal_token3] = ACTIONS(3246), - [aux_sym__val_number_decimal_token4] = ACTIONS(3248), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3243), + [anon_sym_DOT_DOT_LT] = ACTIONS(3243), + [anon_sym_null] = ACTIONS(3245), + [anon_sym_true] = ACTIONS(3247), + [anon_sym_false] = ACTIONS(3247), + [aux_sym__val_number_decimal_token1] = ACTIONS(3249), + [aux_sym__val_number_decimal_token2] = ACTIONS(3251), + [aux_sym__val_number_decimal_token3] = ACTIONS(3253), + [aux_sym__val_number_decimal_token4] = ACTIONS(3255), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3250), - [aux_sym__val_number_token5] = ACTIONS(3250), - [aux_sym__val_number_token6] = ACTIONS(3250), + [aux_sym__val_number_token4] = ACTIONS(3257), + [aux_sym__val_number_token5] = ACTIONS(3257), + [aux_sym__val_number_token6] = ACTIONS(3257), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3252), + [sym_val_date] = ACTIONS(3259), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), @@ -189178,7 +189178,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3212), + [aux_sym_unquoted_token1] = ACTIONS(3219), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, @@ -189220,27 +189220,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3234), + [anon_sym_DOT_DOT] = ACTIONS(3241), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3236), - [anon_sym_DOT_DOT_LT] = ACTIONS(3236), - [anon_sym_null] = ACTIONS(3238), - [anon_sym_true] = ACTIONS(3240), - [anon_sym_false] = ACTIONS(3240), - [aux_sym__val_number_decimal_token1] = ACTIONS(3242), - [aux_sym__val_number_decimal_token2] = ACTIONS(3244), - [aux_sym__val_number_decimal_token3] = ACTIONS(3246), - [aux_sym__val_number_decimal_token4] = ACTIONS(3248), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3243), + [anon_sym_DOT_DOT_LT] = ACTIONS(3243), + [anon_sym_null] = ACTIONS(3245), + [anon_sym_true] = ACTIONS(3247), + [anon_sym_false] = ACTIONS(3247), + [aux_sym__val_number_decimal_token1] = ACTIONS(3249), + [aux_sym__val_number_decimal_token2] = ACTIONS(3251), + [aux_sym__val_number_decimal_token3] = ACTIONS(3253), + [aux_sym__val_number_decimal_token4] = ACTIONS(3255), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3250), - [aux_sym__val_number_token5] = ACTIONS(3250), - [aux_sym__val_number_token6] = ACTIONS(3250), + [aux_sym__val_number_token4] = ACTIONS(3257), + [aux_sym__val_number_token5] = ACTIONS(3257), + [aux_sym__val_number_token6] = ACTIONS(3257), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3252), + [sym_val_date] = ACTIONS(3259), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), @@ -189262,7 +189262,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3212), + [aux_sym_unquoted_token1] = ACTIONS(3219), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, @@ -189304,27 +189304,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3234), + [anon_sym_DOT_DOT] = ACTIONS(3241), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3236), - [anon_sym_DOT_DOT_LT] = ACTIONS(3236), - [anon_sym_null] = ACTIONS(3238), - [anon_sym_true] = ACTIONS(3240), - [anon_sym_false] = ACTIONS(3240), - [aux_sym__val_number_decimal_token1] = ACTIONS(3242), - [aux_sym__val_number_decimal_token2] = ACTIONS(3244), - [aux_sym__val_number_decimal_token3] = ACTIONS(3246), - [aux_sym__val_number_decimal_token4] = ACTIONS(3248), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3243), + [anon_sym_DOT_DOT_LT] = ACTIONS(3243), + [anon_sym_null] = ACTIONS(3245), + [anon_sym_true] = ACTIONS(3247), + [anon_sym_false] = ACTIONS(3247), + [aux_sym__val_number_decimal_token1] = ACTIONS(3249), + [aux_sym__val_number_decimal_token2] = ACTIONS(3251), + [aux_sym__val_number_decimal_token3] = ACTIONS(3253), + [aux_sym__val_number_decimal_token4] = ACTIONS(3255), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3250), - [aux_sym__val_number_token5] = ACTIONS(3250), - [aux_sym__val_number_token6] = ACTIONS(3250), + [aux_sym__val_number_token4] = ACTIONS(3257), + [aux_sym__val_number_token5] = ACTIONS(3257), + [aux_sym__val_number_token6] = ACTIONS(3257), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3252), + [sym_val_date] = ACTIONS(3259), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), @@ -189346,7 +189346,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3212), + [aux_sym_unquoted_token1] = ACTIONS(3219), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, @@ -189388,27 +189388,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3234), + [anon_sym_DOT_DOT] = ACTIONS(3241), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3236), - [anon_sym_DOT_DOT_LT] = ACTIONS(3236), - [anon_sym_null] = ACTIONS(3238), - [anon_sym_true] = ACTIONS(3240), - [anon_sym_false] = ACTIONS(3240), - [aux_sym__val_number_decimal_token1] = ACTIONS(3242), - [aux_sym__val_number_decimal_token2] = ACTIONS(3244), - [aux_sym__val_number_decimal_token3] = ACTIONS(3246), - [aux_sym__val_number_decimal_token4] = ACTIONS(3248), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3243), + [anon_sym_DOT_DOT_LT] = ACTIONS(3243), + [anon_sym_null] = ACTIONS(3245), + [anon_sym_true] = ACTIONS(3247), + [anon_sym_false] = ACTIONS(3247), + [aux_sym__val_number_decimal_token1] = ACTIONS(3249), + [aux_sym__val_number_decimal_token2] = ACTIONS(3251), + [aux_sym__val_number_decimal_token3] = ACTIONS(3253), + [aux_sym__val_number_decimal_token4] = ACTIONS(3255), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3250), - [aux_sym__val_number_token5] = ACTIONS(3250), - [aux_sym__val_number_token6] = ACTIONS(3250), + [aux_sym__val_number_token4] = ACTIONS(3257), + [aux_sym__val_number_token5] = ACTIONS(3257), + [aux_sym__val_number_token6] = ACTIONS(3257), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3252), + [sym_val_date] = ACTIONS(3259), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), @@ -189430,7 +189430,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3212), + [aux_sym_unquoted_token1] = ACTIONS(3219), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, @@ -189472,27 +189472,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(45), [anon_sym_LBRACE] = ACTIONS(63), - [anon_sym_DOT_DOT] = ACTIONS(3360), + [anon_sym_DOT_DOT] = ACTIONS(3369), [aux_sym_expr_unary_token1] = ACTIONS(83), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3362), - [anon_sym_DOT_DOT_LT] = ACTIONS(3362), - [anon_sym_null] = ACTIONS(3364), - [anon_sym_true] = ACTIONS(3366), - [anon_sym_false] = ACTIONS(3366), - [aux_sym__val_number_decimal_token1] = ACTIONS(3368), - [aux_sym__val_number_decimal_token2] = ACTIONS(3370), - [aux_sym__val_number_decimal_token3] = ACTIONS(3372), - [aux_sym__val_number_decimal_token4] = ACTIONS(3374), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3371), + [anon_sym_DOT_DOT_LT] = ACTIONS(3371), + [anon_sym_null] = ACTIONS(3373), + [anon_sym_true] = ACTIONS(3375), + [anon_sym_false] = ACTIONS(3375), + [aux_sym__val_number_decimal_token1] = ACTIONS(3377), + [aux_sym__val_number_decimal_token2] = ACTIONS(3379), + [aux_sym__val_number_decimal_token3] = ACTIONS(3381), + [aux_sym__val_number_decimal_token4] = ACTIONS(3383), [aux_sym__val_number_token1] = ACTIONS(99), [aux_sym__val_number_token2] = ACTIONS(99), [aux_sym__val_number_token3] = ACTIONS(99), - [aux_sym__val_number_token4] = ACTIONS(3376), - [aux_sym__val_number_token5] = ACTIONS(3376), - [aux_sym__val_number_token6] = ACTIONS(3376), + [aux_sym__val_number_token4] = ACTIONS(3385), + [aux_sym__val_number_token5] = ACTIONS(3385), + [aux_sym__val_number_token6] = ACTIONS(3385), [anon_sym_0b] = ACTIONS(103), [anon_sym_0o] = ACTIONS(105), [anon_sym_0x] = ACTIONS(105), - [sym_val_date] = ACTIONS(3378), + [sym_val_date] = ACTIONS(3387), [anon_sym_DQUOTE] = ACTIONS(109), [sym__str_single_quotes] = ACTIONS(111), [sym__str_back_ticks] = ACTIONS(111), @@ -189514,7 +189514,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3358), + [aux_sym_unquoted_token1] = ACTIONS(3367), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(123), }, @@ -189556,27 +189556,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3234), + [anon_sym_DOT_DOT] = ACTIONS(3241), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3236), - [anon_sym_DOT_DOT_LT] = ACTIONS(3236), - [anon_sym_null] = ACTIONS(3238), - [anon_sym_true] = ACTIONS(3240), - [anon_sym_false] = ACTIONS(3240), - [aux_sym__val_number_decimal_token1] = ACTIONS(3242), - [aux_sym__val_number_decimal_token2] = ACTIONS(3244), - [aux_sym__val_number_decimal_token3] = ACTIONS(3246), - [aux_sym__val_number_decimal_token4] = ACTIONS(3248), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3243), + [anon_sym_DOT_DOT_LT] = ACTIONS(3243), + [anon_sym_null] = ACTIONS(3245), + [anon_sym_true] = ACTIONS(3247), + [anon_sym_false] = ACTIONS(3247), + [aux_sym__val_number_decimal_token1] = ACTIONS(3249), + [aux_sym__val_number_decimal_token2] = ACTIONS(3251), + [aux_sym__val_number_decimal_token3] = ACTIONS(3253), + [aux_sym__val_number_decimal_token4] = ACTIONS(3255), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3250), - [aux_sym__val_number_token5] = ACTIONS(3250), - [aux_sym__val_number_token6] = ACTIONS(3250), + [aux_sym__val_number_token4] = ACTIONS(3257), + [aux_sym__val_number_token5] = ACTIONS(3257), + [aux_sym__val_number_token6] = ACTIONS(3257), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3252), + [sym_val_date] = ACTIONS(3259), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), @@ -189598,7 +189598,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3212), + [aux_sym_unquoted_token1] = ACTIONS(3219), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, @@ -189640,27 +189640,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3192), + [anon_sym_DOT_DOT] = ACTIONS(3199), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3194), - [anon_sym_DOT_DOT_LT] = ACTIONS(3194), - [anon_sym_null] = ACTIONS(3196), - [anon_sym_true] = ACTIONS(3198), - [anon_sym_false] = ACTIONS(3198), - [aux_sym__val_number_decimal_token1] = ACTIONS(3200), - [aux_sym__val_number_decimal_token2] = ACTIONS(3202), - [aux_sym__val_number_decimal_token3] = ACTIONS(3204), - [aux_sym__val_number_decimal_token4] = ACTIONS(3206), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3201), + [anon_sym_DOT_DOT_LT] = ACTIONS(3201), + [anon_sym_null] = ACTIONS(3203), + [anon_sym_true] = ACTIONS(3205), + [anon_sym_false] = ACTIONS(3205), + [aux_sym__val_number_decimal_token1] = ACTIONS(3207), + [aux_sym__val_number_decimal_token2] = ACTIONS(3209), + [aux_sym__val_number_decimal_token3] = ACTIONS(3211), + [aux_sym__val_number_decimal_token4] = ACTIONS(3213), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3208), - [aux_sym__val_number_token5] = ACTIONS(3208), - [aux_sym__val_number_token6] = ACTIONS(3208), + [aux_sym__val_number_token4] = ACTIONS(3215), + [aux_sym__val_number_token5] = ACTIONS(3215), + [aux_sym__val_number_token6] = ACTIONS(3215), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3210), + [sym_val_date] = ACTIONS(3217), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), @@ -189682,7 +189682,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3212), + [aux_sym_unquoted_token1] = ACTIONS(3219), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, @@ -189724,27 +189724,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3192), + [anon_sym_DOT_DOT] = ACTIONS(3199), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3194), - [anon_sym_DOT_DOT_LT] = ACTIONS(3194), - [anon_sym_null] = ACTIONS(3196), - [anon_sym_true] = ACTIONS(3198), - [anon_sym_false] = ACTIONS(3198), - [aux_sym__val_number_decimal_token1] = ACTIONS(3200), - [aux_sym__val_number_decimal_token2] = ACTIONS(3202), - [aux_sym__val_number_decimal_token3] = ACTIONS(3204), - [aux_sym__val_number_decimal_token4] = ACTIONS(3206), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3201), + [anon_sym_DOT_DOT_LT] = ACTIONS(3201), + [anon_sym_null] = ACTIONS(3203), + [anon_sym_true] = ACTIONS(3205), + [anon_sym_false] = ACTIONS(3205), + [aux_sym__val_number_decimal_token1] = ACTIONS(3207), + [aux_sym__val_number_decimal_token2] = ACTIONS(3209), + [aux_sym__val_number_decimal_token3] = ACTIONS(3211), + [aux_sym__val_number_decimal_token4] = ACTIONS(3213), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3208), - [aux_sym__val_number_token5] = ACTIONS(3208), - [aux_sym__val_number_token6] = ACTIONS(3208), + [aux_sym__val_number_token4] = ACTIONS(3215), + [aux_sym__val_number_token5] = ACTIONS(3215), + [aux_sym__val_number_token6] = ACTIONS(3215), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3210), + [sym_val_date] = ACTIONS(3217), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), @@ -189766,7 +189766,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3212), + [aux_sym_unquoted_token1] = ACTIONS(3219), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, @@ -189808,27 +189808,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3192), + [anon_sym_DOT_DOT] = ACTIONS(3199), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3194), - [anon_sym_DOT_DOT_LT] = ACTIONS(3194), - [anon_sym_null] = ACTIONS(3196), - [anon_sym_true] = ACTIONS(3198), - [anon_sym_false] = ACTIONS(3198), - [aux_sym__val_number_decimal_token1] = ACTIONS(3200), - [aux_sym__val_number_decimal_token2] = ACTIONS(3202), - [aux_sym__val_number_decimal_token3] = ACTIONS(3204), - [aux_sym__val_number_decimal_token4] = ACTIONS(3206), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3201), + [anon_sym_DOT_DOT_LT] = ACTIONS(3201), + [anon_sym_null] = ACTIONS(3203), + [anon_sym_true] = ACTIONS(3205), + [anon_sym_false] = ACTIONS(3205), + [aux_sym__val_number_decimal_token1] = ACTIONS(3207), + [aux_sym__val_number_decimal_token2] = ACTIONS(3209), + [aux_sym__val_number_decimal_token3] = ACTIONS(3211), + [aux_sym__val_number_decimal_token4] = ACTIONS(3213), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3208), - [aux_sym__val_number_token5] = ACTIONS(3208), - [aux_sym__val_number_token6] = ACTIONS(3208), + [aux_sym__val_number_token4] = ACTIONS(3215), + [aux_sym__val_number_token5] = ACTIONS(3215), + [aux_sym__val_number_token6] = ACTIONS(3215), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3210), + [sym_val_date] = ACTIONS(3217), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), @@ -189850,7 +189850,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3212), + [aux_sym_unquoted_token1] = ACTIONS(3219), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, @@ -189892,27 +189892,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3192), + [anon_sym_DOT_DOT] = ACTIONS(3199), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3194), - [anon_sym_DOT_DOT_LT] = ACTIONS(3194), - [anon_sym_null] = ACTIONS(3196), - [anon_sym_true] = ACTIONS(3198), - [anon_sym_false] = ACTIONS(3198), - [aux_sym__val_number_decimal_token1] = ACTIONS(3200), - [aux_sym__val_number_decimal_token2] = ACTIONS(3202), - [aux_sym__val_number_decimal_token3] = ACTIONS(3204), - [aux_sym__val_number_decimal_token4] = ACTIONS(3206), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3201), + [anon_sym_DOT_DOT_LT] = ACTIONS(3201), + [anon_sym_null] = ACTIONS(3203), + [anon_sym_true] = ACTIONS(3205), + [anon_sym_false] = ACTIONS(3205), + [aux_sym__val_number_decimal_token1] = ACTIONS(3207), + [aux_sym__val_number_decimal_token2] = ACTIONS(3209), + [aux_sym__val_number_decimal_token3] = ACTIONS(3211), + [aux_sym__val_number_decimal_token4] = ACTIONS(3213), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3208), - [aux_sym__val_number_token5] = ACTIONS(3208), - [aux_sym__val_number_token6] = ACTIONS(3208), + [aux_sym__val_number_token4] = ACTIONS(3215), + [aux_sym__val_number_token5] = ACTIONS(3215), + [aux_sym__val_number_token6] = ACTIONS(3215), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3210), + [sym_val_date] = ACTIONS(3217), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), @@ -189934,7 +189934,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3212), + [aux_sym_unquoted_token1] = ACTIONS(3219), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, @@ -189976,27 +189976,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3192), + [anon_sym_DOT_DOT] = ACTIONS(3199), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3194), - [anon_sym_DOT_DOT_LT] = ACTIONS(3194), - [anon_sym_null] = ACTIONS(3196), - [anon_sym_true] = ACTIONS(3198), - [anon_sym_false] = ACTIONS(3198), - [aux_sym__val_number_decimal_token1] = ACTIONS(3200), - [aux_sym__val_number_decimal_token2] = ACTIONS(3202), - [aux_sym__val_number_decimal_token3] = ACTIONS(3204), - [aux_sym__val_number_decimal_token4] = ACTIONS(3206), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3201), + [anon_sym_DOT_DOT_LT] = ACTIONS(3201), + [anon_sym_null] = ACTIONS(3203), + [anon_sym_true] = ACTIONS(3205), + [anon_sym_false] = ACTIONS(3205), + [aux_sym__val_number_decimal_token1] = ACTIONS(3207), + [aux_sym__val_number_decimal_token2] = ACTIONS(3209), + [aux_sym__val_number_decimal_token3] = ACTIONS(3211), + [aux_sym__val_number_decimal_token4] = ACTIONS(3213), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3208), - [aux_sym__val_number_token5] = ACTIONS(3208), - [aux_sym__val_number_token6] = ACTIONS(3208), + [aux_sym__val_number_token4] = ACTIONS(3215), + [aux_sym__val_number_token5] = ACTIONS(3215), + [aux_sym__val_number_token6] = ACTIONS(3215), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3210), + [sym_val_date] = ACTIONS(3217), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), @@ -190018,7 +190018,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3212), + [aux_sym_unquoted_token1] = ACTIONS(3219), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, @@ -190060,27 +190060,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3192), + [anon_sym_DOT_DOT] = ACTIONS(3199), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3194), - [anon_sym_DOT_DOT_LT] = ACTIONS(3194), - [anon_sym_null] = ACTIONS(3196), - [anon_sym_true] = ACTIONS(3198), - [anon_sym_false] = ACTIONS(3198), - [aux_sym__val_number_decimal_token1] = ACTIONS(3200), - [aux_sym__val_number_decimal_token2] = ACTIONS(3202), - [aux_sym__val_number_decimal_token3] = ACTIONS(3204), - [aux_sym__val_number_decimal_token4] = ACTIONS(3206), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3201), + [anon_sym_DOT_DOT_LT] = ACTIONS(3201), + [anon_sym_null] = ACTIONS(3203), + [anon_sym_true] = ACTIONS(3205), + [anon_sym_false] = ACTIONS(3205), + [aux_sym__val_number_decimal_token1] = ACTIONS(3207), + [aux_sym__val_number_decimal_token2] = ACTIONS(3209), + [aux_sym__val_number_decimal_token3] = ACTIONS(3211), + [aux_sym__val_number_decimal_token4] = ACTIONS(3213), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3208), - [aux_sym__val_number_token5] = ACTIONS(3208), - [aux_sym__val_number_token6] = ACTIONS(3208), + [aux_sym__val_number_token4] = ACTIONS(3215), + [aux_sym__val_number_token5] = ACTIONS(3215), + [aux_sym__val_number_token6] = ACTIONS(3215), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3210), + [sym_val_date] = ACTIONS(3217), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), @@ -190102,7 +190102,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3212), + [aux_sym_unquoted_token1] = ACTIONS(3219), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, @@ -190144,27 +190144,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3192), + [anon_sym_DOT_DOT] = ACTIONS(3199), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3194), - [anon_sym_DOT_DOT_LT] = ACTIONS(3194), - [anon_sym_null] = ACTIONS(3196), - [anon_sym_true] = ACTIONS(3198), - [anon_sym_false] = ACTIONS(3198), - [aux_sym__val_number_decimal_token1] = ACTIONS(3200), - [aux_sym__val_number_decimal_token2] = ACTIONS(3202), - [aux_sym__val_number_decimal_token3] = ACTIONS(3204), - [aux_sym__val_number_decimal_token4] = ACTIONS(3206), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3201), + [anon_sym_DOT_DOT_LT] = ACTIONS(3201), + [anon_sym_null] = ACTIONS(3203), + [anon_sym_true] = ACTIONS(3205), + [anon_sym_false] = ACTIONS(3205), + [aux_sym__val_number_decimal_token1] = ACTIONS(3207), + [aux_sym__val_number_decimal_token2] = ACTIONS(3209), + [aux_sym__val_number_decimal_token3] = ACTIONS(3211), + [aux_sym__val_number_decimal_token4] = ACTIONS(3213), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3208), - [aux_sym__val_number_token5] = ACTIONS(3208), - [aux_sym__val_number_token6] = ACTIONS(3208), + [aux_sym__val_number_token4] = ACTIONS(3215), + [aux_sym__val_number_token5] = ACTIONS(3215), + [aux_sym__val_number_token6] = ACTIONS(3215), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3210), + [sym_val_date] = ACTIONS(3217), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), @@ -190186,7 +190186,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3212), + [aux_sym_unquoted_token1] = ACTIONS(3219), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, @@ -190228,27 +190228,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3192), + [anon_sym_DOT_DOT] = ACTIONS(3199), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3194), - [anon_sym_DOT_DOT_LT] = ACTIONS(3194), - [anon_sym_null] = ACTIONS(3196), - [anon_sym_true] = ACTIONS(3198), - [anon_sym_false] = ACTIONS(3198), - [aux_sym__val_number_decimal_token1] = ACTIONS(3200), - [aux_sym__val_number_decimal_token2] = ACTIONS(3202), - [aux_sym__val_number_decimal_token3] = ACTIONS(3204), - [aux_sym__val_number_decimal_token4] = ACTIONS(3206), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3201), + [anon_sym_DOT_DOT_LT] = ACTIONS(3201), + [anon_sym_null] = ACTIONS(3203), + [anon_sym_true] = ACTIONS(3205), + [anon_sym_false] = ACTIONS(3205), + [aux_sym__val_number_decimal_token1] = ACTIONS(3207), + [aux_sym__val_number_decimal_token2] = ACTIONS(3209), + [aux_sym__val_number_decimal_token3] = ACTIONS(3211), + [aux_sym__val_number_decimal_token4] = ACTIONS(3213), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3208), - [aux_sym__val_number_token5] = ACTIONS(3208), - [aux_sym__val_number_token6] = ACTIONS(3208), + [aux_sym__val_number_token4] = ACTIONS(3215), + [aux_sym__val_number_token5] = ACTIONS(3215), + [aux_sym__val_number_token6] = ACTIONS(3215), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3210), + [sym_val_date] = ACTIONS(3217), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), @@ -190270,7 +190270,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3212), + [aux_sym_unquoted_token1] = ACTIONS(3219), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, @@ -190312,27 +190312,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3192), + [anon_sym_DOT_DOT] = ACTIONS(3199), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3194), - [anon_sym_DOT_DOT_LT] = ACTIONS(3194), - [anon_sym_null] = ACTIONS(3196), - [anon_sym_true] = ACTIONS(3198), - [anon_sym_false] = ACTIONS(3198), - [aux_sym__val_number_decimal_token1] = ACTIONS(3200), - [aux_sym__val_number_decimal_token2] = ACTIONS(3202), - [aux_sym__val_number_decimal_token3] = ACTIONS(3204), - [aux_sym__val_number_decimal_token4] = ACTIONS(3206), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3201), + [anon_sym_DOT_DOT_LT] = ACTIONS(3201), + [anon_sym_null] = ACTIONS(3203), + [anon_sym_true] = ACTIONS(3205), + [anon_sym_false] = ACTIONS(3205), + [aux_sym__val_number_decimal_token1] = ACTIONS(3207), + [aux_sym__val_number_decimal_token2] = ACTIONS(3209), + [aux_sym__val_number_decimal_token3] = ACTIONS(3211), + [aux_sym__val_number_decimal_token4] = ACTIONS(3213), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3208), - [aux_sym__val_number_token5] = ACTIONS(3208), - [aux_sym__val_number_token6] = ACTIONS(3208), + [aux_sym__val_number_token4] = ACTIONS(3215), + [aux_sym__val_number_token5] = ACTIONS(3215), + [aux_sym__val_number_token6] = ACTIONS(3215), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3210), + [sym_val_date] = ACTIONS(3217), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), @@ -190354,7 +190354,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3212), + [aux_sym_unquoted_token1] = ACTIONS(3219), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, @@ -190396,27 +190396,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3192), + [anon_sym_DOT_DOT] = ACTIONS(3199), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3194), - [anon_sym_DOT_DOT_LT] = ACTIONS(3194), - [anon_sym_null] = ACTIONS(3196), - [anon_sym_true] = ACTIONS(3198), - [anon_sym_false] = ACTIONS(3198), - [aux_sym__val_number_decimal_token1] = ACTIONS(3200), - [aux_sym__val_number_decimal_token2] = ACTIONS(3202), - [aux_sym__val_number_decimal_token3] = ACTIONS(3204), - [aux_sym__val_number_decimal_token4] = ACTIONS(3206), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3201), + [anon_sym_DOT_DOT_LT] = ACTIONS(3201), + [anon_sym_null] = ACTIONS(3203), + [anon_sym_true] = ACTIONS(3205), + [anon_sym_false] = ACTIONS(3205), + [aux_sym__val_number_decimal_token1] = ACTIONS(3207), + [aux_sym__val_number_decimal_token2] = ACTIONS(3209), + [aux_sym__val_number_decimal_token3] = ACTIONS(3211), + [aux_sym__val_number_decimal_token4] = ACTIONS(3213), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3208), - [aux_sym__val_number_token5] = ACTIONS(3208), - [aux_sym__val_number_token6] = ACTIONS(3208), + [aux_sym__val_number_token4] = ACTIONS(3215), + [aux_sym__val_number_token5] = ACTIONS(3215), + [aux_sym__val_number_token6] = ACTIONS(3215), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3210), + [sym_val_date] = ACTIONS(3217), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), @@ -190438,7 +190438,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3212), + [aux_sym_unquoted_token1] = ACTIONS(3219), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, @@ -190480,27 +190480,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(45), [anon_sym_LBRACE] = ACTIONS(63), - [anon_sym_DOT_DOT] = ACTIONS(3338), + [anon_sym_DOT_DOT] = ACTIONS(3347), [aux_sym_expr_unary_token1] = ACTIONS(83), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3340), - [anon_sym_DOT_DOT_LT] = ACTIONS(3340), - [anon_sym_null] = ACTIONS(3342), - [anon_sym_true] = ACTIONS(3344), - [anon_sym_false] = ACTIONS(3344), - [aux_sym__val_number_decimal_token1] = ACTIONS(3346), - [aux_sym__val_number_decimal_token2] = ACTIONS(3348), - [aux_sym__val_number_decimal_token3] = ACTIONS(3350), - [aux_sym__val_number_decimal_token4] = ACTIONS(3352), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3349), + [anon_sym_DOT_DOT_LT] = ACTIONS(3349), + [anon_sym_null] = ACTIONS(3351), + [anon_sym_true] = ACTIONS(3353), + [anon_sym_false] = ACTIONS(3353), + [aux_sym__val_number_decimal_token1] = ACTIONS(3355), + [aux_sym__val_number_decimal_token2] = ACTIONS(3357), + [aux_sym__val_number_decimal_token3] = ACTIONS(3359), + [aux_sym__val_number_decimal_token4] = ACTIONS(3361), [aux_sym__val_number_token1] = ACTIONS(99), [aux_sym__val_number_token2] = ACTIONS(99), [aux_sym__val_number_token3] = ACTIONS(99), - [aux_sym__val_number_token4] = ACTIONS(3354), - [aux_sym__val_number_token5] = ACTIONS(3354), - [aux_sym__val_number_token6] = ACTIONS(3354), + [aux_sym__val_number_token4] = ACTIONS(3363), + [aux_sym__val_number_token5] = ACTIONS(3363), + [aux_sym__val_number_token6] = ACTIONS(3363), [anon_sym_0b] = ACTIONS(103), [anon_sym_0o] = ACTIONS(105), [anon_sym_0x] = ACTIONS(105), - [sym_val_date] = ACTIONS(3356), + [sym_val_date] = ACTIONS(3365), [anon_sym_DQUOTE] = ACTIONS(109), [sym__str_single_quotes] = ACTIONS(111), [sym__str_back_ticks] = ACTIONS(111), @@ -190522,7 +190522,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3358), + [aux_sym_unquoted_token1] = ACTIONS(3367), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(123), }, @@ -190564,27 +190564,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(45), [anon_sym_LBRACE] = ACTIONS(63), - [anon_sym_DOT_DOT] = ACTIONS(3338), + [anon_sym_DOT_DOT] = ACTIONS(3347), [aux_sym_expr_unary_token1] = ACTIONS(83), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3340), - [anon_sym_DOT_DOT_LT] = ACTIONS(3340), - [anon_sym_null] = ACTIONS(3342), - [anon_sym_true] = ACTIONS(3344), - [anon_sym_false] = ACTIONS(3344), - [aux_sym__val_number_decimal_token1] = ACTIONS(3346), - [aux_sym__val_number_decimal_token2] = ACTIONS(3348), - [aux_sym__val_number_decimal_token3] = ACTIONS(3350), - [aux_sym__val_number_decimal_token4] = ACTIONS(3352), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3349), + [anon_sym_DOT_DOT_LT] = ACTIONS(3349), + [anon_sym_null] = ACTIONS(3351), + [anon_sym_true] = ACTIONS(3353), + [anon_sym_false] = ACTIONS(3353), + [aux_sym__val_number_decimal_token1] = ACTIONS(3355), + [aux_sym__val_number_decimal_token2] = ACTIONS(3357), + [aux_sym__val_number_decimal_token3] = ACTIONS(3359), + [aux_sym__val_number_decimal_token4] = ACTIONS(3361), [aux_sym__val_number_token1] = ACTIONS(99), [aux_sym__val_number_token2] = ACTIONS(99), [aux_sym__val_number_token3] = ACTIONS(99), - [aux_sym__val_number_token4] = ACTIONS(3354), - [aux_sym__val_number_token5] = ACTIONS(3354), - [aux_sym__val_number_token6] = ACTIONS(3354), + [aux_sym__val_number_token4] = ACTIONS(3363), + [aux_sym__val_number_token5] = ACTIONS(3363), + [aux_sym__val_number_token6] = ACTIONS(3363), [anon_sym_0b] = ACTIONS(103), [anon_sym_0o] = ACTIONS(105), [anon_sym_0x] = ACTIONS(105), - [sym_val_date] = ACTIONS(3356), + [sym_val_date] = ACTIONS(3365), [anon_sym_DQUOTE] = ACTIONS(109), [sym__str_single_quotes] = ACTIONS(111), [sym__str_back_ticks] = ACTIONS(111), @@ -190606,7 +190606,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3358), + [aux_sym_unquoted_token1] = ACTIONS(3367), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(123), }, @@ -190648,27 +190648,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3192), + [anon_sym_DOT_DOT] = ACTIONS(3199), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3194), - [anon_sym_DOT_DOT_LT] = ACTIONS(3194), - [anon_sym_null] = ACTIONS(3196), - [anon_sym_true] = ACTIONS(3198), - [anon_sym_false] = ACTIONS(3198), - [aux_sym__val_number_decimal_token1] = ACTIONS(3200), - [aux_sym__val_number_decimal_token2] = ACTIONS(3202), - [aux_sym__val_number_decimal_token3] = ACTIONS(3204), - [aux_sym__val_number_decimal_token4] = ACTIONS(3206), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3201), + [anon_sym_DOT_DOT_LT] = ACTIONS(3201), + [anon_sym_null] = ACTIONS(3203), + [anon_sym_true] = ACTIONS(3205), + [anon_sym_false] = ACTIONS(3205), + [aux_sym__val_number_decimal_token1] = ACTIONS(3207), + [aux_sym__val_number_decimal_token2] = ACTIONS(3209), + [aux_sym__val_number_decimal_token3] = ACTIONS(3211), + [aux_sym__val_number_decimal_token4] = ACTIONS(3213), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3208), - [aux_sym__val_number_token5] = ACTIONS(3208), - [aux_sym__val_number_token6] = ACTIONS(3208), + [aux_sym__val_number_token4] = ACTIONS(3215), + [aux_sym__val_number_token5] = ACTIONS(3215), + [aux_sym__val_number_token6] = ACTIONS(3215), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3210), + [sym_val_date] = ACTIONS(3217), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), @@ -190690,7 +190690,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3212), + [aux_sym_unquoted_token1] = ACTIONS(3219), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, @@ -190732,27 +190732,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3234), + [anon_sym_DOT_DOT] = ACTIONS(3241), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3236), - [anon_sym_DOT_DOT_LT] = ACTIONS(3236), - [anon_sym_null] = ACTIONS(3238), - [anon_sym_true] = ACTIONS(3240), - [anon_sym_false] = ACTIONS(3240), - [aux_sym__val_number_decimal_token1] = ACTIONS(3242), - [aux_sym__val_number_decimal_token2] = ACTIONS(3244), - [aux_sym__val_number_decimal_token3] = ACTIONS(3246), - [aux_sym__val_number_decimal_token4] = ACTIONS(3248), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3243), + [anon_sym_DOT_DOT_LT] = ACTIONS(3243), + [anon_sym_null] = ACTIONS(3245), + [anon_sym_true] = ACTIONS(3247), + [anon_sym_false] = ACTIONS(3247), + [aux_sym__val_number_decimal_token1] = ACTIONS(3249), + [aux_sym__val_number_decimal_token2] = ACTIONS(3251), + [aux_sym__val_number_decimal_token3] = ACTIONS(3253), + [aux_sym__val_number_decimal_token4] = ACTIONS(3255), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3250), - [aux_sym__val_number_token5] = ACTIONS(3250), - [aux_sym__val_number_token6] = ACTIONS(3250), + [aux_sym__val_number_token4] = ACTIONS(3257), + [aux_sym__val_number_token5] = ACTIONS(3257), + [aux_sym__val_number_token6] = ACTIONS(3257), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3252), + [sym_val_date] = ACTIONS(3259), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), @@ -190774,7 +190774,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3212), + [aux_sym_unquoted_token1] = ACTIONS(3219), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, @@ -190816,27 +190816,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3234), + [anon_sym_DOT_DOT] = ACTIONS(3241), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3236), - [anon_sym_DOT_DOT_LT] = ACTIONS(3236), - [anon_sym_null] = ACTIONS(3238), - [anon_sym_true] = ACTIONS(3240), - [anon_sym_false] = ACTIONS(3240), - [aux_sym__val_number_decimal_token1] = ACTIONS(3242), - [aux_sym__val_number_decimal_token2] = ACTIONS(3244), - [aux_sym__val_number_decimal_token3] = ACTIONS(3246), - [aux_sym__val_number_decimal_token4] = ACTIONS(3248), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3243), + [anon_sym_DOT_DOT_LT] = ACTIONS(3243), + [anon_sym_null] = ACTIONS(3245), + [anon_sym_true] = ACTIONS(3247), + [anon_sym_false] = ACTIONS(3247), + [aux_sym__val_number_decimal_token1] = ACTIONS(3249), + [aux_sym__val_number_decimal_token2] = ACTIONS(3251), + [aux_sym__val_number_decimal_token3] = ACTIONS(3253), + [aux_sym__val_number_decimal_token4] = ACTIONS(3255), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3250), - [aux_sym__val_number_token5] = ACTIONS(3250), - [aux_sym__val_number_token6] = ACTIONS(3250), + [aux_sym__val_number_token4] = ACTIONS(3257), + [aux_sym__val_number_token5] = ACTIONS(3257), + [aux_sym__val_number_token6] = ACTIONS(3257), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3252), + [sym_val_date] = ACTIONS(3259), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), @@ -190858,7 +190858,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3212), + [aux_sym_unquoted_token1] = ACTIONS(3219), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, @@ -190900,27 +190900,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3380), + [anon_sym_DOT_DOT] = ACTIONS(3389), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3382), - [anon_sym_DOT_DOT_LT] = ACTIONS(3382), - [anon_sym_null] = ACTIONS(3384), - [anon_sym_true] = ACTIONS(3386), - [anon_sym_false] = ACTIONS(3386), - [aux_sym__val_number_decimal_token1] = ACTIONS(3388), - [aux_sym__val_number_decimal_token2] = ACTIONS(3390), - [aux_sym__val_number_decimal_token3] = ACTIONS(3392), - [aux_sym__val_number_decimal_token4] = ACTIONS(3394), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3391), + [anon_sym_DOT_DOT_LT] = ACTIONS(3391), + [anon_sym_null] = ACTIONS(3393), + [anon_sym_true] = ACTIONS(3395), + [anon_sym_false] = ACTIONS(3395), + [aux_sym__val_number_decimal_token1] = ACTIONS(3397), + [aux_sym__val_number_decimal_token2] = ACTIONS(3399), + [aux_sym__val_number_decimal_token3] = ACTIONS(3401), + [aux_sym__val_number_decimal_token4] = ACTIONS(3403), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3396), - [aux_sym__val_number_token5] = ACTIONS(3396), - [aux_sym__val_number_token6] = ACTIONS(3396), + [aux_sym__val_number_token4] = ACTIONS(3405), + [aux_sym__val_number_token5] = ACTIONS(3405), + [aux_sym__val_number_token6] = ACTIONS(3405), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3398), + [sym_val_date] = ACTIONS(3407), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), @@ -190942,7 +190942,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3212), + [aux_sym_unquoted_token1] = ACTIONS(3219), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, @@ -190984,27 +190984,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3380), + [anon_sym_DOT_DOT] = ACTIONS(3389), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3382), - [anon_sym_DOT_DOT_LT] = ACTIONS(3382), - [anon_sym_null] = ACTIONS(3384), - [anon_sym_true] = ACTIONS(3386), - [anon_sym_false] = ACTIONS(3386), - [aux_sym__val_number_decimal_token1] = ACTIONS(3388), - [aux_sym__val_number_decimal_token2] = ACTIONS(3390), - [aux_sym__val_number_decimal_token3] = ACTIONS(3392), - [aux_sym__val_number_decimal_token4] = ACTIONS(3394), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3391), + [anon_sym_DOT_DOT_LT] = ACTIONS(3391), + [anon_sym_null] = ACTIONS(3393), + [anon_sym_true] = ACTIONS(3395), + [anon_sym_false] = ACTIONS(3395), + [aux_sym__val_number_decimal_token1] = ACTIONS(3397), + [aux_sym__val_number_decimal_token2] = ACTIONS(3399), + [aux_sym__val_number_decimal_token3] = ACTIONS(3401), + [aux_sym__val_number_decimal_token4] = ACTIONS(3403), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3396), - [aux_sym__val_number_token5] = ACTIONS(3396), - [aux_sym__val_number_token6] = ACTIONS(3396), + [aux_sym__val_number_token4] = ACTIONS(3405), + [aux_sym__val_number_token5] = ACTIONS(3405), + [aux_sym__val_number_token6] = ACTIONS(3405), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3398), + [sym_val_date] = ACTIONS(3407), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), @@ -191026,7 +191026,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3212), + [aux_sym_unquoted_token1] = ACTIONS(3219), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, @@ -191068,27 +191068,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3380), + [anon_sym_DOT_DOT] = ACTIONS(3389), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3382), - [anon_sym_DOT_DOT_LT] = ACTIONS(3382), - [anon_sym_null] = ACTIONS(3384), - [anon_sym_true] = ACTIONS(3386), - [anon_sym_false] = ACTIONS(3386), - [aux_sym__val_number_decimal_token1] = ACTIONS(3388), - [aux_sym__val_number_decimal_token2] = ACTIONS(3390), - [aux_sym__val_number_decimal_token3] = ACTIONS(3392), - [aux_sym__val_number_decimal_token4] = ACTIONS(3394), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3391), + [anon_sym_DOT_DOT_LT] = ACTIONS(3391), + [anon_sym_null] = ACTIONS(3393), + [anon_sym_true] = ACTIONS(3395), + [anon_sym_false] = ACTIONS(3395), + [aux_sym__val_number_decimal_token1] = ACTIONS(3397), + [aux_sym__val_number_decimal_token2] = ACTIONS(3399), + [aux_sym__val_number_decimal_token3] = ACTIONS(3401), + [aux_sym__val_number_decimal_token4] = ACTIONS(3403), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3396), - [aux_sym__val_number_token5] = ACTIONS(3396), - [aux_sym__val_number_token6] = ACTIONS(3396), + [aux_sym__val_number_token4] = ACTIONS(3405), + [aux_sym__val_number_token5] = ACTIONS(3405), + [aux_sym__val_number_token6] = ACTIONS(3405), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3398), + [sym_val_date] = ACTIONS(3407), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), @@ -191110,7 +191110,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3212), + [aux_sym_unquoted_token1] = ACTIONS(3219), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, @@ -191152,27 +191152,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3380), + [anon_sym_DOT_DOT] = ACTIONS(3389), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3382), - [anon_sym_DOT_DOT_LT] = ACTIONS(3382), - [anon_sym_null] = ACTIONS(3384), - [anon_sym_true] = ACTIONS(3386), - [anon_sym_false] = ACTIONS(3386), - [aux_sym__val_number_decimal_token1] = ACTIONS(3388), - [aux_sym__val_number_decimal_token2] = ACTIONS(3390), - [aux_sym__val_number_decimal_token3] = ACTIONS(3392), - [aux_sym__val_number_decimal_token4] = ACTIONS(3394), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3391), + [anon_sym_DOT_DOT_LT] = ACTIONS(3391), + [anon_sym_null] = ACTIONS(3393), + [anon_sym_true] = ACTIONS(3395), + [anon_sym_false] = ACTIONS(3395), + [aux_sym__val_number_decimal_token1] = ACTIONS(3397), + [aux_sym__val_number_decimal_token2] = ACTIONS(3399), + [aux_sym__val_number_decimal_token3] = ACTIONS(3401), + [aux_sym__val_number_decimal_token4] = ACTIONS(3403), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3396), - [aux_sym__val_number_token5] = ACTIONS(3396), - [aux_sym__val_number_token6] = ACTIONS(3396), + [aux_sym__val_number_token4] = ACTIONS(3405), + [aux_sym__val_number_token5] = ACTIONS(3405), + [aux_sym__val_number_token6] = ACTIONS(3405), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3398), + [sym_val_date] = ACTIONS(3407), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), @@ -191194,7 +191194,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3212), + [aux_sym_unquoted_token1] = ACTIONS(3219), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, @@ -191236,27 +191236,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3380), + [anon_sym_DOT_DOT] = ACTIONS(3389), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3382), - [anon_sym_DOT_DOT_LT] = ACTIONS(3382), - [anon_sym_null] = ACTIONS(3384), - [anon_sym_true] = ACTIONS(3386), - [anon_sym_false] = ACTIONS(3386), - [aux_sym__val_number_decimal_token1] = ACTIONS(3388), - [aux_sym__val_number_decimal_token2] = ACTIONS(3390), - [aux_sym__val_number_decimal_token3] = ACTIONS(3392), - [aux_sym__val_number_decimal_token4] = ACTIONS(3394), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3391), + [anon_sym_DOT_DOT_LT] = ACTIONS(3391), + [anon_sym_null] = ACTIONS(3393), + [anon_sym_true] = ACTIONS(3395), + [anon_sym_false] = ACTIONS(3395), + [aux_sym__val_number_decimal_token1] = ACTIONS(3397), + [aux_sym__val_number_decimal_token2] = ACTIONS(3399), + [aux_sym__val_number_decimal_token3] = ACTIONS(3401), + [aux_sym__val_number_decimal_token4] = ACTIONS(3403), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3396), - [aux_sym__val_number_token5] = ACTIONS(3396), - [aux_sym__val_number_token6] = ACTIONS(3396), + [aux_sym__val_number_token4] = ACTIONS(3405), + [aux_sym__val_number_token5] = ACTIONS(3405), + [aux_sym__val_number_token6] = ACTIONS(3405), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3398), + [sym_val_date] = ACTIONS(3407), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), @@ -191278,7 +191278,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3212), + [aux_sym_unquoted_token1] = ACTIONS(3219), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, @@ -191320,27 +191320,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3380), + [anon_sym_DOT_DOT] = ACTIONS(3389), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3382), - [anon_sym_DOT_DOT_LT] = ACTIONS(3382), - [anon_sym_null] = ACTIONS(3384), - [anon_sym_true] = ACTIONS(3386), - [anon_sym_false] = ACTIONS(3386), - [aux_sym__val_number_decimal_token1] = ACTIONS(3388), - [aux_sym__val_number_decimal_token2] = ACTIONS(3390), - [aux_sym__val_number_decimal_token3] = ACTIONS(3392), - [aux_sym__val_number_decimal_token4] = ACTIONS(3394), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3391), + [anon_sym_DOT_DOT_LT] = ACTIONS(3391), + [anon_sym_null] = ACTIONS(3393), + [anon_sym_true] = ACTIONS(3395), + [anon_sym_false] = ACTIONS(3395), + [aux_sym__val_number_decimal_token1] = ACTIONS(3397), + [aux_sym__val_number_decimal_token2] = ACTIONS(3399), + [aux_sym__val_number_decimal_token3] = ACTIONS(3401), + [aux_sym__val_number_decimal_token4] = ACTIONS(3403), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3396), - [aux_sym__val_number_token5] = ACTIONS(3396), - [aux_sym__val_number_token6] = ACTIONS(3396), + [aux_sym__val_number_token4] = ACTIONS(3405), + [aux_sym__val_number_token5] = ACTIONS(3405), + [aux_sym__val_number_token6] = ACTIONS(3405), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3398), + [sym_val_date] = ACTIONS(3407), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), @@ -191362,7 +191362,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3212), + [aux_sym_unquoted_token1] = ACTIONS(3219), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, @@ -191404,27 +191404,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3380), + [anon_sym_DOT_DOT] = ACTIONS(3389), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3382), - [anon_sym_DOT_DOT_LT] = ACTIONS(3382), - [anon_sym_null] = ACTIONS(3384), - [anon_sym_true] = ACTIONS(3386), - [anon_sym_false] = ACTIONS(3386), - [aux_sym__val_number_decimal_token1] = ACTIONS(3388), - [aux_sym__val_number_decimal_token2] = ACTIONS(3390), - [aux_sym__val_number_decimal_token3] = ACTIONS(3392), - [aux_sym__val_number_decimal_token4] = ACTIONS(3394), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3391), + [anon_sym_DOT_DOT_LT] = ACTIONS(3391), + [anon_sym_null] = ACTIONS(3393), + [anon_sym_true] = ACTIONS(3395), + [anon_sym_false] = ACTIONS(3395), + [aux_sym__val_number_decimal_token1] = ACTIONS(3397), + [aux_sym__val_number_decimal_token2] = ACTIONS(3399), + [aux_sym__val_number_decimal_token3] = ACTIONS(3401), + [aux_sym__val_number_decimal_token4] = ACTIONS(3403), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3396), - [aux_sym__val_number_token5] = ACTIONS(3396), - [aux_sym__val_number_token6] = ACTIONS(3396), + [aux_sym__val_number_token4] = ACTIONS(3405), + [aux_sym__val_number_token5] = ACTIONS(3405), + [aux_sym__val_number_token6] = ACTIONS(3405), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3398), + [sym_val_date] = ACTIONS(3407), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), @@ -191446,7 +191446,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3212), + [aux_sym_unquoted_token1] = ACTIONS(3219), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, @@ -191488,27 +191488,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3380), + [anon_sym_DOT_DOT] = ACTIONS(3389), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3382), - [anon_sym_DOT_DOT_LT] = ACTIONS(3382), - [anon_sym_null] = ACTIONS(3384), - [anon_sym_true] = ACTIONS(3386), - [anon_sym_false] = ACTIONS(3386), - [aux_sym__val_number_decimal_token1] = ACTIONS(3388), - [aux_sym__val_number_decimal_token2] = ACTIONS(3390), - [aux_sym__val_number_decimal_token3] = ACTIONS(3392), - [aux_sym__val_number_decimal_token4] = ACTIONS(3394), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3391), + [anon_sym_DOT_DOT_LT] = ACTIONS(3391), + [anon_sym_null] = ACTIONS(3393), + [anon_sym_true] = ACTIONS(3395), + [anon_sym_false] = ACTIONS(3395), + [aux_sym__val_number_decimal_token1] = ACTIONS(3397), + [aux_sym__val_number_decimal_token2] = ACTIONS(3399), + [aux_sym__val_number_decimal_token3] = ACTIONS(3401), + [aux_sym__val_number_decimal_token4] = ACTIONS(3403), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3396), - [aux_sym__val_number_token5] = ACTIONS(3396), - [aux_sym__val_number_token6] = ACTIONS(3396), + [aux_sym__val_number_token4] = ACTIONS(3405), + [aux_sym__val_number_token5] = ACTIONS(3405), + [aux_sym__val_number_token6] = ACTIONS(3405), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3398), + [sym_val_date] = ACTIONS(3407), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), @@ -191530,7 +191530,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3212), + [aux_sym_unquoted_token1] = ACTIONS(3219), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, @@ -191572,27 +191572,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3380), + [anon_sym_DOT_DOT] = ACTIONS(3389), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3382), - [anon_sym_DOT_DOT_LT] = ACTIONS(3382), - [anon_sym_null] = ACTIONS(3384), - [anon_sym_true] = ACTIONS(3386), - [anon_sym_false] = ACTIONS(3386), - [aux_sym__val_number_decimal_token1] = ACTIONS(3388), - [aux_sym__val_number_decimal_token2] = ACTIONS(3390), - [aux_sym__val_number_decimal_token3] = ACTIONS(3392), - [aux_sym__val_number_decimal_token4] = ACTIONS(3394), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3391), + [anon_sym_DOT_DOT_LT] = ACTIONS(3391), + [anon_sym_null] = ACTIONS(3393), + [anon_sym_true] = ACTIONS(3395), + [anon_sym_false] = ACTIONS(3395), + [aux_sym__val_number_decimal_token1] = ACTIONS(3397), + [aux_sym__val_number_decimal_token2] = ACTIONS(3399), + [aux_sym__val_number_decimal_token3] = ACTIONS(3401), + [aux_sym__val_number_decimal_token4] = ACTIONS(3403), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3396), - [aux_sym__val_number_token5] = ACTIONS(3396), - [aux_sym__val_number_token6] = ACTIONS(3396), + [aux_sym__val_number_token4] = ACTIONS(3405), + [aux_sym__val_number_token5] = ACTIONS(3405), + [aux_sym__val_number_token6] = ACTIONS(3405), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3398), + [sym_val_date] = ACTIONS(3407), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), @@ -191614,7 +191614,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3212), + [aux_sym_unquoted_token1] = ACTIONS(3219), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, @@ -191656,27 +191656,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3380), + [anon_sym_DOT_DOT] = ACTIONS(3389), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3382), - [anon_sym_DOT_DOT_LT] = ACTIONS(3382), - [anon_sym_null] = ACTIONS(3384), - [anon_sym_true] = ACTIONS(3386), - [anon_sym_false] = ACTIONS(3386), - [aux_sym__val_number_decimal_token1] = ACTIONS(3388), - [aux_sym__val_number_decimal_token2] = ACTIONS(3390), - [aux_sym__val_number_decimal_token3] = ACTIONS(3392), - [aux_sym__val_number_decimal_token4] = ACTIONS(3394), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3391), + [anon_sym_DOT_DOT_LT] = ACTIONS(3391), + [anon_sym_null] = ACTIONS(3393), + [anon_sym_true] = ACTIONS(3395), + [anon_sym_false] = ACTIONS(3395), + [aux_sym__val_number_decimal_token1] = ACTIONS(3397), + [aux_sym__val_number_decimal_token2] = ACTIONS(3399), + [aux_sym__val_number_decimal_token3] = ACTIONS(3401), + [aux_sym__val_number_decimal_token4] = ACTIONS(3403), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3396), - [aux_sym__val_number_token5] = ACTIONS(3396), - [aux_sym__val_number_token6] = ACTIONS(3396), + [aux_sym__val_number_token4] = ACTIONS(3405), + [aux_sym__val_number_token5] = ACTIONS(3405), + [aux_sym__val_number_token6] = ACTIONS(3405), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3398), + [sym_val_date] = ACTIONS(3407), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), @@ -191698,7 +191698,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3212), + [aux_sym_unquoted_token1] = ACTIONS(3219), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, @@ -191740,27 +191740,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3380), + [anon_sym_DOT_DOT] = ACTIONS(3389), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3382), - [anon_sym_DOT_DOT_LT] = ACTIONS(3382), - [anon_sym_null] = ACTIONS(3384), - [anon_sym_true] = ACTIONS(3386), - [anon_sym_false] = ACTIONS(3386), - [aux_sym__val_number_decimal_token1] = ACTIONS(3388), - [aux_sym__val_number_decimal_token2] = ACTIONS(3390), - [aux_sym__val_number_decimal_token3] = ACTIONS(3392), - [aux_sym__val_number_decimal_token4] = ACTIONS(3394), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3391), + [anon_sym_DOT_DOT_LT] = ACTIONS(3391), + [anon_sym_null] = ACTIONS(3393), + [anon_sym_true] = ACTIONS(3395), + [anon_sym_false] = ACTIONS(3395), + [aux_sym__val_number_decimal_token1] = ACTIONS(3397), + [aux_sym__val_number_decimal_token2] = ACTIONS(3399), + [aux_sym__val_number_decimal_token3] = ACTIONS(3401), + [aux_sym__val_number_decimal_token4] = ACTIONS(3403), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3396), - [aux_sym__val_number_token5] = ACTIONS(3396), - [aux_sym__val_number_token6] = ACTIONS(3396), + [aux_sym__val_number_token4] = ACTIONS(3405), + [aux_sym__val_number_token5] = ACTIONS(3405), + [aux_sym__val_number_token6] = ACTIONS(3405), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3398), + [sym_val_date] = ACTIONS(3407), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), @@ -191782,7 +191782,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3212), + [aux_sym_unquoted_token1] = ACTIONS(3219), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, @@ -191824,27 +191824,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3380), + [anon_sym_DOT_DOT] = ACTIONS(3389), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3382), - [anon_sym_DOT_DOT_LT] = ACTIONS(3382), - [anon_sym_null] = ACTIONS(3384), - [anon_sym_true] = ACTIONS(3386), - [anon_sym_false] = ACTIONS(3386), - [aux_sym__val_number_decimal_token1] = ACTIONS(3388), - [aux_sym__val_number_decimal_token2] = ACTIONS(3390), - [aux_sym__val_number_decimal_token3] = ACTIONS(3392), - [aux_sym__val_number_decimal_token4] = ACTIONS(3394), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3391), + [anon_sym_DOT_DOT_LT] = ACTIONS(3391), + [anon_sym_null] = ACTIONS(3393), + [anon_sym_true] = ACTIONS(3395), + [anon_sym_false] = ACTIONS(3395), + [aux_sym__val_number_decimal_token1] = ACTIONS(3397), + [aux_sym__val_number_decimal_token2] = ACTIONS(3399), + [aux_sym__val_number_decimal_token3] = ACTIONS(3401), + [aux_sym__val_number_decimal_token4] = ACTIONS(3403), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3396), - [aux_sym__val_number_token5] = ACTIONS(3396), - [aux_sym__val_number_token6] = ACTIONS(3396), + [aux_sym__val_number_token4] = ACTIONS(3405), + [aux_sym__val_number_token5] = ACTIONS(3405), + [aux_sym__val_number_token6] = ACTIONS(3405), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3398), + [sym_val_date] = ACTIONS(3407), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), @@ -191866,7 +191866,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3212), + [aux_sym_unquoted_token1] = ACTIONS(3219), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, @@ -191908,27 +191908,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3380), + [anon_sym_DOT_DOT] = ACTIONS(3389), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3382), - [anon_sym_DOT_DOT_LT] = ACTIONS(3382), - [anon_sym_null] = ACTIONS(3384), - [anon_sym_true] = ACTIONS(3386), - [anon_sym_false] = ACTIONS(3386), - [aux_sym__val_number_decimal_token1] = ACTIONS(3388), - [aux_sym__val_number_decimal_token2] = ACTIONS(3390), - [aux_sym__val_number_decimal_token3] = ACTIONS(3392), - [aux_sym__val_number_decimal_token4] = ACTIONS(3394), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3391), + [anon_sym_DOT_DOT_LT] = ACTIONS(3391), + [anon_sym_null] = ACTIONS(3393), + [anon_sym_true] = ACTIONS(3395), + [anon_sym_false] = ACTIONS(3395), + [aux_sym__val_number_decimal_token1] = ACTIONS(3397), + [aux_sym__val_number_decimal_token2] = ACTIONS(3399), + [aux_sym__val_number_decimal_token3] = ACTIONS(3401), + [aux_sym__val_number_decimal_token4] = ACTIONS(3403), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3396), - [aux_sym__val_number_token5] = ACTIONS(3396), - [aux_sym__val_number_token6] = ACTIONS(3396), + [aux_sym__val_number_token4] = ACTIONS(3405), + [aux_sym__val_number_token5] = ACTIONS(3405), + [aux_sym__val_number_token6] = ACTIONS(3405), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3398), + [sym_val_date] = ACTIONS(3407), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), @@ -191950,7 +191950,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3212), + [aux_sym_unquoted_token1] = ACTIONS(3219), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, @@ -191992,27 +191992,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3234), + [anon_sym_DOT_DOT] = ACTIONS(3241), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3236), - [anon_sym_DOT_DOT_LT] = ACTIONS(3236), - [anon_sym_null] = ACTIONS(3238), - [anon_sym_true] = ACTIONS(3240), - [anon_sym_false] = ACTIONS(3240), - [aux_sym__val_number_decimal_token1] = ACTIONS(3242), - [aux_sym__val_number_decimal_token2] = ACTIONS(3244), - [aux_sym__val_number_decimal_token3] = ACTIONS(3246), - [aux_sym__val_number_decimal_token4] = ACTIONS(3248), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3243), + [anon_sym_DOT_DOT_LT] = ACTIONS(3243), + [anon_sym_null] = ACTIONS(3245), + [anon_sym_true] = ACTIONS(3247), + [anon_sym_false] = ACTIONS(3247), + [aux_sym__val_number_decimal_token1] = ACTIONS(3249), + [aux_sym__val_number_decimal_token2] = ACTIONS(3251), + [aux_sym__val_number_decimal_token3] = ACTIONS(3253), + [aux_sym__val_number_decimal_token4] = ACTIONS(3255), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3250), - [aux_sym__val_number_token5] = ACTIONS(3250), - [aux_sym__val_number_token6] = ACTIONS(3250), + [aux_sym__val_number_token4] = ACTIONS(3257), + [aux_sym__val_number_token5] = ACTIONS(3257), + [aux_sym__val_number_token6] = ACTIONS(3257), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3252), + [sym_val_date] = ACTIONS(3259), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), @@ -192034,7 +192034,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3212), + [aux_sym_unquoted_token1] = ACTIONS(3219), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, @@ -192076,27 +192076,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3234), + [anon_sym_DOT_DOT] = ACTIONS(3241), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3236), - [anon_sym_DOT_DOT_LT] = ACTIONS(3236), - [anon_sym_null] = ACTIONS(3238), - [anon_sym_true] = ACTIONS(3240), - [anon_sym_false] = ACTIONS(3240), - [aux_sym__val_number_decimal_token1] = ACTIONS(3242), - [aux_sym__val_number_decimal_token2] = ACTIONS(3244), - [aux_sym__val_number_decimal_token3] = ACTIONS(3246), - [aux_sym__val_number_decimal_token4] = ACTIONS(3248), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3243), + [anon_sym_DOT_DOT_LT] = ACTIONS(3243), + [anon_sym_null] = ACTIONS(3245), + [anon_sym_true] = ACTIONS(3247), + [anon_sym_false] = ACTIONS(3247), + [aux_sym__val_number_decimal_token1] = ACTIONS(3249), + [aux_sym__val_number_decimal_token2] = ACTIONS(3251), + [aux_sym__val_number_decimal_token3] = ACTIONS(3253), + [aux_sym__val_number_decimal_token4] = ACTIONS(3255), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3250), - [aux_sym__val_number_token5] = ACTIONS(3250), - [aux_sym__val_number_token6] = ACTIONS(3250), + [aux_sym__val_number_token4] = ACTIONS(3257), + [aux_sym__val_number_token5] = ACTIONS(3257), + [aux_sym__val_number_token6] = ACTIONS(3257), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3252), + [sym_val_date] = ACTIONS(3259), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), @@ -192118,7 +192118,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3212), + [aux_sym_unquoted_token1] = ACTIONS(3219), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, @@ -192160,27 +192160,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3234), + [anon_sym_DOT_DOT] = ACTIONS(3241), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3236), - [anon_sym_DOT_DOT_LT] = ACTIONS(3236), - [anon_sym_null] = ACTIONS(3238), - [anon_sym_true] = ACTIONS(3240), - [anon_sym_false] = ACTIONS(3240), - [aux_sym__val_number_decimal_token1] = ACTIONS(3242), - [aux_sym__val_number_decimal_token2] = ACTIONS(3244), - [aux_sym__val_number_decimal_token3] = ACTIONS(3246), - [aux_sym__val_number_decimal_token4] = ACTIONS(3248), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3243), + [anon_sym_DOT_DOT_LT] = ACTIONS(3243), + [anon_sym_null] = ACTIONS(3245), + [anon_sym_true] = ACTIONS(3247), + [anon_sym_false] = ACTIONS(3247), + [aux_sym__val_number_decimal_token1] = ACTIONS(3249), + [aux_sym__val_number_decimal_token2] = ACTIONS(3251), + [aux_sym__val_number_decimal_token3] = ACTIONS(3253), + [aux_sym__val_number_decimal_token4] = ACTIONS(3255), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3250), - [aux_sym__val_number_token5] = ACTIONS(3250), - [aux_sym__val_number_token6] = ACTIONS(3250), + [aux_sym__val_number_token4] = ACTIONS(3257), + [aux_sym__val_number_token5] = ACTIONS(3257), + [aux_sym__val_number_token6] = ACTIONS(3257), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3252), + [sym_val_date] = ACTIONS(3259), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), @@ -192202,7 +192202,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3212), + [aux_sym_unquoted_token1] = ACTIONS(3219), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, @@ -192244,27 +192244,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(45), [anon_sym_LBRACE] = ACTIONS(63), - [anon_sym_DOT_DOT] = ACTIONS(3360), + [anon_sym_DOT_DOT] = ACTIONS(3369), [aux_sym_expr_unary_token1] = ACTIONS(83), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3362), - [anon_sym_DOT_DOT_LT] = ACTIONS(3362), - [anon_sym_null] = ACTIONS(3364), - [anon_sym_true] = ACTIONS(3366), - [anon_sym_false] = ACTIONS(3366), - [aux_sym__val_number_decimal_token1] = ACTIONS(3368), - [aux_sym__val_number_decimal_token2] = ACTIONS(3370), - [aux_sym__val_number_decimal_token3] = ACTIONS(3372), - [aux_sym__val_number_decimal_token4] = ACTIONS(3374), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3371), + [anon_sym_DOT_DOT_LT] = ACTIONS(3371), + [anon_sym_null] = ACTIONS(3373), + [anon_sym_true] = ACTIONS(3375), + [anon_sym_false] = ACTIONS(3375), + [aux_sym__val_number_decimal_token1] = ACTIONS(3377), + [aux_sym__val_number_decimal_token2] = ACTIONS(3379), + [aux_sym__val_number_decimal_token3] = ACTIONS(3381), + [aux_sym__val_number_decimal_token4] = ACTIONS(3383), [aux_sym__val_number_token1] = ACTIONS(99), [aux_sym__val_number_token2] = ACTIONS(99), [aux_sym__val_number_token3] = ACTIONS(99), - [aux_sym__val_number_token4] = ACTIONS(3376), - [aux_sym__val_number_token5] = ACTIONS(3376), - [aux_sym__val_number_token6] = ACTIONS(3376), + [aux_sym__val_number_token4] = ACTIONS(3385), + [aux_sym__val_number_token5] = ACTIONS(3385), + [aux_sym__val_number_token6] = ACTIONS(3385), [anon_sym_0b] = ACTIONS(103), [anon_sym_0o] = ACTIONS(105), [anon_sym_0x] = ACTIONS(105), - [sym_val_date] = ACTIONS(3378), + [sym_val_date] = ACTIONS(3387), [anon_sym_DQUOTE] = ACTIONS(109), [sym__str_single_quotes] = ACTIONS(111), [sym__str_back_ticks] = ACTIONS(111), @@ -192286,7 +192286,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3358), + [aux_sym_unquoted_token1] = ACTIONS(3367), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(123), }, @@ -192328,27 +192328,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3234), + [anon_sym_DOT_DOT] = ACTIONS(3241), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3236), - [anon_sym_DOT_DOT_LT] = ACTIONS(3236), - [anon_sym_null] = ACTIONS(3238), - [anon_sym_true] = ACTIONS(3240), - [anon_sym_false] = ACTIONS(3240), - [aux_sym__val_number_decimal_token1] = ACTIONS(3242), - [aux_sym__val_number_decimal_token2] = ACTIONS(3244), - [aux_sym__val_number_decimal_token3] = ACTIONS(3246), - [aux_sym__val_number_decimal_token4] = ACTIONS(3248), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3243), + [anon_sym_DOT_DOT_LT] = ACTIONS(3243), + [anon_sym_null] = ACTIONS(3245), + [anon_sym_true] = ACTIONS(3247), + [anon_sym_false] = ACTIONS(3247), + [aux_sym__val_number_decimal_token1] = ACTIONS(3249), + [aux_sym__val_number_decimal_token2] = ACTIONS(3251), + [aux_sym__val_number_decimal_token3] = ACTIONS(3253), + [aux_sym__val_number_decimal_token4] = ACTIONS(3255), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3250), - [aux_sym__val_number_token5] = ACTIONS(3250), - [aux_sym__val_number_token6] = ACTIONS(3250), + [aux_sym__val_number_token4] = ACTIONS(3257), + [aux_sym__val_number_token5] = ACTIONS(3257), + [aux_sym__val_number_token6] = ACTIONS(3257), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3252), + [sym_val_date] = ACTIONS(3259), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), @@ -192370,7 +192370,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3212), + [aux_sym_unquoted_token1] = ACTIONS(3219), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, @@ -192412,27 +192412,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(45), [anon_sym_LBRACE] = ACTIONS(63), - [anon_sym_DOT_DOT] = ACTIONS(3360), + [anon_sym_DOT_DOT] = ACTIONS(3369), [aux_sym_expr_unary_token1] = ACTIONS(83), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3362), - [anon_sym_DOT_DOT_LT] = ACTIONS(3362), - [anon_sym_null] = ACTIONS(3364), - [anon_sym_true] = ACTIONS(3366), - [anon_sym_false] = ACTIONS(3366), - [aux_sym__val_number_decimal_token1] = ACTIONS(3368), - [aux_sym__val_number_decimal_token2] = ACTIONS(3370), - [aux_sym__val_number_decimal_token3] = ACTIONS(3372), - [aux_sym__val_number_decimal_token4] = ACTIONS(3374), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3371), + [anon_sym_DOT_DOT_LT] = ACTIONS(3371), + [anon_sym_null] = ACTIONS(3373), + [anon_sym_true] = ACTIONS(3375), + [anon_sym_false] = ACTIONS(3375), + [aux_sym__val_number_decimal_token1] = ACTIONS(3377), + [aux_sym__val_number_decimal_token2] = ACTIONS(3379), + [aux_sym__val_number_decimal_token3] = ACTIONS(3381), + [aux_sym__val_number_decimal_token4] = ACTIONS(3383), [aux_sym__val_number_token1] = ACTIONS(99), [aux_sym__val_number_token2] = ACTIONS(99), [aux_sym__val_number_token3] = ACTIONS(99), - [aux_sym__val_number_token4] = ACTIONS(3376), - [aux_sym__val_number_token5] = ACTIONS(3376), - [aux_sym__val_number_token6] = ACTIONS(3376), + [aux_sym__val_number_token4] = ACTIONS(3385), + [aux_sym__val_number_token5] = ACTIONS(3385), + [aux_sym__val_number_token6] = ACTIONS(3385), [anon_sym_0b] = ACTIONS(103), [anon_sym_0o] = ACTIONS(105), [anon_sym_0x] = ACTIONS(105), - [sym_val_date] = ACTIONS(3378), + [sym_val_date] = ACTIONS(3387), [anon_sym_DQUOTE] = ACTIONS(109), [sym__str_single_quotes] = ACTIONS(111), [sym__str_back_ticks] = ACTIONS(111), @@ -192454,7 +192454,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3358), + [aux_sym_unquoted_token1] = ACTIONS(3367), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(123), }, @@ -192496,27 +192496,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(45), [anon_sym_LBRACE] = ACTIONS(63), - [anon_sym_DOT_DOT] = ACTIONS(3360), + [anon_sym_DOT_DOT] = ACTIONS(3369), [aux_sym_expr_unary_token1] = ACTIONS(83), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3362), - [anon_sym_DOT_DOT_LT] = ACTIONS(3362), - [anon_sym_null] = ACTIONS(3364), - [anon_sym_true] = ACTIONS(3366), - [anon_sym_false] = ACTIONS(3366), - [aux_sym__val_number_decimal_token1] = ACTIONS(3368), - [aux_sym__val_number_decimal_token2] = ACTIONS(3370), - [aux_sym__val_number_decimal_token3] = ACTIONS(3372), - [aux_sym__val_number_decimal_token4] = ACTIONS(3374), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3371), + [anon_sym_DOT_DOT_LT] = ACTIONS(3371), + [anon_sym_null] = ACTIONS(3373), + [anon_sym_true] = ACTIONS(3375), + [anon_sym_false] = ACTIONS(3375), + [aux_sym__val_number_decimal_token1] = ACTIONS(3377), + [aux_sym__val_number_decimal_token2] = ACTIONS(3379), + [aux_sym__val_number_decimal_token3] = ACTIONS(3381), + [aux_sym__val_number_decimal_token4] = ACTIONS(3383), [aux_sym__val_number_token1] = ACTIONS(99), [aux_sym__val_number_token2] = ACTIONS(99), [aux_sym__val_number_token3] = ACTIONS(99), - [aux_sym__val_number_token4] = ACTIONS(3376), - [aux_sym__val_number_token5] = ACTIONS(3376), - [aux_sym__val_number_token6] = ACTIONS(3376), + [aux_sym__val_number_token4] = ACTIONS(3385), + [aux_sym__val_number_token5] = ACTIONS(3385), + [aux_sym__val_number_token6] = ACTIONS(3385), [anon_sym_0b] = ACTIONS(103), [anon_sym_0o] = ACTIONS(105), [anon_sym_0x] = ACTIONS(105), - [sym_val_date] = ACTIONS(3378), + [sym_val_date] = ACTIONS(3387), [anon_sym_DQUOTE] = ACTIONS(109), [sym__str_single_quotes] = ACTIONS(111), [sym__str_back_ticks] = ACTIONS(111), @@ -192538,7 +192538,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3358), + [aux_sym_unquoted_token1] = ACTIONS(3367), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(123), }, @@ -192580,27 +192580,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(45), [anon_sym_LBRACE] = ACTIONS(63), - [anon_sym_DOT_DOT] = ACTIONS(3360), + [anon_sym_DOT_DOT] = ACTIONS(3369), [aux_sym_expr_unary_token1] = ACTIONS(83), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3362), - [anon_sym_DOT_DOT_LT] = ACTIONS(3362), - [anon_sym_null] = ACTIONS(3364), - [anon_sym_true] = ACTIONS(3366), - [anon_sym_false] = ACTIONS(3366), - [aux_sym__val_number_decimal_token1] = ACTIONS(3368), - [aux_sym__val_number_decimal_token2] = ACTIONS(3370), - [aux_sym__val_number_decimal_token3] = ACTIONS(3372), - [aux_sym__val_number_decimal_token4] = ACTIONS(3374), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3371), + [anon_sym_DOT_DOT_LT] = ACTIONS(3371), + [anon_sym_null] = ACTIONS(3373), + [anon_sym_true] = ACTIONS(3375), + [anon_sym_false] = ACTIONS(3375), + [aux_sym__val_number_decimal_token1] = ACTIONS(3377), + [aux_sym__val_number_decimal_token2] = ACTIONS(3379), + [aux_sym__val_number_decimal_token3] = ACTIONS(3381), + [aux_sym__val_number_decimal_token4] = ACTIONS(3383), [aux_sym__val_number_token1] = ACTIONS(99), [aux_sym__val_number_token2] = ACTIONS(99), [aux_sym__val_number_token3] = ACTIONS(99), - [aux_sym__val_number_token4] = ACTIONS(3376), - [aux_sym__val_number_token5] = ACTIONS(3376), - [aux_sym__val_number_token6] = ACTIONS(3376), + [aux_sym__val_number_token4] = ACTIONS(3385), + [aux_sym__val_number_token5] = ACTIONS(3385), + [aux_sym__val_number_token6] = ACTIONS(3385), [anon_sym_0b] = ACTIONS(103), [anon_sym_0o] = ACTIONS(105), [anon_sym_0x] = ACTIONS(105), - [sym_val_date] = ACTIONS(3378), + [sym_val_date] = ACTIONS(3387), [anon_sym_DQUOTE] = ACTIONS(109), [sym__str_single_quotes] = ACTIONS(111), [sym__str_back_ticks] = ACTIONS(111), @@ -192622,7 +192622,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3358), + [aux_sym_unquoted_token1] = ACTIONS(3367), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(123), }, @@ -192664,27 +192664,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(45), [anon_sym_LBRACE] = ACTIONS(63), - [anon_sym_DOT_DOT] = ACTIONS(3360), + [anon_sym_DOT_DOT] = ACTIONS(3369), [aux_sym_expr_unary_token1] = ACTIONS(83), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3362), - [anon_sym_DOT_DOT_LT] = ACTIONS(3362), - [anon_sym_null] = ACTIONS(3364), - [anon_sym_true] = ACTIONS(3366), - [anon_sym_false] = ACTIONS(3366), - [aux_sym__val_number_decimal_token1] = ACTIONS(3368), - [aux_sym__val_number_decimal_token2] = ACTIONS(3370), - [aux_sym__val_number_decimal_token3] = ACTIONS(3372), - [aux_sym__val_number_decimal_token4] = ACTIONS(3374), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3371), + [anon_sym_DOT_DOT_LT] = ACTIONS(3371), + [anon_sym_null] = ACTIONS(3373), + [anon_sym_true] = ACTIONS(3375), + [anon_sym_false] = ACTIONS(3375), + [aux_sym__val_number_decimal_token1] = ACTIONS(3377), + [aux_sym__val_number_decimal_token2] = ACTIONS(3379), + [aux_sym__val_number_decimal_token3] = ACTIONS(3381), + [aux_sym__val_number_decimal_token4] = ACTIONS(3383), [aux_sym__val_number_token1] = ACTIONS(99), [aux_sym__val_number_token2] = ACTIONS(99), [aux_sym__val_number_token3] = ACTIONS(99), - [aux_sym__val_number_token4] = ACTIONS(3376), - [aux_sym__val_number_token5] = ACTIONS(3376), - [aux_sym__val_number_token6] = ACTIONS(3376), + [aux_sym__val_number_token4] = ACTIONS(3385), + [aux_sym__val_number_token5] = ACTIONS(3385), + [aux_sym__val_number_token6] = ACTIONS(3385), [anon_sym_0b] = ACTIONS(103), [anon_sym_0o] = ACTIONS(105), [anon_sym_0x] = ACTIONS(105), - [sym_val_date] = ACTIONS(3378), + [sym_val_date] = ACTIONS(3387), [anon_sym_DQUOTE] = ACTIONS(109), [sym__str_single_quotes] = ACTIONS(111), [sym__str_back_ticks] = ACTIONS(111), @@ -192706,7 +192706,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3358), + [aux_sym_unquoted_token1] = ACTIONS(3367), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(123), }, @@ -192748,27 +192748,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(45), [anon_sym_LBRACE] = ACTIONS(63), - [anon_sym_DOT_DOT] = ACTIONS(3360), + [anon_sym_DOT_DOT] = ACTIONS(3369), [aux_sym_expr_unary_token1] = ACTIONS(83), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3362), - [anon_sym_DOT_DOT_LT] = ACTIONS(3362), - [anon_sym_null] = ACTIONS(3364), - [anon_sym_true] = ACTIONS(3366), - [anon_sym_false] = ACTIONS(3366), - [aux_sym__val_number_decimal_token1] = ACTIONS(3368), - [aux_sym__val_number_decimal_token2] = ACTIONS(3370), - [aux_sym__val_number_decimal_token3] = ACTIONS(3372), - [aux_sym__val_number_decimal_token4] = ACTIONS(3374), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3371), + [anon_sym_DOT_DOT_LT] = ACTIONS(3371), + [anon_sym_null] = ACTIONS(3373), + [anon_sym_true] = ACTIONS(3375), + [anon_sym_false] = ACTIONS(3375), + [aux_sym__val_number_decimal_token1] = ACTIONS(3377), + [aux_sym__val_number_decimal_token2] = ACTIONS(3379), + [aux_sym__val_number_decimal_token3] = ACTIONS(3381), + [aux_sym__val_number_decimal_token4] = ACTIONS(3383), [aux_sym__val_number_token1] = ACTIONS(99), [aux_sym__val_number_token2] = ACTIONS(99), [aux_sym__val_number_token3] = ACTIONS(99), - [aux_sym__val_number_token4] = ACTIONS(3376), - [aux_sym__val_number_token5] = ACTIONS(3376), - [aux_sym__val_number_token6] = ACTIONS(3376), + [aux_sym__val_number_token4] = ACTIONS(3385), + [aux_sym__val_number_token5] = ACTIONS(3385), + [aux_sym__val_number_token6] = ACTIONS(3385), [anon_sym_0b] = ACTIONS(103), [anon_sym_0o] = ACTIONS(105), [anon_sym_0x] = ACTIONS(105), - [sym_val_date] = ACTIONS(3378), + [sym_val_date] = ACTIONS(3387), [anon_sym_DQUOTE] = ACTIONS(109), [sym__str_single_quotes] = ACTIONS(111), [sym__str_back_ticks] = ACTIONS(111), @@ -192790,7 +192790,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3358), + [aux_sym_unquoted_token1] = ACTIONS(3367), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(123), }, @@ -192832,27 +192832,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(45), [anon_sym_LBRACE] = ACTIONS(63), - [anon_sym_DOT_DOT] = ACTIONS(3360), + [anon_sym_DOT_DOT] = ACTIONS(3369), [aux_sym_expr_unary_token1] = ACTIONS(83), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3362), - [anon_sym_DOT_DOT_LT] = ACTIONS(3362), - [anon_sym_null] = ACTIONS(3364), - [anon_sym_true] = ACTIONS(3366), - [anon_sym_false] = ACTIONS(3366), - [aux_sym__val_number_decimal_token1] = ACTIONS(3368), - [aux_sym__val_number_decimal_token2] = ACTIONS(3370), - [aux_sym__val_number_decimal_token3] = ACTIONS(3372), - [aux_sym__val_number_decimal_token4] = ACTIONS(3374), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3371), + [anon_sym_DOT_DOT_LT] = ACTIONS(3371), + [anon_sym_null] = ACTIONS(3373), + [anon_sym_true] = ACTIONS(3375), + [anon_sym_false] = ACTIONS(3375), + [aux_sym__val_number_decimal_token1] = ACTIONS(3377), + [aux_sym__val_number_decimal_token2] = ACTIONS(3379), + [aux_sym__val_number_decimal_token3] = ACTIONS(3381), + [aux_sym__val_number_decimal_token4] = ACTIONS(3383), [aux_sym__val_number_token1] = ACTIONS(99), [aux_sym__val_number_token2] = ACTIONS(99), [aux_sym__val_number_token3] = ACTIONS(99), - [aux_sym__val_number_token4] = ACTIONS(3376), - [aux_sym__val_number_token5] = ACTIONS(3376), - [aux_sym__val_number_token6] = ACTIONS(3376), + [aux_sym__val_number_token4] = ACTIONS(3385), + [aux_sym__val_number_token5] = ACTIONS(3385), + [aux_sym__val_number_token6] = ACTIONS(3385), [anon_sym_0b] = ACTIONS(103), [anon_sym_0o] = ACTIONS(105), [anon_sym_0x] = ACTIONS(105), - [sym_val_date] = ACTIONS(3378), + [sym_val_date] = ACTIONS(3387), [anon_sym_DQUOTE] = ACTIONS(109), [sym__str_single_quotes] = ACTIONS(111), [sym__str_back_ticks] = ACTIONS(111), @@ -192874,7 +192874,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3358), + [aux_sym_unquoted_token1] = ACTIONS(3367), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(123), }, @@ -192916,27 +192916,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(45), [anon_sym_LBRACE] = ACTIONS(63), - [anon_sym_DOT_DOT] = ACTIONS(3360), + [anon_sym_DOT_DOT] = ACTIONS(3369), [aux_sym_expr_unary_token1] = ACTIONS(83), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3362), - [anon_sym_DOT_DOT_LT] = ACTIONS(3362), - [anon_sym_null] = ACTIONS(3364), - [anon_sym_true] = ACTIONS(3366), - [anon_sym_false] = ACTIONS(3366), - [aux_sym__val_number_decimal_token1] = ACTIONS(3368), - [aux_sym__val_number_decimal_token2] = ACTIONS(3370), - [aux_sym__val_number_decimal_token3] = ACTIONS(3372), - [aux_sym__val_number_decimal_token4] = ACTIONS(3374), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3371), + [anon_sym_DOT_DOT_LT] = ACTIONS(3371), + [anon_sym_null] = ACTIONS(3373), + [anon_sym_true] = ACTIONS(3375), + [anon_sym_false] = ACTIONS(3375), + [aux_sym__val_number_decimal_token1] = ACTIONS(3377), + [aux_sym__val_number_decimal_token2] = ACTIONS(3379), + [aux_sym__val_number_decimal_token3] = ACTIONS(3381), + [aux_sym__val_number_decimal_token4] = ACTIONS(3383), [aux_sym__val_number_token1] = ACTIONS(99), [aux_sym__val_number_token2] = ACTIONS(99), [aux_sym__val_number_token3] = ACTIONS(99), - [aux_sym__val_number_token4] = ACTIONS(3376), - [aux_sym__val_number_token5] = ACTIONS(3376), - [aux_sym__val_number_token6] = ACTIONS(3376), + [aux_sym__val_number_token4] = ACTIONS(3385), + [aux_sym__val_number_token5] = ACTIONS(3385), + [aux_sym__val_number_token6] = ACTIONS(3385), [anon_sym_0b] = ACTIONS(103), [anon_sym_0o] = ACTIONS(105), [anon_sym_0x] = ACTIONS(105), - [sym_val_date] = ACTIONS(3378), + [sym_val_date] = ACTIONS(3387), [anon_sym_DQUOTE] = ACTIONS(109), [sym__str_single_quotes] = ACTIONS(111), [sym__str_back_ticks] = ACTIONS(111), @@ -192958,7 +192958,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3358), + [aux_sym_unquoted_token1] = ACTIONS(3367), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(123), }, @@ -193000,27 +193000,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(45), [anon_sym_LBRACE] = ACTIONS(63), - [anon_sym_DOT_DOT] = ACTIONS(3338), + [anon_sym_DOT_DOT] = ACTIONS(3347), [aux_sym_expr_unary_token1] = ACTIONS(83), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3340), - [anon_sym_DOT_DOT_LT] = ACTIONS(3340), - [anon_sym_null] = ACTIONS(3342), - [anon_sym_true] = ACTIONS(3344), - [anon_sym_false] = ACTIONS(3344), - [aux_sym__val_number_decimal_token1] = ACTIONS(3346), - [aux_sym__val_number_decimal_token2] = ACTIONS(3348), - [aux_sym__val_number_decimal_token3] = ACTIONS(3350), - [aux_sym__val_number_decimal_token4] = ACTIONS(3352), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3349), + [anon_sym_DOT_DOT_LT] = ACTIONS(3349), + [anon_sym_null] = ACTIONS(3351), + [anon_sym_true] = ACTIONS(3353), + [anon_sym_false] = ACTIONS(3353), + [aux_sym__val_number_decimal_token1] = ACTIONS(3355), + [aux_sym__val_number_decimal_token2] = ACTIONS(3357), + [aux_sym__val_number_decimal_token3] = ACTIONS(3359), + [aux_sym__val_number_decimal_token4] = ACTIONS(3361), [aux_sym__val_number_token1] = ACTIONS(99), [aux_sym__val_number_token2] = ACTIONS(99), [aux_sym__val_number_token3] = ACTIONS(99), - [aux_sym__val_number_token4] = ACTIONS(3354), - [aux_sym__val_number_token5] = ACTIONS(3354), - [aux_sym__val_number_token6] = ACTIONS(3354), + [aux_sym__val_number_token4] = ACTIONS(3363), + [aux_sym__val_number_token5] = ACTIONS(3363), + [aux_sym__val_number_token6] = ACTIONS(3363), [anon_sym_0b] = ACTIONS(103), [anon_sym_0o] = ACTIONS(105), [anon_sym_0x] = ACTIONS(105), - [sym_val_date] = ACTIONS(3356), + [sym_val_date] = ACTIONS(3365), [anon_sym_DQUOTE] = ACTIONS(109), [sym__str_single_quotes] = ACTIONS(111), [sym__str_back_ticks] = ACTIONS(111), @@ -193042,7 +193042,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3358), + [aux_sym_unquoted_token1] = ACTIONS(3367), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(123), }, @@ -193079,38 +193079,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_table] = STATE(2131), [sym_val_closure] = STATE(2131), [sym_comment] = STATE(1127), - [sym__newline] = ACTIONS(3400), - [anon_sym_SEMI] = ACTIONS(3400), - [anon_sym_PIPE] = ACTIONS(3400), - [anon_sym_err_GT_PIPE] = ACTIONS(3400), - [anon_sym_out_GT_PIPE] = ACTIONS(3400), - [anon_sym_e_GT_PIPE] = ACTIONS(3400), - [anon_sym_o_GT_PIPE] = ACTIONS(3400), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(3400), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(3400), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(3400), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(3400), + [sym__newline] = ACTIONS(3409), + [anon_sym_SEMI] = ACTIONS(3409), + [anon_sym_PIPE] = ACTIONS(3409), + [anon_sym_err_GT_PIPE] = ACTIONS(3409), + [anon_sym_out_GT_PIPE] = ACTIONS(3409), + [anon_sym_e_GT_PIPE] = ACTIONS(3409), + [anon_sym_o_GT_PIPE] = ACTIONS(3409), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(3409), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(3409), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(3409), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(3409), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(381), - [anon_sym_do] = ACTIONS(3402), - [anon_sym_if] = ACTIONS(3404), - [anon_sym_match] = ACTIONS(3406), + [anon_sym_do] = ACTIONS(3411), + [anon_sym_if] = ACTIONS(3413), + [anon_sym_match] = ACTIONS(3415), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_RBRACE] = ACTIONS(3400), + [anon_sym_RBRACE] = ACTIONS(3409), [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(3408), + [anon_sym_try] = ACTIONS(3417), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(3410), - [anon_sym_true] = ACTIONS(3412), - [anon_sym_false] = ACTIONS(3412), - [aux_sym__val_number_decimal_token1] = ACTIONS(3414), - [aux_sym__val_number_decimal_token2] = ACTIONS(3416), - [aux_sym__val_number_decimal_token3] = ACTIONS(3418), - [aux_sym__val_number_decimal_token4] = ACTIONS(3420), + [anon_sym_null] = ACTIONS(3419), + [anon_sym_true] = ACTIONS(3421), + [anon_sym_false] = ACTIONS(3421), + [aux_sym__val_number_decimal_token1] = ACTIONS(3423), + [aux_sym__val_number_decimal_token2] = ACTIONS(3425), + [aux_sym__val_number_decimal_token3] = ACTIONS(3427), + [aux_sym__val_number_decimal_token4] = ACTIONS(3429), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), @@ -193126,7 +193126,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_COLON2] = ACTIONS(3422), + [anon_sym_COLON2] = ACTIONS(3431), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, @@ -193168,27 +193168,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(45), [anon_sym_LBRACE] = ACTIONS(63), - [anon_sym_DOT_DOT] = ACTIONS(3360), + [anon_sym_DOT_DOT] = ACTIONS(3369), [aux_sym_expr_unary_token1] = ACTIONS(83), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3362), - [anon_sym_DOT_DOT_LT] = ACTIONS(3362), - [anon_sym_null] = ACTIONS(3364), - [anon_sym_true] = ACTIONS(3366), - [anon_sym_false] = ACTIONS(3366), - [aux_sym__val_number_decimal_token1] = ACTIONS(3368), - [aux_sym__val_number_decimal_token2] = ACTIONS(3370), - [aux_sym__val_number_decimal_token3] = ACTIONS(3372), - [aux_sym__val_number_decimal_token4] = ACTIONS(3374), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3371), + [anon_sym_DOT_DOT_LT] = ACTIONS(3371), + [anon_sym_null] = ACTIONS(3373), + [anon_sym_true] = ACTIONS(3375), + [anon_sym_false] = ACTIONS(3375), + [aux_sym__val_number_decimal_token1] = ACTIONS(3377), + [aux_sym__val_number_decimal_token2] = ACTIONS(3379), + [aux_sym__val_number_decimal_token3] = ACTIONS(3381), + [aux_sym__val_number_decimal_token4] = ACTIONS(3383), [aux_sym__val_number_token1] = ACTIONS(99), [aux_sym__val_number_token2] = ACTIONS(99), [aux_sym__val_number_token3] = ACTIONS(99), - [aux_sym__val_number_token4] = ACTIONS(3376), - [aux_sym__val_number_token5] = ACTIONS(3376), - [aux_sym__val_number_token6] = ACTIONS(3376), + [aux_sym__val_number_token4] = ACTIONS(3385), + [aux_sym__val_number_token5] = ACTIONS(3385), + [aux_sym__val_number_token6] = ACTIONS(3385), [anon_sym_0b] = ACTIONS(103), [anon_sym_0o] = ACTIONS(105), [anon_sym_0x] = ACTIONS(105), - [sym_val_date] = ACTIONS(3378), + [sym_val_date] = ACTIONS(3387), [anon_sym_DQUOTE] = ACTIONS(109), [sym__str_single_quotes] = ACTIONS(111), [sym__str_back_ticks] = ACTIONS(111), @@ -193210,7 +193210,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3358), + [aux_sym_unquoted_token1] = ACTIONS(3367), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(123), }, @@ -193252,27 +193252,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(45), [anon_sym_LBRACE] = ACTIONS(63), - [anon_sym_DOT_DOT] = ACTIONS(3360), + [anon_sym_DOT_DOT] = ACTIONS(3369), [aux_sym_expr_unary_token1] = ACTIONS(83), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3362), - [anon_sym_DOT_DOT_LT] = ACTIONS(3362), - [anon_sym_null] = ACTIONS(3364), - [anon_sym_true] = ACTIONS(3366), - [anon_sym_false] = ACTIONS(3366), - [aux_sym__val_number_decimal_token1] = ACTIONS(3368), - [aux_sym__val_number_decimal_token2] = ACTIONS(3370), - [aux_sym__val_number_decimal_token3] = ACTIONS(3372), - [aux_sym__val_number_decimal_token4] = ACTIONS(3374), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3371), + [anon_sym_DOT_DOT_LT] = ACTIONS(3371), + [anon_sym_null] = ACTIONS(3373), + [anon_sym_true] = ACTIONS(3375), + [anon_sym_false] = ACTIONS(3375), + [aux_sym__val_number_decimal_token1] = ACTIONS(3377), + [aux_sym__val_number_decimal_token2] = ACTIONS(3379), + [aux_sym__val_number_decimal_token3] = ACTIONS(3381), + [aux_sym__val_number_decimal_token4] = ACTIONS(3383), [aux_sym__val_number_token1] = ACTIONS(99), [aux_sym__val_number_token2] = ACTIONS(99), [aux_sym__val_number_token3] = ACTIONS(99), - [aux_sym__val_number_token4] = ACTIONS(3376), - [aux_sym__val_number_token5] = ACTIONS(3376), - [aux_sym__val_number_token6] = ACTIONS(3376), + [aux_sym__val_number_token4] = ACTIONS(3385), + [aux_sym__val_number_token5] = ACTIONS(3385), + [aux_sym__val_number_token6] = ACTIONS(3385), [anon_sym_0b] = ACTIONS(103), [anon_sym_0o] = ACTIONS(105), [anon_sym_0x] = ACTIONS(105), - [sym_val_date] = ACTIONS(3378), + [sym_val_date] = ACTIONS(3387), [anon_sym_DQUOTE] = ACTIONS(109), [sym__str_single_quotes] = ACTIONS(111), [sym__str_back_ticks] = ACTIONS(111), @@ -193294,7 +193294,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3358), + [aux_sym_unquoted_token1] = ACTIONS(3367), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(123), }, @@ -193336,27 +193336,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(45), [anon_sym_LBRACE] = ACTIONS(63), - [anon_sym_DOT_DOT] = ACTIONS(3360), + [anon_sym_DOT_DOT] = ACTIONS(3369), [aux_sym_expr_unary_token1] = ACTIONS(83), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3362), - [anon_sym_DOT_DOT_LT] = ACTIONS(3362), - [anon_sym_null] = ACTIONS(3364), - [anon_sym_true] = ACTIONS(3366), - [anon_sym_false] = ACTIONS(3366), - [aux_sym__val_number_decimal_token1] = ACTIONS(3368), - [aux_sym__val_number_decimal_token2] = ACTIONS(3370), - [aux_sym__val_number_decimal_token3] = ACTIONS(3372), - [aux_sym__val_number_decimal_token4] = ACTIONS(3374), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3371), + [anon_sym_DOT_DOT_LT] = ACTIONS(3371), + [anon_sym_null] = ACTIONS(3373), + [anon_sym_true] = ACTIONS(3375), + [anon_sym_false] = ACTIONS(3375), + [aux_sym__val_number_decimal_token1] = ACTIONS(3377), + [aux_sym__val_number_decimal_token2] = ACTIONS(3379), + [aux_sym__val_number_decimal_token3] = ACTIONS(3381), + [aux_sym__val_number_decimal_token4] = ACTIONS(3383), [aux_sym__val_number_token1] = ACTIONS(99), [aux_sym__val_number_token2] = ACTIONS(99), [aux_sym__val_number_token3] = ACTIONS(99), - [aux_sym__val_number_token4] = ACTIONS(3376), - [aux_sym__val_number_token5] = ACTIONS(3376), - [aux_sym__val_number_token6] = ACTIONS(3376), + [aux_sym__val_number_token4] = ACTIONS(3385), + [aux_sym__val_number_token5] = ACTIONS(3385), + [aux_sym__val_number_token6] = ACTIONS(3385), [anon_sym_0b] = ACTIONS(103), [anon_sym_0o] = ACTIONS(105), [anon_sym_0x] = ACTIONS(105), - [sym_val_date] = ACTIONS(3378), + [sym_val_date] = ACTIONS(3387), [anon_sym_DQUOTE] = ACTIONS(109), [sym__str_single_quotes] = ACTIONS(111), [sym__str_back_ticks] = ACTIONS(111), @@ -193378,7 +193378,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3358), + [aux_sym_unquoted_token1] = ACTIONS(3367), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(123), }, @@ -193415,38 +193415,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_table] = STATE(2131), [sym_val_closure] = STATE(2131), [sym_comment] = STATE(1131), - [sym__newline] = ACTIONS(3400), - [anon_sym_SEMI] = ACTIONS(3400), - [anon_sym_PIPE] = ACTIONS(3400), - [anon_sym_err_GT_PIPE] = ACTIONS(3400), - [anon_sym_out_GT_PIPE] = ACTIONS(3400), - [anon_sym_e_GT_PIPE] = ACTIONS(3400), - [anon_sym_o_GT_PIPE] = ACTIONS(3400), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(3400), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(3400), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(3400), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(3400), + [sym__newline] = ACTIONS(3409), + [anon_sym_SEMI] = ACTIONS(3409), + [anon_sym_PIPE] = ACTIONS(3409), + [anon_sym_err_GT_PIPE] = ACTIONS(3409), + [anon_sym_out_GT_PIPE] = ACTIONS(3409), + [anon_sym_e_GT_PIPE] = ACTIONS(3409), + [anon_sym_o_GT_PIPE] = ACTIONS(3409), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(3409), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(3409), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(3409), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(3409), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(381), - [anon_sym_do] = ACTIONS(3402), - [anon_sym_if] = ACTIONS(3404), - [anon_sym_match] = ACTIONS(3406), + [anon_sym_do] = ACTIONS(3411), + [anon_sym_if] = ACTIONS(3413), + [anon_sym_match] = ACTIONS(3415), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_RBRACE] = ACTIONS(3400), + [anon_sym_RBRACE] = ACTIONS(3409), [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(3408), + [anon_sym_try] = ACTIONS(3417), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(3410), - [anon_sym_true] = ACTIONS(3412), - [anon_sym_false] = ACTIONS(3412), - [aux_sym__val_number_decimal_token1] = ACTIONS(3414), - [aux_sym__val_number_decimal_token2] = ACTIONS(3416), - [aux_sym__val_number_decimal_token3] = ACTIONS(3418), - [aux_sym__val_number_decimal_token4] = ACTIONS(3420), + [anon_sym_null] = ACTIONS(3419), + [anon_sym_true] = ACTIONS(3421), + [anon_sym_false] = ACTIONS(3421), + [aux_sym__val_number_decimal_token1] = ACTIONS(3423), + [aux_sym__val_number_decimal_token2] = ACTIONS(3425), + [aux_sym__val_number_decimal_token3] = ACTIONS(3427), + [aux_sym__val_number_decimal_token4] = ACTIONS(3429), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), @@ -193462,7 +193462,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_COLON2] = ACTIONS(3424), + [anon_sym_COLON2] = ACTIONS(3433), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, @@ -193504,27 +193504,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(45), [anon_sym_LBRACE] = ACTIONS(63), - [anon_sym_DOT_DOT] = ACTIONS(3338), + [anon_sym_DOT_DOT] = ACTIONS(3347), [aux_sym_expr_unary_token1] = ACTIONS(83), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3340), - [anon_sym_DOT_DOT_LT] = ACTIONS(3340), - [anon_sym_null] = ACTIONS(3342), - [anon_sym_true] = ACTIONS(3344), - [anon_sym_false] = ACTIONS(3344), - [aux_sym__val_number_decimal_token1] = ACTIONS(3346), - [aux_sym__val_number_decimal_token2] = ACTIONS(3348), - [aux_sym__val_number_decimal_token3] = ACTIONS(3350), - [aux_sym__val_number_decimal_token4] = ACTIONS(3352), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3349), + [anon_sym_DOT_DOT_LT] = ACTIONS(3349), + [anon_sym_null] = ACTIONS(3351), + [anon_sym_true] = ACTIONS(3353), + [anon_sym_false] = ACTIONS(3353), + [aux_sym__val_number_decimal_token1] = ACTIONS(3355), + [aux_sym__val_number_decimal_token2] = ACTIONS(3357), + [aux_sym__val_number_decimal_token3] = ACTIONS(3359), + [aux_sym__val_number_decimal_token4] = ACTIONS(3361), [aux_sym__val_number_token1] = ACTIONS(99), [aux_sym__val_number_token2] = ACTIONS(99), [aux_sym__val_number_token3] = ACTIONS(99), - [aux_sym__val_number_token4] = ACTIONS(3354), - [aux_sym__val_number_token5] = ACTIONS(3354), - [aux_sym__val_number_token6] = ACTIONS(3354), + [aux_sym__val_number_token4] = ACTIONS(3363), + [aux_sym__val_number_token5] = ACTIONS(3363), + [aux_sym__val_number_token6] = ACTIONS(3363), [anon_sym_0b] = ACTIONS(103), [anon_sym_0o] = ACTIONS(105), [anon_sym_0x] = ACTIONS(105), - [sym_val_date] = ACTIONS(3356), + [sym_val_date] = ACTIONS(3365), [anon_sym_DQUOTE] = ACTIONS(109), [sym__str_single_quotes] = ACTIONS(111), [sym__str_back_ticks] = ACTIONS(111), @@ -193546,7 +193546,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3358), + [aux_sym_unquoted_token1] = ACTIONS(3367), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(123), }, @@ -193588,27 +193588,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3192), + [anon_sym_DOT_DOT] = ACTIONS(3199), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3194), - [anon_sym_DOT_DOT_LT] = ACTIONS(3194), - [anon_sym_null] = ACTIONS(3196), - [anon_sym_true] = ACTIONS(3198), - [anon_sym_false] = ACTIONS(3198), - [aux_sym__val_number_decimal_token1] = ACTIONS(3200), - [aux_sym__val_number_decimal_token2] = ACTIONS(3202), - [aux_sym__val_number_decimal_token3] = ACTIONS(3204), - [aux_sym__val_number_decimal_token4] = ACTIONS(3206), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3201), + [anon_sym_DOT_DOT_LT] = ACTIONS(3201), + [anon_sym_null] = ACTIONS(3203), + [anon_sym_true] = ACTIONS(3205), + [anon_sym_false] = ACTIONS(3205), + [aux_sym__val_number_decimal_token1] = ACTIONS(3207), + [aux_sym__val_number_decimal_token2] = ACTIONS(3209), + [aux_sym__val_number_decimal_token3] = ACTIONS(3211), + [aux_sym__val_number_decimal_token4] = ACTIONS(3213), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3208), - [aux_sym__val_number_token5] = ACTIONS(3208), - [aux_sym__val_number_token6] = ACTIONS(3208), + [aux_sym__val_number_token4] = ACTIONS(3215), + [aux_sym__val_number_token5] = ACTIONS(3215), + [aux_sym__val_number_token6] = ACTIONS(3215), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3210), + [sym_val_date] = ACTIONS(3217), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), @@ -193630,7 +193630,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3212), + [aux_sym_unquoted_token1] = ACTIONS(3219), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, @@ -193667,38 +193667,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_table] = STATE(2448), [sym_val_closure] = STATE(2448), [sym_comment] = STATE(1134), - [ts_builtin_sym_end] = ACTIONS(3400), - [sym__newline] = ACTIONS(3400), - [anon_sym_SEMI] = ACTIONS(3400), - [anon_sym_PIPE] = ACTIONS(3400), - [anon_sym_err_GT_PIPE] = ACTIONS(3400), - [anon_sym_out_GT_PIPE] = ACTIONS(3400), - [anon_sym_e_GT_PIPE] = ACTIONS(3400), - [anon_sym_o_GT_PIPE] = ACTIONS(3400), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(3400), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(3400), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(3400), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(3400), + [ts_builtin_sym_end] = ACTIONS(3409), + [sym__newline] = ACTIONS(3409), + [anon_sym_SEMI] = ACTIONS(3409), + [anon_sym_PIPE] = ACTIONS(3409), + [anon_sym_err_GT_PIPE] = ACTIONS(3409), + [anon_sym_out_GT_PIPE] = ACTIONS(3409), + [anon_sym_e_GT_PIPE] = ACTIONS(3409), + [anon_sym_o_GT_PIPE] = ACTIONS(3409), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(3409), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(3409), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(3409), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(3409), [anon_sym_LBRACK] = ACTIONS(37), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(45), - [anon_sym_do] = ACTIONS(3426), - [anon_sym_if] = ACTIONS(3428), - [anon_sym_match] = ACTIONS(3430), + [anon_sym_do] = ACTIONS(3435), + [anon_sym_if] = ACTIONS(3437), + [anon_sym_match] = ACTIONS(3439), [anon_sym_LBRACE] = ACTIONS(63), [anon_sym_DOT_DOT] = ACTIONS(65), - [anon_sym_try] = ACTIONS(3432), + [anon_sym_try] = ACTIONS(3441), [aux_sym_expr_unary_token1] = ACTIONS(83), [anon_sym_DOT_DOT_EQ] = ACTIONS(85), [anon_sym_DOT_DOT_LT] = ACTIONS(85), - [anon_sym_null] = ACTIONS(3434), - [anon_sym_true] = ACTIONS(3436), - [anon_sym_false] = ACTIONS(3436), - [aux_sym__val_number_decimal_token1] = ACTIONS(3346), - [aux_sym__val_number_decimal_token2] = ACTIONS(3348), - [aux_sym__val_number_decimal_token3] = ACTIONS(3350), - [aux_sym__val_number_decimal_token4] = ACTIONS(3352), + [anon_sym_null] = ACTIONS(3443), + [anon_sym_true] = ACTIONS(3445), + [anon_sym_false] = ACTIONS(3445), + [aux_sym__val_number_decimal_token1] = ACTIONS(3355), + [aux_sym__val_number_decimal_token2] = ACTIONS(3357), + [aux_sym__val_number_decimal_token3] = ACTIONS(3359), + [aux_sym__val_number_decimal_token4] = ACTIONS(3361), [aux_sym__val_number_token1] = ACTIONS(99), [aux_sym__val_number_token2] = ACTIONS(99), [aux_sym__val_number_token3] = ACTIONS(99), @@ -193750,38 +193750,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_table] = STATE(2131), [sym_val_closure] = STATE(2131), [sym_comment] = STATE(1135), - [sym__newline] = ACTIONS(3400), - [anon_sym_SEMI] = ACTIONS(3400), - [anon_sym_PIPE] = ACTIONS(3400), - [anon_sym_err_GT_PIPE] = ACTIONS(3400), - [anon_sym_out_GT_PIPE] = ACTIONS(3400), - [anon_sym_e_GT_PIPE] = ACTIONS(3400), - [anon_sym_o_GT_PIPE] = ACTIONS(3400), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(3400), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(3400), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(3400), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(3400), + [sym__newline] = ACTIONS(3409), + [anon_sym_SEMI] = ACTIONS(3409), + [anon_sym_PIPE] = ACTIONS(3409), + [anon_sym_err_GT_PIPE] = ACTIONS(3409), + [anon_sym_out_GT_PIPE] = ACTIONS(3409), + [anon_sym_e_GT_PIPE] = ACTIONS(3409), + [anon_sym_o_GT_PIPE] = ACTIONS(3409), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(3409), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(3409), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(3409), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(3409), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(381), - [anon_sym_do] = ACTIONS(3402), - [anon_sym_if] = ACTIONS(3404), - [anon_sym_match] = ACTIONS(3406), + [anon_sym_do] = ACTIONS(3411), + [anon_sym_if] = ACTIONS(3413), + [anon_sym_match] = ACTIONS(3415), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_RBRACE] = ACTIONS(3400), + [anon_sym_RBRACE] = ACTIONS(3409), [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(3408), + [anon_sym_try] = ACTIONS(3417), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(3410), - [anon_sym_true] = ACTIONS(3412), - [anon_sym_false] = ACTIONS(3412), - [aux_sym__val_number_decimal_token1] = ACTIONS(3414), - [aux_sym__val_number_decimal_token2] = ACTIONS(3416), - [aux_sym__val_number_decimal_token3] = ACTIONS(3418), - [aux_sym__val_number_decimal_token4] = ACTIONS(3420), + [anon_sym_null] = ACTIONS(3419), + [anon_sym_true] = ACTIONS(3421), + [anon_sym_false] = ACTIONS(3421), + [aux_sym__val_number_decimal_token1] = ACTIONS(3423), + [aux_sym__val_number_decimal_token2] = ACTIONS(3425), + [aux_sym__val_number_decimal_token3] = ACTIONS(3427), + [aux_sym__val_number_decimal_token4] = ACTIONS(3429), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), @@ -193833,38 +193833,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_table] = STATE(2131), [sym_val_closure] = STATE(2131), [sym_comment] = STATE(1136), - [sym__newline] = ACTIONS(3400), - [anon_sym_SEMI] = ACTIONS(3400), - [anon_sym_PIPE] = ACTIONS(3400), - [anon_sym_err_GT_PIPE] = ACTIONS(3400), - [anon_sym_out_GT_PIPE] = ACTIONS(3400), - [anon_sym_e_GT_PIPE] = ACTIONS(3400), - [anon_sym_o_GT_PIPE] = ACTIONS(3400), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(3400), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(3400), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(3400), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(3400), + [sym__newline] = ACTIONS(3409), + [anon_sym_SEMI] = ACTIONS(3409), + [anon_sym_PIPE] = ACTIONS(3409), + [anon_sym_err_GT_PIPE] = ACTIONS(3409), + [anon_sym_out_GT_PIPE] = ACTIONS(3409), + [anon_sym_e_GT_PIPE] = ACTIONS(3409), + [anon_sym_o_GT_PIPE] = ACTIONS(3409), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(3409), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(3409), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(3409), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(3409), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_RPAREN] = ACTIONS(3400), + [anon_sym_RPAREN] = ACTIONS(3409), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(381), - [anon_sym_do] = ACTIONS(3402), - [anon_sym_if] = ACTIONS(3438), - [anon_sym_match] = ACTIONS(3406), + [anon_sym_do] = ACTIONS(3411), + [anon_sym_if] = ACTIONS(3447), + [anon_sym_match] = ACTIONS(3415), [anon_sym_LBRACE] = ACTIONS(183), [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(3408), + [anon_sym_try] = ACTIONS(3417), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(3410), - [anon_sym_true] = ACTIONS(3412), - [anon_sym_false] = ACTIONS(3412), - [aux_sym__val_number_decimal_token1] = ACTIONS(3414), - [aux_sym__val_number_decimal_token2] = ACTIONS(3416), - [aux_sym__val_number_decimal_token3] = ACTIONS(3418), - [aux_sym__val_number_decimal_token4] = ACTIONS(3420), + [anon_sym_null] = ACTIONS(3419), + [anon_sym_true] = ACTIONS(3421), + [anon_sym_false] = ACTIONS(3421), + [aux_sym__val_number_decimal_token1] = ACTIONS(3423), + [aux_sym__val_number_decimal_token2] = ACTIONS(3425), + [aux_sym__val_number_decimal_token3] = ACTIONS(3427), + [aux_sym__val_number_decimal_token4] = ACTIONS(3429), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), @@ -193916,30 +193916,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = STATE(1137), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(3440), + [anon_sym_DOLLAR] = ACTIONS(3449), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3442), - [aux_sym_expr_unary_token1] = ACTIONS(3444), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3446), - [anon_sym_DOT_DOT_LT] = ACTIONS(3446), - [anon_sym_null] = ACTIONS(3448), - [anon_sym_true] = ACTIONS(3450), - [anon_sym_false] = ACTIONS(3450), - [aux_sym__val_number_decimal_token1] = ACTIONS(3452), - [aux_sym__val_number_decimal_token2] = ACTIONS(3454), - [aux_sym__val_number_decimal_token3] = ACTIONS(3456), - [aux_sym__val_number_decimal_token4] = ACTIONS(3458), + [anon_sym_DOT_DOT] = ACTIONS(3451), + [aux_sym_expr_unary_token1] = ACTIONS(3453), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3455), + [anon_sym_DOT_DOT_LT] = ACTIONS(3455), + [anon_sym_null] = ACTIONS(3457), + [anon_sym_true] = ACTIONS(3459), + [anon_sym_false] = ACTIONS(3459), + [aux_sym__val_number_decimal_token1] = ACTIONS(3461), + [aux_sym__val_number_decimal_token2] = ACTIONS(3463), + [aux_sym__val_number_decimal_token3] = ACTIONS(3465), + [aux_sym__val_number_decimal_token4] = ACTIONS(3467), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3460), - [aux_sym__val_number_token5] = ACTIONS(3460), - [aux_sym__val_number_token6] = ACTIONS(3460), + [aux_sym__val_number_token4] = ACTIONS(3469), + [aux_sym__val_number_token5] = ACTIONS(3469), + [aux_sym__val_number_token6] = ACTIONS(3469), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3462), + [sym_val_date] = ACTIONS(3471), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), @@ -193961,7 +193961,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3212), + [aux_sym_unquoted_token1] = ACTIONS(3219), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, @@ -193998,30 +193998,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = STATE(1138), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(3440), + [anon_sym_DOLLAR] = ACTIONS(3449), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3442), - [aux_sym_expr_unary_token1] = ACTIONS(3444), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3446), - [anon_sym_DOT_DOT_LT] = ACTIONS(3446), - [anon_sym_null] = ACTIONS(3448), - [anon_sym_true] = ACTIONS(3450), - [anon_sym_false] = ACTIONS(3450), - [aux_sym__val_number_decimal_token1] = ACTIONS(3452), - [aux_sym__val_number_decimal_token2] = ACTIONS(3454), - [aux_sym__val_number_decimal_token3] = ACTIONS(3456), - [aux_sym__val_number_decimal_token4] = ACTIONS(3458), + [anon_sym_DOT_DOT] = ACTIONS(3451), + [aux_sym_expr_unary_token1] = ACTIONS(3453), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3455), + [anon_sym_DOT_DOT_LT] = ACTIONS(3455), + [anon_sym_null] = ACTIONS(3457), + [anon_sym_true] = ACTIONS(3459), + [anon_sym_false] = ACTIONS(3459), + [aux_sym__val_number_decimal_token1] = ACTIONS(3461), + [aux_sym__val_number_decimal_token2] = ACTIONS(3463), + [aux_sym__val_number_decimal_token3] = ACTIONS(3465), + [aux_sym__val_number_decimal_token4] = ACTIONS(3467), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3460), - [aux_sym__val_number_token5] = ACTIONS(3460), - [aux_sym__val_number_token6] = ACTIONS(3460), + [aux_sym__val_number_token4] = ACTIONS(3469), + [aux_sym__val_number_token5] = ACTIONS(3469), + [aux_sym__val_number_token6] = ACTIONS(3469), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3462), + [sym_val_date] = ACTIONS(3471), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), @@ -194043,91 +194043,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3212), + [aux_sym_unquoted_token1] = ACTIONS(3219), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, [1139] = { [sym_comment] = STATE(1139), [aux_sym_ctrl_do_parenthesized_repeat2] = STATE(1142), - [aux_sym_cmd_identifier_token1] = ACTIONS(3464), - [aux_sym_cmd_identifier_token2] = ACTIONS(3464), - [aux_sym_cmd_identifier_token3] = ACTIONS(3464), - [aux_sym_cmd_identifier_token4] = ACTIONS(3464), - [aux_sym_cmd_identifier_token5] = ACTIONS(3464), - [aux_sym_cmd_identifier_token6] = ACTIONS(3464), - [aux_sym_cmd_identifier_token7] = ACTIONS(3464), - [aux_sym_cmd_identifier_token8] = ACTIONS(3464), - [aux_sym_cmd_identifier_token9] = ACTIONS(3464), - [aux_sym_cmd_identifier_token10] = ACTIONS(3464), - [aux_sym_cmd_identifier_token11] = ACTIONS(3464), - [aux_sym_cmd_identifier_token12] = ACTIONS(3464), - [aux_sym_cmd_identifier_token13] = ACTIONS(3464), - [aux_sym_cmd_identifier_token14] = ACTIONS(3464), - [aux_sym_cmd_identifier_token15] = ACTIONS(3464), - [aux_sym_cmd_identifier_token16] = ACTIONS(3464), - [aux_sym_cmd_identifier_token17] = ACTIONS(3464), - [aux_sym_cmd_identifier_token18] = ACTIONS(3464), - [aux_sym_cmd_identifier_token19] = ACTIONS(3464), - [aux_sym_cmd_identifier_token20] = ACTIONS(3464), - [aux_sym_cmd_identifier_token21] = ACTIONS(3464), - [aux_sym_cmd_identifier_token22] = ACTIONS(3464), - [aux_sym_cmd_identifier_token23] = ACTIONS(3464), - [aux_sym_cmd_identifier_token24] = ACTIONS(3464), - [aux_sym_cmd_identifier_token25] = ACTIONS(3464), - [aux_sym_cmd_identifier_token26] = ACTIONS(3464), - [aux_sym_cmd_identifier_token27] = ACTIONS(3464), - [aux_sym_cmd_identifier_token28] = ACTIONS(3464), - [aux_sym_cmd_identifier_token29] = ACTIONS(3464), - [aux_sym_cmd_identifier_token30] = ACTIONS(3464), - [aux_sym_cmd_identifier_token31] = ACTIONS(3464), - [aux_sym_cmd_identifier_token32] = ACTIONS(3464), - [aux_sym_cmd_identifier_token33] = ACTIONS(3464), - [aux_sym_cmd_identifier_token34] = ACTIONS(3464), - [aux_sym_cmd_identifier_token35] = ACTIONS(3464), - [aux_sym_cmd_identifier_token36] = ACTIONS(3464), - [aux_sym_cmd_identifier_token37] = ACTIONS(3464), - [aux_sym_cmd_identifier_token38] = ACTIONS(3464), - [aux_sym_cmd_identifier_token39] = ACTIONS(3464), - [aux_sym_cmd_identifier_token40] = ACTIONS(3464), - [sym__newline] = ACTIONS(3466), - [sym__space] = ACTIONS(3468), - [anon_sym_LBRACK] = ACTIONS(3464), - [anon_sym_LPAREN] = ACTIONS(3464), - [anon_sym_DOLLAR] = ACTIONS(3464), - [anon_sym_DASH2] = ACTIONS(3464), - [anon_sym_LBRACE] = ACTIONS(3464), - [anon_sym_DOT_DOT] = ACTIONS(3464), - [aux_sym_expr_unary_token1] = ACTIONS(3464), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3464), - [anon_sym_DOT_DOT_LT] = ACTIONS(3464), - [anon_sym_null] = ACTIONS(3464), - [anon_sym_true] = ACTIONS(3464), - [anon_sym_false] = ACTIONS(3464), - [aux_sym__val_number_decimal_token1] = ACTIONS(3464), - [aux_sym__val_number_decimal_token2] = ACTIONS(3464), - [aux_sym__val_number_decimal_token3] = ACTIONS(3464), - [aux_sym__val_number_decimal_token4] = ACTIONS(3464), - [aux_sym__val_number_token1] = ACTIONS(3464), - [aux_sym__val_number_token2] = ACTIONS(3464), - [aux_sym__val_number_token3] = ACTIONS(3464), - [aux_sym__val_number_token4] = ACTIONS(3464), - [aux_sym__val_number_token5] = ACTIONS(3464), - [aux_sym__val_number_token6] = ACTIONS(3464), - [anon_sym_0b] = ACTIONS(3464), - [anon_sym_0o] = ACTIONS(3464), - [anon_sym_0x] = ACTIONS(3464), - [sym_val_date] = ACTIONS(3464), - [anon_sym_DQUOTE] = ACTIONS(3464), - [sym__str_single_quotes] = ACTIONS(3464), - [sym__str_back_ticks] = ACTIONS(3464), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3464), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3464), - [aux_sym_env_var_token1] = ACTIONS(3464), - [anon_sym_CARET] = ACTIONS(3464), - [aux_sym_command_token1] = ACTIONS(3464), + [aux_sym_cmd_identifier_token1] = ACTIONS(3473), + [aux_sym_cmd_identifier_token2] = ACTIONS(3473), + [aux_sym_cmd_identifier_token3] = ACTIONS(3473), + [aux_sym_cmd_identifier_token4] = ACTIONS(3473), + [aux_sym_cmd_identifier_token5] = ACTIONS(3473), + [aux_sym_cmd_identifier_token6] = ACTIONS(3473), + [aux_sym_cmd_identifier_token7] = ACTIONS(3473), + [aux_sym_cmd_identifier_token8] = ACTIONS(3473), + [aux_sym_cmd_identifier_token9] = ACTIONS(3473), + [aux_sym_cmd_identifier_token10] = ACTIONS(3473), + [aux_sym_cmd_identifier_token11] = ACTIONS(3473), + [aux_sym_cmd_identifier_token12] = ACTIONS(3473), + [aux_sym_cmd_identifier_token13] = ACTIONS(3473), + [aux_sym_cmd_identifier_token14] = ACTIONS(3473), + [aux_sym_cmd_identifier_token15] = ACTIONS(3473), + [aux_sym_cmd_identifier_token16] = ACTIONS(3473), + [aux_sym_cmd_identifier_token17] = ACTIONS(3473), + [aux_sym_cmd_identifier_token18] = ACTIONS(3473), + [aux_sym_cmd_identifier_token19] = ACTIONS(3473), + [aux_sym_cmd_identifier_token20] = ACTIONS(3473), + [aux_sym_cmd_identifier_token21] = ACTIONS(3473), + [aux_sym_cmd_identifier_token22] = ACTIONS(3473), + [aux_sym_cmd_identifier_token23] = ACTIONS(3473), + [aux_sym_cmd_identifier_token24] = ACTIONS(3473), + [aux_sym_cmd_identifier_token25] = ACTIONS(3473), + [aux_sym_cmd_identifier_token26] = ACTIONS(3473), + [aux_sym_cmd_identifier_token27] = ACTIONS(3473), + [aux_sym_cmd_identifier_token28] = ACTIONS(3473), + [aux_sym_cmd_identifier_token29] = ACTIONS(3473), + [aux_sym_cmd_identifier_token30] = ACTIONS(3473), + [aux_sym_cmd_identifier_token31] = ACTIONS(3473), + [aux_sym_cmd_identifier_token32] = ACTIONS(3473), + [aux_sym_cmd_identifier_token33] = ACTIONS(3473), + [aux_sym_cmd_identifier_token34] = ACTIONS(3473), + [aux_sym_cmd_identifier_token35] = ACTIONS(3473), + [aux_sym_cmd_identifier_token36] = ACTIONS(3473), + [aux_sym_cmd_identifier_token37] = ACTIONS(3473), + [aux_sym_cmd_identifier_token38] = ACTIONS(3473), + [aux_sym_cmd_identifier_token39] = ACTIONS(3473), + [aux_sym_cmd_identifier_token40] = ACTIONS(3473), + [sym__newline] = ACTIONS(3475), + [sym__space] = ACTIONS(3477), + [anon_sym_LBRACK] = ACTIONS(3473), + [anon_sym_LPAREN] = ACTIONS(3473), + [anon_sym_DOLLAR] = ACTIONS(3473), + [anon_sym_DASH2] = ACTIONS(3473), + [anon_sym_LBRACE] = ACTIONS(3473), + [anon_sym_DOT_DOT] = ACTIONS(3473), + [aux_sym_expr_unary_token1] = ACTIONS(3473), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3473), + [anon_sym_DOT_DOT_LT] = ACTIONS(3473), + [anon_sym_null] = ACTIONS(3473), + [anon_sym_true] = ACTIONS(3473), + [anon_sym_false] = ACTIONS(3473), + [aux_sym__val_number_decimal_token1] = ACTIONS(3473), + [aux_sym__val_number_decimal_token2] = ACTIONS(3473), + [aux_sym__val_number_decimal_token3] = ACTIONS(3473), + [aux_sym__val_number_decimal_token4] = ACTIONS(3473), + [aux_sym__val_number_token1] = ACTIONS(3473), + [aux_sym__val_number_token2] = ACTIONS(3473), + [aux_sym__val_number_token3] = ACTIONS(3473), + [aux_sym__val_number_token4] = ACTIONS(3473), + [aux_sym__val_number_token5] = ACTIONS(3473), + [aux_sym__val_number_token6] = ACTIONS(3473), + [anon_sym_0b] = ACTIONS(3473), + [anon_sym_0o] = ACTIONS(3473), + [anon_sym_0x] = ACTIONS(3473), + [sym_val_date] = ACTIONS(3473), + [anon_sym_DQUOTE] = ACTIONS(3473), + [sym__str_single_quotes] = ACTIONS(3473), + [sym__str_back_ticks] = ACTIONS(3473), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3473), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3473), + [aux_sym_env_var_token1] = ACTIONS(3473), + [anon_sym_CARET] = ACTIONS(3473), + [aux_sym_command_token1] = ACTIONS(3473), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(3470), + [sym_raw_string_begin] = ACTIONS(3479), }, [1140] = { [sym_expr_unary] = STATE(4372), @@ -194162,30 +194162,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = STATE(1140), [anon_sym_LBRACK] = ACTIONS(37), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(3472), + [anon_sym_DOLLAR] = ACTIONS(3481), [anon_sym_DASH2] = ACTIONS(45), [anon_sym_LBRACE] = ACTIONS(63), - [anon_sym_DOT_DOT] = ACTIONS(3474), - [aux_sym_expr_unary_token1] = ACTIONS(3476), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3478), - [anon_sym_DOT_DOT_LT] = ACTIONS(3478), - [anon_sym_null] = ACTIONS(3480), - [anon_sym_true] = ACTIONS(3482), - [anon_sym_false] = ACTIONS(3482), - [aux_sym__val_number_decimal_token1] = ACTIONS(3484), - [aux_sym__val_number_decimal_token2] = ACTIONS(3486), - [aux_sym__val_number_decimal_token3] = ACTIONS(3488), - [aux_sym__val_number_decimal_token4] = ACTIONS(3490), + [anon_sym_DOT_DOT] = ACTIONS(3483), + [aux_sym_expr_unary_token1] = ACTIONS(3485), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3487), + [anon_sym_DOT_DOT_LT] = ACTIONS(3487), + [anon_sym_null] = ACTIONS(3489), + [anon_sym_true] = ACTIONS(3491), + [anon_sym_false] = ACTIONS(3491), + [aux_sym__val_number_decimal_token1] = ACTIONS(3493), + [aux_sym__val_number_decimal_token2] = ACTIONS(3495), + [aux_sym__val_number_decimal_token3] = ACTIONS(3497), + [aux_sym__val_number_decimal_token4] = ACTIONS(3499), [aux_sym__val_number_token1] = ACTIONS(99), [aux_sym__val_number_token2] = ACTIONS(99), [aux_sym__val_number_token3] = ACTIONS(99), - [aux_sym__val_number_token4] = ACTIONS(3492), - [aux_sym__val_number_token5] = ACTIONS(3492), - [aux_sym__val_number_token6] = ACTIONS(3492), + [aux_sym__val_number_token4] = ACTIONS(3501), + [aux_sym__val_number_token5] = ACTIONS(3501), + [aux_sym__val_number_token6] = ACTIONS(3501), [anon_sym_0b] = ACTIONS(103), [anon_sym_0o] = ACTIONS(105), [anon_sym_0x] = ACTIONS(105), - [sym_val_date] = ACTIONS(3494), + [sym_val_date] = ACTIONS(3503), [anon_sym_DQUOTE] = ACTIONS(109), [sym__str_single_quotes] = ACTIONS(111), [sym__str_back_ticks] = ACTIONS(111), @@ -194207,7 +194207,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3358), + [aux_sym_unquoted_token1] = ACTIONS(3367), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(123), }, @@ -194244,30 +194244,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = STATE(1141), [anon_sym_LBRACK] = ACTIONS(37), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(3472), + [anon_sym_DOLLAR] = ACTIONS(3481), [anon_sym_DASH2] = ACTIONS(45), [anon_sym_LBRACE] = ACTIONS(63), - [anon_sym_DOT_DOT] = ACTIONS(3474), - [aux_sym_expr_unary_token1] = ACTIONS(3476), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3478), - [anon_sym_DOT_DOT_LT] = ACTIONS(3478), - [anon_sym_null] = ACTIONS(3480), - [anon_sym_true] = ACTIONS(3482), - [anon_sym_false] = ACTIONS(3482), - [aux_sym__val_number_decimal_token1] = ACTIONS(3484), - [aux_sym__val_number_decimal_token2] = ACTIONS(3486), - [aux_sym__val_number_decimal_token3] = ACTIONS(3488), - [aux_sym__val_number_decimal_token4] = ACTIONS(3490), + [anon_sym_DOT_DOT] = ACTIONS(3483), + [aux_sym_expr_unary_token1] = ACTIONS(3485), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3487), + [anon_sym_DOT_DOT_LT] = ACTIONS(3487), + [anon_sym_null] = ACTIONS(3489), + [anon_sym_true] = ACTIONS(3491), + [anon_sym_false] = ACTIONS(3491), + [aux_sym__val_number_decimal_token1] = ACTIONS(3493), + [aux_sym__val_number_decimal_token2] = ACTIONS(3495), + [aux_sym__val_number_decimal_token3] = ACTIONS(3497), + [aux_sym__val_number_decimal_token4] = ACTIONS(3499), [aux_sym__val_number_token1] = ACTIONS(99), [aux_sym__val_number_token2] = ACTIONS(99), [aux_sym__val_number_token3] = ACTIONS(99), - [aux_sym__val_number_token4] = ACTIONS(3492), - [aux_sym__val_number_token5] = ACTIONS(3492), - [aux_sym__val_number_token6] = ACTIONS(3492), + [aux_sym__val_number_token4] = ACTIONS(3501), + [aux_sym__val_number_token5] = ACTIONS(3501), + [aux_sym__val_number_token6] = ACTIONS(3501), [anon_sym_0b] = ACTIONS(103), [anon_sym_0o] = ACTIONS(105), [anon_sym_0x] = ACTIONS(105), - [sym_val_date] = ACTIONS(3494), + [sym_val_date] = ACTIONS(3503), [anon_sym_DQUOTE] = ACTIONS(109), [sym__str_single_quotes] = ACTIONS(111), [sym__str_back_ticks] = ACTIONS(111), @@ -194289,91 +194289,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3358), + [aux_sym_unquoted_token1] = ACTIONS(3367), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(123), }, [1142] = { [sym_comment] = STATE(1142), [aux_sym_ctrl_do_parenthesized_repeat2] = STATE(1142), - [aux_sym_cmd_identifier_token1] = ACTIONS(3496), - [aux_sym_cmd_identifier_token2] = ACTIONS(3496), - [aux_sym_cmd_identifier_token3] = ACTIONS(3496), - [aux_sym_cmd_identifier_token4] = ACTIONS(3496), - [aux_sym_cmd_identifier_token5] = ACTIONS(3496), - [aux_sym_cmd_identifier_token6] = ACTIONS(3496), - [aux_sym_cmd_identifier_token7] = ACTIONS(3496), - [aux_sym_cmd_identifier_token8] = ACTIONS(3496), - [aux_sym_cmd_identifier_token9] = ACTIONS(3496), - [aux_sym_cmd_identifier_token10] = ACTIONS(3496), - [aux_sym_cmd_identifier_token11] = ACTIONS(3496), - [aux_sym_cmd_identifier_token12] = ACTIONS(3496), - [aux_sym_cmd_identifier_token13] = ACTIONS(3496), - [aux_sym_cmd_identifier_token14] = ACTIONS(3496), - [aux_sym_cmd_identifier_token15] = ACTIONS(3496), - [aux_sym_cmd_identifier_token16] = ACTIONS(3496), - [aux_sym_cmd_identifier_token17] = ACTIONS(3496), - [aux_sym_cmd_identifier_token18] = ACTIONS(3496), - [aux_sym_cmd_identifier_token19] = ACTIONS(3496), - [aux_sym_cmd_identifier_token20] = ACTIONS(3496), - [aux_sym_cmd_identifier_token21] = ACTIONS(3496), - [aux_sym_cmd_identifier_token22] = ACTIONS(3496), - [aux_sym_cmd_identifier_token23] = ACTIONS(3496), - [aux_sym_cmd_identifier_token24] = ACTIONS(3496), - [aux_sym_cmd_identifier_token25] = ACTIONS(3496), - [aux_sym_cmd_identifier_token26] = ACTIONS(3496), - [aux_sym_cmd_identifier_token27] = ACTIONS(3496), - [aux_sym_cmd_identifier_token28] = ACTIONS(3496), - [aux_sym_cmd_identifier_token29] = ACTIONS(3496), - [aux_sym_cmd_identifier_token30] = ACTIONS(3496), - [aux_sym_cmd_identifier_token31] = ACTIONS(3496), - [aux_sym_cmd_identifier_token32] = ACTIONS(3496), - [aux_sym_cmd_identifier_token33] = ACTIONS(3496), - [aux_sym_cmd_identifier_token34] = ACTIONS(3496), - [aux_sym_cmd_identifier_token35] = ACTIONS(3496), - [aux_sym_cmd_identifier_token36] = ACTIONS(3496), - [aux_sym_cmd_identifier_token37] = ACTIONS(3496), - [aux_sym_cmd_identifier_token38] = ACTIONS(3496), - [aux_sym_cmd_identifier_token39] = ACTIONS(3496), - [aux_sym_cmd_identifier_token40] = ACTIONS(3496), - [sym__newline] = ACTIONS(3498), - [sym__space] = ACTIONS(3501), - [anon_sym_LBRACK] = ACTIONS(3496), - [anon_sym_LPAREN] = ACTIONS(3496), - [anon_sym_DOLLAR] = ACTIONS(3496), - [anon_sym_DASH2] = ACTIONS(3496), - [anon_sym_LBRACE] = ACTIONS(3496), - [anon_sym_DOT_DOT] = ACTIONS(3496), - [aux_sym_expr_unary_token1] = ACTIONS(3496), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3496), - [anon_sym_DOT_DOT_LT] = ACTIONS(3496), - [anon_sym_null] = ACTIONS(3496), - [anon_sym_true] = ACTIONS(3496), - [anon_sym_false] = ACTIONS(3496), - [aux_sym__val_number_decimal_token1] = ACTIONS(3496), - [aux_sym__val_number_decimal_token2] = ACTIONS(3496), - [aux_sym__val_number_decimal_token3] = ACTIONS(3496), - [aux_sym__val_number_decimal_token4] = ACTIONS(3496), - [aux_sym__val_number_token1] = ACTIONS(3496), - [aux_sym__val_number_token2] = ACTIONS(3496), - [aux_sym__val_number_token3] = ACTIONS(3496), - [aux_sym__val_number_token4] = ACTIONS(3496), - [aux_sym__val_number_token5] = ACTIONS(3496), - [aux_sym__val_number_token6] = ACTIONS(3496), - [anon_sym_0b] = ACTIONS(3496), - [anon_sym_0o] = ACTIONS(3496), - [anon_sym_0x] = ACTIONS(3496), - [sym_val_date] = ACTIONS(3496), - [anon_sym_DQUOTE] = ACTIONS(3496), - [sym__str_single_quotes] = ACTIONS(3496), - [sym__str_back_ticks] = ACTIONS(3496), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3496), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3496), - [aux_sym_env_var_token1] = ACTIONS(3496), - [anon_sym_CARET] = ACTIONS(3496), - [aux_sym_command_token1] = ACTIONS(3496), + [aux_sym_cmd_identifier_token1] = ACTIONS(3505), + [aux_sym_cmd_identifier_token2] = ACTIONS(3505), + [aux_sym_cmd_identifier_token3] = ACTIONS(3505), + [aux_sym_cmd_identifier_token4] = ACTIONS(3505), + [aux_sym_cmd_identifier_token5] = ACTIONS(3505), + [aux_sym_cmd_identifier_token6] = ACTIONS(3505), + [aux_sym_cmd_identifier_token7] = ACTIONS(3505), + [aux_sym_cmd_identifier_token8] = ACTIONS(3505), + [aux_sym_cmd_identifier_token9] = ACTIONS(3505), + [aux_sym_cmd_identifier_token10] = ACTIONS(3505), + [aux_sym_cmd_identifier_token11] = ACTIONS(3505), + [aux_sym_cmd_identifier_token12] = ACTIONS(3505), + [aux_sym_cmd_identifier_token13] = ACTIONS(3505), + [aux_sym_cmd_identifier_token14] = ACTIONS(3505), + [aux_sym_cmd_identifier_token15] = ACTIONS(3505), + [aux_sym_cmd_identifier_token16] = ACTIONS(3505), + [aux_sym_cmd_identifier_token17] = ACTIONS(3505), + [aux_sym_cmd_identifier_token18] = ACTIONS(3505), + [aux_sym_cmd_identifier_token19] = ACTIONS(3505), + [aux_sym_cmd_identifier_token20] = ACTIONS(3505), + [aux_sym_cmd_identifier_token21] = ACTIONS(3505), + [aux_sym_cmd_identifier_token22] = ACTIONS(3505), + [aux_sym_cmd_identifier_token23] = ACTIONS(3505), + [aux_sym_cmd_identifier_token24] = ACTIONS(3505), + [aux_sym_cmd_identifier_token25] = ACTIONS(3505), + [aux_sym_cmd_identifier_token26] = ACTIONS(3505), + [aux_sym_cmd_identifier_token27] = ACTIONS(3505), + [aux_sym_cmd_identifier_token28] = ACTIONS(3505), + [aux_sym_cmd_identifier_token29] = ACTIONS(3505), + [aux_sym_cmd_identifier_token30] = ACTIONS(3505), + [aux_sym_cmd_identifier_token31] = ACTIONS(3505), + [aux_sym_cmd_identifier_token32] = ACTIONS(3505), + [aux_sym_cmd_identifier_token33] = ACTIONS(3505), + [aux_sym_cmd_identifier_token34] = ACTIONS(3505), + [aux_sym_cmd_identifier_token35] = ACTIONS(3505), + [aux_sym_cmd_identifier_token36] = ACTIONS(3505), + [aux_sym_cmd_identifier_token37] = ACTIONS(3505), + [aux_sym_cmd_identifier_token38] = ACTIONS(3505), + [aux_sym_cmd_identifier_token39] = ACTIONS(3505), + [aux_sym_cmd_identifier_token40] = ACTIONS(3505), + [sym__newline] = ACTIONS(3507), + [sym__space] = ACTIONS(3510), + [anon_sym_LBRACK] = ACTIONS(3505), + [anon_sym_LPAREN] = ACTIONS(3505), + [anon_sym_DOLLAR] = ACTIONS(3505), + [anon_sym_DASH2] = ACTIONS(3505), + [anon_sym_LBRACE] = ACTIONS(3505), + [anon_sym_DOT_DOT] = ACTIONS(3505), + [aux_sym_expr_unary_token1] = ACTIONS(3505), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3505), + [anon_sym_DOT_DOT_LT] = ACTIONS(3505), + [anon_sym_null] = ACTIONS(3505), + [anon_sym_true] = ACTIONS(3505), + [anon_sym_false] = ACTIONS(3505), + [aux_sym__val_number_decimal_token1] = ACTIONS(3505), + [aux_sym__val_number_decimal_token2] = ACTIONS(3505), + [aux_sym__val_number_decimal_token3] = ACTIONS(3505), + [aux_sym__val_number_decimal_token4] = ACTIONS(3505), + [aux_sym__val_number_token1] = ACTIONS(3505), + [aux_sym__val_number_token2] = ACTIONS(3505), + [aux_sym__val_number_token3] = ACTIONS(3505), + [aux_sym__val_number_token4] = ACTIONS(3505), + [aux_sym__val_number_token5] = ACTIONS(3505), + [aux_sym__val_number_token6] = ACTIONS(3505), + [anon_sym_0b] = ACTIONS(3505), + [anon_sym_0o] = ACTIONS(3505), + [anon_sym_0x] = ACTIONS(3505), + [sym_val_date] = ACTIONS(3505), + [anon_sym_DQUOTE] = ACTIONS(3505), + [sym__str_single_quotes] = ACTIONS(3505), + [sym__str_back_ticks] = ACTIONS(3505), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3505), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3505), + [aux_sym_env_var_token1] = ACTIONS(3505), + [anon_sym_CARET] = ACTIONS(3505), + [aux_sym_command_token1] = ACTIONS(3505), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(3504), + [sym_raw_string_begin] = ACTIONS(3513), }, [1143] = { [sym_expr_unary] = STATE(4140), @@ -194408,30 +194408,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = STATE(1143), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(3440), + [anon_sym_DOLLAR] = ACTIONS(3449), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3442), - [aux_sym_expr_unary_token1] = ACTIONS(3444), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3446), - [anon_sym_DOT_DOT_LT] = ACTIONS(3446), - [anon_sym_null] = ACTIONS(3448), - [anon_sym_true] = ACTIONS(3450), - [anon_sym_false] = ACTIONS(3450), - [aux_sym__val_number_decimal_token1] = ACTIONS(3452), - [aux_sym__val_number_decimal_token2] = ACTIONS(3454), - [aux_sym__val_number_decimal_token3] = ACTIONS(3456), - [aux_sym__val_number_decimal_token4] = ACTIONS(3458), + [anon_sym_DOT_DOT] = ACTIONS(3451), + [aux_sym_expr_unary_token1] = ACTIONS(3453), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3455), + [anon_sym_DOT_DOT_LT] = ACTIONS(3455), + [anon_sym_null] = ACTIONS(3457), + [anon_sym_true] = ACTIONS(3459), + [anon_sym_false] = ACTIONS(3459), + [aux_sym__val_number_decimal_token1] = ACTIONS(3461), + [aux_sym__val_number_decimal_token2] = ACTIONS(3463), + [aux_sym__val_number_decimal_token3] = ACTIONS(3465), + [aux_sym__val_number_decimal_token4] = ACTIONS(3467), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3460), - [aux_sym__val_number_token5] = ACTIONS(3460), - [aux_sym__val_number_token6] = ACTIONS(3460), + [aux_sym__val_number_token4] = ACTIONS(3469), + [aux_sym__val_number_token5] = ACTIONS(3469), + [aux_sym__val_number_token6] = ACTIONS(3469), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3462), + [sym_val_date] = ACTIONS(3471), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), @@ -194453,7 +194453,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3212), + [aux_sym_unquoted_token1] = ACTIONS(3219), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, @@ -194490,37 +194490,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_table] = STATE(2131), [sym_val_closure] = STATE(2131), [sym_comment] = STATE(1144), - [sym__newline] = ACTIONS(3400), - [anon_sym_SEMI] = ACTIONS(3400), - [anon_sym_PIPE] = ACTIONS(3400), - [anon_sym_err_GT_PIPE] = ACTIONS(3400), - [anon_sym_out_GT_PIPE] = ACTIONS(3400), - [anon_sym_e_GT_PIPE] = ACTIONS(3400), - [anon_sym_o_GT_PIPE] = ACTIONS(3400), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(3400), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(3400), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(3400), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(3400), + [sym__newline] = ACTIONS(3409), + [anon_sym_SEMI] = ACTIONS(3409), + [anon_sym_PIPE] = ACTIONS(3409), + [anon_sym_err_GT_PIPE] = ACTIONS(3409), + [anon_sym_out_GT_PIPE] = ACTIONS(3409), + [anon_sym_e_GT_PIPE] = ACTIONS(3409), + [anon_sym_o_GT_PIPE] = ACTIONS(3409), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(3409), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(3409), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(3409), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(3409), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(381), - [anon_sym_do] = ACTIONS(3402), - [anon_sym_if] = ACTIONS(3506), - [anon_sym_match] = ACTIONS(3406), + [anon_sym_do] = ACTIONS(3411), + [anon_sym_if] = ACTIONS(3515), + [anon_sym_match] = ACTIONS(3415), [anon_sym_LBRACE] = ACTIONS(183), [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(3408), + [anon_sym_try] = ACTIONS(3417), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(3410), - [anon_sym_true] = ACTIONS(3412), - [anon_sym_false] = ACTIONS(3412), - [aux_sym__val_number_decimal_token1] = ACTIONS(3414), - [aux_sym__val_number_decimal_token2] = ACTIONS(3416), - [aux_sym__val_number_decimal_token3] = ACTIONS(3418), - [aux_sym__val_number_decimal_token4] = ACTIONS(3420), + [anon_sym_null] = ACTIONS(3419), + [anon_sym_true] = ACTIONS(3421), + [anon_sym_false] = ACTIONS(3421), + [aux_sym__val_number_decimal_token1] = ACTIONS(3423), + [aux_sym__val_number_decimal_token2] = ACTIONS(3425), + [aux_sym__val_number_decimal_token3] = ACTIONS(3427), + [aux_sym__val_number_decimal_token4] = ACTIONS(3429), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), @@ -194572,30 +194572,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = STATE(1145), [anon_sym_LBRACK] = ACTIONS(37), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(3472), + [anon_sym_DOLLAR] = ACTIONS(3481), [anon_sym_DASH2] = ACTIONS(45), [anon_sym_LBRACE] = ACTIONS(63), - [anon_sym_DOT_DOT] = ACTIONS(3474), - [aux_sym_expr_unary_token1] = ACTIONS(3476), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3478), - [anon_sym_DOT_DOT_LT] = ACTIONS(3478), - [anon_sym_null] = ACTIONS(3480), - [anon_sym_true] = ACTIONS(3482), - [anon_sym_false] = ACTIONS(3482), - [aux_sym__val_number_decimal_token1] = ACTIONS(3484), - [aux_sym__val_number_decimal_token2] = ACTIONS(3486), - [aux_sym__val_number_decimal_token3] = ACTIONS(3488), - [aux_sym__val_number_decimal_token4] = ACTIONS(3490), + [anon_sym_DOT_DOT] = ACTIONS(3483), + [aux_sym_expr_unary_token1] = ACTIONS(3485), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3487), + [anon_sym_DOT_DOT_LT] = ACTIONS(3487), + [anon_sym_null] = ACTIONS(3489), + [anon_sym_true] = ACTIONS(3491), + [anon_sym_false] = ACTIONS(3491), + [aux_sym__val_number_decimal_token1] = ACTIONS(3493), + [aux_sym__val_number_decimal_token2] = ACTIONS(3495), + [aux_sym__val_number_decimal_token3] = ACTIONS(3497), + [aux_sym__val_number_decimal_token4] = ACTIONS(3499), [aux_sym__val_number_token1] = ACTIONS(99), [aux_sym__val_number_token2] = ACTIONS(99), [aux_sym__val_number_token3] = ACTIONS(99), - [aux_sym__val_number_token4] = ACTIONS(3492), - [aux_sym__val_number_token5] = ACTIONS(3492), - [aux_sym__val_number_token6] = ACTIONS(3492), + [aux_sym__val_number_token4] = ACTIONS(3501), + [aux_sym__val_number_token5] = ACTIONS(3501), + [aux_sym__val_number_token6] = ACTIONS(3501), [anon_sym_0b] = ACTIONS(103), [anon_sym_0o] = ACTIONS(105), [anon_sym_0x] = ACTIONS(105), - [sym_val_date] = ACTIONS(3494), + [sym_val_date] = ACTIONS(3503), [anon_sym_DQUOTE] = ACTIONS(109), [sym__str_single_quotes] = ACTIONS(111), [sym__str_back_ticks] = ACTIONS(111), @@ -194617,90 +194617,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3358), + [aux_sym_unquoted_token1] = ACTIONS(3367), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(123), }, [1146] = { [sym_comment] = STATE(1146), [aux_sym_pipe_element_repeat1] = STATE(1148), - [aux_sym_cmd_identifier_token1] = ACTIONS(3508), - [aux_sym_cmd_identifier_token2] = ACTIONS(3508), - [aux_sym_cmd_identifier_token3] = ACTIONS(3508), - [aux_sym_cmd_identifier_token4] = ACTIONS(3508), - [aux_sym_cmd_identifier_token5] = ACTIONS(3508), - [aux_sym_cmd_identifier_token6] = ACTIONS(3508), - [aux_sym_cmd_identifier_token7] = ACTIONS(3508), - [aux_sym_cmd_identifier_token8] = ACTIONS(3508), - [aux_sym_cmd_identifier_token9] = ACTIONS(3508), - [aux_sym_cmd_identifier_token10] = ACTIONS(3508), - [aux_sym_cmd_identifier_token11] = ACTIONS(3508), - [aux_sym_cmd_identifier_token12] = ACTIONS(3508), - [aux_sym_cmd_identifier_token13] = ACTIONS(3508), - [aux_sym_cmd_identifier_token14] = ACTIONS(3508), - [aux_sym_cmd_identifier_token15] = ACTIONS(3508), - [aux_sym_cmd_identifier_token16] = ACTIONS(3508), - [aux_sym_cmd_identifier_token17] = ACTIONS(3508), - [aux_sym_cmd_identifier_token18] = ACTIONS(3508), - [aux_sym_cmd_identifier_token19] = ACTIONS(3508), - [aux_sym_cmd_identifier_token20] = ACTIONS(3508), - [aux_sym_cmd_identifier_token21] = ACTIONS(3508), - [aux_sym_cmd_identifier_token22] = ACTIONS(3508), - [aux_sym_cmd_identifier_token23] = ACTIONS(3508), - [aux_sym_cmd_identifier_token24] = ACTIONS(3508), - [aux_sym_cmd_identifier_token25] = ACTIONS(3508), - [aux_sym_cmd_identifier_token26] = ACTIONS(3508), - [aux_sym_cmd_identifier_token27] = ACTIONS(3508), - [aux_sym_cmd_identifier_token28] = ACTIONS(3508), - [aux_sym_cmd_identifier_token29] = ACTIONS(3508), - [aux_sym_cmd_identifier_token30] = ACTIONS(3508), - [aux_sym_cmd_identifier_token31] = ACTIONS(3508), - [aux_sym_cmd_identifier_token32] = ACTIONS(3508), - [aux_sym_cmd_identifier_token33] = ACTIONS(3508), - [aux_sym_cmd_identifier_token34] = ACTIONS(3508), - [aux_sym_cmd_identifier_token35] = ACTIONS(3508), - [aux_sym_cmd_identifier_token36] = ACTIONS(3508), - [aux_sym_cmd_identifier_token37] = ACTIONS(3508), - [aux_sym_cmd_identifier_token38] = ACTIONS(3508), - [aux_sym_cmd_identifier_token39] = ACTIONS(3508), - [aux_sym_cmd_identifier_token40] = ACTIONS(3508), - [sym__space] = ACTIONS(3510), - [anon_sym_LBRACK] = ACTIONS(3508), - [anon_sym_LPAREN] = ACTIONS(3508), - [anon_sym_DOLLAR] = ACTIONS(3508), - [anon_sym_DASH2] = ACTIONS(3508), - [anon_sym_LBRACE] = ACTIONS(3508), - [anon_sym_DOT_DOT] = ACTIONS(3508), - [aux_sym_expr_unary_token1] = ACTIONS(3508), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3508), - [anon_sym_DOT_DOT_LT] = ACTIONS(3508), - [anon_sym_null] = ACTIONS(3508), - [anon_sym_true] = ACTIONS(3508), - [anon_sym_false] = ACTIONS(3508), - [aux_sym__val_number_decimal_token1] = ACTIONS(3508), - [aux_sym__val_number_decimal_token2] = ACTIONS(3508), - [aux_sym__val_number_decimal_token3] = ACTIONS(3508), - [aux_sym__val_number_decimal_token4] = ACTIONS(3508), - [aux_sym__val_number_token1] = ACTIONS(3508), - [aux_sym__val_number_token2] = ACTIONS(3508), - [aux_sym__val_number_token3] = ACTIONS(3508), - [aux_sym__val_number_token4] = ACTIONS(3508), - [aux_sym__val_number_token5] = ACTIONS(3508), - [aux_sym__val_number_token6] = ACTIONS(3508), - [anon_sym_0b] = ACTIONS(3508), - [anon_sym_0o] = ACTIONS(3508), - [anon_sym_0x] = ACTIONS(3508), - [sym_val_date] = ACTIONS(3508), - [anon_sym_DQUOTE] = ACTIONS(3508), - [sym__str_single_quotes] = ACTIONS(3508), - [sym__str_back_ticks] = ACTIONS(3508), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3508), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3508), - [aux_sym_env_var_token1] = ACTIONS(3508), - [anon_sym_CARET] = ACTIONS(3508), - [aux_sym_command_token1] = ACTIONS(3508), + [aux_sym_cmd_identifier_token1] = ACTIONS(3517), + [aux_sym_cmd_identifier_token2] = ACTIONS(3517), + [aux_sym_cmd_identifier_token3] = ACTIONS(3517), + [aux_sym_cmd_identifier_token4] = ACTIONS(3517), + [aux_sym_cmd_identifier_token5] = ACTIONS(3517), + [aux_sym_cmd_identifier_token6] = ACTIONS(3517), + [aux_sym_cmd_identifier_token7] = ACTIONS(3517), + [aux_sym_cmd_identifier_token8] = ACTIONS(3517), + [aux_sym_cmd_identifier_token9] = ACTIONS(3517), + [aux_sym_cmd_identifier_token10] = ACTIONS(3517), + [aux_sym_cmd_identifier_token11] = ACTIONS(3517), + [aux_sym_cmd_identifier_token12] = ACTIONS(3517), + [aux_sym_cmd_identifier_token13] = ACTIONS(3517), + [aux_sym_cmd_identifier_token14] = ACTIONS(3517), + [aux_sym_cmd_identifier_token15] = ACTIONS(3517), + [aux_sym_cmd_identifier_token16] = ACTIONS(3517), + [aux_sym_cmd_identifier_token17] = ACTIONS(3517), + [aux_sym_cmd_identifier_token18] = ACTIONS(3517), + [aux_sym_cmd_identifier_token19] = ACTIONS(3517), + [aux_sym_cmd_identifier_token20] = ACTIONS(3517), + [aux_sym_cmd_identifier_token21] = ACTIONS(3517), + [aux_sym_cmd_identifier_token22] = ACTIONS(3517), + [aux_sym_cmd_identifier_token23] = ACTIONS(3517), + [aux_sym_cmd_identifier_token24] = ACTIONS(3517), + [aux_sym_cmd_identifier_token25] = ACTIONS(3517), + [aux_sym_cmd_identifier_token26] = ACTIONS(3517), + [aux_sym_cmd_identifier_token27] = ACTIONS(3517), + [aux_sym_cmd_identifier_token28] = ACTIONS(3517), + [aux_sym_cmd_identifier_token29] = ACTIONS(3517), + [aux_sym_cmd_identifier_token30] = ACTIONS(3517), + [aux_sym_cmd_identifier_token31] = ACTIONS(3517), + [aux_sym_cmd_identifier_token32] = ACTIONS(3517), + [aux_sym_cmd_identifier_token33] = ACTIONS(3517), + [aux_sym_cmd_identifier_token34] = ACTIONS(3517), + [aux_sym_cmd_identifier_token35] = ACTIONS(3517), + [aux_sym_cmd_identifier_token36] = ACTIONS(3517), + [aux_sym_cmd_identifier_token37] = ACTIONS(3517), + [aux_sym_cmd_identifier_token38] = ACTIONS(3517), + [aux_sym_cmd_identifier_token39] = ACTIONS(3517), + [aux_sym_cmd_identifier_token40] = ACTIONS(3517), + [sym__space] = ACTIONS(3519), + [anon_sym_LBRACK] = ACTIONS(3517), + [anon_sym_LPAREN] = ACTIONS(3517), + [anon_sym_DOLLAR] = ACTIONS(3517), + [anon_sym_DASH2] = ACTIONS(3517), + [anon_sym_LBRACE] = ACTIONS(3517), + [anon_sym_DOT_DOT] = ACTIONS(3517), + [aux_sym_expr_unary_token1] = ACTIONS(3517), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3517), + [anon_sym_DOT_DOT_LT] = ACTIONS(3517), + [anon_sym_null] = ACTIONS(3517), + [anon_sym_true] = ACTIONS(3517), + [anon_sym_false] = ACTIONS(3517), + [aux_sym__val_number_decimal_token1] = ACTIONS(3517), + [aux_sym__val_number_decimal_token2] = ACTIONS(3517), + [aux_sym__val_number_decimal_token3] = ACTIONS(3517), + [aux_sym__val_number_decimal_token4] = ACTIONS(3517), + [aux_sym__val_number_token1] = ACTIONS(3517), + [aux_sym__val_number_token2] = ACTIONS(3517), + [aux_sym__val_number_token3] = ACTIONS(3517), + [aux_sym__val_number_token4] = ACTIONS(3517), + [aux_sym__val_number_token5] = ACTIONS(3517), + [aux_sym__val_number_token6] = ACTIONS(3517), + [anon_sym_0b] = ACTIONS(3517), + [anon_sym_0o] = ACTIONS(3517), + [anon_sym_0x] = ACTIONS(3517), + [sym_val_date] = ACTIONS(3517), + [anon_sym_DQUOTE] = ACTIONS(3517), + [sym__str_single_quotes] = ACTIONS(3517), + [sym__str_back_ticks] = ACTIONS(3517), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3517), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3517), + [aux_sym_env_var_token1] = ACTIONS(3517), + [anon_sym_CARET] = ACTIONS(3517), + [aux_sym_command_token1] = ACTIONS(3517), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(3512), + [sym_raw_string_begin] = ACTIONS(3521), }, [1147] = { [sym_ctrl_do] = STATE(4623), @@ -194735,36 +194735,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_table] = STATE(2131), [sym_val_closure] = STATE(2131), [sym_comment] = STATE(1147), - [sym__newline] = ACTIONS(3400), - [anon_sym_PIPE] = ACTIONS(3400), - [anon_sym_err_GT_PIPE] = ACTIONS(3400), - [anon_sym_out_GT_PIPE] = ACTIONS(3400), - [anon_sym_e_GT_PIPE] = ACTIONS(3400), - [anon_sym_o_GT_PIPE] = ACTIONS(3400), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(3400), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(3400), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(3400), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(3400), + [sym__newline] = ACTIONS(3409), + [anon_sym_PIPE] = ACTIONS(3409), + [anon_sym_err_GT_PIPE] = ACTIONS(3409), + [anon_sym_out_GT_PIPE] = ACTIONS(3409), + [anon_sym_e_GT_PIPE] = ACTIONS(3409), + [anon_sym_o_GT_PIPE] = ACTIONS(3409), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(3409), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(3409), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(3409), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(3409), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(381), - [anon_sym_do] = ACTIONS(3402), - [anon_sym_if] = ACTIONS(3514), - [anon_sym_match] = ACTIONS(3406), + [anon_sym_do] = ACTIONS(3411), + [anon_sym_if] = ACTIONS(3523), + [anon_sym_match] = ACTIONS(3415), [anon_sym_LBRACE] = ACTIONS(183), [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(3408), + [anon_sym_try] = ACTIONS(3417), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(3410), - [anon_sym_true] = ACTIONS(3412), - [anon_sym_false] = ACTIONS(3412), - [aux_sym__val_number_decimal_token1] = ACTIONS(3414), - [aux_sym__val_number_decimal_token2] = ACTIONS(3416), - [aux_sym__val_number_decimal_token3] = ACTIONS(3418), - [aux_sym__val_number_decimal_token4] = ACTIONS(3420), + [anon_sym_null] = ACTIONS(3419), + [anon_sym_true] = ACTIONS(3421), + [anon_sym_false] = ACTIONS(3421), + [aux_sym__val_number_decimal_token1] = ACTIONS(3423), + [aux_sym__val_number_decimal_token2] = ACTIONS(3425), + [aux_sym__val_number_decimal_token3] = ACTIONS(3427), + [aux_sym__val_number_decimal_token4] = ACTIONS(3429), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), @@ -194786,164 +194786,164 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [1148] = { [sym_comment] = STATE(1148), [aux_sym_pipe_element_repeat1] = STATE(1148), - [aux_sym_cmd_identifier_token1] = ACTIONS(3516), - [aux_sym_cmd_identifier_token2] = ACTIONS(3516), - [aux_sym_cmd_identifier_token3] = ACTIONS(3516), - [aux_sym_cmd_identifier_token4] = ACTIONS(3516), - [aux_sym_cmd_identifier_token5] = ACTIONS(3516), - [aux_sym_cmd_identifier_token6] = ACTIONS(3516), - [aux_sym_cmd_identifier_token7] = ACTIONS(3516), - [aux_sym_cmd_identifier_token8] = ACTIONS(3516), - [aux_sym_cmd_identifier_token9] = ACTIONS(3516), - [aux_sym_cmd_identifier_token10] = ACTIONS(3516), - [aux_sym_cmd_identifier_token11] = ACTIONS(3516), - [aux_sym_cmd_identifier_token12] = ACTIONS(3516), - [aux_sym_cmd_identifier_token13] = ACTIONS(3516), - [aux_sym_cmd_identifier_token14] = ACTIONS(3516), - [aux_sym_cmd_identifier_token15] = ACTIONS(3516), - [aux_sym_cmd_identifier_token16] = ACTIONS(3516), - [aux_sym_cmd_identifier_token17] = ACTIONS(3516), - [aux_sym_cmd_identifier_token18] = ACTIONS(3516), - [aux_sym_cmd_identifier_token19] = ACTIONS(3516), - [aux_sym_cmd_identifier_token20] = ACTIONS(3516), - [aux_sym_cmd_identifier_token21] = ACTIONS(3516), - [aux_sym_cmd_identifier_token22] = ACTIONS(3516), - [aux_sym_cmd_identifier_token23] = ACTIONS(3516), - [aux_sym_cmd_identifier_token24] = ACTIONS(3516), - [aux_sym_cmd_identifier_token25] = ACTIONS(3516), - [aux_sym_cmd_identifier_token26] = ACTIONS(3516), - [aux_sym_cmd_identifier_token27] = ACTIONS(3516), - [aux_sym_cmd_identifier_token28] = ACTIONS(3516), - [aux_sym_cmd_identifier_token29] = ACTIONS(3516), - [aux_sym_cmd_identifier_token30] = ACTIONS(3516), - [aux_sym_cmd_identifier_token31] = ACTIONS(3516), - [aux_sym_cmd_identifier_token32] = ACTIONS(3516), - [aux_sym_cmd_identifier_token33] = ACTIONS(3516), - [aux_sym_cmd_identifier_token34] = ACTIONS(3516), - [aux_sym_cmd_identifier_token35] = ACTIONS(3516), - [aux_sym_cmd_identifier_token36] = ACTIONS(3516), - [aux_sym_cmd_identifier_token37] = ACTIONS(3516), - [aux_sym_cmd_identifier_token38] = ACTIONS(3516), - [aux_sym_cmd_identifier_token39] = ACTIONS(3516), - [aux_sym_cmd_identifier_token40] = ACTIONS(3516), - [sym__space] = ACTIONS(3518), - [anon_sym_LBRACK] = ACTIONS(3516), - [anon_sym_LPAREN] = ACTIONS(3516), - [anon_sym_DOLLAR] = ACTIONS(3516), - [anon_sym_DASH2] = ACTIONS(3516), - [anon_sym_LBRACE] = ACTIONS(3516), - [anon_sym_DOT_DOT] = ACTIONS(3516), - [aux_sym_expr_unary_token1] = ACTIONS(3516), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3516), - [anon_sym_DOT_DOT_LT] = ACTIONS(3516), - [anon_sym_null] = ACTIONS(3516), - [anon_sym_true] = ACTIONS(3516), - [anon_sym_false] = ACTIONS(3516), - [aux_sym__val_number_decimal_token1] = ACTIONS(3516), - [aux_sym__val_number_decimal_token2] = ACTIONS(3516), - [aux_sym__val_number_decimal_token3] = ACTIONS(3516), - [aux_sym__val_number_decimal_token4] = ACTIONS(3516), - [aux_sym__val_number_token1] = ACTIONS(3516), - [aux_sym__val_number_token2] = ACTIONS(3516), - [aux_sym__val_number_token3] = ACTIONS(3516), - [aux_sym__val_number_token4] = ACTIONS(3516), - [aux_sym__val_number_token5] = ACTIONS(3516), - [aux_sym__val_number_token6] = ACTIONS(3516), - [anon_sym_0b] = ACTIONS(3516), - [anon_sym_0o] = ACTIONS(3516), - [anon_sym_0x] = ACTIONS(3516), - [sym_val_date] = ACTIONS(3516), - [anon_sym_DQUOTE] = ACTIONS(3516), - [sym__str_single_quotes] = ACTIONS(3516), - [sym__str_back_ticks] = ACTIONS(3516), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3516), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3516), - [aux_sym_env_var_token1] = ACTIONS(3516), - [anon_sym_CARET] = ACTIONS(3516), - [aux_sym_command_token1] = ACTIONS(3516), + [aux_sym_cmd_identifier_token1] = ACTIONS(3525), + [aux_sym_cmd_identifier_token2] = ACTIONS(3525), + [aux_sym_cmd_identifier_token3] = ACTIONS(3525), + [aux_sym_cmd_identifier_token4] = ACTIONS(3525), + [aux_sym_cmd_identifier_token5] = ACTIONS(3525), + [aux_sym_cmd_identifier_token6] = ACTIONS(3525), + [aux_sym_cmd_identifier_token7] = ACTIONS(3525), + [aux_sym_cmd_identifier_token8] = ACTIONS(3525), + [aux_sym_cmd_identifier_token9] = ACTIONS(3525), + [aux_sym_cmd_identifier_token10] = ACTIONS(3525), + [aux_sym_cmd_identifier_token11] = ACTIONS(3525), + [aux_sym_cmd_identifier_token12] = ACTIONS(3525), + [aux_sym_cmd_identifier_token13] = ACTIONS(3525), + [aux_sym_cmd_identifier_token14] = ACTIONS(3525), + [aux_sym_cmd_identifier_token15] = ACTIONS(3525), + [aux_sym_cmd_identifier_token16] = ACTIONS(3525), + [aux_sym_cmd_identifier_token17] = ACTIONS(3525), + [aux_sym_cmd_identifier_token18] = ACTIONS(3525), + [aux_sym_cmd_identifier_token19] = ACTIONS(3525), + [aux_sym_cmd_identifier_token20] = ACTIONS(3525), + [aux_sym_cmd_identifier_token21] = ACTIONS(3525), + [aux_sym_cmd_identifier_token22] = ACTIONS(3525), + [aux_sym_cmd_identifier_token23] = ACTIONS(3525), + [aux_sym_cmd_identifier_token24] = ACTIONS(3525), + [aux_sym_cmd_identifier_token25] = ACTIONS(3525), + [aux_sym_cmd_identifier_token26] = ACTIONS(3525), + [aux_sym_cmd_identifier_token27] = ACTIONS(3525), + [aux_sym_cmd_identifier_token28] = ACTIONS(3525), + [aux_sym_cmd_identifier_token29] = ACTIONS(3525), + [aux_sym_cmd_identifier_token30] = ACTIONS(3525), + [aux_sym_cmd_identifier_token31] = ACTIONS(3525), + [aux_sym_cmd_identifier_token32] = ACTIONS(3525), + [aux_sym_cmd_identifier_token33] = ACTIONS(3525), + [aux_sym_cmd_identifier_token34] = ACTIONS(3525), + [aux_sym_cmd_identifier_token35] = ACTIONS(3525), + [aux_sym_cmd_identifier_token36] = ACTIONS(3525), + [aux_sym_cmd_identifier_token37] = ACTIONS(3525), + [aux_sym_cmd_identifier_token38] = ACTIONS(3525), + [aux_sym_cmd_identifier_token39] = ACTIONS(3525), + [aux_sym_cmd_identifier_token40] = ACTIONS(3525), + [sym__space] = ACTIONS(3527), + [anon_sym_LBRACK] = ACTIONS(3525), + [anon_sym_LPAREN] = ACTIONS(3525), + [anon_sym_DOLLAR] = ACTIONS(3525), + [anon_sym_DASH2] = ACTIONS(3525), + [anon_sym_LBRACE] = ACTIONS(3525), + [anon_sym_DOT_DOT] = ACTIONS(3525), + [aux_sym_expr_unary_token1] = ACTIONS(3525), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3525), + [anon_sym_DOT_DOT_LT] = ACTIONS(3525), + [anon_sym_null] = ACTIONS(3525), + [anon_sym_true] = ACTIONS(3525), + [anon_sym_false] = ACTIONS(3525), + [aux_sym__val_number_decimal_token1] = ACTIONS(3525), + [aux_sym__val_number_decimal_token2] = ACTIONS(3525), + [aux_sym__val_number_decimal_token3] = ACTIONS(3525), + [aux_sym__val_number_decimal_token4] = ACTIONS(3525), + [aux_sym__val_number_token1] = ACTIONS(3525), + [aux_sym__val_number_token2] = ACTIONS(3525), + [aux_sym__val_number_token3] = ACTIONS(3525), + [aux_sym__val_number_token4] = ACTIONS(3525), + [aux_sym__val_number_token5] = ACTIONS(3525), + [aux_sym__val_number_token6] = ACTIONS(3525), + [anon_sym_0b] = ACTIONS(3525), + [anon_sym_0o] = ACTIONS(3525), + [anon_sym_0x] = ACTIONS(3525), + [sym_val_date] = ACTIONS(3525), + [anon_sym_DQUOTE] = ACTIONS(3525), + [sym__str_single_quotes] = ACTIONS(3525), + [sym__str_back_ticks] = ACTIONS(3525), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3525), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3525), + [aux_sym_env_var_token1] = ACTIONS(3525), + [anon_sym_CARET] = ACTIONS(3525), + [aux_sym_command_token1] = ACTIONS(3525), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(3521), + [sym_raw_string_begin] = ACTIONS(3530), }, [1149] = { [sym_env_var] = STATE(6681), [sym_comment] = STATE(1149), [aux_sym_pipe_element_parenthesized_repeat1] = STATE(1149), - [aux_sym_cmd_identifier_token1] = ACTIONS(3464), - [aux_sym_cmd_identifier_token2] = ACTIONS(3470), - [aux_sym_cmd_identifier_token3] = ACTIONS(3470), - [aux_sym_cmd_identifier_token4] = ACTIONS(3470), - [aux_sym_cmd_identifier_token5] = ACTIONS(3470), - [aux_sym_cmd_identifier_token6] = ACTIONS(3470), - [aux_sym_cmd_identifier_token7] = ACTIONS(3470), - [aux_sym_cmd_identifier_token8] = ACTIONS(3470), - [aux_sym_cmd_identifier_token9] = ACTIONS(3464), - [aux_sym_cmd_identifier_token10] = ACTIONS(3470), - [aux_sym_cmd_identifier_token11] = ACTIONS(3470), - [aux_sym_cmd_identifier_token12] = ACTIONS(3470), - [aux_sym_cmd_identifier_token13] = ACTIONS(3464), - [aux_sym_cmd_identifier_token14] = ACTIONS(3470), - [aux_sym_cmd_identifier_token15] = ACTIONS(3464), - [aux_sym_cmd_identifier_token16] = ACTIONS(3470), - [aux_sym_cmd_identifier_token17] = ACTIONS(3470), - [aux_sym_cmd_identifier_token18] = ACTIONS(3464), - [aux_sym_cmd_identifier_token19] = ACTIONS(3470), - [aux_sym_cmd_identifier_token20] = ACTIONS(3470), - [aux_sym_cmd_identifier_token21] = ACTIONS(3470), - [aux_sym_cmd_identifier_token22] = ACTIONS(3470), - [aux_sym_cmd_identifier_token23] = ACTIONS(3470), - [aux_sym_cmd_identifier_token24] = ACTIONS(3470), - [aux_sym_cmd_identifier_token25] = ACTIONS(3470), - [aux_sym_cmd_identifier_token26] = ACTIONS(3470), - [aux_sym_cmd_identifier_token27] = ACTIONS(3470), - [aux_sym_cmd_identifier_token28] = ACTIONS(3470), - [aux_sym_cmd_identifier_token29] = ACTIONS(3470), - [aux_sym_cmd_identifier_token30] = ACTIONS(3470), - [aux_sym_cmd_identifier_token31] = ACTIONS(3470), - [aux_sym_cmd_identifier_token32] = ACTIONS(3464), - [aux_sym_cmd_identifier_token33] = ACTIONS(3470), - [aux_sym_cmd_identifier_token34] = ACTIONS(3464), - [aux_sym_cmd_identifier_token35] = ACTIONS(3470), - [aux_sym_cmd_identifier_token36] = ACTIONS(3470), - [aux_sym_cmd_identifier_token37] = ACTIONS(3470), - [aux_sym_cmd_identifier_token38] = ACTIONS(3464), - [aux_sym_cmd_identifier_token39] = ACTIONS(3470), - [aux_sym_cmd_identifier_token40] = ACTIONS(3470), - [anon_sym_LBRACK] = ACTIONS(3470), - [anon_sym_LPAREN] = ACTIONS(3470), - [anon_sym_DOLLAR] = ACTIONS(3464), - [anon_sym_DASH2] = ACTIONS(3464), - [anon_sym_LBRACE] = ACTIONS(3470), - [anon_sym_DOT_DOT] = ACTIONS(3464), - [aux_sym_expr_unary_token1] = ACTIONS(3470), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3470), - [anon_sym_DOT_DOT_LT] = ACTIONS(3470), - [anon_sym_null] = ACTIONS(3464), - [anon_sym_true] = ACTIONS(3464), - [anon_sym_false] = ACTIONS(3464), - [aux_sym__val_number_decimal_token1] = ACTIONS(3464), - [aux_sym__val_number_decimal_token2] = ACTIONS(3470), - [aux_sym__val_number_decimal_token3] = ACTIONS(3470), - [aux_sym__val_number_decimal_token4] = ACTIONS(3470), - [aux_sym__val_number_token1] = ACTIONS(3470), - [aux_sym__val_number_token2] = ACTIONS(3470), - [aux_sym__val_number_token3] = ACTIONS(3470), - [aux_sym__val_number_token4] = ACTIONS(3464), - [aux_sym__val_number_token5] = ACTIONS(3464), - [aux_sym__val_number_token6] = ACTIONS(3464), - [anon_sym_0b] = ACTIONS(3464), - [anon_sym_0o] = ACTIONS(3464), - [anon_sym_0x] = ACTIONS(3464), - [sym_val_date] = ACTIONS(3470), - [anon_sym_DQUOTE] = ACTIONS(3470), - [sym__str_single_quotes] = ACTIONS(3470), - [sym__str_back_ticks] = ACTIONS(3470), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3470), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3470), - [aux_sym_env_var_token1] = ACTIONS(3523), - [anon_sym_CARET] = ACTIONS(3470), - [aux_sym_command_token1] = ACTIONS(3470), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3470), + [aux_sym_cmd_identifier_token1] = ACTIONS(3473), + [aux_sym_cmd_identifier_token2] = ACTIONS(3479), + [aux_sym_cmd_identifier_token3] = ACTIONS(3479), + [aux_sym_cmd_identifier_token4] = ACTIONS(3479), + [aux_sym_cmd_identifier_token5] = ACTIONS(3479), + [aux_sym_cmd_identifier_token6] = ACTIONS(3479), + [aux_sym_cmd_identifier_token7] = ACTIONS(3479), + [aux_sym_cmd_identifier_token8] = ACTIONS(3479), + [aux_sym_cmd_identifier_token9] = ACTIONS(3473), + [aux_sym_cmd_identifier_token10] = ACTIONS(3479), + [aux_sym_cmd_identifier_token11] = ACTIONS(3479), + [aux_sym_cmd_identifier_token12] = ACTIONS(3479), + [aux_sym_cmd_identifier_token13] = ACTIONS(3473), + [aux_sym_cmd_identifier_token14] = ACTIONS(3479), + [aux_sym_cmd_identifier_token15] = ACTIONS(3473), + [aux_sym_cmd_identifier_token16] = ACTIONS(3479), + [aux_sym_cmd_identifier_token17] = ACTIONS(3479), + [aux_sym_cmd_identifier_token18] = ACTIONS(3473), + [aux_sym_cmd_identifier_token19] = ACTIONS(3479), + [aux_sym_cmd_identifier_token20] = ACTIONS(3479), + [aux_sym_cmd_identifier_token21] = ACTIONS(3479), + [aux_sym_cmd_identifier_token22] = ACTIONS(3479), + [aux_sym_cmd_identifier_token23] = ACTIONS(3479), + [aux_sym_cmd_identifier_token24] = ACTIONS(3479), + [aux_sym_cmd_identifier_token25] = ACTIONS(3479), + [aux_sym_cmd_identifier_token26] = ACTIONS(3479), + [aux_sym_cmd_identifier_token27] = ACTIONS(3479), + [aux_sym_cmd_identifier_token28] = ACTIONS(3479), + [aux_sym_cmd_identifier_token29] = ACTIONS(3479), + [aux_sym_cmd_identifier_token30] = ACTIONS(3479), + [aux_sym_cmd_identifier_token31] = ACTIONS(3479), + [aux_sym_cmd_identifier_token32] = ACTIONS(3473), + [aux_sym_cmd_identifier_token33] = ACTIONS(3479), + [aux_sym_cmd_identifier_token34] = ACTIONS(3473), + [aux_sym_cmd_identifier_token35] = ACTIONS(3479), + [aux_sym_cmd_identifier_token36] = ACTIONS(3479), + [aux_sym_cmd_identifier_token37] = ACTIONS(3479), + [aux_sym_cmd_identifier_token38] = ACTIONS(3473), + [aux_sym_cmd_identifier_token39] = ACTIONS(3479), + [aux_sym_cmd_identifier_token40] = ACTIONS(3479), + [anon_sym_LBRACK] = ACTIONS(3479), + [anon_sym_LPAREN] = ACTIONS(3479), + [anon_sym_DOLLAR] = ACTIONS(3473), + [anon_sym_DASH2] = ACTIONS(3473), + [anon_sym_LBRACE] = ACTIONS(3479), + [anon_sym_DOT_DOT] = ACTIONS(3473), + [aux_sym_expr_unary_token1] = ACTIONS(3479), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3479), + [anon_sym_DOT_DOT_LT] = ACTIONS(3479), + [anon_sym_null] = ACTIONS(3473), + [anon_sym_true] = ACTIONS(3473), + [anon_sym_false] = ACTIONS(3473), + [aux_sym__val_number_decimal_token1] = ACTIONS(3473), + [aux_sym__val_number_decimal_token2] = ACTIONS(3479), + [aux_sym__val_number_decimal_token3] = ACTIONS(3479), + [aux_sym__val_number_decimal_token4] = ACTIONS(3479), + [aux_sym__val_number_token1] = ACTIONS(3479), + [aux_sym__val_number_token2] = ACTIONS(3479), + [aux_sym__val_number_token3] = ACTIONS(3479), + [aux_sym__val_number_token4] = ACTIONS(3473), + [aux_sym__val_number_token5] = ACTIONS(3473), + [aux_sym__val_number_token6] = ACTIONS(3473), + [anon_sym_0b] = ACTIONS(3473), + [anon_sym_0o] = ACTIONS(3473), + [anon_sym_0x] = ACTIONS(3473), + [sym_val_date] = ACTIONS(3479), + [anon_sym_DQUOTE] = ACTIONS(3479), + [sym__str_single_quotes] = ACTIONS(3479), + [sym__str_back_ticks] = ACTIONS(3479), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3479), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3479), + [aux_sym_env_var_token1] = ACTIONS(3532), + [anon_sym_CARET] = ACTIONS(3479), + [aux_sym_command_token1] = ACTIONS(3479), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(3479), }, [1150] = { [sym_comment] = STATE(1150), @@ -194988,7 +194988,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token38] = ACTIONS(1274), [aux_sym_cmd_identifier_token39] = ACTIONS(1276), [aux_sym_cmd_identifier_token40] = ACTIONS(1276), - [sym__newline] = ACTIONS(3526), + [sym__newline] = ACTIONS(3535), [anon_sym_LBRACK] = ACTIONS(1276), [anon_sym_LPAREN] = ACTIONS(1276), [anon_sym_DOLLAR] = ACTIONS(1274), @@ -195030,82 +195030,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_env_var] = STATE(7347), [sym_comment] = STATE(1151), [aux_sym_pipe_element_repeat2] = STATE(1151), - [aux_sym_cmd_identifier_token1] = ACTIONS(3508), - [aux_sym_cmd_identifier_token2] = ACTIONS(3512), - [aux_sym_cmd_identifier_token3] = ACTIONS(3512), - [aux_sym_cmd_identifier_token4] = ACTIONS(3512), - [aux_sym_cmd_identifier_token5] = ACTIONS(3512), - [aux_sym_cmd_identifier_token6] = ACTIONS(3512), - [aux_sym_cmd_identifier_token7] = ACTIONS(3512), - [aux_sym_cmd_identifier_token8] = ACTIONS(3512), - [aux_sym_cmd_identifier_token9] = ACTIONS(3508), - [aux_sym_cmd_identifier_token10] = ACTIONS(3512), - [aux_sym_cmd_identifier_token11] = ACTIONS(3512), - [aux_sym_cmd_identifier_token12] = ACTIONS(3512), - [aux_sym_cmd_identifier_token13] = ACTIONS(3508), - [aux_sym_cmd_identifier_token14] = ACTIONS(3512), - [aux_sym_cmd_identifier_token15] = ACTIONS(3508), - [aux_sym_cmd_identifier_token16] = ACTIONS(3512), - [aux_sym_cmd_identifier_token17] = ACTIONS(3512), - [aux_sym_cmd_identifier_token18] = ACTIONS(3508), - [aux_sym_cmd_identifier_token19] = ACTIONS(3512), - [aux_sym_cmd_identifier_token20] = ACTIONS(3512), - [aux_sym_cmd_identifier_token21] = ACTIONS(3512), - [aux_sym_cmd_identifier_token22] = ACTIONS(3512), - [aux_sym_cmd_identifier_token23] = ACTIONS(3512), - [aux_sym_cmd_identifier_token24] = ACTIONS(3512), - [aux_sym_cmd_identifier_token25] = ACTIONS(3512), - [aux_sym_cmd_identifier_token26] = ACTIONS(3512), - [aux_sym_cmd_identifier_token27] = ACTIONS(3512), - [aux_sym_cmd_identifier_token28] = ACTIONS(3512), - [aux_sym_cmd_identifier_token29] = ACTIONS(3512), - [aux_sym_cmd_identifier_token30] = ACTIONS(3512), - [aux_sym_cmd_identifier_token31] = ACTIONS(3512), - [aux_sym_cmd_identifier_token32] = ACTIONS(3508), - [aux_sym_cmd_identifier_token33] = ACTIONS(3512), - [aux_sym_cmd_identifier_token34] = ACTIONS(3508), - [aux_sym_cmd_identifier_token35] = ACTIONS(3512), - [aux_sym_cmd_identifier_token36] = ACTIONS(3512), - [aux_sym_cmd_identifier_token37] = ACTIONS(3512), - [aux_sym_cmd_identifier_token38] = ACTIONS(3508), - [aux_sym_cmd_identifier_token39] = ACTIONS(3512), - [aux_sym_cmd_identifier_token40] = ACTIONS(3512), - [anon_sym_LBRACK] = ACTIONS(3512), - [anon_sym_LPAREN] = ACTIONS(3512), - [anon_sym_DOLLAR] = ACTIONS(3508), - [anon_sym_DASH2] = ACTIONS(3508), - [anon_sym_LBRACE] = ACTIONS(3512), - [anon_sym_DOT_DOT] = ACTIONS(3508), - [aux_sym_expr_unary_token1] = ACTIONS(3512), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3512), - [anon_sym_DOT_DOT_LT] = ACTIONS(3512), - [anon_sym_null] = ACTIONS(3508), - [anon_sym_true] = ACTIONS(3508), - [anon_sym_false] = ACTIONS(3508), - [aux_sym__val_number_decimal_token1] = ACTIONS(3508), - [aux_sym__val_number_decimal_token2] = ACTIONS(3512), - [aux_sym__val_number_decimal_token3] = ACTIONS(3512), - [aux_sym__val_number_decimal_token4] = ACTIONS(3512), - [aux_sym__val_number_token1] = ACTIONS(3512), - [aux_sym__val_number_token2] = ACTIONS(3512), - [aux_sym__val_number_token3] = ACTIONS(3512), - [aux_sym__val_number_token4] = ACTIONS(3508), - [aux_sym__val_number_token5] = ACTIONS(3508), - [aux_sym__val_number_token6] = ACTIONS(3508), - [anon_sym_0b] = ACTIONS(3508), - [anon_sym_0o] = ACTIONS(3508), - [anon_sym_0x] = ACTIONS(3508), - [sym_val_date] = ACTIONS(3512), - [anon_sym_DQUOTE] = ACTIONS(3512), - [sym__str_single_quotes] = ACTIONS(3512), - [sym__str_back_ticks] = ACTIONS(3512), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3512), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3512), - [aux_sym_env_var_token1] = ACTIONS(3529), - [anon_sym_CARET] = ACTIONS(3512), - [aux_sym_command_token1] = ACTIONS(3512), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3512), + [aux_sym_cmd_identifier_token1] = ACTIONS(3517), + [aux_sym_cmd_identifier_token2] = ACTIONS(3521), + [aux_sym_cmd_identifier_token3] = ACTIONS(3521), + [aux_sym_cmd_identifier_token4] = ACTIONS(3521), + [aux_sym_cmd_identifier_token5] = ACTIONS(3521), + [aux_sym_cmd_identifier_token6] = ACTIONS(3521), + [aux_sym_cmd_identifier_token7] = ACTIONS(3521), + [aux_sym_cmd_identifier_token8] = ACTIONS(3521), + [aux_sym_cmd_identifier_token9] = ACTIONS(3517), + [aux_sym_cmd_identifier_token10] = ACTIONS(3521), + [aux_sym_cmd_identifier_token11] = ACTIONS(3521), + [aux_sym_cmd_identifier_token12] = ACTIONS(3521), + [aux_sym_cmd_identifier_token13] = ACTIONS(3517), + [aux_sym_cmd_identifier_token14] = ACTIONS(3521), + [aux_sym_cmd_identifier_token15] = ACTIONS(3517), + [aux_sym_cmd_identifier_token16] = ACTIONS(3521), + [aux_sym_cmd_identifier_token17] = ACTIONS(3521), + [aux_sym_cmd_identifier_token18] = ACTIONS(3517), + [aux_sym_cmd_identifier_token19] = ACTIONS(3521), + [aux_sym_cmd_identifier_token20] = ACTIONS(3521), + [aux_sym_cmd_identifier_token21] = ACTIONS(3521), + [aux_sym_cmd_identifier_token22] = ACTIONS(3521), + [aux_sym_cmd_identifier_token23] = ACTIONS(3521), + [aux_sym_cmd_identifier_token24] = ACTIONS(3521), + [aux_sym_cmd_identifier_token25] = ACTIONS(3521), + [aux_sym_cmd_identifier_token26] = ACTIONS(3521), + [aux_sym_cmd_identifier_token27] = ACTIONS(3521), + [aux_sym_cmd_identifier_token28] = ACTIONS(3521), + [aux_sym_cmd_identifier_token29] = ACTIONS(3521), + [aux_sym_cmd_identifier_token30] = ACTIONS(3521), + [aux_sym_cmd_identifier_token31] = ACTIONS(3521), + [aux_sym_cmd_identifier_token32] = ACTIONS(3517), + [aux_sym_cmd_identifier_token33] = ACTIONS(3521), + [aux_sym_cmd_identifier_token34] = ACTIONS(3517), + [aux_sym_cmd_identifier_token35] = ACTIONS(3521), + [aux_sym_cmd_identifier_token36] = ACTIONS(3521), + [aux_sym_cmd_identifier_token37] = ACTIONS(3521), + [aux_sym_cmd_identifier_token38] = ACTIONS(3517), + [aux_sym_cmd_identifier_token39] = ACTIONS(3521), + [aux_sym_cmd_identifier_token40] = ACTIONS(3521), + [anon_sym_LBRACK] = ACTIONS(3521), + [anon_sym_LPAREN] = ACTIONS(3521), + [anon_sym_DOLLAR] = ACTIONS(3517), + [anon_sym_DASH2] = ACTIONS(3517), + [anon_sym_LBRACE] = ACTIONS(3521), + [anon_sym_DOT_DOT] = ACTIONS(3517), + [aux_sym_expr_unary_token1] = ACTIONS(3521), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3521), + [anon_sym_DOT_DOT_LT] = ACTIONS(3521), + [anon_sym_null] = ACTIONS(3517), + [anon_sym_true] = ACTIONS(3517), + [anon_sym_false] = ACTIONS(3517), + [aux_sym__val_number_decimal_token1] = ACTIONS(3517), + [aux_sym__val_number_decimal_token2] = ACTIONS(3521), + [aux_sym__val_number_decimal_token3] = ACTIONS(3521), + [aux_sym__val_number_decimal_token4] = ACTIONS(3521), + [aux_sym__val_number_token1] = ACTIONS(3521), + [aux_sym__val_number_token2] = ACTIONS(3521), + [aux_sym__val_number_token3] = ACTIONS(3521), + [aux_sym__val_number_token4] = ACTIONS(3517), + [aux_sym__val_number_token5] = ACTIONS(3517), + [aux_sym__val_number_token6] = ACTIONS(3517), + [anon_sym_0b] = ACTIONS(3517), + [anon_sym_0o] = ACTIONS(3517), + [anon_sym_0x] = ACTIONS(3517), + [sym_val_date] = ACTIONS(3521), + [anon_sym_DQUOTE] = ACTIONS(3521), + [sym__str_single_quotes] = ACTIONS(3521), + [sym__str_back_ticks] = ACTIONS(3521), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3521), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3521), + [aux_sym_env_var_token1] = ACTIONS(3538), + [anon_sym_CARET] = ACTIONS(3521), + [aux_sym_command_token1] = ACTIONS(3521), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(3521), }, [1152] = { [sym_comment] = STATE(1152), @@ -195150,7 +195150,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token39] = ACTIONS(1853), [aux_sym_cmd_identifier_token40] = ACTIONS(1853), [sym__newline] = ACTIONS(1853), - [sym__space] = ACTIONS(3532), + [sym__space] = ACTIONS(3541), [anon_sym_LBRACK] = ACTIONS(1853), [anon_sym_LPAREN] = ACTIONS(1853), [anon_sym_DOLLAR] = ACTIONS(1853), @@ -195186,7 +195186,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1853), [aux_sym_command_token1] = ACTIONS(1853), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(3532), + [sym_raw_string_begin] = ACTIONS(3541), }, [1153] = { [sym_match_arm] = STATE(6888), @@ -195218,33 +195218,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = STATE(1153), [aux_sym_shebang_repeat1] = STATE(1169), [aux_sym_ctrl_match_repeat1] = STATE(1221), - [sym__newline] = ACTIONS(3534), - [anon_sym_LBRACK] = ACTIONS(3536), + [sym__newline] = ACTIONS(3543), + [anon_sym_LBRACK] = ACTIONS(3545), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(3538), - [anon_sym_LBRACE] = ACTIONS(3540), - [anon_sym_RBRACE] = ACTIONS(3542), - [anon_sym__] = ACTIONS(3544), - [anon_sym_DOT_DOT] = ACTIONS(3546), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3548), - [anon_sym_DOT_DOT_LT] = ACTIONS(3548), - [anon_sym_null] = ACTIONS(3550), - [anon_sym_true] = ACTIONS(3552), - [anon_sym_false] = ACTIONS(3552), - [aux_sym__val_number_decimal_token1] = ACTIONS(3554), - [aux_sym__val_number_decimal_token2] = ACTIONS(3556), - [aux_sym__val_number_decimal_token3] = ACTIONS(3558), - [aux_sym__val_number_decimal_token4] = ACTIONS(3560), + [anon_sym_DOLLAR] = ACTIONS(3547), + [anon_sym_LBRACE] = ACTIONS(3549), + [anon_sym_RBRACE] = ACTIONS(3551), + [anon_sym__] = ACTIONS(3553), + [anon_sym_DOT_DOT] = ACTIONS(3555), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3557), + [anon_sym_DOT_DOT_LT] = ACTIONS(3557), + [anon_sym_null] = ACTIONS(3559), + [anon_sym_true] = ACTIONS(3561), + [anon_sym_false] = ACTIONS(3561), + [aux_sym__val_number_decimal_token1] = ACTIONS(3563), + [aux_sym__val_number_decimal_token2] = ACTIONS(3565), + [aux_sym__val_number_decimal_token3] = ACTIONS(3567), + [aux_sym__val_number_decimal_token4] = ACTIONS(3569), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3562), - [aux_sym__val_number_token5] = ACTIONS(3562), - [aux_sym__val_number_token6] = ACTIONS(3562), + [aux_sym__val_number_token4] = ACTIONS(3571), + [aux_sym__val_number_token5] = ACTIONS(3571), + [aux_sym__val_number_token6] = ACTIONS(3571), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3564), + [sym_val_date] = ACTIONS(3573), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), @@ -195264,7 +195264,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3212), + [aux_sym_unquoted_token1] = ACTIONS(3219), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, @@ -195342,8 +195342,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT2] = ACTIONS(1595), [anon_sym_DOT_DOT_EQ2] = ACTIONS(1597), [anon_sym_DOT_DOT_LT2] = ACTIONS(1597), - [aux_sym__immediate_decimal_token1] = ACTIONS(3566), - [aux_sym__immediate_decimal_token2] = ACTIONS(3568), + [aux_sym__immediate_decimal_token1] = ACTIONS(3575), + [aux_sym__immediate_decimal_token2] = ACTIONS(3577), [sym_filesize_unit] = ACTIONS(1595), [sym_duration_unit] = ACTIONS(1597), [anon_sym_POUND] = ACTIONS(3), @@ -195378,33 +195378,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = STATE(1155), [aux_sym_shebang_repeat1] = STATE(1173), [aux_sym_ctrl_match_repeat1] = STATE(1214), - [sym__newline] = ACTIONS(3534), - [anon_sym_LBRACK] = ACTIONS(3536), + [sym__newline] = ACTIONS(3543), + [anon_sym_LBRACK] = ACTIONS(3545), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(3538), - [anon_sym_LBRACE] = ACTIONS(3540), - [anon_sym_RBRACE] = ACTIONS(3570), - [anon_sym__] = ACTIONS(3544), - [anon_sym_DOT_DOT] = ACTIONS(3546), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3548), - [anon_sym_DOT_DOT_LT] = ACTIONS(3548), - [anon_sym_null] = ACTIONS(3550), - [anon_sym_true] = ACTIONS(3552), - [anon_sym_false] = ACTIONS(3552), - [aux_sym__val_number_decimal_token1] = ACTIONS(3554), - [aux_sym__val_number_decimal_token2] = ACTIONS(3556), - [aux_sym__val_number_decimal_token3] = ACTIONS(3558), - [aux_sym__val_number_decimal_token4] = ACTIONS(3560), + [anon_sym_DOLLAR] = ACTIONS(3547), + [anon_sym_LBRACE] = ACTIONS(3549), + [anon_sym_RBRACE] = ACTIONS(3579), + [anon_sym__] = ACTIONS(3553), + [anon_sym_DOT_DOT] = ACTIONS(3555), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3557), + [anon_sym_DOT_DOT_LT] = ACTIONS(3557), + [anon_sym_null] = ACTIONS(3559), + [anon_sym_true] = ACTIONS(3561), + [anon_sym_false] = ACTIONS(3561), + [aux_sym__val_number_decimal_token1] = ACTIONS(3563), + [aux_sym__val_number_decimal_token2] = ACTIONS(3565), + [aux_sym__val_number_decimal_token3] = ACTIONS(3567), + [aux_sym__val_number_decimal_token4] = ACTIONS(3569), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3562), - [aux_sym__val_number_token5] = ACTIONS(3562), - [aux_sym__val_number_token6] = ACTIONS(3562), + [aux_sym__val_number_token4] = ACTIONS(3571), + [aux_sym__val_number_token5] = ACTIONS(3571), + [aux_sym__val_number_token6] = ACTIONS(3571), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3564), + [sym_val_date] = ACTIONS(3573), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), @@ -195424,7 +195424,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3212), + [aux_sym_unquoted_token1] = ACTIONS(3219), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, @@ -195500,10 +195500,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bit_DASHxor2] = ACTIONS(1587), [anon_sym_bit_DASHor2] = ACTIONS(1587), [anon_sym_DOT_DOT2] = ACTIONS(1587), - [anon_sym_DOT] = ACTIONS(3572), + [anon_sym_DOT] = ACTIONS(3581), [anon_sym_DOT_DOT_EQ2] = ACTIONS(1589), [anon_sym_DOT_DOT_LT2] = ACTIONS(1589), - [aux_sym__immediate_decimal_token2] = ACTIONS(3574), + [aux_sym__immediate_decimal_token2] = ACTIONS(3583), [sym_filesize_unit] = ACTIONS(1587), [sym_duration_unit] = ACTIONS(1589), [anon_sym_POUND] = ACTIONS(3), @@ -195538,135 +195538,135 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__unquoted_anonymous_prefix] = STATE(6891), [sym_comment] = STATE(1157), [aux_sym_shebang_repeat1] = STATE(1163), - [sym__newline] = ACTIONS(3576), - [anon_sym_LBRACK] = ACTIONS(3578), - [anon_sym_LPAREN] = ACTIONS(3580), - [anon_sym_DOLLAR] = ACTIONS(3582), - [anon_sym_LBRACE] = ACTIONS(3584), - [anon_sym_DOT_DOT] = ACTIONS(3586), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3588), - [anon_sym_DOT_DOT_LT] = ACTIONS(3588), - [anon_sym_null] = ACTIONS(3590), - [anon_sym_true] = ACTIONS(3592), - [anon_sym_false] = ACTIONS(3592), - [aux_sym__val_number_decimal_token1] = ACTIONS(3594), - [aux_sym__val_number_decimal_token2] = ACTIONS(3596), - [aux_sym__val_number_decimal_token3] = ACTIONS(3598), - [aux_sym__val_number_decimal_token4] = ACTIONS(3600), - [aux_sym__val_number_token1] = ACTIONS(3602), - [aux_sym__val_number_token2] = ACTIONS(3602), - [aux_sym__val_number_token3] = ACTIONS(3602), - [aux_sym__val_number_token4] = ACTIONS(3604), - [aux_sym__val_number_token5] = ACTIONS(3604), - [aux_sym__val_number_token6] = ACTIONS(3604), - [anon_sym_0b] = ACTIONS(3606), - [anon_sym_0o] = ACTIONS(3608), - [anon_sym_0x] = ACTIONS(3608), - [sym_val_date] = ACTIONS(3610), - [anon_sym_DQUOTE] = ACTIONS(3612), - [sym__str_single_quotes] = ACTIONS(3614), - [sym__str_back_ticks] = ACTIONS(3614), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3616), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3618), - [anon_sym_err_GT] = ACTIONS(3620), - [anon_sym_out_GT] = ACTIONS(3620), - [anon_sym_e_GT] = ACTIONS(3620), - [anon_sym_o_GT] = ACTIONS(3620), - [anon_sym_err_PLUSout_GT] = ACTIONS(3620), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3620), - [anon_sym_o_PLUSe_GT] = ACTIONS(3620), - [anon_sym_e_PLUSo_GT] = ACTIONS(3620), - [anon_sym_err_GT_GT] = ACTIONS(3622), - [anon_sym_out_GT_GT] = ACTIONS(3622), - [anon_sym_e_GT_GT] = ACTIONS(3622), - [anon_sym_o_GT_GT] = ACTIONS(3622), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3622), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3622), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3622), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3622), - [aux_sym__unquoted_in_record_token1] = ACTIONS(3624), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3626), + [sym__newline] = ACTIONS(3585), + [anon_sym_LBRACK] = ACTIONS(3587), + [anon_sym_LPAREN] = ACTIONS(3589), + [anon_sym_DOLLAR] = ACTIONS(3591), + [anon_sym_LBRACE] = ACTIONS(3593), + [anon_sym_DOT_DOT] = ACTIONS(3595), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3597), + [anon_sym_DOT_DOT_LT] = ACTIONS(3597), + [anon_sym_null] = ACTIONS(3599), + [anon_sym_true] = ACTIONS(3601), + [anon_sym_false] = ACTIONS(3601), + [aux_sym__val_number_decimal_token1] = ACTIONS(3603), + [aux_sym__val_number_decimal_token2] = ACTIONS(3605), + [aux_sym__val_number_decimal_token3] = ACTIONS(3607), + [aux_sym__val_number_decimal_token4] = ACTIONS(3609), + [aux_sym__val_number_token1] = ACTIONS(3611), + [aux_sym__val_number_token2] = ACTIONS(3611), + [aux_sym__val_number_token3] = ACTIONS(3611), + [aux_sym__val_number_token4] = ACTIONS(3613), + [aux_sym__val_number_token5] = ACTIONS(3613), + [aux_sym__val_number_token6] = ACTIONS(3613), + [anon_sym_0b] = ACTIONS(3615), + [anon_sym_0o] = ACTIONS(3617), + [anon_sym_0x] = ACTIONS(3617), + [sym_val_date] = ACTIONS(3619), + [anon_sym_DQUOTE] = ACTIONS(3621), + [sym__str_single_quotes] = ACTIONS(3623), + [sym__str_back_ticks] = ACTIONS(3623), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3625), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3627), + [anon_sym_err_GT] = ACTIONS(3629), + [anon_sym_out_GT] = ACTIONS(3629), + [anon_sym_e_GT] = ACTIONS(3629), + [anon_sym_o_GT] = ACTIONS(3629), + [anon_sym_err_PLUSout_GT] = ACTIONS(3629), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3629), + [anon_sym_o_PLUSe_GT] = ACTIONS(3629), + [anon_sym_e_PLUSo_GT] = ACTIONS(3629), + [anon_sym_err_GT_GT] = ACTIONS(3631), + [anon_sym_out_GT_GT] = ACTIONS(3631), + [anon_sym_e_GT_GT] = ACTIONS(3631), + [anon_sym_o_GT_GT] = ACTIONS(3631), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3631), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3631), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3631), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3631), + [aux_sym__unquoted_in_record_token1] = ACTIONS(3633), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(3635), }, [1158] = { [sym_comment] = STATE(1158), - [aux_sym_cmd_identifier_token1] = ACTIONS(3628), - [aux_sym_cmd_identifier_token2] = ACTIONS(3628), - [aux_sym_cmd_identifier_token3] = ACTIONS(3628), - [aux_sym_cmd_identifier_token4] = ACTIONS(3628), - [aux_sym_cmd_identifier_token5] = ACTIONS(3628), - [aux_sym_cmd_identifier_token6] = ACTIONS(3628), - [aux_sym_cmd_identifier_token7] = ACTIONS(3628), - [aux_sym_cmd_identifier_token8] = ACTIONS(3628), - [aux_sym_cmd_identifier_token9] = ACTIONS(3628), - [aux_sym_cmd_identifier_token10] = ACTIONS(3628), - [aux_sym_cmd_identifier_token11] = ACTIONS(3628), - [aux_sym_cmd_identifier_token12] = ACTIONS(3628), - [aux_sym_cmd_identifier_token13] = ACTIONS(3628), - [aux_sym_cmd_identifier_token14] = ACTIONS(3628), - [aux_sym_cmd_identifier_token15] = ACTIONS(3628), - [aux_sym_cmd_identifier_token16] = ACTIONS(3628), - [aux_sym_cmd_identifier_token17] = ACTIONS(3628), - [aux_sym_cmd_identifier_token18] = ACTIONS(3628), - [aux_sym_cmd_identifier_token19] = ACTIONS(3628), - [aux_sym_cmd_identifier_token20] = ACTIONS(3628), - [aux_sym_cmd_identifier_token21] = ACTIONS(3628), - [aux_sym_cmd_identifier_token22] = ACTIONS(3628), - [aux_sym_cmd_identifier_token23] = ACTIONS(3628), - [aux_sym_cmd_identifier_token24] = ACTIONS(3628), - [aux_sym_cmd_identifier_token25] = ACTIONS(3628), - [aux_sym_cmd_identifier_token26] = ACTIONS(3628), - [aux_sym_cmd_identifier_token27] = ACTIONS(3628), - [aux_sym_cmd_identifier_token28] = ACTIONS(3628), - [aux_sym_cmd_identifier_token29] = ACTIONS(3628), - [aux_sym_cmd_identifier_token30] = ACTIONS(3628), - [aux_sym_cmd_identifier_token31] = ACTIONS(3628), - [aux_sym_cmd_identifier_token32] = ACTIONS(3628), - [aux_sym_cmd_identifier_token33] = ACTIONS(3628), - [aux_sym_cmd_identifier_token34] = ACTIONS(3628), - [aux_sym_cmd_identifier_token35] = ACTIONS(3628), - [aux_sym_cmd_identifier_token36] = ACTIONS(3628), - [aux_sym_cmd_identifier_token37] = ACTIONS(3628), - [aux_sym_cmd_identifier_token38] = ACTIONS(3628), - [aux_sym_cmd_identifier_token39] = ACTIONS(3628), - [aux_sym_cmd_identifier_token40] = ACTIONS(3628), - [sym__space] = ACTIONS(3630), - [anon_sym_LBRACK] = ACTIONS(3628), - [anon_sym_LPAREN] = ACTIONS(3628), - [anon_sym_DOLLAR] = ACTIONS(3628), - [anon_sym_DASH2] = ACTIONS(3628), - [anon_sym_LBRACE] = ACTIONS(3628), - [anon_sym_DOT_DOT] = ACTIONS(3628), - [aux_sym_expr_unary_token1] = ACTIONS(3628), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3628), - [anon_sym_DOT_DOT_LT] = ACTIONS(3628), - [anon_sym_null] = ACTIONS(3628), - [anon_sym_true] = ACTIONS(3628), - [anon_sym_false] = ACTIONS(3628), - [aux_sym__val_number_decimal_token1] = ACTIONS(3628), - [aux_sym__val_number_decimal_token2] = ACTIONS(3628), - [aux_sym__val_number_decimal_token3] = ACTIONS(3628), - [aux_sym__val_number_decimal_token4] = ACTIONS(3628), - [aux_sym__val_number_token1] = ACTIONS(3628), - [aux_sym__val_number_token2] = ACTIONS(3628), - [aux_sym__val_number_token3] = ACTIONS(3628), - [aux_sym__val_number_token4] = ACTIONS(3628), - [aux_sym__val_number_token5] = ACTIONS(3628), - [aux_sym__val_number_token6] = ACTIONS(3628), - [anon_sym_0b] = ACTIONS(3628), - [anon_sym_0o] = ACTIONS(3628), - [anon_sym_0x] = ACTIONS(3628), - [sym_val_date] = ACTIONS(3628), - [anon_sym_DQUOTE] = ACTIONS(3628), - [sym__str_single_quotes] = ACTIONS(3628), - [sym__str_back_ticks] = ACTIONS(3628), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3628), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3628), - [aux_sym_env_var_token1] = ACTIONS(3628), - [anon_sym_CARET] = ACTIONS(3628), - [aux_sym_command_token1] = ACTIONS(3628), + [aux_sym_cmd_identifier_token1] = ACTIONS(3637), + [aux_sym_cmd_identifier_token2] = ACTIONS(3637), + [aux_sym_cmd_identifier_token3] = ACTIONS(3637), + [aux_sym_cmd_identifier_token4] = ACTIONS(3637), + [aux_sym_cmd_identifier_token5] = ACTIONS(3637), + [aux_sym_cmd_identifier_token6] = ACTIONS(3637), + [aux_sym_cmd_identifier_token7] = ACTIONS(3637), + [aux_sym_cmd_identifier_token8] = ACTIONS(3637), + [aux_sym_cmd_identifier_token9] = ACTIONS(3637), + [aux_sym_cmd_identifier_token10] = ACTIONS(3637), + [aux_sym_cmd_identifier_token11] = ACTIONS(3637), + [aux_sym_cmd_identifier_token12] = ACTIONS(3637), + [aux_sym_cmd_identifier_token13] = ACTIONS(3637), + [aux_sym_cmd_identifier_token14] = ACTIONS(3637), + [aux_sym_cmd_identifier_token15] = ACTIONS(3637), + [aux_sym_cmd_identifier_token16] = ACTIONS(3637), + [aux_sym_cmd_identifier_token17] = ACTIONS(3637), + [aux_sym_cmd_identifier_token18] = ACTIONS(3637), + [aux_sym_cmd_identifier_token19] = ACTIONS(3637), + [aux_sym_cmd_identifier_token20] = ACTIONS(3637), + [aux_sym_cmd_identifier_token21] = ACTIONS(3637), + [aux_sym_cmd_identifier_token22] = ACTIONS(3637), + [aux_sym_cmd_identifier_token23] = ACTIONS(3637), + [aux_sym_cmd_identifier_token24] = ACTIONS(3637), + [aux_sym_cmd_identifier_token25] = ACTIONS(3637), + [aux_sym_cmd_identifier_token26] = ACTIONS(3637), + [aux_sym_cmd_identifier_token27] = ACTIONS(3637), + [aux_sym_cmd_identifier_token28] = ACTIONS(3637), + [aux_sym_cmd_identifier_token29] = ACTIONS(3637), + [aux_sym_cmd_identifier_token30] = ACTIONS(3637), + [aux_sym_cmd_identifier_token31] = ACTIONS(3637), + [aux_sym_cmd_identifier_token32] = ACTIONS(3637), + [aux_sym_cmd_identifier_token33] = ACTIONS(3637), + [aux_sym_cmd_identifier_token34] = ACTIONS(3637), + [aux_sym_cmd_identifier_token35] = ACTIONS(3637), + [aux_sym_cmd_identifier_token36] = ACTIONS(3637), + [aux_sym_cmd_identifier_token37] = ACTIONS(3637), + [aux_sym_cmd_identifier_token38] = ACTIONS(3637), + [aux_sym_cmd_identifier_token39] = ACTIONS(3637), + [aux_sym_cmd_identifier_token40] = ACTIONS(3637), + [sym__space] = ACTIONS(3639), + [anon_sym_LBRACK] = ACTIONS(3637), + [anon_sym_LPAREN] = ACTIONS(3637), + [anon_sym_DOLLAR] = ACTIONS(3637), + [anon_sym_DASH2] = ACTIONS(3637), + [anon_sym_LBRACE] = ACTIONS(3637), + [anon_sym_DOT_DOT] = ACTIONS(3637), + [aux_sym_expr_unary_token1] = ACTIONS(3637), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3637), + [anon_sym_DOT_DOT_LT] = ACTIONS(3637), + [anon_sym_null] = ACTIONS(3637), + [anon_sym_true] = ACTIONS(3637), + [anon_sym_false] = ACTIONS(3637), + [aux_sym__val_number_decimal_token1] = ACTIONS(3637), + [aux_sym__val_number_decimal_token2] = ACTIONS(3637), + [aux_sym__val_number_decimal_token3] = ACTIONS(3637), + [aux_sym__val_number_decimal_token4] = ACTIONS(3637), + [aux_sym__val_number_token1] = ACTIONS(3637), + [aux_sym__val_number_token2] = ACTIONS(3637), + [aux_sym__val_number_token3] = ACTIONS(3637), + [aux_sym__val_number_token4] = ACTIONS(3637), + [aux_sym__val_number_token5] = ACTIONS(3637), + [aux_sym__val_number_token6] = ACTIONS(3637), + [anon_sym_0b] = ACTIONS(3637), + [anon_sym_0o] = ACTIONS(3637), + [anon_sym_0x] = ACTIONS(3637), + [sym_val_date] = ACTIONS(3637), + [anon_sym_DQUOTE] = ACTIONS(3637), + [sym__str_single_quotes] = ACTIONS(3637), + [sym__str_back_ticks] = ACTIONS(3637), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3637), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3637), + [aux_sym_env_var_token1] = ACTIONS(3637), + [anon_sym_CARET] = ACTIONS(3637), + [aux_sym_command_token1] = ACTIONS(3637), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(3630), + [sym_raw_string_begin] = ACTIONS(3639), }, [1159] = { [sym_comment] = STATE(1159), @@ -195742,8 +195742,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT2] = ACTIONS(1595), [anon_sym_DOT_DOT_EQ2] = ACTIONS(1597), [anon_sym_DOT_DOT_LT2] = ACTIONS(1597), - [aux_sym__immediate_decimal_token1] = ACTIONS(3632), - [aux_sym__immediate_decimal_token2] = ACTIONS(3634), + [aux_sym__immediate_decimal_token1] = ACTIONS(3641), + [aux_sym__immediate_decimal_token2] = ACTIONS(3643), [sym_filesize_unit] = ACTIONS(1595), [sym_duration_unit] = ACTIONS(1597), [anon_sym_POUND] = ACTIONS(3), @@ -195858,33 +195858,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = STATE(1161), [aux_sym_shebang_repeat1] = STATE(1170), [aux_sym_ctrl_match_repeat1] = STATE(1222), - [sym__newline] = ACTIONS(3534), - [anon_sym_LBRACK] = ACTIONS(3536), + [sym__newline] = ACTIONS(3543), + [anon_sym_LBRACK] = ACTIONS(3545), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(3538), - [anon_sym_LBRACE] = ACTIONS(3540), - [anon_sym_RBRACE] = ACTIONS(3636), - [anon_sym__] = ACTIONS(3544), - [anon_sym_DOT_DOT] = ACTIONS(3546), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3548), - [anon_sym_DOT_DOT_LT] = ACTIONS(3548), - [anon_sym_null] = ACTIONS(3550), - [anon_sym_true] = ACTIONS(3552), - [anon_sym_false] = ACTIONS(3552), - [aux_sym__val_number_decimal_token1] = ACTIONS(3554), - [aux_sym__val_number_decimal_token2] = ACTIONS(3556), - [aux_sym__val_number_decimal_token3] = ACTIONS(3558), - [aux_sym__val_number_decimal_token4] = ACTIONS(3560), + [anon_sym_DOLLAR] = ACTIONS(3547), + [anon_sym_LBRACE] = ACTIONS(3549), + [anon_sym_RBRACE] = ACTIONS(3645), + [anon_sym__] = ACTIONS(3553), + [anon_sym_DOT_DOT] = ACTIONS(3555), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3557), + [anon_sym_DOT_DOT_LT] = ACTIONS(3557), + [anon_sym_null] = ACTIONS(3559), + [anon_sym_true] = ACTIONS(3561), + [anon_sym_false] = ACTIONS(3561), + [aux_sym__val_number_decimal_token1] = ACTIONS(3563), + [aux_sym__val_number_decimal_token2] = ACTIONS(3565), + [aux_sym__val_number_decimal_token3] = ACTIONS(3567), + [aux_sym__val_number_decimal_token4] = ACTIONS(3569), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3562), - [aux_sym__val_number_token5] = ACTIONS(3562), - [aux_sym__val_number_token6] = ACTIONS(3562), + [aux_sym__val_number_token4] = ACTIONS(3571), + [aux_sym__val_number_token5] = ACTIONS(3571), + [aux_sym__val_number_token6] = ACTIONS(3571), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3564), + [sym_val_date] = ACTIONS(3573), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), @@ -195904,7 +195904,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3212), + [aux_sym_unquoted_token1] = ACTIONS(3219), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, @@ -195980,10 +195980,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bit_DASHxor2] = ACTIONS(1587), [anon_sym_bit_DASHor2] = ACTIONS(1587), [anon_sym_DOT_DOT2] = ACTIONS(1587), - [anon_sym_DOT] = ACTIONS(3638), + [anon_sym_DOT] = ACTIONS(3647), [anon_sym_DOT_DOT_EQ2] = ACTIONS(1589), [anon_sym_DOT_DOT_LT2] = ACTIONS(1589), - [aux_sym__immediate_decimal_token2] = ACTIONS(3640), + [aux_sym__immediate_decimal_token2] = ACTIONS(3649), [sym_filesize_unit] = ACTIONS(1587), [sym_duration_unit] = ACTIONS(1589), [anon_sym_POUND] = ACTIONS(3), @@ -196018,55 +196018,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__unquoted_anonymous_prefix] = STATE(6891), [sym_comment] = STATE(1163), [aux_sym_shebang_repeat1] = STATE(3034), - [sym__newline] = ACTIONS(3576), - [anon_sym_LBRACK] = ACTIONS(3578), - [anon_sym_LPAREN] = ACTIONS(3580), - [anon_sym_DOLLAR] = ACTIONS(3582), - [anon_sym_LBRACE] = ACTIONS(3584), - [anon_sym_DOT_DOT] = ACTIONS(3586), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3588), - [anon_sym_DOT_DOT_LT] = ACTIONS(3588), - [anon_sym_null] = ACTIONS(3590), - [anon_sym_true] = ACTIONS(3592), - [anon_sym_false] = ACTIONS(3592), - [aux_sym__val_number_decimal_token1] = ACTIONS(3594), - [aux_sym__val_number_decimal_token2] = ACTIONS(3596), - [aux_sym__val_number_decimal_token3] = ACTIONS(3598), - [aux_sym__val_number_decimal_token4] = ACTIONS(3600), - [aux_sym__val_number_token1] = ACTIONS(3602), - [aux_sym__val_number_token2] = ACTIONS(3602), - [aux_sym__val_number_token3] = ACTIONS(3602), - [aux_sym__val_number_token4] = ACTIONS(3604), - [aux_sym__val_number_token5] = ACTIONS(3604), - [aux_sym__val_number_token6] = ACTIONS(3604), - [anon_sym_0b] = ACTIONS(3606), - [anon_sym_0o] = ACTIONS(3608), - [anon_sym_0x] = ACTIONS(3608), - [sym_val_date] = ACTIONS(3610), - [anon_sym_DQUOTE] = ACTIONS(3612), - [sym__str_single_quotes] = ACTIONS(3614), - [sym__str_back_ticks] = ACTIONS(3614), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3616), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3618), - [anon_sym_err_GT] = ACTIONS(3620), - [anon_sym_out_GT] = ACTIONS(3620), - [anon_sym_e_GT] = ACTIONS(3620), - [anon_sym_o_GT] = ACTIONS(3620), - [anon_sym_err_PLUSout_GT] = ACTIONS(3620), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3620), - [anon_sym_o_PLUSe_GT] = ACTIONS(3620), - [anon_sym_e_PLUSo_GT] = ACTIONS(3620), - [anon_sym_err_GT_GT] = ACTIONS(3622), - [anon_sym_out_GT_GT] = ACTIONS(3622), - [anon_sym_e_GT_GT] = ACTIONS(3622), - [anon_sym_o_GT_GT] = ACTIONS(3622), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3622), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3622), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3622), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3622), - [aux_sym__unquoted_in_record_token1] = ACTIONS(3624), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3626), + [sym__newline] = ACTIONS(3585), + [anon_sym_LBRACK] = ACTIONS(3587), + [anon_sym_LPAREN] = ACTIONS(3589), + [anon_sym_DOLLAR] = ACTIONS(3591), + [anon_sym_LBRACE] = ACTIONS(3593), + [anon_sym_DOT_DOT] = ACTIONS(3595), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3597), + [anon_sym_DOT_DOT_LT] = ACTIONS(3597), + [anon_sym_null] = ACTIONS(3599), + [anon_sym_true] = ACTIONS(3601), + [anon_sym_false] = ACTIONS(3601), + [aux_sym__val_number_decimal_token1] = ACTIONS(3603), + [aux_sym__val_number_decimal_token2] = ACTIONS(3605), + [aux_sym__val_number_decimal_token3] = ACTIONS(3607), + [aux_sym__val_number_decimal_token4] = ACTIONS(3609), + [aux_sym__val_number_token1] = ACTIONS(3611), + [aux_sym__val_number_token2] = ACTIONS(3611), + [aux_sym__val_number_token3] = ACTIONS(3611), + [aux_sym__val_number_token4] = ACTIONS(3613), + [aux_sym__val_number_token5] = ACTIONS(3613), + [aux_sym__val_number_token6] = ACTIONS(3613), + [anon_sym_0b] = ACTIONS(3615), + [anon_sym_0o] = ACTIONS(3617), + [anon_sym_0x] = ACTIONS(3617), + [sym_val_date] = ACTIONS(3619), + [anon_sym_DQUOTE] = ACTIONS(3621), + [sym__str_single_quotes] = ACTIONS(3623), + [sym__str_back_ticks] = ACTIONS(3623), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3625), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3627), + [anon_sym_err_GT] = ACTIONS(3629), + [anon_sym_out_GT] = ACTIONS(3629), + [anon_sym_e_GT] = ACTIONS(3629), + [anon_sym_o_GT] = ACTIONS(3629), + [anon_sym_err_PLUSout_GT] = ACTIONS(3629), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3629), + [anon_sym_o_PLUSe_GT] = ACTIONS(3629), + [anon_sym_e_PLUSo_GT] = ACTIONS(3629), + [anon_sym_err_GT_GT] = ACTIONS(3631), + [anon_sym_out_GT_GT] = ACTIONS(3631), + [anon_sym_e_GT_GT] = ACTIONS(3631), + [anon_sym_o_GT_GT] = ACTIONS(3631), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3631), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3631), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3631), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3631), + [aux_sym__unquoted_in_record_token1] = ACTIONS(3633), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(3635), }, [1164] = { [sym_expr_parenthesized] = STATE(4354), @@ -196098,55 +196098,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__unquoted_anonymous_prefix] = STATE(6891), [sym_comment] = STATE(1164), [aux_sym_shebang_repeat1] = STATE(3034), - [sym__newline] = ACTIONS(3576), - [anon_sym_LBRACK] = ACTIONS(3578), - [anon_sym_LPAREN] = ACTIONS(3580), - [anon_sym_DOLLAR] = ACTIONS(3582), - [anon_sym_LBRACE] = ACTIONS(3584), - [anon_sym_DOT_DOT] = ACTIONS(3586), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3588), - [anon_sym_DOT_DOT_LT] = ACTIONS(3588), - [anon_sym_null] = ACTIONS(3590), - [anon_sym_true] = ACTIONS(3592), - [anon_sym_false] = ACTIONS(3592), - [aux_sym__val_number_decimal_token1] = ACTIONS(3594), - [aux_sym__val_number_decimal_token2] = ACTIONS(3596), - [aux_sym__val_number_decimal_token3] = ACTIONS(3598), - [aux_sym__val_number_decimal_token4] = ACTIONS(3600), - [aux_sym__val_number_token1] = ACTIONS(3602), - [aux_sym__val_number_token2] = ACTIONS(3602), - [aux_sym__val_number_token3] = ACTIONS(3602), - [aux_sym__val_number_token4] = ACTIONS(3604), - [aux_sym__val_number_token5] = ACTIONS(3604), - [aux_sym__val_number_token6] = ACTIONS(3604), - [anon_sym_0b] = ACTIONS(3606), - [anon_sym_0o] = ACTIONS(3608), - [anon_sym_0x] = ACTIONS(3608), - [sym_val_date] = ACTIONS(3610), - [anon_sym_DQUOTE] = ACTIONS(3612), - [sym__str_single_quotes] = ACTIONS(3614), - [sym__str_back_ticks] = ACTIONS(3614), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3616), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3618), - [anon_sym_err_GT] = ACTIONS(3620), - [anon_sym_out_GT] = ACTIONS(3620), - [anon_sym_e_GT] = ACTIONS(3620), - [anon_sym_o_GT] = ACTIONS(3620), - [anon_sym_err_PLUSout_GT] = ACTIONS(3620), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3620), - [anon_sym_o_PLUSe_GT] = ACTIONS(3620), - [anon_sym_e_PLUSo_GT] = ACTIONS(3620), - [anon_sym_err_GT_GT] = ACTIONS(3622), - [anon_sym_out_GT_GT] = ACTIONS(3622), - [anon_sym_e_GT_GT] = ACTIONS(3622), - [anon_sym_o_GT_GT] = ACTIONS(3622), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3622), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3622), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3622), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3622), - [aux_sym__unquoted_in_record_token1] = ACTIONS(3624), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3626), + [sym__newline] = ACTIONS(3585), + [anon_sym_LBRACK] = ACTIONS(3587), + [anon_sym_LPAREN] = ACTIONS(3589), + [anon_sym_DOLLAR] = ACTIONS(3591), + [anon_sym_LBRACE] = ACTIONS(3593), + [anon_sym_DOT_DOT] = ACTIONS(3595), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3597), + [anon_sym_DOT_DOT_LT] = ACTIONS(3597), + [anon_sym_null] = ACTIONS(3599), + [anon_sym_true] = ACTIONS(3601), + [anon_sym_false] = ACTIONS(3601), + [aux_sym__val_number_decimal_token1] = ACTIONS(3603), + [aux_sym__val_number_decimal_token2] = ACTIONS(3605), + [aux_sym__val_number_decimal_token3] = ACTIONS(3607), + [aux_sym__val_number_decimal_token4] = ACTIONS(3609), + [aux_sym__val_number_token1] = ACTIONS(3611), + [aux_sym__val_number_token2] = ACTIONS(3611), + [aux_sym__val_number_token3] = ACTIONS(3611), + [aux_sym__val_number_token4] = ACTIONS(3613), + [aux_sym__val_number_token5] = ACTIONS(3613), + [aux_sym__val_number_token6] = ACTIONS(3613), + [anon_sym_0b] = ACTIONS(3615), + [anon_sym_0o] = ACTIONS(3617), + [anon_sym_0x] = ACTIONS(3617), + [sym_val_date] = ACTIONS(3619), + [anon_sym_DQUOTE] = ACTIONS(3621), + [sym__str_single_quotes] = ACTIONS(3623), + [sym__str_back_ticks] = ACTIONS(3623), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3625), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3627), + [anon_sym_err_GT] = ACTIONS(3629), + [anon_sym_out_GT] = ACTIONS(3629), + [anon_sym_e_GT] = ACTIONS(3629), + [anon_sym_o_GT] = ACTIONS(3629), + [anon_sym_err_PLUSout_GT] = ACTIONS(3629), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3629), + [anon_sym_o_PLUSe_GT] = ACTIONS(3629), + [anon_sym_e_PLUSo_GT] = ACTIONS(3629), + [anon_sym_err_GT_GT] = ACTIONS(3631), + [anon_sym_out_GT_GT] = ACTIONS(3631), + [anon_sym_e_GT_GT] = ACTIONS(3631), + [anon_sym_o_GT_GT] = ACTIONS(3631), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3631), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3631), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3631), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3631), + [aux_sym__unquoted_in_record_token1] = ACTIONS(3633), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(3635), }, [1165] = { [sym_comment] = STATE(1165), @@ -196220,10 +196220,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bit_DASHxor2] = ACTIONS(1587), [anon_sym_bit_DASHor2] = ACTIONS(1587), [anon_sym_DOT_DOT2] = ACTIONS(1587), - [anon_sym_DOT] = ACTIONS(3642), + [anon_sym_DOT] = ACTIONS(3651), [anon_sym_DOT_DOT_EQ2] = ACTIONS(1589), [anon_sym_DOT_DOT_LT2] = ACTIONS(1589), - [aux_sym__immediate_decimal_token2] = ACTIONS(3644), + [aux_sym__immediate_decimal_token2] = ACTIONS(3653), [sym_filesize_unit] = ACTIONS(1587), [sym_duration_unit] = ACTIONS(1589), [anon_sym_POUND] = ACTIONS(3), @@ -196258,33 +196258,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = STATE(1166), [aux_sym_shebang_repeat1] = STATE(1174), [aux_sym_ctrl_match_repeat1] = STATE(1219), - [sym__newline] = ACTIONS(3534), - [anon_sym_LBRACK] = ACTIONS(3536), + [sym__newline] = ACTIONS(3543), + [anon_sym_LBRACK] = ACTIONS(3545), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(3538), - [anon_sym_LBRACE] = ACTIONS(3540), - [anon_sym_RBRACE] = ACTIONS(3646), - [anon_sym__] = ACTIONS(3544), - [anon_sym_DOT_DOT] = ACTIONS(3546), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3548), - [anon_sym_DOT_DOT_LT] = ACTIONS(3548), - [anon_sym_null] = ACTIONS(3550), - [anon_sym_true] = ACTIONS(3552), - [anon_sym_false] = ACTIONS(3552), - [aux_sym__val_number_decimal_token1] = ACTIONS(3554), - [aux_sym__val_number_decimal_token2] = ACTIONS(3556), - [aux_sym__val_number_decimal_token3] = ACTIONS(3558), - [aux_sym__val_number_decimal_token4] = ACTIONS(3560), + [anon_sym_DOLLAR] = ACTIONS(3547), + [anon_sym_LBRACE] = ACTIONS(3549), + [anon_sym_RBRACE] = ACTIONS(3655), + [anon_sym__] = ACTIONS(3553), + [anon_sym_DOT_DOT] = ACTIONS(3555), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3557), + [anon_sym_DOT_DOT_LT] = ACTIONS(3557), + [anon_sym_null] = ACTIONS(3559), + [anon_sym_true] = ACTIONS(3561), + [anon_sym_false] = ACTIONS(3561), + [aux_sym__val_number_decimal_token1] = ACTIONS(3563), + [aux_sym__val_number_decimal_token2] = ACTIONS(3565), + [aux_sym__val_number_decimal_token3] = ACTIONS(3567), + [aux_sym__val_number_decimal_token4] = ACTIONS(3569), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3562), - [aux_sym__val_number_token5] = ACTIONS(3562), - [aux_sym__val_number_token6] = ACTIONS(3562), + [aux_sym__val_number_token4] = ACTIONS(3571), + [aux_sym__val_number_token5] = ACTIONS(3571), + [aux_sym__val_number_token6] = ACTIONS(3571), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3564), + [sym_val_date] = ACTIONS(3573), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), @@ -196304,7 +196304,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3212), + [aux_sym_unquoted_token1] = ACTIONS(3219), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, @@ -196382,8 +196382,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT2] = ACTIONS(1595), [anon_sym_DOT_DOT_EQ2] = ACTIONS(1597), [anon_sym_DOT_DOT_LT2] = ACTIONS(1597), - [aux_sym__immediate_decimal_token1] = ACTIONS(3648), - [aux_sym__immediate_decimal_token2] = ACTIONS(3650), + [aux_sym__immediate_decimal_token1] = ACTIONS(3657), + [aux_sym__immediate_decimal_token2] = ACTIONS(3659), [sym_filesize_unit] = ACTIONS(1595), [sym_duration_unit] = ACTIONS(1597), [anon_sym_POUND] = ACTIONS(3), @@ -196418,55 +196418,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__unquoted_anonymous_prefix] = STATE(6891), [sym_comment] = STATE(1168), [aux_sym_shebang_repeat1] = STATE(1164), - [sym__newline] = ACTIONS(3576), - [anon_sym_LBRACK] = ACTIONS(3578), - [anon_sym_LPAREN] = ACTIONS(3580), - [anon_sym_DOLLAR] = ACTIONS(3582), - [anon_sym_LBRACE] = ACTIONS(3584), - [anon_sym_DOT_DOT] = ACTIONS(3586), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3588), - [anon_sym_DOT_DOT_LT] = ACTIONS(3588), - [anon_sym_null] = ACTIONS(3590), - [anon_sym_true] = ACTIONS(3592), - [anon_sym_false] = ACTIONS(3592), - [aux_sym__val_number_decimal_token1] = ACTIONS(3594), - [aux_sym__val_number_decimal_token2] = ACTIONS(3596), - [aux_sym__val_number_decimal_token3] = ACTIONS(3598), - [aux_sym__val_number_decimal_token4] = ACTIONS(3600), - [aux_sym__val_number_token1] = ACTIONS(3602), - [aux_sym__val_number_token2] = ACTIONS(3602), - [aux_sym__val_number_token3] = ACTIONS(3602), - [aux_sym__val_number_token4] = ACTIONS(3604), - [aux_sym__val_number_token5] = ACTIONS(3604), - [aux_sym__val_number_token6] = ACTIONS(3604), - [anon_sym_0b] = ACTIONS(3606), - [anon_sym_0o] = ACTIONS(3608), - [anon_sym_0x] = ACTIONS(3608), - [sym_val_date] = ACTIONS(3610), - [anon_sym_DQUOTE] = ACTIONS(3612), - [sym__str_single_quotes] = ACTIONS(3614), - [sym__str_back_ticks] = ACTIONS(3614), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3616), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3618), - [anon_sym_err_GT] = ACTIONS(3620), - [anon_sym_out_GT] = ACTIONS(3620), - [anon_sym_e_GT] = ACTIONS(3620), - [anon_sym_o_GT] = ACTIONS(3620), - [anon_sym_err_PLUSout_GT] = ACTIONS(3620), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3620), - [anon_sym_o_PLUSe_GT] = ACTIONS(3620), - [anon_sym_e_PLUSo_GT] = ACTIONS(3620), - [anon_sym_err_GT_GT] = ACTIONS(3622), - [anon_sym_out_GT_GT] = ACTIONS(3622), - [anon_sym_e_GT_GT] = ACTIONS(3622), - [anon_sym_o_GT_GT] = ACTIONS(3622), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3622), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3622), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3622), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3622), - [aux_sym__unquoted_in_record_token1] = ACTIONS(3624), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3626), + [sym__newline] = ACTIONS(3585), + [anon_sym_LBRACK] = ACTIONS(3587), + [anon_sym_LPAREN] = ACTIONS(3589), + [anon_sym_DOLLAR] = ACTIONS(3591), + [anon_sym_LBRACE] = ACTIONS(3593), + [anon_sym_DOT_DOT] = ACTIONS(3595), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3597), + [anon_sym_DOT_DOT_LT] = ACTIONS(3597), + [anon_sym_null] = ACTIONS(3599), + [anon_sym_true] = ACTIONS(3601), + [anon_sym_false] = ACTIONS(3601), + [aux_sym__val_number_decimal_token1] = ACTIONS(3603), + [aux_sym__val_number_decimal_token2] = ACTIONS(3605), + [aux_sym__val_number_decimal_token3] = ACTIONS(3607), + [aux_sym__val_number_decimal_token4] = ACTIONS(3609), + [aux_sym__val_number_token1] = ACTIONS(3611), + [aux_sym__val_number_token2] = ACTIONS(3611), + [aux_sym__val_number_token3] = ACTIONS(3611), + [aux_sym__val_number_token4] = ACTIONS(3613), + [aux_sym__val_number_token5] = ACTIONS(3613), + [aux_sym__val_number_token6] = ACTIONS(3613), + [anon_sym_0b] = ACTIONS(3615), + [anon_sym_0o] = ACTIONS(3617), + [anon_sym_0x] = ACTIONS(3617), + [sym_val_date] = ACTIONS(3619), + [anon_sym_DQUOTE] = ACTIONS(3621), + [sym__str_single_quotes] = ACTIONS(3623), + [sym__str_back_ticks] = ACTIONS(3623), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3625), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3627), + [anon_sym_err_GT] = ACTIONS(3629), + [anon_sym_out_GT] = ACTIONS(3629), + [anon_sym_e_GT] = ACTIONS(3629), + [anon_sym_o_GT] = ACTIONS(3629), + [anon_sym_err_PLUSout_GT] = ACTIONS(3629), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3629), + [anon_sym_o_PLUSe_GT] = ACTIONS(3629), + [anon_sym_e_PLUSo_GT] = ACTIONS(3629), + [anon_sym_err_GT_GT] = ACTIONS(3631), + [anon_sym_out_GT_GT] = ACTIONS(3631), + [anon_sym_e_GT_GT] = ACTIONS(3631), + [anon_sym_o_GT_GT] = ACTIONS(3631), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3631), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3631), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3631), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3631), + [aux_sym__unquoted_in_record_token1] = ACTIONS(3633), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(3635), }, [1169] = { [sym_match_arm] = STATE(6969), @@ -196498,32 +196498,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = STATE(1169), [aux_sym_shebang_repeat1] = STATE(3088), [aux_sym_ctrl_match_repeat1] = STATE(1223), - [sym__newline] = ACTIONS(3534), - [anon_sym_LBRACK] = ACTIONS(3536), + [sym__newline] = ACTIONS(3543), + [anon_sym_LBRACK] = ACTIONS(3545), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(3538), - [anon_sym_LBRACE] = ACTIONS(3540), - [anon_sym__] = ACTIONS(3544), - [anon_sym_DOT_DOT] = ACTIONS(3546), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3548), - [anon_sym_DOT_DOT_LT] = ACTIONS(3548), - [anon_sym_null] = ACTIONS(3550), - [anon_sym_true] = ACTIONS(3552), - [anon_sym_false] = ACTIONS(3552), - [aux_sym__val_number_decimal_token1] = ACTIONS(3554), - [aux_sym__val_number_decimal_token2] = ACTIONS(3556), - [aux_sym__val_number_decimal_token3] = ACTIONS(3558), - [aux_sym__val_number_decimal_token4] = ACTIONS(3560), + [anon_sym_DOLLAR] = ACTIONS(3547), + [anon_sym_LBRACE] = ACTIONS(3549), + [anon_sym__] = ACTIONS(3553), + [anon_sym_DOT_DOT] = ACTIONS(3555), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3557), + [anon_sym_DOT_DOT_LT] = ACTIONS(3557), + [anon_sym_null] = ACTIONS(3559), + [anon_sym_true] = ACTIONS(3561), + [anon_sym_false] = ACTIONS(3561), + [aux_sym__val_number_decimal_token1] = ACTIONS(3563), + [aux_sym__val_number_decimal_token2] = ACTIONS(3565), + [aux_sym__val_number_decimal_token3] = ACTIONS(3567), + [aux_sym__val_number_decimal_token4] = ACTIONS(3569), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3562), - [aux_sym__val_number_token5] = ACTIONS(3562), - [aux_sym__val_number_token6] = ACTIONS(3562), + [aux_sym__val_number_token4] = ACTIONS(3571), + [aux_sym__val_number_token5] = ACTIONS(3571), + [aux_sym__val_number_token6] = ACTIONS(3571), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3564), + [sym_val_date] = ACTIONS(3573), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), @@ -196543,7 +196543,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3212), + [aux_sym_unquoted_token1] = ACTIONS(3219), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, @@ -196577,32 +196577,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = STATE(1170), [aux_sym_shebang_repeat1] = STATE(3088), [aux_sym_ctrl_match_repeat1] = STATE(1224), - [sym__newline] = ACTIONS(3534), - [anon_sym_LBRACK] = ACTIONS(3536), + [sym__newline] = ACTIONS(3543), + [anon_sym_LBRACK] = ACTIONS(3545), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(3538), - [anon_sym_LBRACE] = ACTIONS(3540), - [anon_sym__] = ACTIONS(3544), - [anon_sym_DOT_DOT] = ACTIONS(3546), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3548), - [anon_sym_DOT_DOT_LT] = ACTIONS(3548), - [anon_sym_null] = ACTIONS(3550), - [anon_sym_true] = ACTIONS(3552), - [anon_sym_false] = ACTIONS(3552), - [aux_sym__val_number_decimal_token1] = ACTIONS(3554), - [aux_sym__val_number_decimal_token2] = ACTIONS(3556), - [aux_sym__val_number_decimal_token3] = ACTIONS(3558), - [aux_sym__val_number_decimal_token4] = ACTIONS(3560), + [anon_sym_DOLLAR] = ACTIONS(3547), + [anon_sym_LBRACE] = ACTIONS(3549), + [anon_sym__] = ACTIONS(3553), + [anon_sym_DOT_DOT] = ACTIONS(3555), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3557), + [anon_sym_DOT_DOT_LT] = ACTIONS(3557), + [anon_sym_null] = ACTIONS(3559), + [anon_sym_true] = ACTIONS(3561), + [anon_sym_false] = ACTIONS(3561), + [aux_sym__val_number_decimal_token1] = ACTIONS(3563), + [aux_sym__val_number_decimal_token2] = ACTIONS(3565), + [aux_sym__val_number_decimal_token3] = ACTIONS(3567), + [aux_sym__val_number_decimal_token4] = ACTIONS(3569), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3562), - [aux_sym__val_number_token5] = ACTIONS(3562), - [aux_sym__val_number_token6] = ACTIONS(3562), + [aux_sym__val_number_token4] = ACTIONS(3571), + [aux_sym__val_number_token5] = ACTIONS(3571), + [aux_sym__val_number_token6] = ACTIONS(3571), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3564), + [sym_val_date] = ACTIONS(3573), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), @@ -196622,7 +196622,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3212), + [aux_sym_unquoted_token1] = ACTIONS(3219), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, @@ -196699,8 +196699,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT2] = ACTIONS(1595), [anon_sym_DOT_DOT_EQ2] = ACTIONS(1597), [anon_sym_DOT_DOT_LT2] = ACTIONS(1597), - [aux_sym__immediate_decimal_token1] = ACTIONS(3652), - [aux_sym__immediate_decimal_token2] = ACTIONS(3654), + [aux_sym__immediate_decimal_token1] = ACTIONS(3661), + [aux_sym__immediate_decimal_token2] = ACTIONS(3663), [sym_filesize_unit] = ACTIONS(1595), [sym_duration_unit] = ACTIONS(1597), [anon_sym_POUND] = ACTIONS(3), @@ -196776,10 +196776,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bit_DASHxor2] = ACTIONS(1587), [anon_sym_bit_DASHor2] = ACTIONS(1587), [anon_sym_DOT_DOT2] = ACTIONS(1587), - [anon_sym_DOT] = ACTIONS(3656), + [anon_sym_DOT] = ACTIONS(3665), [anon_sym_DOT_DOT_EQ2] = ACTIONS(1589), [anon_sym_DOT_DOT_LT2] = ACTIONS(1589), - [aux_sym__immediate_decimal_token2] = ACTIONS(3658), + [aux_sym__immediate_decimal_token2] = ACTIONS(3667), [sym_filesize_unit] = ACTIONS(1587), [sym_duration_unit] = ACTIONS(1589), [anon_sym_POUND] = ACTIONS(3), @@ -196814,32 +196814,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = STATE(1173), [aux_sym_shebang_repeat1] = STATE(3088), [aux_sym_ctrl_match_repeat1] = STATE(1228), - [sym__newline] = ACTIONS(3534), - [anon_sym_LBRACK] = ACTIONS(3536), + [sym__newline] = ACTIONS(3543), + [anon_sym_LBRACK] = ACTIONS(3545), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(3538), - [anon_sym_LBRACE] = ACTIONS(3540), - [anon_sym__] = ACTIONS(3544), - [anon_sym_DOT_DOT] = ACTIONS(3546), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3548), - [anon_sym_DOT_DOT_LT] = ACTIONS(3548), - [anon_sym_null] = ACTIONS(3550), - [anon_sym_true] = ACTIONS(3552), - [anon_sym_false] = ACTIONS(3552), - [aux_sym__val_number_decimal_token1] = ACTIONS(3554), - [aux_sym__val_number_decimal_token2] = ACTIONS(3556), - [aux_sym__val_number_decimal_token3] = ACTIONS(3558), - [aux_sym__val_number_decimal_token4] = ACTIONS(3560), + [anon_sym_DOLLAR] = ACTIONS(3547), + [anon_sym_LBRACE] = ACTIONS(3549), + [anon_sym__] = ACTIONS(3553), + [anon_sym_DOT_DOT] = ACTIONS(3555), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3557), + [anon_sym_DOT_DOT_LT] = ACTIONS(3557), + [anon_sym_null] = ACTIONS(3559), + [anon_sym_true] = ACTIONS(3561), + [anon_sym_false] = ACTIONS(3561), + [aux_sym__val_number_decimal_token1] = ACTIONS(3563), + [aux_sym__val_number_decimal_token2] = ACTIONS(3565), + [aux_sym__val_number_decimal_token3] = ACTIONS(3567), + [aux_sym__val_number_decimal_token4] = ACTIONS(3569), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3562), - [aux_sym__val_number_token5] = ACTIONS(3562), - [aux_sym__val_number_token6] = ACTIONS(3562), + [aux_sym__val_number_token4] = ACTIONS(3571), + [aux_sym__val_number_token5] = ACTIONS(3571), + [aux_sym__val_number_token6] = ACTIONS(3571), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3564), + [sym_val_date] = ACTIONS(3573), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), @@ -196859,7 +196859,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3212), + [aux_sym_unquoted_token1] = ACTIONS(3219), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, @@ -196893,32 +196893,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = STATE(1174), [aux_sym_shebang_repeat1] = STATE(3088), [aux_sym_ctrl_match_repeat1] = STATE(1210), - [sym__newline] = ACTIONS(3534), - [anon_sym_LBRACK] = ACTIONS(3536), + [sym__newline] = ACTIONS(3543), + [anon_sym_LBRACK] = ACTIONS(3545), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(3538), - [anon_sym_LBRACE] = ACTIONS(3540), - [anon_sym__] = ACTIONS(3544), - [anon_sym_DOT_DOT] = ACTIONS(3546), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3548), - [anon_sym_DOT_DOT_LT] = ACTIONS(3548), - [anon_sym_null] = ACTIONS(3550), - [anon_sym_true] = ACTIONS(3552), - [anon_sym_false] = ACTIONS(3552), - [aux_sym__val_number_decimal_token1] = ACTIONS(3554), - [aux_sym__val_number_decimal_token2] = ACTIONS(3556), - [aux_sym__val_number_decimal_token3] = ACTIONS(3558), - [aux_sym__val_number_decimal_token4] = ACTIONS(3560), + [anon_sym_DOLLAR] = ACTIONS(3547), + [anon_sym_LBRACE] = ACTIONS(3549), + [anon_sym__] = ACTIONS(3553), + [anon_sym_DOT_DOT] = ACTIONS(3555), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3557), + [anon_sym_DOT_DOT_LT] = ACTIONS(3557), + [anon_sym_null] = ACTIONS(3559), + [anon_sym_true] = ACTIONS(3561), + [anon_sym_false] = ACTIONS(3561), + [aux_sym__val_number_decimal_token1] = ACTIONS(3563), + [aux_sym__val_number_decimal_token2] = ACTIONS(3565), + [aux_sym__val_number_decimal_token3] = ACTIONS(3567), + [aux_sym__val_number_decimal_token4] = ACTIONS(3569), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3562), - [aux_sym__val_number_token5] = ACTIONS(3562), - [aux_sym__val_number_token6] = ACTIONS(3562), + [aux_sym__val_number_token4] = ACTIONS(3571), + [aux_sym__val_number_token5] = ACTIONS(3571), + [aux_sym__val_number_token6] = ACTIONS(3571), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3564), + [sym_val_date] = ACTIONS(3573), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), @@ -196938,7 +196938,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3212), + [aux_sym_unquoted_token1] = ACTIONS(3219), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, @@ -197016,7 +197016,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT2] = ACTIONS(1587), [anon_sym_DOT_DOT_EQ2] = ACTIONS(1589), [anon_sym_DOT_DOT_LT2] = ACTIONS(1589), - [aux_sym__immediate_decimal_token2] = ACTIONS(3644), + [aux_sym__immediate_decimal_token2] = ACTIONS(3653), [sym_filesize_unit] = ACTIONS(1587), [sym_duration_unit] = ACTIONS(1589), [anon_sym_POUND] = ACTIONS(3), @@ -197095,7 +197095,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT2] = ACTIONS(1667), [anon_sym_DOT_DOT_EQ2] = ACTIONS(1669), [anon_sym_DOT_DOT_LT2] = ACTIONS(1669), - [aux_sym__immediate_decimal_token2] = ACTIONS(3660), + [aux_sym__immediate_decimal_token2] = ACTIONS(3669), [sym_filesize_unit] = ACTIONS(1667), [sym_duration_unit] = ACTIONS(1669), [anon_sym_POUND] = ACTIONS(3), @@ -197174,7 +197174,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT2] = ACTIONS(1587), [anon_sym_DOT_DOT_EQ2] = ACTIONS(1589), [anon_sym_DOT_DOT_LT2] = ACTIONS(1589), - [aux_sym__immediate_decimal_token2] = ACTIONS(3574), + [aux_sym__immediate_decimal_token2] = ACTIONS(3583), [sym_filesize_unit] = ACTIONS(1587), [sym_duration_unit] = ACTIONS(1589), [anon_sym_POUND] = ACTIONS(3), @@ -197253,7 +197253,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT2] = ACTIONS(1667), [anon_sym_DOT_DOT_EQ2] = ACTIONS(1669), [anon_sym_DOT_DOT_LT2] = ACTIONS(1669), - [aux_sym__immediate_decimal_token2] = ACTIONS(3662), + [aux_sym__immediate_decimal_token2] = ACTIONS(3671), [sym_filesize_unit] = ACTIONS(1667), [sym_duration_unit] = ACTIONS(1669), [anon_sym_POUND] = ACTIONS(3), @@ -197332,7 +197332,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT2] = ACTIONS(1587), [anon_sym_DOT_DOT_EQ2] = ACTIONS(1589), [anon_sym_DOT_DOT_LT2] = ACTIONS(1589), - [aux_sym__immediate_decimal_token2] = ACTIONS(3640), + [aux_sym__immediate_decimal_token2] = ACTIONS(3649), [sym_filesize_unit] = ACTIONS(1587), [sym_duration_unit] = ACTIONS(1589), [anon_sym_POUND] = ACTIONS(3), @@ -197411,7 +197411,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT2] = ACTIONS(1667), [anon_sym_DOT_DOT_EQ2] = ACTIONS(1669), [anon_sym_DOT_DOT_LT2] = ACTIONS(1669), - [aux_sym__immediate_decimal_token2] = ACTIONS(3664), + [aux_sym__immediate_decimal_token2] = ACTIONS(3673), [sym_filesize_unit] = ACTIONS(1667), [sym_duration_unit] = ACTIONS(1669), [anon_sym_POUND] = ACTIONS(3), @@ -197564,10 +197564,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bit_DASHxor2] = ACTIONS(1587), [anon_sym_bit_DASHor2] = ACTIONS(1587), [anon_sym_DOT_DOT2] = ACTIONS(1587), - [anon_sym_DOT] = ACTIONS(3666), + [anon_sym_DOT] = ACTIONS(3675), [anon_sym_DOT_DOT_EQ2] = ACTIONS(1589), [anon_sym_DOT_DOT_LT2] = ACTIONS(1589), - [aux_sym__immediate_decimal_token2] = ACTIONS(3668), + [aux_sym__immediate_decimal_token2] = ACTIONS(3677), [sym_filesize_unit] = ACTIONS(1587), [sym_duration_unit] = ACTIONS(1589), [anon_sym_POUND] = ACTIONS(3), @@ -197601,54 +197601,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__unquoted_in_record_with_expr] = STATE(682), [sym__unquoted_anonymous_prefix] = STATE(7076), [sym_comment] = STATE(1183), - [anon_sym_LBRACK] = ACTIONS(3670), - [anon_sym_LPAREN] = ACTIONS(3672), + [anon_sym_LBRACK] = ACTIONS(3679), + [anon_sym_LPAREN] = ACTIONS(3681), [anon_sym_DOLLAR] = ACTIONS(1541), - [anon_sym_LBRACE] = ACTIONS(3674), - [anon_sym_DOT_DOT] = ACTIONS(3676), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3678), - [anon_sym_DOT_DOT_LT] = ACTIONS(3678), - [anon_sym_null] = ACTIONS(3680), - [anon_sym_true] = ACTIONS(3682), - [anon_sym_false] = ACTIONS(3682), - [aux_sym__val_number_decimal_token1] = ACTIONS(3684), - [aux_sym__val_number_decimal_token2] = ACTIONS(3686), - [aux_sym__val_number_decimal_token3] = ACTIONS(3688), - [aux_sym__val_number_decimal_token4] = ACTIONS(3690), - [aux_sym__val_number_token1] = ACTIONS(3692), - [aux_sym__val_number_token2] = ACTIONS(3692), - [aux_sym__val_number_token3] = ACTIONS(3692), - [aux_sym__val_number_token4] = ACTIONS(3694), - [aux_sym__val_number_token5] = ACTIONS(3694), - [aux_sym__val_number_token6] = ACTIONS(3694), - [anon_sym_0b] = ACTIONS(3696), - [anon_sym_0o] = ACTIONS(3698), - [anon_sym_0x] = ACTIONS(3698), - [sym_val_date] = ACTIONS(3700), - [anon_sym_DQUOTE] = ACTIONS(3702), - [sym__str_single_quotes] = ACTIONS(3704), - [sym__str_back_ticks] = ACTIONS(3704), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3706), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3708), - [anon_sym_err_GT] = ACTIONS(3620), - [anon_sym_out_GT] = ACTIONS(3620), - [anon_sym_e_GT] = ACTIONS(3620), - [anon_sym_o_GT] = ACTIONS(3620), - [anon_sym_err_PLUSout_GT] = ACTIONS(3620), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3620), - [anon_sym_o_PLUSe_GT] = ACTIONS(3620), - [anon_sym_e_PLUSo_GT] = ACTIONS(3620), - [anon_sym_err_GT_GT] = ACTIONS(3622), - [anon_sym_out_GT_GT] = ACTIONS(3622), - [anon_sym_e_GT_GT] = ACTIONS(3622), - [anon_sym_o_GT_GT] = ACTIONS(3622), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3622), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3622), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3622), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3622), - [aux_sym__unquoted_in_record_token1] = ACTIONS(3710), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3712), + [anon_sym_LBRACE] = ACTIONS(3683), + [anon_sym_DOT_DOT] = ACTIONS(3685), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3687), + [anon_sym_DOT_DOT_LT] = ACTIONS(3687), + [anon_sym_null] = ACTIONS(3689), + [anon_sym_true] = ACTIONS(3691), + [anon_sym_false] = ACTIONS(3691), + [aux_sym__val_number_decimal_token1] = ACTIONS(3693), + [aux_sym__val_number_decimal_token2] = ACTIONS(3695), + [aux_sym__val_number_decimal_token3] = ACTIONS(3697), + [aux_sym__val_number_decimal_token4] = ACTIONS(3699), + [aux_sym__val_number_token1] = ACTIONS(3701), + [aux_sym__val_number_token2] = ACTIONS(3701), + [aux_sym__val_number_token3] = ACTIONS(3701), + [aux_sym__val_number_token4] = ACTIONS(3703), + [aux_sym__val_number_token5] = ACTIONS(3703), + [aux_sym__val_number_token6] = ACTIONS(3703), + [anon_sym_0b] = ACTIONS(3705), + [anon_sym_0o] = ACTIONS(3707), + [anon_sym_0x] = ACTIONS(3707), + [sym_val_date] = ACTIONS(3709), + [anon_sym_DQUOTE] = ACTIONS(3711), + [sym__str_single_quotes] = ACTIONS(3713), + [sym__str_back_ticks] = ACTIONS(3713), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3715), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3717), + [anon_sym_err_GT] = ACTIONS(3629), + [anon_sym_out_GT] = ACTIONS(3629), + [anon_sym_e_GT] = ACTIONS(3629), + [anon_sym_o_GT] = ACTIONS(3629), + [anon_sym_err_PLUSout_GT] = ACTIONS(3629), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3629), + [anon_sym_o_PLUSe_GT] = ACTIONS(3629), + [anon_sym_e_PLUSo_GT] = ACTIONS(3629), + [anon_sym_err_GT_GT] = ACTIONS(3631), + [anon_sym_out_GT_GT] = ACTIONS(3631), + [anon_sym_e_GT_GT] = ACTIONS(3631), + [anon_sym_o_GT_GT] = ACTIONS(3631), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3631), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3631), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3631), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3631), + [aux_sym__unquoted_in_record_token1] = ACTIONS(3719), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(3721), }, [1184] = { [sym_expr_parenthesized] = STATE(5869), @@ -197679,54 +197679,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__unquoted_in_record_with_expr] = STATE(7351), [sym__unquoted_anonymous_prefix] = STATE(6968), [sym_comment] = STATE(1184), - [anon_sym_LBRACK] = ACTIONS(3082), - [anon_sym_LPAREN] = ACTIONS(3086), - [anon_sym_DOLLAR] = ACTIONS(3088), - [anon_sym_LBRACE] = ACTIONS(3090), - [anon_sym_DOT_DOT] = ACTIONS(3714), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3716), - [anon_sym_DOT_DOT_LT] = ACTIONS(3716), - [anon_sym_null] = ACTIONS(3718), - [anon_sym_true] = ACTIONS(3720), - [anon_sym_false] = ACTIONS(3720), - [aux_sym__val_number_decimal_token1] = ACTIONS(3722), - [aux_sym__val_number_decimal_token2] = ACTIONS(3724), - [aux_sym__val_number_decimal_token3] = ACTIONS(3726), - [aux_sym__val_number_decimal_token4] = ACTIONS(3728), - [aux_sym__val_number_token1] = ACTIONS(3108), - [aux_sym__val_number_token2] = ACTIONS(3108), - [aux_sym__val_number_token3] = ACTIONS(3108), - [aux_sym__val_number_token4] = ACTIONS(3730), - [aux_sym__val_number_token5] = ACTIONS(3730), - [aux_sym__val_number_token6] = ACTIONS(3730), - [anon_sym_0b] = ACTIONS(3112), - [anon_sym_0o] = ACTIONS(3114), - [anon_sym_0x] = ACTIONS(3114), - [sym_val_date] = ACTIONS(3732), - [anon_sym_DQUOTE] = ACTIONS(3118), - [sym__str_single_quotes] = ACTIONS(3120), - [sym__str_back_ticks] = ACTIONS(3120), + [anon_sym_LBRACK] = ACTIONS(3089), + [anon_sym_LPAREN] = ACTIONS(3093), + [anon_sym_DOLLAR] = ACTIONS(3095), + [anon_sym_LBRACE] = ACTIONS(3097), + [anon_sym_DOT_DOT] = ACTIONS(3723), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3725), + [anon_sym_DOT_DOT_LT] = ACTIONS(3725), + [anon_sym_null] = ACTIONS(3727), + [anon_sym_true] = ACTIONS(3729), + [anon_sym_false] = ACTIONS(3729), + [aux_sym__val_number_decimal_token1] = ACTIONS(3731), + [aux_sym__val_number_decimal_token2] = ACTIONS(3733), + [aux_sym__val_number_decimal_token3] = ACTIONS(3735), + [aux_sym__val_number_decimal_token4] = ACTIONS(3737), + [aux_sym__val_number_token1] = ACTIONS(3115), + [aux_sym__val_number_token2] = ACTIONS(3115), + [aux_sym__val_number_token3] = ACTIONS(3115), + [aux_sym__val_number_token4] = ACTIONS(3739), + [aux_sym__val_number_token5] = ACTIONS(3739), + [aux_sym__val_number_token6] = ACTIONS(3739), + [anon_sym_0b] = ACTIONS(3119), + [anon_sym_0o] = ACTIONS(3121), + [anon_sym_0x] = ACTIONS(3121), + [sym_val_date] = ACTIONS(3741), + [anon_sym_DQUOTE] = ACTIONS(3125), + [sym__str_single_quotes] = ACTIONS(3127), + [sym__str_back_ticks] = ACTIONS(3127), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2581), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2583), - [anon_sym_err_GT] = ACTIONS(3620), - [anon_sym_out_GT] = ACTIONS(3620), - [anon_sym_e_GT] = ACTIONS(3620), - [anon_sym_o_GT] = ACTIONS(3620), - [anon_sym_err_PLUSout_GT] = ACTIONS(3620), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3620), - [anon_sym_o_PLUSe_GT] = ACTIONS(3620), - [anon_sym_e_PLUSo_GT] = ACTIONS(3620), - [anon_sym_err_GT_GT] = ACTIONS(3622), - [anon_sym_out_GT_GT] = ACTIONS(3622), - [anon_sym_e_GT_GT] = ACTIONS(3622), - [anon_sym_o_GT_GT] = ACTIONS(3622), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3622), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3622), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3622), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3622), - [aux_sym__unquoted_in_record_token1] = ACTIONS(3734), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3124), + [anon_sym_err_GT] = ACTIONS(3629), + [anon_sym_out_GT] = ACTIONS(3629), + [anon_sym_e_GT] = ACTIONS(3629), + [anon_sym_o_GT] = ACTIONS(3629), + [anon_sym_err_PLUSout_GT] = ACTIONS(3629), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3629), + [anon_sym_o_PLUSe_GT] = ACTIONS(3629), + [anon_sym_e_PLUSo_GT] = ACTIONS(3629), + [anon_sym_err_GT_GT] = ACTIONS(3631), + [anon_sym_out_GT_GT] = ACTIONS(3631), + [anon_sym_e_GT_GT] = ACTIONS(3631), + [anon_sym_o_GT_GT] = ACTIONS(3631), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3631), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3631), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3631), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3631), + [aux_sym__unquoted_in_record_token1] = ACTIONS(3743), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(3131), }, [1185] = { [sym_comment] = STATE(1185), @@ -197835,54 +197835,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__unquoted_in_record_with_expr] = STATE(7360), [sym__unquoted_anonymous_prefix] = STATE(6968), [sym_comment] = STATE(1186), - [anon_sym_LBRACK] = ACTIONS(3082), - [anon_sym_LPAREN] = ACTIONS(3086), - [anon_sym_DOLLAR] = ACTIONS(3088), - [anon_sym_LBRACE] = ACTIONS(3090), - [anon_sym_DOT_DOT] = ACTIONS(3714), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3716), - [anon_sym_DOT_DOT_LT] = ACTIONS(3716), - [anon_sym_null] = ACTIONS(3718), - [anon_sym_true] = ACTIONS(3720), - [anon_sym_false] = ACTIONS(3720), - [aux_sym__val_number_decimal_token1] = ACTIONS(3722), - [aux_sym__val_number_decimal_token2] = ACTIONS(3724), - [aux_sym__val_number_decimal_token3] = ACTIONS(3726), - [aux_sym__val_number_decimal_token4] = ACTIONS(3728), - [aux_sym__val_number_token1] = ACTIONS(3108), - [aux_sym__val_number_token2] = ACTIONS(3108), - [aux_sym__val_number_token3] = ACTIONS(3108), - [aux_sym__val_number_token4] = ACTIONS(3730), - [aux_sym__val_number_token5] = ACTIONS(3730), - [aux_sym__val_number_token6] = ACTIONS(3730), - [anon_sym_0b] = ACTIONS(3112), - [anon_sym_0o] = ACTIONS(3114), - [anon_sym_0x] = ACTIONS(3114), - [sym_val_date] = ACTIONS(3732), - [anon_sym_DQUOTE] = ACTIONS(3118), - [sym__str_single_quotes] = ACTIONS(3120), - [sym__str_back_ticks] = ACTIONS(3120), + [anon_sym_LBRACK] = ACTIONS(3089), + [anon_sym_LPAREN] = ACTIONS(3093), + [anon_sym_DOLLAR] = ACTIONS(3095), + [anon_sym_LBRACE] = ACTIONS(3097), + [anon_sym_DOT_DOT] = ACTIONS(3723), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3725), + [anon_sym_DOT_DOT_LT] = ACTIONS(3725), + [anon_sym_null] = ACTIONS(3727), + [anon_sym_true] = ACTIONS(3729), + [anon_sym_false] = ACTIONS(3729), + [aux_sym__val_number_decimal_token1] = ACTIONS(3731), + [aux_sym__val_number_decimal_token2] = ACTIONS(3733), + [aux_sym__val_number_decimal_token3] = ACTIONS(3735), + [aux_sym__val_number_decimal_token4] = ACTIONS(3737), + [aux_sym__val_number_token1] = ACTIONS(3115), + [aux_sym__val_number_token2] = ACTIONS(3115), + [aux_sym__val_number_token3] = ACTIONS(3115), + [aux_sym__val_number_token4] = ACTIONS(3739), + [aux_sym__val_number_token5] = ACTIONS(3739), + [aux_sym__val_number_token6] = ACTIONS(3739), + [anon_sym_0b] = ACTIONS(3119), + [anon_sym_0o] = ACTIONS(3121), + [anon_sym_0x] = ACTIONS(3121), + [sym_val_date] = ACTIONS(3741), + [anon_sym_DQUOTE] = ACTIONS(3125), + [sym__str_single_quotes] = ACTIONS(3127), + [sym__str_back_ticks] = ACTIONS(3127), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2581), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2583), - [anon_sym_err_GT] = ACTIONS(3620), - [anon_sym_out_GT] = ACTIONS(3620), - [anon_sym_e_GT] = ACTIONS(3620), - [anon_sym_o_GT] = ACTIONS(3620), - [anon_sym_err_PLUSout_GT] = ACTIONS(3620), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3620), - [anon_sym_o_PLUSe_GT] = ACTIONS(3620), - [anon_sym_e_PLUSo_GT] = ACTIONS(3620), - [anon_sym_err_GT_GT] = ACTIONS(3622), - [anon_sym_out_GT_GT] = ACTIONS(3622), - [anon_sym_e_GT_GT] = ACTIONS(3622), - [anon_sym_o_GT_GT] = ACTIONS(3622), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3622), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3622), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3622), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3622), - [aux_sym__unquoted_in_record_token1] = ACTIONS(3734), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3124), + [anon_sym_err_GT] = ACTIONS(3629), + [anon_sym_out_GT] = ACTIONS(3629), + [anon_sym_e_GT] = ACTIONS(3629), + [anon_sym_o_GT] = ACTIONS(3629), + [anon_sym_err_PLUSout_GT] = ACTIONS(3629), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3629), + [anon_sym_o_PLUSe_GT] = ACTIONS(3629), + [anon_sym_e_PLUSo_GT] = ACTIONS(3629), + [anon_sym_err_GT_GT] = ACTIONS(3631), + [anon_sym_out_GT_GT] = ACTIONS(3631), + [anon_sym_e_GT_GT] = ACTIONS(3631), + [anon_sym_o_GT_GT] = ACTIONS(3631), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3631), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3631), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3631), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3631), + [aux_sym__unquoted_in_record_token1] = ACTIONS(3743), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(3131), }, [1187] = { [sym_comment] = STATE(1187), @@ -197991,54 +197991,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__unquoted_in_record_with_expr] = STATE(673), [sym__unquoted_anonymous_prefix] = STATE(7076), [sym_comment] = STATE(1188), - [anon_sym_LBRACK] = ACTIONS(3670), - [anon_sym_LPAREN] = ACTIONS(3672), + [anon_sym_LBRACK] = ACTIONS(3679), + [anon_sym_LPAREN] = ACTIONS(3681), [anon_sym_DOLLAR] = ACTIONS(1541), - [anon_sym_LBRACE] = ACTIONS(3674), - [anon_sym_DOT_DOT] = ACTIONS(3676), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3678), - [anon_sym_DOT_DOT_LT] = ACTIONS(3678), - [anon_sym_null] = ACTIONS(3680), - [anon_sym_true] = ACTIONS(3682), - [anon_sym_false] = ACTIONS(3682), - [aux_sym__val_number_decimal_token1] = ACTIONS(3684), - [aux_sym__val_number_decimal_token2] = ACTIONS(3686), - [aux_sym__val_number_decimal_token3] = ACTIONS(3688), - [aux_sym__val_number_decimal_token4] = ACTIONS(3690), - [aux_sym__val_number_token1] = ACTIONS(3692), - [aux_sym__val_number_token2] = ACTIONS(3692), - [aux_sym__val_number_token3] = ACTIONS(3692), - [aux_sym__val_number_token4] = ACTIONS(3694), - [aux_sym__val_number_token5] = ACTIONS(3694), - [aux_sym__val_number_token6] = ACTIONS(3694), - [anon_sym_0b] = ACTIONS(3696), - [anon_sym_0o] = ACTIONS(3698), - [anon_sym_0x] = ACTIONS(3698), - [sym_val_date] = ACTIONS(3700), - [anon_sym_DQUOTE] = ACTIONS(3702), - [sym__str_single_quotes] = ACTIONS(3704), - [sym__str_back_ticks] = ACTIONS(3704), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3706), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3708), - [anon_sym_err_GT] = ACTIONS(3620), - [anon_sym_out_GT] = ACTIONS(3620), - [anon_sym_e_GT] = ACTIONS(3620), - [anon_sym_o_GT] = ACTIONS(3620), - [anon_sym_err_PLUSout_GT] = ACTIONS(3620), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3620), - [anon_sym_o_PLUSe_GT] = ACTIONS(3620), - [anon_sym_e_PLUSo_GT] = ACTIONS(3620), - [anon_sym_err_GT_GT] = ACTIONS(3622), - [anon_sym_out_GT_GT] = ACTIONS(3622), - [anon_sym_e_GT_GT] = ACTIONS(3622), - [anon_sym_o_GT_GT] = ACTIONS(3622), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3622), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3622), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3622), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3622), - [aux_sym__unquoted_in_record_token1] = ACTIONS(3710), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3712), + [anon_sym_LBRACE] = ACTIONS(3683), + [anon_sym_DOT_DOT] = ACTIONS(3685), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3687), + [anon_sym_DOT_DOT_LT] = ACTIONS(3687), + [anon_sym_null] = ACTIONS(3689), + [anon_sym_true] = ACTIONS(3691), + [anon_sym_false] = ACTIONS(3691), + [aux_sym__val_number_decimal_token1] = ACTIONS(3693), + [aux_sym__val_number_decimal_token2] = ACTIONS(3695), + [aux_sym__val_number_decimal_token3] = ACTIONS(3697), + [aux_sym__val_number_decimal_token4] = ACTIONS(3699), + [aux_sym__val_number_token1] = ACTIONS(3701), + [aux_sym__val_number_token2] = ACTIONS(3701), + [aux_sym__val_number_token3] = ACTIONS(3701), + [aux_sym__val_number_token4] = ACTIONS(3703), + [aux_sym__val_number_token5] = ACTIONS(3703), + [aux_sym__val_number_token6] = ACTIONS(3703), + [anon_sym_0b] = ACTIONS(3705), + [anon_sym_0o] = ACTIONS(3707), + [anon_sym_0x] = ACTIONS(3707), + [sym_val_date] = ACTIONS(3709), + [anon_sym_DQUOTE] = ACTIONS(3711), + [sym__str_single_quotes] = ACTIONS(3713), + [sym__str_back_ticks] = ACTIONS(3713), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3715), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3717), + [anon_sym_err_GT] = ACTIONS(3629), + [anon_sym_out_GT] = ACTIONS(3629), + [anon_sym_e_GT] = ACTIONS(3629), + [anon_sym_o_GT] = ACTIONS(3629), + [anon_sym_err_PLUSout_GT] = ACTIONS(3629), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3629), + [anon_sym_o_PLUSe_GT] = ACTIONS(3629), + [anon_sym_e_PLUSo_GT] = ACTIONS(3629), + [anon_sym_err_GT_GT] = ACTIONS(3631), + [anon_sym_out_GT_GT] = ACTIONS(3631), + [anon_sym_e_GT_GT] = ACTIONS(3631), + [anon_sym_o_GT_GT] = ACTIONS(3631), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3631), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3631), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3631), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3631), + [aux_sym__unquoted_in_record_token1] = ACTIONS(3719), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(3721), }, [1189] = { [sym_expr_parenthesized] = STATE(478), @@ -198069,54 +198069,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__unquoted_in_record_with_expr] = STATE(677), [sym__unquoted_anonymous_prefix] = STATE(7076), [sym_comment] = STATE(1189), - [anon_sym_LBRACK] = ACTIONS(3670), - [anon_sym_LPAREN] = ACTIONS(3672), + [anon_sym_LBRACK] = ACTIONS(3679), + [anon_sym_LPAREN] = ACTIONS(3681), [anon_sym_DOLLAR] = ACTIONS(1541), - [anon_sym_LBRACE] = ACTIONS(3674), - [anon_sym_DOT_DOT] = ACTIONS(3676), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3678), - [anon_sym_DOT_DOT_LT] = ACTIONS(3678), - [anon_sym_null] = ACTIONS(3680), - [anon_sym_true] = ACTIONS(3682), - [anon_sym_false] = ACTIONS(3682), - [aux_sym__val_number_decimal_token1] = ACTIONS(3684), - [aux_sym__val_number_decimal_token2] = ACTIONS(3686), - [aux_sym__val_number_decimal_token3] = ACTIONS(3688), - [aux_sym__val_number_decimal_token4] = ACTIONS(3690), - [aux_sym__val_number_token1] = ACTIONS(3692), - [aux_sym__val_number_token2] = ACTIONS(3692), - [aux_sym__val_number_token3] = ACTIONS(3692), - [aux_sym__val_number_token4] = ACTIONS(3694), - [aux_sym__val_number_token5] = ACTIONS(3694), - [aux_sym__val_number_token6] = ACTIONS(3694), - [anon_sym_0b] = ACTIONS(3696), - [anon_sym_0o] = ACTIONS(3698), - [anon_sym_0x] = ACTIONS(3698), - [sym_val_date] = ACTIONS(3700), - [anon_sym_DQUOTE] = ACTIONS(3702), - [sym__str_single_quotes] = ACTIONS(3704), - [sym__str_back_ticks] = ACTIONS(3704), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3706), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3708), - [anon_sym_err_GT] = ACTIONS(3620), - [anon_sym_out_GT] = ACTIONS(3620), - [anon_sym_e_GT] = ACTIONS(3620), - [anon_sym_o_GT] = ACTIONS(3620), - [anon_sym_err_PLUSout_GT] = ACTIONS(3620), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3620), - [anon_sym_o_PLUSe_GT] = ACTIONS(3620), - [anon_sym_e_PLUSo_GT] = ACTIONS(3620), - [anon_sym_err_GT_GT] = ACTIONS(3622), - [anon_sym_out_GT_GT] = ACTIONS(3622), - [anon_sym_e_GT_GT] = ACTIONS(3622), - [anon_sym_o_GT_GT] = ACTIONS(3622), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3622), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3622), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3622), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3622), - [aux_sym__unquoted_in_record_token1] = ACTIONS(3710), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3712), + [anon_sym_LBRACE] = ACTIONS(3683), + [anon_sym_DOT_DOT] = ACTIONS(3685), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3687), + [anon_sym_DOT_DOT_LT] = ACTIONS(3687), + [anon_sym_null] = ACTIONS(3689), + [anon_sym_true] = ACTIONS(3691), + [anon_sym_false] = ACTIONS(3691), + [aux_sym__val_number_decimal_token1] = ACTIONS(3693), + [aux_sym__val_number_decimal_token2] = ACTIONS(3695), + [aux_sym__val_number_decimal_token3] = ACTIONS(3697), + [aux_sym__val_number_decimal_token4] = ACTIONS(3699), + [aux_sym__val_number_token1] = ACTIONS(3701), + [aux_sym__val_number_token2] = ACTIONS(3701), + [aux_sym__val_number_token3] = ACTIONS(3701), + [aux_sym__val_number_token4] = ACTIONS(3703), + [aux_sym__val_number_token5] = ACTIONS(3703), + [aux_sym__val_number_token6] = ACTIONS(3703), + [anon_sym_0b] = ACTIONS(3705), + [anon_sym_0o] = ACTIONS(3707), + [anon_sym_0x] = ACTIONS(3707), + [sym_val_date] = ACTIONS(3709), + [anon_sym_DQUOTE] = ACTIONS(3711), + [sym__str_single_quotes] = ACTIONS(3713), + [sym__str_back_ticks] = ACTIONS(3713), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3715), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3717), + [anon_sym_err_GT] = ACTIONS(3629), + [anon_sym_out_GT] = ACTIONS(3629), + [anon_sym_e_GT] = ACTIONS(3629), + [anon_sym_o_GT] = ACTIONS(3629), + [anon_sym_err_PLUSout_GT] = ACTIONS(3629), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3629), + [anon_sym_o_PLUSe_GT] = ACTIONS(3629), + [anon_sym_e_PLUSo_GT] = ACTIONS(3629), + [anon_sym_err_GT_GT] = ACTIONS(3631), + [anon_sym_out_GT_GT] = ACTIONS(3631), + [anon_sym_e_GT_GT] = ACTIONS(3631), + [anon_sym_o_GT_GT] = ACTIONS(3631), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3631), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3631), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3631), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3631), + [aux_sym__unquoted_in_record_token1] = ACTIONS(3719), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(3721), }, [1190] = { [sym_expr_parenthesized] = STATE(517), @@ -198147,54 +198147,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__unquoted_in_record_with_expr] = STATE(745), [sym__unquoted_anonymous_prefix] = STATE(6826), [sym_comment] = STATE(1190), - [anon_sym_LBRACK] = ACTIONS(3736), - [anon_sym_LPAREN] = ACTIONS(3738), - [anon_sym_DOLLAR] = ACTIONS(3740), - [anon_sym_LBRACE] = ACTIONS(3742), - [anon_sym_DOT_DOT] = ACTIONS(3744), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3746), - [anon_sym_DOT_DOT_LT] = ACTIONS(3746), - [anon_sym_null] = ACTIONS(3748), - [anon_sym_true] = ACTIONS(3750), - [anon_sym_false] = ACTIONS(3750), - [aux_sym__val_number_decimal_token1] = ACTIONS(3752), - [aux_sym__val_number_decimal_token2] = ACTIONS(3754), - [aux_sym__val_number_decimal_token3] = ACTIONS(3756), - [aux_sym__val_number_decimal_token4] = ACTIONS(3758), - [aux_sym__val_number_token1] = ACTIONS(3760), - [aux_sym__val_number_token2] = ACTIONS(3760), - [aux_sym__val_number_token3] = ACTIONS(3760), - [aux_sym__val_number_token4] = ACTIONS(3762), - [aux_sym__val_number_token5] = ACTIONS(3762), - [aux_sym__val_number_token6] = ACTIONS(3762), - [anon_sym_0b] = ACTIONS(3764), - [anon_sym_0o] = ACTIONS(3766), - [anon_sym_0x] = ACTIONS(3766), - [sym_val_date] = ACTIONS(3768), - [anon_sym_DQUOTE] = ACTIONS(3770), - [sym__str_single_quotes] = ACTIONS(3772), - [sym__str_back_ticks] = ACTIONS(3772), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3774), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3776), - [anon_sym_err_GT] = ACTIONS(3620), - [anon_sym_out_GT] = ACTIONS(3620), - [anon_sym_e_GT] = ACTIONS(3620), - [anon_sym_o_GT] = ACTIONS(3620), - [anon_sym_err_PLUSout_GT] = ACTIONS(3620), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3620), - [anon_sym_o_PLUSe_GT] = ACTIONS(3620), - [anon_sym_e_PLUSo_GT] = ACTIONS(3620), - [anon_sym_err_GT_GT] = ACTIONS(3622), - [anon_sym_out_GT_GT] = ACTIONS(3622), - [anon_sym_e_GT_GT] = ACTIONS(3622), - [anon_sym_o_GT_GT] = ACTIONS(3622), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3622), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3622), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3622), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3622), - [aux_sym__unquoted_in_record_token1] = ACTIONS(3778), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3780), + [anon_sym_LBRACK] = ACTIONS(3745), + [anon_sym_LPAREN] = ACTIONS(3747), + [anon_sym_DOLLAR] = ACTIONS(3749), + [anon_sym_LBRACE] = ACTIONS(3751), + [anon_sym_DOT_DOT] = ACTIONS(3753), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3755), + [anon_sym_DOT_DOT_LT] = ACTIONS(3755), + [anon_sym_null] = ACTIONS(3757), + [anon_sym_true] = ACTIONS(3759), + [anon_sym_false] = ACTIONS(3759), + [aux_sym__val_number_decimal_token1] = ACTIONS(3761), + [aux_sym__val_number_decimal_token2] = ACTIONS(3763), + [aux_sym__val_number_decimal_token3] = ACTIONS(3765), + [aux_sym__val_number_decimal_token4] = ACTIONS(3767), + [aux_sym__val_number_token1] = ACTIONS(3769), + [aux_sym__val_number_token2] = ACTIONS(3769), + [aux_sym__val_number_token3] = ACTIONS(3769), + [aux_sym__val_number_token4] = ACTIONS(3771), + [aux_sym__val_number_token5] = ACTIONS(3771), + [aux_sym__val_number_token6] = ACTIONS(3771), + [anon_sym_0b] = ACTIONS(3773), + [anon_sym_0o] = ACTIONS(3775), + [anon_sym_0x] = ACTIONS(3775), + [sym_val_date] = ACTIONS(3777), + [anon_sym_DQUOTE] = ACTIONS(3779), + [sym__str_single_quotes] = ACTIONS(3781), + [sym__str_back_ticks] = ACTIONS(3781), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3783), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3785), + [anon_sym_err_GT] = ACTIONS(3629), + [anon_sym_out_GT] = ACTIONS(3629), + [anon_sym_e_GT] = ACTIONS(3629), + [anon_sym_o_GT] = ACTIONS(3629), + [anon_sym_err_PLUSout_GT] = ACTIONS(3629), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3629), + [anon_sym_o_PLUSe_GT] = ACTIONS(3629), + [anon_sym_e_PLUSo_GT] = ACTIONS(3629), + [anon_sym_err_GT_GT] = ACTIONS(3631), + [anon_sym_out_GT_GT] = ACTIONS(3631), + [anon_sym_e_GT_GT] = ACTIONS(3631), + [anon_sym_o_GT_GT] = ACTIONS(3631), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3631), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3631), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3631), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3631), + [aux_sym__unquoted_in_record_token1] = ACTIONS(3787), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(3789), }, [1191] = { [sym_comment] = STATE(1191), @@ -198503,7 +198503,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT2] = ACTIONS(1667), [anon_sym_DOT_DOT_EQ2] = ACTIONS(1669), [anon_sym_DOT_DOT_LT2] = ACTIONS(1669), - [aux_sym__immediate_decimal_token2] = ACTIONS(3782), + [aux_sym__immediate_decimal_token2] = ACTIONS(3791), [sym_filesize_unit] = ACTIONS(1667), [sym_duration_unit] = ACTIONS(1669), [anon_sym_POUND] = ACTIONS(3), @@ -198615,54 +198615,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__unquoted_in_record_with_expr] = STATE(740), [sym__unquoted_anonymous_prefix] = STATE(6826), [sym_comment] = STATE(1196), - [anon_sym_LBRACK] = ACTIONS(3736), - [anon_sym_LPAREN] = ACTIONS(3738), - [anon_sym_DOLLAR] = ACTIONS(3740), - [anon_sym_LBRACE] = ACTIONS(3742), - [anon_sym_DOT_DOT] = ACTIONS(3744), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3746), - [anon_sym_DOT_DOT_LT] = ACTIONS(3746), - [anon_sym_null] = ACTIONS(3748), - [anon_sym_true] = ACTIONS(3750), - [anon_sym_false] = ACTIONS(3750), - [aux_sym__val_number_decimal_token1] = ACTIONS(3752), - [aux_sym__val_number_decimal_token2] = ACTIONS(3754), - [aux_sym__val_number_decimal_token3] = ACTIONS(3756), - [aux_sym__val_number_decimal_token4] = ACTIONS(3758), - [aux_sym__val_number_token1] = ACTIONS(3760), - [aux_sym__val_number_token2] = ACTIONS(3760), - [aux_sym__val_number_token3] = ACTIONS(3760), - [aux_sym__val_number_token4] = ACTIONS(3762), - [aux_sym__val_number_token5] = ACTIONS(3762), - [aux_sym__val_number_token6] = ACTIONS(3762), - [anon_sym_0b] = ACTIONS(3764), - [anon_sym_0o] = ACTIONS(3766), - [anon_sym_0x] = ACTIONS(3766), - [sym_val_date] = ACTIONS(3768), - [anon_sym_DQUOTE] = ACTIONS(3770), - [sym__str_single_quotes] = ACTIONS(3772), - [sym__str_back_ticks] = ACTIONS(3772), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3774), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3776), - [anon_sym_err_GT] = ACTIONS(3620), - [anon_sym_out_GT] = ACTIONS(3620), - [anon_sym_e_GT] = ACTIONS(3620), - [anon_sym_o_GT] = ACTIONS(3620), - [anon_sym_err_PLUSout_GT] = ACTIONS(3620), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3620), - [anon_sym_o_PLUSe_GT] = ACTIONS(3620), - [anon_sym_e_PLUSo_GT] = ACTIONS(3620), - [anon_sym_err_GT_GT] = ACTIONS(3622), - [anon_sym_out_GT_GT] = ACTIONS(3622), - [anon_sym_e_GT_GT] = ACTIONS(3622), - [anon_sym_o_GT_GT] = ACTIONS(3622), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3622), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3622), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3622), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3622), - [aux_sym__unquoted_in_record_token1] = ACTIONS(3778), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3780), + [anon_sym_LBRACK] = ACTIONS(3745), + [anon_sym_LPAREN] = ACTIONS(3747), + [anon_sym_DOLLAR] = ACTIONS(3749), + [anon_sym_LBRACE] = ACTIONS(3751), + [anon_sym_DOT_DOT] = ACTIONS(3753), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3755), + [anon_sym_DOT_DOT_LT] = ACTIONS(3755), + [anon_sym_null] = ACTIONS(3757), + [anon_sym_true] = ACTIONS(3759), + [anon_sym_false] = ACTIONS(3759), + [aux_sym__val_number_decimal_token1] = ACTIONS(3761), + [aux_sym__val_number_decimal_token2] = ACTIONS(3763), + [aux_sym__val_number_decimal_token3] = ACTIONS(3765), + [aux_sym__val_number_decimal_token4] = ACTIONS(3767), + [aux_sym__val_number_token1] = ACTIONS(3769), + [aux_sym__val_number_token2] = ACTIONS(3769), + [aux_sym__val_number_token3] = ACTIONS(3769), + [aux_sym__val_number_token4] = ACTIONS(3771), + [aux_sym__val_number_token5] = ACTIONS(3771), + [aux_sym__val_number_token6] = ACTIONS(3771), + [anon_sym_0b] = ACTIONS(3773), + [anon_sym_0o] = ACTIONS(3775), + [anon_sym_0x] = ACTIONS(3775), + [sym_val_date] = ACTIONS(3777), + [anon_sym_DQUOTE] = ACTIONS(3779), + [sym__str_single_quotes] = ACTIONS(3781), + [sym__str_back_ticks] = ACTIONS(3781), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3783), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3785), + [anon_sym_err_GT] = ACTIONS(3629), + [anon_sym_out_GT] = ACTIONS(3629), + [anon_sym_e_GT] = ACTIONS(3629), + [anon_sym_o_GT] = ACTIONS(3629), + [anon_sym_err_PLUSout_GT] = ACTIONS(3629), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3629), + [anon_sym_o_PLUSe_GT] = ACTIONS(3629), + [anon_sym_e_PLUSo_GT] = ACTIONS(3629), + [anon_sym_err_GT_GT] = ACTIONS(3631), + [anon_sym_out_GT_GT] = ACTIONS(3631), + [anon_sym_e_GT_GT] = ACTIONS(3631), + [anon_sym_o_GT_GT] = ACTIONS(3631), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3631), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3631), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3631), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3631), + [aux_sym__unquoted_in_record_token1] = ACTIONS(3787), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(3789), }, [1197] = { [sym_comment] = STATE(1197), @@ -198814,8 +198814,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT2] = ACTIONS(1595), [anon_sym_DOT_DOT_EQ2] = ACTIONS(1597), [anon_sym_DOT_DOT_LT2] = ACTIONS(1597), - [aux_sym__immediate_decimal_token1] = ACTIONS(3784), - [aux_sym__immediate_decimal_token2] = ACTIONS(3786), + [aux_sym__immediate_decimal_token1] = ACTIONS(3793), + [aux_sym__immediate_decimal_token2] = ACTIONS(3795), [sym_filesize_unit] = ACTIONS(1595), [sym_duration_unit] = ACTIONS(1597), [anon_sym_POUND] = ACTIONS(3), @@ -198927,54 +198927,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__unquoted_in_record_with_expr] = STATE(742), [sym__unquoted_anonymous_prefix] = STATE(6826), [sym_comment] = STATE(1200), - [anon_sym_LBRACK] = ACTIONS(3736), - [anon_sym_LPAREN] = ACTIONS(3738), - [anon_sym_DOLLAR] = ACTIONS(3740), - [anon_sym_LBRACE] = ACTIONS(3742), - [anon_sym_DOT_DOT] = ACTIONS(3744), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3746), - [anon_sym_DOT_DOT_LT] = ACTIONS(3746), - [anon_sym_null] = ACTIONS(3748), - [anon_sym_true] = ACTIONS(3750), - [anon_sym_false] = ACTIONS(3750), - [aux_sym__val_number_decimal_token1] = ACTIONS(3752), - [aux_sym__val_number_decimal_token2] = ACTIONS(3754), - [aux_sym__val_number_decimal_token3] = ACTIONS(3756), - [aux_sym__val_number_decimal_token4] = ACTIONS(3758), - [aux_sym__val_number_token1] = ACTIONS(3760), - [aux_sym__val_number_token2] = ACTIONS(3760), - [aux_sym__val_number_token3] = ACTIONS(3760), - [aux_sym__val_number_token4] = ACTIONS(3762), - [aux_sym__val_number_token5] = ACTIONS(3762), - [aux_sym__val_number_token6] = ACTIONS(3762), - [anon_sym_0b] = ACTIONS(3764), - [anon_sym_0o] = ACTIONS(3766), - [anon_sym_0x] = ACTIONS(3766), - [sym_val_date] = ACTIONS(3768), - [anon_sym_DQUOTE] = ACTIONS(3770), - [sym__str_single_quotes] = ACTIONS(3772), - [sym__str_back_ticks] = ACTIONS(3772), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3774), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3776), - [anon_sym_err_GT] = ACTIONS(3620), - [anon_sym_out_GT] = ACTIONS(3620), - [anon_sym_e_GT] = ACTIONS(3620), - [anon_sym_o_GT] = ACTIONS(3620), - [anon_sym_err_PLUSout_GT] = ACTIONS(3620), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3620), - [anon_sym_o_PLUSe_GT] = ACTIONS(3620), - [anon_sym_e_PLUSo_GT] = ACTIONS(3620), - [anon_sym_err_GT_GT] = ACTIONS(3622), - [anon_sym_out_GT_GT] = ACTIONS(3622), - [anon_sym_e_GT_GT] = ACTIONS(3622), - [anon_sym_o_GT_GT] = ACTIONS(3622), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3622), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3622), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3622), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3622), - [aux_sym__unquoted_in_record_token1] = ACTIONS(3778), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3780), + [anon_sym_LBRACK] = ACTIONS(3745), + [anon_sym_LPAREN] = ACTIONS(3747), + [anon_sym_DOLLAR] = ACTIONS(3749), + [anon_sym_LBRACE] = ACTIONS(3751), + [anon_sym_DOT_DOT] = ACTIONS(3753), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3755), + [anon_sym_DOT_DOT_LT] = ACTIONS(3755), + [anon_sym_null] = ACTIONS(3757), + [anon_sym_true] = ACTIONS(3759), + [anon_sym_false] = ACTIONS(3759), + [aux_sym__val_number_decimal_token1] = ACTIONS(3761), + [aux_sym__val_number_decimal_token2] = ACTIONS(3763), + [aux_sym__val_number_decimal_token3] = ACTIONS(3765), + [aux_sym__val_number_decimal_token4] = ACTIONS(3767), + [aux_sym__val_number_token1] = ACTIONS(3769), + [aux_sym__val_number_token2] = ACTIONS(3769), + [aux_sym__val_number_token3] = ACTIONS(3769), + [aux_sym__val_number_token4] = ACTIONS(3771), + [aux_sym__val_number_token5] = ACTIONS(3771), + [aux_sym__val_number_token6] = ACTIONS(3771), + [anon_sym_0b] = ACTIONS(3773), + [anon_sym_0o] = ACTIONS(3775), + [anon_sym_0x] = ACTIONS(3775), + [sym_val_date] = ACTIONS(3777), + [anon_sym_DQUOTE] = ACTIONS(3779), + [sym__str_single_quotes] = ACTIONS(3781), + [sym__str_back_ticks] = ACTIONS(3781), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3783), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3785), + [anon_sym_err_GT] = ACTIONS(3629), + [anon_sym_out_GT] = ACTIONS(3629), + [anon_sym_e_GT] = ACTIONS(3629), + [anon_sym_o_GT] = ACTIONS(3629), + [anon_sym_err_PLUSout_GT] = ACTIONS(3629), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3629), + [anon_sym_o_PLUSe_GT] = ACTIONS(3629), + [anon_sym_e_PLUSo_GT] = ACTIONS(3629), + [anon_sym_err_GT_GT] = ACTIONS(3631), + [anon_sym_out_GT_GT] = ACTIONS(3631), + [anon_sym_e_GT_GT] = ACTIONS(3631), + [anon_sym_o_GT_GT] = ACTIONS(3631), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3631), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3631), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3631), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3631), + [aux_sym__unquoted_in_record_token1] = ACTIONS(3787), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(3789), }, [1201] = { [sym_comment] = STATE(1201), @@ -199056,35 +199056,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [1202] = { [sym_comment] = STATE(1202), - [anon_sym_STAR_STAR] = ACTIONS(3058), - [anon_sym_PLUS_PLUS] = ACTIONS(3058), - [anon_sym_STAR] = ACTIONS(3060), - [anon_sym_SLASH] = ACTIONS(3060), - [anon_sym_mod] = ACTIONS(3058), - [anon_sym_SLASH_SLASH] = ACTIONS(3058), - [anon_sym_PLUS] = ACTIONS(3060), - [anon_sym_DASH] = ACTIONS(3058), - [anon_sym_bit_DASHshl] = ACTIONS(3058), - [anon_sym_bit_DASHshr] = ACTIONS(3058), - [anon_sym_EQ_TILDE] = ACTIONS(3058), - [anon_sym_BANG_TILDE] = ACTIONS(3058), - [anon_sym_bit_DASHand] = ACTIONS(3058), - [anon_sym_bit_DASHxor] = ACTIONS(3058), - [anon_sym_bit_DASHor] = ACTIONS(3058), - [anon_sym_and] = ACTIONS(3058), - [anon_sym_xor] = ACTIONS(3058), - [anon_sym_or] = ACTIONS(3058), - [anon_sym_in] = ACTIONS(3058), - [anon_sym_not_DASHin] = ACTIONS(3058), - [anon_sym_starts_DASHwith] = ACTIONS(3058), - [anon_sym_ends_DASHwith] = ACTIONS(3058), - [anon_sym_EQ_EQ] = ACTIONS(3058), - [anon_sym_BANG_EQ] = ACTIONS(3058), - [anon_sym_LT] = ACTIONS(3060), - [anon_sym_LT_EQ] = ACTIONS(3058), - [anon_sym_GT] = ACTIONS(3060), - [anon_sym_GT_EQ] = ACTIONS(3058), - [aux_sym_cmd_identifier_token41] = ACTIONS(3062), + [anon_sym_STAR_STAR] = ACTIONS(3065), + [anon_sym_PLUS_PLUS] = ACTIONS(3065), + [anon_sym_STAR] = ACTIONS(3067), + [anon_sym_SLASH] = ACTIONS(3067), + [anon_sym_mod] = ACTIONS(3065), + [anon_sym_SLASH_SLASH] = ACTIONS(3065), + [anon_sym_PLUS] = ACTIONS(3067), + [anon_sym_DASH] = ACTIONS(3065), + [anon_sym_bit_DASHshl] = ACTIONS(3065), + [anon_sym_bit_DASHshr] = ACTIONS(3065), + [anon_sym_EQ_TILDE] = ACTIONS(3065), + [anon_sym_BANG_TILDE] = ACTIONS(3065), + [anon_sym_bit_DASHand] = ACTIONS(3065), + [anon_sym_bit_DASHxor] = ACTIONS(3065), + [anon_sym_bit_DASHor] = ACTIONS(3065), + [anon_sym_and] = ACTIONS(3065), + [anon_sym_xor] = ACTIONS(3065), + [anon_sym_or] = ACTIONS(3065), + [anon_sym_in] = ACTIONS(3065), + [anon_sym_not_DASHin] = ACTIONS(3065), + [anon_sym_starts_DASHwith] = ACTIONS(3065), + [anon_sym_ends_DASHwith] = ACTIONS(3065), + [anon_sym_EQ_EQ] = ACTIONS(3065), + [anon_sym_BANG_EQ] = ACTIONS(3065), + [anon_sym_LT] = ACTIONS(3067), + [anon_sym_LT_EQ] = ACTIONS(3065), + [anon_sym_GT] = ACTIONS(3067), + [anon_sym_GT_EQ] = ACTIONS(3065), + [aux_sym_cmd_identifier_token41] = ACTIONS(3069), [sym__newline] = ACTIONS(1681), [anon_sym_SEMI] = ACTIONS(1681), [anon_sym_PIPE] = ACTIONS(1681), @@ -199125,11 +199125,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bit_DASHand2] = ACTIONS(1681), [anon_sym_bit_DASHxor2] = ACTIONS(1681), [anon_sym_bit_DASHor2] = ACTIONS(1681), - [anon_sym_DOT_DOT2] = ACTIONS(3024), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(3026), - [anon_sym_DOT_DOT_LT2] = ACTIONS(3026), - [sym_filesize_unit] = ACTIONS(3788), - [sym_duration_unit] = ACTIONS(3790), + [anon_sym_DOT_DOT2] = ACTIONS(3031), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(3033), + [anon_sym_DOT_DOT_LT2] = ACTIONS(3033), + [sym_filesize_unit] = ACTIONS(3797), + [sym_duration_unit] = ACTIONS(3799), [anon_sym_POUND] = ACTIONS(3), }, [1203] = { @@ -199317,87 +199317,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__unquoted_in_record_with_expr] = STATE(7231), [sym__unquoted_anonymous_prefix] = STATE(6968), [sym_comment] = STATE(1205), - [anon_sym_LBRACK] = ACTIONS(3082), - [anon_sym_LPAREN] = ACTIONS(3086), - [anon_sym_DOLLAR] = ACTIONS(3088), - [anon_sym_LBRACE] = ACTIONS(3090), - [anon_sym_DOT_DOT] = ACTIONS(3714), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3716), - [anon_sym_DOT_DOT_LT] = ACTIONS(3716), - [anon_sym_null] = ACTIONS(3718), - [anon_sym_true] = ACTIONS(3720), - [anon_sym_false] = ACTIONS(3720), - [aux_sym__val_number_decimal_token1] = ACTIONS(3722), - [aux_sym__val_number_decimal_token2] = ACTIONS(3724), - [aux_sym__val_number_decimal_token3] = ACTIONS(3726), - [aux_sym__val_number_decimal_token4] = ACTIONS(3728), - [aux_sym__val_number_token1] = ACTIONS(3108), - [aux_sym__val_number_token2] = ACTIONS(3108), - [aux_sym__val_number_token3] = ACTIONS(3108), - [aux_sym__val_number_token4] = ACTIONS(3730), - [aux_sym__val_number_token5] = ACTIONS(3730), - [aux_sym__val_number_token6] = ACTIONS(3730), - [anon_sym_0b] = ACTIONS(3112), - [anon_sym_0o] = ACTIONS(3114), - [anon_sym_0x] = ACTIONS(3114), - [sym_val_date] = ACTIONS(3732), - [anon_sym_DQUOTE] = ACTIONS(3118), - [sym__str_single_quotes] = ACTIONS(3120), - [sym__str_back_ticks] = ACTIONS(3120), + [anon_sym_LBRACK] = ACTIONS(3089), + [anon_sym_LPAREN] = ACTIONS(3093), + [anon_sym_DOLLAR] = ACTIONS(3095), + [anon_sym_LBRACE] = ACTIONS(3097), + [anon_sym_DOT_DOT] = ACTIONS(3723), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3725), + [anon_sym_DOT_DOT_LT] = ACTIONS(3725), + [anon_sym_null] = ACTIONS(3727), + [anon_sym_true] = ACTIONS(3729), + [anon_sym_false] = ACTIONS(3729), + [aux_sym__val_number_decimal_token1] = ACTIONS(3731), + [aux_sym__val_number_decimal_token2] = ACTIONS(3733), + [aux_sym__val_number_decimal_token3] = ACTIONS(3735), + [aux_sym__val_number_decimal_token4] = ACTIONS(3737), + [aux_sym__val_number_token1] = ACTIONS(3115), + [aux_sym__val_number_token2] = ACTIONS(3115), + [aux_sym__val_number_token3] = ACTIONS(3115), + [aux_sym__val_number_token4] = ACTIONS(3739), + [aux_sym__val_number_token5] = ACTIONS(3739), + [aux_sym__val_number_token6] = ACTIONS(3739), + [anon_sym_0b] = ACTIONS(3119), + [anon_sym_0o] = ACTIONS(3121), + [anon_sym_0x] = ACTIONS(3121), + [sym_val_date] = ACTIONS(3741), + [anon_sym_DQUOTE] = ACTIONS(3125), + [sym__str_single_quotes] = ACTIONS(3127), + [sym__str_back_ticks] = ACTIONS(3127), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2581), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2583), - [anon_sym_err_GT] = ACTIONS(3620), - [anon_sym_out_GT] = ACTIONS(3620), - [anon_sym_e_GT] = ACTIONS(3620), - [anon_sym_o_GT] = ACTIONS(3620), - [anon_sym_err_PLUSout_GT] = ACTIONS(3620), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3620), - [anon_sym_o_PLUSe_GT] = ACTIONS(3620), - [anon_sym_e_PLUSo_GT] = ACTIONS(3620), - [anon_sym_err_GT_GT] = ACTIONS(3622), - [anon_sym_out_GT_GT] = ACTIONS(3622), - [anon_sym_e_GT_GT] = ACTIONS(3622), - [anon_sym_o_GT_GT] = ACTIONS(3622), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3622), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3622), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3622), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3622), - [aux_sym__unquoted_in_record_token1] = ACTIONS(3734), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3124), + [anon_sym_err_GT] = ACTIONS(3629), + [anon_sym_out_GT] = ACTIONS(3629), + [anon_sym_e_GT] = ACTIONS(3629), + [anon_sym_o_GT] = ACTIONS(3629), + [anon_sym_err_PLUSout_GT] = ACTIONS(3629), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3629), + [anon_sym_o_PLUSe_GT] = ACTIONS(3629), + [anon_sym_e_PLUSo_GT] = ACTIONS(3629), + [anon_sym_err_GT_GT] = ACTIONS(3631), + [anon_sym_out_GT_GT] = ACTIONS(3631), + [anon_sym_e_GT_GT] = ACTIONS(3631), + [anon_sym_o_GT_GT] = ACTIONS(3631), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3631), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3631), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3631), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3631), + [aux_sym__unquoted_in_record_token1] = ACTIONS(3743), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(3131), }, [1206] = { [sym_comment] = STATE(1206), [ts_builtin_sym_end] = ACTIONS(1693), - [anon_sym_STAR_STAR] = ACTIONS(3042), - [anon_sym_PLUS_PLUS] = ACTIONS(3042), - [anon_sym_STAR] = ACTIONS(3044), - [anon_sym_SLASH] = ACTIONS(3044), - [anon_sym_mod] = ACTIONS(3042), - [anon_sym_SLASH_SLASH] = ACTIONS(3042), - [anon_sym_PLUS] = ACTIONS(3044), - [anon_sym_DASH] = ACTIONS(3042), - [anon_sym_bit_DASHshl] = ACTIONS(3042), - [anon_sym_bit_DASHshr] = ACTIONS(3042), - [anon_sym_EQ_TILDE] = ACTIONS(3042), - [anon_sym_BANG_TILDE] = ACTIONS(3042), - [anon_sym_bit_DASHand] = ACTIONS(3042), - [anon_sym_bit_DASHxor] = ACTIONS(3042), - [anon_sym_bit_DASHor] = ACTIONS(3042), - [anon_sym_and] = ACTIONS(3042), - [anon_sym_xor] = ACTIONS(3042), - [anon_sym_or] = ACTIONS(3042), - [anon_sym_in] = ACTIONS(3042), - [anon_sym_not_DASHin] = ACTIONS(3042), - [anon_sym_starts_DASHwith] = ACTIONS(3042), - [anon_sym_ends_DASHwith] = ACTIONS(3042), - [anon_sym_EQ_EQ] = ACTIONS(3042), - [anon_sym_BANG_EQ] = ACTIONS(3042), - [anon_sym_LT] = ACTIONS(3044), - [anon_sym_LT_EQ] = ACTIONS(3042), - [anon_sym_GT] = ACTIONS(3044), - [anon_sym_GT_EQ] = ACTIONS(3042), - [aux_sym_cmd_identifier_token41] = ACTIONS(3046), + [anon_sym_STAR_STAR] = ACTIONS(3049), + [anon_sym_PLUS_PLUS] = ACTIONS(3049), + [anon_sym_STAR] = ACTIONS(3051), + [anon_sym_SLASH] = ACTIONS(3051), + [anon_sym_mod] = ACTIONS(3049), + [anon_sym_SLASH_SLASH] = ACTIONS(3049), + [anon_sym_PLUS] = ACTIONS(3051), + [anon_sym_DASH] = ACTIONS(3049), + [anon_sym_bit_DASHshl] = ACTIONS(3049), + [anon_sym_bit_DASHshr] = ACTIONS(3049), + [anon_sym_EQ_TILDE] = ACTIONS(3049), + [anon_sym_BANG_TILDE] = ACTIONS(3049), + [anon_sym_bit_DASHand] = ACTIONS(3049), + [anon_sym_bit_DASHxor] = ACTIONS(3049), + [anon_sym_bit_DASHor] = ACTIONS(3049), + [anon_sym_and] = ACTIONS(3049), + [anon_sym_xor] = ACTIONS(3049), + [anon_sym_or] = ACTIONS(3049), + [anon_sym_in] = ACTIONS(3049), + [anon_sym_not_DASHin] = ACTIONS(3049), + [anon_sym_starts_DASHwith] = ACTIONS(3049), + [anon_sym_ends_DASHwith] = ACTIONS(3049), + [anon_sym_EQ_EQ] = ACTIONS(3049), + [anon_sym_BANG_EQ] = ACTIONS(3049), + [anon_sym_LT] = ACTIONS(3051), + [anon_sym_LT_EQ] = ACTIONS(3049), + [anon_sym_GT] = ACTIONS(3051), + [anon_sym_GT_EQ] = ACTIONS(3049), + [aux_sym_cmd_identifier_token41] = ACTIONS(3053), [sym__newline] = ACTIONS(1681), [anon_sym_SEMI] = ACTIONS(1681), [anon_sym_PIPE] = ACTIONS(1681), @@ -199437,11 +199437,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bit_DASHand2] = ACTIONS(1681), [anon_sym_bit_DASHxor2] = ACTIONS(1681), [anon_sym_bit_DASHor2] = ACTIONS(1681), - [anon_sym_DOT_DOT2] = ACTIONS(3048), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(3050), - [anon_sym_DOT_DOT_LT2] = ACTIONS(3050), - [sym_filesize_unit] = ACTIONS(3792), - [sym_duration_unit] = ACTIONS(3794), + [anon_sym_DOT_DOT2] = ACTIONS(3055), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(3057), + [anon_sym_DOT_DOT_LT2] = ACTIONS(3057), + [sym_filesize_unit] = ACTIONS(3801), + [sym_duration_unit] = ACTIONS(3803), [anon_sym_POUND] = ACTIONS(3), }, [1207] = { @@ -199517,42 +199517,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT2] = ACTIONS(1587), [anon_sym_DOT_DOT_EQ2] = ACTIONS(1589), [anon_sym_DOT_DOT_LT2] = ACTIONS(1589), - [aux_sym__immediate_decimal_token2] = ACTIONS(3658), + [aux_sym__immediate_decimal_token2] = ACTIONS(3667), [sym_filesize_unit] = ACTIONS(1587), [sym_duration_unit] = ACTIONS(1589), [anon_sym_POUND] = ACTIONS(3), }, [1208] = { [sym_comment] = STATE(1208), - [anon_sym_STAR_STAR] = ACTIONS(3058), - [anon_sym_PLUS_PLUS] = ACTIONS(3058), - [anon_sym_STAR] = ACTIONS(3060), - [anon_sym_SLASH] = ACTIONS(3060), - [anon_sym_mod] = ACTIONS(3058), - [anon_sym_SLASH_SLASH] = ACTIONS(3058), - [anon_sym_PLUS] = ACTIONS(3060), - [anon_sym_DASH] = ACTIONS(3058), - [anon_sym_bit_DASHshl] = ACTIONS(3058), - [anon_sym_bit_DASHshr] = ACTIONS(3058), - [anon_sym_EQ_TILDE] = ACTIONS(3058), - [anon_sym_BANG_TILDE] = ACTIONS(3058), - [anon_sym_bit_DASHand] = ACTIONS(3058), - [anon_sym_bit_DASHxor] = ACTIONS(3058), - [anon_sym_bit_DASHor] = ACTIONS(3058), - [anon_sym_and] = ACTIONS(3058), - [anon_sym_xor] = ACTIONS(3058), - [anon_sym_or] = ACTIONS(3058), - [anon_sym_in] = ACTIONS(3058), - [anon_sym_not_DASHin] = ACTIONS(3058), - [anon_sym_starts_DASHwith] = ACTIONS(3058), - [anon_sym_ends_DASHwith] = ACTIONS(3058), - [anon_sym_EQ_EQ] = ACTIONS(3058), - [anon_sym_BANG_EQ] = ACTIONS(3058), - [anon_sym_LT] = ACTIONS(3060), - [anon_sym_LT_EQ] = ACTIONS(3058), - [anon_sym_GT] = ACTIONS(3060), - [anon_sym_GT_EQ] = ACTIONS(3058), - [aux_sym_cmd_identifier_token41] = ACTIONS(3062), + [anon_sym_STAR_STAR] = ACTIONS(3065), + [anon_sym_PLUS_PLUS] = ACTIONS(3065), + [anon_sym_STAR] = ACTIONS(3067), + [anon_sym_SLASH] = ACTIONS(3067), + [anon_sym_mod] = ACTIONS(3065), + [anon_sym_SLASH_SLASH] = ACTIONS(3065), + [anon_sym_PLUS] = ACTIONS(3067), + [anon_sym_DASH] = ACTIONS(3065), + [anon_sym_bit_DASHshl] = ACTIONS(3065), + [anon_sym_bit_DASHshr] = ACTIONS(3065), + [anon_sym_EQ_TILDE] = ACTIONS(3065), + [anon_sym_BANG_TILDE] = ACTIONS(3065), + [anon_sym_bit_DASHand] = ACTIONS(3065), + [anon_sym_bit_DASHxor] = ACTIONS(3065), + [anon_sym_bit_DASHor] = ACTIONS(3065), + [anon_sym_and] = ACTIONS(3065), + [anon_sym_xor] = ACTIONS(3065), + [anon_sym_or] = ACTIONS(3065), + [anon_sym_in] = ACTIONS(3065), + [anon_sym_not_DASHin] = ACTIONS(3065), + [anon_sym_starts_DASHwith] = ACTIONS(3065), + [anon_sym_ends_DASHwith] = ACTIONS(3065), + [anon_sym_EQ_EQ] = ACTIONS(3065), + [anon_sym_BANG_EQ] = ACTIONS(3065), + [anon_sym_LT] = ACTIONS(3067), + [anon_sym_LT_EQ] = ACTIONS(3065), + [anon_sym_GT] = ACTIONS(3067), + [anon_sym_GT_EQ] = ACTIONS(3065), + [aux_sym_cmd_identifier_token41] = ACTIONS(3069), [sym__newline] = ACTIONS(1681), [anon_sym_SEMI] = ACTIONS(1681), [anon_sym_PIPE] = ACTIONS(1681), @@ -199593,11 +199593,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bit_DASHand2] = ACTIONS(1681), [anon_sym_bit_DASHxor2] = ACTIONS(1681), [anon_sym_bit_DASHor2] = ACTIONS(1681), - [anon_sym_DOT_DOT2] = ACTIONS(3024), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(3026), - [anon_sym_DOT_DOT_LT2] = ACTIONS(3026), - [sym_filesize_unit] = ACTIONS(3796), - [sym_duration_unit] = ACTIONS(3798), + [anon_sym_DOT_DOT2] = ACTIONS(3031), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(3033), + [anon_sym_DOT_DOT_LT2] = ACTIONS(3033), + [sym_filesize_unit] = ACTIONS(3805), + [sym_duration_unit] = ACTIONS(3807), [anon_sym_POUND] = ACTIONS(3), }, [1209] = { @@ -199672,7 +199672,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT2] = ACTIONS(1667), [anon_sym_DOT_DOT_EQ2] = ACTIONS(1669), [anon_sym_DOT_DOT_LT2] = ACTIONS(1669), - [aux_sym__immediate_decimal_token2] = ACTIONS(3800), + [aux_sym__immediate_decimal_token2] = ACTIONS(3809), [sym_filesize_unit] = ACTIONS(1667), [sym_duration_unit] = ACTIONS(1669), [anon_sym_POUND] = ACTIONS(3), @@ -199706,31 +199706,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__unquoted_anonymous_prefix] = STATE(7445), [sym_comment] = STATE(1210), [aux_sym_ctrl_match_repeat1] = STATE(1225), - [anon_sym_LBRACK] = ACTIONS(3536), + [anon_sym_LBRACK] = ACTIONS(3545), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(3538), - [anon_sym_LBRACE] = ACTIONS(3540), - [anon_sym__] = ACTIONS(3544), - [anon_sym_DOT_DOT] = ACTIONS(3546), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3548), - [anon_sym_DOT_DOT_LT] = ACTIONS(3548), - [anon_sym_null] = ACTIONS(3550), - [anon_sym_true] = ACTIONS(3552), - [anon_sym_false] = ACTIONS(3552), - [aux_sym__val_number_decimal_token1] = ACTIONS(3554), - [aux_sym__val_number_decimal_token2] = ACTIONS(3556), - [aux_sym__val_number_decimal_token3] = ACTIONS(3558), - [aux_sym__val_number_decimal_token4] = ACTIONS(3560), + [anon_sym_DOLLAR] = ACTIONS(3547), + [anon_sym_LBRACE] = ACTIONS(3549), + [anon_sym__] = ACTIONS(3553), + [anon_sym_DOT_DOT] = ACTIONS(3555), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3557), + [anon_sym_DOT_DOT_LT] = ACTIONS(3557), + [anon_sym_null] = ACTIONS(3559), + [anon_sym_true] = ACTIONS(3561), + [anon_sym_false] = ACTIONS(3561), + [aux_sym__val_number_decimal_token1] = ACTIONS(3563), + [aux_sym__val_number_decimal_token2] = ACTIONS(3565), + [aux_sym__val_number_decimal_token3] = ACTIONS(3567), + [aux_sym__val_number_decimal_token4] = ACTIONS(3569), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3562), - [aux_sym__val_number_token5] = ACTIONS(3562), - [aux_sym__val_number_token6] = ACTIONS(3562), + [aux_sym__val_number_token4] = ACTIONS(3571), + [aux_sym__val_number_token5] = ACTIONS(3571), + [aux_sym__val_number_token6] = ACTIONS(3571), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3564), + [sym_val_date] = ACTIONS(3573), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), @@ -199750,7 +199750,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3212), + [aux_sym_unquoted_token1] = ACTIONS(3219), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, @@ -199782,35 +199782,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = STATE(1211), [aux_sym_shebang_repeat1] = STATE(6517), [aux_sym__match_pattern_list_repeat1] = STATE(1289), - [sym__newline] = ACTIONS(3802), - [anon_sym_LBRACK] = ACTIONS(3804), - [anon_sym_RBRACK] = ACTIONS(3806), - [anon_sym_LPAREN] = ACTIONS(3808), - [anon_sym_DOLLAR] = ACTIONS(3810), - [anon_sym_LBRACE] = ACTIONS(3812), - [anon_sym_DOT_DOT] = ACTIONS(3814), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3816), - [anon_sym_DOT_DOT_LT] = ACTIONS(3816), - [anon_sym_null] = ACTIONS(3818), - [anon_sym_true] = ACTIONS(3820), - [anon_sym_false] = ACTIONS(3820), - [aux_sym__val_number_decimal_token1] = ACTIONS(3822), - [aux_sym__val_number_decimal_token2] = ACTIONS(3824), - [aux_sym__val_number_decimal_token3] = ACTIONS(3826), - [aux_sym__val_number_decimal_token4] = ACTIONS(3828), - [aux_sym__val_number_token1] = ACTIONS(3830), - [aux_sym__val_number_token2] = ACTIONS(3830), - [aux_sym__val_number_token3] = ACTIONS(3830), - [aux_sym__val_number_token4] = ACTIONS(3832), - [aux_sym__val_number_token5] = ACTIONS(3832), - [aux_sym__val_number_token6] = ACTIONS(3832), - [anon_sym_0b] = ACTIONS(3834), - [anon_sym_0o] = ACTIONS(3836), - [anon_sym_0x] = ACTIONS(3836), - [sym_val_date] = ACTIONS(3838), - [anon_sym_DQUOTE] = ACTIONS(3840), - [sym__str_single_quotes] = ACTIONS(3842), - [sym__str_back_ticks] = ACTIONS(3842), + [sym__newline] = ACTIONS(3811), + [anon_sym_LBRACK] = ACTIONS(3813), + [anon_sym_RBRACK] = ACTIONS(3815), + [anon_sym_LPAREN] = ACTIONS(3817), + [anon_sym_DOLLAR] = ACTIONS(3819), + [anon_sym_LBRACE] = ACTIONS(3821), + [anon_sym_DOT_DOT] = ACTIONS(3823), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3825), + [anon_sym_DOT_DOT_LT] = ACTIONS(3825), + [anon_sym_null] = ACTIONS(3827), + [anon_sym_true] = ACTIONS(3829), + [anon_sym_false] = ACTIONS(3829), + [aux_sym__val_number_decimal_token1] = ACTIONS(3831), + [aux_sym__val_number_decimal_token2] = ACTIONS(3833), + [aux_sym__val_number_decimal_token3] = ACTIONS(3835), + [aux_sym__val_number_decimal_token4] = ACTIONS(3837), + [aux_sym__val_number_token1] = ACTIONS(3839), + [aux_sym__val_number_token2] = ACTIONS(3839), + [aux_sym__val_number_token3] = ACTIONS(3839), + [aux_sym__val_number_token4] = ACTIONS(3841), + [aux_sym__val_number_token5] = ACTIONS(3841), + [aux_sym__val_number_token6] = ACTIONS(3841), + [anon_sym_0b] = ACTIONS(3843), + [anon_sym_0o] = ACTIONS(3845), + [anon_sym_0x] = ACTIONS(3845), + [sym_val_date] = ACTIONS(3847), + [anon_sym_DQUOTE] = ACTIONS(3849), + [sym__str_single_quotes] = ACTIONS(3851), + [sym__str_back_ticks] = ACTIONS(3851), [anon_sym_err_GT] = ACTIONS(2587), [anon_sym_out_GT] = ACTIONS(2587), [anon_sym_e_GT] = ACTIONS(2587), @@ -199827,9 +199827,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2589), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2589), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2589), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3844), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3853), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3846), + [sym_raw_string_begin] = ACTIONS(3855), }, [1212] = { [sym_comment] = STATE(1212), @@ -199935,36 +199935,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unquoted] = STATE(7613), [sym__unquoted_anonymous_prefix] = STATE(7445), [sym_comment] = STATE(1213), - [anon_sym_LBRACK] = ACTIONS(3848), - [anon_sym_LPAREN] = ACTIONS(3850), - [anon_sym_DOLLAR] = ACTIONS(3852), - [anon_sym_LBRACE] = ACTIONS(3854), - [anon_sym_DOT_DOT] = ACTIONS(3856), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3858), - [anon_sym_DOT_DOT_LT] = ACTIONS(3858), - [anon_sym_null] = ACTIONS(3860), - [anon_sym_true] = ACTIONS(3862), - [anon_sym_false] = ACTIONS(3862), - [aux_sym__val_number_decimal_token1] = ACTIONS(3864), - [aux_sym__val_number_decimal_token2] = ACTIONS(3866), - [aux_sym__val_number_decimal_token3] = ACTIONS(3868), - [aux_sym__val_number_decimal_token4] = ACTIONS(3870), + [anon_sym_LBRACK] = ACTIONS(3857), + [anon_sym_LPAREN] = ACTIONS(3859), + [anon_sym_DOLLAR] = ACTIONS(3861), + [anon_sym_LBRACE] = ACTIONS(3863), + [anon_sym_DOT_DOT] = ACTIONS(3865), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3867), + [anon_sym_DOT_DOT_LT] = ACTIONS(3867), + [anon_sym_null] = ACTIONS(3869), + [anon_sym_true] = ACTIONS(3871), + [anon_sym_false] = ACTIONS(3871), + [aux_sym__val_number_decimal_token1] = ACTIONS(3873), + [aux_sym__val_number_decimal_token2] = ACTIONS(3875), + [aux_sym__val_number_decimal_token3] = ACTIONS(3877), + [aux_sym__val_number_decimal_token4] = ACTIONS(3879), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3872), - [aux_sym__val_number_token5] = ACTIONS(3872), - [aux_sym__val_number_token6] = ACTIONS(3872), + [aux_sym__val_number_token4] = ACTIONS(3881), + [aux_sym__val_number_token5] = ACTIONS(3881), + [aux_sym__val_number_token6] = ACTIONS(3881), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3874), + [sym_val_date] = ACTIONS(3883), [anon_sym_DQUOTE] = ACTIONS(1295), [sym__str_single_quotes] = ACTIONS(1297), [sym__str_back_ticks] = ACTIONS(1297), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_COLON2] = ACTIONS(3424), + [anon_sym_COLON2] = ACTIONS(3433), [anon_sym_err_GT] = ACTIONS(2741), [anon_sym_out_GT] = ACTIONS(2741), [anon_sym_e_GT] = ACTIONS(2741), @@ -199981,7 +199981,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3212), + [aux_sym_unquoted_token1] = ACTIONS(3219), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(1299), }, @@ -200014,31 +200014,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__unquoted_anonymous_prefix] = STATE(7445), [sym_comment] = STATE(1214), [aux_sym_ctrl_match_repeat1] = STATE(1225), - [anon_sym_LBRACK] = ACTIONS(3536), + [anon_sym_LBRACK] = ACTIONS(3545), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(3538), - [anon_sym_LBRACE] = ACTIONS(3540), - [anon_sym__] = ACTIONS(3544), - [anon_sym_DOT_DOT] = ACTIONS(3546), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3548), - [anon_sym_DOT_DOT_LT] = ACTIONS(3548), - [anon_sym_null] = ACTIONS(3550), - [anon_sym_true] = ACTIONS(3552), - [anon_sym_false] = ACTIONS(3552), - [aux_sym__val_number_decimal_token1] = ACTIONS(3554), - [aux_sym__val_number_decimal_token2] = ACTIONS(3556), - [aux_sym__val_number_decimal_token3] = ACTIONS(3558), - [aux_sym__val_number_decimal_token4] = ACTIONS(3560), + [anon_sym_DOLLAR] = ACTIONS(3547), + [anon_sym_LBRACE] = ACTIONS(3549), + [anon_sym__] = ACTIONS(3553), + [anon_sym_DOT_DOT] = ACTIONS(3555), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3557), + [anon_sym_DOT_DOT_LT] = ACTIONS(3557), + [anon_sym_null] = ACTIONS(3559), + [anon_sym_true] = ACTIONS(3561), + [anon_sym_false] = ACTIONS(3561), + [aux_sym__val_number_decimal_token1] = ACTIONS(3563), + [aux_sym__val_number_decimal_token2] = ACTIONS(3565), + [aux_sym__val_number_decimal_token3] = ACTIONS(3567), + [aux_sym__val_number_decimal_token4] = ACTIONS(3569), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3562), - [aux_sym__val_number_token5] = ACTIONS(3562), - [aux_sym__val_number_token6] = ACTIONS(3562), + [aux_sym__val_number_token4] = ACTIONS(3571), + [aux_sym__val_number_token5] = ACTIONS(3571), + [aux_sym__val_number_token6] = ACTIONS(3571), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3564), + [sym_val_date] = ACTIONS(3573), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), @@ -200058,7 +200058,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3212), + [aux_sym_unquoted_token1] = ACTIONS(3219), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, @@ -200321,35 +200321,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = STATE(1218), [aux_sym_shebang_repeat1] = STATE(6595), [aux_sym__match_pattern_list_repeat1] = STATE(1302), - [sym__newline] = ACTIONS(3802), - [anon_sym_LBRACK] = ACTIONS(3804), - [anon_sym_RBRACK] = ACTIONS(3876), - [anon_sym_LPAREN] = ACTIONS(3808), - [anon_sym_DOLLAR] = ACTIONS(3810), - [anon_sym_LBRACE] = ACTIONS(3812), - [anon_sym_DOT_DOT] = ACTIONS(3878), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3816), - [anon_sym_DOT_DOT_LT] = ACTIONS(3816), - [anon_sym_null] = ACTIONS(3818), - [anon_sym_true] = ACTIONS(3820), - [anon_sym_false] = ACTIONS(3820), - [aux_sym__val_number_decimal_token1] = ACTIONS(3822), - [aux_sym__val_number_decimal_token2] = ACTIONS(3824), - [aux_sym__val_number_decimal_token3] = ACTIONS(3826), - [aux_sym__val_number_decimal_token4] = ACTIONS(3828), - [aux_sym__val_number_token1] = ACTIONS(3830), - [aux_sym__val_number_token2] = ACTIONS(3830), - [aux_sym__val_number_token3] = ACTIONS(3830), - [aux_sym__val_number_token4] = ACTIONS(3832), - [aux_sym__val_number_token5] = ACTIONS(3832), - [aux_sym__val_number_token6] = ACTIONS(3832), - [anon_sym_0b] = ACTIONS(3834), - [anon_sym_0o] = ACTIONS(3836), - [anon_sym_0x] = ACTIONS(3836), - [sym_val_date] = ACTIONS(3838), - [anon_sym_DQUOTE] = ACTIONS(3840), - [sym__str_single_quotes] = ACTIONS(3842), - [sym__str_back_ticks] = ACTIONS(3842), + [sym__newline] = ACTIONS(3811), + [anon_sym_LBRACK] = ACTIONS(3813), + [anon_sym_RBRACK] = ACTIONS(3885), + [anon_sym_LPAREN] = ACTIONS(3817), + [anon_sym_DOLLAR] = ACTIONS(3819), + [anon_sym_LBRACE] = ACTIONS(3821), + [anon_sym_DOT_DOT] = ACTIONS(3887), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3825), + [anon_sym_DOT_DOT_LT] = ACTIONS(3825), + [anon_sym_null] = ACTIONS(3827), + [anon_sym_true] = ACTIONS(3829), + [anon_sym_false] = ACTIONS(3829), + [aux_sym__val_number_decimal_token1] = ACTIONS(3831), + [aux_sym__val_number_decimal_token2] = ACTIONS(3833), + [aux_sym__val_number_decimal_token3] = ACTIONS(3835), + [aux_sym__val_number_decimal_token4] = ACTIONS(3837), + [aux_sym__val_number_token1] = ACTIONS(3839), + [aux_sym__val_number_token2] = ACTIONS(3839), + [aux_sym__val_number_token3] = ACTIONS(3839), + [aux_sym__val_number_token4] = ACTIONS(3841), + [aux_sym__val_number_token5] = ACTIONS(3841), + [aux_sym__val_number_token6] = ACTIONS(3841), + [anon_sym_0b] = ACTIONS(3843), + [anon_sym_0o] = ACTIONS(3845), + [anon_sym_0x] = ACTIONS(3845), + [sym_val_date] = ACTIONS(3847), + [anon_sym_DQUOTE] = ACTIONS(3849), + [sym__str_single_quotes] = ACTIONS(3851), + [sym__str_back_ticks] = ACTIONS(3851), [anon_sym_err_GT] = ACTIONS(2587), [anon_sym_out_GT] = ACTIONS(2587), [anon_sym_e_GT] = ACTIONS(2587), @@ -200366,9 +200366,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2589), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2589), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2589), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3844), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3853), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3846), + [sym_raw_string_begin] = ACTIONS(3855), }, [1219] = { [sym_match_arm] = STATE(7191), @@ -200399,31 +200399,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__unquoted_anonymous_prefix] = STATE(7445), [sym_comment] = STATE(1219), [aux_sym_ctrl_match_repeat1] = STATE(1225), - [anon_sym_LBRACK] = ACTIONS(3536), + [anon_sym_LBRACK] = ACTIONS(3545), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(3538), - [anon_sym_LBRACE] = ACTIONS(3540), - [anon_sym__] = ACTIONS(3544), - [anon_sym_DOT_DOT] = ACTIONS(3546), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3548), - [anon_sym_DOT_DOT_LT] = ACTIONS(3548), - [anon_sym_null] = ACTIONS(3550), - [anon_sym_true] = ACTIONS(3552), - [anon_sym_false] = ACTIONS(3552), - [aux_sym__val_number_decimal_token1] = ACTIONS(3554), - [aux_sym__val_number_decimal_token2] = ACTIONS(3556), - [aux_sym__val_number_decimal_token3] = ACTIONS(3558), - [aux_sym__val_number_decimal_token4] = ACTIONS(3560), + [anon_sym_DOLLAR] = ACTIONS(3547), + [anon_sym_LBRACE] = ACTIONS(3549), + [anon_sym__] = ACTIONS(3553), + [anon_sym_DOT_DOT] = ACTIONS(3555), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3557), + [anon_sym_DOT_DOT_LT] = ACTIONS(3557), + [anon_sym_null] = ACTIONS(3559), + [anon_sym_true] = ACTIONS(3561), + [anon_sym_false] = ACTIONS(3561), + [aux_sym__val_number_decimal_token1] = ACTIONS(3563), + [aux_sym__val_number_decimal_token2] = ACTIONS(3565), + [aux_sym__val_number_decimal_token3] = ACTIONS(3567), + [aux_sym__val_number_decimal_token4] = ACTIONS(3569), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3562), - [aux_sym__val_number_token5] = ACTIONS(3562), - [aux_sym__val_number_token6] = ACTIONS(3562), + [aux_sym__val_number_token4] = ACTIONS(3571), + [aux_sym__val_number_token5] = ACTIONS(3571), + [aux_sym__val_number_token6] = ACTIONS(3571), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3564), + [sym_val_date] = ACTIONS(3573), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), @@ -200443,7 +200443,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3212), + [aux_sym_unquoted_token1] = ACTIONS(3219), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, @@ -200474,36 +200474,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unquoted] = STATE(7613), [sym__unquoted_anonymous_prefix] = STATE(7445), [sym_comment] = STATE(1220), - [anon_sym_LBRACK] = ACTIONS(3848), - [anon_sym_LPAREN] = ACTIONS(3850), - [anon_sym_DOLLAR] = ACTIONS(3852), - [anon_sym_LBRACE] = ACTIONS(3854), - [anon_sym_DOT_DOT] = ACTIONS(3856), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3858), - [anon_sym_DOT_DOT_LT] = ACTIONS(3858), - [anon_sym_null] = ACTIONS(3860), - [anon_sym_true] = ACTIONS(3862), - [anon_sym_false] = ACTIONS(3862), - [aux_sym__val_number_decimal_token1] = ACTIONS(3864), - [aux_sym__val_number_decimal_token2] = ACTIONS(3866), - [aux_sym__val_number_decimal_token3] = ACTIONS(3868), - [aux_sym__val_number_decimal_token4] = ACTIONS(3870), + [anon_sym_LBRACK] = ACTIONS(3857), + [anon_sym_LPAREN] = ACTIONS(3859), + [anon_sym_DOLLAR] = ACTIONS(3861), + [anon_sym_LBRACE] = ACTIONS(3863), + [anon_sym_DOT_DOT] = ACTIONS(3865), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3867), + [anon_sym_DOT_DOT_LT] = ACTIONS(3867), + [anon_sym_null] = ACTIONS(3869), + [anon_sym_true] = ACTIONS(3871), + [anon_sym_false] = ACTIONS(3871), + [aux_sym__val_number_decimal_token1] = ACTIONS(3873), + [aux_sym__val_number_decimal_token2] = ACTIONS(3875), + [aux_sym__val_number_decimal_token3] = ACTIONS(3877), + [aux_sym__val_number_decimal_token4] = ACTIONS(3879), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3872), - [aux_sym__val_number_token5] = ACTIONS(3872), - [aux_sym__val_number_token6] = ACTIONS(3872), + [aux_sym__val_number_token4] = ACTIONS(3881), + [aux_sym__val_number_token5] = ACTIONS(3881), + [aux_sym__val_number_token6] = ACTIONS(3881), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3874), + [sym_val_date] = ACTIONS(3883), [anon_sym_DQUOTE] = ACTIONS(1295), [sym__str_single_quotes] = ACTIONS(1297), [sym__str_back_ticks] = ACTIONS(1297), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_COLON2] = ACTIONS(3422), + [anon_sym_COLON2] = ACTIONS(3431), [anon_sym_err_GT] = ACTIONS(2741), [anon_sym_out_GT] = ACTIONS(2741), [anon_sym_e_GT] = ACTIONS(2741), @@ -200520,7 +200520,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3212), + [aux_sym_unquoted_token1] = ACTIONS(3219), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(1299), }, @@ -200553,31 +200553,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__unquoted_anonymous_prefix] = STATE(7445), [sym_comment] = STATE(1221), [aux_sym_ctrl_match_repeat1] = STATE(1225), - [anon_sym_LBRACK] = ACTIONS(3536), + [anon_sym_LBRACK] = ACTIONS(3545), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(3538), - [anon_sym_LBRACE] = ACTIONS(3540), - [anon_sym__] = ACTIONS(3544), - [anon_sym_DOT_DOT] = ACTIONS(3546), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3548), - [anon_sym_DOT_DOT_LT] = ACTIONS(3548), - [anon_sym_null] = ACTIONS(3550), - [anon_sym_true] = ACTIONS(3552), - [anon_sym_false] = ACTIONS(3552), - [aux_sym__val_number_decimal_token1] = ACTIONS(3554), - [aux_sym__val_number_decimal_token2] = ACTIONS(3556), - [aux_sym__val_number_decimal_token3] = ACTIONS(3558), - [aux_sym__val_number_decimal_token4] = ACTIONS(3560), + [anon_sym_DOLLAR] = ACTIONS(3547), + [anon_sym_LBRACE] = ACTIONS(3549), + [anon_sym__] = ACTIONS(3553), + [anon_sym_DOT_DOT] = ACTIONS(3555), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3557), + [anon_sym_DOT_DOT_LT] = ACTIONS(3557), + [anon_sym_null] = ACTIONS(3559), + [anon_sym_true] = ACTIONS(3561), + [anon_sym_false] = ACTIONS(3561), + [aux_sym__val_number_decimal_token1] = ACTIONS(3563), + [aux_sym__val_number_decimal_token2] = ACTIONS(3565), + [aux_sym__val_number_decimal_token3] = ACTIONS(3567), + [aux_sym__val_number_decimal_token4] = ACTIONS(3569), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3562), - [aux_sym__val_number_token5] = ACTIONS(3562), - [aux_sym__val_number_token6] = ACTIONS(3562), + [aux_sym__val_number_token4] = ACTIONS(3571), + [aux_sym__val_number_token5] = ACTIONS(3571), + [aux_sym__val_number_token6] = ACTIONS(3571), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3564), + [sym_val_date] = ACTIONS(3573), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), @@ -200597,7 +200597,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3212), + [aux_sym_unquoted_token1] = ACTIONS(3219), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, @@ -200630,31 +200630,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__unquoted_anonymous_prefix] = STATE(7445), [sym_comment] = STATE(1222), [aux_sym_ctrl_match_repeat1] = STATE(1225), - [anon_sym_LBRACK] = ACTIONS(3536), + [anon_sym_LBRACK] = ACTIONS(3545), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(3538), - [anon_sym_LBRACE] = ACTIONS(3540), - [anon_sym__] = ACTIONS(3544), - [anon_sym_DOT_DOT] = ACTIONS(3546), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3548), - [anon_sym_DOT_DOT_LT] = ACTIONS(3548), - [anon_sym_null] = ACTIONS(3550), - [anon_sym_true] = ACTIONS(3552), - [anon_sym_false] = ACTIONS(3552), - [aux_sym__val_number_decimal_token1] = ACTIONS(3554), - [aux_sym__val_number_decimal_token2] = ACTIONS(3556), - [aux_sym__val_number_decimal_token3] = ACTIONS(3558), - [aux_sym__val_number_decimal_token4] = ACTIONS(3560), + [anon_sym_DOLLAR] = ACTIONS(3547), + [anon_sym_LBRACE] = ACTIONS(3549), + [anon_sym__] = ACTIONS(3553), + [anon_sym_DOT_DOT] = ACTIONS(3555), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3557), + [anon_sym_DOT_DOT_LT] = ACTIONS(3557), + [anon_sym_null] = ACTIONS(3559), + [anon_sym_true] = ACTIONS(3561), + [anon_sym_false] = ACTIONS(3561), + [aux_sym__val_number_decimal_token1] = ACTIONS(3563), + [aux_sym__val_number_decimal_token2] = ACTIONS(3565), + [aux_sym__val_number_decimal_token3] = ACTIONS(3567), + [aux_sym__val_number_decimal_token4] = ACTIONS(3569), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3562), - [aux_sym__val_number_token5] = ACTIONS(3562), - [aux_sym__val_number_token6] = ACTIONS(3562), + [aux_sym__val_number_token4] = ACTIONS(3571), + [aux_sym__val_number_token5] = ACTIONS(3571), + [aux_sym__val_number_token6] = ACTIONS(3571), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3564), + [sym_val_date] = ACTIONS(3573), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), @@ -200674,7 +200674,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3212), + [aux_sym_unquoted_token1] = ACTIONS(3219), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, @@ -200707,31 +200707,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__unquoted_anonymous_prefix] = STATE(7445), [sym_comment] = STATE(1223), [aux_sym_ctrl_match_repeat1] = STATE(1225), - [anon_sym_LBRACK] = ACTIONS(3536), + [anon_sym_LBRACK] = ACTIONS(3545), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(3538), - [anon_sym_LBRACE] = ACTIONS(3540), - [anon_sym__] = ACTIONS(3544), - [anon_sym_DOT_DOT] = ACTIONS(3546), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3548), - [anon_sym_DOT_DOT_LT] = ACTIONS(3548), - [anon_sym_null] = ACTIONS(3550), - [anon_sym_true] = ACTIONS(3552), - [anon_sym_false] = ACTIONS(3552), - [aux_sym__val_number_decimal_token1] = ACTIONS(3554), - [aux_sym__val_number_decimal_token2] = ACTIONS(3556), - [aux_sym__val_number_decimal_token3] = ACTIONS(3558), - [aux_sym__val_number_decimal_token4] = ACTIONS(3560), + [anon_sym_DOLLAR] = ACTIONS(3547), + [anon_sym_LBRACE] = ACTIONS(3549), + [anon_sym__] = ACTIONS(3553), + [anon_sym_DOT_DOT] = ACTIONS(3555), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3557), + [anon_sym_DOT_DOT_LT] = ACTIONS(3557), + [anon_sym_null] = ACTIONS(3559), + [anon_sym_true] = ACTIONS(3561), + [anon_sym_false] = ACTIONS(3561), + [aux_sym__val_number_decimal_token1] = ACTIONS(3563), + [aux_sym__val_number_decimal_token2] = ACTIONS(3565), + [aux_sym__val_number_decimal_token3] = ACTIONS(3567), + [aux_sym__val_number_decimal_token4] = ACTIONS(3569), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3562), - [aux_sym__val_number_token5] = ACTIONS(3562), - [aux_sym__val_number_token6] = ACTIONS(3562), + [aux_sym__val_number_token4] = ACTIONS(3571), + [aux_sym__val_number_token5] = ACTIONS(3571), + [aux_sym__val_number_token6] = ACTIONS(3571), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3564), + [sym_val_date] = ACTIONS(3573), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), @@ -200751,7 +200751,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3212), + [aux_sym_unquoted_token1] = ACTIONS(3219), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, @@ -200784,31 +200784,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__unquoted_anonymous_prefix] = STATE(7445), [sym_comment] = STATE(1224), [aux_sym_ctrl_match_repeat1] = STATE(1225), - [anon_sym_LBRACK] = ACTIONS(3536), + [anon_sym_LBRACK] = ACTIONS(3545), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(3538), - [anon_sym_LBRACE] = ACTIONS(3540), - [anon_sym__] = ACTIONS(3544), - [anon_sym_DOT_DOT] = ACTIONS(3546), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3548), - [anon_sym_DOT_DOT_LT] = ACTIONS(3548), - [anon_sym_null] = ACTIONS(3550), - [anon_sym_true] = ACTIONS(3552), - [anon_sym_false] = ACTIONS(3552), - [aux_sym__val_number_decimal_token1] = ACTIONS(3554), - [aux_sym__val_number_decimal_token2] = ACTIONS(3556), - [aux_sym__val_number_decimal_token3] = ACTIONS(3558), - [aux_sym__val_number_decimal_token4] = ACTIONS(3560), + [anon_sym_DOLLAR] = ACTIONS(3547), + [anon_sym_LBRACE] = ACTIONS(3549), + [anon_sym__] = ACTIONS(3553), + [anon_sym_DOT_DOT] = ACTIONS(3555), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3557), + [anon_sym_DOT_DOT_LT] = ACTIONS(3557), + [anon_sym_null] = ACTIONS(3559), + [anon_sym_true] = ACTIONS(3561), + [anon_sym_false] = ACTIONS(3561), + [aux_sym__val_number_decimal_token1] = ACTIONS(3563), + [aux_sym__val_number_decimal_token2] = ACTIONS(3565), + [aux_sym__val_number_decimal_token3] = ACTIONS(3567), + [aux_sym__val_number_decimal_token4] = ACTIONS(3569), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3562), - [aux_sym__val_number_token5] = ACTIONS(3562), - [aux_sym__val_number_token6] = ACTIONS(3562), + [aux_sym__val_number_token4] = ACTIONS(3571), + [aux_sym__val_number_token5] = ACTIONS(3571), + [aux_sym__val_number_token6] = ACTIONS(3571), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3564), + [sym_val_date] = ACTIONS(3573), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), @@ -200828,7 +200828,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3212), + [aux_sym_unquoted_token1] = ACTIONS(3219), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, @@ -200861,85 +200861,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__unquoted_anonymous_prefix] = STATE(7445), [sym_comment] = STATE(1225), [aux_sym_ctrl_match_repeat1] = STATE(1225), - [anon_sym_LBRACK] = ACTIONS(3880), - [anon_sym_LPAREN] = ACTIONS(3883), - [anon_sym_DOLLAR] = ACTIONS(3886), - [anon_sym_LBRACE] = ACTIONS(3889), - [anon_sym__] = ACTIONS(3892), - [anon_sym_DOT_DOT] = ACTIONS(3895), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3898), - [anon_sym_DOT_DOT_LT] = ACTIONS(3898), - [anon_sym_null] = ACTIONS(3901), - [anon_sym_true] = ACTIONS(3904), - [anon_sym_false] = ACTIONS(3904), - [aux_sym__val_number_decimal_token1] = ACTIONS(3907), - [aux_sym__val_number_decimal_token2] = ACTIONS(3910), - [aux_sym__val_number_decimal_token3] = ACTIONS(3913), - [aux_sym__val_number_decimal_token4] = ACTIONS(3916), - [aux_sym__val_number_token1] = ACTIONS(3919), - [aux_sym__val_number_token2] = ACTIONS(3919), - [aux_sym__val_number_token3] = ACTIONS(3919), - [aux_sym__val_number_token4] = ACTIONS(3922), - [aux_sym__val_number_token5] = ACTIONS(3922), - [aux_sym__val_number_token6] = ACTIONS(3922), - [anon_sym_0b] = ACTIONS(3925), - [anon_sym_0o] = ACTIONS(3928), - [anon_sym_0x] = ACTIONS(3928), - [sym_val_date] = ACTIONS(3931), - [anon_sym_DQUOTE] = ACTIONS(3934), - [sym__str_single_quotes] = ACTIONS(3937), - [sym__str_back_ticks] = ACTIONS(3937), - [anon_sym_err_GT] = ACTIONS(3940), - [anon_sym_out_GT] = ACTIONS(3940), - [anon_sym_e_GT] = ACTIONS(3940), - [anon_sym_o_GT] = ACTIONS(3940), - [anon_sym_err_PLUSout_GT] = ACTIONS(3940), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3940), - [anon_sym_o_PLUSe_GT] = ACTIONS(3940), - [anon_sym_e_PLUSo_GT] = ACTIONS(3940), - [anon_sym_err_GT_GT] = ACTIONS(3943), - [anon_sym_out_GT_GT] = ACTIONS(3943), - [anon_sym_e_GT_GT] = ACTIONS(3943), - [anon_sym_o_GT_GT] = ACTIONS(3943), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3943), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3943), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3943), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3943), - [aux_sym_unquoted_token1] = ACTIONS(3946), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3949), + [anon_sym_LBRACK] = ACTIONS(3889), + [anon_sym_LPAREN] = ACTIONS(3892), + [anon_sym_DOLLAR] = ACTIONS(3895), + [anon_sym_LBRACE] = ACTIONS(3898), + [anon_sym__] = ACTIONS(3901), + [anon_sym_DOT_DOT] = ACTIONS(3904), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3907), + [anon_sym_DOT_DOT_LT] = ACTIONS(3907), + [anon_sym_null] = ACTIONS(3910), + [anon_sym_true] = ACTIONS(3913), + [anon_sym_false] = ACTIONS(3913), + [aux_sym__val_number_decimal_token1] = ACTIONS(3916), + [aux_sym__val_number_decimal_token2] = ACTIONS(3919), + [aux_sym__val_number_decimal_token3] = ACTIONS(3922), + [aux_sym__val_number_decimal_token4] = ACTIONS(3925), + [aux_sym__val_number_token1] = ACTIONS(3928), + [aux_sym__val_number_token2] = ACTIONS(3928), + [aux_sym__val_number_token3] = ACTIONS(3928), + [aux_sym__val_number_token4] = ACTIONS(3931), + [aux_sym__val_number_token5] = ACTIONS(3931), + [aux_sym__val_number_token6] = ACTIONS(3931), + [anon_sym_0b] = ACTIONS(3934), + [anon_sym_0o] = ACTIONS(3937), + [anon_sym_0x] = ACTIONS(3937), + [sym_val_date] = ACTIONS(3940), + [anon_sym_DQUOTE] = ACTIONS(3943), + [sym__str_single_quotes] = ACTIONS(3946), + [sym__str_back_ticks] = ACTIONS(3946), + [anon_sym_err_GT] = ACTIONS(3949), + [anon_sym_out_GT] = ACTIONS(3949), + [anon_sym_e_GT] = ACTIONS(3949), + [anon_sym_o_GT] = ACTIONS(3949), + [anon_sym_err_PLUSout_GT] = ACTIONS(3949), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3949), + [anon_sym_o_PLUSe_GT] = ACTIONS(3949), + [anon_sym_e_PLUSo_GT] = ACTIONS(3949), + [anon_sym_err_GT_GT] = ACTIONS(3952), + [anon_sym_out_GT_GT] = ACTIONS(3952), + [anon_sym_e_GT_GT] = ACTIONS(3952), + [anon_sym_o_GT_GT] = ACTIONS(3952), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3952), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3952), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3952), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3952), + [aux_sym_unquoted_token1] = ACTIONS(3955), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(3958), }, [1226] = { [sym_comment] = STATE(1226), - [anon_sym_STAR_STAR] = ACTIONS(3058), - [anon_sym_PLUS_PLUS] = ACTIONS(3058), - [anon_sym_STAR] = ACTIONS(3060), - [anon_sym_SLASH] = ACTIONS(3060), - [anon_sym_mod] = ACTIONS(3058), - [anon_sym_SLASH_SLASH] = ACTIONS(3058), - [anon_sym_PLUS] = ACTIONS(3060), - [anon_sym_DASH] = ACTIONS(3058), - [anon_sym_bit_DASHshl] = ACTIONS(3058), - [anon_sym_bit_DASHshr] = ACTIONS(3058), - [anon_sym_EQ_TILDE] = ACTIONS(3058), - [anon_sym_BANG_TILDE] = ACTIONS(3058), - [anon_sym_bit_DASHand] = ACTIONS(3058), - [anon_sym_bit_DASHxor] = ACTIONS(3058), - [anon_sym_bit_DASHor] = ACTIONS(3058), - [anon_sym_and] = ACTIONS(3058), - [anon_sym_xor] = ACTIONS(3058), - [anon_sym_or] = ACTIONS(3058), - [anon_sym_in] = ACTIONS(3058), - [anon_sym_not_DASHin] = ACTIONS(3058), - [anon_sym_starts_DASHwith] = ACTIONS(3058), - [anon_sym_ends_DASHwith] = ACTIONS(3058), - [anon_sym_EQ_EQ] = ACTIONS(3058), - [anon_sym_BANG_EQ] = ACTIONS(3058), - [anon_sym_LT] = ACTIONS(3060), - [anon_sym_LT_EQ] = ACTIONS(3058), - [anon_sym_GT] = ACTIONS(3060), - [anon_sym_GT_EQ] = ACTIONS(3058), - [aux_sym_cmd_identifier_token41] = ACTIONS(3062), + [anon_sym_STAR_STAR] = ACTIONS(3065), + [anon_sym_PLUS_PLUS] = ACTIONS(3065), + [anon_sym_STAR] = ACTIONS(3067), + [anon_sym_SLASH] = ACTIONS(3067), + [anon_sym_mod] = ACTIONS(3065), + [anon_sym_SLASH_SLASH] = ACTIONS(3065), + [anon_sym_PLUS] = ACTIONS(3067), + [anon_sym_DASH] = ACTIONS(3065), + [anon_sym_bit_DASHshl] = ACTIONS(3065), + [anon_sym_bit_DASHshr] = ACTIONS(3065), + [anon_sym_EQ_TILDE] = ACTIONS(3065), + [anon_sym_BANG_TILDE] = ACTIONS(3065), + [anon_sym_bit_DASHand] = ACTIONS(3065), + [anon_sym_bit_DASHxor] = ACTIONS(3065), + [anon_sym_bit_DASHor] = ACTIONS(3065), + [anon_sym_and] = ACTIONS(3065), + [anon_sym_xor] = ACTIONS(3065), + [anon_sym_or] = ACTIONS(3065), + [anon_sym_in] = ACTIONS(3065), + [anon_sym_not_DASHin] = ACTIONS(3065), + [anon_sym_starts_DASHwith] = ACTIONS(3065), + [anon_sym_ends_DASHwith] = ACTIONS(3065), + [anon_sym_EQ_EQ] = ACTIONS(3065), + [anon_sym_BANG_EQ] = ACTIONS(3065), + [anon_sym_LT] = ACTIONS(3067), + [anon_sym_LT_EQ] = ACTIONS(3065), + [anon_sym_GT] = ACTIONS(3067), + [anon_sym_GT_EQ] = ACTIONS(3065), + [aux_sym_cmd_identifier_token41] = ACTIONS(3069), [sym__newline] = ACTIONS(1681), [anon_sym_SEMI] = ACTIONS(1681), [anon_sym_PIPE] = ACTIONS(1681), @@ -200979,11 +200979,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bit_DASHand2] = ACTIONS(1681), [anon_sym_bit_DASHxor2] = ACTIONS(1681), [anon_sym_bit_DASHor2] = ACTIONS(1681), - [anon_sym_DOT_DOT2] = ACTIONS(3024), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(3026), - [anon_sym_DOT_DOT_LT2] = ACTIONS(3026), - [sym_filesize_unit] = ACTIONS(3952), - [sym_duration_unit] = ACTIONS(3954), + [anon_sym_DOT_DOT2] = ACTIONS(3031), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(3033), + [anon_sym_DOT_DOT_LT2] = ACTIONS(3033), + [sym_filesize_unit] = ACTIONS(3961), + [sym_duration_unit] = ACTIONS(3963), [anon_sym_POUND] = ACTIONS(3), }, [1227] = { @@ -201058,7 +201058,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT2] = ACTIONS(1587), [anon_sym_DOT_DOT_EQ2] = ACTIONS(1589), [anon_sym_DOT_DOT_LT2] = ACTIONS(1589), - [aux_sym__immediate_decimal_token2] = ACTIONS(3668), + [aux_sym__immediate_decimal_token2] = ACTIONS(3677), [sym_filesize_unit] = ACTIONS(1587), [sym_duration_unit] = ACTIONS(1589), [anon_sym_POUND] = ACTIONS(3), @@ -201092,31 +201092,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__unquoted_anonymous_prefix] = STATE(7445), [sym_comment] = STATE(1228), [aux_sym_ctrl_match_repeat1] = STATE(1225), - [anon_sym_LBRACK] = ACTIONS(3536), + [anon_sym_LBRACK] = ACTIONS(3545), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(3538), - [anon_sym_LBRACE] = ACTIONS(3540), - [anon_sym__] = ACTIONS(3544), - [anon_sym_DOT_DOT] = ACTIONS(3546), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3548), - [anon_sym_DOT_DOT_LT] = ACTIONS(3548), - [anon_sym_null] = ACTIONS(3550), - [anon_sym_true] = ACTIONS(3552), - [anon_sym_false] = ACTIONS(3552), - [aux_sym__val_number_decimal_token1] = ACTIONS(3554), - [aux_sym__val_number_decimal_token2] = ACTIONS(3556), - [aux_sym__val_number_decimal_token3] = ACTIONS(3558), - [aux_sym__val_number_decimal_token4] = ACTIONS(3560), + [anon_sym_DOLLAR] = ACTIONS(3547), + [anon_sym_LBRACE] = ACTIONS(3549), + [anon_sym__] = ACTIONS(3553), + [anon_sym_DOT_DOT] = ACTIONS(3555), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3557), + [anon_sym_DOT_DOT_LT] = ACTIONS(3557), + [anon_sym_null] = ACTIONS(3559), + [anon_sym_true] = ACTIONS(3561), + [anon_sym_false] = ACTIONS(3561), + [aux_sym__val_number_decimal_token1] = ACTIONS(3563), + [aux_sym__val_number_decimal_token2] = ACTIONS(3565), + [aux_sym__val_number_decimal_token3] = ACTIONS(3567), + [aux_sym__val_number_decimal_token4] = ACTIONS(3569), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3562), - [aux_sym__val_number_token5] = ACTIONS(3562), - [aux_sym__val_number_token6] = ACTIONS(3562), + [aux_sym__val_number_token4] = ACTIONS(3571), + [aux_sym__val_number_token5] = ACTIONS(3571), + [aux_sym__val_number_token6] = ACTIONS(3571), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3564), + [sym_val_date] = ACTIONS(3573), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), @@ -201136,7 +201136,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3212), + [aux_sym_unquoted_token1] = ACTIONS(3219), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, @@ -201167,30 +201167,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unquoted] = STATE(7613), [sym__unquoted_anonymous_prefix] = STATE(7445), [sym_comment] = STATE(1229), - [anon_sym_LBRACK] = ACTIONS(3848), - [anon_sym_LPAREN] = ACTIONS(3850), - [anon_sym_DOLLAR] = ACTIONS(3852), - [anon_sym_LBRACE] = ACTIONS(3854), - [anon_sym_DOT_DOT] = ACTIONS(3856), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3858), - [anon_sym_DOT_DOT_LT] = ACTIONS(3858), - [anon_sym_null] = ACTIONS(3860), - [anon_sym_true] = ACTIONS(3862), - [anon_sym_false] = ACTIONS(3862), - [aux_sym__val_number_decimal_token1] = ACTIONS(3864), - [aux_sym__val_number_decimal_token2] = ACTIONS(3866), - [aux_sym__val_number_decimal_token3] = ACTIONS(3868), - [aux_sym__val_number_decimal_token4] = ACTIONS(3870), + [anon_sym_LBRACK] = ACTIONS(3857), + [anon_sym_LPAREN] = ACTIONS(3859), + [anon_sym_DOLLAR] = ACTIONS(3861), + [anon_sym_LBRACE] = ACTIONS(3863), + [anon_sym_DOT_DOT] = ACTIONS(3865), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3867), + [anon_sym_DOT_DOT_LT] = ACTIONS(3867), + [anon_sym_null] = ACTIONS(3869), + [anon_sym_true] = ACTIONS(3871), + [anon_sym_false] = ACTIONS(3871), + [aux_sym__val_number_decimal_token1] = ACTIONS(3873), + [aux_sym__val_number_decimal_token2] = ACTIONS(3875), + [aux_sym__val_number_decimal_token3] = ACTIONS(3877), + [aux_sym__val_number_decimal_token4] = ACTIONS(3879), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3872), - [aux_sym__val_number_token5] = ACTIONS(3872), - [aux_sym__val_number_token6] = ACTIONS(3872), + [aux_sym__val_number_token4] = ACTIONS(3881), + [aux_sym__val_number_token5] = ACTIONS(3881), + [aux_sym__val_number_token6] = ACTIONS(3881), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3874), + [sym_val_date] = ACTIONS(3883), [anon_sym_DQUOTE] = ACTIONS(1295), [sym__str_single_quotes] = ACTIONS(1297), [sym__str_back_ticks] = ACTIONS(1297), @@ -201212,7 +201212,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3212), + [aux_sym_unquoted_token1] = ACTIONS(3219), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(1299), }, @@ -201446,35 +201446,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [1233] = { [sym_comment] = STATE(1233), - [anon_sym_STAR_STAR] = ACTIONS(3058), - [anon_sym_PLUS_PLUS] = ACTIONS(3058), - [anon_sym_STAR] = ACTIONS(3060), - [anon_sym_SLASH] = ACTIONS(3060), - [anon_sym_mod] = ACTIONS(3058), - [anon_sym_SLASH_SLASH] = ACTIONS(3058), - [anon_sym_PLUS] = ACTIONS(3060), - [anon_sym_DASH] = ACTIONS(3058), - [anon_sym_bit_DASHshl] = ACTIONS(3058), - [anon_sym_bit_DASHshr] = ACTIONS(3058), - [anon_sym_EQ_TILDE] = ACTIONS(3058), - [anon_sym_BANG_TILDE] = ACTIONS(3058), - [anon_sym_bit_DASHand] = ACTIONS(3058), - [anon_sym_bit_DASHxor] = ACTIONS(3058), - [anon_sym_bit_DASHor] = ACTIONS(3058), - [anon_sym_and] = ACTIONS(3058), - [anon_sym_xor] = ACTIONS(3058), - [anon_sym_or] = ACTIONS(3058), - [anon_sym_in] = ACTIONS(3058), - [anon_sym_not_DASHin] = ACTIONS(3058), - [anon_sym_starts_DASHwith] = ACTIONS(3058), - [anon_sym_ends_DASHwith] = ACTIONS(3058), - [anon_sym_EQ_EQ] = ACTIONS(3058), - [anon_sym_BANG_EQ] = ACTIONS(3058), - [anon_sym_LT] = ACTIONS(3060), - [anon_sym_LT_EQ] = ACTIONS(3058), - [anon_sym_GT] = ACTIONS(3060), - [anon_sym_GT_EQ] = ACTIONS(3058), - [aux_sym_cmd_identifier_token41] = ACTIONS(3062), + [anon_sym_STAR_STAR] = ACTIONS(3065), + [anon_sym_PLUS_PLUS] = ACTIONS(3065), + [anon_sym_STAR] = ACTIONS(3067), + [anon_sym_SLASH] = ACTIONS(3067), + [anon_sym_mod] = ACTIONS(3065), + [anon_sym_SLASH_SLASH] = ACTIONS(3065), + [anon_sym_PLUS] = ACTIONS(3067), + [anon_sym_DASH] = ACTIONS(3065), + [anon_sym_bit_DASHshl] = ACTIONS(3065), + [anon_sym_bit_DASHshr] = ACTIONS(3065), + [anon_sym_EQ_TILDE] = ACTIONS(3065), + [anon_sym_BANG_TILDE] = ACTIONS(3065), + [anon_sym_bit_DASHand] = ACTIONS(3065), + [anon_sym_bit_DASHxor] = ACTIONS(3065), + [anon_sym_bit_DASHor] = ACTIONS(3065), + [anon_sym_and] = ACTIONS(3065), + [anon_sym_xor] = ACTIONS(3065), + [anon_sym_or] = ACTIONS(3065), + [anon_sym_in] = ACTIONS(3065), + [anon_sym_not_DASHin] = ACTIONS(3065), + [anon_sym_starts_DASHwith] = ACTIONS(3065), + [anon_sym_ends_DASHwith] = ACTIONS(3065), + [anon_sym_EQ_EQ] = ACTIONS(3065), + [anon_sym_BANG_EQ] = ACTIONS(3065), + [anon_sym_LT] = ACTIONS(3067), + [anon_sym_LT_EQ] = ACTIONS(3065), + [anon_sym_GT] = ACTIONS(3067), + [anon_sym_GT_EQ] = ACTIONS(3065), + [aux_sym_cmd_identifier_token41] = ACTIONS(3069), [sym__newline] = ACTIONS(1681), [anon_sym_PIPE] = ACTIONS(1681), [anon_sym_err_GT_PIPE] = ACTIONS(1681), @@ -201513,11 +201513,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bit_DASHand2] = ACTIONS(1681), [anon_sym_bit_DASHxor2] = ACTIONS(1681), [anon_sym_bit_DASHor2] = ACTIONS(1681), - [anon_sym_DOT_DOT2] = ACTIONS(3024), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(3026), - [anon_sym_DOT_DOT_LT2] = ACTIONS(3026), - [sym_filesize_unit] = ACTIONS(3956), - [sym_duration_unit] = ACTIONS(3958), + [anon_sym_DOT_DOT2] = ACTIONS(3031), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(3033), + [anon_sym_DOT_DOT_LT2] = ACTIONS(3033), + [sym_filesize_unit] = ACTIONS(3965), + [sym_duration_unit] = ACTIONS(3967), [anon_sym_POUND] = ACTIONS(3), }, [1234] = { @@ -201545,14 +201545,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(1553), [anon_sym_RBRACE] = ACTIONS(1553), [anon_sym_DOT_DOT] = ACTIONS(1539), - [anon_sym_LPAREN2] = ACTIONS(3960), - [anon_sym_DOT] = ACTIONS(3962), + [anon_sym_LPAREN2] = ACTIONS(3969), + [anon_sym_DOT] = ACTIONS(3971), [anon_sym_DOT_DOT_EQ] = ACTIONS(1553), [anon_sym_DOT_DOT_LT] = ACTIONS(1553), - [aux_sym__immediate_decimal_token1] = ACTIONS(3964), - [aux_sym__immediate_decimal_token3] = ACTIONS(3966), - [aux_sym__immediate_decimal_token4] = ACTIONS(3968), - [aux_sym__immediate_decimal_token5] = ACTIONS(3970), + [aux_sym__immediate_decimal_token1] = ACTIONS(3973), + [aux_sym__immediate_decimal_token3] = ACTIONS(3975), + [aux_sym__immediate_decimal_token4] = ACTIONS(3977), + [aux_sym__immediate_decimal_token5] = ACTIONS(3979), [anon_sym_null] = ACTIONS(1553), [anon_sym_true] = ACTIONS(1553), [anon_sym_false] = ACTIONS(1553), @@ -201699,30 +201699,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unquoted] = STATE(7731), [sym__unquoted_anonymous_prefix] = STATE(7445), [sym_comment] = STATE(1236), - [anon_sym_LBRACK] = ACTIONS(3848), - [anon_sym_LPAREN] = ACTIONS(3850), - [anon_sym_DOLLAR] = ACTIONS(3852), - [anon_sym_LBRACE] = ACTIONS(3854), - [anon_sym_DOT_DOT] = ACTIONS(3856), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3858), - [anon_sym_DOT_DOT_LT] = ACTIONS(3858), - [anon_sym_null] = ACTIONS(3860), - [anon_sym_true] = ACTIONS(3862), - [anon_sym_false] = ACTIONS(3862), - [aux_sym__val_number_decimal_token1] = ACTIONS(3864), - [aux_sym__val_number_decimal_token2] = ACTIONS(3866), - [aux_sym__val_number_decimal_token3] = ACTIONS(3868), - [aux_sym__val_number_decimal_token4] = ACTIONS(3870), + [anon_sym_LBRACK] = ACTIONS(3857), + [anon_sym_LPAREN] = ACTIONS(3859), + [anon_sym_DOLLAR] = ACTIONS(3861), + [anon_sym_LBRACE] = ACTIONS(3863), + [anon_sym_DOT_DOT] = ACTIONS(3865), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3867), + [anon_sym_DOT_DOT_LT] = ACTIONS(3867), + [anon_sym_null] = ACTIONS(3869), + [anon_sym_true] = ACTIONS(3871), + [anon_sym_false] = ACTIONS(3871), + [aux_sym__val_number_decimal_token1] = ACTIONS(3873), + [aux_sym__val_number_decimal_token2] = ACTIONS(3875), + [aux_sym__val_number_decimal_token3] = ACTIONS(3877), + [aux_sym__val_number_decimal_token4] = ACTIONS(3879), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3872), - [aux_sym__val_number_token5] = ACTIONS(3872), - [aux_sym__val_number_token6] = ACTIONS(3872), + [aux_sym__val_number_token4] = ACTIONS(3881), + [aux_sym__val_number_token5] = ACTIONS(3881), + [aux_sym__val_number_token6] = ACTIONS(3881), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3874), + [sym_val_date] = ACTIONS(3883), [anon_sym_DQUOTE] = ACTIONS(1295), [sym__str_single_quotes] = ACTIONS(1297), [sym__str_back_ticks] = ACTIONS(1297), @@ -201744,7 +201744,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3212), + [aux_sym_unquoted_token1] = ACTIONS(3219), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(1299), }, @@ -201767,19 +201767,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1553), [anon_sym_LBRACK] = ACTIONS(1553), [anon_sym_LPAREN] = ACTIONS(1539), - [anon_sym_DOLLAR] = ACTIONS(2938), + [anon_sym_DOLLAR] = ACTIONS(2945), [anon_sym_DASH_DASH] = ACTIONS(1553), [anon_sym_DASH2] = ACTIONS(1539), [anon_sym_LBRACE] = ACTIONS(1553), [anon_sym_DOT_DOT] = ACTIONS(1539), - [anon_sym_LPAREN2] = ACTIONS(3972), - [anon_sym_DOT] = ACTIONS(3974), + [anon_sym_LPAREN2] = ACTIONS(3981), + [anon_sym_DOT] = ACTIONS(3983), [anon_sym_DOT_DOT_EQ] = ACTIONS(1553), [anon_sym_DOT_DOT_LT] = ACTIONS(1553), - [aux_sym__immediate_decimal_token1] = ACTIONS(3976), - [aux_sym__immediate_decimal_token3] = ACTIONS(3978), - [aux_sym__immediate_decimal_token4] = ACTIONS(3980), - [aux_sym__immediate_decimal_token5] = ACTIONS(3982), + [aux_sym__immediate_decimal_token1] = ACTIONS(3985), + [aux_sym__immediate_decimal_token3] = ACTIONS(3987), + [aux_sym__immediate_decimal_token4] = ACTIONS(3989), + [aux_sym__immediate_decimal_token5] = ACTIONS(3991), [anon_sym_null] = ACTIONS(1553), [anon_sym_true] = ACTIONS(1553), [anon_sym_false] = ACTIONS(1553), @@ -201879,7 +201879,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT_EQ2] = ACTIONS(937), [anon_sym_DOT_DOT_LT2] = ACTIONS(937), [anon_sym_COLON2] = ACTIONS(937), - [anon_sym_DOT2] = ACTIONS(3984), + [anon_sym_DOT2] = ACTIONS(3993), [anon_sym_err_GT] = ACTIONS(935), [anon_sym_out_GT] = ACTIONS(935), [anon_sym_e_GT] = ACTIONS(935), @@ -201917,19 +201917,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(1629), [anon_sym_LPAREN] = ACTIONS(1627), [anon_sym_RPAREN] = ACTIONS(1629), - [anon_sym_DOLLAR] = ACTIONS(3986), + [anon_sym_DOLLAR] = ACTIONS(3995), [anon_sym_DASH_DASH] = ACTIONS(1629), [anon_sym_DASH2] = ACTIONS(1627), [anon_sym_LBRACE] = ACTIONS(1629), [anon_sym_RBRACE] = ACTIONS(1629), [anon_sym_DOT_DOT] = ACTIONS(1627), - [anon_sym_LPAREN2] = ACTIONS(3988), + [anon_sym_LPAREN2] = ACTIONS(3997), [anon_sym_DOT_DOT_EQ] = ACTIONS(1629), [anon_sym_DOT_DOT_LT] = ACTIONS(1629), - [aux_sym__immediate_decimal_token1] = ACTIONS(3990), - [aux_sym__immediate_decimal_token3] = ACTIONS(3992), - [aux_sym__immediate_decimal_token4] = ACTIONS(3994), - [aux_sym__immediate_decimal_token5] = ACTIONS(3996), + [aux_sym__immediate_decimal_token1] = ACTIONS(3999), + [aux_sym__immediate_decimal_token3] = ACTIONS(4001), + [aux_sym__immediate_decimal_token4] = ACTIONS(4003), + [aux_sym__immediate_decimal_token5] = ACTIONS(4005), [anon_sym_null] = ACTIONS(1629), [anon_sym_true] = ACTIONS(1629), [anon_sym_false] = ACTIONS(1629), @@ -201998,14 +201998,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(1643), [anon_sym_RBRACE] = ACTIONS(1643), [anon_sym_DOT_DOT] = ACTIONS(1633), - [anon_sym_LPAREN2] = ACTIONS(3960), - [anon_sym_DOT] = ACTIONS(3998), + [anon_sym_LPAREN2] = ACTIONS(3969), + [anon_sym_DOT] = ACTIONS(4007), [anon_sym_DOT_DOT_EQ] = ACTIONS(1643), [anon_sym_DOT_DOT_LT] = ACTIONS(1643), - [aux_sym__immediate_decimal_token1] = ACTIONS(4000), - [aux_sym__immediate_decimal_token3] = ACTIONS(4002), - [aux_sym__immediate_decimal_token4] = ACTIONS(4004), - [aux_sym__immediate_decimal_token5] = ACTIONS(4006), + [aux_sym__immediate_decimal_token1] = ACTIONS(4009), + [aux_sym__immediate_decimal_token3] = ACTIONS(4011), + [aux_sym__immediate_decimal_token4] = ACTIONS(4013), + [aux_sym__immediate_decimal_token5] = ACTIONS(4015), [anon_sym_null] = ACTIONS(1643), [anon_sym_true] = ACTIONS(1643), [anon_sym_false] = ACTIONS(1643), @@ -202072,12 +202072,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT] = ACTIONS(1587), [anon_sym_LPAREN2] = ACTIONS(1589), [anon_sym_DOT_DOT2] = ACTIONS(1587), - [anon_sym_DOT] = ACTIONS(4008), + [anon_sym_DOT] = ACTIONS(4017), [anon_sym_DOT_DOT_EQ] = ACTIONS(1587), [anon_sym_DOT_DOT_LT] = ACTIONS(1587), [anon_sym_DOT_DOT_EQ2] = ACTIONS(1589), [anon_sym_DOT_DOT_LT2] = ACTIONS(1589), - [aux_sym__immediate_decimal_token2] = ACTIONS(4010), + [aux_sym__immediate_decimal_token2] = ACTIONS(4019), [anon_sym_null] = ACTIONS(1589), [anon_sym_true] = ACTIONS(1589), [anon_sym_false] = ACTIONS(1589), @@ -202151,8 +202151,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT_LT] = ACTIONS(1595), [anon_sym_DOT_DOT_EQ2] = ACTIONS(1597), [anon_sym_DOT_DOT_LT2] = ACTIONS(1597), - [aux_sym__immediate_decimal_token1] = ACTIONS(4012), - [aux_sym__immediate_decimal_token2] = ACTIONS(4014), + [aux_sym__immediate_decimal_token1] = ACTIONS(4021), + [aux_sym__immediate_decimal_token2] = ACTIONS(4023), [anon_sym_null] = ACTIONS(1597), [anon_sym_true] = ACTIONS(1597), [anon_sym_false] = ACTIONS(1597), @@ -202217,19 +202217,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(1553), [anon_sym_LPAREN] = ACTIONS(1539), [anon_sym_RPAREN] = ACTIONS(1553), - [anon_sym_DOLLAR] = ACTIONS(3986), + [anon_sym_DOLLAR] = ACTIONS(3995), [anon_sym_DASH_DASH] = ACTIONS(1553), [anon_sym_DASH2] = ACTIONS(1539), [anon_sym_LBRACE] = ACTIONS(1553), [anon_sym_RBRACE] = ACTIONS(1553), [anon_sym_DOT_DOT] = ACTIONS(1539), - [anon_sym_LPAREN2] = ACTIONS(3988), + [anon_sym_LPAREN2] = ACTIONS(3997), [anon_sym_DOT_DOT_EQ] = ACTIONS(1553), [anon_sym_DOT_DOT_LT] = ACTIONS(1553), - [aux_sym__immediate_decimal_token1] = ACTIONS(3990), - [aux_sym__immediate_decimal_token3] = ACTIONS(3992), - [aux_sym__immediate_decimal_token4] = ACTIONS(3994), - [aux_sym__immediate_decimal_token5] = ACTIONS(3996), + [aux_sym__immediate_decimal_token1] = ACTIONS(3999), + [aux_sym__immediate_decimal_token3] = ACTIONS(4001), + [aux_sym__immediate_decimal_token4] = ACTIONS(4003), + [aux_sym__immediate_decimal_token5] = ACTIONS(4005), [anon_sym_null] = ACTIONS(1553), [anon_sym_true] = ACTIONS(1553), [anon_sym_false] = ACTIONS(1553), @@ -202298,35 +202298,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unquoted] = STATE(4803), [sym__unquoted_anonymous_prefix] = STATE(7624), [sym_comment] = STATE(1244), - [anon_sym_LBRACK] = ACTIONS(4016), - [anon_sym_LPAREN] = ACTIONS(4018), + [anon_sym_LBRACK] = ACTIONS(4025), + [anon_sym_LPAREN] = ACTIONS(4027), [anon_sym_DOLLAR] = ACTIONS(2033), - [anon_sym_LBRACE] = ACTIONS(4020), - [anon_sym_DOT_DOT] = ACTIONS(4022), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4024), - [anon_sym_DOT_DOT_LT] = ACTIONS(4024), - [anon_sym_null] = ACTIONS(4026), - [anon_sym_true] = ACTIONS(4028), - [anon_sym_false] = ACTIONS(4028), + [anon_sym_LBRACE] = ACTIONS(4029), + [anon_sym_DOT_DOT] = ACTIONS(4031), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4033), + [anon_sym_DOT_DOT_LT] = ACTIONS(4033), + [anon_sym_null] = ACTIONS(4035), + [anon_sym_true] = ACTIONS(4037), + [anon_sym_false] = ACTIONS(4037), [aux_sym__val_number_decimal_token1] = ACTIONS(2053), - [aux_sym__val_number_decimal_token2] = ACTIONS(4030), - [aux_sym__val_number_decimal_token3] = ACTIONS(4032), - [aux_sym__val_number_decimal_token4] = ACTIONS(4034), - [aux_sym__val_number_token1] = ACTIONS(4036), - [aux_sym__val_number_token2] = ACTIONS(4036), - [aux_sym__val_number_token3] = ACTIONS(4036), - [aux_sym__val_number_token4] = ACTIONS(4038), - [aux_sym__val_number_token5] = ACTIONS(4038), - [aux_sym__val_number_token6] = ACTIONS(4038), + [aux_sym__val_number_decimal_token2] = ACTIONS(4039), + [aux_sym__val_number_decimal_token3] = ACTIONS(4041), + [aux_sym__val_number_decimal_token4] = ACTIONS(4043), + [aux_sym__val_number_token1] = ACTIONS(4045), + [aux_sym__val_number_token2] = ACTIONS(4045), + [aux_sym__val_number_token3] = ACTIONS(4045), + [aux_sym__val_number_token4] = ACTIONS(4047), + [aux_sym__val_number_token5] = ACTIONS(4047), + [aux_sym__val_number_token6] = ACTIONS(4047), [anon_sym_0b] = ACTIONS(2063), [anon_sym_0o] = ACTIONS(2065), [anon_sym_0x] = ACTIONS(2065), - [sym_val_date] = ACTIONS(4040), - [anon_sym_DQUOTE] = ACTIONS(4042), - [sym__str_single_quotes] = ACTIONS(4044), - [sym__str_back_ticks] = ACTIONS(4044), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4046), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4048), + [sym_val_date] = ACTIONS(4049), + [anon_sym_DQUOTE] = ACTIONS(4051), + [sym__str_single_quotes] = ACTIONS(4053), + [sym__str_back_ticks] = ACTIONS(4053), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4055), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4057), [anon_sym_err_GT] = ACTIONS(2741), [anon_sym_out_GT] = ACTIONS(2741), [anon_sym_e_GT] = ACTIONS(2741), @@ -202372,35 +202372,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unquoted] = STATE(5933), [sym__unquoted_anonymous_prefix] = STATE(7738), [sym_comment] = STATE(1245), - [anon_sym_LBRACK] = ACTIONS(4050), - [anon_sym_LPAREN] = ACTIONS(4052), - [anon_sym_DOLLAR] = ACTIONS(4054), - [anon_sym_LBRACE] = ACTIONS(4056), - [anon_sym_DOT_DOT] = ACTIONS(4058), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4060), - [anon_sym_DOT_DOT_LT] = ACTIONS(4060), - [anon_sym_null] = ACTIONS(4062), - [anon_sym_true] = ACTIONS(4064), - [anon_sym_false] = ACTIONS(4064), - [aux_sym__val_number_decimal_token1] = ACTIONS(4066), - [aux_sym__val_number_decimal_token2] = ACTIONS(4068), - [aux_sym__val_number_decimal_token3] = ACTIONS(4070), - [aux_sym__val_number_decimal_token4] = ACTIONS(4072), - [aux_sym__val_number_token1] = ACTIONS(3602), - [aux_sym__val_number_token2] = ACTIONS(3602), - [aux_sym__val_number_token3] = ACTIONS(3602), - [aux_sym__val_number_token4] = ACTIONS(4074), - [aux_sym__val_number_token5] = ACTIONS(4074), - [aux_sym__val_number_token6] = ACTIONS(4074), - [anon_sym_0b] = ACTIONS(3606), - [anon_sym_0o] = ACTIONS(3608), - [anon_sym_0x] = ACTIONS(3608), - [sym_val_date] = ACTIONS(4076), + [anon_sym_LBRACK] = ACTIONS(4059), + [anon_sym_LPAREN] = ACTIONS(4061), + [anon_sym_DOLLAR] = ACTIONS(4063), + [anon_sym_LBRACE] = ACTIONS(4065), + [anon_sym_DOT_DOT] = ACTIONS(4067), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4069), + [anon_sym_DOT_DOT_LT] = ACTIONS(4069), + [anon_sym_null] = ACTIONS(4071), + [anon_sym_true] = ACTIONS(4073), + [anon_sym_false] = ACTIONS(4073), + [aux_sym__val_number_decimal_token1] = ACTIONS(4075), + [aux_sym__val_number_decimal_token2] = ACTIONS(4077), + [aux_sym__val_number_decimal_token3] = ACTIONS(4079), + [aux_sym__val_number_decimal_token4] = ACTIONS(4081), + [aux_sym__val_number_token1] = ACTIONS(3611), + [aux_sym__val_number_token2] = ACTIONS(3611), + [aux_sym__val_number_token3] = ACTIONS(3611), + [aux_sym__val_number_token4] = ACTIONS(4083), + [aux_sym__val_number_token5] = ACTIONS(4083), + [aux_sym__val_number_token6] = ACTIONS(4083), + [anon_sym_0b] = ACTIONS(3615), + [anon_sym_0o] = ACTIONS(3617), + [anon_sym_0x] = ACTIONS(3617), + [sym_val_date] = ACTIONS(4085), [anon_sym_DQUOTE] = ACTIONS(1295), [sym__str_single_quotes] = ACTIONS(1297), [sym__str_back_ticks] = ACTIONS(1297), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3616), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3618), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3625), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3627), [anon_sym_err_GT] = ACTIONS(2741), [anon_sym_out_GT] = ACTIONS(2741), [anon_sym_e_GT] = ACTIONS(2741), @@ -202417,7 +202417,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(4078), + [aux_sym_unquoted_token1] = ACTIONS(4087), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(1299), }, @@ -202446,35 +202446,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unquoted] = STATE(1930), [sym__unquoted_anonymous_prefix] = STATE(7578), [sym_comment] = STATE(1246), - [anon_sym_LBRACK] = ACTIONS(2934), - [anon_sym_LPAREN] = ACTIONS(4080), - [anon_sym_DOLLAR] = ACTIONS(4082), - [anon_sym_LBRACE] = ACTIONS(2944), - [anon_sym_DOT_DOT] = ACTIONS(4084), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4086), - [anon_sym_DOT_DOT_LT] = ACTIONS(4086), - [anon_sym_null] = ACTIONS(4088), - [anon_sym_true] = ACTIONS(4090), - [anon_sym_false] = ACTIONS(4090), - [aux_sym__val_number_decimal_token1] = ACTIONS(4092), - [aux_sym__val_number_decimal_token2] = ACTIONS(4094), - [aux_sym__val_number_decimal_token3] = ACTIONS(4096), - [aux_sym__val_number_decimal_token4] = ACTIONS(4098), - [aux_sym__val_number_token1] = ACTIONS(2962), - [aux_sym__val_number_token2] = ACTIONS(2962), - [aux_sym__val_number_token3] = ACTIONS(2962), - [aux_sym__val_number_token4] = ACTIONS(4100), - [aux_sym__val_number_token5] = ACTIONS(4100), - [aux_sym__val_number_token6] = ACTIONS(4100), - [anon_sym_0b] = ACTIONS(2966), - [anon_sym_0o] = ACTIONS(2968), - [anon_sym_0x] = ACTIONS(2968), - [sym_val_date] = ACTIONS(4102), - [anon_sym_DQUOTE] = ACTIONS(2972), - [sym__str_single_quotes] = ACTIONS(2974), - [sym__str_back_ticks] = ACTIONS(2974), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2976), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2978), + [anon_sym_LBRACK] = ACTIONS(2941), + [anon_sym_LPAREN] = ACTIONS(4089), + [anon_sym_DOLLAR] = ACTIONS(4091), + [anon_sym_LBRACE] = ACTIONS(2951), + [anon_sym_DOT_DOT] = ACTIONS(4093), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4095), + [anon_sym_DOT_DOT_LT] = ACTIONS(4095), + [anon_sym_null] = ACTIONS(4097), + [anon_sym_true] = ACTIONS(4099), + [anon_sym_false] = ACTIONS(4099), + [aux_sym__val_number_decimal_token1] = ACTIONS(4101), + [aux_sym__val_number_decimal_token2] = ACTIONS(4103), + [aux_sym__val_number_decimal_token3] = ACTIONS(4105), + [aux_sym__val_number_decimal_token4] = ACTIONS(4107), + [aux_sym__val_number_token1] = ACTIONS(2969), + [aux_sym__val_number_token2] = ACTIONS(2969), + [aux_sym__val_number_token3] = ACTIONS(2969), + [aux_sym__val_number_token4] = ACTIONS(4109), + [aux_sym__val_number_token5] = ACTIONS(4109), + [aux_sym__val_number_token6] = ACTIONS(4109), + [anon_sym_0b] = ACTIONS(2973), + [anon_sym_0o] = ACTIONS(2975), + [anon_sym_0x] = ACTIONS(2975), + [sym_val_date] = ACTIONS(4111), + [anon_sym_DQUOTE] = ACTIONS(2979), + [sym__str_single_quotes] = ACTIONS(2981), + [sym__str_back_ticks] = ACTIONS(2981), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2983), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2985), [anon_sym_err_GT] = ACTIONS(2741), [anon_sym_out_GT] = ACTIONS(2741), [anon_sym_e_GT] = ACTIONS(2741), @@ -202491,9 +202491,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(4104), + [aux_sym_unquoted_token1] = ACTIONS(4113), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2982), + [sym_raw_string_begin] = ACTIONS(2989), }, [1247] = { [sym__val_range] = STATE(7536), @@ -202520,35 +202520,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unquoted] = STATE(5933), [sym__unquoted_anonymous_prefix] = STATE(7738), [sym_comment] = STATE(1247), - [anon_sym_LBRACK] = ACTIONS(4050), - [anon_sym_LPAREN] = ACTIONS(4052), - [anon_sym_DOLLAR] = ACTIONS(4106), - [anon_sym_LBRACE] = ACTIONS(4056), - [anon_sym_DOT_DOT] = ACTIONS(4058), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4060), - [anon_sym_DOT_DOT_LT] = ACTIONS(4060), - [anon_sym_null] = ACTIONS(4062), - [anon_sym_true] = ACTIONS(4064), - [anon_sym_false] = ACTIONS(4064), - [aux_sym__val_number_decimal_token1] = ACTIONS(4108), - [aux_sym__val_number_decimal_token2] = ACTIONS(4110), - [aux_sym__val_number_decimal_token3] = ACTIONS(4112), - [aux_sym__val_number_decimal_token4] = ACTIONS(4114), - [aux_sym__val_number_token1] = ACTIONS(3602), - [aux_sym__val_number_token2] = ACTIONS(3602), - [aux_sym__val_number_token3] = ACTIONS(3602), - [aux_sym__val_number_token4] = ACTIONS(4116), - [aux_sym__val_number_token5] = ACTIONS(4116), - [aux_sym__val_number_token6] = ACTIONS(4116), - [anon_sym_0b] = ACTIONS(3606), - [anon_sym_0o] = ACTIONS(3608), - [anon_sym_0x] = ACTIONS(3608), - [sym_val_date] = ACTIONS(4076), + [anon_sym_LBRACK] = ACTIONS(4059), + [anon_sym_LPAREN] = ACTIONS(4061), + [anon_sym_DOLLAR] = ACTIONS(4115), + [anon_sym_LBRACE] = ACTIONS(4065), + [anon_sym_DOT_DOT] = ACTIONS(4067), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4069), + [anon_sym_DOT_DOT_LT] = ACTIONS(4069), + [anon_sym_null] = ACTIONS(4071), + [anon_sym_true] = ACTIONS(4073), + [anon_sym_false] = ACTIONS(4073), + [aux_sym__val_number_decimal_token1] = ACTIONS(4117), + [aux_sym__val_number_decimal_token2] = ACTIONS(4119), + [aux_sym__val_number_decimal_token3] = ACTIONS(4121), + [aux_sym__val_number_decimal_token4] = ACTIONS(4123), + [aux_sym__val_number_token1] = ACTIONS(3611), + [aux_sym__val_number_token2] = ACTIONS(3611), + [aux_sym__val_number_token3] = ACTIONS(3611), + [aux_sym__val_number_token4] = ACTIONS(4125), + [aux_sym__val_number_token5] = ACTIONS(4125), + [aux_sym__val_number_token6] = ACTIONS(4125), + [anon_sym_0b] = ACTIONS(3615), + [anon_sym_0o] = ACTIONS(3617), + [anon_sym_0x] = ACTIONS(3617), + [sym_val_date] = ACTIONS(4085), [anon_sym_DQUOTE] = ACTIONS(1295), [sym__str_single_quotes] = ACTIONS(1297), [sym__str_back_ticks] = ACTIONS(1297), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3616), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3618), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3625), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3627), [anon_sym_err_GT] = ACTIONS(2741), [anon_sym_out_GT] = ACTIONS(2741), [anon_sym_e_GT] = ACTIONS(2741), @@ -202565,7 +202565,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(4078), + [aux_sym_unquoted_token1] = ACTIONS(4087), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(1299), }, @@ -202588,19 +202588,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1643), [anon_sym_LBRACK] = ACTIONS(1643), [anon_sym_LPAREN] = ACTIONS(1633), - [anon_sym_DOLLAR] = ACTIONS(2938), + [anon_sym_DOLLAR] = ACTIONS(2945), [anon_sym_DASH_DASH] = ACTIONS(1643), [anon_sym_DASH2] = ACTIONS(1633), [anon_sym_LBRACE] = ACTIONS(1643), [anon_sym_DOT_DOT] = ACTIONS(1633), - [anon_sym_LPAREN2] = ACTIONS(3972), - [anon_sym_DOT] = ACTIONS(4118), + [anon_sym_LPAREN2] = ACTIONS(3981), + [anon_sym_DOT] = ACTIONS(4127), [anon_sym_DOT_DOT_EQ] = ACTIONS(1643), [anon_sym_DOT_DOT_LT] = ACTIONS(1643), - [aux_sym__immediate_decimal_token1] = ACTIONS(4120), - [aux_sym__immediate_decimal_token3] = ACTIONS(4122), - [aux_sym__immediate_decimal_token4] = ACTIONS(4124), - [aux_sym__immediate_decimal_token5] = ACTIONS(4126), + [aux_sym__immediate_decimal_token1] = ACTIONS(4129), + [aux_sym__immediate_decimal_token3] = ACTIONS(4131), + [aux_sym__immediate_decimal_token4] = ACTIONS(4133), + [aux_sym__immediate_decimal_token5] = ACTIONS(4135), [anon_sym_null] = ACTIONS(1643), [anon_sym_true] = ACTIONS(1643), [anon_sym_false] = ACTIONS(1643), @@ -202668,30 +202668,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unquoted] = STATE(5913), [sym__unquoted_anonymous_prefix] = STATE(7445), [sym_comment] = STATE(1249), - [anon_sym_LBRACK] = ACTIONS(3848), - [anon_sym_LPAREN] = ACTIONS(4128), - [anon_sym_DOLLAR] = ACTIONS(3852), - [anon_sym_LBRACE] = ACTIONS(3854), - [anon_sym_DOT_DOT] = ACTIONS(4130), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4132), - [anon_sym_DOT_DOT_LT] = ACTIONS(4132), - [anon_sym_null] = ACTIONS(3860), - [anon_sym_true] = ACTIONS(3862), - [anon_sym_false] = ACTIONS(3862), - [aux_sym__val_number_decimal_token1] = ACTIONS(3864), - [aux_sym__val_number_decimal_token2] = ACTIONS(3866), - [aux_sym__val_number_decimal_token3] = ACTIONS(3868), - [aux_sym__val_number_decimal_token4] = ACTIONS(3870), + [anon_sym_LBRACK] = ACTIONS(3857), + [anon_sym_LPAREN] = ACTIONS(4137), + [anon_sym_DOLLAR] = ACTIONS(3861), + [anon_sym_LBRACE] = ACTIONS(3863), + [anon_sym_DOT_DOT] = ACTIONS(4139), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4141), + [anon_sym_DOT_DOT_LT] = ACTIONS(4141), + [anon_sym_null] = ACTIONS(3869), + [anon_sym_true] = ACTIONS(3871), + [anon_sym_false] = ACTIONS(3871), + [aux_sym__val_number_decimal_token1] = ACTIONS(3873), + [aux_sym__val_number_decimal_token2] = ACTIONS(3875), + [aux_sym__val_number_decimal_token3] = ACTIONS(3877), + [aux_sym__val_number_decimal_token4] = ACTIONS(3879), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3872), - [aux_sym__val_number_token5] = ACTIONS(3872), - [aux_sym__val_number_token6] = ACTIONS(3872), + [aux_sym__val_number_token4] = ACTIONS(3881), + [aux_sym__val_number_token5] = ACTIONS(3881), + [aux_sym__val_number_token6] = ACTIONS(3881), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3874), + [sym_val_date] = ACTIONS(3883), [anon_sym_DQUOTE] = ACTIONS(1295), [sym__str_single_quotes] = ACTIONS(1297), [sym__str_back_ticks] = ACTIONS(1297), @@ -202713,7 +202713,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3212), + [aux_sym_unquoted_token1] = ACTIONS(3219), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(1299), }, @@ -202772,7 +202772,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT_EQ2] = ACTIONS(950), [anon_sym_DOT_DOT_LT2] = ACTIONS(950), [anon_sym_COLON2] = ACTIONS(950), - [anon_sym_DOT2] = ACTIONS(3984), + [anon_sym_DOT2] = ACTIONS(3993), [anon_sym_err_GT] = ACTIONS(948), [anon_sym_out_GT] = ACTIONS(948), [anon_sym_e_GT] = ACTIONS(948), @@ -202846,7 +202846,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT_EQ2] = ACTIONS(943), [anon_sym_DOT_DOT_LT2] = ACTIONS(943), [anon_sym_COLON2] = ACTIONS(943), - [anon_sym_DOT2] = ACTIONS(4134), + [anon_sym_DOT2] = ACTIONS(4143), [anon_sym_err_GT] = ACTIONS(941), [anon_sym_out_GT] = ACTIONS(941), [anon_sym_e_GT] = ACTIONS(941), @@ -202890,35 +202890,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unquoted] = STATE(5913), [sym__unquoted_anonymous_prefix] = STATE(7738), [sym_comment] = STATE(1252), - [anon_sym_LBRACK] = ACTIONS(4050), - [anon_sym_LPAREN] = ACTIONS(4052), - [anon_sym_DOLLAR] = ACTIONS(4106), - [anon_sym_LBRACE] = ACTIONS(4056), - [anon_sym_DOT_DOT] = ACTIONS(4058), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4060), - [anon_sym_DOT_DOT_LT] = ACTIONS(4060), - [anon_sym_null] = ACTIONS(4062), - [anon_sym_true] = ACTIONS(4064), - [anon_sym_false] = ACTIONS(4064), - [aux_sym__val_number_decimal_token1] = ACTIONS(4108), - [aux_sym__val_number_decimal_token2] = ACTIONS(4110), - [aux_sym__val_number_decimal_token3] = ACTIONS(4112), - [aux_sym__val_number_decimal_token4] = ACTIONS(4114), - [aux_sym__val_number_token1] = ACTIONS(3602), - [aux_sym__val_number_token2] = ACTIONS(3602), - [aux_sym__val_number_token3] = ACTIONS(3602), - [aux_sym__val_number_token4] = ACTIONS(4116), - [aux_sym__val_number_token5] = ACTIONS(4116), - [aux_sym__val_number_token6] = ACTIONS(4116), - [anon_sym_0b] = ACTIONS(3606), - [anon_sym_0o] = ACTIONS(3608), - [anon_sym_0x] = ACTIONS(3608), - [sym_val_date] = ACTIONS(4076), + [anon_sym_LBRACK] = ACTIONS(4059), + [anon_sym_LPAREN] = ACTIONS(4061), + [anon_sym_DOLLAR] = ACTIONS(4115), + [anon_sym_LBRACE] = ACTIONS(4065), + [anon_sym_DOT_DOT] = ACTIONS(4067), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4069), + [anon_sym_DOT_DOT_LT] = ACTIONS(4069), + [anon_sym_null] = ACTIONS(4071), + [anon_sym_true] = ACTIONS(4073), + [anon_sym_false] = ACTIONS(4073), + [aux_sym__val_number_decimal_token1] = ACTIONS(4117), + [aux_sym__val_number_decimal_token2] = ACTIONS(4119), + [aux_sym__val_number_decimal_token3] = ACTIONS(4121), + [aux_sym__val_number_decimal_token4] = ACTIONS(4123), + [aux_sym__val_number_token1] = ACTIONS(3611), + [aux_sym__val_number_token2] = ACTIONS(3611), + [aux_sym__val_number_token3] = ACTIONS(3611), + [aux_sym__val_number_token4] = ACTIONS(4125), + [aux_sym__val_number_token5] = ACTIONS(4125), + [aux_sym__val_number_token6] = ACTIONS(4125), + [anon_sym_0b] = ACTIONS(3615), + [anon_sym_0o] = ACTIONS(3617), + [anon_sym_0x] = ACTIONS(3617), + [sym_val_date] = ACTIONS(4085), [anon_sym_DQUOTE] = ACTIONS(1295), [sym__str_single_quotes] = ACTIONS(1297), [sym__str_back_ticks] = ACTIONS(1297), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3616), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3618), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3625), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3627), [anon_sym_err_GT] = ACTIONS(2741), [anon_sym_out_GT] = ACTIONS(2741), [anon_sym_e_GT] = ACTIONS(2741), @@ -202935,7 +202935,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(4078), + [aux_sym_unquoted_token1] = ACTIONS(4087), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(1299), }, @@ -202958,18 +202958,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1553), [anon_sym_LBRACK] = ACTIONS(1553), [anon_sym_LPAREN] = ACTIONS(1539), - [anon_sym_DOLLAR] = ACTIONS(4082), + [anon_sym_DOLLAR] = ACTIONS(4091), [anon_sym_DASH_DASH] = ACTIONS(1553), [anon_sym_DASH2] = ACTIONS(1539), [anon_sym_LBRACE] = ACTIONS(1553), [anon_sym_DOT_DOT] = ACTIONS(1539), - [anon_sym_LPAREN2] = ACTIONS(4137), + [anon_sym_LPAREN2] = ACTIONS(4146), [anon_sym_DOT_DOT_EQ] = ACTIONS(1553), [anon_sym_DOT_DOT_LT] = ACTIONS(1553), - [aux_sym__immediate_decimal_token1] = ACTIONS(4139), - [aux_sym__immediate_decimal_token3] = ACTIONS(4141), - [aux_sym__immediate_decimal_token4] = ACTIONS(4143), - [aux_sym__immediate_decimal_token5] = ACTIONS(4145), + [aux_sym__immediate_decimal_token1] = ACTIONS(4148), + [aux_sym__immediate_decimal_token3] = ACTIONS(4150), + [aux_sym__immediate_decimal_token4] = ACTIONS(4152), + [aux_sym__immediate_decimal_token5] = ACTIONS(4154), [anon_sym_null] = ACTIONS(1553), [anon_sym_true] = ACTIONS(1553), [anon_sym_false] = ACTIONS(1553), @@ -203038,30 +203038,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unquoted] = STATE(5933), [sym__unquoted_anonymous_prefix] = STATE(7445), [sym_comment] = STATE(1254), - [anon_sym_LBRACK] = ACTIONS(3848), - [anon_sym_LPAREN] = ACTIONS(4128), - [anon_sym_DOLLAR] = ACTIONS(3852), - [anon_sym_LBRACE] = ACTIONS(3854), - [anon_sym_DOT_DOT] = ACTIONS(4130), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4132), - [anon_sym_DOT_DOT_LT] = ACTIONS(4132), - [anon_sym_null] = ACTIONS(3860), - [anon_sym_true] = ACTIONS(3862), - [anon_sym_false] = ACTIONS(3862), - [aux_sym__val_number_decimal_token1] = ACTIONS(3864), - [aux_sym__val_number_decimal_token2] = ACTIONS(3866), - [aux_sym__val_number_decimal_token3] = ACTIONS(3868), - [aux_sym__val_number_decimal_token4] = ACTIONS(3870), + [anon_sym_LBRACK] = ACTIONS(3857), + [anon_sym_LPAREN] = ACTIONS(4137), + [anon_sym_DOLLAR] = ACTIONS(3861), + [anon_sym_LBRACE] = ACTIONS(3863), + [anon_sym_DOT_DOT] = ACTIONS(4139), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4141), + [anon_sym_DOT_DOT_LT] = ACTIONS(4141), + [anon_sym_null] = ACTIONS(3869), + [anon_sym_true] = ACTIONS(3871), + [anon_sym_false] = ACTIONS(3871), + [aux_sym__val_number_decimal_token1] = ACTIONS(3873), + [aux_sym__val_number_decimal_token2] = ACTIONS(3875), + [aux_sym__val_number_decimal_token3] = ACTIONS(3877), + [aux_sym__val_number_decimal_token4] = ACTIONS(3879), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3872), - [aux_sym__val_number_token5] = ACTIONS(3872), - [aux_sym__val_number_token6] = ACTIONS(3872), + [aux_sym__val_number_token4] = ACTIONS(3881), + [aux_sym__val_number_token5] = ACTIONS(3881), + [aux_sym__val_number_token6] = ACTIONS(3881), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3874), + [sym_val_date] = ACTIONS(3883), [anon_sym_DQUOTE] = ACTIONS(1295), [sym__str_single_quotes] = ACTIONS(1297), [sym__str_back_ticks] = ACTIONS(1297), @@ -203083,7 +203083,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3212), + [aux_sym_unquoted_token1] = ACTIONS(3219), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(1299), }, @@ -203110,12 +203110,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT] = ACTIONS(1587), [anon_sym_LPAREN2] = ACTIONS(1589), [anon_sym_DOT_DOT2] = ACTIONS(1587), - [anon_sym_DOT] = ACTIONS(4147), + [anon_sym_DOT] = ACTIONS(4156), [anon_sym_DOT_DOT_EQ] = ACTIONS(1587), [anon_sym_DOT_DOT_LT] = ACTIONS(1587), [anon_sym_DOT_DOT_EQ2] = ACTIONS(1589), [anon_sym_DOT_DOT_LT2] = ACTIONS(1589), - [aux_sym__immediate_decimal_token2] = ACTIONS(4149), + [aux_sym__immediate_decimal_token2] = ACTIONS(4158), [anon_sym_null] = ACTIONS(1589), [anon_sym_true] = ACTIONS(1589), [anon_sym_false] = ACTIONS(1589), @@ -203186,35 +203186,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unquoted] = STATE(1938), [sym__unquoted_anonymous_prefix] = STATE(7578), [sym_comment] = STATE(1256), - [anon_sym_LBRACK] = ACTIONS(2934), - [anon_sym_LPAREN] = ACTIONS(4080), - [anon_sym_DOLLAR] = ACTIONS(4082), - [anon_sym_LBRACE] = ACTIONS(2944), - [anon_sym_DOT_DOT] = ACTIONS(4084), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4086), - [anon_sym_DOT_DOT_LT] = ACTIONS(4086), - [anon_sym_null] = ACTIONS(4088), - [anon_sym_true] = ACTIONS(4090), - [anon_sym_false] = ACTIONS(4090), - [aux_sym__val_number_decimal_token1] = ACTIONS(4092), - [aux_sym__val_number_decimal_token2] = ACTIONS(4094), - [aux_sym__val_number_decimal_token3] = ACTIONS(4096), - [aux_sym__val_number_decimal_token4] = ACTIONS(4098), - [aux_sym__val_number_token1] = ACTIONS(2962), - [aux_sym__val_number_token2] = ACTIONS(2962), - [aux_sym__val_number_token3] = ACTIONS(2962), - [aux_sym__val_number_token4] = ACTIONS(4100), - [aux_sym__val_number_token5] = ACTIONS(4100), - [aux_sym__val_number_token6] = ACTIONS(4100), - [anon_sym_0b] = ACTIONS(2966), - [anon_sym_0o] = ACTIONS(2968), - [anon_sym_0x] = ACTIONS(2968), - [sym_val_date] = ACTIONS(4102), - [anon_sym_DQUOTE] = ACTIONS(2972), - [sym__str_single_quotes] = ACTIONS(2974), - [sym__str_back_ticks] = ACTIONS(2974), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2976), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2978), + [anon_sym_LBRACK] = ACTIONS(2941), + [anon_sym_LPAREN] = ACTIONS(4089), + [anon_sym_DOLLAR] = ACTIONS(4091), + [anon_sym_LBRACE] = ACTIONS(2951), + [anon_sym_DOT_DOT] = ACTIONS(4093), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4095), + [anon_sym_DOT_DOT_LT] = ACTIONS(4095), + [anon_sym_null] = ACTIONS(4097), + [anon_sym_true] = ACTIONS(4099), + [anon_sym_false] = ACTIONS(4099), + [aux_sym__val_number_decimal_token1] = ACTIONS(4101), + [aux_sym__val_number_decimal_token2] = ACTIONS(4103), + [aux_sym__val_number_decimal_token3] = ACTIONS(4105), + [aux_sym__val_number_decimal_token4] = ACTIONS(4107), + [aux_sym__val_number_token1] = ACTIONS(2969), + [aux_sym__val_number_token2] = ACTIONS(2969), + [aux_sym__val_number_token3] = ACTIONS(2969), + [aux_sym__val_number_token4] = ACTIONS(4109), + [aux_sym__val_number_token5] = ACTIONS(4109), + [aux_sym__val_number_token6] = ACTIONS(4109), + [anon_sym_0b] = ACTIONS(2973), + [anon_sym_0o] = ACTIONS(2975), + [anon_sym_0x] = ACTIONS(2975), + [sym_val_date] = ACTIONS(4111), + [anon_sym_DQUOTE] = ACTIONS(2979), + [sym__str_single_quotes] = ACTIONS(2981), + [sym__str_back_ticks] = ACTIONS(2981), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2983), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2985), [anon_sym_err_GT] = ACTIONS(2741), [anon_sym_out_GT] = ACTIONS(2741), [anon_sym_e_GT] = ACTIONS(2741), @@ -203231,9 +203231,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(4104), + [aux_sym_unquoted_token1] = ACTIONS(4113), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2982), + [sym_raw_string_begin] = ACTIONS(2989), }, [1257] = { [sym__val_range] = STATE(7536), @@ -203260,35 +203260,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unquoted] = STATE(5933), [sym__unquoted_anonymous_prefix] = STATE(7738), [sym_comment] = STATE(1257), - [anon_sym_LBRACK] = ACTIONS(4050), - [anon_sym_LPAREN] = ACTIONS(4052), - [anon_sym_DOLLAR] = ACTIONS(4106), - [anon_sym_LBRACE] = ACTIONS(4056), - [anon_sym_DOT_DOT] = ACTIONS(4058), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4060), - [anon_sym_DOT_DOT_LT] = ACTIONS(4060), - [anon_sym_null] = ACTIONS(4151), - [anon_sym_true] = ACTIONS(4153), - [anon_sym_false] = ACTIONS(4153), - [aux_sym__val_number_decimal_token1] = ACTIONS(4155), - [aux_sym__val_number_decimal_token2] = ACTIONS(4157), - [aux_sym__val_number_decimal_token3] = ACTIONS(4159), - [aux_sym__val_number_decimal_token4] = ACTIONS(4161), - [aux_sym__val_number_token1] = ACTIONS(3602), - [aux_sym__val_number_token2] = ACTIONS(3602), - [aux_sym__val_number_token3] = ACTIONS(3602), - [aux_sym__val_number_token4] = ACTIONS(4163), - [aux_sym__val_number_token5] = ACTIONS(4163), - [aux_sym__val_number_token6] = ACTIONS(4163), - [anon_sym_0b] = ACTIONS(3606), - [anon_sym_0o] = ACTIONS(3608), - [anon_sym_0x] = ACTIONS(3608), - [sym_val_date] = ACTIONS(4165), + [anon_sym_LBRACK] = ACTIONS(4059), + [anon_sym_LPAREN] = ACTIONS(4061), + [anon_sym_DOLLAR] = ACTIONS(4115), + [anon_sym_LBRACE] = ACTIONS(4065), + [anon_sym_DOT_DOT] = ACTIONS(4067), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4069), + [anon_sym_DOT_DOT_LT] = ACTIONS(4069), + [anon_sym_null] = ACTIONS(4160), + [anon_sym_true] = ACTIONS(4162), + [anon_sym_false] = ACTIONS(4162), + [aux_sym__val_number_decimal_token1] = ACTIONS(4164), + [aux_sym__val_number_decimal_token2] = ACTIONS(4166), + [aux_sym__val_number_decimal_token3] = ACTIONS(4168), + [aux_sym__val_number_decimal_token4] = ACTIONS(4170), + [aux_sym__val_number_token1] = ACTIONS(3611), + [aux_sym__val_number_token2] = ACTIONS(3611), + [aux_sym__val_number_token3] = ACTIONS(3611), + [aux_sym__val_number_token4] = ACTIONS(4172), + [aux_sym__val_number_token5] = ACTIONS(4172), + [aux_sym__val_number_token6] = ACTIONS(4172), + [anon_sym_0b] = ACTIONS(3615), + [anon_sym_0o] = ACTIONS(3617), + [anon_sym_0x] = ACTIONS(3617), + [sym_val_date] = ACTIONS(4174), [anon_sym_DQUOTE] = ACTIONS(1295), [sym__str_single_quotes] = ACTIONS(1297), [sym__str_back_ticks] = ACTIONS(1297), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3616), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3618), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3625), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3627), [anon_sym_err_GT] = ACTIONS(2741), [anon_sym_out_GT] = ACTIONS(2741), [anon_sym_e_GT] = ACTIONS(2741), @@ -203305,7 +203305,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(4078), + [aux_sym_unquoted_token1] = ACTIONS(4087), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(1299), }, @@ -203334,35 +203334,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unquoted] = STATE(1943), [sym__unquoted_anonymous_prefix] = STATE(7578), [sym_comment] = STATE(1258), - [anon_sym_LBRACK] = ACTIONS(2934), - [anon_sym_LPAREN] = ACTIONS(4080), - [anon_sym_DOLLAR] = ACTIONS(4082), - [anon_sym_LBRACE] = ACTIONS(2944), - [anon_sym_DOT_DOT] = ACTIONS(4084), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4086), - [anon_sym_DOT_DOT_LT] = ACTIONS(4086), - [anon_sym_null] = ACTIONS(4088), - [anon_sym_true] = ACTIONS(4090), - [anon_sym_false] = ACTIONS(4090), - [aux_sym__val_number_decimal_token1] = ACTIONS(4092), - [aux_sym__val_number_decimal_token2] = ACTIONS(4094), - [aux_sym__val_number_decimal_token3] = ACTIONS(4096), - [aux_sym__val_number_decimal_token4] = ACTIONS(4098), - [aux_sym__val_number_token1] = ACTIONS(2962), - [aux_sym__val_number_token2] = ACTIONS(2962), - [aux_sym__val_number_token3] = ACTIONS(2962), - [aux_sym__val_number_token4] = ACTIONS(4100), - [aux_sym__val_number_token5] = ACTIONS(4100), - [aux_sym__val_number_token6] = ACTIONS(4100), - [anon_sym_0b] = ACTIONS(2966), - [anon_sym_0o] = ACTIONS(2968), - [anon_sym_0x] = ACTIONS(2968), - [sym_val_date] = ACTIONS(4102), - [anon_sym_DQUOTE] = ACTIONS(2972), - [sym__str_single_quotes] = ACTIONS(2974), - [sym__str_back_ticks] = ACTIONS(2974), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2976), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2978), + [anon_sym_LBRACK] = ACTIONS(2941), + [anon_sym_LPAREN] = ACTIONS(4089), + [anon_sym_DOLLAR] = ACTIONS(4091), + [anon_sym_LBRACE] = ACTIONS(2951), + [anon_sym_DOT_DOT] = ACTIONS(4093), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4095), + [anon_sym_DOT_DOT_LT] = ACTIONS(4095), + [anon_sym_null] = ACTIONS(4097), + [anon_sym_true] = ACTIONS(4099), + [anon_sym_false] = ACTIONS(4099), + [aux_sym__val_number_decimal_token1] = ACTIONS(4101), + [aux_sym__val_number_decimal_token2] = ACTIONS(4103), + [aux_sym__val_number_decimal_token3] = ACTIONS(4105), + [aux_sym__val_number_decimal_token4] = ACTIONS(4107), + [aux_sym__val_number_token1] = ACTIONS(2969), + [aux_sym__val_number_token2] = ACTIONS(2969), + [aux_sym__val_number_token3] = ACTIONS(2969), + [aux_sym__val_number_token4] = ACTIONS(4109), + [aux_sym__val_number_token5] = ACTIONS(4109), + [aux_sym__val_number_token6] = ACTIONS(4109), + [anon_sym_0b] = ACTIONS(2973), + [anon_sym_0o] = ACTIONS(2975), + [anon_sym_0x] = ACTIONS(2975), + [sym_val_date] = ACTIONS(4111), + [anon_sym_DQUOTE] = ACTIONS(2979), + [sym__str_single_quotes] = ACTIONS(2981), + [sym__str_back_ticks] = ACTIONS(2981), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2983), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2985), [anon_sym_err_GT] = ACTIONS(2741), [anon_sym_out_GT] = ACTIONS(2741), [anon_sym_e_GT] = ACTIONS(2741), @@ -203379,9 +203379,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(4104), + [aux_sym_unquoted_token1] = ACTIONS(4113), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2982), + [sym_raw_string_begin] = ACTIONS(2989), }, [1259] = { [sym__val_range] = STATE(7536), @@ -203408,35 +203408,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unquoted] = STATE(5989), [sym__unquoted_anonymous_prefix] = STATE(7738), [sym_comment] = STATE(1259), - [anon_sym_LBRACK] = ACTIONS(4050), - [anon_sym_LPAREN] = ACTIONS(4052), - [anon_sym_DOLLAR] = ACTIONS(4106), - [anon_sym_LBRACE] = ACTIONS(4056), - [anon_sym_DOT_DOT] = ACTIONS(4058), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4060), - [anon_sym_DOT_DOT_LT] = ACTIONS(4060), - [anon_sym_null] = ACTIONS(4151), - [anon_sym_true] = ACTIONS(4153), - [anon_sym_false] = ACTIONS(4153), - [aux_sym__val_number_decimal_token1] = ACTIONS(4155), - [aux_sym__val_number_decimal_token2] = ACTIONS(4157), - [aux_sym__val_number_decimal_token3] = ACTIONS(4159), - [aux_sym__val_number_decimal_token4] = ACTIONS(4161), - [aux_sym__val_number_token1] = ACTIONS(3602), - [aux_sym__val_number_token2] = ACTIONS(3602), - [aux_sym__val_number_token3] = ACTIONS(3602), - [aux_sym__val_number_token4] = ACTIONS(4163), - [aux_sym__val_number_token5] = ACTIONS(4163), - [aux_sym__val_number_token6] = ACTIONS(4163), - [anon_sym_0b] = ACTIONS(3606), - [anon_sym_0o] = ACTIONS(3608), - [anon_sym_0x] = ACTIONS(3608), - [sym_val_date] = ACTIONS(4165), + [anon_sym_LBRACK] = ACTIONS(4059), + [anon_sym_LPAREN] = ACTIONS(4061), + [anon_sym_DOLLAR] = ACTIONS(4115), + [anon_sym_LBRACE] = ACTIONS(4065), + [anon_sym_DOT_DOT] = ACTIONS(4067), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4069), + [anon_sym_DOT_DOT_LT] = ACTIONS(4069), + [anon_sym_null] = ACTIONS(4160), + [anon_sym_true] = ACTIONS(4162), + [anon_sym_false] = ACTIONS(4162), + [aux_sym__val_number_decimal_token1] = ACTIONS(4164), + [aux_sym__val_number_decimal_token2] = ACTIONS(4166), + [aux_sym__val_number_decimal_token3] = ACTIONS(4168), + [aux_sym__val_number_decimal_token4] = ACTIONS(4170), + [aux_sym__val_number_token1] = ACTIONS(3611), + [aux_sym__val_number_token2] = ACTIONS(3611), + [aux_sym__val_number_token3] = ACTIONS(3611), + [aux_sym__val_number_token4] = ACTIONS(4172), + [aux_sym__val_number_token5] = ACTIONS(4172), + [aux_sym__val_number_token6] = ACTIONS(4172), + [anon_sym_0b] = ACTIONS(3615), + [anon_sym_0o] = ACTIONS(3617), + [anon_sym_0x] = ACTIONS(3617), + [sym_val_date] = ACTIONS(4174), [anon_sym_DQUOTE] = ACTIONS(1295), [sym__str_single_quotes] = ACTIONS(1297), [sym__str_back_ticks] = ACTIONS(1297), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3616), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3618), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3625), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3627), [anon_sym_err_GT] = ACTIONS(2741), [anon_sym_out_GT] = ACTIONS(2741), [anon_sym_e_GT] = ACTIONS(2741), @@ -203453,7 +203453,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(4078), + [aux_sym_unquoted_token1] = ACTIONS(4087), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(1299), }, @@ -203476,18 +203476,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1629), [anon_sym_LBRACK] = ACTIONS(1629), [anon_sym_LPAREN] = ACTIONS(1627), - [anon_sym_DOLLAR] = ACTIONS(4082), + [anon_sym_DOLLAR] = ACTIONS(4091), [anon_sym_DASH_DASH] = ACTIONS(1629), [anon_sym_DASH2] = ACTIONS(1627), [anon_sym_LBRACE] = ACTIONS(1629), [anon_sym_DOT_DOT] = ACTIONS(1627), - [anon_sym_LPAREN2] = ACTIONS(4137), + [anon_sym_LPAREN2] = ACTIONS(4146), [anon_sym_DOT_DOT_EQ] = ACTIONS(1629), [anon_sym_DOT_DOT_LT] = ACTIONS(1629), - [aux_sym__immediate_decimal_token1] = ACTIONS(4139), - [aux_sym__immediate_decimal_token3] = ACTIONS(4141), - [aux_sym__immediate_decimal_token4] = ACTIONS(4143), - [aux_sym__immediate_decimal_token5] = ACTIONS(4145), + [aux_sym__immediate_decimal_token1] = ACTIONS(4148), + [aux_sym__immediate_decimal_token3] = ACTIONS(4150), + [aux_sym__immediate_decimal_token4] = ACTIONS(4152), + [aux_sym__immediate_decimal_token5] = ACTIONS(4154), [anon_sym_null] = ACTIONS(1629), [anon_sym_true] = ACTIONS(1629), [anon_sym_false] = ACTIONS(1629), @@ -203558,8 +203558,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT_LT] = ACTIONS(1595), [anon_sym_DOT_DOT_EQ2] = ACTIONS(1597), [anon_sym_DOT_DOT_LT2] = ACTIONS(1597), - [aux_sym__immediate_decimal_token1] = ACTIONS(4167), - [aux_sym__immediate_decimal_token2] = ACTIONS(4169), + [aux_sym__immediate_decimal_token1] = ACTIONS(4176), + [aux_sym__immediate_decimal_token2] = ACTIONS(4178), [anon_sym_null] = ACTIONS(1597), [anon_sym_true] = ACTIONS(1597), [anon_sym_false] = ACTIONS(1597), @@ -203628,12 +203628,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_RBRACE] = ACTIONS(1589), [anon_sym_DOT_DOT] = ACTIONS(1587), [anon_sym_DOT_DOT2] = ACTIONS(1587), - [anon_sym_DOT] = ACTIONS(4171), + [anon_sym_DOT] = ACTIONS(4180), [anon_sym_DOT_DOT_EQ] = ACTIONS(1587), [anon_sym_DOT_DOT_LT] = ACTIONS(1587), [anon_sym_DOT_DOT_EQ2] = ACTIONS(1589), [anon_sym_DOT_DOT_LT2] = ACTIONS(1589), - [aux_sym__immediate_decimal_token2] = ACTIONS(4173), + [aux_sym__immediate_decimal_token2] = ACTIONS(4182), [anon_sym_null] = ACTIONS(1589), [anon_sym_true] = ACTIONS(1589), [anon_sym_false] = ACTIONS(1589), @@ -203704,35 +203704,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unquoted] = STATE(5913), [sym__unquoted_anonymous_prefix] = STATE(7738), [sym_comment] = STATE(1263), - [anon_sym_LBRACK] = ACTIONS(4050), - [anon_sym_LPAREN] = ACTIONS(4052), - [anon_sym_DOLLAR] = ACTIONS(4106), - [anon_sym_LBRACE] = ACTIONS(4056), - [anon_sym_DOT_DOT] = ACTIONS(4058), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4060), - [anon_sym_DOT_DOT_LT] = ACTIONS(4060), - [anon_sym_null] = ACTIONS(4151), - [anon_sym_true] = ACTIONS(4153), - [anon_sym_false] = ACTIONS(4153), - [aux_sym__val_number_decimal_token1] = ACTIONS(4155), - [aux_sym__val_number_decimal_token2] = ACTIONS(4157), - [aux_sym__val_number_decimal_token3] = ACTIONS(4159), - [aux_sym__val_number_decimal_token4] = ACTIONS(4161), - [aux_sym__val_number_token1] = ACTIONS(3602), - [aux_sym__val_number_token2] = ACTIONS(3602), - [aux_sym__val_number_token3] = ACTIONS(3602), - [aux_sym__val_number_token4] = ACTIONS(4163), - [aux_sym__val_number_token5] = ACTIONS(4163), - [aux_sym__val_number_token6] = ACTIONS(4163), - [anon_sym_0b] = ACTIONS(3606), - [anon_sym_0o] = ACTIONS(3608), - [anon_sym_0x] = ACTIONS(3608), - [sym_val_date] = ACTIONS(4165), + [anon_sym_LBRACK] = ACTIONS(4059), + [anon_sym_LPAREN] = ACTIONS(4061), + [anon_sym_DOLLAR] = ACTIONS(4115), + [anon_sym_LBRACE] = ACTIONS(4065), + [anon_sym_DOT_DOT] = ACTIONS(4067), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4069), + [anon_sym_DOT_DOT_LT] = ACTIONS(4069), + [anon_sym_null] = ACTIONS(4160), + [anon_sym_true] = ACTIONS(4162), + [anon_sym_false] = ACTIONS(4162), + [aux_sym__val_number_decimal_token1] = ACTIONS(4164), + [aux_sym__val_number_decimal_token2] = ACTIONS(4166), + [aux_sym__val_number_decimal_token3] = ACTIONS(4168), + [aux_sym__val_number_decimal_token4] = ACTIONS(4170), + [aux_sym__val_number_token1] = ACTIONS(3611), + [aux_sym__val_number_token2] = ACTIONS(3611), + [aux_sym__val_number_token3] = ACTIONS(3611), + [aux_sym__val_number_token4] = ACTIONS(4172), + [aux_sym__val_number_token5] = ACTIONS(4172), + [aux_sym__val_number_token6] = ACTIONS(4172), + [anon_sym_0b] = ACTIONS(3615), + [anon_sym_0o] = ACTIONS(3617), + [anon_sym_0x] = ACTIONS(3617), + [sym_val_date] = ACTIONS(4174), [anon_sym_DQUOTE] = ACTIONS(1295), [sym__str_single_quotes] = ACTIONS(1297), [sym__str_back_ticks] = ACTIONS(1297), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3616), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3618), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3625), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3627), [anon_sym_err_GT] = ACTIONS(2741), [anon_sym_out_GT] = ACTIONS(2741), [anon_sym_e_GT] = ACTIONS(2741), @@ -203749,7 +203749,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(4078), + [aux_sym_unquoted_token1] = ACTIONS(4087), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(1299), }, @@ -203778,35 +203778,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unquoted] = STATE(4678), [sym__unquoted_anonymous_prefix] = STATE(7624), [sym_comment] = STATE(1264), - [anon_sym_LBRACK] = ACTIONS(4016), - [anon_sym_LPAREN] = ACTIONS(4018), + [anon_sym_LBRACK] = ACTIONS(4025), + [anon_sym_LPAREN] = ACTIONS(4027), [anon_sym_DOLLAR] = ACTIONS(2033), - [anon_sym_LBRACE] = ACTIONS(4020), - [anon_sym_DOT_DOT] = ACTIONS(4022), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4024), - [anon_sym_DOT_DOT_LT] = ACTIONS(4024), - [anon_sym_null] = ACTIONS(4026), - [anon_sym_true] = ACTIONS(4028), - [anon_sym_false] = ACTIONS(4028), + [anon_sym_LBRACE] = ACTIONS(4029), + [anon_sym_DOT_DOT] = ACTIONS(4031), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4033), + [anon_sym_DOT_DOT_LT] = ACTIONS(4033), + [anon_sym_null] = ACTIONS(4035), + [anon_sym_true] = ACTIONS(4037), + [anon_sym_false] = ACTIONS(4037), [aux_sym__val_number_decimal_token1] = ACTIONS(2053), - [aux_sym__val_number_decimal_token2] = ACTIONS(4030), - [aux_sym__val_number_decimal_token3] = ACTIONS(4032), - [aux_sym__val_number_decimal_token4] = ACTIONS(4034), - [aux_sym__val_number_token1] = ACTIONS(4036), - [aux_sym__val_number_token2] = ACTIONS(4036), - [aux_sym__val_number_token3] = ACTIONS(4036), - [aux_sym__val_number_token4] = ACTIONS(4038), - [aux_sym__val_number_token5] = ACTIONS(4038), - [aux_sym__val_number_token6] = ACTIONS(4038), + [aux_sym__val_number_decimal_token2] = ACTIONS(4039), + [aux_sym__val_number_decimal_token3] = ACTIONS(4041), + [aux_sym__val_number_decimal_token4] = ACTIONS(4043), + [aux_sym__val_number_token1] = ACTIONS(4045), + [aux_sym__val_number_token2] = ACTIONS(4045), + [aux_sym__val_number_token3] = ACTIONS(4045), + [aux_sym__val_number_token4] = ACTIONS(4047), + [aux_sym__val_number_token5] = ACTIONS(4047), + [aux_sym__val_number_token6] = ACTIONS(4047), [anon_sym_0b] = ACTIONS(2063), [anon_sym_0o] = ACTIONS(2065), [anon_sym_0x] = ACTIONS(2065), - [sym_val_date] = ACTIONS(4040), - [anon_sym_DQUOTE] = ACTIONS(4042), - [sym__str_single_quotes] = ACTIONS(4044), - [sym__str_back_ticks] = ACTIONS(4044), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4046), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4048), + [sym_val_date] = ACTIONS(4049), + [anon_sym_DQUOTE] = ACTIONS(4051), + [sym__str_single_quotes] = ACTIONS(4053), + [sym__str_back_ticks] = ACTIONS(4053), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4055), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4057), [anon_sym_err_GT] = ACTIONS(2741), [anon_sym_out_GT] = ACTIONS(2741), [anon_sym_e_GT] = ACTIONS(2741), @@ -203852,35 +203852,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unquoted] = STATE(5814), [sym__unquoted_anonymous_prefix] = STATE(7738), [sym_comment] = STATE(1265), - [anon_sym_LBRACK] = ACTIONS(4050), - [anon_sym_LPAREN] = ACTIONS(4052), - [anon_sym_DOLLAR] = ACTIONS(4106), - [anon_sym_LBRACE] = ACTIONS(4056), - [anon_sym_DOT_DOT] = ACTIONS(4058), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4060), - [anon_sym_DOT_DOT_LT] = ACTIONS(4060), - [anon_sym_null] = ACTIONS(4151), - [anon_sym_true] = ACTIONS(4153), - [anon_sym_false] = ACTIONS(4153), - [aux_sym__val_number_decimal_token1] = ACTIONS(4155), - [aux_sym__val_number_decimal_token2] = ACTIONS(4157), - [aux_sym__val_number_decimal_token3] = ACTIONS(4159), - [aux_sym__val_number_decimal_token4] = ACTIONS(4161), - [aux_sym__val_number_token1] = ACTIONS(3602), - [aux_sym__val_number_token2] = ACTIONS(3602), - [aux_sym__val_number_token3] = ACTIONS(3602), - [aux_sym__val_number_token4] = ACTIONS(4163), - [aux_sym__val_number_token5] = ACTIONS(4163), - [aux_sym__val_number_token6] = ACTIONS(4163), - [anon_sym_0b] = ACTIONS(3606), - [anon_sym_0o] = ACTIONS(3608), - [anon_sym_0x] = ACTIONS(3608), - [sym_val_date] = ACTIONS(4165), + [anon_sym_LBRACK] = ACTIONS(4059), + [anon_sym_LPAREN] = ACTIONS(4061), + [anon_sym_DOLLAR] = ACTIONS(4115), + [anon_sym_LBRACE] = ACTIONS(4065), + [anon_sym_DOT_DOT] = ACTIONS(4067), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4069), + [anon_sym_DOT_DOT_LT] = ACTIONS(4069), + [anon_sym_null] = ACTIONS(4160), + [anon_sym_true] = ACTIONS(4162), + [anon_sym_false] = ACTIONS(4162), + [aux_sym__val_number_decimal_token1] = ACTIONS(4164), + [aux_sym__val_number_decimal_token2] = ACTIONS(4166), + [aux_sym__val_number_decimal_token3] = ACTIONS(4168), + [aux_sym__val_number_decimal_token4] = ACTIONS(4170), + [aux_sym__val_number_token1] = ACTIONS(3611), + [aux_sym__val_number_token2] = ACTIONS(3611), + [aux_sym__val_number_token3] = ACTIONS(3611), + [aux_sym__val_number_token4] = ACTIONS(4172), + [aux_sym__val_number_token5] = ACTIONS(4172), + [aux_sym__val_number_token6] = ACTIONS(4172), + [anon_sym_0b] = ACTIONS(3615), + [anon_sym_0o] = ACTIONS(3617), + [anon_sym_0x] = ACTIONS(3617), + [sym_val_date] = ACTIONS(4174), [anon_sym_DQUOTE] = ACTIONS(1295), [sym__str_single_quotes] = ACTIONS(1297), [sym__str_back_ticks] = ACTIONS(1297), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3616), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3618), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3625), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3627), [anon_sym_err_GT] = ACTIONS(2741), [anon_sym_out_GT] = ACTIONS(2741), [anon_sym_e_GT] = ACTIONS(2741), @@ -203897,7 +203897,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(4078), + [aux_sym_unquoted_token1] = ACTIONS(4087), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(1299), }, @@ -203926,35 +203926,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unquoted] = STATE(4580), [sym__unquoted_anonymous_prefix] = STATE(7624), [sym_comment] = STATE(1266), - [anon_sym_LBRACK] = ACTIONS(4016), - [anon_sym_LPAREN] = ACTIONS(4018), + [anon_sym_LBRACK] = ACTIONS(4025), + [anon_sym_LPAREN] = ACTIONS(4027), [anon_sym_DOLLAR] = ACTIONS(2033), - [anon_sym_LBRACE] = ACTIONS(4020), - [anon_sym_DOT_DOT] = ACTIONS(4022), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4024), - [anon_sym_DOT_DOT_LT] = ACTIONS(4024), - [anon_sym_null] = ACTIONS(4026), - [anon_sym_true] = ACTIONS(4028), - [anon_sym_false] = ACTIONS(4028), + [anon_sym_LBRACE] = ACTIONS(4029), + [anon_sym_DOT_DOT] = ACTIONS(4031), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4033), + [anon_sym_DOT_DOT_LT] = ACTIONS(4033), + [anon_sym_null] = ACTIONS(4035), + [anon_sym_true] = ACTIONS(4037), + [anon_sym_false] = ACTIONS(4037), [aux_sym__val_number_decimal_token1] = ACTIONS(2053), - [aux_sym__val_number_decimal_token2] = ACTIONS(4030), - [aux_sym__val_number_decimal_token3] = ACTIONS(4032), - [aux_sym__val_number_decimal_token4] = ACTIONS(4034), - [aux_sym__val_number_token1] = ACTIONS(4036), - [aux_sym__val_number_token2] = ACTIONS(4036), - [aux_sym__val_number_token3] = ACTIONS(4036), - [aux_sym__val_number_token4] = ACTIONS(4038), - [aux_sym__val_number_token5] = ACTIONS(4038), - [aux_sym__val_number_token6] = ACTIONS(4038), + [aux_sym__val_number_decimal_token2] = ACTIONS(4039), + [aux_sym__val_number_decimal_token3] = ACTIONS(4041), + [aux_sym__val_number_decimal_token4] = ACTIONS(4043), + [aux_sym__val_number_token1] = ACTIONS(4045), + [aux_sym__val_number_token2] = ACTIONS(4045), + [aux_sym__val_number_token3] = ACTIONS(4045), + [aux_sym__val_number_token4] = ACTIONS(4047), + [aux_sym__val_number_token5] = ACTIONS(4047), + [aux_sym__val_number_token6] = ACTIONS(4047), [anon_sym_0b] = ACTIONS(2063), [anon_sym_0o] = ACTIONS(2065), [anon_sym_0x] = ACTIONS(2065), - [sym_val_date] = ACTIONS(4040), - [anon_sym_DQUOTE] = ACTIONS(4042), - [sym__str_single_quotes] = ACTIONS(4044), - [sym__str_back_ticks] = ACTIONS(4044), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4046), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4048), + [sym_val_date] = ACTIONS(4049), + [anon_sym_DQUOTE] = ACTIONS(4051), + [sym__str_single_quotes] = ACTIONS(4053), + [sym__str_back_ticks] = ACTIONS(4053), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4055), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4057), [anon_sym_err_GT] = ACTIONS(2741), [anon_sym_out_GT] = ACTIONS(2741), [anon_sym_e_GT] = ACTIONS(2741), @@ -204000,35 +204000,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unquoted] = STATE(4629), [sym__unquoted_anonymous_prefix] = STATE(7624), [sym_comment] = STATE(1267), - [anon_sym_LBRACK] = ACTIONS(4016), - [anon_sym_LPAREN] = ACTIONS(4018), + [anon_sym_LBRACK] = ACTIONS(4025), + [anon_sym_LPAREN] = ACTIONS(4027), [anon_sym_DOLLAR] = ACTIONS(2033), - [anon_sym_LBRACE] = ACTIONS(4020), - [anon_sym_DOT_DOT] = ACTIONS(4022), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4024), - [anon_sym_DOT_DOT_LT] = ACTIONS(4024), - [anon_sym_null] = ACTIONS(4026), - [anon_sym_true] = ACTIONS(4028), - [anon_sym_false] = ACTIONS(4028), + [anon_sym_LBRACE] = ACTIONS(4029), + [anon_sym_DOT_DOT] = ACTIONS(4031), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4033), + [anon_sym_DOT_DOT_LT] = ACTIONS(4033), + [anon_sym_null] = ACTIONS(4035), + [anon_sym_true] = ACTIONS(4037), + [anon_sym_false] = ACTIONS(4037), [aux_sym__val_number_decimal_token1] = ACTIONS(2053), - [aux_sym__val_number_decimal_token2] = ACTIONS(4030), - [aux_sym__val_number_decimal_token3] = ACTIONS(4032), - [aux_sym__val_number_decimal_token4] = ACTIONS(4034), - [aux_sym__val_number_token1] = ACTIONS(4036), - [aux_sym__val_number_token2] = ACTIONS(4036), - [aux_sym__val_number_token3] = ACTIONS(4036), - [aux_sym__val_number_token4] = ACTIONS(4038), - [aux_sym__val_number_token5] = ACTIONS(4038), - [aux_sym__val_number_token6] = ACTIONS(4038), + [aux_sym__val_number_decimal_token2] = ACTIONS(4039), + [aux_sym__val_number_decimal_token3] = ACTIONS(4041), + [aux_sym__val_number_decimal_token4] = ACTIONS(4043), + [aux_sym__val_number_token1] = ACTIONS(4045), + [aux_sym__val_number_token2] = ACTIONS(4045), + [aux_sym__val_number_token3] = ACTIONS(4045), + [aux_sym__val_number_token4] = ACTIONS(4047), + [aux_sym__val_number_token5] = ACTIONS(4047), + [aux_sym__val_number_token6] = ACTIONS(4047), [anon_sym_0b] = ACTIONS(2063), [anon_sym_0o] = ACTIONS(2065), [anon_sym_0x] = ACTIONS(2065), - [sym_val_date] = ACTIONS(4040), - [anon_sym_DQUOTE] = ACTIONS(4042), - [sym__str_single_quotes] = ACTIONS(4044), - [sym__str_back_ticks] = ACTIONS(4044), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4046), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4048), + [sym_val_date] = ACTIONS(4049), + [anon_sym_DQUOTE] = ACTIONS(4051), + [sym__str_single_quotes] = ACTIONS(4053), + [sym__str_back_ticks] = ACTIONS(4053), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4055), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4057), [anon_sym_err_GT] = ACTIONS(2741), [anon_sym_out_GT] = ACTIONS(2741), [anon_sym_e_GT] = ACTIONS(2741), @@ -204074,35 +204074,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unquoted] = STATE(4529), [sym__unquoted_anonymous_prefix] = STATE(7537), [sym_comment] = STATE(1268), - [anon_sym_LBRACK] = ACTIONS(4175), - [anon_sym_LPAREN] = ACTIONS(4177), + [anon_sym_LBRACK] = ACTIONS(4184), + [anon_sym_LPAREN] = ACTIONS(4186), [anon_sym_DOLLAR] = ACTIONS(1807), - [anon_sym_LBRACE] = ACTIONS(4179), - [anon_sym_DOT_DOT] = ACTIONS(4181), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4183), - [anon_sym_DOT_DOT_LT] = ACTIONS(4183), - [anon_sym_null] = ACTIONS(4185), - [anon_sym_true] = ACTIONS(4187), - [anon_sym_false] = ACTIONS(4187), - [aux_sym__val_number_decimal_token1] = ACTIONS(4189), - [aux_sym__val_number_decimal_token2] = ACTIONS(4191), - [aux_sym__val_number_decimal_token3] = ACTIONS(4193), - [aux_sym__val_number_decimal_token4] = ACTIONS(4195), - [aux_sym__val_number_token1] = ACTIONS(4197), - [aux_sym__val_number_token2] = ACTIONS(4197), - [aux_sym__val_number_token3] = ACTIONS(4197), - [aux_sym__val_number_token4] = ACTIONS(4199), - [aux_sym__val_number_token5] = ACTIONS(4199), - [aux_sym__val_number_token6] = ACTIONS(4199), + [anon_sym_LBRACE] = ACTIONS(4188), + [anon_sym_DOT_DOT] = ACTIONS(4190), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4192), + [anon_sym_DOT_DOT_LT] = ACTIONS(4192), + [anon_sym_null] = ACTIONS(4194), + [anon_sym_true] = ACTIONS(4196), + [anon_sym_false] = ACTIONS(4196), + [aux_sym__val_number_decimal_token1] = ACTIONS(4198), + [aux_sym__val_number_decimal_token2] = ACTIONS(4200), + [aux_sym__val_number_decimal_token3] = ACTIONS(4202), + [aux_sym__val_number_decimal_token4] = ACTIONS(4204), + [aux_sym__val_number_token1] = ACTIONS(4206), + [aux_sym__val_number_token2] = ACTIONS(4206), + [aux_sym__val_number_token3] = ACTIONS(4206), + [aux_sym__val_number_token4] = ACTIONS(4208), + [aux_sym__val_number_token5] = ACTIONS(4208), + [aux_sym__val_number_token6] = ACTIONS(4208), [anon_sym_0b] = ACTIONS(1837), [anon_sym_0o] = ACTIONS(1839), [anon_sym_0x] = ACTIONS(1839), - [sym_val_date] = ACTIONS(4201), - [anon_sym_DQUOTE] = ACTIONS(4203), - [sym__str_single_quotes] = ACTIONS(4205), - [sym__str_back_ticks] = ACTIONS(4205), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4207), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4209), + [sym_val_date] = ACTIONS(4210), + [anon_sym_DQUOTE] = ACTIONS(4212), + [sym__str_single_quotes] = ACTIONS(4214), + [sym__str_back_ticks] = ACTIONS(4214), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4216), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4218), [anon_sym_err_GT] = ACTIONS(2741), [anon_sym_out_GT] = ACTIONS(2741), [anon_sym_e_GT] = ACTIONS(2741), @@ -204148,35 +204148,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unquoted] = STATE(3004), [sym__unquoted_anonymous_prefix] = STATE(7742), [sym_comment] = STATE(1269), - [anon_sym_LBRACK] = ACTIONS(4211), - [anon_sym_LPAREN] = ACTIONS(4213), - [anon_sym_DOLLAR] = ACTIONS(4215), - [anon_sym_LBRACE] = ACTIONS(4217), - [anon_sym_DOT_DOT] = ACTIONS(4219), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4221), - [anon_sym_DOT_DOT_LT] = ACTIONS(4221), - [anon_sym_null] = ACTIONS(4223), - [anon_sym_true] = ACTIONS(4225), - [anon_sym_false] = ACTIONS(4225), - [aux_sym__val_number_decimal_token1] = ACTIONS(4227), - [aux_sym__val_number_decimal_token2] = ACTIONS(4229), - [aux_sym__val_number_decimal_token3] = ACTIONS(4231), - [aux_sym__val_number_decimal_token4] = ACTIONS(4233), - [aux_sym__val_number_token1] = ACTIONS(4235), - [aux_sym__val_number_token2] = ACTIONS(4235), - [aux_sym__val_number_token3] = ACTIONS(4235), - [aux_sym__val_number_token4] = ACTIONS(4237), - [aux_sym__val_number_token5] = ACTIONS(4237), - [aux_sym__val_number_token6] = ACTIONS(4237), - [anon_sym_0b] = ACTIONS(4239), - [anon_sym_0o] = ACTIONS(4241), - [anon_sym_0x] = ACTIONS(4241), - [sym_val_date] = ACTIONS(4243), - [anon_sym_DQUOTE] = ACTIONS(4245), - [sym__str_single_quotes] = ACTIONS(4247), - [sym__str_back_ticks] = ACTIONS(4247), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4249), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4251), + [anon_sym_LBRACK] = ACTIONS(4220), + [anon_sym_LPAREN] = ACTIONS(4222), + [anon_sym_DOLLAR] = ACTIONS(4224), + [anon_sym_LBRACE] = ACTIONS(4226), + [anon_sym_DOT_DOT] = ACTIONS(4228), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4230), + [anon_sym_DOT_DOT_LT] = ACTIONS(4230), + [anon_sym_null] = ACTIONS(4232), + [anon_sym_true] = ACTIONS(4234), + [anon_sym_false] = ACTIONS(4234), + [aux_sym__val_number_decimal_token1] = ACTIONS(4236), + [aux_sym__val_number_decimal_token2] = ACTIONS(4238), + [aux_sym__val_number_decimal_token3] = ACTIONS(4240), + [aux_sym__val_number_decimal_token4] = ACTIONS(4242), + [aux_sym__val_number_token1] = ACTIONS(4244), + [aux_sym__val_number_token2] = ACTIONS(4244), + [aux_sym__val_number_token3] = ACTIONS(4244), + [aux_sym__val_number_token4] = ACTIONS(4246), + [aux_sym__val_number_token5] = ACTIONS(4246), + [aux_sym__val_number_token6] = ACTIONS(4246), + [anon_sym_0b] = ACTIONS(4248), + [anon_sym_0o] = ACTIONS(4250), + [anon_sym_0x] = ACTIONS(4250), + [sym_val_date] = ACTIONS(4252), + [anon_sym_DQUOTE] = ACTIONS(4254), + [sym__str_single_quotes] = ACTIONS(4256), + [sym__str_back_ticks] = ACTIONS(4256), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4258), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4260), [anon_sym_err_GT] = ACTIONS(2741), [anon_sym_out_GT] = ACTIONS(2741), [anon_sym_e_GT] = ACTIONS(2741), @@ -204193,9 +204193,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(4253), + [aux_sym_unquoted_token1] = ACTIONS(4262), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(4255), + [sym_raw_string_begin] = ACTIONS(4264), }, [1270] = { [sym__val_range] = STATE(7614), @@ -204222,35 +204222,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unquoted] = STATE(4548), [sym__unquoted_anonymous_prefix] = STATE(7537), [sym_comment] = STATE(1270), - [anon_sym_LBRACK] = ACTIONS(4175), - [anon_sym_LPAREN] = ACTIONS(4177), + [anon_sym_LBRACK] = ACTIONS(4184), + [anon_sym_LPAREN] = ACTIONS(4186), [anon_sym_DOLLAR] = ACTIONS(1807), - [anon_sym_LBRACE] = ACTIONS(4179), - [anon_sym_DOT_DOT] = ACTIONS(4181), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4183), - [anon_sym_DOT_DOT_LT] = ACTIONS(4183), - [anon_sym_null] = ACTIONS(4185), - [anon_sym_true] = ACTIONS(4187), - [anon_sym_false] = ACTIONS(4187), - [aux_sym__val_number_decimal_token1] = ACTIONS(4189), - [aux_sym__val_number_decimal_token2] = ACTIONS(4191), - [aux_sym__val_number_decimal_token3] = ACTIONS(4193), - [aux_sym__val_number_decimal_token4] = ACTIONS(4195), - [aux_sym__val_number_token1] = ACTIONS(4197), - [aux_sym__val_number_token2] = ACTIONS(4197), - [aux_sym__val_number_token3] = ACTIONS(4197), - [aux_sym__val_number_token4] = ACTIONS(4199), - [aux_sym__val_number_token5] = ACTIONS(4199), - [aux_sym__val_number_token6] = ACTIONS(4199), + [anon_sym_LBRACE] = ACTIONS(4188), + [anon_sym_DOT_DOT] = ACTIONS(4190), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4192), + [anon_sym_DOT_DOT_LT] = ACTIONS(4192), + [anon_sym_null] = ACTIONS(4194), + [anon_sym_true] = ACTIONS(4196), + [anon_sym_false] = ACTIONS(4196), + [aux_sym__val_number_decimal_token1] = ACTIONS(4198), + [aux_sym__val_number_decimal_token2] = ACTIONS(4200), + [aux_sym__val_number_decimal_token3] = ACTIONS(4202), + [aux_sym__val_number_decimal_token4] = ACTIONS(4204), + [aux_sym__val_number_token1] = ACTIONS(4206), + [aux_sym__val_number_token2] = ACTIONS(4206), + [aux_sym__val_number_token3] = ACTIONS(4206), + [aux_sym__val_number_token4] = ACTIONS(4208), + [aux_sym__val_number_token5] = ACTIONS(4208), + [aux_sym__val_number_token6] = ACTIONS(4208), [anon_sym_0b] = ACTIONS(1837), [anon_sym_0o] = ACTIONS(1839), [anon_sym_0x] = ACTIONS(1839), - [sym_val_date] = ACTIONS(4201), - [anon_sym_DQUOTE] = ACTIONS(4203), - [sym__str_single_quotes] = ACTIONS(4205), - [sym__str_back_ticks] = ACTIONS(4205), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4207), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4209), + [sym_val_date] = ACTIONS(4210), + [anon_sym_DQUOTE] = ACTIONS(4212), + [sym__str_single_quotes] = ACTIONS(4214), + [sym__str_back_ticks] = ACTIONS(4214), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4216), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4218), [anon_sym_err_GT] = ACTIONS(2741), [anon_sym_out_GT] = ACTIONS(2741), [anon_sym_e_GT] = ACTIONS(2741), @@ -204296,35 +204296,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unquoted] = STATE(4533), [sym__unquoted_anonymous_prefix] = STATE(7537), [sym_comment] = STATE(1271), - [anon_sym_LBRACK] = ACTIONS(4175), - [anon_sym_LPAREN] = ACTIONS(4177), + [anon_sym_LBRACK] = ACTIONS(4184), + [anon_sym_LPAREN] = ACTIONS(4186), [anon_sym_DOLLAR] = ACTIONS(1807), - [anon_sym_LBRACE] = ACTIONS(4179), - [anon_sym_DOT_DOT] = ACTIONS(4181), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4183), - [anon_sym_DOT_DOT_LT] = ACTIONS(4183), - [anon_sym_null] = ACTIONS(4185), - [anon_sym_true] = ACTIONS(4187), - [anon_sym_false] = ACTIONS(4187), - [aux_sym__val_number_decimal_token1] = ACTIONS(4189), - [aux_sym__val_number_decimal_token2] = ACTIONS(4191), - [aux_sym__val_number_decimal_token3] = ACTIONS(4193), - [aux_sym__val_number_decimal_token4] = ACTIONS(4195), - [aux_sym__val_number_token1] = ACTIONS(4197), - [aux_sym__val_number_token2] = ACTIONS(4197), - [aux_sym__val_number_token3] = ACTIONS(4197), - [aux_sym__val_number_token4] = ACTIONS(4199), - [aux_sym__val_number_token5] = ACTIONS(4199), - [aux_sym__val_number_token6] = ACTIONS(4199), + [anon_sym_LBRACE] = ACTIONS(4188), + [anon_sym_DOT_DOT] = ACTIONS(4190), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4192), + [anon_sym_DOT_DOT_LT] = ACTIONS(4192), + [anon_sym_null] = ACTIONS(4194), + [anon_sym_true] = ACTIONS(4196), + [anon_sym_false] = ACTIONS(4196), + [aux_sym__val_number_decimal_token1] = ACTIONS(4198), + [aux_sym__val_number_decimal_token2] = ACTIONS(4200), + [aux_sym__val_number_decimal_token3] = ACTIONS(4202), + [aux_sym__val_number_decimal_token4] = ACTIONS(4204), + [aux_sym__val_number_token1] = ACTIONS(4206), + [aux_sym__val_number_token2] = ACTIONS(4206), + [aux_sym__val_number_token3] = ACTIONS(4206), + [aux_sym__val_number_token4] = ACTIONS(4208), + [aux_sym__val_number_token5] = ACTIONS(4208), + [aux_sym__val_number_token6] = ACTIONS(4208), [anon_sym_0b] = ACTIONS(1837), [anon_sym_0o] = ACTIONS(1839), [anon_sym_0x] = ACTIONS(1839), - [sym_val_date] = ACTIONS(4201), - [anon_sym_DQUOTE] = ACTIONS(4203), - [sym__str_single_quotes] = ACTIONS(4205), - [sym__str_back_ticks] = ACTIONS(4205), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4207), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4209), + [sym_val_date] = ACTIONS(4210), + [anon_sym_DQUOTE] = ACTIONS(4212), + [sym__str_single_quotes] = ACTIONS(4214), + [sym__str_back_ticks] = ACTIONS(4214), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4216), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4218), [anon_sym_err_GT] = ACTIONS(2741), [anon_sym_out_GT] = ACTIONS(2741), [anon_sym_e_GT] = ACTIONS(2741), @@ -204373,7 +204373,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT_LT] = ACTIONS(1667), [anon_sym_DOT_DOT_EQ2] = ACTIONS(1669), [anon_sym_DOT_DOT_LT2] = ACTIONS(1669), - [aux_sym__immediate_decimal_token2] = ACTIONS(4257), + [aux_sym__immediate_decimal_token2] = ACTIONS(4266), [anon_sym_null] = ACTIONS(1669), [anon_sym_true] = ACTIONS(1669), [anon_sym_false] = ACTIONS(1669), @@ -204444,35 +204444,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unquoted] = STATE(4444), [sym__unquoted_anonymous_prefix] = STATE(7537), [sym_comment] = STATE(1273), - [anon_sym_LBRACK] = ACTIONS(4175), - [anon_sym_LPAREN] = ACTIONS(4177), + [anon_sym_LBRACK] = ACTIONS(4184), + [anon_sym_LPAREN] = ACTIONS(4186), [anon_sym_DOLLAR] = ACTIONS(1807), - [anon_sym_LBRACE] = ACTIONS(4179), - [anon_sym_DOT_DOT] = ACTIONS(4181), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4183), - [anon_sym_DOT_DOT_LT] = ACTIONS(4183), - [anon_sym_null] = ACTIONS(4185), - [anon_sym_true] = ACTIONS(4187), - [anon_sym_false] = ACTIONS(4187), - [aux_sym__val_number_decimal_token1] = ACTIONS(4189), - [aux_sym__val_number_decimal_token2] = ACTIONS(4191), - [aux_sym__val_number_decimal_token3] = ACTIONS(4193), - [aux_sym__val_number_decimal_token4] = ACTIONS(4195), - [aux_sym__val_number_token1] = ACTIONS(4197), - [aux_sym__val_number_token2] = ACTIONS(4197), - [aux_sym__val_number_token3] = ACTIONS(4197), - [aux_sym__val_number_token4] = ACTIONS(4199), - [aux_sym__val_number_token5] = ACTIONS(4199), - [aux_sym__val_number_token6] = ACTIONS(4199), + [anon_sym_LBRACE] = ACTIONS(4188), + [anon_sym_DOT_DOT] = ACTIONS(4190), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4192), + [anon_sym_DOT_DOT_LT] = ACTIONS(4192), + [anon_sym_null] = ACTIONS(4194), + [anon_sym_true] = ACTIONS(4196), + [anon_sym_false] = ACTIONS(4196), + [aux_sym__val_number_decimal_token1] = ACTIONS(4198), + [aux_sym__val_number_decimal_token2] = ACTIONS(4200), + [aux_sym__val_number_decimal_token3] = ACTIONS(4202), + [aux_sym__val_number_decimal_token4] = ACTIONS(4204), + [aux_sym__val_number_token1] = ACTIONS(4206), + [aux_sym__val_number_token2] = ACTIONS(4206), + [aux_sym__val_number_token3] = ACTIONS(4206), + [aux_sym__val_number_token4] = ACTIONS(4208), + [aux_sym__val_number_token5] = ACTIONS(4208), + [aux_sym__val_number_token6] = ACTIONS(4208), [anon_sym_0b] = ACTIONS(1837), [anon_sym_0o] = ACTIONS(1839), [anon_sym_0x] = ACTIONS(1839), - [sym_val_date] = ACTIONS(4201), - [anon_sym_DQUOTE] = ACTIONS(4203), - [sym__str_single_quotes] = ACTIONS(4205), - [sym__str_back_ticks] = ACTIONS(4205), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4207), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4209), + [sym_val_date] = ACTIONS(4210), + [anon_sym_DQUOTE] = ACTIONS(4212), + [sym__str_single_quotes] = ACTIONS(4214), + [sym__str_back_ticks] = ACTIONS(4214), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4216), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4218), [anon_sym_err_GT] = ACTIONS(2741), [anon_sym_out_GT] = ACTIONS(2741), [anon_sym_e_GT] = ACTIONS(2741), @@ -204518,35 +204518,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unquoted] = STATE(4548), [sym__unquoted_anonymous_prefix] = STATE(7537), [sym_comment] = STATE(1274), - [anon_sym_LBRACK] = ACTIONS(4175), - [anon_sym_LPAREN] = ACTIONS(4177), + [anon_sym_LBRACK] = ACTIONS(4184), + [anon_sym_LPAREN] = ACTIONS(4186), [anon_sym_DOLLAR] = ACTIONS(1807), - [anon_sym_LBRACE] = ACTIONS(4179), - [anon_sym_DOT_DOT] = ACTIONS(4181), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4183), - [anon_sym_DOT_DOT_LT] = ACTIONS(4183), - [anon_sym_null] = ACTIONS(4259), - [anon_sym_true] = ACTIONS(4261), - [anon_sym_false] = ACTIONS(4261), + [anon_sym_LBRACE] = ACTIONS(4188), + [anon_sym_DOT_DOT] = ACTIONS(4190), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4192), + [anon_sym_DOT_DOT_LT] = ACTIONS(4192), + [anon_sym_null] = ACTIONS(4268), + [anon_sym_true] = ACTIONS(4270), + [anon_sym_false] = ACTIONS(4270), [aux_sym__val_number_decimal_token1] = ACTIONS(1827), - [aux_sym__val_number_decimal_token2] = ACTIONS(4263), - [aux_sym__val_number_decimal_token3] = ACTIONS(4265), - [aux_sym__val_number_decimal_token4] = ACTIONS(4267), - [aux_sym__val_number_token1] = ACTIONS(4197), - [aux_sym__val_number_token2] = ACTIONS(4197), - [aux_sym__val_number_token3] = ACTIONS(4197), - [aux_sym__val_number_token4] = ACTIONS(4269), - [aux_sym__val_number_token5] = ACTIONS(4269), - [aux_sym__val_number_token6] = ACTIONS(4269), + [aux_sym__val_number_decimal_token2] = ACTIONS(4272), + [aux_sym__val_number_decimal_token3] = ACTIONS(4274), + [aux_sym__val_number_decimal_token4] = ACTIONS(4276), + [aux_sym__val_number_token1] = ACTIONS(4206), + [aux_sym__val_number_token2] = ACTIONS(4206), + [aux_sym__val_number_token3] = ACTIONS(4206), + [aux_sym__val_number_token4] = ACTIONS(4278), + [aux_sym__val_number_token5] = ACTIONS(4278), + [aux_sym__val_number_token6] = ACTIONS(4278), [anon_sym_0b] = ACTIONS(1837), [anon_sym_0o] = ACTIONS(1839), [anon_sym_0x] = ACTIONS(1839), - [sym_val_date] = ACTIONS(4271), - [anon_sym_DQUOTE] = ACTIONS(4203), - [sym__str_single_quotes] = ACTIONS(4205), - [sym__str_back_ticks] = ACTIONS(4205), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4207), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4209), + [sym_val_date] = ACTIONS(4280), + [anon_sym_DQUOTE] = ACTIONS(4212), + [sym__str_single_quotes] = ACTIONS(4214), + [sym__str_back_ticks] = ACTIONS(4214), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4216), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4218), [anon_sym_err_GT] = ACTIONS(2741), [anon_sym_out_GT] = ACTIONS(2741), [anon_sym_e_GT] = ACTIONS(2741), @@ -204592,35 +204592,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unquoted] = STATE(4533), [sym__unquoted_anonymous_prefix] = STATE(7537), [sym_comment] = STATE(1275), - [anon_sym_LBRACK] = ACTIONS(4175), - [anon_sym_LPAREN] = ACTIONS(4177), + [anon_sym_LBRACK] = ACTIONS(4184), + [anon_sym_LPAREN] = ACTIONS(4186), [anon_sym_DOLLAR] = ACTIONS(1807), - [anon_sym_LBRACE] = ACTIONS(4179), - [anon_sym_DOT_DOT] = ACTIONS(4181), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4183), - [anon_sym_DOT_DOT_LT] = ACTIONS(4183), - [anon_sym_null] = ACTIONS(4259), - [anon_sym_true] = ACTIONS(4261), - [anon_sym_false] = ACTIONS(4261), + [anon_sym_LBRACE] = ACTIONS(4188), + [anon_sym_DOT_DOT] = ACTIONS(4190), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4192), + [anon_sym_DOT_DOT_LT] = ACTIONS(4192), + [anon_sym_null] = ACTIONS(4268), + [anon_sym_true] = ACTIONS(4270), + [anon_sym_false] = ACTIONS(4270), [aux_sym__val_number_decimal_token1] = ACTIONS(1827), - [aux_sym__val_number_decimal_token2] = ACTIONS(4263), - [aux_sym__val_number_decimal_token3] = ACTIONS(4265), - [aux_sym__val_number_decimal_token4] = ACTIONS(4267), - [aux_sym__val_number_token1] = ACTIONS(4197), - [aux_sym__val_number_token2] = ACTIONS(4197), - [aux_sym__val_number_token3] = ACTIONS(4197), - [aux_sym__val_number_token4] = ACTIONS(4269), - [aux_sym__val_number_token5] = ACTIONS(4269), - [aux_sym__val_number_token6] = ACTIONS(4269), + [aux_sym__val_number_decimal_token2] = ACTIONS(4272), + [aux_sym__val_number_decimal_token3] = ACTIONS(4274), + [aux_sym__val_number_decimal_token4] = ACTIONS(4276), + [aux_sym__val_number_token1] = ACTIONS(4206), + [aux_sym__val_number_token2] = ACTIONS(4206), + [aux_sym__val_number_token3] = ACTIONS(4206), + [aux_sym__val_number_token4] = ACTIONS(4278), + [aux_sym__val_number_token5] = ACTIONS(4278), + [aux_sym__val_number_token6] = ACTIONS(4278), [anon_sym_0b] = ACTIONS(1837), [anon_sym_0o] = ACTIONS(1839), [anon_sym_0x] = ACTIONS(1839), - [sym_val_date] = ACTIONS(4271), - [anon_sym_DQUOTE] = ACTIONS(4203), - [sym__str_single_quotes] = ACTIONS(4205), - [sym__str_back_ticks] = ACTIONS(4205), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4207), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4209), + [sym_val_date] = ACTIONS(4280), + [anon_sym_DQUOTE] = ACTIONS(4212), + [sym__str_single_quotes] = ACTIONS(4214), + [sym__str_back_ticks] = ACTIONS(4214), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4216), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4218), [anon_sym_err_GT] = ACTIONS(2741), [anon_sym_out_GT] = ACTIONS(2741), [anon_sym_e_GT] = ACTIONS(2741), @@ -204667,29 +204667,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__unquoted_anonymous_prefix] = STATE(7688), [sym_comment] = STATE(1276), [anon_sym_LBRACK] = ACTIONS(2695), - [anon_sym_LPAREN] = ACTIONS(4273), - [anon_sym_DOLLAR] = ACTIONS(3986), + [anon_sym_LPAREN] = ACTIONS(4282), + [anon_sym_DOLLAR] = ACTIONS(3995), [anon_sym_LBRACE] = ACTIONS(2705), - [anon_sym_DOT_DOT] = ACTIONS(4275), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4277), - [anon_sym_DOT_DOT_LT] = ACTIONS(4277), - [anon_sym_null] = ACTIONS(4279), - [anon_sym_true] = ACTIONS(4281), - [anon_sym_false] = ACTIONS(4281), - [aux_sym__val_number_decimal_token1] = ACTIONS(4283), - [aux_sym__val_number_decimal_token2] = ACTIONS(4285), - [aux_sym__val_number_decimal_token3] = ACTIONS(4287), - [aux_sym__val_number_decimal_token4] = ACTIONS(4289), + [anon_sym_DOT_DOT] = ACTIONS(4284), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4286), + [anon_sym_DOT_DOT_LT] = ACTIONS(4286), + [anon_sym_null] = ACTIONS(4288), + [anon_sym_true] = ACTIONS(4290), + [anon_sym_false] = ACTIONS(4290), + [aux_sym__val_number_decimal_token1] = ACTIONS(4292), + [aux_sym__val_number_decimal_token2] = ACTIONS(4294), + [aux_sym__val_number_decimal_token3] = ACTIONS(4296), + [aux_sym__val_number_decimal_token4] = ACTIONS(4298), [aux_sym__val_number_token1] = ACTIONS(2723), [aux_sym__val_number_token2] = ACTIONS(2723), [aux_sym__val_number_token3] = ACTIONS(2723), - [aux_sym__val_number_token4] = ACTIONS(4291), - [aux_sym__val_number_token5] = ACTIONS(4291), - [aux_sym__val_number_token6] = ACTIONS(4291), + [aux_sym__val_number_token4] = ACTIONS(4300), + [aux_sym__val_number_token5] = ACTIONS(4300), + [aux_sym__val_number_token6] = ACTIONS(4300), [anon_sym_0b] = ACTIONS(2727), [anon_sym_0o] = ACTIONS(2729), [anon_sym_0x] = ACTIONS(2729), - [sym_val_date] = ACTIONS(4293), + [sym_val_date] = ACTIONS(4302), [anon_sym_DQUOTE] = ACTIONS(2733), [sym__str_single_quotes] = ACTIONS(2735), [sym__str_back_ticks] = ACTIONS(2735), @@ -204711,7 +204711,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(4295), + [aux_sym_unquoted_token1] = ACTIONS(4304), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(2747), }, @@ -204740,35 +204740,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unquoted] = STATE(4444), [sym__unquoted_anonymous_prefix] = STATE(7537), [sym_comment] = STATE(1277), - [anon_sym_LBRACK] = ACTIONS(4175), - [anon_sym_LPAREN] = ACTIONS(4177), + [anon_sym_LBRACK] = ACTIONS(4184), + [anon_sym_LPAREN] = ACTIONS(4186), [anon_sym_DOLLAR] = ACTIONS(1807), - [anon_sym_LBRACE] = ACTIONS(4179), - [anon_sym_DOT_DOT] = ACTIONS(4181), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4183), - [anon_sym_DOT_DOT_LT] = ACTIONS(4183), - [anon_sym_null] = ACTIONS(4259), - [anon_sym_true] = ACTIONS(4261), - [anon_sym_false] = ACTIONS(4261), + [anon_sym_LBRACE] = ACTIONS(4188), + [anon_sym_DOT_DOT] = ACTIONS(4190), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4192), + [anon_sym_DOT_DOT_LT] = ACTIONS(4192), + [anon_sym_null] = ACTIONS(4268), + [anon_sym_true] = ACTIONS(4270), + [anon_sym_false] = ACTIONS(4270), [aux_sym__val_number_decimal_token1] = ACTIONS(1827), - [aux_sym__val_number_decimal_token2] = ACTIONS(4263), - [aux_sym__val_number_decimal_token3] = ACTIONS(4265), - [aux_sym__val_number_decimal_token4] = ACTIONS(4267), - [aux_sym__val_number_token1] = ACTIONS(4197), - [aux_sym__val_number_token2] = ACTIONS(4197), - [aux_sym__val_number_token3] = ACTIONS(4197), - [aux_sym__val_number_token4] = ACTIONS(4269), - [aux_sym__val_number_token5] = ACTIONS(4269), - [aux_sym__val_number_token6] = ACTIONS(4269), + [aux_sym__val_number_decimal_token2] = ACTIONS(4272), + [aux_sym__val_number_decimal_token3] = ACTIONS(4274), + [aux_sym__val_number_decimal_token4] = ACTIONS(4276), + [aux_sym__val_number_token1] = ACTIONS(4206), + [aux_sym__val_number_token2] = ACTIONS(4206), + [aux_sym__val_number_token3] = ACTIONS(4206), + [aux_sym__val_number_token4] = ACTIONS(4278), + [aux_sym__val_number_token5] = ACTIONS(4278), + [aux_sym__val_number_token6] = ACTIONS(4278), [anon_sym_0b] = ACTIONS(1837), [anon_sym_0o] = ACTIONS(1839), [anon_sym_0x] = ACTIONS(1839), - [sym_val_date] = ACTIONS(4271), - [anon_sym_DQUOTE] = ACTIONS(4203), - [sym__str_single_quotes] = ACTIONS(4205), - [sym__str_back_ticks] = ACTIONS(4205), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4207), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4209), + [sym_val_date] = ACTIONS(4280), + [anon_sym_DQUOTE] = ACTIONS(4212), + [sym__str_single_quotes] = ACTIONS(4214), + [sym__str_back_ticks] = ACTIONS(4214), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4216), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4218), [anon_sym_err_GT] = ACTIONS(2741), [anon_sym_out_GT] = ACTIONS(2741), [anon_sym_e_GT] = ACTIONS(2741), @@ -204815,29 +204815,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__unquoted_anonymous_prefix] = STATE(7688), [sym_comment] = STATE(1278), [anon_sym_LBRACK] = ACTIONS(2695), - [anon_sym_LPAREN] = ACTIONS(4273), - [anon_sym_DOLLAR] = ACTIONS(3986), + [anon_sym_LPAREN] = ACTIONS(4282), + [anon_sym_DOLLAR] = ACTIONS(3995), [anon_sym_LBRACE] = ACTIONS(2705), - [anon_sym_DOT_DOT] = ACTIONS(4275), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4277), - [anon_sym_DOT_DOT_LT] = ACTIONS(4277), - [anon_sym_null] = ACTIONS(4279), - [anon_sym_true] = ACTIONS(4281), - [anon_sym_false] = ACTIONS(4281), - [aux_sym__val_number_decimal_token1] = ACTIONS(4283), - [aux_sym__val_number_decimal_token2] = ACTIONS(4285), - [aux_sym__val_number_decimal_token3] = ACTIONS(4287), - [aux_sym__val_number_decimal_token4] = ACTIONS(4289), + [anon_sym_DOT_DOT] = ACTIONS(4284), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4286), + [anon_sym_DOT_DOT_LT] = ACTIONS(4286), + [anon_sym_null] = ACTIONS(4288), + [anon_sym_true] = ACTIONS(4290), + [anon_sym_false] = ACTIONS(4290), + [aux_sym__val_number_decimal_token1] = ACTIONS(4292), + [aux_sym__val_number_decimal_token2] = ACTIONS(4294), + [aux_sym__val_number_decimal_token3] = ACTIONS(4296), + [aux_sym__val_number_decimal_token4] = ACTIONS(4298), [aux_sym__val_number_token1] = ACTIONS(2723), [aux_sym__val_number_token2] = ACTIONS(2723), [aux_sym__val_number_token3] = ACTIONS(2723), - [aux_sym__val_number_token4] = ACTIONS(4291), - [aux_sym__val_number_token5] = ACTIONS(4291), - [aux_sym__val_number_token6] = ACTIONS(4291), + [aux_sym__val_number_token4] = ACTIONS(4300), + [aux_sym__val_number_token5] = ACTIONS(4300), + [aux_sym__val_number_token6] = ACTIONS(4300), [anon_sym_0b] = ACTIONS(2727), [anon_sym_0o] = ACTIONS(2729), [anon_sym_0x] = ACTIONS(2729), - [sym_val_date] = ACTIONS(4293), + [sym_val_date] = ACTIONS(4302), [anon_sym_DQUOTE] = ACTIONS(2733), [sym__str_single_quotes] = ACTIONS(2735), [sym__str_back_ticks] = ACTIONS(2735), @@ -204859,7 +204859,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(4295), + [aux_sym_unquoted_token1] = ACTIONS(4304), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(2747), }, @@ -204889,29 +204889,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__unquoted_anonymous_prefix] = STATE(7688), [sym_comment] = STATE(1279), [anon_sym_LBRACK] = ACTIONS(2695), - [anon_sym_LPAREN] = ACTIONS(4273), - [anon_sym_DOLLAR] = ACTIONS(3986), + [anon_sym_LPAREN] = ACTIONS(4282), + [anon_sym_DOLLAR] = ACTIONS(3995), [anon_sym_LBRACE] = ACTIONS(2705), - [anon_sym_DOT_DOT] = ACTIONS(4275), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4277), - [anon_sym_DOT_DOT_LT] = ACTIONS(4277), - [anon_sym_null] = ACTIONS(4279), - [anon_sym_true] = ACTIONS(4281), - [anon_sym_false] = ACTIONS(4281), - [aux_sym__val_number_decimal_token1] = ACTIONS(4283), - [aux_sym__val_number_decimal_token2] = ACTIONS(4285), - [aux_sym__val_number_decimal_token3] = ACTIONS(4287), - [aux_sym__val_number_decimal_token4] = ACTIONS(4289), + [anon_sym_DOT_DOT] = ACTIONS(4284), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4286), + [anon_sym_DOT_DOT_LT] = ACTIONS(4286), + [anon_sym_null] = ACTIONS(4288), + [anon_sym_true] = ACTIONS(4290), + [anon_sym_false] = ACTIONS(4290), + [aux_sym__val_number_decimal_token1] = ACTIONS(4292), + [aux_sym__val_number_decimal_token2] = ACTIONS(4294), + [aux_sym__val_number_decimal_token3] = ACTIONS(4296), + [aux_sym__val_number_decimal_token4] = ACTIONS(4298), [aux_sym__val_number_token1] = ACTIONS(2723), [aux_sym__val_number_token2] = ACTIONS(2723), [aux_sym__val_number_token3] = ACTIONS(2723), - [aux_sym__val_number_token4] = ACTIONS(4291), - [aux_sym__val_number_token5] = ACTIONS(4291), - [aux_sym__val_number_token6] = ACTIONS(4291), + [aux_sym__val_number_token4] = ACTIONS(4300), + [aux_sym__val_number_token5] = ACTIONS(4300), + [aux_sym__val_number_token6] = ACTIONS(4300), [anon_sym_0b] = ACTIONS(2727), [anon_sym_0o] = ACTIONS(2729), [anon_sym_0x] = ACTIONS(2729), - [sym_val_date] = ACTIONS(4293), + [sym_val_date] = ACTIONS(4302), [anon_sym_DQUOTE] = ACTIONS(2733), [sym__str_single_quotes] = ACTIONS(2735), [sym__str_back_ticks] = ACTIONS(2735), @@ -204933,7 +204933,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(4295), + [aux_sym_unquoted_token1] = ACTIONS(4304), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(2747), }, @@ -204962,35 +204962,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unquoted] = STATE(5777), [sym__unquoted_anonymous_prefix] = STATE(7399), [sym_comment] = STATE(1280), - [anon_sym_LBRACK] = ACTIONS(4297), - [anon_sym_LPAREN] = ACTIONS(4299), - [anon_sym_DOLLAR] = ACTIONS(4301), - [anon_sym_LBRACE] = ACTIONS(4303), - [anon_sym_DOT_DOT] = ACTIONS(4305), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4307), - [anon_sym_DOT_DOT_LT] = ACTIONS(4307), - [anon_sym_null] = ACTIONS(4309), - [anon_sym_true] = ACTIONS(4311), - [anon_sym_false] = ACTIONS(4311), - [aux_sym__val_number_decimal_token1] = ACTIONS(4313), - [aux_sym__val_number_decimal_token2] = ACTIONS(4315), - [aux_sym__val_number_decimal_token3] = ACTIONS(4317), - [aux_sym__val_number_decimal_token4] = ACTIONS(4319), - [aux_sym__val_number_token1] = ACTIONS(4321), - [aux_sym__val_number_token2] = ACTIONS(4321), - [aux_sym__val_number_token3] = ACTIONS(4321), - [aux_sym__val_number_token4] = ACTIONS(4323), - [aux_sym__val_number_token5] = ACTIONS(4323), - [aux_sym__val_number_token6] = ACTIONS(4323), - [anon_sym_0b] = ACTIONS(4325), - [anon_sym_0o] = ACTIONS(4327), - [anon_sym_0x] = ACTIONS(4327), - [sym_val_date] = ACTIONS(4329), - [anon_sym_DQUOTE] = ACTIONS(4331), - [sym__str_single_quotes] = ACTIONS(4333), - [sym__str_back_ticks] = ACTIONS(4333), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4335), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4337), + [anon_sym_LBRACK] = ACTIONS(4306), + [anon_sym_LPAREN] = ACTIONS(4308), + [anon_sym_DOLLAR] = ACTIONS(4310), + [anon_sym_LBRACE] = ACTIONS(4312), + [anon_sym_DOT_DOT] = ACTIONS(4314), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4316), + [anon_sym_DOT_DOT_LT] = ACTIONS(4316), + [anon_sym_null] = ACTIONS(4318), + [anon_sym_true] = ACTIONS(4320), + [anon_sym_false] = ACTIONS(4320), + [aux_sym__val_number_decimal_token1] = ACTIONS(4322), + [aux_sym__val_number_decimal_token2] = ACTIONS(4324), + [aux_sym__val_number_decimal_token3] = ACTIONS(4326), + [aux_sym__val_number_decimal_token4] = ACTIONS(4328), + [aux_sym__val_number_token1] = ACTIONS(4330), + [aux_sym__val_number_token2] = ACTIONS(4330), + [aux_sym__val_number_token3] = ACTIONS(4330), + [aux_sym__val_number_token4] = ACTIONS(4332), + [aux_sym__val_number_token5] = ACTIONS(4332), + [aux_sym__val_number_token6] = ACTIONS(4332), + [anon_sym_0b] = ACTIONS(4334), + [anon_sym_0o] = ACTIONS(4336), + [anon_sym_0x] = ACTIONS(4336), + [sym_val_date] = ACTIONS(4338), + [anon_sym_DQUOTE] = ACTIONS(4340), + [sym__str_single_quotes] = ACTIONS(4342), + [sym__str_back_ticks] = ACTIONS(4342), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4344), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4346), [anon_sym_err_GT] = ACTIONS(2741), [anon_sym_out_GT] = ACTIONS(2741), [anon_sym_e_GT] = ACTIONS(2741), @@ -205007,9 +205007,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(4339), + [aux_sym_unquoted_token1] = ACTIONS(4348), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(4341), + [sym_raw_string_begin] = ACTIONS(4350), }, [1281] = { [sym__val_range] = STATE(7379), @@ -205037,29 +205037,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__unquoted_anonymous_prefix] = STATE(7688), [sym_comment] = STATE(1281), [anon_sym_LBRACK] = ACTIONS(2695), - [anon_sym_LPAREN] = ACTIONS(4273), - [anon_sym_DOLLAR] = ACTIONS(3986), + [anon_sym_LPAREN] = ACTIONS(4282), + [anon_sym_DOLLAR] = ACTIONS(3995), [anon_sym_LBRACE] = ACTIONS(2705), - [anon_sym_DOT_DOT] = ACTIONS(4275), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4277), - [anon_sym_DOT_DOT_LT] = ACTIONS(4277), - [anon_sym_null] = ACTIONS(4279), - [anon_sym_true] = ACTIONS(4281), - [anon_sym_false] = ACTIONS(4281), - [aux_sym__val_number_decimal_token1] = ACTIONS(4283), - [aux_sym__val_number_decimal_token2] = ACTIONS(4285), - [aux_sym__val_number_decimal_token3] = ACTIONS(4287), - [aux_sym__val_number_decimal_token4] = ACTIONS(4289), + [anon_sym_DOT_DOT] = ACTIONS(4284), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4286), + [anon_sym_DOT_DOT_LT] = ACTIONS(4286), + [anon_sym_null] = ACTIONS(4288), + [anon_sym_true] = ACTIONS(4290), + [anon_sym_false] = ACTIONS(4290), + [aux_sym__val_number_decimal_token1] = ACTIONS(4292), + [aux_sym__val_number_decimal_token2] = ACTIONS(4294), + [aux_sym__val_number_decimal_token3] = ACTIONS(4296), + [aux_sym__val_number_decimal_token4] = ACTIONS(4298), [aux_sym__val_number_token1] = ACTIONS(2723), [aux_sym__val_number_token2] = ACTIONS(2723), [aux_sym__val_number_token3] = ACTIONS(2723), - [aux_sym__val_number_token4] = ACTIONS(4291), - [aux_sym__val_number_token5] = ACTIONS(4291), - [aux_sym__val_number_token6] = ACTIONS(4291), + [aux_sym__val_number_token4] = ACTIONS(4300), + [aux_sym__val_number_token5] = ACTIONS(4300), + [aux_sym__val_number_token6] = ACTIONS(4300), [anon_sym_0b] = ACTIONS(2727), [anon_sym_0o] = ACTIONS(2729), [anon_sym_0x] = ACTIONS(2729), - [sym_val_date] = ACTIONS(4293), + [sym_val_date] = ACTIONS(4302), [anon_sym_DQUOTE] = ACTIONS(2733), [sym__str_single_quotes] = ACTIONS(2735), [sym__str_back_ticks] = ACTIONS(2735), @@ -205081,7 +205081,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(4295), + [aux_sym_unquoted_token1] = ACTIONS(4304), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(2747), }, @@ -205110,35 +205110,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unquoted] = STATE(5800), [sym__unquoted_anonymous_prefix] = STATE(7399), [sym_comment] = STATE(1282), - [anon_sym_LBRACK] = ACTIONS(4297), - [anon_sym_LPAREN] = ACTIONS(4299), - [anon_sym_DOLLAR] = ACTIONS(4301), - [anon_sym_LBRACE] = ACTIONS(4303), - [anon_sym_DOT_DOT] = ACTIONS(4305), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4307), - [anon_sym_DOT_DOT_LT] = ACTIONS(4307), - [anon_sym_null] = ACTIONS(4309), - [anon_sym_true] = ACTIONS(4311), - [anon_sym_false] = ACTIONS(4311), - [aux_sym__val_number_decimal_token1] = ACTIONS(4313), - [aux_sym__val_number_decimal_token2] = ACTIONS(4315), - [aux_sym__val_number_decimal_token3] = ACTIONS(4317), - [aux_sym__val_number_decimal_token4] = ACTIONS(4319), - [aux_sym__val_number_token1] = ACTIONS(4321), - [aux_sym__val_number_token2] = ACTIONS(4321), - [aux_sym__val_number_token3] = ACTIONS(4321), - [aux_sym__val_number_token4] = ACTIONS(4323), - [aux_sym__val_number_token5] = ACTIONS(4323), - [aux_sym__val_number_token6] = ACTIONS(4323), - [anon_sym_0b] = ACTIONS(4325), - [anon_sym_0o] = ACTIONS(4327), - [anon_sym_0x] = ACTIONS(4327), - [sym_val_date] = ACTIONS(4329), - [anon_sym_DQUOTE] = ACTIONS(4331), - [sym__str_single_quotes] = ACTIONS(4333), - [sym__str_back_ticks] = ACTIONS(4333), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4335), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4337), + [anon_sym_LBRACK] = ACTIONS(4306), + [anon_sym_LPAREN] = ACTIONS(4308), + [anon_sym_DOLLAR] = ACTIONS(4310), + [anon_sym_LBRACE] = ACTIONS(4312), + [anon_sym_DOT_DOT] = ACTIONS(4314), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4316), + [anon_sym_DOT_DOT_LT] = ACTIONS(4316), + [anon_sym_null] = ACTIONS(4318), + [anon_sym_true] = ACTIONS(4320), + [anon_sym_false] = ACTIONS(4320), + [aux_sym__val_number_decimal_token1] = ACTIONS(4322), + [aux_sym__val_number_decimal_token2] = ACTIONS(4324), + [aux_sym__val_number_decimal_token3] = ACTIONS(4326), + [aux_sym__val_number_decimal_token4] = ACTIONS(4328), + [aux_sym__val_number_token1] = ACTIONS(4330), + [aux_sym__val_number_token2] = ACTIONS(4330), + [aux_sym__val_number_token3] = ACTIONS(4330), + [aux_sym__val_number_token4] = ACTIONS(4332), + [aux_sym__val_number_token5] = ACTIONS(4332), + [aux_sym__val_number_token6] = ACTIONS(4332), + [anon_sym_0b] = ACTIONS(4334), + [anon_sym_0o] = ACTIONS(4336), + [anon_sym_0x] = ACTIONS(4336), + [sym_val_date] = ACTIONS(4338), + [anon_sym_DQUOTE] = ACTIONS(4340), + [sym__str_single_quotes] = ACTIONS(4342), + [sym__str_back_ticks] = ACTIONS(4342), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4344), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4346), [anon_sym_err_GT] = ACTIONS(2741), [anon_sym_out_GT] = ACTIONS(2741), [anon_sym_e_GT] = ACTIONS(2741), @@ -205155,9 +205155,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(4339), + [aux_sym_unquoted_token1] = ACTIONS(4348), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(4341), + [sym_raw_string_begin] = ACTIONS(4350), }, [1283] = { [sym__val_range] = STATE(7471), @@ -205184,35 +205184,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unquoted] = STATE(5731), [sym__unquoted_anonymous_prefix] = STATE(7399), [sym_comment] = STATE(1283), - [anon_sym_LBRACK] = ACTIONS(4297), - [anon_sym_LPAREN] = ACTIONS(4299), - [anon_sym_DOLLAR] = ACTIONS(4301), - [anon_sym_LBRACE] = ACTIONS(4303), - [anon_sym_DOT_DOT] = ACTIONS(4305), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4307), - [anon_sym_DOT_DOT_LT] = ACTIONS(4307), - [anon_sym_null] = ACTIONS(4309), - [anon_sym_true] = ACTIONS(4311), - [anon_sym_false] = ACTIONS(4311), - [aux_sym__val_number_decimal_token1] = ACTIONS(4313), - [aux_sym__val_number_decimal_token2] = ACTIONS(4315), - [aux_sym__val_number_decimal_token3] = ACTIONS(4317), - [aux_sym__val_number_decimal_token4] = ACTIONS(4319), - [aux_sym__val_number_token1] = ACTIONS(4321), - [aux_sym__val_number_token2] = ACTIONS(4321), - [aux_sym__val_number_token3] = ACTIONS(4321), - [aux_sym__val_number_token4] = ACTIONS(4323), - [aux_sym__val_number_token5] = ACTIONS(4323), - [aux_sym__val_number_token6] = ACTIONS(4323), - [anon_sym_0b] = ACTIONS(4325), - [anon_sym_0o] = ACTIONS(4327), - [anon_sym_0x] = ACTIONS(4327), - [sym_val_date] = ACTIONS(4329), - [anon_sym_DQUOTE] = ACTIONS(4331), - [sym__str_single_quotes] = ACTIONS(4333), - [sym__str_back_ticks] = ACTIONS(4333), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4335), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4337), + [anon_sym_LBRACK] = ACTIONS(4306), + [anon_sym_LPAREN] = ACTIONS(4308), + [anon_sym_DOLLAR] = ACTIONS(4310), + [anon_sym_LBRACE] = ACTIONS(4312), + [anon_sym_DOT_DOT] = ACTIONS(4314), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4316), + [anon_sym_DOT_DOT_LT] = ACTIONS(4316), + [anon_sym_null] = ACTIONS(4318), + [anon_sym_true] = ACTIONS(4320), + [anon_sym_false] = ACTIONS(4320), + [aux_sym__val_number_decimal_token1] = ACTIONS(4322), + [aux_sym__val_number_decimal_token2] = ACTIONS(4324), + [aux_sym__val_number_decimal_token3] = ACTIONS(4326), + [aux_sym__val_number_decimal_token4] = ACTIONS(4328), + [aux_sym__val_number_token1] = ACTIONS(4330), + [aux_sym__val_number_token2] = ACTIONS(4330), + [aux_sym__val_number_token3] = ACTIONS(4330), + [aux_sym__val_number_token4] = ACTIONS(4332), + [aux_sym__val_number_token5] = ACTIONS(4332), + [aux_sym__val_number_token6] = ACTIONS(4332), + [anon_sym_0b] = ACTIONS(4334), + [anon_sym_0o] = ACTIONS(4336), + [anon_sym_0x] = ACTIONS(4336), + [sym_val_date] = ACTIONS(4338), + [anon_sym_DQUOTE] = ACTIONS(4340), + [sym__str_single_quotes] = ACTIONS(4342), + [sym__str_back_ticks] = ACTIONS(4342), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4344), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4346), [anon_sym_err_GT] = ACTIONS(2741), [anon_sym_out_GT] = ACTIONS(2741), [anon_sym_e_GT] = ACTIONS(2741), @@ -205229,9 +205229,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(4339), + [aux_sym_unquoted_token1] = ACTIONS(4348), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(4341), + [sym_raw_string_begin] = ACTIONS(4350), }, [1284] = { [sym__val_range] = STATE(7557), @@ -205258,35 +205258,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unquoted] = STATE(5485), [sym__unquoted_anonymous_prefix] = STATE(7383), [sym_comment] = STATE(1284), - [anon_sym_LBRACK] = ACTIONS(4343), - [anon_sym_LPAREN] = ACTIONS(4345), - [anon_sym_DOLLAR] = ACTIONS(4347), - [anon_sym_LBRACE] = ACTIONS(4349), - [anon_sym_DOT_DOT] = ACTIONS(4351), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4353), - [anon_sym_DOT_DOT_LT] = ACTIONS(4353), - [anon_sym_null] = ACTIONS(4355), - [anon_sym_true] = ACTIONS(4357), - [anon_sym_false] = ACTIONS(4357), - [aux_sym__val_number_decimal_token1] = ACTIONS(4359), - [aux_sym__val_number_decimal_token2] = ACTIONS(4361), - [aux_sym__val_number_decimal_token3] = ACTIONS(4363), - [aux_sym__val_number_decimal_token4] = ACTIONS(4365), - [aux_sym__val_number_token1] = ACTIONS(4367), - [aux_sym__val_number_token2] = ACTIONS(4367), - [aux_sym__val_number_token3] = ACTIONS(4367), - [aux_sym__val_number_token4] = ACTIONS(4369), - [aux_sym__val_number_token5] = ACTIONS(4369), - [aux_sym__val_number_token6] = ACTIONS(4369), - [anon_sym_0b] = ACTIONS(4371), - [anon_sym_0o] = ACTIONS(4373), - [anon_sym_0x] = ACTIONS(4373), - [sym_val_date] = ACTIONS(4375), - [anon_sym_DQUOTE] = ACTIONS(4377), - [sym__str_single_quotes] = ACTIONS(4379), - [sym__str_back_ticks] = ACTIONS(4379), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4381), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4383), + [anon_sym_LBRACK] = ACTIONS(4352), + [anon_sym_LPAREN] = ACTIONS(4354), + [anon_sym_DOLLAR] = ACTIONS(4356), + [anon_sym_LBRACE] = ACTIONS(4358), + [anon_sym_DOT_DOT] = ACTIONS(4360), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4362), + [anon_sym_DOT_DOT_LT] = ACTIONS(4362), + [anon_sym_null] = ACTIONS(4364), + [anon_sym_true] = ACTIONS(4366), + [anon_sym_false] = ACTIONS(4366), + [aux_sym__val_number_decimal_token1] = ACTIONS(4368), + [aux_sym__val_number_decimal_token2] = ACTIONS(4370), + [aux_sym__val_number_decimal_token3] = ACTIONS(4372), + [aux_sym__val_number_decimal_token4] = ACTIONS(4374), + [aux_sym__val_number_token1] = ACTIONS(4376), + [aux_sym__val_number_token2] = ACTIONS(4376), + [aux_sym__val_number_token3] = ACTIONS(4376), + [aux_sym__val_number_token4] = ACTIONS(4378), + [aux_sym__val_number_token5] = ACTIONS(4378), + [aux_sym__val_number_token6] = ACTIONS(4378), + [anon_sym_0b] = ACTIONS(4380), + [anon_sym_0o] = ACTIONS(4382), + [anon_sym_0x] = ACTIONS(4382), + [sym_val_date] = ACTIONS(4384), + [anon_sym_DQUOTE] = ACTIONS(4386), + [sym__str_single_quotes] = ACTIONS(4388), + [sym__str_back_ticks] = ACTIONS(4388), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4390), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4392), [anon_sym_err_GT] = ACTIONS(2741), [anon_sym_out_GT] = ACTIONS(2741), [anon_sym_e_GT] = ACTIONS(2741), @@ -205303,9 +205303,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(4385), + [aux_sym_unquoted_token1] = ACTIONS(4394), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(4387), + [sym_raw_string_begin] = ACTIONS(4396), }, [1285] = { [sym__val_range] = STATE(7471), @@ -205332,35 +205332,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unquoted] = STATE(5576), [sym__unquoted_anonymous_prefix] = STATE(7399), [sym_comment] = STATE(1285), - [anon_sym_LBRACK] = ACTIONS(4297), - [anon_sym_LPAREN] = ACTIONS(4299), - [anon_sym_DOLLAR] = ACTIONS(4301), - [anon_sym_LBRACE] = ACTIONS(4303), - [anon_sym_DOT_DOT] = ACTIONS(4305), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4307), - [anon_sym_DOT_DOT_LT] = ACTIONS(4307), - [anon_sym_null] = ACTIONS(4309), - [anon_sym_true] = ACTIONS(4311), - [anon_sym_false] = ACTIONS(4311), - [aux_sym__val_number_decimal_token1] = ACTIONS(4313), - [aux_sym__val_number_decimal_token2] = ACTIONS(4315), - [aux_sym__val_number_decimal_token3] = ACTIONS(4317), - [aux_sym__val_number_decimal_token4] = ACTIONS(4319), - [aux_sym__val_number_token1] = ACTIONS(4321), - [aux_sym__val_number_token2] = ACTIONS(4321), - [aux_sym__val_number_token3] = ACTIONS(4321), - [aux_sym__val_number_token4] = ACTIONS(4323), - [aux_sym__val_number_token5] = ACTIONS(4323), - [aux_sym__val_number_token6] = ACTIONS(4323), - [anon_sym_0b] = ACTIONS(4325), - [anon_sym_0o] = ACTIONS(4327), - [anon_sym_0x] = ACTIONS(4327), - [sym_val_date] = ACTIONS(4329), - [anon_sym_DQUOTE] = ACTIONS(4331), - [sym__str_single_quotes] = ACTIONS(4333), - [sym__str_back_ticks] = ACTIONS(4333), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4335), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4337), + [anon_sym_LBRACK] = ACTIONS(4306), + [anon_sym_LPAREN] = ACTIONS(4308), + [anon_sym_DOLLAR] = ACTIONS(4310), + [anon_sym_LBRACE] = ACTIONS(4312), + [anon_sym_DOT_DOT] = ACTIONS(4314), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4316), + [anon_sym_DOT_DOT_LT] = ACTIONS(4316), + [anon_sym_null] = ACTIONS(4318), + [anon_sym_true] = ACTIONS(4320), + [anon_sym_false] = ACTIONS(4320), + [aux_sym__val_number_decimal_token1] = ACTIONS(4322), + [aux_sym__val_number_decimal_token2] = ACTIONS(4324), + [aux_sym__val_number_decimal_token3] = ACTIONS(4326), + [aux_sym__val_number_decimal_token4] = ACTIONS(4328), + [aux_sym__val_number_token1] = ACTIONS(4330), + [aux_sym__val_number_token2] = ACTIONS(4330), + [aux_sym__val_number_token3] = ACTIONS(4330), + [aux_sym__val_number_token4] = ACTIONS(4332), + [aux_sym__val_number_token5] = ACTIONS(4332), + [aux_sym__val_number_token6] = ACTIONS(4332), + [anon_sym_0b] = ACTIONS(4334), + [anon_sym_0o] = ACTIONS(4336), + [anon_sym_0x] = ACTIONS(4336), + [sym_val_date] = ACTIONS(4338), + [anon_sym_DQUOTE] = ACTIONS(4340), + [sym__str_single_quotes] = ACTIONS(4342), + [sym__str_back_ticks] = ACTIONS(4342), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4344), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4346), [anon_sym_err_GT] = ACTIONS(2741), [anon_sym_out_GT] = ACTIONS(2741), [anon_sym_e_GT] = ACTIONS(2741), @@ -205377,9 +205377,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(4339), + [aux_sym_unquoted_token1] = ACTIONS(4348), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(4341), + [sym_raw_string_begin] = ACTIONS(4350), }, [1286] = { [sym__val_range] = STATE(7557), @@ -205406,35 +205406,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unquoted] = STATE(5509), [sym__unquoted_anonymous_prefix] = STATE(7383), [sym_comment] = STATE(1286), - [anon_sym_LBRACK] = ACTIONS(4343), - [anon_sym_LPAREN] = ACTIONS(4345), - [anon_sym_DOLLAR] = ACTIONS(4347), - [anon_sym_LBRACE] = ACTIONS(4349), - [anon_sym_DOT_DOT] = ACTIONS(4351), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4353), - [anon_sym_DOT_DOT_LT] = ACTIONS(4353), - [anon_sym_null] = ACTIONS(4355), - [anon_sym_true] = ACTIONS(4357), - [anon_sym_false] = ACTIONS(4357), - [aux_sym__val_number_decimal_token1] = ACTIONS(4359), - [aux_sym__val_number_decimal_token2] = ACTIONS(4361), - [aux_sym__val_number_decimal_token3] = ACTIONS(4363), - [aux_sym__val_number_decimal_token4] = ACTIONS(4365), - [aux_sym__val_number_token1] = ACTIONS(4367), - [aux_sym__val_number_token2] = ACTIONS(4367), - [aux_sym__val_number_token3] = ACTIONS(4367), - [aux_sym__val_number_token4] = ACTIONS(4369), - [aux_sym__val_number_token5] = ACTIONS(4369), - [aux_sym__val_number_token6] = ACTIONS(4369), - [anon_sym_0b] = ACTIONS(4371), - [anon_sym_0o] = ACTIONS(4373), - [anon_sym_0x] = ACTIONS(4373), - [sym_val_date] = ACTIONS(4375), - [anon_sym_DQUOTE] = ACTIONS(4377), - [sym__str_single_quotes] = ACTIONS(4379), - [sym__str_back_ticks] = ACTIONS(4379), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4381), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4383), + [anon_sym_LBRACK] = ACTIONS(4352), + [anon_sym_LPAREN] = ACTIONS(4354), + [anon_sym_DOLLAR] = ACTIONS(4356), + [anon_sym_LBRACE] = ACTIONS(4358), + [anon_sym_DOT_DOT] = ACTIONS(4360), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4362), + [anon_sym_DOT_DOT_LT] = ACTIONS(4362), + [anon_sym_null] = ACTIONS(4364), + [anon_sym_true] = ACTIONS(4366), + [anon_sym_false] = ACTIONS(4366), + [aux_sym__val_number_decimal_token1] = ACTIONS(4368), + [aux_sym__val_number_decimal_token2] = ACTIONS(4370), + [aux_sym__val_number_decimal_token3] = ACTIONS(4372), + [aux_sym__val_number_decimal_token4] = ACTIONS(4374), + [aux_sym__val_number_token1] = ACTIONS(4376), + [aux_sym__val_number_token2] = ACTIONS(4376), + [aux_sym__val_number_token3] = ACTIONS(4376), + [aux_sym__val_number_token4] = ACTIONS(4378), + [aux_sym__val_number_token5] = ACTIONS(4378), + [aux_sym__val_number_token6] = ACTIONS(4378), + [anon_sym_0b] = ACTIONS(4380), + [anon_sym_0o] = ACTIONS(4382), + [anon_sym_0x] = ACTIONS(4382), + [sym_val_date] = ACTIONS(4384), + [anon_sym_DQUOTE] = ACTIONS(4386), + [sym__str_single_quotes] = ACTIONS(4388), + [sym__str_back_ticks] = ACTIONS(4388), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4390), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4392), [anon_sym_err_GT] = ACTIONS(2741), [anon_sym_out_GT] = ACTIONS(2741), [anon_sym_e_GT] = ACTIONS(2741), @@ -205451,9 +205451,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(4385), + [aux_sym_unquoted_token1] = ACTIONS(4394), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(4387), + [sym_raw_string_begin] = ACTIONS(4396), }, [1287] = { [sym__val_range] = STATE(7557), @@ -205480,35 +205480,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unquoted] = STATE(5484), [sym__unquoted_anonymous_prefix] = STATE(7383), [sym_comment] = STATE(1287), - [anon_sym_LBRACK] = ACTIONS(4343), - [anon_sym_LPAREN] = ACTIONS(4345), - [anon_sym_DOLLAR] = ACTIONS(4347), - [anon_sym_LBRACE] = ACTIONS(4349), - [anon_sym_DOT_DOT] = ACTIONS(4351), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4353), - [anon_sym_DOT_DOT_LT] = ACTIONS(4353), - [anon_sym_null] = ACTIONS(4355), - [anon_sym_true] = ACTIONS(4357), - [anon_sym_false] = ACTIONS(4357), - [aux_sym__val_number_decimal_token1] = ACTIONS(4359), - [aux_sym__val_number_decimal_token2] = ACTIONS(4361), - [aux_sym__val_number_decimal_token3] = ACTIONS(4363), - [aux_sym__val_number_decimal_token4] = ACTIONS(4365), - [aux_sym__val_number_token1] = ACTIONS(4367), - [aux_sym__val_number_token2] = ACTIONS(4367), - [aux_sym__val_number_token3] = ACTIONS(4367), - [aux_sym__val_number_token4] = ACTIONS(4369), - [aux_sym__val_number_token5] = ACTIONS(4369), - [aux_sym__val_number_token6] = ACTIONS(4369), - [anon_sym_0b] = ACTIONS(4371), - [anon_sym_0o] = ACTIONS(4373), - [anon_sym_0x] = ACTIONS(4373), - [sym_val_date] = ACTIONS(4375), - [anon_sym_DQUOTE] = ACTIONS(4377), - [sym__str_single_quotes] = ACTIONS(4379), - [sym__str_back_ticks] = ACTIONS(4379), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4381), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4383), + [anon_sym_LBRACK] = ACTIONS(4352), + [anon_sym_LPAREN] = ACTIONS(4354), + [anon_sym_DOLLAR] = ACTIONS(4356), + [anon_sym_LBRACE] = ACTIONS(4358), + [anon_sym_DOT_DOT] = ACTIONS(4360), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4362), + [anon_sym_DOT_DOT_LT] = ACTIONS(4362), + [anon_sym_null] = ACTIONS(4364), + [anon_sym_true] = ACTIONS(4366), + [anon_sym_false] = ACTIONS(4366), + [aux_sym__val_number_decimal_token1] = ACTIONS(4368), + [aux_sym__val_number_decimal_token2] = ACTIONS(4370), + [aux_sym__val_number_decimal_token3] = ACTIONS(4372), + [aux_sym__val_number_decimal_token4] = ACTIONS(4374), + [aux_sym__val_number_token1] = ACTIONS(4376), + [aux_sym__val_number_token2] = ACTIONS(4376), + [aux_sym__val_number_token3] = ACTIONS(4376), + [aux_sym__val_number_token4] = ACTIONS(4378), + [aux_sym__val_number_token5] = ACTIONS(4378), + [aux_sym__val_number_token6] = ACTIONS(4378), + [anon_sym_0b] = ACTIONS(4380), + [anon_sym_0o] = ACTIONS(4382), + [anon_sym_0x] = ACTIONS(4382), + [sym_val_date] = ACTIONS(4384), + [anon_sym_DQUOTE] = ACTIONS(4386), + [sym__str_single_quotes] = ACTIONS(4388), + [sym__str_back_ticks] = ACTIONS(4388), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4390), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4392), [anon_sym_err_GT] = ACTIONS(2741), [anon_sym_out_GT] = ACTIONS(2741), [anon_sym_e_GT] = ACTIONS(2741), @@ -205525,9 +205525,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(4385), + [aux_sym_unquoted_token1] = ACTIONS(4394), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(4387), + [sym_raw_string_begin] = ACTIONS(4396), }, [1288] = { [sym__val_range] = STATE(7557), @@ -205554,35 +205554,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unquoted] = STATE(5459), [sym__unquoted_anonymous_prefix] = STATE(7383), [sym_comment] = STATE(1288), - [anon_sym_LBRACK] = ACTIONS(4343), - [anon_sym_LPAREN] = ACTIONS(4345), - [anon_sym_DOLLAR] = ACTIONS(4347), - [anon_sym_LBRACE] = ACTIONS(4349), - [anon_sym_DOT_DOT] = ACTIONS(4351), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4353), - [anon_sym_DOT_DOT_LT] = ACTIONS(4353), - [anon_sym_null] = ACTIONS(4355), - [anon_sym_true] = ACTIONS(4357), - [anon_sym_false] = ACTIONS(4357), - [aux_sym__val_number_decimal_token1] = ACTIONS(4359), - [aux_sym__val_number_decimal_token2] = ACTIONS(4361), - [aux_sym__val_number_decimal_token3] = ACTIONS(4363), - [aux_sym__val_number_decimal_token4] = ACTIONS(4365), - [aux_sym__val_number_token1] = ACTIONS(4367), - [aux_sym__val_number_token2] = ACTIONS(4367), - [aux_sym__val_number_token3] = ACTIONS(4367), - [aux_sym__val_number_token4] = ACTIONS(4369), - [aux_sym__val_number_token5] = ACTIONS(4369), - [aux_sym__val_number_token6] = ACTIONS(4369), - [anon_sym_0b] = ACTIONS(4371), - [anon_sym_0o] = ACTIONS(4373), - [anon_sym_0x] = ACTIONS(4373), - [sym_val_date] = ACTIONS(4375), - [anon_sym_DQUOTE] = ACTIONS(4377), - [sym__str_single_quotes] = ACTIONS(4379), - [sym__str_back_ticks] = ACTIONS(4379), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4381), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4383), + [anon_sym_LBRACK] = ACTIONS(4352), + [anon_sym_LPAREN] = ACTIONS(4354), + [anon_sym_DOLLAR] = ACTIONS(4356), + [anon_sym_LBRACE] = ACTIONS(4358), + [anon_sym_DOT_DOT] = ACTIONS(4360), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4362), + [anon_sym_DOT_DOT_LT] = ACTIONS(4362), + [anon_sym_null] = ACTIONS(4364), + [anon_sym_true] = ACTIONS(4366), + [anon_sym_false] = ACTIONS(4366), + [aux_sym__val_number_decimal_token1] = ACTIONS(4368), + [aux_sym__val_number_decimal_token2] = ACTIONS(4370), + [aux_sym__val_number_decimal_token3] = ACTIONS(4372), + [aux_sym__val_number_decimal_token4] = ACTIONS(4374), + [aux_sym__val_number_token1] = ACTIONS(4376), + [aux_sym__val_number_token2] = ACTIONS(4376), + [aux_sym__val_number_token3] = ACTIONS(4376), + [aux_sym__val_number_token4] = ACTIONS(4378), + [aux_sym__val_number_token5] = ACTIONS(4378), + [aux_sym__val_number_token6] = ACTIONS(4378), + [anon_sym_0b] = ACTIONS(4380), + [anon_sym_0o] = ACTIONS(4382), + [anon_sym_0x] = ACTIONS(4382), + [sym_val_date] = ACTIONS(4384), + [anon_sym_DQUOTE] = ACTIONS(4386), + [sym__str_single_quotes] = ACTIONS(4388), + [sym__str_back_ticks] = ACTIONS(4388), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4390), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4392), [anon_sym_err_GT] = ACTIONS(2741), [anon_sym_out_GT] = ACTIONS(2741), [anon_sym_e_GT] = ACTIONS(2741), @@ -205599,9 +205599,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(4385), + [aux_sym_unquoted_token1] = ACTIONS(4394), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(4387), + [sym_raw_string_begin] = ACTIONS(4396), }, [1289] = { [sym__match_pattern_expression] = STATE(3138), @@ -205629,34 +205629,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__unquoted_anonymous_prefix] = STATE(7504), [sym_comment] = STATE(1289), [aux_sym__match_pattern_list_repeat1] = STATE(1328), - [anon_sym_LBRACK] = ACTIONS(4389), - [anon_sym_RBRACK] = ACTIONS(4391), - [anon_sym_LPAREN] = ACTIONS(3808), - [anon_sym_DOLLAR] = ACTIONS(3810), - [anon_sym_LBRACE] = ACTIONS(3812), - [anon_sym_DOT_DOT] = ACTIONS(4393), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3816), - [anon_sym_DOT_DOT_LT] = ACTIONS(3816), - [anon_sym_null] = ACTIONS(3818), - [anon_sym_true] = ACTIONS(3820), - [anon_sym_false] = ACTIONS(3820), - [aux_sym__val_number_decimal_token1] = ACTIONS(3822), - [aux_sym__val_number_decimal_token2] = ACTIONS(3824), - [aux_sym__val_number_decimal_token3] = ACTIONS(3826), - [aux_sym__val_number_decimal_token4] = ACTIONS(3828), - [aux_sym__val_number_token1] = ACTIONS(3830), - [aux_sym__val_number_token2] = ACTIONS(3830), - [aux_sym__val_number_token3] = ACTIONS(3830), - [aux_sym__val_number_token4] = ACTIONS(3832), - [aux_sym__val_number_token5] = ACTIONS(3832), - [aux_sym__val_number_token6] = ACTIONS(3832), - [anon_sym_0b] = ACTIONS(3834), - [anon_sym_0o] = ACTIONS(3836), - [anon_sym_0x] = ACTIONS(3836), - [sym_val_date] = ACTIONS(3838), - [anon_sym_DQUOTE] = ACTIONS(3840), - [sym__str_single_quotes] = ACTIONS(3842), - [sym__str_back_ticks] = ACTIONS(3842), + [anon_sym_LBRACK] = ACTIONS(4398), + [anon_sym_RBRACK] = ACTIONS(4400), + [anon_sym_LPAREN] = ACTIONS(3817), + [anon_sym_DOLLAR] = ACTIONS(3819), + [anon_sym_LBRACE] = ACTIONS(3821), + [anon_sym_DOT_DOT] = ACTIONS(4402), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3825), + [anon_sym_DOT_DOT_LT] = ACTIONS(3825), + [anon_sym_null] = ACTIONS(3827), + [anon_sym_true] = ACTIONS(3829), + [anon_sym_false] = ACTIONS(3829), + [aux_sym__val_number_decimal_token1] = ACTIONS(3831), + [aux_sym__val_number_decimal_token2] = ACTIONS(3833), + [aux_sym__val_number_decimal_token3] = ACTIONS(3835), + [aux_sym__val_number_decimal_token4] = ACTIONS(3837), + [aux_sym__val_number_token1] = ACTIONS(3839), + [aux_sym__val_number_token2] = ACTIONS(3839), + [aux_sym__val_number_token3] = ACTIONS(3839), + [aux_sym__val_number_token4] = ACTIONS(3841), + [aux_sym__val_number_token5] = ACTIONS(3841), + [aux_sym__val_number_token6] = ACTIONS(3841), + [anon_sym_0b] = ACTIONS(3843), + [anon_sym_0o] = ACTIONS(3845), + [anon_sym_0x] = ACTIONS(3845), + [sym_val_date] = ACTIONS(3847), + [anon_sym_DQUOTE] = ACTIONS(3849), + [sym__str_single_quotes] = ACTIONS(3851), + [sym__str_back_ticks] = ACTIONS(3851), [anon_sym_err_GT] = ACTIONS(2587), [anon_sym_out_GT] = ACTIONS(2587), [anon_sym_e_GT] = ACTIONS(2587), @@ -205673,9 +205673,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2589), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2589), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2589), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3844), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3853), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3846), + [sym_raw_string_begin] = ACTIONS(3855), }, [1290] = { [sym__expr_parenthesized_immediate] = STATE(1742), @@ -205696,19 +205696,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(1713), [anon_sym_LPAREN] = ACTIONS(1711), [anon_sym_RPAREN] = ACTIONS(1713), - [anon_sym_DOLLAR] = ACTIONS(3986), + [anon_sym_DOLLAR] = ACTIONS(3995), [anon_sym_DASH_DASH] = ACTIONS(1713), [anon_sym_DASH2] = ACTIONS(1711), [anon_sym_LBRACE] = ACTIONS(1713), [anon_sym_RBRACE] = ACTIONS(1713), [anon_sym_DOT_DOT] = ACTIONS(1711), - [anon_sym_LPAREN2] = ACTIONS(3988), + [anon_sym_LPAREN2] = ACTIONS(3997), [anon_sym_DOT_DOT_EQ] = ACTIONS(1713), [anon_sym_DOT_DOT_LT] = ACTIONS(1713), - [aux_sym__immediate_decimal_token1] = ACTIONS(4395), - [aux_sym__immediate_decimal_token3] = ACTIONS(4397), - [aux_sym__immediate_decimal_token4] = ACTIONS(4399), - [aux_sym__immediate_decimal_token5] = ACTIONS(4401), + [aux_sym__immediate_decimal_token1] = ACTIONS(4404), + [aux_sym__immediate_decimal_token3] = ACTIONS(4406), + [aux_sym__immediate_decimal_token4] = ACTIONS(4408), + [aux_sym__immediate_decimal_token5] = ACTIONS(4410), [anon_sym_null] = ACTIONS(1713), [anon_sym_true] = ACTIONS(1713), [anon_sym_false] = ACTIONS(1713), @@ -205776,30 +205776,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unquoted] = STATE(5814), [sym__unquoted_anonymous_prefix] = STATE(7445), [sym_comment] = STATE(1291), - [anon_sym_LBRACK] = ACTIONS(3848), - [anon_sym_LPAREN] = ACTIONS(4128), - [anon_sym_DOLLAR] = ACTIONS(3852), - [anon_sym_LBRACE] = ACTIONS(3854), - [anon_sym_DOT_DOT] = ACTIONS(4130), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4132), - [anon_sym_DOT_DOT_LT] = ACTIONS(4132), - [anon_sym_null] = ACTIONS(3860), - [anon_sym_true] = ACTIONS(3862), - [anon_sym_false] = ACTIONS(3862), - [aux_sym__val_number_decimal_token1] = ACTIONS(3864), - [aux_sym__val_number_decimal_token2] = ACTIONS(3866), - [aux_sym__val_number_decimal_token3] = ACTIONS(3868), - [aux_sym__val_number_decimal_token4] = ACTIONS(3870), + [anon_sym_LBRACK] = ACTIONS(3857), + [anon_sym_LPAREN] = ACTIONS(4137), + [anon_sym_DOLLAR] = ACTIONS(3861), + [anon_sym_LBRACE] = ACTIONS(3863), + [anon_sym_DOT_DOT] = ACTIONS(4139), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4141), + [anon_sym_DOT_DOT_LT] = ACTIONS(4141), + [anon_sym_null] = ACTIONS(3869), + [anon_sym_true] = ACTIONS(3871), + [anon_sym_false] = ACTIONS(3871), + [aux_sym__val_number_decimal_token1] = ACTIONS(3873), + [aux_sym__val_number_decimal_token2] = ACTIONS(3875), + [aux_sym__val_number_decimal_token3] = ACTIONS(3877), + [aux_sym__val_number_decimal_token4] = ACTIONS(3879), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3872), - [aux_sym__val_number_token5] = ACTIONS(3872), - [aux_sym__val_number_token6] = ACTIONS(3872), + [aux_sym__val_number_token4] = ACTIONS(3881), + [aux_sym__val_number_token5] = ACTIONS(3881), + [aux_sym__val_number_token6] = ACTIONS(3881), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3874), + [sym_val_date] = ACTIONS(3883), [anon_sym_DQUOTE] = ACTIONS(1295), [sym__str_single_quotes] = ACTIONS(1297), [sym__str_back_ticks] = ACTIONS(1297), @@ -205821,7 +205821,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3212), + [aux_sym_unquoted_token1] = ACTIONS(3219), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(1299), }, @@ -205850,35 +205850,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unquoted] = STATE(1926), [sym__unquoted_anonymous_prefix] = STATE(7578), [sym_comment] = STATE(1292), - [anon_sym_LBRACK] = ACTIONS(2934), - [anon_sym_LPAREN] = ACTIONS(4080), - [anon_sym_DOLLAR] = ACTIONS(4082), - [anon_sym_LBRACE] = ACTIONS(2944), - [anon_sym_DOT_DOT] = ACTIONS(4084), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4086), - [anon_sym_DOT_DOT_LT] = ACTIONS(4086), - [anon_sym_null] = ACTIONS(4088), - [anon_sym_true] = ACTIONS(4090), - [anon_sym_false] = ACTIONS(4090), - [aux_sym__val_number_decimal_token1] = ACTIONS(4092), - [aux_sym__val_number_decimal_token2] = ACTIONS(4094), - [aux_sym__val_number_decimal_token3] = ACTIONS(4096), - [aux_sym__val_number_decimal_token4] = ACTIONS(4098), - [aux_sym__val_number_token1] = ACTIONS(2962), - [aux_sym__val_number_token2] = ACTIONS(2962), - [aux_sym__val_number_token3] = ACTIONS(2962), - [aux_sym__val_number_token4] = ACTIONS(4100), - [aux_sym__val_number_token5] = ACTIONS(4100), - [aux_sym__val_number_token6] = ACTIONS(4100), - [anon_sym_0b] = ACTIONS(2966), - [anon_sym_0o] = ACTIONS(2968), - [anon_sym_0x] = ACTIONS(2968), - [sym_val_date] = ACTIONS(4102), - [anon_sym_DQUOTE] = ACTIONS(2972), - [sym__str_single_quotes] = ACTIONS(2974), - [sym__str_back_ticks] = ACTIONS(2974), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2976), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2978), + [anon_sym_LBRACK] = ACTIONS(2941), + [anon_sym_LPAREN] = ACTIONS(4089), + [anon_sym_DOLLAR] = ACTIONS(4091), + [anon_sym_LBRACE] = ACTIONS(2951), + [anon_sym_DOT_DOT] = ACTIONS(4093), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4095), + [anon_sym_DOT_DOT_LT] = ACTIONS(4095), + [anon_sym_null] = ACTIONS(4097), + [anon_sym_true] = ACTIONS(4099), + [anon_sym_false] = ACTIONS(4099), + [aux_sym__val_number_decimal_token1] = ACTIONS(4101), + [aux_sym__val_number_decimal_token2] = ACTIONS(4103), + [aux_sym__val_number_decimal_token3] = ACTIONS(4105), + [aux_sym__val_number_decimal_token4] = ACTIONS(4107), + [aux_sym__val_number_token1] = ACTIONS(2969), + [aux_sym__val_number_token2] = ACTIONS(2969), + [aux_sym__val_number_token3] = ACTIONS(2969), + [aux_sym__val_number_token4] = ACTIONS(4109), + [aux_sym__val_number_token5] = ACTIONS(4109), + [aux_sym__val_number_token6] = ACTIONS(4109), + [anon_sym_0b] = ACTIONS(2973), + [anon_sym_0o] = ACTIONS(2975), + [anon_sym_0x] = ACTIONS(2975), + [sym_val_date] = ACTIONS(4111), + [anon_sym_DQUOTE] = ACTIONS(2979), + [sym__str_single_quotes] = ACTIONS(2981), + [sym__str_back_ticks] = ACTIONS(2981), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2983), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2985), [anon_sym_err_GT] = ACTIONS(2741), [anon_sym_out_GT] = ACTIONS(2741), [anon_sym_e_GT] = ACTIONS(2741), @@ -205895,9 +205895,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(4104), + [aux_sym_unquoted_token1] = ACTIONS(4113), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2982), + [sym_raw_string_begin] = ACTIONS(2989), }, [1293] = { [sym__expr_parenthesized_immediate] = STATE(7220), @@ -205922,12 +205922,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(1693), [anon_sym_RBRACE] = ACTIONS(1693), [anon_sym_DOT_DOT] = ACTIONS(1681), - [anon_sym_LPAREN2] = ACTIONS(4403), - [anon_sym_DOT_DOT2] = ACTIONS(4405), + [anon_sym_LPAREN2] = ACTIONS(4412), + [anon_sym_DOT_DOT2] = ACTIONS(4414), [anon_sym_DOT_DOT_EQ] = ACTIONS(1681), [anon_sym_DOT_DOT_LT] = ACTIONS(1681), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4407), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4407), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4416), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4416), [anon_sym_null] = ACTIONS(1693), [anon_sym_true] = ACTIONS(1693), [anon_sym_false] = ACTIONS(1693), @@ -205942,8 +205942,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__val_number_token5] = ACTIONS(1693), [aux_sym__val_number_token6] = ACTIONS(1693), [anon_sym_0b] = ACTIONS(1681), - [sym_filesize_unit] = ACTIONS(4409), - [sym_duration_unit] = ACTIONS(4411), + [sym_filesize_unit] = ACTIONS(4418), + [sym_duration_unit] = ACTIONS(4420), [anon_sym_0o] = ACTIONS(1681), [anon_sym_0x] = ACTIONS(1681), [sym_val_date] = ACTIONS(1693), @@ -205969,7 +205969,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1693), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1693), [aux_sym_unquoted_token1] = ACTIONS(1681), - [aux_sym_unquoted_token2] = ACTIONS(4413), + [aux_sym_unquoted_token2] = ACTIONS(4422), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(1693), }, @@ -205998,35 +205998,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unquoted] = STATE(5913), [sym__unquoted_anonymous_prefix] = STATE(7738), [sym_comment] = STATE(1294), - [anon_sym_LBRACK] = ACTIONS(4050), - [anon_sym_LPAREN] = ACTIONS(4052), - [anon_sym_DOLLAR] = ACTIONS(4054), - [anon_sym_LBRACE] = ACTIONS(4056), - [anon_sym_DOT_DOT] = ACTIONS(4058), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4060), - [anon_sym_DOT_DOT_LT] = ACTIONS(4060), - [anon_sym_null] = ACTIONS(4062), - [anon_sym_true] = ACTIONS(4064), - [anon_sym_false] = ACTIONS(4064), - [aux_sym__val_number_decimal_token1] = ACTIONS(4066), - [aux_sym__val_number_decimal_token2] = ACTIONS(4068), - [aux_sym__val_number_decimal_token3] = ACTIONS(4070), - [aux_sym__val_number_decimal_token4] = ACTIONS(4072), - [aux_sym__val_number_token1] = ACTIONS(3602), - [aux_sym__val_number_token2] = ACTIONS(3602), - [aux_sym__val_number_token3] = ACTIONS(3602), - [aux_sym__val_number_token4] = ACTIONS(4074), - [aux_sym__val_number_token5] = ACTIONS(4074), - [aux_sym__val_number_token6] = ACTIONS(4074), - [anon_sym_0b] = ACTIONS(3606), - [anon_sym_0o] = ACTIONS(3608), - [anon_sym_0x] = ACTIONS(3608), - [sym_val_date] = ACTIONS(4076), + [anon_sym_LBRACK] = ACTIONS(4059), + [anon_sym_LPAREN] = ACTIONS(4061), + [anon_sym_DOLLAR] = ACTIONS(4063), + [anon_sym_LBRACE] = ACTIONS(4065), + [anon_sym_DOT_DOT] = ACTIONS(4067), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4069), + [anon_sym_DOT_DOT_LT] = ACTIONS(4069), + [anon_sym_null] = ACTIONS(4071), + [anon_sym_true] = ACTIONS(4073), + [anon_sym_false] = ACTIONS(4073), + [aux_sym__val_number_decimal_token1] = ACTIONS(4075), + [aux_sym__val_number_decimal_token2] = ACTIONS(4077), + [aux_sym__val_number_decimal_token3] = ACTIONS(4079), + [aux_sym__val_number_decimal_token4] = ACTIONS(4081), + [aux_sym__val_number_token1] = ACTIONS(3611), + [aux_sym__val_number_token2] = ACTIONS(3611), + [aux_sym__val_number_token3] = ACTIONS(3611), + [aux_sym__val_number_token4] = ACTIONS(4083), + [aux_sym__val_number_token5] = ACTIONS(4083), + [aux_sym__val_number_token6] = ACTIONS(4083), + [anon_sym_0b] = ACTIONS(3615), + [anon_sym_0o] = ACTIONS(3617), + [anon_sym_0x] = ACTIONS(3617), + [sym_val_date] = ACTIONS(4085), [anon_sym_DQUOTE] = ACTIONS(1295), [sym__str_single_quotes] = ACTIONS(1297), [sym__str_back_ticks] = ACTIONS(1297), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3616), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3618), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3625), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3627), [anon_sym_err_GT] = ACTIONS(2741), [anon_sym_out_GT] = ACTIONS(2741), [anon_sym_e_GT] = ACTIONS(2741), @@ -206043,7 +206043,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(4078), + [aux_sym_unquoted_token1] = ACTIONS(4087), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(1299), }, @@ -206072,35 +206072,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unquoted] = STATE(5814), [sym__unquoted_anonymous_prefix] = STATE(7738), [sym_comment] = STATE(1295), - [anon_sym_LBRACK] = ACTIONS(4050), - [anon_sym_LPAREN] = ACTIONS(4052), - [anon_sym_DOLLAR] = ACTIONS(4054), - [anon_sym_LBRACE] = ACTIONS(4056), - [anon_sym_DOT_DOT] = ACTIONS(4058), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4060), - [anon_sym_DOT_DOT_LT] = ACTIONS(4060), - [anon_sym_null] = ACTIONS(4062), - [anon_sym_true] = ACTIONS(4064), - [anon_sym_false] = ACTIONS(4064), - [aux_sym__val_number_decimal_token1] = ACTIONS(4066), - [aux_sym__val_number_decimal_token2] = ACTIONS(4068), - [aux_sym__val_number_decimal_token3] = ACTIONS(4070), - [aux_sym__val_number_decimal_token4] = ACTIONS(4072), - [aux_sym__val_number_token1] = ACTIONS(3602), - [aux_sym__val_number_token2] = ACTIONS(3602), - [aux_sym__val_number_token3] = ACTIONS(3602), - [aux_sym__val_number_token4] = ACTIONS(4074), - [aux_sym__val_number_token5] = ACTIONS(4074), - [aux_sym__val_number_token6] = ACTIONS(4074), - [anon_sym_0b] = ACTIONS(3606), - [anon_sym_0o] = ACTIONS(3608), - [anon_sym_0x] = ACTIONS(3608), - [sym_val_date] = ACTIONS(4076), + [anon_sym_LBRACK] = ACTIONS(4059), + [anon_sym_LPAREN] = ACTIONS(4061), + [anon_sym_DOLLAR] = ACTIONS(4063), + [anon_sym_LBRACE] = ACTIONS(4065), + [anon_sym_DOT_DOT] = ACTIONS(4067), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4069), + [anon_sym_DOT_DOT_LT] = ACTIONS(4069), + [anon_sym_null] = ACTIONS(4071), + [anon_sym_true] = ACTIONS(4073), + [anon_sym_false] = ACTIONS(4073), + [aux_sym__val_number_decimal_token1] = ACTIONS(4075), + [aux_sym__val_number_decimal_token2] = ACTIONS(4077), + [aux_sym__val_number_decimal_token3] = ACTIONS(4079), + [aux_sym__val_number_decimal_token4] = ACTIONS(4081), + [aux_sym__val_number_token1] = ACTIONS(3611), + [aux_sym__val_number_token2] = ACTIONS(3611), + [aux_sym__val_number_token3] = ACTIONS(3611), + [aux_sym__val_number_token4] = ACTIONS(4083), + [aux_sym__val_number_token5] = ACTIONS(4083), + [aux_sym__val_number_token6] = ACTIONS(4083), + [anon_sym_0b] = ACTIONS(3615), + [anon_sym_0o] = ACTIONS(3617), + [anon_sym_0x] = ACTIONS(3617), + [sym_val_date] = ACTIONS(4085), [anon_sym_DQUOTE] = ACTIONS(1295), [sym__str_single_quotes] = ACTIONS(1297), [sym__str_back_ticks] = ACTIONS(1297), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3616), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3618), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3625), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3627), [anon_sym_err_GT] = ACTIONS(2741), [anon_sym_out_GT] = ACTIONS(2741), [anon_sym_e_GT] = ACTIONS(2741), @@ -206117,7 +206117,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(4078), + [aux_sym_unquoted_token1] = ACTIONS(4087), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(1299), }, @@ -206146,35 +206146,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unquoted] = STATE(2971), [sym__unquoted_anonymous_prefix] = STATE(7742), [sym_comment] = STATE(1296), - [anon_sym_LBRACK] = ACTIONS(4211), - [anon_sym_LPAREN] = ACTIONS(4213), - [anon_sym_DOLLAR] = ACTIONS(4215), - [anon_sym_LBRACE] = ACTIONS(4217), - [anon_sym_DOT_DOT] = ACTIONS(4219), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4221), - [anon_sym_DOT_DOT_LT] = ACTIONS(4221), - [anon_sym_null] = ACTIONS(4223), - [anon_sym_true] = ACTIONS(4225), - [anon_sym_false] = ACTIONS(4225), - [aux_sym__val_number_decimal_token1] = ACTIONS(4227), - [aux_sym__val_number_decimal_token2] = ACTIONS(4229), - [aux_sym__val_number_decimal_token3] = ACTIONS(4231), - [aux_sym__val_number_decimal_token4] = ACTIONS(4233), - [aux_sym__val_number_token1] = ACTIONS(4235), - [aux_sym__val_number_token2] = ACTIONS(4235), - [aux_sym__val_number_token3] = ACTIONS(4235), - [aux_sym__val_number_token4] = ACTIONS(4237), - [aux_sym__val_number_token5] = ACTIONS(4237), - [aux_sym__val_number_token6] = ACTIONS(4237), - [anon_sym_0b] = ACTIONS(4239), - [anon_sym_0o] = ACTIONS(4241), - [anon_sym_0x] = ACTIONS(4241), - [sym_val_date] = ACTIONS(4243), - [anon_sym_DQUOTE] = ACTIONS(4245), - [sym__str_single_quotes] = ACTIONS(4247), - [sym__str_back_ticks] = ACTIONS(4247), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4249), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4251), + [anon_sym_LBRACK] = ACTIONS(4220), + [anon_sym_LPAREN] = ACTIONS(4222), + [anon_sym_DOLLAR] = ACTIONS(4224), + [anon_sym_LBRACE] = ACTIONS(4226), + [anon_sym_DOT_DOT] = ACTIONS(4228), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4230), + [anon_sym_DOT_DOT_LT] = ACTIONS(4230), + [anon_sym_null] = ACTIONS(4232), + [anon_sym_true] = ACTIONS(4234), + [anon_sym_false] = ACTIONS(4234), + [aux_sym__val_number_decimal_token1] = ACTIONS(4236), + [aux_sym__val_number_decimal_token2] = ACTIONS(4238), + [aux_sym__val_number_decimal_token3] = ACTIONS(4240), + [aux_sym__val_number_decimal_token4] = ACTIONS(4242), + [aux_sym__val_number_token1] = ACTIONS(4244), + [aux_sym__val_number_token2] = ACTIONS(4244), + [aux_sym__val_number_token3] = ACTIONS(4244), + [aux_sym__val_number_token4] = ACTIONS(4246), + [aux_sym__val_number_token5] = ACTIONS(4246), + [aux_sym__val_number_token6] = ACTIONS(4246), + [anon_sym_0b] = ACTIONS(4248), + [anon_sym_0o] = ACTIONS(4250), + [anon_sym_0x] = ACTIONS(4250), + [sym_val_date] = ACTIONS(4252), + [anon_sym_DQUOTE] = ACTIONS(4254), + [sym__str_single_quotes] = ACTIONS(4256), + [sym__str_back_ticks] = ACTIONS(4256), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4258), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4260), [anon_sym_err_GT] = ACTIONS(2741), [anon_sym_out_GT] = ACTIONS(2741), [anon_sym_e_GT] = ACTIONS(2741), @@ -206191,9 +206191,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(4253), + [aux_sym_unquoted_token1] = ACTIONS(4262), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(4255), + [sym_raw_string_begin] = ACTIONS(4264), }, [1297] = { [sym__expr_parenthesized_immediate] = STATE(1744), @@ -206214,19 +206214,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(1665), [anon_sym_LPAREN] = ACTIONS(1657), [anon_sym_RPAREN] = ACTIONS(1665), - [anon_sym_DOLLAR] = ACTIONS(3986), + [anon_sym_DOLLAR] = ACTIONS(3995), [anon_sym_DASH_DASH] = ACTIONS(1665), [anon_sym_DASH2] = ACTIONS(1657), [anon_sym_LBRACE] = ACTIONS(1665), [anon_sym_RBRACE] = ACTIONS(1665), [anon_sym_DOT_DOT] = ACTIONS(1657), - [anon_sym_LPAREN2] = ACTIONS(3988), + [anon_sym_LPAREN2] = ACTIONS(3997), [anon_sym_DOT_DOT_EQ] = ACTIONS(1665), [anon_sym_DOT_DOT_LT] = ACTIONS(1665), - [aux_sym__immediate_decimal_token1] = ACTIONS(4395), - [aux_sym__immediate_decimal_token3] = ACTIONS(4397), - [aux_sym__immediate_decimal_token4] = ACTIONS(4399), - [aux_sym__immediate_decimal_token5] = ACTIONS(4401), + [aux_sym__immediate_decimal_token1] = ACTIONS(4404), + [aux_sym__immediate_decimal_token3] = ACTIONS(4406), + [aux_sym__immediate_decimal_token4] = ACTIONS(4408), + [aux_sym__immediate_decimal_token5] = ACTIONS(4410), [anon_sym_null] = ACTIONS(1665), [anon_sym_true] = ACTIONS(1665), [anon_sym_false] = ACTIONS(1665), @@ -206294,35 +206294,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unquoted] = STATE(5814), [sym__unquoted_anonymous_prefix] = STATE(7738), [sym_comment] = STATE(1298), - [anon_sym_LBRACK] = ACTIONS(4050), - [anon_sym_LPAREN] = ACTIONS(4052), - [anon_sym_DOLLAR] = ACTIONS(4106), - [anon_sym_LBRACE] = ACTIONS(4056), - [anon_sym_DOT_DOT] = ACTIONS(4058), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4060), - [anon_sym_DOT_DOT_LT] = ACTIONS(4060), - [anon_sym_null] = ACTIONS(4062), - [anon_sym_true] = ACTIONS(4064), - [anon_sym_false] = ACTIONS(4064), - [aux_sym__val_number_decimal_token1] = ACTIONS(4108), - [aux_sym__val_number_decimal_token2] = ACTIONS(4110), - [aux_sym__val_number_decimal_token3] = ACTIONS(4112), - [aux_sym__val_number_decimal_token4] = ACTIONS(4114), - [aux_sym__val_number_token1] = ACTIONS(3602), - [aux_sym__val_number_token2] = ACTIONS(3602), - [aux_sym__val_number_token3] = ACTIONS(3602), - [aux_sym__val_number_token4] = ACTIONS(4116), - [aux_sym__val_number_token5] = ACTIONS(4116), - [aux_sym__val_number_token6] = ACTIONS(4116), - [anon_sym_0b] = ACTIONS(3606), - [anon_sym_0o] = ACTIONS(3608), - [anon_sym_0x] = ACTIONS(3608), - [sym_val_date] = ACTIONS(4076), + [anon_sym_LBRACK] = ACTIONS(4059), + [anon_sym_LPAREN] = ACTIONS(4061), + [anon_sym_DOLLAR] = ACTIONS(4115), + [anon_sym_LBRACE] = ACTIONS(4065), + [anon_sym_DOT_DOT] = ACTIONS(4067), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4069), + [anon_sym_DOT_DOT_LT] = ACTIONS(4069), + [anon_sym_null] = ACTIONS(4071), + [anon_sym_true] = ACTIONS(4073), + [anon_sym_false] = ACTIONS(4073), + [aux_sym__val_number_decimal_token1] = ACTIONS(4117), + [aux_sym__val_number_decimal_token2] = ACTIONS(4119), + [aux_sym__val_number_decimal_token3] = ACTIONS(4121), + [aux_sym__val_number_decimal_token4] = ACTIONS(4123), + [aux_sym__val_number_token1] = ACTIONS(3611), + [aux_sym__val_number_token2] = ACTIONS(3611), + [aux_sym__val_number_token3] = ACTIONS(3611), + [aux_sym__val_number_token4] = ACTIONS(4125), + [aux_sym__val_number_token5] = ACTIONS(4125), + [aux_sym__val_number_token6] = ACTIONS(4125), + [anon_sym_0b] = ACTIONS(3615), + [anon_sym_0o] = ACTIONS(3617), + [anon_sym_0x] = ACTIONS(3617), + [sym_val_date] = ACTIONS(4085), [anon_sym_DQUOTE] = ACTIONS(1295), [sym__str_single_quotes] = ACTIONS(1297), [sym__str_back_ticks] = ACTIONS(1297), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3616), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3618), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3625), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3627), [anon_sym_err_GT] = ACTIONS(2741), [anon_sym_out_GT] = ACTIONS(2741), [anon_sym_e_GT] = ACTIONS(2741), @@ -206339,7 +206339,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(4078), + [aux_sym_unquoted_token1] = ACTIONS(4087), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(1299), }, @@ -206362,19 +206362,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(1643), [anon_sym_LPAREN] = ACTIONS(1633), [anon_sym_RPAREN] = ACTIONS(1643), - [anon_sym_DOLLAR] = ACTIONS(3986), + [anon_sym_DOLLAR] = ACTIONS(3995), [anon_sym_DASH_DASH] = ACTIONS(1643), [anon_sym_DASH2] = ACTIONS(1633), [anon_sym_LBRACE] = ACTIONS(1643), [anon_sym_RBRACE] = ACTIONS(1643), [anon_sym_DOT_DOT] = ACTIONS(1633), - [anon_sym_LPAREN2] = ACTIONS(3988), + [anon_sym_LPAREN2] = ACTIONS(3997), [anon_sym_DOT_DOT_EQ] = ACTIONS(1643), [anon_sym_DOT_DOT_LT] = ACTIONS(1643), - [aux_sym__immediate_decimal_token1] = ACTIONS(4395), - [aux_sym__immediate_decimal_token3] = ACTIONS(4397), - [aux_sym__immediate_decimal_token4] = ACTIONS(4399), - [aux_sym__immediate_decimal_token5] = ACTIONS(4401), + [aux_sym__immediate_decimal_token1] = ACTIONS(4404), + [aux_sym__immediate_decimal_token3] = ACTIONS(4406), + [aux_sym__immediate_decimal_token4] = ACTIONS(4408), + [aux_sym__immediate_decimal_token5] = ACTIONS(4410), [anon_sym_null] = ACTIONS(1643), [anon_sym_true] = ACTIONS(1643), [anon_sym_false] = ACTIONS(1643), @@ -206445,7 +206445,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT_LT] = ACTIONS(1587), [anon_sym_DOT_DOT_EQ2] = ACTIONS(1589), [anon_sym_DOT_DOT_LT2] = ACTIONS(1589), - [aux_sym__immediate_decimal_token2] = ACTIONS(4010), + [aux_sym__immediate_decimal_token2] = ACTIONS(4019), [anon_sym_null] = ACTIONS(1589), [anon_sym_true] = ACTIONS(1589), [anon_sym_false] = ACTIONS(1589), @@ -206516,30 +206516,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unquoted] = STATE(5989), [sym__unquoted_anonymous_prefix] = STATE(7445), [sym_comment] = STATE(1301), - [anon_sym_LBRACK] = ACTIONS(3848), - [anon_sym_LPAREN] = ACTIONS(4128), - [anon_sym_DOLLAR] = ACTIONS(3852), - [anon_sym_LBRACE] = ACTIONS(3854), - [anon_sym_DOT_DOT] = ACTIONS(4130), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4132), - [anon_sym_DOT_DOT_LT] = ACTIONS(4132), - [anon_sym_null] = ACTIONS(3860), - [anon_sym_true] = ACTIONS(3862), - [anon_sym_false] = ACTIONS(3862), - [aux_sym__val_number_decimal_token1] = ACTIONS(3864), - [aux_sym__val_number_decimal_token2] = ACTIONS(3866), - [aux_sym__val_number_decimal_token3] = ACTIONS(3868), - [aux_sym__val_number_decimal_token4] = ACTIONS(3870), + [anon_sym_LBRACK] = ACTIONS(3857), + [anon_sym_LPAREN] = ACTIONS(4137), + [anon_sym_DOLLAR] = ACTIONS(3861), + [anon_sym_LBRACE] = ACTIONS(3863), + [anon_sym_DOT_DOT] = ACTIONS(4139), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4141), + [anon_sym_DOT_DOT_LT] = ACTIONS(4141), + [anon_sym_null] = ACTIONS(3869), + [anon_sym_true] = ACTIONS(3871), + [anon_sym_false] = ACTIONS(3871), + [aux_sym__val_number_decimal_token1] = ACTIONS(3873), + [aux_sym__val_number_decimal_token2] = ACTIONS(3875), + [aux_sym__val_number_decimal_token3] = ACTIONS(3877), + [aux_sym__val_number_decimal_token4] = ACTIONS(3879), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3872), - [aux_sym__val_number_token5] = ACTIONS(3872), - [aux_sym__val_number_token6] = ACTIONS(3872), + [aux_sym__val_number_token4] = ACTIONS(3881), + [aux_sym__val_number_token5] = ACTIONS(3881), + [aux_sym__val_number_token6] = ACTIONS(3881), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3874), + [sym_val_date] = ACTIONS(3883), [anon_sym_DQUOTE] = ACTIONS(1295), [sym__str_single_quotes] = ACTIONS(1297), [sym__str_back_ticks] = ACTIONS(1297), @@ -206561,7 +206561,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3212), + [aux_sym_unquoted_token1] = ACTIONS(3219), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(1299), }, @@ -206591,34 +206591,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__unquoted_anonymous_prefix] = STATE(7504), [sym_comment] = STATE(1302), [aux_sym__match_pattern_list_repeat1] = STATE(1328), - [anon_sym_LBRACK] = ACTIONS(4389), - [anon_sym_RBRACK] = ACTIONS(4415), - [anon_sym_LPAREN] = ACTIONS(3808), - [anon_sym_DOLLAR] = ACTIONS(3810), - [anon_sym_LBRACE] = ACTIONS(3812), - [anon_sym_DOT_DOT] = ACTIONS(4417), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3816), - [anon_sym_DOT_DOT_LT] = ACTIONS(3816), - [anon_sym_null] = ACTIONS(3818), - [anon_sym_true] = ACTIONS(3820), - [anon_sym_false] = ACTIONS(3820), - [aux_sym__val_number_decimal_token1] = ACTIONS(3822), - [aux_sym__val_number_decimal_token2] = ACTIONS(3824), - [aux_sym__val_number_decimal_token3] = ACTIONS(3826), - [aux_sym__val_number_decimal_token4] = ACTIONS(3828), - [aux_sym__val_number_token1] = ACTIONS(3830), - [aux_sym__val_number_token2] = ACTIONS(3830), - [aux_sym__val_number_token3] = ACTIONS(3830), - [aux_sym__val_number_token4] = ACTIONS(3832), - [aux_sym__val_number_token5] = ACTIONS(3832), - [aux_sym__val_number_token6] = ACTIONS(3832), - [anon_sym_0b] = ACTIONS(3834), - [anon_sym_0o] = ACTIONS(3836), - [anon_sym_0x] = ACTIONS(3836), - [sym_val_date] = ACTIONS(3838), - [anon_sym_DQUOTE] = ACTIONS(3840), - [sym__str_single_quotes] = ACTIONS(3842), - [sym__str_back_ticks] = ACTIONS(3842), + [anon_sym_LBRACK] = ACTIONS(4398), + [anon_sym_RBRACK] = ACTIONS(4424), + [anon_sym_LPAREN] = ACTIONS(3817), + [anon_sym_DOLLAR] = ACTIONS(3819), + [anon_sym_LBRACE] = ACTIONS(3821), + [anon_sym_DOT_DOT] = ACTIONS(4426), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3825), + [anon_sym_DOT_DOT_LT] = ACTIONS(3825), + [anon_sym_null] = ACTIONS(3827), + [anon_sym_true] = ACTIONS(3829), + [anon_sym_false] = ACTIONS(3829), + [aux_sym__val_number_decimal_token1] = ACTIONS(3831), + [aux_sym__val_number_decimal_token2] = ACTIONS(3833), + [aux_sym__val_number_decimal_token3] = ACTIONS(3835), + [aux_sym__val_number_decimal_token4] = ACTIONS(3837), + [aux_sym__val_number_token1] = ACTIONS(3839), + [aux_sym__val_number_token2] = ACTIONS(3839), + [aux_sym__val_number_token3] = ACTIONS(3839), + [aux_sym__val_number_token4] = ACTIONS(3841), + [aux_sym__val_number_token5] = ACTIONS(3841), + [aux_sym__val_number_token6] = ACTIONS(3841), + [anon_sym_0b] = ACTIONS(3843), + [anon_sym_0o] = ACTIONS(3845), + [anon_sym_0x] = ACTIONS(3845), + [sym_val_date] = ACTIONS(3847), + [anon_sym_DQUOTE] = ACTIONS(3849), + [sym__str_single_quotes] = ACTIONS(3851), + [sym__str_back_ticks] = ACTIONS(3851), [anon_sym_err_GT] = ACTIONS(2587), [anon_sym_out_GT] = ACTIONS(2587), [anon_sym_e_GT] = ACTIONS(2587), @@ -206635,9 +206635,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2589), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2589), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2589), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3844), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3853), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3846), + [sym_raw_string_begin] = ACTIONS(3855), }, [1303] = { [sym__val_range] = STATE(7536), @@ -206664,35 +206664,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unquoted] = STATE(5989), [sym__unquoted_anonymous_prefix] = STATE(7738), [sym_comment] = STATE(1303), - [anon_sym_LBRACK] = ACTIONS(4050), - [anon_sym_LPAREN] = ACTIONS(4052), - [anon_sym_DOLLAR] = ACTIONS(4054), - [anon_sym_LBRACE] = ACTIONS(4056), - [anon_sym_DOT_DOT] = ACTIONS(4058), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4060), - [anon_sym_DOT_DOT_LT] = ACTIONS(4060), - [anon_sym_null] = ACTIONS(4062), - [anon_sym_true] = ACTIONS(4064), - [anon_sym_false] = ACTIONS(4064), - [aux_sym__val_number_decimal_token1] = ACTIONS(4066), - [aux_sym__val_number_decimal_token2] = ACTIONS(4068), - [aux_sym__val_number_decimal_token3] = ACTIONS(4070), - [aux_sym__val_number_decimal_token4] = ACTIONS(4072), - [aux_sym__val_number_token1] = ACTIONS(3602), - [aux_sym__val_number_token2] = ACTIONS(3602), - [aux_sym__val_number_token3] = ACTIONS(3602), - [aux_sym__val_number_token4] = ACTIONS(4074), - [aux_sym__val_number_token5] = ACTIONS(4074), - [aux_sym__val_number_token6] = ACTIONS(4074), - [anon_sym_0b] = ACTIONS(3606), - [anon_sym_0o] = ACTIONS(3608), - [anon_sym_0x] = ACTIONS(3608), - [sym_val_date] = ACTIONS(4076), + [anon_sym_LBRACK] = ACTIONS(4059), + [anon_sym_LPAREN] = ACTIONS(4061), + [anon_sym_DOLLAR] = ACTIONS(4063), + [anon_sym_LBRACE] = ACTIONS(4065), + [anon_sym_DOT_DOT] = ACTIONS(4067), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4069), + [anon_sym_DOT_DOT_LT] = ACTIONS(4069), + [anon_sym_null] = ACTIONS(4071), + [anon_sym_true] = ACTIONS(4073), + [anon_sym_false] = ACTIONS(4073), + [aux_sym__val_number_decimal_token1] = ACTIONS(4075), + [aux_sym__val_number_decimal_token2] = ACTIONS(4077), + [aux_sym__val_number_decimal_token3] = ACTIONS(4079), + [aux_sym__val_number_decimal_token4] = ACTIONS(4081), + [aux_sym__val_number_token1] = ACTIONS(3611), + [aux_sym__val_number_token2] = ACTIONS(3611), + [aux_sym__val_number_token3] = ACTIONS(3611), + [aux_sym__val_number_token4] = ACTIONS(4083), + [aux_sym__val_number_token5] = ACTIONS(4083), + [aux_sym__val_number_token6] = ACTIONS(4083), + [anon_sym_0b] = ACTIONS(3615), + [anon_sym_0o] = ACTIONS(3617), + [anon_sym_0x] = ACTIONS(3617), + [sym_val_date] = ACTIONS(4085), [anon_sym_DQUOTE] = ACTIONS(1295), [sym__str_single_quotes] = ACTIONS(1297), [sym__str_back_ticks] = ACTIONS(1297), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3616), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3618), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3625), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3627), [anon_sym_err_GT] = ACTIONS(2741), [anon_sym_out_GT] = ACTIONS(2741), [anon_sym_e_GT] = ACTIONS(2741), @@ -206709,7 +206709,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(4078), + [aux_sym_unquoted_token1] = ACTIONS(4087), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(1299), }, @@ -206738,35 +206738,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unquoted] = STATE(5989), [sym__unquoted_anonymous_prefix] = STATE(7738), [sym_comment] = STATE(1304), - [anon_sym_LBRACK] = ACTIONS(4050), - [anon_sym_LPAREN] = ACTIONS(4052), - [anon_sym_DOLLAR] = ACTIONS(4106), - [anon_sym_LBRACE] = ACTIONS(4056), - [anon_sym_DOT_DOT] = ACTIONS(4058), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4060), - [anon_sym_DOT_DOT_LT] = ACTIONS(4060), - [anon_sym_null] = ACTIONS(4062), - [anon_sym_true] = ACTIONS(4064), - [anon_sym_false] = ACTIONS(4064), - [aux_sym__val_number_decimal_token1] = ACTIONS(4108), - [aux_sym__val_number_decimal_token2] = ACTIONS(4110), - [aux_sym__val_number_decimal_token3] = ACTIONS(4112), - [aux_sym__val_number_decimal_token4] = ACTIONS(4114), - [aux_sym__val_number_token1] = ACTIONS(3602), - [aux_sym__val_number_token2] = ACTIONS(3602), - [aux_sym__val_number_token3] = ACTIONS(3602), - [aux_sym__val_number_token4] = ACTIONS(4116), - [aux_sym__val_number_token5] = ACTIONS(4116), - [aux_sym__val_number_token6] = ACTIONS(4116), - [anon_sym_0b] = ACTIONS(3606), - [anon_sym_0o] = ACTIONS(3608), - [anon_sym_0x] = ACTIONS(3608), - [sym_val_date] = ACTIONS(4076), + [anon_sym_LBRACK] = ACTIONS(4059), + [anon_sym_LPAREN] = ACTIONS(4061), + [anon_sym_DOLLAR] = ACTIONS(4115), + [anon_sym_LBRACE] = ACTIONS(4065), + [anon_sym_DOT_DOT] = ACTIONS(4067), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4069), + [anon_sym_DOT_DOT_LT] = ACTIONS(4069), + [anon_sym_null] = ACTIONS(4071), + [anon_sym_true] = ACTIONS(4073), + [anon_sym_false] = ACTIONS(4073), + [aux_sym__val_number_decimal_token1] = ACTIONS(4117), + [aux_sym__val_number_decimal_token2] = ACTIONS(4119), + [aux_sym__val_number_decimal_token3] = ACTIONS(4121), + [aux_sym__val_number_decimal_token4] = ACTIONS(4123), + [aux_sym__val_number_token1] = ACTIONS(3611), + [aux_sym__val_number_token2] = ACTIONS(3611), + [aux_sym__val_number_token3] = ACTIONS(3611), + [aux_sym__val_number_token4] = ACTIONS(4125), + [aux_sym__val_number_token5] = ACTIONS(4125), + [aux_sym__val_number_token6] = ACTIONS(4125), + [anon_sym_0b] = ACTIONS(3615), + [anon_sym_0o] = ACTIONS(3617), + [anon_sym_0x] = ACTIONS(3617), + [sym_val_date] = ACTIONS(4085), [anon_sym_DQUOTE] = ACTIONS(1295), [sym__str_single_quotes] = ACTIONS(1297), [sym__str_back_ticks] = ACTIONS(1297), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3616), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3618), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3625), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3627), [anon_sym_err_GT] = ACTIONS(2741), [anon_sym_out_GT] = ACTIONS(2741), [anon_sym_e_GT] = ACTIONS(2741), @@ -206783,7 +206783,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(4078), + [aux_sym_unquoted_token1] = ACTIONS(4087), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(1299), }, @@ -206814,8 +206814,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT_LT] = ACTIONS(1595), [anon_sym_DOT_DOT_EQ2] = ACTIONS(1597), [anon_sym_DOT_DOT_LT2] = ACTIONS(1597), - [aux_sym__immediate_decimal_token1] = ACTIONS(4419), - [aux_sym__immediate_decimal_token2] = ACTIONS(4421), + [aux_sym__immediate_decimal_token1] = ACTIONS(4428), + [aux_sym__immediate_decimal_token2] = ACTIONS(4430), [anon_sym_null] = ACTIONS(1597), [anon_sym_true] = ACTIONS(1597), [anon_sym_false] = ACTIONS(1597), @@ -206880,19 +206880,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(1709), [anon_sym_LPAREN] = ACTIONS(1707), [anon_sym_RPAREN] = ACTIONS(1709), - [anon_sym_DOLLAR] = ACTIONS(3986), + [anon_sym_DOLLAR] = ACTIONS(3995), [anon_sym_DASH_DASH] = ACTIONS(1709), [anon_sym_DASH2] = ACTIONS(1707), [anon_sym_LBRACE] = ACTIONS(1709), [anon_sym_RBRACE] = ACTIONS(1709), [anon_sym_DOT_DOT] = ACTIONS(1707), - [anon_sym_LPAREN2] = ACTIONS(3988), + [anon_sym_LPAREN2] = ACTIONS(3997), [anon_sym_DOT_DOT_EQ] = ACTIONS(1709), [anon_sym_DOT_DOT_LT] = ACTIONS(1709), - [aux_sym__immediate_decimal_token1] = ACTIONS(4395), - [aux_sym__immediate_decimal_token3] = ACTIONS(4397), - [aux_sym__immediate_decimal_token4] = ACTIONS(4399), - [aux_sym__immediate_decimal_token5] = ACTIONS(4401), + [aux_sym__immediate_decimal_token1] = ACTIONS(4404), + [aux_sym__immediate_decimal_token3] = ACTIONS(4406), + [aux_sym__immediate_decimal_token4] = ACTIONS(4408), + [aux_sym__immediate_decimal_token5] = ACTIONS(4410), [anon_sym_null] = ACTIONS(1709), [anon_sym_true] = ACTIONS(1709), [anon_sym_false] = ACTIONS(1709), @@ -206960,35 +206960,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unquoted] = STATE(4529), [sym__unquoted_anonymous_prefix] = STATE(7537), [sym_comment] = STATE(1307), - [anon_sym_LBRACK] = ACTIONS(4175), - [anon_sym_LPAREN] = ACTIONS(4177), + [anon_sym_LBRACK] = ACTIONS(4184), + [anon_sym_LPAREN] = ACTIONS(4186), [anon_sym_DOLLAR] = ACTIONS(1807), - [anon_sym_LBRACE] = ACTIONS(4179), - [anon_sym_DOT_DOT] = ACTIONS(4181), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4183), - [anon_sym_DOT_DOT_LT] = ACTIONS(4183), - [anon_sym_null] = ACTIONS(4259), - [anon_sym_true] = ACTIONS(4261), - [anon_sym_false] = ACTIONS(4261), + [anon_sym_LBRACE] = ACTIONS(4188), + [anon_sym_DOT_DOT] = ACTIONS(4190), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4192), + [anon_sym_DOT_DOT_LT] = ACTIONS(4192), + [anon_sym_null] = ACTIONS(4268), + [anon_sym_true] = ACTIONS(4270), + [anon_sym_false] = ACTIONS(4270), [aux_sym__val_number_decimal_token1] = ACTIONS(1827), - [aux_sym__val_number_decimal_token2] = ACTIONS(4263), - [aux_sym__val_number_decimal_token3] = ACTIONS(4265), - [aux_sym__val_number_decimal_token4] = ACTIONS(4267), - [aux_sym__val_number_token1] = ACTIONS(4197), - [aux_sym__val_number_token2] = ACTIONS(4197), - [aux_sym__val_number_token3] = ACTIONS(4197), - [aux_sym__val_number_token4] = ACTIONS(4269), - [aux_sym__val_number_token5] = ACTIONS(4269), - [aux_sym__val_number_token6] = ACTIONS(4269), + [aux_sym__val_number_decimal_token2] = ACTIONS(4272), + [aux_sym__val_number_decimal_token3] = ACTIONS(4274), + [aux_sym__val_number_decimal_token4] = ACTIONS(4276), + [aux_sym__val_number_token1] = ACTIONS(4206), + [aux_sym__val_number_token2] = ACTIONS(4206), + [aux_sym__val_number_token3] = ACTIONS(4206), + [aux_sym__val_number_token4] = ACTIONS(4278), + [aux_sym__val_number_token5] = ACTIONS(4278), + [aux_sym__val_number_token6] = ACTIONS(4278), [anon_sym_0b] = ACTIONS(1837), [anon_sym_0o] = ACTIONS(1839), [anon_sym_0x] = ACTIONS(1839), - [sym_val_date] = ACTIONS(4271), - [anon_sym_DQUOTE] = ACTIONS(4203), - [sym__str_single_quotes] = ACTIONS(4205), - [sym__str_back_ticks] = ACTIONS(4205), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4207), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4209), + [sym_val_date] = ACTIONS(4280), + [anon_sym_DQUOTE] = ACTIONS(4212), + [sym__str_single_quotes] = ACTIONS(4214), + [sym__str_back_ticks] = ACTIONS(4214), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4216), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4218), [anon_sym_err_GT] = ACTIONS(2741), [anon_sym_out_GT] = ACTIONS(2741), [anon_sym_e_GT] = ACTIONS(2741), @@ -207134,7 +207134,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(1719), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1719), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1719), - [anon_sym_DOT2] = ACTIONS(4423), + [anon_sym_DOT2] = ACTIONS(4432), [anon_sym_err_GT] = ACTIONS(1717), [anon_sym_out_GT] = ACTIONS(1717), [anon_sym_e_GT] = ACTIONS(1717), @@ -207207,7 +207207,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(937), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(937), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(937), - [anon_sym_DOT2] = ACTIONS(4423), + [anon_sym_DOT2] = ACTIONS(4432), [anon_sym_err_GT] = ACTIONS(935), [anon_sym_out_GT] = ACTIONS(935), [anon_sym_e_GT] = ACTIONS(935), @@ -207255,7 +207255,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT_LT] = ACTIONS(1667), [anon_sym_DOT_DOT_EQ2] = ACTIONS(1669), [anon_sym_DOT_DOT_LT2] = ACTIONS(1669), - [aux_sym__immediate_decimal_token2] = ACTIONS(4425), + [aux_sym__immediate_decimal_token2] = ACTIONS(4434), [anon_sym_null] = ACTIONS(1669), [anon_sym_true] = ACTIONS(1669), [anon_sym_false] = ACTIONS(1669), @@ -207320,18 +207320,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1709), [anon_sym_LBRACK] = ACTIONS(1709), [anon_sym_LPAREN] = ACTIONS(1707), - [anon_sym_DOLLAR] = ACTIONS(4082), + [anon_sym_DOLLAR] = ACTIONS(4091), [anon_sym_DASH_DASH] = ACTIONS(1709), [anon_sym_DASH2] = ACTIONS(1707), [anon_sym_LBRACE] = ACTIONS(1709), [anon_sym_DOT_DOT] = ACTIONS(1707), - [anon_sym_LPAREN2] = ACTIONS(4137), + [anon_sym_LPAREN2] = ACTIONS(4146), [anon_sym_DOT_DOT_EQ] = ACTIONS(1709), [anon_sym_DOT_DOT_LT] = ACTIONS(1709), - [aux_sym__immediate_decimal_token1] = ACTIONS(4427), - [aux_sym__immediate_decimal_token3] = ACTIONS(4429), - [aux_sym__immediate_decimal_token4] = ACTIONS(4431), - [aux_sym__immediate_decimal_token5] = ACTIONS(4433), + [aux_sym__immediate_decimal_token1] = ACTIONS(4436), + [aux_sym__immediate_decimal_token3] = ACTIONS(4438), + [aux_sym__immediate_decimal_token4] = ACTIONS(4440), + [aux_sym__immediate_decimal_token5] = ACTIONS(4442), [anon_sym_null] = ACTIONS(1709), [anon_sym_true] = ACTIONS(1709), [anon_sym_false] = ACTIONS(1709), @@ -207393,18 +207393,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1713), [anon_sym_LBRACK] = ACTIONS(1713), [anon_sym_LPAREN] = ACTIONS(1711), - [anon_sym_DOLLAR] = ACTIONS(4082), + [anon_sym_DOLLAR] = ACTIONS(4091), [anon_sym_DASH_DASH] = ACTIONS(1713), [anon_sym_DASH2] = ACTIONS(1711), [anon_sym_LBRACE] = ACTIONS(1713), [anon_sym_DOT_DOT] = ACTIONS(1711), - [anon_sym_LPAREN2] = ACTIONS(4137), + [anon_sym_LPAREN2] = ACTIONS(4146), [anon_sym_DOT_DOT_EQ] = ACTIONS(1713), [anon_sym_DOT_DOT_LT] = ACTIONS(1713), - [aux_sym__immediate_decimal_token1] = ACTIONS(4427), - [aux_sym__immediate_decimal_token3] = ACTIONS(4429), - [aux_sym__immediate_decimal_token4] = ACTIONS(4431), - [aux_sym__immediate_decimal_token5] = ACTIONS(4433), + [aux_sym__immediate_decimal_token1] = ACTIONS(4436), + [aux_sym__immediate_decimal_token3] = ACTIONS(4438), + [aux_sym__immediate_decimal_token4] = ACTIONS(4440), + [aux_sym__immediate_decimal_token5] = ACTIONS(4442), [anon_sym_null] = ACTIONS(1713), [anon_sym_true] = ACTIONS(1713), [anon_sym_false] = ACTIONS(1713), @@ -207466,18 +207466,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1665), [anon_sym_LBRACK] = ACTIONS(1665), [anon_sym_LPAREN] = ACTIONS(1657), - [anon_sym_DOLLAR] = ACTIONS(4082), + [anon_sym_DOLLAR] = ACTIONS(4091), [anon_sym_DASH_DASH] = ACTIONS(1665), [anon_sym_DASH2] = ACTIONS(1657), [anon_sym_LBRACE] = ACTIONS(1665), [anon_sym_DOT_DOT] = ACTIONS(1657), - [anon_sym_LPAREN2] = ACTIONS(4137), + [anon_sym_LPAREN2] = ACTIONS(4146), [anon_sym_DOT_DOT_EQ] = ACTIONS(1665), [anon_sym_DOT_DOT_LT] = ACTIONS(1665), - [aux_sym__immediate_decimal_token1] = ACTIONS(4427), - [aux_sym__immediate_decimal_token3] = ACTIONS(4429), - [aux_sym__immediate_decimal_token4] = ACTIONS(4431), - [aux_sym__immediate_decimal_token5] = ACTIONS(4433), + [aux_sym__immediate_decimal_token1] = ACTIONS(4436), + [aux_sym__immediate_decimal_token3] = ACTIONS(4438), + [aux_sym__immediate_decimal_token4] = ACTIONS(4440), + [aux_sym__immediate_decimal_token5] = ACTIONS(4442), [anon_sym_null] = ACTIONS(1665), [anon_sym_true] = ACTIONS(1665), [anon_sym_false] = ACTIONS(1665), @@ -207546,8 +207546,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT_LT] = ACTIONS(1595), [anon_sym_DOT_DOT_EQ2] = ACTIONS(1597), [anon_sym_DOT_DOT_LT2] = ACTIONS(1597), - [aux_sym__immediate_decimal_token1] = ACTIONS(4435), - [aux_sym__immediate_decimal_token2] = ACTIONS(4437), + [aux_sym__immediate_decimal_token1] = ACTIONS(4444), + [aux_sym__immediate_decimal_token2] = ACTIONS(4446), [anon_sym_null] = ACTIONS(1597), [anon_sym_true] = ACTIONS(1597), [anon_sym_false] = ACTIONS(1597), @@ -207620,7 +207620,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT_LT] = ACTIONS(1587), [anon_sym_DOT_DOT_EQ2] = ACTIONS(1589), [anon_sym_DOT_DOT_LT2] = ACTIONS(1589), - [aux_sym__immediate_decimal_token2] = ACTIONS(4173), + [aux_sym__immediate_decimal_token2] = ACTIONS(4182), [anon_sym_null] = ACTIONS(1589), [anon_sym_true] = ACTIONS(1589), [anon_sym_false] = ACTIONS(1589), @@ -207766,7 +207766,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT_LT] = ACTIONS(1667), [anon_sym_DOT_DOT_EQ2] = ACTIONS(1669), [anon_sym_DOT_DOT_LT2] = ACTIONS(1669), - [aux_sym__immediate_decimal_token2] = ACTIONS(4439), + [aux_sym__immediate_decimal_token2] = ACTIONS(4448), [anon_sym_null] = ACTIONS(1669), [anon_sym_true] = ACTIONS(1669), [anon_sym_false] = ACTIONS(1669), @@ -207907,12 +207907,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(1589), [anon_sym_DOT_DOT] = ACTIONS(1587), [anon_sym_DOT_DOT2] = ACTIONS(1587), - [anon_sym_DOT] = ACTIONS(4441), + [anon_sym_DOT] = ACTIONS(4450), [anon_sym_DOT_DOT_EQ] = ACTIONS(1587), [anon_sym_DOT_DOT_LT] = ACTIONS(1587), [anon_sym_DOT_DOT_EQ2] = ACTIONS(1589), [anon_sym_DOT_DOT_LT2] = ACTIONS(1589), - [aux_sym__immediate_decimal_token2] = ACTIONS(4443), + [aux_sym__immediate_decimal_token2] = ACTIONS(4452), [anon_sym_null] = ACTIONS(1589), [anon_sym_true] = ACTIONS(1589), [anon_sym_false] = ACTIONS(1589), @@ -208012,7 +208012,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT2] = ACTIONS(935), [anon_sym_DOT_DOT_EQ2] = ACTIONS(937), [anon_sym_DOT_DOT_LT2] = ACTIONS(937), - [anon_sym_DOT2] = ACTIONS(4445), + [anon_sym_DOT2] = ACTIONS(4454), [anon_sym_err_GT] = ACTIONS(935), [anon_sym_out_GT] = ACTIONS(935), [anon_sym_e_GT] = ACTIONS(935), @@ -208253,35 +208253,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [1325] = { [sym_comment] = STATE(1325), [ts_builtin_sym_end] = ACTIONS(2247), - [anon_sym_STAR_STAR] = ACTIONS(3176), - [anon_sym_PLUS_PLUS] = ACTIONS(3176), - [anon_sym_STAR] = ACTIONS(3178), - [anon_sym_SLASH] = ACTIONS(3178), - [anon_sym_mod] = ACTIONS(3176), - [anon_sym_SLASH_SLASH] = ACTIONS(3176), - [anon_sym_PLUS] = ACTIONS(3178), - [anon_sym_DASH] = ACTIONS(3176), - [anon_sym_bit_DASHshl] = ACTIONS(3176), - [anon_sym_bit_DASHshr] = ACTIONS(3176), - [anon_sym_EQ_TILDE] = ACTIONS(3176), - [anon_sym_BANG_TILDE] = ACTIONS(3176), - [anon_sym_bit_DASHand] = ACTIONS(3176), - [anon_sym_bit_DASHxor] = ACTIONS(3176), - [anon_sym_bit_DASHor] = ACTIONS(3176), - [anon_sym_and] = ACTIONS(3176), - [anon_sym_xor] = ACTIONS(3176), - [anon_sym_or] = ACTIONS(3176), - [anon_sym_in] = ACTIONS(3176), - [anon_sym_not_DASHin] = ACTIONS(3176), - [anon_sym_starts_DASHwith] = ACTIONS(3176), - [anon_sym_ends_DASHwith] = ACTIONS(3176), - [anon_sym_EQ_EQ] = ACTIONS(3176), - [anon_sym_BANG_EQ] = ACTIONS(3176), - [anon_sym_LT] = ACTIONS(3178), - [anon_sym_LT_EQ] = ACTIONS(3176), - [anon_sym_GT] = ACTIONS(3178), - [anon_sym_GT_EQ] = ACTIONS(3176), - [aux_sym_cmd_identifier_token41] = ACTIONS(3180), + [anon_sym_STAR_STAR] = ACTIONS(3183), + [anon_sym_PLUS_PLUS] = ACTIONS(3183), + [anon_sym_STAR] = ACTIONS(3185), + [anon_sym_SLASH] = ACTIONS(3185), + [anon_sym_mod] = ACTIONS(3183), + [anon_sym_SLASH_SLASH] = ACTIONS(3183), + [anon_sym_PLUS] = ACTIONS(3185), + [anon_sym_DASH] = ACTIONS(3183), + [anon_sym_bit_DASHshl] = ACTIONS(3183), + [anon_sym_bit_DASHshr] = ACTIONS(3183), + [anon_sym_EQ_TILDE] = ACTIONS(3183), + [anon_sym_BANG_TILDE] = ACTIONS(3183), + [anon_sym_bit_DASHand] = ACTIONS(3183), + [anon_sym_bit_DASHxor] = ACTIONS(3183), + [anon_sym_bit_DASHor] = ACTIONS(3183), + [anon_sym_and] = ACTIONS(3183), + [anon_sym_xor] = ACTIONS(3183), + [anon_sym_or] = ACTIONS(3183), + [anon_sym_in] = ACTIONS(3183), + [anon_sym_not_DASHin] = ACTIONS(3183), + [anon_sym_starts_DASHwith] = ACTIONS(3183), + [anon_sym_ends_DASHwith] = ACTIONS(3183), + [anon_sym_EQ_EQ] = ACTIONS(3183), + [anon_sym_BANG_EQ] = ACTIONS(3183), + [anon_sym_LT] = ACTIONS(3185), + [anon_sym_LT_EQ] = ACTIONS(3183), + [anon_sym_GT] = ACTIONS(3185), + [anon_sym_GT_EQ] = ACTIONS(3183), + [aux_sym_cmd_identifier_token41] = ACTIONS(3187), [sym__newline] = ACTIONS(2245), [anon_sym_SEMI] = ACTIONS(2245), [anon_sym_PIPE] = ACTIONS(2245), @@ -208350,7 +208350,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT_LT] = ACTIONS(1587), [anon_sym_DOT_DOT_EQ2] = ACTIONS(1589), [anon_sym_DOT_DOT_LT2] = ACTIONS(1589), - [aux_sym__immediate_decimal_token2] = ACTIONS(4149), + [aux_sym__immediate_decimal_token2] = ACTIONS(4158), [anon_sym_null] = ACTIONS(1589), [anon_sym_true] = ACTIONS(1589), [anon_sym_false] = ACTIONS(1589), @@ -208494,53 +208494,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__unquoted_anonymous_prefix] = STATE(7504), [sym_comment] = STATE(1328), [aux_sym__match_pattern_list_repeat1] = STATE(1328), - [anon_sym_LBRACK] = ACTIONS(4447), - [anon_sym_RBRACK] = ACTIONS(4450), - [anon_sym_LPAREN] = ACTIONS(4452), - [anon_sym_DOLLAR] = ACTIONS(4455), - [anon_sym_LBRACE] = ACTIONS(4458), - [anon_sym_DOT_DOT] = ACTIONS(4461), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4464), - [anon_sym_DOT_DOT_LT] = ACTIONS(4464), - [anon_sym_null] = ACTIONS(4467), - [anon_sym_true] = ACTIONS(4470), - [anon_sym_false] = ACTIONS(4470), - [aux_sym__val_number_decimal_token1] = ACTIONS(4473), - [aux_sym__val_number_decimal_token2] = ACTIONS(4476), - [aux_sym__val_number_decimal_token3] = ACTIONS(4479), - [aux_sym__val_number_decimal_token4] = ACTIONS(4482), - [aux_sym__val_number_token1] = ACTIONS(4485), - [aux_sym__val_number_token2] = ACTIONS(4485), - [aux_sym__val_number_token3] = ACTIONS(4485), - [aux_sym__val_number_token4] = ACTIONS(4488), - [aux_sym__val_number_token5] = ACTIONS(4488), - [aux_sym__val_number_token6] = ACTIONS(4488), - [anon_sym_0b] = ACTIONS(4491), - [anon_sym_0o] = ACTIONS(4494), - [anon_sym_0x] = ACTIONS(4494), - [sym_val_date] = ACTIONS(4497), - [anon_sym_DQUOTE] = ACTIONS(4500), - [sym__str_single_quotes] = ACTIONS(4503), - [sym__str_back_ticks] = ACTIONS(4503), - [anon_sym_err_GT] = ACTIONS(4506), - [anon_sym_out_GT] = ACTIONS(4506), - [anon_sym_e_GT] = ACTIONS(4506), - [anon_sym_o_GT] = ACTIONS(4506), - [anon_sym_err_PLUSout_GT] = ACTIONS(4506), - [anon_sym_out_PLUSerr_GT] = ACTIONS(4506), - [anon_sym_o_PLUSe_GT] = ACTIONS(4506), - [anon_sym_e_PLUSo_GT] = ACTIONS(4506), - [anon_sym_err_GT_GT] = ACTIONS(4509), - [anon_sym_out_GT_GT] = ACTIONS(4509), - [anon_sym_e_GT_GT] = ACTIONS(4509), - [anon_sym_o_GT_GT] = ACTIONS(4509), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4509), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4509), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4509), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4509), - [aux_sym__unquoted_in_list_token1] = ACTIONS(4512), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(4515), + [anon_sym_LBRACK] = ACTIONS(4456), + [anon_sym_RBRACK] = ACTIONS(4459), + [anon_sym_LPAREN] = ACTIONS(4461), + [anon_sym_DOLLAR] = ACTIONS(4464), + [anon_sym_LBRACE] = ACTIONS(4467), + [anon_sym_DOT_DOT] = ACTIONS(4470), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4473), + [anon_sym_DOT_DOT_LT] = ACTIONS(4473), + [anon_sym_null] = ACTIONS(4476), + [anon_sym_true] = ACTIONS(4479), + [anon_sym_false] = ACTIONS(4479), + [aux_sym__val_number_decimal_token1] = ACTIONS(4482), + [aux_sym__val_number_decimal_token2] = ACTIONS(4485), + [aux_sym__val_number_decimal_token3] = ACTIONS(4488), + [aux_sym__val_number_decimal_token4] = ACTIONS(4491), + [aux_sym__val_number_token1] = ACTIONS(4494), + [aux_sym__val_number_token2] = ACTIONS(4494), + [aux_sym__val_number_token3] = ACTIONS(4494), + [aux_sym__val_number_token4] = ACTIONS(4497), + [aux_sym__val_number_token5] = ACTIONS(4497), + [aux_sym__val_number_token6] = ACTIONS(4497), + [anon_sym_0b] = ACTIONS(4500), + [anon_sym_0o] = ACTIONS(4503), + [anon_sym_0x] = ACTIONS(4503), + [sym_val_date] = ACTIONS(4506), + [anon_sym_DQUOTE] = ACTIONS(4509), + [sym__str_single_quotes] = ACTIONS(4512), + [sym__str_back_ticks] = ACTIONS(4512), + [anon_sym_err_GT] = ACTIONS(4515), + [anon_sym_out_GT] = ACTIONS(4515), + [anon_sym_e_GT] = ACTIONS(4515), + [anon_sym_o_GT] = ACTIONS(4515), + [anon_sym_err_PLUSout_GT] = ACTIONS(4515), + [anon_sym_out_PLUSerr_GT] = ACTIONS(4515), + [anon_sym_o_PLUSe_GT] = ACTIONS(4515), + [anon_sym_e_PLUSo_GT] = ACTIONS(4515), + [anon_sym_err_GT_GT] = ACTIONS(4518), + [anon_sym_out_GT_GT] = ACTIONS(4518), + [anon_sym_e_GT_GT] = ACTIONS(4518), + [anon_sym_o_GT_GT] = ACTIONS(4518), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4518), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4518), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4518), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4518), + [aux_sym__unquoted_in_list_token1] = ACTIONS(4521), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(4524), }, [1329] = { [sym_cell_path] = STATE(1502), @@ -208594,7 +208594,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(1723), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1723), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1723), - [anon_sym_DOT2] = ACTIONS(4423), + [anon_sym_DOT2] = ACTIONS(4432), [anon_sym_err_GT] = ACTIONS(1721), [anon_sym_out_GT] = ACTIONS(1721), [anon_sym_e_GT] = ACTIONS(1721), @@ -208690,35 +208690,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [1331] = { [sym_comment] = STATE(1331), - [anon_sym_STAR_STAR] = ACTIONS(3170), - [anon_sym_PLUS_PLUS] = ACTIONS(3170), - [anon_sym_STAR] = ACTIONS(3172), - [anon_sym_SLASH] = ACTIONS(3172), - [anon_sym_mod] = ACTIONS(3170), - [anon_sym_SLASH_SLASH] = ACTIONS(3170), - [anon_sym_PLUS] = ACTIONS(3172), - [anon_sym_DASH] = ACTIONS(3170), - [anon_sym_bit_DASHshl] = ACTIONS(3170), - [anon_sym_bit_DASHshr] = ACTIONS(3170), - [anon_sym_EQ_TILDE] = ACTIONS(3170), - [anon_sym_BANG_TILDE] = ACTIONS(3170), - [anon_sym_bit_DASHand] = ACTIONS(3170), - [anon_sym_bit_DASHxor] = ACTIONS(3170), - [anon_sym_bit_DASHor] = ACTIONS(3170), - [anon_sym_and] = ACTIONS(3170), - [anon_sym_xor] = ACTIONS(3170), - [anon_sym_or] = ACTIONS(3170), - [anon_sym_in] = ACTIONS(3170), - [anon_sym_not_DASHin] = ACTIONS(3170), - [anon_sym_starts_DASHwith] = ACTIONS(3170), - [anon_sym_ends_DASHwith] = ACTIONS(3170), - [anon_sym_EQ_EQ] = ACTIONS(3170), - [anon_sym_BANG_EQ] = ACTIONS(3170), - [anon_sym_LT] = ACTIONS(3172), - [anon_sym_LT_EQ] = ACTIONS(3170), - [anon_sym_GT] = ACTIONS(3172), - [anon_sym_GT_EQ] = ACTIONS(3170), - [aux_sym_cmd_identifier_token41] = ACTIONS(3174), + [anon_sym_STAR_STAR] = ACTIONS(3177), + [anon_sym_PLUS_PLUS] = ACTIONS(3177), + [anon_sym_STAR] = ACTIONS(3179), + [anon_sym_SLASH] = ACTIONS(3179), + [anon_sym_mod] = ACTIONS(3177), + [anon_sym_SLASH_SLASH] = ACTIONS(3177), + [anon_sym_PLUS] = ACTIONS(3179), + [anon_sym_DASH] = ACTIONS(3177), + [anon_sym_bit_DASHshl] = ACTIONS(3177), + [anon_sym_bit_DASHshr] = ACTIONS(3177), + [anon_sym_EQ_TILDE] = ACTIONS(3177), + [anon_sym_BANG_TILDE] = ACTIONS(3177), + [anon_sym_bit_DASHand] = ACTIONS(3177), + [anon_sym_bit_DASHxor] = ACTIONS(3177), + [anon_sym_bit_DASHor] = ACTIONS(3177), + [anon_sym_and] = ACTIONS(3177), + [anon_sym_xor] = ACTIONS(3177), + [anon_sym_or] = ACTIONS(3177), + [anon_sym_in] = ACTIONS(3177), + [anon_sym_not_DASHin] = ACTIONS(3177), + [anon_sym_starts_DASHwith] = ACTIONS(3177), + [anon_sym_ends_DASHwith] = ACTIONS(3177), + [anon_sym_EQ_EQ] = ACTIONS(3177), + [anon_sym_BANG_EQ] = ACTIONS(3177), + [anon_sym_LT] = ACTIONS(3179), + [anon_sym_LT_EQ] = ACTIONS(3177), + [anon_sym_GT] = ACTIONS(3179), + [anon_sym_GT_EQ] = ACTIONS(3177), + [aux_sym_cmd_identifier_token41] = ACTIONS(3181), [sym__newline] = ACTIONS(2237), [anon_sym_SEMI] = ACTIONS(2237), [anon_sym_PIPE] = ACTIONS(2237), @@ -208763,35 +208763,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [1332] = { [sym_comment] = STATE(1332), - [anon_sym_STAR_STAR] = ACTIONS(3170), - [anon_sym_PLUS_PLUS] = ACTIONS(3170), - [anon_sym_STAR] = ACTIONS(3172), - [anon_sym_SLASH] = ACTIONS(3172), - [anon_sym_mod] = ACTIONS(3170), - [anon_sym_SLASH_SLASH] = ACTIONS(3170), - [anon_sym_PLUS] = ACTIONS(3172), - [anon_sym_DASH] = ACTIONS(3170), - [anon_sym_bit_DASHshl] = ACTIONS(3170), - [anon_sym_bit_DASHshr] = ACTIONS(3170), - [anon_sym_EQ_TILDE] = ACTIONS(3170), - [anon_sym_BANG_TILDE] = ACTIONS(3170), - [anon_sym_bit_DASHand] = ACTIONS(3170), - [anon_sym_bit_DASHxor] = ACTIONS(3170), - [anon_sym_bit_DASHor] = ACTIONS(3170), - [anon_sym_and] = ACTIONS(3170), - [anon_sym_xor] = ACTIONS(3170), - [anon_sym_or] = ACTIONS(3170), - [anon_sym_in] = ACTIONS(3170), - [anon_sym_not_DASHin] = ACTIONS(3170), - [anon_sym_starts_DASHwith] = ACTIONS(3170), - [anon_sym_ends_DASHwith] = ACTIONS(3170), - [anon_sym_EQ_EQ] = ACTIONS(3170), - [anon_sym_BANG_EQ] = ACTIONS(3170), - [anon_sym_LT] = ACTIONS(3172), - [anon_sym_LT_EQ] = ACTIONS(3170), - [anon_sym_GT] = ACTIONS(3172), - [anon_sym_GT_EQ] = ACTIONS(3170), - [aux_sym_cmd_identifier_token41] = ACTIONS(3174), + [anon_sym_STAR_STAR] = ACTIONS(3177), + [anon_sym_PLUS_PLUS] = ACTIONS(3177), + [anon_sym_STAR] = ACTIONS(3179), + [anon_sym_SLASH] = ACTIONS(3179), + [anon_sym_mod] = ACTIONS(3177), + [anon_sym_SLASH_SLASH] = ACTIONS(3177), + [anon_sym_PLUS] = ACTIONS(3179), + [anon_sym_DASH] = ACTIONS(3177), + [anon_sym_bit_DASHshl] = ACTIONS(3177), + [anon_sym_bit_DASHshr] = ACTIONS(3177), + [anon_sym_EQ_TILDE] = ACTIONS(3177), + [anon_sym_BANG_TILDE] = ACTIONS(3177), + [anon_sym_bit_DASHand] = ACTIONS(3177), + [anon_sym_bit_DASHxor] = ACTIONS(3177), + [anon_sym_bit_DASHor] = ACTIONS(3177), + [anon_sym_and] = ACTIONS(3177), + [anon_sym_xor] = ACTIONS(3177), + [anon_sym_or] = ACTIONS(3177), + [anon_sym_in] = ACTIONS(3177), + [anon_sym_not_DASHin] = ACTIONS(3177), + [anon_sym_starts_DASHwith] = ACTIONS(3177), + [anon_sym_ends_DASHwith] = ACTIONS(3177), + [anon_sym_EQ_EQ] = ACTIONS(3177), + [anon_sym_BANG_EQ] = ACTIONS(3177), + [anon_sym_LT] = ACTIONS(3179), + [anon_sym_LT_EQ] = ACTIONS(3177), + [anon_sym_GT] = ACTIONS(3179), + [anon_sym_GT_EQ] = ACTIONS(3177), + [aux_sym_cmd_identifier_token41] = ACTIONS(3181), [sym__newline] = ACTIONS(2245), [anon_sym_SEMI] = ACTIONS(2245), [anon_sym_PIPE] = ACTIONS(2245), @@ -208858,12 +208858,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT] = ACTIONS(1725), [anon_sym_LPAREN2] = ACTIONS(1727), [anon_sym_DOT_DOT2] = ACTIONS(1725), - [anon_sym_DOT] = ACTIONS(4518), + [anon_sym_DOT] = ACTIONS(4527), [anon_sym_DOT_DOT_EQ] = ACTIONS(1725), [anon_sym_DOT_DOT_LT] = ACTIONS(1725), [anon_sym_DOT_DOT_EQ2] = ACTIONS(1727), [anon_sym_DOT_DOT_LT2] = ACTIONS(1727), - [aux_sym__immediate_decimal_token2] = ACTIONS(4520), + [aux_sym__immediate_decimal_token2] = ACTIONS(4529), [anon_sym_null] = ACTIONS(1727), [anon_sym_true] = ACTIONS(1727), [anon_sym_false] = ACTIONS(1727), @@ -208932,7 +208932,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_in2] = ACTIONS(960), [anon_sym_RBRACE] = ACTIONS(960), [anon_sym_STAR2] = ACTIONS(958), - [anon_sym_QMARK2] = ACTIONS(4522), + [anon_sym_QMARK2] = ACTIONS(4531), [anon_sym_and2] = ACTIONS(960), [anon_sym_xor2] = ACTIONS(960), [anon_sym_or2] = ACTIONS(960), @@ -209005,7 +209005,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_in2] = ACTIONS(954), [anon_sym_RBRACE] = ACTIONS(954), [anon_sym_STAR2] = ACTIONS(952), - [anon_sym_QMARK2] = ACTIONS(4524), + [anon_sym_QMARK2] = ACTIONS(4533), [anon_sym_and2] = ACTIONS(954), [anon_sym_xor2] = ACTIONS(954), [anon_sym_or2] = ACTIONS(954), @@ -209055,35 +209055,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [1336] = { [sym_comment] = STATE(1336), - [anon_sym_STAR_STAR] = ACTIONS(3170), - [anon_sym_PLUS_PLUS] = ACTIONS(3170), - [anon_sym_STAR] = ACTIONS(3172), - [anon_sym_SLASH] = ACTIONS(3172), - [anon_sym_mod] = ACTIONS(3170), - [anon_sym_SLASH_SLASH] = ACTIONS(3170), - [anon_sym_PLUS] = ACTIONS(3172), - [anon_sym_DASH] = ACTIONS(3170), - [anon_sym_bit_DASHshl] = ACTIONS(3170), - [anon_sym_bit_DASHshr] = ACTIONS(3170), - [anon_sym_EQ_TILDE] = ACTIONS(3170), - [anon_sym_BANG_TILDE] = ACTIONS(3170), - [anon_sym_bit_DASHand] = ACTIONS(3170), - [anon_sym_bit_DASHxor] = ACTIONS(3170), - [anon_sym_bit_DASHor] = ACTIONS(3170), - [anon_sym_and] = ACTIONS(3170), - [anon_sym_xor] = ACTIONS(3170), - [anon_sym_or] = ACTIONS(3170), - [anon_sym_in] = ACTIONS(3170), - [anon_sym_not_DASHin] = ACTIONS(3170), - [anon_sym_starts_DASHwith] = ACTIONS(3170), - [anon_sym_ends_DASHwith] = ACTIONS(3170), - [anon_sym_EQ_EQ] = ACTIONS(3170), - [anon_sym_BANG_EQ] = ACTIONS(3170), - [anon_sym_LT] = ACTIONS(3172), - [anon_sym_LT_EQ] = ACTIONS(3170), - [anon_sym_GT] = ACTIONS(3172), - [anon_sym_GT_EQ] = ACTIONS(3170), - [aux_sym_cmd_identifier_token41] = ACTIONS(3174), + [anon_sym_STAR_STAR] = ACTIONS(3177), + [anon_sym_PLUS_PLUS] = ACTIONS(3177), + [anon_sym_STAR] = ACTIONS(3179), + [anon_sym_SLASH] = ACTIONS(3179), + [anon_sym_mod] = ACTIONS(3177), + [anon_sym_SLASH_SLASH] = ACTIONS(3177), + [anon_sym_PLUS] = ACTIONS(3179), + [anon_sym_DASH] = ACTIONS(3177), + [anon_sym_bit_DASHshl] = ACTIONS(3177), + [anon_sym_bit_DASHshr] = ACTIONS(3177), + [anon_sym_EQ_TILDE] = ACTIONS(3177), + [anon_sym_BANG_TILDE] = ACTIONS(3177), + [anon_sym_bit_DASHand] = ACTIONS(3177), + [anon_sym_bit_DASHxor] = ACTIONS(3177), + [anon_sym_bit_DASHor] = ACTIONS(3177), + [anon_sym_and] = ACTIONS(3177), + [anon_sym_xor] = ACTIONS(3177), + [anon_sym_or] = ACTIONS(3177), + [anon_sym_in] = ACTIONS(3177), + [anon_sym_not_DASHin] = ACTIONS(3177), + [anon_sym_starts_DASHwith] = ACTIONS(3177), + [anon_sym_ends_DASHwith] = ACTIONS(3177), + [anon_sym_EQ_EQ] = ACTIONS(3177), + [anon_sym_BANG_EQ] = ACTIONS(3177), + [anon_sym_LT] = ACTIONS(3179), + [anon_sym_LT_EQ] = ACTIONS(3177), + [anon_sym_GT] = ACTIONS(3179), + [anon_sym_GT_EQ] = ACTIONS(3177), + [aux_sym_cmd_identifier_token41] = ACTIONS(3181), [sym__newline] = ACTIONS(2237), [anon_sym_SEMI] = ACTIONS(2237), [anon_sym_PIPE] = ACTIONS(2237), @@ -209128,35 +209128,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [1337] = { [sym_comment] = STATE(1337), - [anon_sym_STAR_STAR] = ACTIONS(3170), - [anon_sym_PLUS_PLUS] = ACTIONS(3170), - [anon_sym_STAR] = ACTIONS(3172), - [anon_sym_SLASH] = ACTIONS(3172), - [anon_sym_mod] = ACTIONS(3170), - [anon_sym_SLASH_SLASH] = ACTIONS(3170), - [anon_sym_PLUS] = ACTIONS(3172), - [anon_sym_DASH] = ACTIONS(3170), - [anon_sym_bit_DASHshl] = ACTIONS(3170), - [anon_sym_bit_DASHshr] = ACTIONS(3170), - [anon_sym_EQ_TILDE] = ACTIONS(3170), - [anon_sym_BANG_TILDE] = ACTIONS(3170), - [anon_sym_bit_DASHand] = ACTIONS(3170), - [anon_sym_bit_DASHxor] = ACTIONS(3170), - [anon_sym_bit_DASHor] = ACTIONS(3170), - [anon_sym_and] = ACTIONS(3170), - [anon_sym_xor] = ACTIONS(3170), - [anon_sym_or] = ACTIONS(3170), - [anon_sym_in] = ACTIONS(3170), - [anon_sym_not_DASHin] = ACTIONS(3170), - [anon_sym_starts_DASHwith] = ACTIONS(3170), - [anon_sym_ends_DASHwith] = ACTIONS(3170), - [anon_sym_EQ_EQ] = ACTIONS(3170), - [anon_sym_BANG_EQ] = ACTIONS(3170), - [anon_sym_LT] = ACTIONS(3172), - [anon_sym_LT_EQ] = ACTIONS(3170), - [anon_sym_GT] = ACTIONS(3172), - [anon_sym_GT_EQ] = ACTIONS(3170), - [aux_sym_cmd_identifier_token41] = ACTIONS(3174), + [anon_sym_STAR_STAR] = ACTIONS(3177), + [anon_sym_PLUS_PLUS] = ACTIONS(3177), + [anon_sym_STAR] = ACTIONS(3179), + [anon_sym_SLASH] = ACTIONS(3179), + [anon_sym_mod] = ACTIONS(3177), + [anon_sym_SLASH_SLASH] = ACTIONS(3177), + [anon_sym_PLUS] = ACTIONS(3179), + [anon_sym_DASH] = ACTIONS(3177), + [anon_sym_bit_DASHshl] = ACTIONS(3177), + [anon_sym_bit_DASHshr] = ACTIONS(3177), + [anon_sym_EQ_TILDE] = ACTIONS(3177), + [anon_sym_BANG_TILDE] = ACTIONS(3177), + [anon_sym_bit_DASHand] = ACTIONS(3177), + [anon_sym_bit_DASHxor] = ACTIONS(3177), + [anon_sym_bit_DASHor] = ACTIONS(3177), + [anon_sym_and] = ACTIONS(3177), + [anon_sym_xor] = ACTIONS(3177), + [anon_sym_or] = ACTIONS(3177), + [anon_sym_in] = ACTIONS(3177), + [anon_sym_not_DASHin] = ACTIONS(3177), + [anon_sym_starts_DASHwith] = ACTIONS(3177), + [anon_sym_ends_DASHwith] = ACTIONS(3177), + [anon_sym_EQ_EQ] = ACTIONS(3177), + [anon_sym_BANG_EQ] = ACTIONS(3177), + [anon_sym_LT] = ACTIONS(3179), + [anon_sym_LT_EQ] = ACTIONS(3177), + [anon_sym_GT] = ACTIONS(3179), + [anon_sym_GT_EQ] = ACTIONS(3177), + [aux_sym_cmd_identifier_token41] = ACTIONS(3181), [sym__newline] = ACTIONS(2245), [anon_sym_SEMI] = ACTIONS(2245), [anon_sym_PIPE] = ACTIONS(2245), @@ -209221,12 +209221,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH2] = ACTIONS(1681), [anon_sym_LBRACE] = ACTIONS(1693), [anon_sym_DOT_DOT] = ACTIONS(1681), - [anon_sym_LPAREN2] = ACTIONS(4403), - [anon_sym_DOT_DOT2] = ACTIONS(4526), + [anon_sym_LPAREN2] = ACTIONS(4412), + [anon_sym_DOT_DOT2] = ACTIONS(4535), [anon_sym_DOT_DOT_EQ] = ACTIONS(1681), [anon_sym_DOT_DOT_LT] = ACTIONS(1681), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4528), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4528), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4537), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4537), [anon_sym_null] = ACTIONS(1693), [anon_sym_true] = ACTIONS(1693), [anon_sym_false] = ACTIONS(1693), @@ -209241,8 +209241,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__val_number_token5] = ACTIONS(1693), [aux_sym__val_number_token6] = ACTIONS(1693), [anon_sym_0b] = ACTIONS(1681), - [sym_filesize_unit] = ACTIONS(4530), - [sym_duration_unit] = ACTIONS(4532), + [sym_filesize_unit] = ACTIONS(4539), + [sym_duration_unit] = ACTIONS(4541), [anon_sym_0o] = ACTIONS(1681), [anon_sym_0x] = ACTIONS(1681), [sym_val_date] = ACTIONS(1693), @@ -209268,7 +209268,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1693), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1693), [aux_sym_unquoted_token1] = ACTIONS(1681), - [aux_sym_unquoted_token2] = ACTIONS(4534), + [aux_sym_unquoted_token2] = ACTIONS(4543), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(1693), }, @@ -209291,18 +209291,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1643), [anon_sym_LBRACK] = ACTIONS(1643), [anon_sym_LPAREN] = ACTIONS(1633), - [anon_sym_DOLLAR] = ACTIONS(4082), + [anon_sym_DOLLAR] = ACTIONS(4091), [anon_sym_DASH_DASH] = ACTIONS(1643), [anon_sym_DASH2] = ACTIONS(1633), [anon_sym_LBRACE] = ACTIONS(1643), [anon_sym_DOT_DOT] = ACTIONS(1633), - [anon_sym_LPAREN2] = ACTIONS(4137), + [anon_sym_LPAREN2] = ACTIONS(4146), [anon_sym_DOT_DOT_EQ] = ACTIONS(1643), [anon_sym_DOT_DOT_LT] = ACTIONS(1643), - [aux_sym__immediate_decimal_token1] = ACTIONS(4427), - [aux_sym__immediate_decimal_token3] = ACTIONS(4429), - [aux_sym__immediate_decimal_token4] = ACTIONS(4431), - [aux_sym__immediate_decimal_token5] = ACTIONS(4433), + [aux_sym__immediate_decimal_token1] = ACTIONS(4436), + [aux_sym__immediate_decimal_token3] = ACTIONS(4438), + [aux_sym__immediate_decimal_token4] = ACTIONS(4440), + [aux_sym__immediate_decimal_token5] = ACTIONS(4442), [anon_sym_null] = ACTIONS(1643), [anon_sym_true] = ACTIONS(1643), [anon_sym_false] = ACTIONS(1643), @@ -209373,8 +209373,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT_LT] = ACTIONS(1757), [anon_sym_DOT_DOT_EQ2] = ACTIONS(1759), [anon_sym_DOT_DOT_LT2] = ACTIONS(1759), - [aux_sym__immediate_decimal_token1] = ACTIONS(4536), - [aux_sym__immediate_decimal_token2] = ACTIONS(4538), + [aux_sym__immediate_decimal_token1] = ACTIONS(4545), + [aux_sym__immediate_decimal_token2] = ACTIONS(4547), [anon_sym_null] = ACTIONS(1759), [anon_sym_true] = ACTIONS(1759), [anon_sym_false] = ACTIONS(1759), @@ -209421,35 +209421,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [1341] = { [sym_comment] = STATE(1341), [ts_builtin_sym_end] = ACTIONS(2241), - [anon_sym_STAR_STAR] = ACTIONS(3176), - [anon_sym_PLUS_PLUS] = ACTIONS(3176), - [anon_sym_STAR] = ACTIONS(3178), - [anon_sym_SLASH] = ACTIONS(3178), - [anon_sym_mod] = ACTIONS(3176), - [anon_sym_SLASH_SLASH] = ACTIONS(3176), - [anon_sym_PLUS] = ACTIONS(3178), - [anon_sym_DASH] = ACTIONS(3176), - [anon_sym_bit_DASHshl] = ACTIONS(3176), - [anon_sym_bit_DASHshr] = ACTIONS(3176), - [anon_sym_EQ_TILDE] = ACTIONS(3176), - [anon_sym_BANG_TILDE] = ACTIONS(3176), - [anon_sym_bit_DASHand] = ACTIONS(3176), - [anon_sym_bit_DASHxor] = ACTIONS(3176), - [anon_sym_bit_DASHor] = ACTIONS(3176), - [anon_sym_and] = ACTIONS(3176), - [anon_sym_xor] = ACTIONS(3176), - [anon_sym_or] = ACTIONS(3176), - [anon_sym_in] = ACTIONS(3176), - [anon_sym_not_DASHin] = ACTIONS(3176), - [anon_sym_starts_DASHwith] = ACTIONS(3176), - [anon_sym_ends_DASHwith] = ACTIONS(3176), - [anon_sym_EQ_EQ] = ACTIONS(3176), - [anon_sym_BANG_EQ] = ACTIONS(3176), - [anon_sym_LT] = ACTIONS(3178), - [anon_sym_LT_EQ] = ACTIONS(3176), - [anon_sym_GT] = ACTIONS(3178), - [anon_sym_GT_EQ] = ACTIONS(3176), - [aux_sym_cmd_identifier_token41] = ACTIONS(3180), + [anon_sym_STAR_STAR] = ACTIONS(3183), + [anon_sym_PLUS_PLUS] = ACTIONS(3183), + [anon_sym_STAR] = ACTIONS(3185), + [anon_sym_SLASH] = ACTIONS(3185), + [anon_sym_mod] = ACTIONS(3183), + [anon_sym_SLASH_SLASH] = ACTIONS(3183), + [anon_sym_PLUS] = ACTIONS(3185), + [anon_sym_DASH] = ACTIONS(3183), + [anon_sym_bit_DASHshl] = ACTIONS(3183), + [anon_sym_bit_DASHshr] = ACTIONS(3183), + [anon_sym_EQ_TILDE] = ACTIONS(3183), + [anon_sym_BANG_TILDE] = ACTIONS(3183), + [anon_sym_bit_DASHand] = ACTIONS(3183), + [anon_sym_bit_DASHxor] = ACTIONS(3183), + [anon_sym_bit_DASHor] = ACTIONS(3183), + [anon_sym_and] = ACTIONS(3183), + [anon_sym_xor] = ACTIONS(3183), + [anon_sym_or] = ACTIONS(3183), + [anon_sym_in] = ACTIONS(3183), + [anon_sym_not_DASHin] = ACTIONS(3183), + [anon_sym_starts_DASHwith] = ACTIONS(3183), + [anon_sym_ends_DASHwith] = ACTIONS(3183), + [anon_sym_EQ_EQ] = ACTIONS(3183), + [anon_sym_BANG_EQ] = ACTIONS(3183), + [anon_sym_LT] = ACTIONS(3185), + [anon_sym_LT_EQ] = ACTIONS(3183), + [anon_sym_GT] = ACTIONS(3185), + [anon_sym_GT_EQ] = ACTIONS(3183), + [aux_sym_cmd_identifier_token41] = ACTIONS(3187), [sym__newline] = ACTIONS(2237), [anon_sym_SEMI] = ACTIONS(2237), [anon_sym_PIPE] = ACTIONS(2237), @@ -209616,7 +209616,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT2] = ACTIONS(948), [anon_sym_DOT_DOT_EQ2] = ACTIONS(950), [anon_sym_DOT_DOT_LT2] = ACTIONS(950), - [anon_sym_DOT2] = ACTIONS(4445), + [anon_sym_DOT2] = ACTIONS(4454), [anon_sym_err_GT] = ACTIONS(948), [anon_sym_out_GT] = ACTIONS(948), [anon_sym_e_GT] = ACTIONS(948), @@ -209758,7 +209758,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(950), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(950), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(950), - [anon_sym_DOT2] = ACTIONS(4423), + [anon_sym_DOT2] = ACTIONS(4432), [anon_sym_err_GT] = ACTIONS(948), [anon_sym_out_GT] = ACTIONS(948), [anon_sym_e_GT] = ACTIONS(948), @@ -209830,7 +209830,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(1719), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1719), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1719), - [anon_sym_DOT2] = ACTIONS(4540), + [anon_sym_DOT2] = ACTIONS(4549), [anon_sym_err_GT] = ACTIONS(1717), [anon_sym_out_GT] = ACTIONS(1717), [anon_sym_e_GT] = ACTIONS(1717), @@ -209902,7 +209902,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(937), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(937), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(937), - [anon_sym_DOT2] = ACTIONS(4540), + [anon_sym_DOT2] = ACTIONS(4549), [anon_sym_err_GT] = ACTIONS(935), [anon_sym_out_GT] = ACTIONS(935), [anon_sym_e_GT] = ACTIONS(935), @@ -210012,7 +210012,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1643), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1643), [anon_sym_RPAREN] = ACTIONS(1643), - [anon_sym_DOLLAR] = ACTIONS(3538), + [anon_sym_DOLLAR] = ACTIONS(3547), [anon_sym_GT2] = ACTIONS(1633), [anon_sym_DASH2] = ACTIONS(1633), [anon_sym_in2] = ACTIONS(1643), @@ -210032,7 +210032,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ2] = ACTIONS(1643), [anon_sym_EQ_TILDE2] = ACTIONS(1643), [anon_sym_BANG_TILDE2] = ACTIONS(1643), - [anon_sym_LPAREN2] = ACTIONS(4542), + [anon_sym_LPAREN2] = ACTIONS(4551), [anon_sym_STAR_STAR2] = ACTIONS(1643), [anon_sym_PLUS_PLUS2] = ACTIONS(1643), [anon_sym_SLASH2] = ACTIONS(1633), @@ -210044,11 +210044,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bit_DASHand2] = ACTIONS(1643), [anon_sym_bit_DASHxor2] = ACTIONS(1643), [anon_sym_bit_DASHor2] = ACTIONS(1643), - [anon_sym_DOT] = ACTIONS(4544), - [aux_sym__immediate_decimal_token1] = ACTIONS(4546), - [aux_sym__immediate_decimal_token3] = ACTIONS(4546), - [aux_sym__immediate_decimal_token4] = ACTIONS(4548), - [aux_sym__immediate_decimal_token5] = ACTIONS(4550), + [anon_sym_DOT] = ACTIONS(4553), + [aux_sym__immediate_decimal_token1] = ACTIONS(4555), + [aux_sym__immediate_decimal_token3] = ACTIONS(4555), + [aux_sym__immediate_decimal_token4] = ACTIONS(4557), + [aux_sym__immediate_decimal_token5] = ACTIONS(4559), [anon_sym_err_GT] = ACTIONS(1633), [anon_sym_out_GT] = ACTIONS(1633), [anon_sym_e_GT] = ACTIONS(1633), @@ -210118,7 +210118,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(943), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(943), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(943), - [anon_sym_DOT2] = ACTIONS(4552), + [anon_sym_DOT2] = ACTIONS(4561), [anon_sym_err_GT] = ACTIONS(941), [anon_sym_out_GT] = ACTIONS(941), [anon_sym_e_GT] = ACTIONS(941), @@ -210156,7 +210156,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1553), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1553), [anon_sym_RPAREN] = ACTIONS(1553), - [anon_sym_DOLLAR] = ACTIONS(3538), + [anon_sym_DOLLAR] = ACTIONS(3547), [anon_sym_GT2] = ACTIONS(1539), [anon_sym_DASH2] = ACTIONS(1539), [anon_sym_in2] = ACTIONS(1553), @@ -210175,7 +210175,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ2] = ACTIONS(1553), [anon_sym_EQ_TILDE2] = ACTIONS(1553), [anon_sym_BANG_TILDE2] = ACTIONS(1553), - [anon_sym_LPAREN2] = ACTIONS(4542), + [anon_sym_LPAREN2] = ACTIONS(4551), [anon_sym_STAR_STAR2] = ACTIONS(1553), [anon_sym_PLUS_PLUS2] = ACTIONS(1553), [anon_sym_SLASH2] = ACTIONS(1539), @@ -210187,11 +210187,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bit_DASHand2] = ACTIONS(1553), [anon_sym_bit_DASHxor2] = ACTIONS(1553), [anon_sym_bit_DASHor2] = ACTIONS(1553), - [anon_sym_DOT] = ACTIONS(4555), - [aux_sym__immediate_decimal_token1] = ACTIONS(4546), - [aux_sym__immediate_decimal_token3] = ACTIONS(4546), - [aux_sym__immediate_decimal_token4] = ACTIONS(4548), - [aux_sym__immediate_decimal_token5] = ACTIONS(4550), + [anon_sym_DOT] = ACTIONS(4564), + [aux_sym__immediate_decimal_token1] = ACTIONS(4555), + [aux_sym__immediate_decimal_token3] = ACTIONS(4555), + [aux_sym__immediate_decimal_token4] = ACTIONS(4557), + [aux_sym__immediate_decimal_token5] = ACTIONS(4559), [anon_sym_err_GT] = ACTIONS(1539), [anon_sym_out_GT] = ACTIONS(1539), [anon_sym_e_GT] = ACTIONS(1539), @@ -210239,7 +210239,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT_LT] = ACTIONS(1765), [anon_sym_DOT_DOT_EQ2] = ACTIONS(1767), [anon_sym_DOT_DOT_LT2] = ACTIONS(1767), - [aux_sym__immediate_decimal_token2] = ACTIONS(4557), + [aux_sym__immediate_decimal_token2] = ACTIONS(4566), [anon_sym_null] = ACTIONS(1767), [anon_sym_true] = ACTIONS(1767), [anon_sym_false] = ACTIONS(1767), @@ -210334,7 +210334,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(1723), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1723), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1723), - [anon_sym_DOT2] = ACTIONS(4540), + [anon_sym_DOT2] = ACTIONS(4549), [anon_sym_err_GT] = ACTIONS(1721), [anon_sym_out_GT] = ACTIONS(1721), [anon_sym_e_GT] = ACTIONS(1721), @@ -210381,7 +210381,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT_LT] = ACTIONS(1587), [anon_sym_DOT_DOT_EQ2] = ACTIONS(1589), [anon_sym_DOT_DOT_LT2] = ACTIONS(1589), - [aux_sym__immediate_decimal_token2] = ACTIONS(4443), + [aux_sym__immediate_decimal_token2] = ACTIONS(4452), [anon_sym_null] = ACTIONS(1589), [anon_sym_true] = ACTIONS(1589), [anon_sym_false] = ACTIONS(1589), @@ -210450,12 +210450,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT] = ACTIONS(1725), [anon_sym_LPAREN2] = ACTIONS(1727), [anon_sym_DOT_DOT2] = ACTIONS(1725), - [anon_sym_DOT] = ACTIONS(4559), + [anon_sym_DOT] = ACTIONS(4568), [anon_sym_DOT_DOT_EQ] = ACTIONS(1725), [anon_sym_DOT_DOT_LT] = ACTIONS(1725), [anon_sym_DOT_DOT_EQ2] = ACTIONS(1727), [anon_sym_DOT_DOT_LT2] = ACTIONS(1727), - [aux_sym__immediate_decimal_token2] = ACTIONS(4561), + [aux_sym__immediate_decimal_token2] = ACTIONS(4570), [anon_sym_null] = ACTIONS(1727), [anon_sym_true] = ACTIONS(1727), [anon_sym_false] = ACTIONS(1727), @@ -210624,7 +210624,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT_EQ2] = ACTIONS(1723), [anon_sym_DOT_DOT_LT2] = ACTIONS(1723), [anon_sym_COLON2] = ACTIONS(1723), - [anon_sym_DOT2] = ACTIONS(4563), + [anon_sym_DOT2] = ACTIONS(4572), [anon_sym_err_GT] = ACTIONS(1721), [anon_sym_out_GT] = ACTIONS(1721), [anon_sym_e_GT] = ACTIONS(1721), @@ -210645,35 +210645,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [1358] = { [sym_comment] = STATE(1358), - [anon_sym_STAR_STAR] = ACTIONS(3170), - [anon_sym_PLUS_PLUS] = ACTIONS(3170), - [anon_sym_STAR] = ACTIONS(3172), - [anon_sym_SLASH] = ACTIONS(3172), - [anon_sym_mod] = ACTIONS(3170), - [anon_sym_SLASH_SLASH] = ACTIONS(3170), - [anon_sym_PLUS] = ACTIONS(3172), - [anon_sym_DASH] = ACTIONS(3170), - [anon_sym_bit_DASHshl] = ACTIONS(3170), - [anon_sym_bit_DASHshr] = ACTIONS(3170), - [anon_sym_EQ_TILDE] = ACTIONS(3170), - [anon_sym_BANG_TILDE] = ACTIONS(3170), - [anon_sym_bit_DASHand] = ACTIONS(3170), - [anon_sym_bit_DASHxor] = ACTIONS(3170), - [anon_sym_bit_DASHor] = ACTIONS(3170), - [anon_sym_and] = ACTIONS(3170), - [anon_sym_xor] = ACTIONS(3170), - [anon_sym_or] = ACTIONS(3170), - [anon_sym_in] = ACTIONS(3170), - [anon_sym_not_DASHin] = ACTIONS(3170), - [anon_sym_starts_DASHwith] = ACTIONS(3170), - [anon_sym_ends_DASHwith] = ACTIONS(3170), - [anon_sym_EQ_EQ] = ACTIONS(3170), - [anon_sym_BANG_EQ] = ACTIONS(3170), - [anon_sym_LT] = ACTIONS(3172), - [anon_sym_LT_EQ] = ACTIONS(3170), - [anon_sym_GT] = ACTIONS(3172), - [anon_sym_GT_EQ] = ACTIONS(3170), - [aux_sym_cmd_identifier_token41] = ACTIONS(3174), + [anon_sym_STAR_STAR] = ACTIONS(3177), + [anon_sym_PLUS_PLUS] = ACTIONS(3177), + [anon_sym_STAR] = ACTIONS(3179), + [anon_sym_SLASH] = ACTIONS(3179), + [anon_sym_mod] = ACTIONS(3177), + [anon_sym_SLASH_SLASH] = ACTIONS(3177), + [anon_sym_PLUS] = ACTIONS(3179), + [anon_sym_DASH] = ACTIONS(3177), + [anon_sym_bit_DASHshl] = ACTIONS(3177), + [anon_sym_bit_DASHshr] = ACTIONS(3177), + [anon_sym_EQ_TILDE] = ACTIONS(3177), + [anon_sym_BANG_TILDE] = ACTIONS(3177), + [anon_sym_bit_DASHand] = ACTIONS(3177), + [anon_sym_bit_DASHxor] = ACTIONS(3177), + [anon_sym_bit_DASHor] = ACTIONS(3177), + [anon_sym_and] = ACTIONS(3177), + [anon_sym_xor] = ACTIONS(3177), + [anon_sym_or] = ACTIONS(3177), + [anon_sym_in] = ACTIONS(3177), + [anon_sym_not_DASHin] = ACTIONS(3177), + [anon_sym_starts_DASHwith] = ACTIONS(3177), + [anon_sym_ends_DASHwith] = ACTIONS(3177), + [anon_sym_EQ_EQ] = ACTIONS(3177), + [anon_sym_BANG_EQ] = ACTIONS(3177), + [anon_sym_LT] = ACTIONS(3179), + [anon_sym_LT_EQ] = ACTIONS(3177), + [anon_sym_GT] = ACTIONS(3179), + [anon_sym_GT_EQ] = ACTIONS(3177), + [aux_sym_cmd_identifier_token41] = ACTIONS(3181), [sym__newline] = ACTIONS(2237), [anon_sym_SEMI] = ACTIONS(2237), [anon_sym_PIPE] = ACTIONS(2237), @@ -210732,7 +210732,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1553), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1553), [anon_sym_RPAREN] = ACTIONS(1553), - [anon_sym_DOLLAR] = ACTIONS(3538), + [anon_sym_DOLLAR] = ACTIONS(3547), [anon_sym_GT2] = ACTIONS(1539), [anon_sym_DASH2] = ACTIONS(1539), [anon_sym_in2] = ACTIONS(1553), @@ -210752,7 +210752,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ2] = ACTIONS(1553), [anon_sym_EQ_TILDE2] = ACTIONS(1553), [anon_sym_BANG_TILDE2] = ACTIONS(1553), - [anon_sym_LPAREN2] = ACTIONS(4542), + [anon_sym_LPAREN2] = ACTIONS(4551), [anon_sym_STAR_STAR2] = ACTIONS(1553), [anon_sym_PLUS_PLUS2] = ACTIONS(1553), [anon_sym_SLASH2] = ACTIONS(1539), @@ -210764,11 +210764,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bit_DASHand2] = ACTIONS(1553), [anon_sym_bit_DASHxor2] = ACTIONS(1553), [anon_sym_bit_DASHor2] = ACTIONS(1553), - [anon_sym_DOT] = ACTIONS(4565), - [aux_sym__immediate_decimal_token1] = ACTIONS(4546), - [aux_sym__immediate_decimal_token3] = ACTIONS(4546), - [aux_sym__immediate_decimal_token4] = ACTIONS(4548), - [aux_sym__immediate_decimal_token5] = ACTIONS(4550), + [anon_sym_DOT] = ACTIONS(4574), + [aux_sym__immediate_decimal_token1] = ACTIONS(4555), + [aux_sym__immediate_decimal_token3] = ACTIONS(4555), + [aux_sym__immediate_decimal_token4] = ACTIONS(4557), + [aux_sym__immediate_decimal_token5] = ACTIONS(4559), [anon_sym_err_GT] = ACTIONS(1539), [anon_sym_out_GT] = ACTIONS(1539), [anon_sym_e_GT] = ACTIONS(1539), @@ -210840,7 +210840,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT2] = ACTIONS(941), [anon_sym_DOT_DOT_EQ2] = ACTIONS(943), [anon_sym_DOT_DOT_LT2] = ACTIONS(943), - [anon_sym_DOT2] = ACTIONS(4567), + [anon_sym_DOT2] = ACTIONS(4576), [anon_sym_err_GT] = ACTIONS(941), [anon_sym_out_GT] = ACTIONS(941), [anon_sym_e_GT] = ACTIONS(941), @@ -210887,7 +210887,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT_LT] = ACTIONS(1725), [anon_sym_DOT_DOT_EQ2] = ACTIONS(1727), [anon_sym_DOT_DOT_LT2] = ACTIONS(1727), - [aux_sym__immediate_decimal_token2] = ACTIONS(4520), + [aux_sym__immediate_decimal_token2] = ACTIONS(4529), [anon_sym_null] = ACTIONS(1727), [anon_sym_true] = ACTIONS(1727), [anon_sym_false] = ACTIONS(1727), @@ -210933,35 +210933,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [1362] = { [sym_comment] = STATE(1362), - [anon_sym_STAR_STAR] = ACTIONS(3170), - [anon_sym_PLUS_PLUS] = ACTIONS(3170), - [anon_sym_STAR] = ACTIONS(3172), - [anon_sym_SLASH] = ACTIONS(3172), - [anon_sym_mod] = ACTIONS(3170), - [anon_sym_SLASH_SLASH] = ACTIONS(3170), - [anon_sym_PLUS] = ACTIONS(3172), - [anon_sym_DASH] = ACTIONS(3170), - [anon_sym_bit_DASHshl] = ACTIONS(3170), - [anon_sym_bit_DASHshr] = ACTIONS(3170), - [anon_sym_EQ_TILDE] = ACTIONS(3170), - [anon_sym_BANG_TILDE] = ACTIONS(3170), - [anon_sym_bit_DASHand] = ACTIONS(3170), - [anon_sym_bit_DASHxor] = ACTIONS(3170), - [anon_sym_bit_DASHor] = ACTIONS(3170), - [anon_sym_and] = ACTIONS(3170), - [anon_sym_xor] = ACTIONS(3170), - [anon_sym_or] = ACTIONS(3170), - [anon_sym_in] = ACTIONS(3170), - [anon_sym_not_DASHin] = ACTIONS(3170), - [anon_sym_starts_DASHwith] = ACTIONS(3170), - [anon_sym_ends_DASHwith] = ACTIONS(3170), - [anon_sym_EQ_EQ] = ACTIONS(3170), - [anon_sym_BANG_EQ] = ACTIONS(3170), - [anon_sym_LT] = ACTIONS(3172), - [anon_sym_LT_EQ] = ACTIONS(3170), - [anon_sym_GT] = ACTIONS(3172), - [anon_sym_GT_EQ] = ACTIONS(3170), - [aux_sym_cmd_identifier_token41] = ACTIONS(3174), + [anon_sym_STAR_STAR] = ACTIONS(3177), + [anon_sym_PLUS_PLUS] = ACTIONS(3177), + [anon_sym_STAR] = ACTIONS(3179), + [anon_sym_SLASH] = ACTIONS(3179), + [anon_sym_mod] = ACTIONS(3177), + [anon_sym_SLASH_SLASH] = ACTIONS(3177), + [anon_sym_PLUS] = ACTIONS(3179), + [anon_sym_DASH] = ACTIONS(3177), + [anon_sym_bit_DASHshl] = ACTIONS(3177), + [anon_sym_bit_DASHshr] = ACTIONS(3177), + [anon_sym_EQ_TILDE] = ACTIONS(3177), + [anon_sym_BANG_TILDE] = ACTIONS(3177), + [anon_sym_bit_DASHand] = ACTIONS(3177), + [anon_sym_bit_DASHxor] = ACTIONS(3177), + [anon_sym_bit_DASHor] = ACTIONS(3177), + [anon_sym_and] = ACTIONS(3177), + [anon_sym_xor] = ACTIONS(3177), + [anon_sym_or] = ACTIONS(3177), + [anon_sym_in] = ACTIONS(3177), + [anon_sym_not_DASHin] = ACTIONS(3177), + [anon_sym_starts_DASHwith] = ACTIONS(3177), + [anon_sym_ends_DASHwith] = ACTIONS(3177), + [anon_sym_EQ_EQ] = ACTIONS(3177), + [anon_sym_BANG_EQ] = ACTIONS(3177), + [anon_sym_LT] = ACTIONS(3179), + [anon_sym_LT_EQ] = ACTIONS(3177), + [anon_sym_GT] = ACTIONS(3179), + [anon_sym_GT_EQ] = ACTIONS(3177), + [aux_sym_cmd_identifier_token41] = ACTIONS(3181), [sym__newline] = ACTIONS(2245), [anon_sym_SEMI] = ACTIONS(2245), [anon_sym_PIPE] = ACTIONS(2245), @@ -211246,8 +211246,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT_LT] = ACTIONS(1757), [anon_sym_DOT_DOT_EQ2] = ACTIONS(1759), [anon_sym_DOT_DOT_LT2] = ACTIONS(1759), - [aux_sym__immediate_decimal_token1] = ACTIONS(4570), - [aux_sym__immediate_decimal_token2] = ACTIONS(4572), + [aux_sym__immediate_decimal_token1] = ACTIONS(4579), + [aux_sym__immediate_decimal_token2] = ACTIONS(4581), [anon_sym_null] = ACTIONS(1759), [anon_sym_true] = ACTIONS(1759), [anon_sym_false] = ACTIONS(1759), @@ -211316,30 +211316,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unquoted] = STATE(6730), [sym__unquoted_anonymous_prefix] = STATE(7445), [sym_comment] = STATE(1367), - [anon_sym_LBRACK] = ACTIONS(3536), + [anon_sym_LBRACK] = ACTIONS(3545), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(3538), - [anon_sym_LBRACE] = ACTIONS(3540), - [anon_sym_DOT_DOT] = ACTIONS(4574), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4576), - [anon_sym_DOT_DOT_LT] = ACTIONS(4576), - [anon_sym_null] = ACTIONS(4578), - [anon_sym_true] = ACTIONS(4580), - [anon_sym_false] = ACTIONS(4580), - [aux_sym__val_number_decimal_token1] = ACTIONS(4582), - [aux_sym__val_number_decimal_token2] = ACTIONS(4584), - [aux_sym__val_number_decimal_token3] = ACTIONS(4586), - [aux_sym__val_number_decimal_token4] = ACTIONS(4588), + [anon_sym_DOLLAR] = ACTIONS(3547), + [anon_sym_LBRACE] = ACTIONS(3549), + [anon_sym_DOT_DOT] = ACTIONS(4583), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4585), + [anon_sym_DOT_DOT_LT] = ACTIONS(4585), + [anon_sym_null] = ACTIONS(4587), + [anon_sym_true] = ACTIONS(4589), + [anon_sym_false] = ACTIONS(4589), + [aux_sym__val_number_decimal_token1] = ACTIONS(4591), + [aux_sym__val_number_decimal_token2] = ACTIONS(4593), + [aux_sym__val_number_decimal_token3] = ACTIONS(4595), + [aux_sym__val_number_decimal_token4] = ACTIONS(4597), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(4590), - [aux_sym__val_number_token5] = ACTIONS(4590), - [aux_sym__val_number_token6] = ACTIONS(4590), + [aux_sym__val_number_token4] = ACTIONS(4599), + [aux_sym__val_number_token5] = ACTIONS(4599), + [aux_sym__val_number_token6] = ACTIONS(4599), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(4592), + [sym_val_date] = ACTIONS(4601), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), @@ -211359,7 +211359,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3212), + [aux_sym_unquoted_token1] = ACTIONS(3219), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, @@ -211533,7 +211533,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT_LT] = ACTIONS(1667), [anon_sym_DOT_DOT_EQ2] = ACTIONS(1669), [anon_sym_DOT_DOT_LT2] = ACTIONS(1669), - [aux_sym__immediate_decimal_token2] = ACTIONS(4594), + [aux_sym__immediate_decimal_token2] = ACTIONS(4603), [anon_sym_null] = ACTIONS(1669), [anon_sym_true] = ACTIONS(1669), [anon_sym_false] = ACTIONS(1669), @@ -211704,7 +211704,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT_EQ2] = ACTIONS(1719), [anon_sym_DOT_DOT_LT2] = ACTIONS(1719), [anon_sym_COLON2] = ACTIONS(1719), - [anon_sym_DOT2] = ACTIONS(4563), + [anon_sym_DOT2] = ACTIONS(4572), [anon_sym_err_GT] = ACTIONS(1717), [anon_sym_out_GT] = ACTIONS(1717), [anon_sym_e_GT] = ACTIONS(1717), @@ -211745,11 +211745,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(1693), [anon_sym_RBRACE] = ACTIONS(1693), [anon_sym_DOT_DOT] = ACTIONS(1681), - [anon_sym_DOT_DOT2] = ACTIONS(4596), + [anon_sym_DOT_DOT2] = ACTIONS(4605), [anon_sym_DOT_DOT_EQ] = ACTIONS(1681), [anon_sym_DOT_DOT_LT] = ACTIONS(1681), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4598), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4598), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4607), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4607), [anon_sym_null] = ACTIONS(1693), [anon_sym_true] = ACTIONS(1693), [anon_sym_false] = ACTIONS(1693), @@ -211764,8 +211764,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__val_number_token5] = ACTIONS(1693), [aux_sym__val_number_token6] = ACTIONS(1693), [anon_sym_0b] = ACTIONS(1681), - [sym_filesize_unit] = ACTIONS(4600), - [sym_duration_unit] = ACTIONS(4602), + [sym_filesize_unit] = ACTIONS(4609), + [sym_duration_unit] = ACTIONS(4611), [anon_sym_0o] = ACTIONS(1681), [anon_sym_0x] = ACTIONS(1681), [sym_val_date] = ACTIONS(1693), @@ -211791,7 +211791,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1693), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1693), [aux_sym_unquoted_token1] = ACTIONS(1681), - [aux_sym_unquoted_token2] = ACTIONS(4604), + [aux_sym_unquoted_token2] = ACTIONS(4613), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(1693), }, @@ -211988,7 +211988,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(943), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(943), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(943), - [anon_sym_DOT2] = ACTIONS(4606), + [anon_sym_DOT2] = ACTIONS(4615), [anon_sym_err_GT] = ACTIONS(941), [anon_sym_out_GT] = ACTIONS(941), [anon_sym_e_GT] = ACTIONS(941), @@ -212061,7 +212061,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT2] = ACTIONS(935), [anon_sym_DOT_DOT_EQ2] = ACTIONS(937), [anon_sym_DOT_DOT_LT2] = ACTIONS(937), - [anon_sym_DOT2] = ACTIONS(4563), + [anon_sym_DOT2] = ACTIONS(4572), [anon_sym_err_GT] = ACTIONS(935), [anon_sym_out_GT] = ACTIONS(935), [anon_sym_e_GT] = ACTIONS(935), @@ -212097,7 +212097,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1629), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1629), [anon_sym_RPAREN] = ACTIONS(1629), - [anon_sym_DOLLAR] = ACTIONS(3538), + [anon_sym_DOLLAR] = ACTIONS(3547), [anon_sym_GT2] = ACTIONS(1627), [anon_sym_DASH2] = ACTIONS(1627), [anon_sym_in2] = ACTIONS(1629), @@ -212116,7 +212116,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ2] = ACTIONS(1629), [anon_sym_EQ_TILDE2] = ACTIONS(1629), [anon_sym_BANG_TILDE2] = ACTIONS(1629), - [anon_sym_LPAREN2] = ACTIONS(4542), + [anon_sym_LPAREN2] = ACTIONS(4551), [anon_sym_STAR_STAR2] = ACTIONS(1629), [anon_sym_PLUS_PLUS2] = ACTIONS(1629), [anon_sym_SLASH2] = ACTIONS(1627), @@ -212128,10 +212128,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bit_DASHand2] = ACTIONS(1629), [anon_sym_bit_DASHxor2] = ACTIONS(1629), [anon_sym_bit_DASHor2] = ACTIONS(1629), - [aux_sym__immediate_decimal_token1] = ACTIONS(4609), - [aux_sym__immediate_decimal_token3] = ACTIONS(4609), - [aux_sym__immediate_decimal_token4] = ACTIONS(4611), - [aux_sym__immediate_decimal_token5] = ACTIONS(4613), + [aux_sym__immediate_decimal_token1] = ACTIONS(4618), + [aux_sym__immediate_decimal_token3] = ACTIONS(4618), + [aux_sym__immediate_decimal_token4] = ACTIONS(4620), + [aux_sym__immediate_decimal_token5] = ACTIONS(4622), [anon_sym_err_GT] = ACTIONS(1627), [anon_sym_out_GT] = ACTIONS(1627), [anon_sym_e_GT] = ACTIONS(1627), @@ -212272,7 +212272,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(950), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(950), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(950), - [anon_sym_DOT2] = ACTIONS(4540), + [anon_sym_DOT2] = ACTIONS(4549), [anon_sym_err_GT] = ACTIONS(948), [anon_sym_out_GT] = ACTIONS(948), [anon_sym_e_GT] = ACTIONS(948), @@ -212387,11 +212387,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_RBRACE] = ACTIONS(1794), [anon_sym_DOT_DOT] = ACTIONS(1786), [anon_sym_LPAREN2] = ACTIONS(1788), - [anon_sym_DOT_DOT2] = ACTIONS(4615), + [anon_sym_DOT_DOT2] = ACTIONS(4624), [anon_sym_DOT_DOT_EQ] = ACTIONS(1786), [anon_sym_DOT_DOT_LT] = ACTIONS(1786), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4617), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4617), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4626), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4626), [anon_sym_null] = ACTIONS(1794), [anon_sym_true] = ACTIONS(1794), [anon_sym_false] = ACTIONS(1794), @@ -212599,7 +212599,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(960), [anon_sym_RBRACE] = ACTIONS(960), [anon_sym_DOT_DOT] = ACTIONS(958), - [anon_sym_QMARK2] = ACTIONS(4619), + [anon_sym_QMARK2] = ACTIONS(4628), [anon_sym_DOT_DOT2] = ACTIONS(958), [anon_sym_DOT_DOT_EQ] = ACTIONS(958), [anon_sym_DOT_DOT_LT] = ACTIONS(958), @@ -212665,7 +212665,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1709), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1709), [anon_sym_RPAREN] = ACTIONS(1709), - [anon_sym_DOLLAR] = ACTIONS(3538), + [anon_sym_DOLLAR] = ACTIONS(3547), [anon_sym_GT2] = ACTIONS(1707), [anon_sym_DASH2] = ACTIONS(1707), [anon_sym_in2] = ACTIONS(1709), @@ -212685,7 +212685,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ2] = ACTIONS(1709), [anon_sym_EQ_TILDE2] = ACTIONS(1709), [anon_sym_BANG_TILDE2] = ACTIONS(1709), - [anon_sym_LPAREN2] = ACTIONS(4542), + [anon_sym_LPAREN2] = ACTIONS(4551), [anon_sym_STAR_STAR2] = ACTIONS(1709), [anon_sym_PLUS_PLUS2] = ACTIONS(1709), [anon_sym_SLASH2] = ACTIONS(1707), @@ -212697,10 +212697,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bit_DASHand2] = ACTIONS(1709), [anon_sym_bit_DASHxor2] = ACTIONS(1709), [anon_sym_bit_DASHor2] = ACTIONS(1709), - [aux_sym__immediate_decimal_token1] = ACTIONS(4621), - [aux_sym__immediate_decimal_token3] = ACTIONS(4621), - [aux_sym__immediate_decimal_token4] = ACTIONS(4548), - [aux_sym__immediate_decimal_token5] = ACTIONS(4550), + [aux_sym__immediate_decimal_token1] = ACTIONS(4630), + [aux_sym__immediate_decimal_token3] = ACTIONS(4630), + [aux_sym__immediate_decimal_token4] = ACTIONS(4557), + [aux_sym__immediate_decimal_token5] = ACTIONS(4559), [anon_sym_err_GT] = ACTIONS(1707), [anon_sym_out_GT] = ACTIONS(1707), [anon_sym_e_GT] = ACTIONS(1707), @@ -212736,7 +212736,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1553), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1553), [anon_sym_RPAREN] = ACTIONS(1553), - [anon_sym_DOLLAR] = ACTIONS(3538), + [anon_sym_DOLLAR] = ACTIONS(3547), [anon_sym_GT2] = ACTIONS(1539), [anon_sym_DASH2] = ACTIONS(1539), [anon_sym_in2] = ACTIONS(1553), @@ -212756,7 +212756,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ2] = ACTIONS(1553), [anon_sym_EQ_TILDE2] = ACTIONS(1553), [anon_sym_BANG_TILDE2] = ACTIONS(1553), - [anon_sym_LPAREN2] = ACTIONS(4542), + [anon_sym_LPAREN2] = ACTIONS(4551), [anon_sym_STAR_STAR2] = ACTIONS(1553), [anon_sym_PLUS_PLUS2] = ACTIONS(1553), [anon_sym_SLASH2] = ACTIONS(1539), @@ -212768,10 +212768,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bit_DASHand2] = ACTIONS(1553), [anon_sym_bit_DASHxor2] = ACTIONS(1553), [anon_sym_bit_DASHor2] = ACTIONS(1553), - [aux_sym__immediate_decimal_token1] = ACTIONS(4621), - [aux_sym__immediate_decimal_token3] = ACTIONS(4621), - [aux_sym__immediate_decimal_token4] = ACTIONS(4548), - [aux_sym__immediate_decimal_token5] = ACTIONS(4550), + [aux_sym__immediate_decimal_token1] = ACTIONS(4630), + [aux_sym__immediate_decimal_token3] = ACTIONS(4630), + [aux_sym__immediate_decimal_token4] = ACTIONS(4557), + [aux_sym__immediate_decimal_token5] = ACTIONS(4559), [anon_sym_err_GT] = ACTIONS(1539), [anon_sym_out_GT] = ACTIONS(1539), [anon_sym_e_GT] = ACTIONS(1539), @@ -212807,7 +212807,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1713), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1713), [anon_sym_RPAREN] = ACTIONS(1713), - [anon_sym_DOLLAR] = ACTIONS(3538), + [anon_sym_DOLLAR] = ACTIONS(3547), [anon_sym_GT2] = ACTIONS(1711), [anon_sym_DASH2] = ACTIONS(1711), [anon_sym_in2] = ACTIONS(1713), @@ -212827,7 +212827,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ2] = ACTIONS(1713), [anon_sym_EQ_TILDE2] = ACTIONS(1713), [anon_sym_BANG_TILDE2] = ACTIONS(1713), - [anon_sym_LPAREN2] = ACTIONS(4542), + [anon_sym_LPAREN2] = ACTIONS(4551), [anon_sym_STAR_STAR2] = ACTIONS(1713), [anon_sym_PLUS_PLUS2] = ACTIONS(1713), [anon_sym_SLASH2] = ACTIONS(1711), @@ -212839,10 +212839,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bit_DASHand2] = ACTIONS(1713), [anon_sym_bit_DASHxor2] = ACTIONS(1713), [anon_sym_bit_DASHor2] = ACTIONS(1713), - [aux_sym__immediate_decimal_token1] = ACTIONS(4621), - [aux_sym__immediate_decimal_token3] = ACTIONS(4621), - [aux_sym__immediate_decimal_token4] = ACTIONS(4548), - [aux_sym__immediate_decimal_token5] = ACTIONS(4550), + [aux_sym__immediate_decimal_token1] = ACTIONS(4630), + [aux_sym__immediate_decimal_token3] = ACTIONS(4630), + [aux_sym__immediate_decimal_token4] = ACTIONS(4557), + [aux_sym__immediate_decimal_token5] = ACTIONS(4559), [anon_sym_err_GT] = ACTIONS(1711), [anon_sym_out_GT] = ACTIONS(1711), [anon_sym_e_GT] = ACTIONS(1711), @@ -212885,7 +212885,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH2] = ACTIONS(958), [anon_sym_in2] = ACTIONS(960), [anon_sym_STAR2] = ACTIONS(958), - [anon_sym_QMARK2] = ACTIONS(4623), + [anon_sym_QMARK2] = ACTIONS(4632), [anon_sym_and2] = ACTIONS(960), [anon_sym_xor2] = ACTIONS(960), [anon_sym_or2] = ACTIONS(960), @@ -212959,7 +212959,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT_LT] = ACTIONS(1725), [anon_sym_DOT_DOT_EQ2] = ACTIONS(1727), [anon_sym_DOT_DOT_LT2] = ACTIONS(1727), - [aux_sym__immediate_decimal_token2] = ACTIONS(4561), + [aux_sym__immediate_decimal_token2] = ACTIONS(4570), [anon_sym_null] = ACTIONS(1727), [anon_sym_true] = ACTIONS(1727), [anon_sym_false] = ACTIONS(1727), @@ -213027,7 +213027,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH2] = ACTIONS(952), [anon_sym_in2] = ACTIONS(954), [anon_sym_STAR2] = ACTIONS(952), - [anon_sym_QMARK2] = ACTIONS(4625), + [anon_sym_QMARK2] = ACTIONS(4634), [anon_sym_and2] = ACTIONS(954), [anon_sym_xor2] = ACTIONS(954), [anon_sym_or2] = ACTIONS(954), @@ -213289,35 +213289,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [1395] = { [sym_comment] = STATE(1395), - [anon_sym_STAR_STAR] = ACTIONS(3170), - [anon_sym_PLUS_PLUS] = ACTIONS(3170), - [anon_sym_STAR] = ACTIONS(3172), - [anon_sym_SLASH] = ACTIONS(3172), - [anon_sym_mod] = ACTIONS(3170), - [anon_sym_SLASH_SLASH] = ACTIONS(3170), - [anon_sym_PLUS] = ACTIONS(3172), - [anon_sym_DASH] = ACTIONS(3170), - [anon_sym_bit_DASHshl] = ACTIONS(3170), - [anon_sym_bit_DASHshr] = ACTIONS(3170), - [anon_sym_EQ_TILDE] = ACTIONS(3170), - [anon_sym_BANG_TILDE] = ACTIONS(3170), - [anon_sym_bit_DASHand] = ACTIONS(3170), - [anon_sym_bit_DASHxor] = ACTIONS(3170), - [anon_sym_bit_DASHor] = ACTIONS(3170), - [anon_sym_and] = ACTIONS(3170), - [anon_sym_xor] = ACTIONS(3170), - [anon_sym_or] = ACTIONS(3170), - [anon_sym_in] = ACTIONS(3170), - [anon_sym_not_DASHin] = ACTIONS(3170), - [anon_sym_starts_DASHwith] = ACTIONS(3170), - [anon_sym_ends_DASHwith] = ACTIONS(3170), - [anon_sym_EQ_EQ] = ACTIONS(3170), - [anon_sym_BANG_EQ] = ACTIONS(3170), - [anon_sym_LT] = ACTIONS(3172), - [anon_sym_LT_EQ] = ACTIONS(3170), - [anon_sym_GT] = ACTIONS(3172), - [anon_sym_GT_EQ] = ACTIONS(3170), - [aux_sym_cmd_identifier_token41] = ACTIONS(3174), + [anon_sym_STAR_STAR] = ACTIONS(3177), + [anon_sym_PLUS_PLUS] = ACTIONS(3177), + [anon_sym_STAR] = ACTIONS(3179), + [anon_sym_SLASH] = ACTIONS(3179), + [anon_sym_mod] = ACTIONS(3177), + [anon_sym_SLASH_SLASH] = ACTIONS(3177), + [anon_sym_PLUS] = ACTIONS(3179), + [anon_sym_DASH] = ACTIONS(3177), + [anon_sym_bit_DASHshl] = ACTIONS(3177), + [anon_sym_bit_DASHshr] = ACTIONS(3177), + [anon_sym_EQ_TILDE] = ACTIONS(3177), + [anon_sym_BANG_TILDE] = ACTIONS(3177), + [anon_sym_bit_DASHand] = ACTIONS(3177), + [anon_sym_bit_DASHxor] = ACTIONS(3177), + [anon_sym_bit_DASHor] = ACTIONS(3177), + [anon_sym_and] = ACTIONS(3177), + [anon_sym_xor] = ACTIONS(3177), + [anon_sym_or] = ACTIONS(3177), + [anon_sym_in] = ACTIONS(3177), + [anon_sym_not_DASHin] = ACTIONS(3177), + [anon_sym_starts_DASHwith] = ACTIONS(3177), + [anon_sym_ends_DASHwith] = ACTIONS(3177), + [anon_sym_EQ_EQ] = ACTIONS(3177), + [anon_sym_BANG_EQ] = ACTIONS(3177), + [anon_sym_LT] = ACTIONS(3179), + [anon_sym_LT_EQ] = ACTIONS(3177), + [anon_sym_GT] = ACTIONS(3179), + [anon_sym_GT_EQ] = ACTIONS(3177), + [aux_sym_cmd_identifier_token41] = ACTIONS(3181), [sym__newline] = ACTIONS(2245), [anon_sym_PIPE] = ACTIONS(2245), [anon_sym_err_GT_PIPE] = ACTIONS(2245), @@ -213379,11 +213379,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH2] = ACTIONS(1681), [anon_sym_LBRACE] = ACTIONS(1693), [anon_sym_DOT_DOT] = ACTIONS(1681), - [anon_sym_DOT_DOT2] = ACTIONS(4596), + [anon_sym_DOT_DOT2] = ACTIONS(4605), [anon_sym_DOT_DOT_EQ] = ACTIONS(1681), [anon_sym_DOT_DOT_LT] = ACTIONS(1681), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4598), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4598), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4607), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4607), [anon_sym_null] = ACTIONS(1693), [anon_sym_true] = ACTIONS(1693), [anon_sym_false] = ACTIONS(1693), @@ -213398,8 +213398,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__val_number_token5] = ACTIONS(1693), [aux_sym__val_number_token6] = ACTIONS(1693), [anon_sym_0b] = ACTIONS(1681), - [sym_filesize_unit] = ACTIONS(4627), - [sym_duration_unit] = ACTIONS(4629), + [sym_filesize_unit] = ACTIONS(4636), + [sym_duration_unit] = ACTIONS(4638), [anon_sym_0o] = ACTIONS(1681), [anon_sym_0x] = ACTIONS(1681), [sym_val_date] = ACTIONS(1693), @@ -213425,7 +213425,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1693), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1693), [aux_sym_unquoted_token1] = ACTIONS(1681), - [aux_sym_unquoted_token2] = ACTIONS(4631), + [aux_sym_unquoted_token2] = ACTIONS(4640), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(1693), }, @@ -213452,12 +213452,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_RBRACE] = ACTIONS(1727), [anon_sym_DOT_DOT] = ACTIONS(1725), [anon_sym_DOT_DOT2] = ACTIONS(1725), - [anon_sym_DOT] = ACTIONS(4633), + [anon_sym_DOT] = ACTIONS(4642), [anon_sym_DOT_DOT_EQ] = ACTIONS(1725), [anon_sym_DOT_DOT_LT] = ACTIONS(1725), [anon_sym_DOT_DOT_EQ2] = ACTIONS(1727), [anon_sym_DOT_DOT_LT2] = ACTIONS(1727), - [aux_sym__immediate_decimal_token2] = ACTIONS(4635), + [aux_sym__immediate_decimal_token2] = ACTIONS(4644), [anon_sym_null] = ACTIONS(1727), [anon_sym_true] = ACTIONS(1727), [anon_sym_false] = ACTIONS(1727), @@ -213517,7 +213517,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1665), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1665), [anon_sym_RPAREN] = ACTIONS(1665), - [anon_sym_DOLLAR] = ACTIONS(3538), + [anon_sym_DOLLAR] = ACTIONS(3547), [anon_sym_GT2] = ACTIONS(1657), [anon_sym_DASH2] = ACTIONS(1657), [anon_sym_in2] = ACTIONS(1665), @@ -213537,7 +213537,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ2] = ACTIONS(1665), [anon_sym_EQ_TILDE2] = ACTIONS(1665), [anon_sym_BANG_TILDE2] = ACTIONS(1665), - [anon_sym_LPAREN2] = ACTIONS(4542), + [anon_sym_LPAREN2] = ACTIONS(4551), [anon_sym_STAR_STAR2] = ACTIONS(1665), [anon_sym_PLUS_PLUS2] = ACTIONS(1665), [anon_sym_SLASH2] = ACTIONS(1657), @@ -213549,10 +213549,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bit_DASHand2] = ACTIONS(1665), [anon_sym_bit_DASHxor2] = ACTIONS(1665), [anon_sym_bit_DASHor2] = ACTIONS(1665), - [aux_sym__immediate_decimal_token1] = ACTIONS(4621), - [aux_sym__immediate_decimal_token3] = ACTIONS(4621), - [aux_sym__immediate_decimal_token4] = ACTIONS(4548), - [aux_sym__immediate_decimal_token5] = ACTIONS(4550), + [aux_sym__immediate_decimal_token1] = ACTIONS(4630), + [aux_sym__immediate_decimal_token3] = ACTIONS(4630), + [aux_sym__immediate_decimal_token4] = ACTIONS(4557), + [aux_sym__immediate_decimal_token5] = ACTIONS(4559), [anon_sym_err_GT] = ACTIONS(1657), [anon_sym_out_GT] = ACTIONS(1657), [anon_sym_e_GT] = ACTIONS(1657), @@ -213736,11 +213736,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_RBRACE] = ACTIONS(1873), [anon_sym_DOT_DOT] = ACTIONS(1865), [anon_sym_LPAREN2] = ACTIONS(1867), - [anon_sym_DOT_DOT2] = ACTIONS(4637), + [anon_sym_DOT_DOT2] = ACTIONS(4646), [anon_sym_DOT_DOT_EQ] = ACTIONS(1865), [anon_sym_DOT_DOT_LT] = ACTIONS(1865), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4639), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4639), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4648), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4648), [anon_sym_null] = ACTIONS(1873), [anon_sym_true] = ACTIONS(1873), [anon_sym_false] = ACTIONS(1873), @@ -213801,7 +213801,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1643), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1643), [anon_sym_RPAREN] = ACTIONS(1643), - [anon_sym_DOLLAR] = ACTIONS(3538), + [anon_sym_DOLLAR] = ACTIONS(3547), [anon_sym_GT2] = ACTIONS(1633), [anon_sym_DASH2] = ACTIONS(1633), [anon_sym_in2] = ACTIONS(1643), @@ -213821,7 +213821,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ2] = ACTIONS(1643), [anon_sym_EQ_TILDE2] = ACTIONS(1643), [anon_sym_BANG_TILDE2] = ACTIONS(1643), - [anon_sym_LPAREN2] = ACTIONS(4542), + [anon_sym_LPAREN2] = ACTIONS(4551), [anon_sym_STAR_STAR2] = ACTIONS(1643), [anon_sym_PLUS_PLUS2] = ACTIONS(1643), [anon_sym_SLASH2] = ACTIONS(1633), @@ -213833,10 +213833,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bit_DASHand2] = ACTIONS(1643), [anon_sym_bit_DASHxor2] = ACTIONS(1643), [anon_sym_bit_DASHor2] = ACTIONS(1643), - [aux_sym__immediate_decimal_token1] = ACTIONS(4621), - [aux_sym__immediate_decimal_token3] = ACTIONS(4621), - [aux_sym__immediate_decimal_token4] = ACTIONS(4548), - [aux_sym__immediate_decimal_token5] = ACTIONS(4550), + [aux_sym__immediate_decimal_token1] = ACTIONS(4630), + [aux_sym__immediate_decimal_token3] = ACTIONS(4630), + [aux_sym__immediate_decimal_token4] = ACTIONS(4557), + [aux_sym__immediate_decimal_token5] = ACTIONS(4559), [anon_sym_err_GT] = ACTIONS(1633), [anon_sym_out_GT] = ACTIONS(1633), [anon_sym_e_GT] = ACTIONS(1633), @@ -213877,7 +213877,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(954), [anon_sym_RBRACE] = ACTIONS(954), [anon_sym_DOT_DOT] = ACTIONS(952), - [anon_sym_QMARK2] = ACTIONS(4641), + [anon_sym_QMARK2] = ACTIONS(4650), [anon_sym_DOT_DOT2] = ACTIONS(952), [anon_sym_DOT_DOT_EQ] = ACTIONS(952), [anon_sym_DOT_DOT_LT] = ACTIONS(952), @@ -213953,7 +213953,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT_LT] = ACTIONS(1765), [anon_sym_DOT_DOT_EQ2] = ACTIONS(1767), [anon_sym_DOT_DOT_LT2] = ACTIONS(1767), - [aux_sym__immediate_decimal_token2] = ACTIONS(4643), + [aux_sym__immediate_decimal_token2] = ACTIONS(4652), [anon_sym_null] = ACTIONS(1767), [anon_sym_true] = ACTIONS(1767), [anon_sym_false] = ACTIONS(1767), @@ -213999,35 +213999,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [1405] = { [sym_comment] = STATE(1405), - [anon_sym_STAR_STAR] = ACTIONS(3170), - [anon_sym_PLUS_PLUS] = ACTIONS(3170), - [anon_sym_STAR] = ACTIONS(3172), - [anon_sym_SLASH] = ACTIONS(3172), - [anon_sym_mod] = ACTIONS(3170), - [anon_sym_SLASH_SLASH] = ACTIONS(3170), - [anon_sym_PLUS] = ACTIONS(3172), - [anon_sym_DASH] = ACTIONS(3170), - [anon_sym_bit_DASHshl] = ACTIONS(3170), - [anon_sym_bit_DASHshr] = ACTIONS(3170), - [anon_sym_EQ_TILDE] = ACTIONS(3170), - [anon_sym_BANG_TILDE] = ACTIONS(3170), - [anon_sym_bit_DASHand] = ACTIONS(3170), - [anon_sym_bit_DASHxor] = ACTIONS(3170), - [anon_sym_bit_DASHor] = ACTIONS(3170), - [anon_sym_and] = ACTIONS(3170), - [anon_sym_xor] = ACTIONS(3170), - [anon_sym_or] = ACTIONS(3170), - [anon_sym_in] = ACTIONS(3170), - [anon_sym_not_DASHin] = ACTIONS(3170), - [anon_sym_starts_DASHwith] = ACTIONS(3170), - [anon_sym_ends_DASHwith] = ACTIONS(3170), - [anon_sym_EQ_EQ] = ACTIONS(3170), - [anon_sym_BANG_EQ] = ACTIONS(3170), - [anon_sym_LT] = ACTIONS(3172), - [anon_sym_LT_EQ] = ACTIONS(3170), - [anon_sym_GT] = ACTIONS(3172), - [anon_sym_GT_EQ] = ACTIONS(3170), - [aux_sym_cmd_identifier_token41] = ACTIONS(3174), + [anon_sym_STAR_STAR] = ACTIONS(3177), + [anon_sym_PLUS_PLUS] = ACTIONS(3177), + [anon_sym_STAR] = ACTIONS(3179), + [anon_sym_SLASH] = ACTIONS(3179), + [anon_sym_mod] = ACTIONS(3177), + [anon_sym_SLASH_SLASH] = ACTIONS(3177), + [anon_sym_PLUS] = ACTIONS(3179), + [anon_sym_DASH] = ACTIONS(3177), + [anon_sym_bit_DASHshl] = ACTIONS(3177), + [anon_sym_bit_DASHshr] = ACTIONS(3177), + [anon_sym_EQ_TILDE] = ACTIONS(3177), + [anon_sym_BANG_TILDE] = ACTIONS(3177), + [anon_sym_bit_DASHand] = ACTIONS(3177), + [anon_sym_bit_DASHxor] = ACTIONS(3177), + [anon_sym_bit_DASHor] = ACTIONS(3177), + [anon_sym_and] = ACTIONS(3177), + [anon_sym_xor] = ACTIONS(3177), + [anon_sym_or] = ACTIONS(3177), + [anon_sym_in] = ACTIONS(3177), + [anon_sym_not_DASHin] = ACTIONS(3177), + [anon_sym_starts_DASHwith] = ACTIONS(3177), + [anon_sym_ends_DASHwith] = ACTIONS(3177), + [anon_sym_EQ_EQ] = ACTIONS(3177), + [anon_sym_BANG_EQ] = ACTIONS(3177), + [anon_sym_LT] = ACTIONS(3179), + [anon_sym_LT_EQ] = ACTIONS(3177), + [anon_sym_GT] = ACTIONS(3179), + [anon_sym_GT_EQ] = ACTIONS(3177), + [aux_sym_cmd_identifier_token41] = ACTIONS(3181), [sym__newline] = ACTIONS(2237), [anon_sym_PIPE] = ACTIONS(2237), [anon_sym_err_GT_PIPE] = ACTIONS(2237), @@ -214120,7 +214120,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT_EQ2] = ACTIONS(943), [anon_sym_DOT_DOT_LT2] = ACTIONS(943), [anon_sym_COLON2] = ACTIONS(943), - [anon_sym_DOT2] = ACTIONS(4645), + [anon_sym_DOT2] = ACTIONS(4654), [anon_sym_err_GT] = ACTIONS(941), [anon_sym_out_GT] = ACTIONS(941), [anon_sym_e_GT] = ACTIONS(941), @@ -214156,7 +214156,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1553), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1553), [anon_sym_RPAREN] = ACTIONS(1553), - [anon_sym_DOLLAR] = ACTIONS(3538), + [anon_sym_DOLLAR] = ACTIONS(3547), [anon_sym_GT2] = ACTIONS(1539), [anon_sym_DASH2] = ACTIONS(1539), [anon_sym_in2] = ACTIONS(1553), @@ -214175,7 +214175,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ2] = ACTIONS(1553), [anon_sym_EQ_TILDE2] = ACTIONS(1553), [anon_sym_BANG_TILDE2] = ACTIONS(1553), - [anon_sym_LPAREN2] = ACTIONS(4542), + [anon_sym_LPAREN2] = ACTIONS(4551), [anon_sym_STAR_STAR2] = ACTIONS(1553), [anon_sym_PLUS_PLUS2] = ACTIONS(1553), [anon_sym_SLASH2] = ACTIONS(1539), @@ -214187,10 +214187,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bit_DASHand2] = ACTIONS(1553), [anon_sym_bit_DASHxor2] = ACTIONS(1553), [anon_sym_bit_DASHor2] = ACTIONS(1553), - [aux_sym__immediate_decimal_token1] = ACTIONS(4609), - [aux_sym__immediate_decimal_token3] = ACTIONS(4609), - [aux_sym__immediate_decimal_token4] = ACTIONS(4611), - [aux_sym__immediate_decimal_token5] = ACTIONS(4613), + [aux_sym__immediate_decimal_token1] = ACTIONS(4618), + [aux_sym__immediate_decimal_token3] = ACTIONS(4618), + [aux_sym__immediate_decimal_token4] = ACTIONS(4620), + [aux_sym__immediate_decimal_token5] = ACTIONS(4622), [anon_sym_err_GT] = ACTIONS(1539), [anon_sym_out_GT] = ACTIONS(1539), [anon_sym_e_GT] = ACTIONS(1539), @@ -214440,7 +214440,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1553), [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1553), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1553), - [anon_sym_DOLLAR] = ACTIONS(4648), + [anon_sym_DOLLAR] = ACTIONS(4657), [anon_sym_GT2] = ACTIONS(1539), [anon_sym_DASH2] = ACTIONS(1539), [anon_sym_in2] = ACTIONS(1553), @@ -214458,7 +214458,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ2] = ACTIONS(1553), [anon_sym_EQ_TILDE2] = ACTIONS(1553), [anon_sym_BANG_TILDE2] = ACTIONS(1553), - [anon_sym_LPAREN2] = ACTIONS(4650), + [anon_sym_LPAREN2] = ACTIONS(4659), [anon_sym_STAR_STAR2] = ACTIONS(1553), [anon_sym_PLUS_PLUS2] = ACTIONS(1553), [anon_sym_SLASH2] = ACTIONS(1539), @@ -214470,11 +214470,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bit_DASHand2] = ACTIONS(1553), [anon_sym_bit_DASHxor2] = ACTIONS(1553), [anon_sym_bit_DASHor2] = ACTIONS(1553), - [anon_sym_DOT] = ACTIONS(4652), - [aux_sym__immediate_decimal_token1] = ACTIONS(4654), - [aux_sym__immediate_decimal_token3] = ACTIONS(4654), - [aux_sym__immediate_decimal_token4] = ACTIONS(4656), - [aux_sym__immediate_decimal_token5] = ACTIONS(4658), + [anon_sym_DOT] = ACTIONS(4661), + [aux_sym__immediate_decimal_token1] = ACTIONS(4663), + [aux_sym__immediate_decimal_token3] = ACTIONS(4663), + [aux_sym__immediate_decimal_token4] = ACTIONS(4665), + [aux_sym__immediate_decimal_token5] = ACTIONS(4667), [anon_sym_err_GT] = ACTIONS(1539), [anon_sym_out_GT] = ACTIONS(1539), [anon_sym_e_GT] = ACTIONS(1539), @@ -214521,8 +214521,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT_LT] = ACTIONS(1757), [anon_sym_DOT_DOT_EQ2] = ACTIONS(1759), [anon_sym_DOT_DOT_LT2] = ACTIONS(1759), - [aux_sym__immediate_decimal_token1] = ACTIONS(4660), - [aux_sym__immediate_decimal_token2] = ACTIONS(4662), + [aux_sym__immediate_decimal_token1] = ACTIONS(4669), + [aux_sym__immediate_decimal_token2] = ACTIONS(4671), [anon_sym_null] = ACTIONS(1759), [anon_sym_true] = ACTIONS(1759), [anon_sym_false] = ACTIONS(1759), @@ -214688,7 +214688,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT_EQ2] = ACTIONS(950), [anon_sym_DOT_DOT_LT2] = ACTIONS(950), [anon_sym_COLON2] = ACTIONS(950), - [anon_sym_DOT2] = ACTIONS(4563), + [anon_sym_DOT2] = ACTIONS(4572), [anon_sym_err_GT] = ACTIONS(948), [anon_sym_out_GT] = ACTIONS(948), [anon_sym_e_GT] = ACTIONS(948), @@ -214937,7 +214937,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1629), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1629), [anon_sym_RPAREN] = ACTIONS(1629), - [anon_sym_DOLLAR] = ACTIONS(3538), + [anon_sym_DOLLAR] = ACTIONS(3547), [anon_sym_GT2] = ACTIONS(1627), [anon_sym_DASH2] = ACTIONS(1627), [anon_sym_in2] = ACTIONS(1629), @@ -214957,7 +214957,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ2] = ACTIONS(1629), [anon_sym_EQ_TILDE2] = ACTIONS(1629), [anon_sym_BANG_TILDE2] = ACTIONS(1629), - [anon_sym_LPAREN2] = ACTIONS(4542), + [anon_sym_LPAREN2] = ACTIONS(4551), [anon_sym_STAR_STAR2] = ACTIONS(1629), [anon_sym_PLUS_PLUS2] = ACTIONS(1629), [anon_sym_SLASH2] = ACTIONS(1627), @@ -214969,10 +214969,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bit_DASHand2] = ACTIONS(1629), [anon_sym_bit_DASHxor2] = ACTIONS(1629), [anon_sym_bit_DASHor2] = ACTIONS(1629), - [aux_sym__immediate_decimal_token1] = ACTIONS(4621), - [aux_sym__immediate_decimal_token3] = ACTIONS(4621), - [aux_sym__immediate_decimal_token4] = ACTIONS(4548), - [aux_sym__immediate_decimal_token5] = ACTIONS(4550), + [aux_sym__immediate_decimal_token1] = ACTIONS(4630), + [aux_sym__immediate_decimal_token3] = ACTIONS(4630), + [aux_sym__immediate_decimal_token4] = ACTIONS(4557), + [aux_sym__immediate_decimal_token5] = ACTIONS(4559), [anon_sym_err_GT] = ACTIONS(1627), [anon_sym_out_GT] = ACTIONS(1627), [anon_sym_e_GT] = ACTIONS(1627), @@ -215250,7 +215250,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(1927), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1927), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1927), - [anon_sym_DOT2] = ACTIONS(4664), + [anon_sym_DOT2] = ACTIONS(4673), [anon_sym_err_GT] = ACTIONS(1925), [anon_sym_out_GT] = ACTIONS(1925), [anon_sym_e_GT] = ACTIONS(1925), @@ -215297,8 +215297,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT_LT] = ACTIONS(1757), [anon_sym_DOT_DOT_EQ2] = ACTIONS(1759), [anon_sym_DOT_DOT_LT2] = ACTIONS(1759), - [aux_sym__immediate_decimal_token1] = ACTIONS(4666), - [aux_sym__immediate_decimal_token2] = ACTIONS(4668), + [aux_sym__immediate_decimal_token1] = ACTIONS(4675), + [aux_sym__immediate_decimal_token2] = ACTIONS(4677), [anon_sym_null] = ACTIONS(1759), [anon_sym_true] = ACTIONS(1759), [anon_sym_false] = ACTIONS(1759), @@ -215390,7 +215390,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(1939), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1939), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1939), - [anon_sym_DOT2] = ACTIONS(4664), + [anon_sym_DOT2] = ACTIONS(4673), [anon_sym_err_GT] = ACTIONS(1937), [anon_sym_out_GT] = ACTIONS(1937), [anon_sym_e_GT] = ACTIONS(1937), @@ -215458,8 +215458,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT2] = ACTIONS(1595), [anon_sym_DOT_DOT_EQ2] = ACTIONS(1597), [anon_sym_DOT_DOT_LT2] = ACTIONS(1597), - [aux_sym__immediate_decimal_token1] = ACTIONS(4670), - [aux_sym__immediate_decimal_token2] = ACTIONS(4672), + [aux_sym__immediate_decimal_token1] = ACTIONS(4679), + [aux_sym__immediate_decimal_token2] = ACTIONS(4681), [sym_filesize_unit] = ACTIONS(1595), [sym_duration_unit] = ACTIONS(1597), [anon_sym_err_GT] = ACTIONS(1595), @@ -215530,7 +215530,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(1935), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1935), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1935), - [anon_sym_DOT2] = ACTIONS(4664), + [anon_sym_DOT2] = ACTIONS(4673), [anon_sym_err_GT] = ACTIONS(1933), [anon_sym_out_GT] = ACTIONS(1933), [anon_sym_e_GT] = ACTIONS(1933), @@ -215574,10 +215574,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_RBRACE] = ACTIONS(1727), [anon_sym_DOT_DOT] = ACTIONS(1725), [anon_sym_LPAREN2] = ACTIONS(1727), - [anon_sym_DOT] = ACTIONS(4674), + [anon_sym_DOT] = ACTIONS(4683), [anon_sym_DOT_DOT_EQ] = ACTIONS(1727), [anon_sym_DOT_DOT_LT] = ACTIONS(1727), - [aux_sym__immediate_decimal_token2] = ACTIONS(4676), + [aux_sym__immediate_decimal_token2] = ACTIONS(4685), [anon_sym_null] = ACTIONS(1727), [anon_sym_true] = ACTIONS(1727), [anon_sym_false] = ACTIONS(1727), @@ -215853,11 +215853,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(1794), [anon_sym_DOT_DOT] = ACTIONS(1786), [anon_sym_LPAREN2] = ACTIONS(1788), - [anon_sym_DOT_DOT2] = ACTIONS(4678), + [anon_sym_DOT_DOT2] = ACTIONS(4687), [anon_sym_DOT_DOT_EQ] = ACTIONS(1786), [anon_sym_DOT_DOT_LT] = ACTIONS(1786), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4680), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4680), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4689), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4689), [anon_sym_null] = ACTIONS(1794), [anon_sym_true] = ACTIONS(1794), [anon_sym_false] = ACTIONS(1794), @@ -216020,7 +216020,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(2095), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2095), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2095), - [anon_sym_DOT2] = ACTIONS(4664), + [anon_sym_DOT2] = ACTIONS(4673), [anon_sym_err_GT] = ACTIONS(2093), [anon_sym_out_GT] = ACTIONS(2093), [anon_sym_e_GT] = ACTIONS(2093), @@ -216300,7 +216300,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(1951), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1951), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1951), - [anon_sym_DOT2] = ACTIONS(4664), + [anon_sym_DOT2] = ACTIONS(4673), [anon_sym_err_GT] = ACTIONS(1949), [anon_sym_out_GT] = ACTIONS(1949), [anon_sym_e_GT] = ACTIONS(1949), @@ -216440,7 +216440,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(1955), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1955), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1955), - [anon_sym_DOT2] = ACTIONS(4664), + [anon_sym_DOT2] = ACTIONS(4673), [anon_sym_err_GT] = ACTIONS(1953), [anon_sym_out_GT] = ACTIONS(1953), [anon_sym_e_GT] = ACTIONS(1953), @@ -216510,7 +216510,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(1959), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1959), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1959), - [anon_sym_DOT2] = ACTIONS(4664), + [anon_sym_DOT2] = ACTIONS(4673), [anon_sym_err_GT] = ACTIONS(1957), [anon_sym_out_GT] = ACTIONS(1957), [anon_sym_e_GT] = ACTIONS(1957), @@ -216580,7 +216580,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(1963), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1963), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1963), - [anon_sym_DOT2] = ACTIONS(4664), + [anon_sym_DOT2] = ACTIONS(4673), [anon_sym_err_GT] = ACTIONS(1961), [anon_sym_out_GT] = ACTIONS(1961), [anon_sym_e_GT] = ACTIONS(1961), @@ -216650,7 +216650,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(1967), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1967), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1967), - [anon_sym_DOT2] = ACTIONS(4664), + [anon_sym_DOT2] = ACTIONS(4673), [anon_sym_err_GT] = ACTIONS(1965), [anon_sym_out_GT] = ACTIONS(1965), [anon_sym_e_GT] = ACTIONS(1965), @@ -216720,7 +216720,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(1971), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1971), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1971), - [anon_sym_DOT2] = ACTIONS(4664), + [anon_sym_DOT2] = ACTIONS(4673), [anon_sym_err_GT] = ACTIONS(1969), [anon_sym_out_GT] = ACTIONS(1969), [anon_sym_e_GT] = ACTIONS(1969), @@ -216763,7 +216763,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_RBRACE] = ACTIONS(960), [anon_sym_EQ_GT] = ACTIONS(960), [anon_sym_STAR2] = ACTIONS(958), - [anon_sym_QMARK2] = ACTIONS(4682), + [anon_sym_QMARK2] = ACTIONS(4691), [anon_sym_and2] = ACTIONS(960), [anon_sym_xor2] = ACTIONS(960), [anon_sym_or2] = ACTIONS(960), @@ -216833,7 +216833,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_RBRACE] = ACTIONS(954), [anon_sym_EQ_GT] = ACTIONS(954), [anon_sym_STAR2] = ACTIONS(952), - [anon_sym_QMARK2] = ACTIONS(4684), + [anon_sym_QMARK2] = ACTIONS(4693), [anon_sym_and2] = ACTIONS(954), [anon_sym_xor2] = ACTIONS(954), [anon_sym_or2] = ACTIONS(954), @@ -216930,7 +216930,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(1947), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1947), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1947), - [anon_sym_DOT2] = ACTIONS(4664), + [anon_sym_DOT2] = ACTIONS(4673), [anon_sym_err_GT] = ACTIONS(1945), [anon_sym_out_GT] = ACTIONS(1945), [anon_sym_e_GT] = ACTIONS(1945), @@ -217000,7 +217000,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(2091), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2091), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2091), - [anon_sym_DOT2] = ACTIONS(4664), + [anon_sym_DOT2] = ACTIONS(4673), [anon_sym_err_GT] = ACTIONS(2089), [anon_sym_out_GT] = ACTIONS(2089), [anon_sym_e_GT] = ACTIONS(2089), @@ -217043,12 +217043,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(1727), [anon_sym_DOT_DOT] = ACTIONS(1725), [anon_sym_DOT_DOT2] = ACTIONS(1725), - [anon_sym_DOT] = ACTIONS(4686), + [anon_sym_DOT] = ACTIONS(4695), [anon_sym_DOT_DOT_EQ] = ACTIONS(1725), [anon_sym_DOT_DOT_LT] = ACTIONS(1725), [anon_sym_DOT_DOT_EQ2] = ACTIONS(1727), [anon_sym_DOT_DOT_LT2] = ACTIONS(1727), - [aux_sym__immediate_decimal_token2] = ACTIONS(4688), + [aux_sym__immediate_decimal_token2] = ACTIONS(4697), [anon_sym_null] = ACTIONS(1727), [anon_sym_true] = ACTIONS(1727), [anon_sym_false] = ACTIONS(1727), @@ -217210,7 +217210,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(1979), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1979), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1979), - [anon_sym_DOT2] = ACTIONS(4664), + [anon_sym_DOT2] = ACTIONS(4673), [anon_sym_err_GT] = ACTIONS(1977), [anon_sym_out_GT] = ACTIONS(1977), [anon_sym_e_GT] = ACTIONS(1977), @@ -217392,7 +217392,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH2] = ACTIONS(952), [anon_sym_LBRACE] = ACTIONS(954), [anon_sym_DOT_DOT] = ACTIONS(952), - [anon_sym_QMARK2] = ACTIONS(4690), + [anon_sym_QMARK2] = ACTIONS(4699), [anon_sym_DOT_DOT2] = ACTIONS(952), [anon_sym_DOT_DOT_EQ] = ACTIONS(952), [anon_sym_DOT_DOT_LT] = ACTIONS(952), @@ -217492,7 +217492,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT2] = ACTIONS(1012), [anon_sym_DOT_DOT_EQ2] = ACTIONS(1014), [anon_sym_DOT_DOT_LT2] = ACTIONS(1014), - [anon_sym_COLON2] = ACTIONS(4692), + [anon_sym_COLON2] = ACTIONS(4701), [anon_sym_err_GT] = ACTIONS(1004), [anon_sym_out_GT] = ACTIONS(1004), [anon_sym_e_GT] = ACTIONS(1004), @@ -217528,7 +217528,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1553), [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1553), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1553), - [anon_sym_DOLLAR] = ACTIONS(4648), + [anon_sym_DOLLAR] = ACTIONS(4657), [anon_sym_GT2] = ACTIONS(1539), [anon_sym_DASH2] = ACTIONS(1539), [anon_sym_in2] = ACTIONS(1553), @@ -217546,7 +217546,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ2] = ACTIONS(1553), [anon_sym_EQ_TILDE2] = ACTIONS(1553), [anon_sym_BANG_TILDE2] = ACTIONS(1553), - [anon_sym_LPAREN2] = ACTIONS(4650), + [anon_sym_LPAREN2] = ACTIONS(4659), [anon_sym_STAR_STAR2] = ACTIONS(1553), [anon_sym_PLUS_PLUS2] = ACTIONS(1553), [anon_sym_SLASH2] = ACTIONS(1539), @@ -217558,10 +217558,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bit_DASHand2] = ACTIONS(1553), [anon_sym_bit_DASHxor2] = ACTIONS(1553), [anon_sym_bit_DASHor2] = ACTIONS(1553), - [aux_sym__immediate_decimal_token1] = ACTIONS(4694), - [aux_sym__immediate_decimal_token3] = ACTIONS(4694), - [aux_sym__immediate_decimal_token4] = ACTIONS(4696), - [aux_sym__immediate_decimal_token5] = ACTIONS(4698), + [aux_sym__immediate_decimal_token1] = ACTIONS(4703), + [aux_sym__immediate_decimal_token3] = ACTIONS(4703), + [aux_sym__immediate_decimal_token4] = ACTIONS(4705), + [aux_sym__immediate_decimal_token5] = ACTIONS(4707), [anon_sym_err_GT] = ACTIONS(1539), [anon_sym_out_GT] = ACTIONS(1539), [anon_sym_e_GT] = ACTIONS(1539), @@ -217630,7 +217630,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(1983), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1983), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1983), - [anon_sym_DOT2] = ACTIONS(4664), + [anon_sym_DOT2] = ACTIONS(4673), [anon_sym_err_GT] = ACTIONS(1981), [anon_sym_out_GT] = ACTIONS(1981), [anon_sym_e_GT] = ACTIONS(1981), @@ -217770,7 +217770,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(1987), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1987), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1987), - [anon_sym_DOT2] = ACTIONS(4664), + [anon_sym_DOT2] = ACTIONS(4673), [anon_sym_err_GT] = ACTIONS(1985), [anon_sym_out_GT] = ACTIONS(1985), [anon_sym_e_GT] = ACTIONS(1985), @@ -217840,7 +217840,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(1991), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1991), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1991), - [anon_sym_DOT2] = ACTIONS(4664), + [anon_sym_DOT2] = ACTIONS(4673), [anon_sym_err_GT] = ACTIONS(1989), [anon_sym_out_GT] = ACTIONS(1989), [anon_sym_e_GT] = ACTIONS(1989), @@ -217910,7 +217910,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(937), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(937), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(937), - [anon_sym_DOT2] = ACTIONS(4664), + [anon_sym_DOT2] = ACTIONS(4673), [anon_sym_err_GT] = ACTIONS(935), [anon_sym_out_GT] = ACTIONS(935), [anon_sym_e_GT] = ACTIONS(935), @@ -217953,11 +217953,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(1873), [anon_sym_DOT_DOT] = ACTIONS(1865), [anon_sym_LPAREN2] = ACTIONS(1867), - [anon_sym_DOT_DOT2] = ACTIONS(4700), + [anon_sym_DOT_DOT2] = ACTIONS(4709), [anon_sym_DOT_DOT_EQ] = ACTIONS(1865), [anon_sym_DOT_DOT_LT] = ACTIONS(1865), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4702), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4702), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4711), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4711), [anon_sym_null] = ACTIONS(1873), [anon_sym_true] = ACTIONS(1873), [anon_sym_false] = ACTIONS(1873), @@ -218050,7 +218050,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(1995), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1995), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1995), - [anon_sym_DOT2] = ACTIONS(4664), + [anon_sym_DOT2] = ACTIONS(4673), [anon_sym_err_GT] = ACTIONS(1993), [anon_sym_out_GT] = ACTIONS(1993), [anon_sym_e_GT] = ACTIONS(1993), @@ -218120,7 +218120,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(1999), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1999), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1999), - [anon_sym_DOT2] = ACTIONS(4664), + [anon_sym_DOT2] = ACTIONS(4673), [anon_sym_err_GT] = ACTIONS(1997), [anon_sym_out_GT] = ACTIONS(1997), [anon_sym_e_GT] = ACTIONS(1997), @@ -218190,7 +218190,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(2003), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2003), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2003), - [anon_sym_DOT2] = ACTIONS(4664), + [anon_sym_DOT2] = ACTIONS(4673), [anon_sym_err_GT] = ACTIONS(2001), [anon_sym_out_GT] = ACTIONS(2001), [anon_sym_e_GT] = ACTIONS(2001), @@ -218330,7 +218330,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(2007), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2007), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2007), - [anon_sym_DOT2] = ACTIONS(4664), + [anon_sym_DOT2] = ACTIONS(4673), [anon_sym_err_GT] = ACTIONS(2005), [anon_sym_out_GT] = ACTIONS(2005), [anon_sym_e_GT] = ACTIONS(2005), @@ -218508,7 +218508,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1629), [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1629), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1629), - [anon_sym_DOLLAR] = ACTIONS(4648), + [anon_sym_DOLLAR] = ACTIONS(4657), [anon_sym_GT2] = ACTIONS(1627), [anon_sym_DASH2] = ACTIONS(1627), [anon_sym_in2] = ACTIONS(1629), @@ -218526,7 +218526,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ2] = ACTIONS(1629), [anon_sym_EQ_TILDE2] = ACTIONS(1629), [anon_sym_BANG_TILDE2] = ACTIONS(1629), - [anon_sym_LPAREN2] = ACTIONS(4650), + [anon_sym_LPAREN2] = ACTIONS(4659), [anon_sym_STAR_STAR2] = ACTIONS(1629), [anon_sym_PLUS_PLUS2] = ACTIONS(1629), [anon_sym_SLASH2] = ACTIONS(1627), @@ -218538,10 +218538,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bit_DASHand2] = ACTIONS(1629), [anon_sym_bit_DASHxor2] = ACTIONS(1629), [anon_sym_bit_DASHor2] = ACTIONS(1629), - [aux_sym__immediate_decimal_token1] = ACTIONS(4694), - [aux_sym__immediate_decimal_token3] = ACTIONS(4694), - [aux_sym__immediate_decimal_token4] = ACTIONS(4696), - [aux_sym__immediate_decimal_token5] = ACTIONS(4698), + [aux_sym__immediate_decimal_token1] = ACTIONS(4703), + [aux_sym__immediate_decimal_token3] = ACTIONS(4703), + [aux_sym__immediate_decimal_token4] = ACTIONS(4705), + [aux_sym__immediate_decimal_token5] = ACTIONS(4707), [anon_sym_err_GT] = ACTIONS(1627), [anon_sym_out_GT] = ACTIONS(1627), [anon_sym_e_GT] = ACTIONS(1627), @@ -218610,7 +218610,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(2011), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2011), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2011), - [anon_sym_DOT2] = ACTIONS(4664), + [anon_sym_DOT2] = ACTIONS(4673), [anon_sym_err_GT] = ACTIONS(2009), [anon_sym_out_GT] = ACTIONS(2009), [anon_sym_e_GT] = ACTIONS(2009), @@ -218658,7 +218658,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT_LT] = ACTIONS(1725), [anon_sym_DOT_DOT_EQ2] = ACTIONS(1727), [anon_sym_DOT_DOT_LT2] = ACTIONS(1727), - [aux_sym__immediate_decimal_token2] = ACTIONS(4635), + [aux_sym__immediate_decimal_token2] = ACTIONS(4644), [anon_sym_null] = ACTIONS(1727), [anon_sym_true] = ACTIONS(1727), [anon_sym_false] = ACTIONS(1727), @@ -218726,8 +218726,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN2] = ACTIONS(1759), [anon_sym_DOT_DOT_EQ] = ACTIONS(1759), [anon_sym_DOT_DOT_LT] = ACTIONS(1759), - [aux_sym__immediate_decimal_token1] = ACTIONS(4704), - [aux_sym__immediate_decimal_token2] = ACTIONS(4706), + [aux_sym__immediate_decimal_token1] = ACTIONS(4713), + [aux_sym__immediate_decimal_token2] = ACTIONS(4715), [anon_sym_null] = ACTIONS(1759), [anon_sym_true] = ACTIONS(1759), [anon_sym_false] = ACTIONS(1759), @@ -218886,10 +218886,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bit_DASHxor2] = ACTIONS(1589), [anon_sym_bit_DASHor2] = ACTIONS(1589), [anon_sym_DOT_DOT2] = ACTIONS(1587), - [anon_sym_DOT] = ACTIONS(4708), + [anon_sym_DOT] = ACTIONS(4717), [anon_sym_DOT_DOT_EQ2] = ACTIONS(1589), [anon_sym_DOT_DOT_LT2] = ACTIONS(1589), - [aux_sym__immediate_decimal_token2] = ACTIONS(4710), + [aux_sym__immediate_decimal_token2] = ACTIONS(4719), [sym_filesize_unit] = ACTIONS(1587), [sym_duration_unit] = ACTIONS(1589), [anon_sym_err_GT] = ACTIONS(1587), @@ -218932,7 +218932,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH2] = ACTIONS(958), [anon_sym_LBRACE] = ACTIONS(960), [anon_sym_DOT_DOT] = ACTIONS(958), - [anon_sym_QMARK2] = ACTIONS(4712), + [anon_sym_QMARK2] = ACTIONS(4721), [anon_sym_DOT_DOT2] = ACTIONS(958), [anon_sym_DOT_DOT_EQ] = ACTIONS(958), [anon_sym_DOT_DOT_LT] = ACTIONS(958), @@ -219008,7 +219008,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT_LT] = ACTIONS(1765), [anon_sym_DOT_DOT_EQ2] = ACTIONS(1767), [anon_sym_DOT_DOT_LT2] = ACTIONS(1767), - [aux_sym__immediate_decimal_token2] = ACTIONS(4714), + [aux_sym__immediate_decimal_token2] = ACTIONS(4723), [anon_sym_null] = ACTIONS(1767), [anon_sym_true] = ACTIONS(1767), [anon_sym_false] = ACTIONS(1767), @@ -219068,7 +219068,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1553), [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1553), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1553), - [anon_sym_DOLLAR] = ACTIONS(4648), + [anon_sym_DOLLAR] = ACTIONS(4657), [anon_sym_GT2] = ACTIONS(1539), [anon_sym_DASH2] = ACTIONS(1539), [anon_sym_in2] = ACTIONS(1553), @@ -219086,7 +219086,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ2] = ACTIONS(1553), [anon_sym_EQ_TILDE2] = ACTIONS(1553), [anon_sym_BANG_TILDE2] = ACTIONS(1553), - [anon_sym_LPAREN2] = ACTIONS(4650), + [anon_sym_LPAREN2] = ACTIONS(4659), [anon_sym_STAR_STAR2] = ACTIONS(1553), [anon_sym_PLUS_PLUS2] = ACTIONS(1553), [anon_sym_SLASH2] = ACTIONS(1539), @@ -219098,11 +219098,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bit_DASHand2] = ACTIONS(1553), [anon_sym_bit_DASHxor2] = ACTIONS(1553), [anon_sym_bit_DASHor2] = ACTIONS(1553), - [anon_sym_DOT] = ACTIONS(4716), - [aux_sym__immediate_decimal_token1] = ACTIONS(4654), - [aux_sym__immediate_decimal_token3] = ACTIONS(4654), - [aux_sym__immediate_decimal_token4] = ACTIONS(4656), - [aux_sym__immediate_decimal_token5] = ACTIONS(4658), + [anon_sym_DOT] = ACTIONS(4725), + [aux_sym__immediate_decimal_token1] = ACTIONS(4663), + [aux_sym__immediate_decimal_token3] = ACTIONS(4663), + [aux_sym__immediate_decimal_token4] = ACTIONS(4665), + [aux_sym__immediate_decimal_token5] = ACTIONS(4667), [anon_sym_err_GT] = ACTIONS(1539), [anon_sym_out_GT] = ACTIONS(1539), [anon_sym_e_GT] = ACTIONS(1539), @@ -219138,7 +219138,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1643), [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1643), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1643), - [anon_sym_DOLLAR] = ACTIONS(4648), + [anon_sym_DOLLAR] = ACTIONS(4657), [anon_sym_GT2] = ACTIONS(1633), [anon_sym_DASH2] = ACTIONS(1633), [anon_sym_in2] = ACTIONS(1643), @@ -219156,7 +219156,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ2] = ACTIONS(1643), [anon_sym_EQ_TILDE2] = ACTIONS(1643), [anon_sym_BANG_TILDE2] = ACTIONS(1643), - [anon_sym_LPAREN2] = ACTIONS(4650), + [anon_sym_LPAREN2] = ACTIONS(4659), [anon_sym_STAR_STAR2] = ACTIONS(1643), [anon_sym_PLUS_PLUS2] = ACTIONS(1643), [anon_sym_SLASH2] = ACTIONS(1633), @@ -219168,11 +219168,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bit_DASHand2] = ACTIONS(1643), [anon_sym_bit_DASHxor2] = ACTIONS(1643), [anon_sym_bit_DASHor2] = ACTIONS(1643), - [anon_sym_DOT] = ACTIONS(4718), - [aux_sym__immediate_decimal_token1] = ACTIONS(4654), - [aux_sym__immediate_decimal_token3] = ACTIONS(4654), - [aux_sym__immediate_decimal_token4] = ACTIONS(4656), - [aux_sym__immediate_decimal_token5] = ACTIONS(4658), + [anon_sym_DOT] = ACTIONS(4727), + [aux_sym__immediate_decimal_token1] = ACTIONS(4663), + [aux_sym__immediate_decimal_token3] = ACTIONS(4663), + [aux_sym__immediate_decimal_token4] = ACTIONS(4665), + [aux_sym__immediate_decimal_token5] = ACTIONS(4667), [anon_sym_err_GT] = ACTIONS(1633), [anon_sym_out_GT] = ACTIONS(1633), [anon_sym_e_GT] = ACTIONS(1633), @@ -219240,7 +219240,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(1975), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1975), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1975), - [anon_sym_DOT2] = ACTIONS(4664), + [anon_sym_DOT2] = ACTIONS(4673), [anon_sym_err_GT] = ACTIONS(1973), [anon_sym_out_GT] = ACTIONS(1973), [anon_sym_e_GT] = ACTIONS(1973), @@ -219278,7 +219278,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1665), [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1665), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1665), - [anon_sym_DOLLAR] = ACTIONS(4648), + [anon_sym_DOLLAR] = ACTIONS(4657), [anon_sym_GT2] = ACTIONS(1657), [anon_sym_DASH2] = ACTIONS(1657), [anon_sym_in2] = ACTIONS(1665), @@ -219296,7 +219296,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ2] = ACTIONS(1665), [anon_sym_EQ_TILDE2] = ACTIONS(1665), [anon_sym_BANG_TILDE2] = ACTIONS(1665), - [anon_sym_LPAREN2] = ACTIONS(4650), + [anon_sym_LPAREN2] = ACTIONS(4659), [anon_sym_STAR_STAR2] = ACTIONS(1665), [anon_sym_PLUS_PLUS2] = ACTIONS(1665), [anon_sym_SLASH2] = ACTIONS(1657), @@ -219308,10 +219308,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bit_DASHand2] = ACTIONS(1665), [anon_sym_bit_DASHxor2] = ACTIONS(1665), [anon_sym_bit_DASHor2] = ACTIONS(1665), - [aux_sym__immediate_decimal_token1] = ACTIONS(4720), - [aux_sym__immediate_decimal_token3] = ACTIONS(4720), - [aux_sym__immediate_decimal_token4] = ACTIONS(4656), - [aux_sym__immediate_decimal_token5] = ACTIONS(4658), + [aux_sym__immediate_decimal_token1] = ACTIONS(4729), + [aux_sym__immediate_decimal_token3] = ACTIONS(4729), + [aux_sym__immediate_decimal_token4] = ACTIONS(4665), + [aux_sym__immediate_decimal_token5] = ACTIONS(4667), [anon_sym_err_GT] = ACTIONS(1657), [anon_sym_out_GT] = ACTIONS(1657), [anon_sym_e_GT] = ACTIONS(1657), @@ -219378,7 +219378,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(1995), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1995), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1995), - [anon_sym_DOT2] = ACTIONS(4722), + [anon_sym_DOT2] = ACTIONS(4731), [anon_sym_err_GT] = ACTIONS(1993), [anon_sym_out_GT] = ACTIONS(1993), [anon_sym_e_GT] = ACTIONS(1993), @@ -219447,7 +219447,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(1999), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1999), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1999), - [anon_sym_DOT2] = ACTIONS(4722), + [anon_sym_DOT2] = ACTIONS(4731), [anon_sym_err_GT] = ACTIONS(1997), [anon_sym_out_GT] = ACTIONS(1997), [anon_sym_e_GT] = ACTIONS(1997), @@ -219654,7 +219654,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(2003), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2003), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2003), - [anon_sym_DOT2] = ACTIONS(4722), + [anon_sym_DOT2] = ACTIONS(4731), [anon_sym_err_GT] = ACTIONS(2001), [anon_sym_out_GT] = ACTIONS(2001), [anon_sym_e_GT] = ACTIONS(2001), @@ -219723,7 +219723,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(2007), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2007), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2007), - [anon_sym_DOT2] = ACTIONS(4722), + [anon_sym_DOT2] = ACTIONS(4731), [anon_sym_err_GT] = ACTIONS(2005), [anon_sym_out_GT] = ACTIONS(2005), [anon_sym_e_GT] = ACTIONS(2005), @@ -219792,7 +219792,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(2011), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2011), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2011), - [anon_sym_DOT2] = ACTIONS(4722), + [anon_sym_DOT2] = ACTIONS(4731), [anon_sym_err_GT] = ACTIONS(2009), [anon_sym_out_GT] = ACTIONS(2009), [anon_sym_e_GT] = ACTIONS(2009), @@ -219861,7 +219861,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(2091), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2091), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2091), - [anon_sym_DOT2] = ACTIONS(4722), + [anon_sym_DOT2] = ACTIONS(4731), [anon_sym_err_GT] = ACTIONS(2089), [anon_sym_out_GT] = ACTIONS(2089), [anon_sym_e_GT] = ACTIONS(2089), @@ -219954,12 +219954,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [1490] = { [sym_comment] = STATE(1490), [ts_builtin_sym_end] = ACTIONS(1000), - [anon_sym_EQ] = ACTIONS(4724), - [anon_sym_PLUS_EQ] = ACTIONS(4726), - [anon_sym_DASH_EQ] = ACTIONS(4726), - [anon_sym_STAR_EQ] = ACTIONS(4726), - [anon_sym_SLASH_EQ] = ACTIONS(4726), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(4726), + [anon_sym_EQ] = ACTIONS(4733), + [anon_sym_PLUS_EQ] = ACTIONS(4735), + [anon_sym_DASH_EQ] = ACTIONS(4735), + [anon_sym_STAR_EQ] = ACTIONS(4735), + [anon_sym_SLASH_EQ] = ACTIONS(4735), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(4735), [sym__newline] = ACTIONS(1000), [anon_sym_SEMI] = ACTIONS(1000), [anon_sym_PIPE] = ACTIONS(1000), @@ -219999,9 +219999,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bit_DASHand2] = ACTIONS(1000), [anon_sym_bit_DASHxor2] = ACTIONS(1000), [anon_sym_bit_DASHor2] = ACTIONS(1000), - [anon_sym_DOT_DOT2] = ACTIONS(4728), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4730), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4730), + [anon_sym_DOT_DOT2] = ACTIONS(4737), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4739), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4739), [anon_sym_err_GT] = ACTIONS(1004), [anon_sym_out_GT] = ACTIONS(1004), [anon_sym_e_GT] = ACTIONS(1004), @@ -220068,7 +220068,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(1927), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1927), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1927), - [anon_sym_DOT2] = ACTIONS(4722), + [anon_sym_DOT2] = ACTIONS(4731), [anon_sym_err_GT] = ACTIONS(1925), [anon_sym_out_GT] = ACTIONS(1925), [anon_sym_e_GT] = ACTIONS(1925), @@ -220106,7 +220106,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1713), [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1713), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1713), - [anon_sym_DOLLAR] = ACTIONS(4648), + [anon_sym_DOLLAR] = ACTIONS(4657), [anon_sym_GT2] = ACTIONS(1711), [anon_sym_DASH2] = ACTIONS(1711), [anon_sym_in2] = ACTIONS(1713), @@ -220124,7 +220124,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ2] = ACTIONS(1713), [anon_sym_EQ_TILDE2] = ACTIONS(1713), [anon_sym_BANG_TILDE2] = ACTIONS(1713), - [anon_sym_LPAREN2] = ACTIONS(4650), + [anon_sym_LPAREN2] = ACTIONS(4659), [anon_sym_STAR_STAR2] = ACTIONS(1713), [anon_sym_PLUS_PLUS2] = ACTIONS(1713), [anon_sym_SLASH2] = ACTIONS(1711), @@ -220136,10 +220136,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bit_DASHand2] = ACTIONS(1713), [anon_sym_bit_DASHxor2] = ACTIONS(1713), [anon_sym_bit_DASHor2] = ACTIONS(1713), - [aux_sym__immediate_decimal_token1] = ACTIONS(4720), - [aux_sym__immediate_decimal_token3] = ACTIONS(4720), - [aux_sym__immediate_decimal_token4] = ACTIONS(4656), - [aux_sym__immediate_decimal_token5] = ACTIONS(4658), + [aux_sym__immediate_decimal_token1] = ACTIONS(4729), + [aux_sym__immediate_decimal_token3] = ACTIONS(4729), + [aux_sym__immediate_decimal_token4] = ACTIONS(4665), + [aux_sym__immediate_decimal_token5] = ACTIONS(4667), [anon_sym_err_GT] = ACTIONS(1711), [anon_sym_out_GT] = ACTIONS(1711), [anon_sym_e_GT] = ACTIONS(1711), @@ -220206,7 +220206,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(2095), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2095), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2095), - [anon_sym_DOT2] = ACTIONS(4722), + [anon_sym_DOT2] = ACTIONS(4731), [anon_sym_err_GT] = ACTIONS(2093), [anon_sym_out_GT] = ACTIONS(2093), [anon_sym_e_GT] = ACTIONS(2093), @@ -220275,7 +220275,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(943), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(943), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(943), - [anon_sym_DOT2] = ACTIONS(4732), + [anon_sym_DOT2] = ACTIONS(4741), [anon_sym_err_GT] = ACTIONS(941), [anon_sym_out_GT] = ACTIONS(941), [anon_sym_e_GT] = ACTIONS(941), @@ -220344,7 +220344,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(1939), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1939), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1939), - [anon_sym_DOT2] = ACTIONS(4722), + [anon_sym_DOT2] = ACTIONS(4731), [anon_sym_err_GT] = ACTIONS(1937), [anon_sym_out_GT] = ACTIONS(1937), [anon_sym_e_GT] = ACTIONS(1937), @@ -220551,8 +220551,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT2] = ACTIONS(1757), [anon_sym_DOT_DOT_EQ2] = ACTIONS(1759), [anon_sym_DOT_DOT_LT2] = ACTIONS(1759), - [aux_sym__immediate_decimal_token1] = ACTIONS(4735), - [aux_sym__immediate_decimal_token2] = ACTIONS(4737), + [aux_sym__immediate_decimal_token1] = ACTIONS(4744), + [aux_sym__immediate_decimal_token2] = ACTIONS(4746), [anon_sym_err_GT] = ACTIONS(1757), [anon_sym_out_GT] = ACTIONS(1757), [anon_sym_e_GT] = ACTIONS(1757), @@ -220598,7 +220598,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT_LT] = ACTIONS(1765), [anon_sym_DOT_DOT_EQ2] = ACTIONS(1767), [anon_sym_DOT_DOT_LT2] = ACTIONS(1767), - [aux_sym__immediate_decimal_token2] = ACTIONS(4739), + [aux_sym__immediate_decimal_token2] = ACTIONS(4748), [anon_sym_null] = ACTIONS(1767), [anon_sym_true] = ACTIONS(1767), [anon_sym_false] = ACTIONS(1767), @@ -220658,7 +220658,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1643), [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1643), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1643), - [anon_sym_DOLLAR] = ACTIONS(4648), + [anon_sym_DOLLAR] = ACTIONS(4657), [anon_sym_GT2] = ACTIONS(1633), [anon_sym_DASH2] = ACTIONS(1633), [anon_sym_in2] = ACTIONS(1643), @@ -220676,7 +220676,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ2] = ACTIONS(1643), [anon_sym_EQ_TILDE2] = ACTIONS(1643), [anon_sym_BANG_TILDE2] = ACTIONS(1643), - [anon_sym_LPAREN2] = ACTIONS(4650), + [anon_sym_LPAREN2] = ACTIONS(4659), [anon_sym_STAR_STAR2] = ACTIONS(1643), [anon_sym_PLUS_PLUS2] = ACTIONS(1643), [anon_sym_SLASH2] = ACTIONS(1633), @@ -220688,10 +220688,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bit_DASHand2] = ACTIONS(1643), [anon_sym_bit_DASHxor2] = ACTIONS(1643), [anon_sym_bit_DASHor2] = ACTIONS(1643), - [aux_sym__immediate_decimal_token1] = ACTIONS(4720), - [aux_sym__immediate_decimal_token3] = ACTIONS(4720), - [aux_sym__immediate_decimal_token4] = ACTIONS(4656), - [aux_sym__immediate_decimal_token5] = ACTIONS(4658), + [aux_sym__immediate_decimal_token1] = ACTIONS(4729), + [aux_sym__immediate_decimal_token3] = ACTIONS(4729), + [aux_sym__immediate_decimal_token4] = ACTIONS(4665), + [aux_sym__immediate_decimal_token5] = ACTIONS(4667), [anon_sym_err_GT] = ACTIONS(1633), [anon_sym_out_GT] = ACTIONS(1633), [anon_sym_e_GT] = ACTIONS(1633), @@ -220939,11 +220939,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(1000), [anon_sym_RBRACE] = ACTIONS(1000), [anon_sym_DOT_DOT] = ACTIONS(1004), - [anon_sym_DOT_DOT2] = ACTIONS(4741), + [anon_sym_DOT_DOT2] = ACTIONS(4750), [anon_sym_DOT_DOT_EQ] = ACTIONS(1004), [anon_sym_DOT_DOT_LT] = ACTIONS(1004), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4743), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4743), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4752), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4752), [anon_sym_null] = ACTIONS(1000), [anon_sym_true] = ACTIONS(1000), [anon_sym_false] = ACTIONS(1000), @@ -221034,7 +221034,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(937), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(937), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(937), - [anon_sym_DOT2] = ACTIONS(4722), + [anon_sym_DOT2] = ACTIONS(4731), [anon_sym_err_GT] = ACTIONS(935), [anon_sym_out_GT] = ACTIONS(935), [anon_sym_e_GT] = ACTIONS(935), @@ -221101,10 +221101,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bit_DASHxor2] = ACTIONS(1727), [anon_sym_bit_DASHor2] = ACTIONS(1727), [anon_sym_DOT_DOT2] = ACTIONS(1725), - [anon_sym_DOT] = ACTIONS(4745), + [anon_sym_DOT] = ACTIONS(4754), [anon_sym_DOT_DOT_EQ2] = ACTIONS(1727), [anon_sym_DOT_DOT_LT2] = ACTIONS(1727), - [aux_sym__immediate_decimal_token2] = ACTIONS(4747), + [aux_sym__immediate_decimal_token2] = ACTIONS(4756), [anon_sym_err_GT] = ACTIONS(1725), [anon_sym_out_GT] = ACTIONS(1725), [anon_sym_e_GT] = ACTIONS(1725), @@ -221126,72 +221126,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [1507] = { [sym_comment] = STATE(1507), - [sym__newline] = ACTIONS(4749), - [anon_sym_SEMI] = ACTIONS(4749), - [anon_sym_PIPE] = ACTIONS(4749), - [anon_sym_err_GT_PIPE] = ACTIONS(4749), - [anon_sym_out_GT_PIPE] = ACTIONS(4749), - [anon_sym_e_GT_PIPE] = ACTIONS(4749), - [anon_sym_o_GT_PIPE] = ACTIONS(4749), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4749), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4749), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4749), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4749), - [anon_sym_LBRACK] = ACTIONS(4749), - [anon_sym_LPAREN] = ACTIONS(4749), - [anon_sym_RPAREN] = ACTIONS(4749), - [anon_sym_DOLLAR] = ACTIONS(4751), - [anon_sym_DASH_DASH] = ACTIONS(4749), - [anon_sym_DASH2] = ACTIONS(4751), - [anon_sym_LBRACE] = ACTIONS(4749), - [anon_sym_RBRACE] = ACTIONS(4749), - [anon_sym_DOT_DOT] = ACTIONS(4751), - [anon_sym_DOT_DOT2] = ACTIONS(4741), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4751), - [anon_sym_DOT_DOT_LT] = ACTIONS(4751), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4743), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4743), - [anon_sym_null] = ACTIONS(4749), - [anon_sym_true] = ACTIONS(4749), - [anon_sym_false] = ACTIONS(4749), - [aux_sym__val_number_decimal_token1] = ACTIONS(4751), - [aux_sym__val_number_decimal_token2] = ACTIONS(4749), - [aux_sym__val_number_decimal_token3] = ACTIONS(4749), - [aux_sym__val_number_decimal_token4] = ACTIONS(4749), - [aux_sym__val_number_token1] = ACTIONS(4749), - [aux_sym__val_number_token2] = ACTIONS(4749), - [aux_sym__val_number_token3] = ACTIONS(4749), - [aux_sym__val_number_token4] = ACTIONS(4749), - [aux_sym__val_number_token5] = ACTIONS(4749), - [aux_sym__val_number_token6] = ACTIONS(4749), - [anon_sym_0b] = ACTIONS(4751), - [anon_sym_0o] = ACTIONS(4751), - [anon_sym_0x] = ACTIONS(4751), - [sym_val_date] = ACTIONS(4749), - [anon_sym_DQUOTE] = ACTIONS(4749), - [sym__str_single_quotes] = ACTIONS(4749), - [sym__str_back_ticks] = ACTIONS(4749), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4749), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4749), - [anon_sym_err_GT] = ACTIONS(4751), - [anon_sym_out_GT] = ACTIONS(4751), - [anon_sym_e_GT] = ACTIONS(4751), - [anon_sym_o_GT] = ACTIONS(4751), - [anon_sym_err_PLUSout_GT] = ACTIONS(4751), - [anon_sym_out_PLUSerr_GT] = ACTIONS(4751), - [anon_sym_o_PLUSe_GT] = ACTIONS(4751), - [anon_sym_e_PLUSo_GT] = ACTIONS(4751), - [anon_sym_err_GT_GT] = ACTIONS(4749), - [anon_sym_out_GT_GT] = ACTIONS(4749), - [anon_sym_e_GT_GT] = ACTIONS(4749), - [anon_sym_o_GT_GT] = ACTIONS(4749), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4749), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4749), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4749), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4749), - [aux_sym_unquoted_token1] = ACTIONS(4751), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(4749), + [sym__newline] = ACTIONS(4758), + [anon_sym_SEMI] = ACTIONS(4758), + [anon_sym_PIPE] = ACTIONS(4758), + [anon_sym_err_GT_PIPE] = ACTIONS(4758), + [anon_sym_out_GT_PIPE] = ACTIONS(4758), + [anon_sym_e_GT_PIPE] = ACTIONS(4758), + [anon_sym_o_GT_PIPE] = ACTIONS(4758), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4758), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4758), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4758), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4758), + [anon_sym_LBRACK] = ACTIONS(4758), + [anon_sym_LPAREN] = ACTIONS(4758), + [anon_sym_RPAREN] = ACTIONS(4758), + [anon_sym_DOLLAR] = ACTIONS(4760), + [anon_sym_DASH_DASH] = ACTIONS(4758), + [anon_sym_DASH2] = ACTIONS(4760), + [anon_sym_LBRACE] = ACTIONS(4758), + [anon_sym_RBRACE] = ACTIONS(4758), + [anon_sym_DOT_DOT] = ACTIONS(4760), + [anon_sym_DOT_DOT2] = ACTIONS(4750), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4760), + [anon_sym_DOT_DOT_LT] = ACTIONS(4760), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4752), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4752), + [anon_sym_null] = ACTIONS(4758), + [anon_sym_true] = ACTIONS(4758), + [anon_sym_false] = ACTIONS(4758), + [aux_sym__val_number_decimal_token1] = ACTIONS(4760), + [aux_sym__val_number_decimal_token2] = ACTIONS(4758), + [aux_sym__val_number_decimal_token3] = ACTIONS(4758), + [aux_sym__val_number_decimal_token4] = ACTIONS(4758), + [aux_sym__val_number_token1] = ACTIONS(4758), + [aux_sym__val_number_token2] = ACTIONS(4758), + [aux_sym__val_number_token3] = ACTIONS(4758), + [aux_sym__val_number_token4] = ACTIONS(4758), + [aux_sym__val_number_token5] = ACTIONS(4758), + [aux_sym__val_number_token6] = ACTIONS(4758), + [anon_sym_0b] = ACTIONS(4760), + [anon_sym_0o] = ACTIONS(4760), + [anon_sym_0x] = ACTIONS(4760), + [sym_val_date] = ACTIONS(4758), + [anon_sym_DQUOTE] = ACTIONS(4758), + [sym__str_single_quotes] = ACTIONS(4758), + [sym__str_back_ticks] = ACTIONS(4758), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4758), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4758), + [anon_sym_err_GT] = ACTIONS(4760), + [anon_sym_out_GT] = ACTIONS(4760), + [anon_sym_e_GT] = ACTIONS(4760), + [anon_sym_o_GT] = ACTIONS(4760), + [anon_sym_err_PLUSout_GT] = ACTIONS(4760), + [anon_sym_out_PLUSerr_GT] = ACTIONS(4760), + [anon_sym_o_PLUSe_GT] = ACTIONS(4760), + [anon_sym_e_PLUSo_GT] = ACTIONS(4760), + [anon_sym_err_GT_GT] = ACTIONS(4758), + [anon_sym_out_GT_GT] = ACTIONS(4758), + [anon_sym_e_GT_GT] = ACTIONS(4758), + [anon_sym_o_GT_GT] = ACTIONS(4758), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4758), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4758), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4758), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4758), + [aux_sym_unquoted_token1] = ACTIONS(4760), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(4758), }, [1508] = { [sym_comment] = STATE(1508), @@ -221279,7 +221279,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1553), [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1553), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1553), - [anon_sym_DOLLAR] = ACTIONS(4648), + [anon_sym_DOLLAR] = ACTIONS(4657), [anon_sym_GT2] = ACTIONS(1539), [anon_sym_DASH2] = ACTIONS(1539), [anon_sym_in2] = ACTIONS(1553), @@ -221297,7 +221297,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ2] = ACTIONS(1553), [anon_sym_EQ_TILDE2] = ACTIONS(1553), [anon_sym_BANG_TILDE2] = ACTIONS(1553), - [anon_sym_LPAREN2] = ACTIONS(4650), + [anon_sym_LPAREN2] = ACTIONS(4659), [anon_sym_STAR_STAR2] = ACTIONS(1553), [anon_sym_PLUS_PLUS2] = ACTIONS(1553), [anon_sym_SLASH2] = ACTIONS(1539), @@ -221309,10 +221309,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bit_DASHand2] = ACTIONS(1553), [anon_sym_bit_DASHxor2] = ACTIONS(1553), [anon_sym_bit_DASHor2] = ACTIONS(1553), - [aux_sym__immediate_decimal_token1] = ACTIONS(4720), - [aux_sym__immediate_decimal_token3] = ACTIONS(4720), - [aux_sym__immediate_decimal_token4] = ACTIONS(4656), - [aux_sym__immediate_decimal_token5] = ACTIONS(4658), + [aux_sym__immediate_decimal_token1] = ACTIONS(4729), + [aux_sym__immediate_decimal_token3] = ACTIONS(4729), + [aux_sym__immediate_decimal_token4] = ACTIONS(4665), + [aux_sym__immediate_decimal_token5] = ACTIONS(4667), [anon_sym_err_GT] = ACTIONS(1539), [anon_sym_out_GT] = ACTIONS(1539), [anon_sym_e_GT] = ACTIONS(1539), @@ -221379,7 +221379,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(1947), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1947), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1947), - [anon_sym_DOT2] = ACTIONS(4722), + [anon_sym_DOT2] = ACTIONS(4731), [anon_sym_err_GT] = ACTIONS(1945), [anon_sym_out_GT] = ACTIONS(1945), [anon_sym_e_GT] = ACTIONS(1945), @@ -221448,7 +221448,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(1951), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1951), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1951), - [anon_sym_DOT2] = ACTIONS(4722), + [anon_sym_DOT2] = ACTIONS(4731), [anon_sym_err_GT] = ACTIONS(1949), [anon_sym_out_GT] = ACTIONS(1949), [anon_sym_e_GT] = ACTIONS(1949), @@ -221491,10 +221491,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(1727), [anon_sym_DOT_DOT] = ACTIONS(1725), [anon_sym_LPAREN2] = ACTIONS(1727), - [anon_sym_DOT] = ACTIONS(4753), + [anon_sym_DOT] = ACTIONS(4762), [anon_sym_DOT_DOT_EQ] = ACTIONS(1727), [anon_sym_DOT_DOT_LT] = ACTIONS(1727), - [aux_sym__immediate_decimal_token2] = ACTIONS(4755), + [aux_sym__immediate_decimal_token2] = ACTIONS(4764), [anon_sym_null] = ACTIONS(1727), [anon_sym_true] = ACTIONS(1727), [anon_sym_false] = ACTIONS(1727), @@ -221586,7 +221586,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(1955), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1955), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1955), - [anon_sym_DOT2] = ACTIONS(4722), + [anon_sym_DOT2] = ACTIONS(4731), [anon_sym_err_GT] = ACTIONS(1953), [anon_sym_out_GT] = ACTIONS(1953), [anon_sym_e_GT] = ACTIONS(1953), @@ -221655,7 +221655,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(1959), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1959), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1959), - [anon_sym_DOT2] = ACTIONS(4722), + [anon_sym_DOT2] = ACTIONS(4731), [anon_sym_err_GT] = ACTIONS(1957), [anon_sym_out_GT] = ACTIONS(1957), [anon_sym_e_GT] = ACTIONS(1957), @@ -221724,7 +221724,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(1963), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1963), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1963), - [anon_sym_DOT2] = ACTIONS(4722), + [anon_sym_DOT2] = ACTIONS(4731), [anon_sym_err_GT] = ACTIONS(1961), [anon_sym_out_GT] = ACTIONS(1961), [anon_sym_e_GT] = ACTIONS(1961), @@ -221793,7 +221793,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(1991), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1991), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1991), - [anon_sym_DOT2] = ACTIONS(4722), + [anon_sym_DOT2] = ACTIONS(4731), [anon_sym_err_GT] = ACTIONS(1989), [anon_sym_out_GT] = ACTIONS(1989), [anon_sym_e_GT] = ACTIONS(1989), @@ -221816,12 +221816,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [1517] = { [sym_comment] = STATE(1517), - [anon_sym_EQ] = ACTIONS(4757), - [anon_sym_PLUS_EQ] = ACTIONS(4759), - [anon_sym_DASH_EQ] = ACTIONS(4759), - [anon_sym_STAR_EQ] = ACTIONS(4759), - [anon_sym_SLASH_EQ] = ACTIONS(4759), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(4759), + [anon_sym_EQ] = ACTIONS(4766), + [anon_sym_PLUS_EQ] = ACTIONS(4768), + [anon_sym_DASH_EQ] = ACTIONS(4768), + [anon_sym_STAR_EQ] = ACTIONS(4768), + [anon_sym_SLASH_EQ] = ACTIONS(4768), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(4768), [sym__newline] = ACTIONS(1000), [anon_sym_SEMI] = ACTIONS(1000), [anon_sym_PIPE] = ACTIONS(1000), @@ -222000,7 +222000,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(1967), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1967), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1967), - [anon_sym_DOT2] = ACTIONS(4722), + [anon_sym_DOT2] = ACTIONS(4731), [anon_sym_err_GT] = ACTIONS(1965), [anon_sym_out_GT] = ACTIONS(1965), [anon_sym_e_GT] = ACTIONS(1965), @@ -222038,7 +222038,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1629), [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1629), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1629), - [anon_sym_DOLLAR] = ACTIONS(4648), + [anon_sym_DOLLAR] = ACTIONS(4657), [anon_sym_GT2] = ACTIONS(1627), [anon_sym_DASH2] = ACTIONS(1627), [anon_sym_in2] = ACTIONS(1629), @@ -222056,7 +222056,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ2] = ACTIONS(1629), [anon_sym_EQ_TILDE2] = ACTIONS(1629), [anon_sym_BANG_TILDE2] = ACTIONS(1629), - [anon_sym_LPAREN2] = ACTIONS(4650), + [anon_sym_LPAREN2] = ACTIONS(4659), [anon_sym_STAR_STAR2] = ACTIONS(1629), [anon_sym_PLUS_PLUS2] = ACTIONS(1629), [anon_sym_SLASH2] = ACTIONS(1627), @@ -222068,10 +222068,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bit_DASHand2] = ACTIONS(1629), [anon_sym_bit_DASHxor2] = ACTIONS(1629), [anon_sym_bit_DASHor2] = ACTIONS(1629), - [aux_sym__immediate_decimal_token1] = ACTIONS(4720), - [aux_sym__immediate_decimal_token3] = ACTIONS(4720), - [aux_sym__immediate_decimal_token4] = ACTIONS(4656), - [aux_sym__immediate_decimal_token5] = ACTIONS(4658), + [aux_sym__immediate_decimal_token1] = ACTIONS(4729), + [aux_sym__immediate_decimal_token3] = ACTIONS(4729), + [aux_sym__immediate_decimal_token4] = ACTIONS(4665), + [aux_sym__immediate_decimal_token5] = ACTIONS(4667), [anon_sym_err_GT] = ACTIONS(1627), [anon_sym_out_GT] = ACTIONS(1627), [anon_sym_e_GT] = ACTIONS(1627), @@ -222112,11 +222112,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(2150), [anon_sym_RBRACE] = ACTIONS(2150), [anon_sym_DOT_DOT] = ACTIONS(2144), - [anon_sym_DOT_DOT2] = ACTIONS(4761), + [anon_sym_DOT_DOT2] = ACTIONS(4770), [anon_sym_DOT_DOT_EQ] = ACTIONS(2144), [anon_sym_DOT_DOT_LT] = ACTIONS(2144), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4763), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4763), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4772), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4772), [anon_sym_null] = ACTIONS(2150), [anon_sym_true] = ACTIONS(2150), [anon_sym_false] = ACTIONS(2150), @@ -222181,11 +222181,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(2158), [anon_sym_RBRACE] = ACTIONS(2158), [anon_sym_DOT_DOT] = ACTIONS(2152), - [anon_sym_DOT_DOT2] = ACTIONS(4765), + [anon_sym_DOT_DOT2] = ACTIONS(4774), [anon_sym_DOT_DOT_EQ] = ACTIONS(2152), [anon_sym_DOT_DOT_LT] = ACTIONS(2152), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4767), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4767), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4776), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4776), [anon_sym_null] = ACTIONS(2158), [anon_sym_true] = ACTIONS(2158), [anon_sym_false] = ACTIONS(2158), @@ -222250,11 +222250,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(2166), [anon_sym_RBRACE] = ACTIONS(2166), [anon_sym_DOT_DOT] = ACTIONS(2160), - [anon_sym_DOT_DOT2] = ACTIONS(4769), + [anon_sym_DOT_DOT2] = ACTIONS(4778), [anon_sym_DOT_DOT_EQ] = ACTIONS(2160), [anon_sym_DOT_DOT_LT] = ACTIONS(2160), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4771), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4771), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4780), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4780), [anon_sym_null] = ACTIONS(2166), [anon_sym_true] = ACTIONS(2166), [anon_sym_false] = ACTIONS(2166), @@ -222345,7 +222345,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(1971), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1971), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1971), - [anon_sym_DOT2] = ACTIONS(4722), + [anon_sym_DOT2] = ACTIONS(4731), [anon_sym_err_GT] = ACTIONS(1969), [anon_sym_out_GT] = ACTIONS(1969), [anon_sym_e_GT] = ACTIONS(1969), @@ -222529,7 +222529,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN2] = ACTIONS(1767), [anon_sym_DOT_DOT_EQ] = ACTIONS(1767), [anon_sym_DOT_DOT_LT] = ACTIONS(1767), - [aux_sym__immediate_decimal_token2] = ACTIONS(4773), + [aux_sym__immediate_decimal_token2] = ACTIONS(4782), [anon_sym_null] = ACTIONS(1767), [anon_sym_true] = ACTIONS(1767), [anon_sym_false] = ACTIONS(1767), @@ -222617,10 +222617,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bit_DASHxor2] = ACTIONS(1589), [anon_sym_bit_DASHor2] = ACTIONS(1589), [anon_sym_DOT_DOT2] = ACTIONS(1587), - [anon_sym_DOT] = ACTIONS(4775), + [anon_sym_DOT] = ACTIONS(4784), [anon_sym_DOT_DOT_EQ2] = ACTIONS(1589), [anon_sym_DOT_DOT_LT2] = ACTIONS(1589), - [aux_sym__immediate_decimal_token2] = ACTIONS(4777), + [aux_sym__immediate_decimal_token2] = ACTIONS(4786), [sym_filesize_unit] = ACTIONS(1587), [sym_duration_unit] = ACTIONS(1589), [anon_sym_err_GT] = ACTIONS(1587), @@ -222690,7 +222690,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(1975), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1975), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1975), - [anon_sym_DOT2] = ACTIONS(4722), + [anon_sym_DOT2] = ACTIONS(4731), [anon_sym_err_GT] = ACTIONS(1973), [anon_sym_out_GT] = ACTIONS(1973), [anon_sym_e_GT] = ACTIONS(1973), @@ -222733,11 +222733,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(2176), [anon_sym_RBRACE] = ACTIONS(2176), [anon_sym_DOT_DOT] = ACTIONS(2170), - [anon_sym_DOT_DOT2] = ACTIONS(4779), + [anon_sym_DOT_DOT2] = ACTIONS(4788), [anon_sym_DOT_DOT_EQ] = ACTIONS(2170), [anon_sym_DOT_DOT_LT] = ACTIONS(2170), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4781), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4781), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4790), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4790), [anon_sym_null] = ACTIONS(2176), [anon_sym_true] = ACTIONS(2176), [anon_sym_false] = ACTIONS(2176), @@ -222826,8 +222826,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT2] = ACTIONS(1595), [anon_sym_DOT_DOT_EQ2] = ACTIONS(1597), [anon_sym_DOT_DOT_LT2] = ACTIONS(1597), - [aux_sym__immediate_decimal_token1] = ACTIONS(4783), - [aux_sym__immediate_decimal_token2] = ACTIONS(4785), + [aux_sym__immediate_decimal_token1] = ACTIONS(4792), + [aux_sym__immediate_decimal_token2] = ACTIONS(4794), [sym_filesize_unit] = ACTIONS(1595), [sym_duration_unit] = ACTIONS(1597), [anon_sym_err_GT] = ACTIONS(1595), @@ -222897,7 +222897,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(950), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(950), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(950), - [anon_sym_DOT2] = ACTIONS(4664), + [anon_sym_DOT2] = ACTIONS(4673), [anon_sym_err_GT] = ACTIONS(948), [anon_sym_out_GT] = ACTIONS(948), [anon_sym_e_GT] = ACTIONS(948), @@ -222944,7 +222944,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT_LT] = ACTIONS(1725), [anon_sym_DOT_DOT_EQ2] = ACTIONS(1727), [anon_sym_DOT_DOT_LT2] = ACTIONS(1727), - [aux_sym__immediate_decimal_token2] = ACTIONS(4688), + [aux_sym__immediate_decimal_token2] = ACTIONS(4697), [anon_sym_null] = ACTIONS(1727), [anon_sym_true] = ACTIONS(1727), [anon_sym_false] = ACTIONS(1727), @@ -223080,8 +223080,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN2] = ACTIONS(1759), [anon_sym_DOT_DOT_EQ] = ACTIONS(1759), [anon_sym_DOT_DOT_LT] = ACTIONS(1759), - [aux_sym__immediate_decimal_token1] = ACTIONS(4787), - [aux_sym__immediate_decimal_token2] = ACTIONS(4789), + [aux_sym__immediate_decimal_token1] = ACTIONS(4796), + [aux_sym__immediate_decimal_token2] = ACTIONS(4798), [anon_sym_null] = ACTIONS(1759), [anon_sym_true] = ACTIONS(1759), [anon_sym_false] = ACTIONS(1759), @@ -223172,7 +223172,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT2] = ACTIONS(1587), [anon_sym_DOT_DOT_EQ2] = ACTIONS(1589), [anon_sym_DOT_DOT_LT2] = ACTIONS(1589), - [aux_sym__immediate_decimal_token2] = ACTIONS(4710), + [aux_sym__immediate_decimal_token2] = ACTIONS(4719), [sym_filesize_unit] = ACTIONS(1587), [sym_duration_unit] = ACTIONS(1589), [anon_sym_err_GT] = ACTIONS(1587), @@ -223211,7 +223211,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1709), [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1709), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1709), - [anon_sym_DOLLAR] = ACTIONS(4648), + [anon_sym_DOLLAR] = ACTIONS(4657), [anon_sym_GT2] = ACTIONS(1707), [anon_sym_DASH2] = ACTIONS(1707), [anon_sym_in2] = ACTIONS(1709), @@ -223229,7 +223229,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ2] = ACTIONS(1709), [anon_sym_EQ_TILDE2] = ACTIONS(1709), [anon_sym_BANG_TILDE2] = ACTIONS(1709), - [anon_sym_LPAREN2] = ACTIONS(4650), + [anon_sym_LPAREN2] = ACTIONS(4659), [anon_sym_STAR_STAR2] = ACTIONS(1709), [anon_sym_PLUS_PLUS2] = ACTIONS(1709), [anon_sym_SLASH2] = ACTIONS(1707), @@ -223241,10 +223241,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bit_DASHand2] = ACTIONS(1709), [anon_sym_bit_DASHxor2] = ACTIONS(1709), [anon_sym_bit_DASHor2] = ACTIONS(1709), - [aux_sym__immediate_decimal_token1] = ACTIONS(4720), - [aux_sym__immediate_decimal_token3] = ACTIONS(4720), - [aux_sym__immediate_decimal_token4] = ACTIONS(4656), - [aux_sym__immediate_decimal_token5] = ACTIONS(4658), + [aux_sym__immediate_decimal_token1] = ACTIONS(4729), + [aux_sym__immediate_decimal_token3] = ACTIONS(4729), + [aux_sym__immediate_decimal_token4] = ACTIONS(4665), + [aux_sym__immediate_decimal_token5] = ACTIONS(4667), [anon_sym_err_GT] = ACTIONS(1707), [anon_sym_out_GT] = ACTIONS(1707), [anon_sym_e_GT] = ACTIONS(1707), @@ -223310,7 +223310,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT2] = ACTIONS(1667), [anon_sym_DOT_DOT_EQ2] = ACTIONS(1669), [anon_sym_DOT_DOT_LT2] = ACTIONS(1669), - [aux_sym__immediate_decimal_token2] = ACTIONS(4791), + [aux_sym__immediate_decimal_token2] = ACTIONS(4800), [sym_filesize_unit] = ACTIONS(1667), [sym_duration_unit] = ACTIONS(1669), [anon_sym_err_GT] = ACTIONS(1667), @@ -223365,7 +223365,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ2] = ACTIONS(1693), [anon_sym_EQ_TILDE2] = ACTIONS(1693), [anon_sym_BANG_TILDE2] = ACTIONS(1693), - [anon_sym_LPAREN2] = ACTIONS(4403), + [anon_sym_LPAREN2] = ACTIONS(4412), [anon_sym_STAR_STAR2] = ACTIONS(1693), [anon_sym_PLUS_PLUS2] = ACTIONS(1693), [anon_sym_SLASH2] = ACTIONS(1681), @@ -223377,11 +223377,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bit_DASHand2] = ACTIONS(1693), [anon_sym_bit_DASHxor2] = ACTIONS(1693), [anon_sym_bit_DASHor2] = ACTIONS(1693), - [anon_sym_DOT_DOT2] = ACTIONS(4793), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4795), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4795), - [sym_filesize_unit] = ACTIONS(4797), - [sym_duration_unit] = ACTIONS(4799), + [anon_sym_DOT_DOT2] = ACTIONS(4802), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4804), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4804), + [sym_filesize_unit] = ACTIONS(4806), + [sym_duration_unit] = ACTIONS(4808), [anon_sym_err_GT] = ACTIONS(1681), [anon_sym_out_GT] = ACTIONS(1681), [anon_sym_e_GT] = ACTIONS(1681), @@ -223398,7 +223398,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1693), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1693), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1693), - [aux_sym_unquoted_token2] = ACTIONS(4801), + [aux_sym_unquoted_token2] = ACTIONS(4810), [anon_sym_POUND] = ACTIONS(251), }, [1540] = { @@ -223518,7 +223518,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(1979), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1979), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1979), - [anon_sym_DOT2] = ACTIONS(4722), + [anon_sym_DOT2] = ACTIONS(4731), [anon_sym_err_GT] = ACTIONS(1977), [anon_sym_out_GT] = ACTIONS(1977), [anon_sym_e_GT] = ACTIONS(1977), @@ -223587,7 +223587,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(1935), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1935), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1935), - [anon_sym_DOT2] = ACTIONS(4722), + [anon_sym_DOT2] = ACTIONS(4731), [anon_sym_err_GT] = ACTIONS(1933), [anon_sym_out_GT] = ACTIONS(1933), [anon_sym_e_GT] = ACTIONS(1933), @@ -223679,12 +223679,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [1544] = { [sym_comment] = STATE(1544), - [anon_sym_EQ] = ACTIONS(4803), - [anon_sym_PLUS_EQ] = ACTIONS(4805), - [anon_sym_DASH_EQ] = ACTIONS(4805), - [anon_sym_STAR_EQ] = ACTIONS(4805), - [anon_sym_SLASH_EQ] = ACTIONS(4805), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(4805), + [anon_sym_EQ] = ACTIONS(4812), + [anon_sym_PLUS_EQ] = ACTIONS(4814), + [anon_sym_DASH_EQ] = ACTIONS(4814), + [anon_sym_STAR_EQ] = ACTIONS(4814), + [anon_sym_SLASH_EQ] = ACTIONS(4814), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(4814), [sym__newline] = ACTIONS(1000), [anon_sym_SEMI] = ACTIONS(1000), [anon_sym_PIPE] = ACTIONS(1000), @@ -223863,7 +223863,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(1983), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1983), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1983), - [anon_sym_DOT2] = ACTIONS(4722), + [anon_sym_DOT2] = ACTIONS(4731), [anon_sym_err_GT] = ACTIONS(1981), [anon_sym_out_GT] = ACTIONS(1981), [anon_sym_e_GT] = ACTIONS(1981), @@ -223932,7 +223932,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(1987), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1987), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1987), - [anon_sym_DOT2] = ACTIONS(4722), + [anon_sym_DOT2] = ACTIONS(4731), [anon_sym_err_GT] = ACTIONS(1985), [anon_sym_out_GT] = ACTIONS(1985), [anon_sym_e_GT] = ACTIONS(1985), @@ -223978,7 +223978,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN2] = ACTIONS(1727), [anon_sym_DOT_DOT_EQ] = ACTIONS(1727), [anon_sym_DOT_DOT_LT] = ACTIONS(1727), - [aux_sym__immediate_decimal_token2] = ACTIONS(4676), + [aux_sym__immediate_decimal_token2] = ACTIONS(4685), [anon_sym_null] = ACTIONS(1727), [anon_sym_true] = ACTIONS(1727), [anon_sym_false] = ACTIONS(1727), @@ -224139,7 +224139,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bit_DASHand2] = ACTIONS(1995), [anon_sym_bit_DASHxor2] = ACTIONS(1995), [anon_sym_bit_DASHor2] = ACTIONS(1995), - [anon_sym_DOT2] = ACTIONS(4807), + [anon_sym_DOT2] = ACTIONS(4816), [anon_sym_err_GT] = ACTIONS(1993), [anon_sym_out_GT] = ACTIONS(1993), [anon_sym_e_GT] = ACTIONS(1993), @@ -224160,71 +224160,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [1551] = { [sym_comment] = STATE(1551), - [ts_builtin_sym_end] = ACTIONS(4749), - [sym__newline] = ACTIONS(4749), - [anon_sym_SEMI] = ACTIONS(4749), - [anon_sym_PIPE] = ACTIONS(4749), - [anon_sym_err_GT_PIPE] = ACTIONS(4749), - [anon_sym_out_GT_PIPE] = ACTIONS(4749), - [anon_sym_e_GT_PIPE] = ACTIONS(4749), - [anon_sym_o_GT_PIPE] = ACTIONS(4749), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4749), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4749), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4749), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4749), - [anon_sym_LBRACK] = ACTIONS(4749), - [anon_sym_LPAREN] = ACTIONS(4749), - [anon_sym_DOLLAR] = ACTIONS(4751), - [anon_sym_DASH_DASH] = ACTIONS(4749), - [anon_sym_DASH2] = ACTIONS(4751), - [anon_sym_LBRACE] = ACTIONS(4749), - [anon_sym_DOT_DOT] = ACTIONS(4751), - [anon_sym_DOT_DOT2] = ACTIONS(4809), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4751), - [anon_sym_DOT_DOT_LT] = ACTIONS(4751), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4811), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4811), - [anon_sym_null] = ACTIONS(4749), - [anon_sym_true] = ACTIONS(4749), - [anon_sym_false] = ACTIONS(4749), - [aux_sym__val_number_decimal_token1] = ACTIONS(4751), - [aux_sym__val_number_decimal_token2] = ACTIONS(4749), - [aux_sym__val_number_decimal_token3] = ACTIONS(4749), - [aux_sym__val_number_decimal_token4] = ACTIONS(4749), - [aux_sym__val_number_token1] = ACTIONS(4749), - [aux_sym__val_number_token2] = ACTIONS(4749), - [aux_sym__val_number_token3] = ACTIONS(4749), - [aux_sym__val_number_token4] = ACTIONS(4749), - [aux_sym__val_number_token5] = ACTIONS(4749), - [aux_sym__val_number_token6] = ACTIONS(4749), - [anon_sym_0b] = ACTIONS(4751), - [anon_sym_0o] = ACTIONS(4751), - [anon_sym_0x] = ACTIONS(4751), - [sym_val_date] = ACTIONS(4749), - [anon_sym_DQUOTE] = ACTIONS(4749), - [sym__str_single_quotes] = ACTIONS(4749), - [sym__str_back_ticks] = ACTIONS(4749), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4749), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4749), - [anon_sym_err_GT] = ACTIONS(4751), - [anon_sym_out_GT] = ACTIONS(4751), - [anon_sym_e_GT] = ACTIONS(4751), - [anon_sym_o_GT] = ACTIONS(4751), - [anon_sym_err_PLUSout_GT] = ACTIONS(4751), - [anon_sym_out_PLUSerr_GT] = ACTIONS(4751), - [anon_sym_o_PLUSe_GT] = ACTIONS(4751), - [anon_sym_e_PLUSo_GT] = ACTIONS(4751), - [anon_sym_err_GT_GT] = ACTIONS(4749), - [anon_sym_out_GT_GT] = ACTIONS(4749), - [anon_sym_e_GT_GT] = ACTIONS(4749), - [anon_sym_o_GT_GT] = ACTIONS(4749), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4749), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4749), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4749), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4749), - [aux_sym_unquoted_token1] = ACTIONS(4751), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(4749), + [ts_builtin_sym_end] = ACTIONS(4758), + [sym__newline] = ACTIONS(4758), + [anon_sym_SEMI] = ACTIONS(4758), + [anon_sym_PIPE] = ACTIONS(4758), + [anon_sym_err_GT_PIPE] = ACTIONS(4758), + [anon_sym_out_GT_PIPE] = ACTIONS(4758), + [anon_sym_e_GT_PIPE] = ACTIONS(4758), + [anon_sym_o_GT_PIPE] = ACTIONS(4758), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4758), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4758), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4758), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4758), + [anon_sym_LBRACK] = ACTIONS(4758), + [anon_sym_LPAREN] = ACTIONS(4758), + [anon_sym_DOLLAR] = ACTIONS(4760), + [anon_sym_DASH_DASH] = ACTIONS(4758), + [anon_sym_DASH2] = ACTIONS(4760), + [anon_sym_LBRACE] = ACTIONS(4758), + [anon_sym_DOT_DOT] = ACTIONS(4760), + [anon_sym_DOT_DOT2] = ACTIONS(4818), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4760), + [anon_sym_DOT_DOT_LT] = ACTIONS(4760), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4820), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4820), + [anon_sym_null] = ACTIONS(4758), + [anon_sym_true] = ACTIONS(4758), + [anon_sym_false] = ACTIONS(4758), + [aux_sym__val_number_decimal_token1] = ACTIONS(4760), + [aux_sym__val_number_decimal_token2] = ACTIONS(4758), + [aux_sym__val_number_decimal_token3] = ACTIONS(4758), + [aux_sym__val_number_decimal_token4] = ACTIONS(4758), + [aux_sym__val_number_token1] = ACTIONS(4758), + [aux_sym__val_number_token2] = ACTIONS(4758), + [aux_sym__val_number_token3] = ACTIONS(4758), + [aux_sym__val_number_token4] = ACTIONS(4758), + [aux_sym__val_number_token5] = ACTIONS(4758), + [aux_sym__val_number_token6] = ACTIONS(4758), + [anon_sym_0b] = ACTIONS(4760), + [anon_sym_0o] = ACTIONS(4760), + [anon_sym_0x] = ACTIONS(4760), + [sym_val_date] = ACTIONS(4758), + [anon_sym_DQUOTE] = ACTIONS(4758), + [sym__str_single_quotes] = ACTIONS(4758), + [sym__str_back_ticks] = ACTIONS(4758), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4758), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4758), + [anon_sym_err_GT] = ACTIONS(4760), + [anon_sym_out_GT] = ACTIONS(4760), + [anon_sym_e_GT] = ACTIONS(4760), + [anon_sym_o_GT] = ACTIONS(4760), + [anon_sym_err_PLUSout_GT] = ACTIONS(4760), + [anon_sym_out_PLUSerr_GT] = ACTIONS(4760), + [anon_sym_o_PLUSe_GT] = ACTIONS(4760), + [anon_sym_e_PLUSo_GT] = ACTIONS(4760), + [anon_sym_err_GT_GT] = ACTIONS(4758), + [anon_sym_out_GT_GT] = ACTIONS(4758), + [anon_sym_e_GT_GT] = ACTIONS(4758), + [anon_sym_o_GT_GT] = ACTIONS(4758), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4758), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4758), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4758), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4758), + [aux_sym_unquoted_token1] = ACTIONS(4760), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(4758), }, [1552] = { [sym_cell_path] = STATE(2055), @@ -224275,7 +224275,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bit_DASHand2] = ACTIONS(1971), [anon_sym_bit_DASHxor2] = ACTIONS(1971), [anon_sym_bit_DASHor2] = ACTIONS(1971), - [anon_sym_DOT2] = ACTIONS(4807), + [anon_sym_DOT2] = ACTIONS(4816), [anon_sym_err_GT] = ACTIONS(1969), [anon_sym_out_GT] = ACTIONS(1969), [anon_sym_e_GT] = ACTIONS(1969), @@ -224343,7 +224343,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bit_DASHand2] = ACTIONS(2095), [anon_sym_bit_DASHxor2] = ACTIONS(2095), [anon_sym_bit_DASHor2] = ACTIONS(2095), - [anon_sym_DOT2] = ACTIONS(4807), + [anon_sym_DOT2] = ACTIONS(4816), [anon_sym_err_GT] = ACTIONS(2093), [anon_sym_out_GT] = ACTIONS(2093), [anon_sym_e_GT] = ACTIONS(2093), @@ -224383,11 +224383,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH2] = ACTIONS(2170), [anon_sym_LBRACE] = ACTIONS(2176), [anon_sym_DOT_DOT] = ACTIONS(2170), - [anon_sym_DOT_DOT2] = ACTIONS(4813), + [anon_sym_DOT_DOT2] = ACTIONS(4822), [anon_sym_DOT_DOT_EQ] = ACTIONS(2170), [anon_sym_DOT_DOT_LT] = ACTIONS(2170), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4815), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4815), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4824), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4824), [anon_sym_null] = ACTIONS(2176), [anon_sym_true] = ACTIONS(2176), [anon_sym_false] = ACTIONS(2176), @@ -224452,10 +224452,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(1727), [anon_sym_RBRACE] = ACTIONS(1727), [anon_sym_DOT_DOT] = ACTIONS(1725), - [anon_sym_DOT] = ACTIONS(4817), + [anon_sym_DOT] = ACTIONS(4826), [anon_sym_DOT_DOT_EQ] = ACTIONS(1727), [anon_sym_DOT_DOT_LT] = ACTIONS(1727), - [aux_sym__immediate_decimal_token2] = ACTIONS(4819), + [aux_sym__immediate_decimal_token2] = ACTIONS(4828), [anon_sym_null] = ACTIONS(1727), [anon_sym_true] = ACTIONS(1727), [anon_sym_false] = ACTIONS(1727), @@ -224615,7 +224615,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bit_DASHand2] = ACTIONS(1975), [anon_sym_bit_DASHxor2] = ACTIONS(1975), [anon_sym_bit_DASHor2] = ACTIONS(1975), - [anon_sym_DOT2] = ACTIONS(4807), + [anon_sym_DOT2] = ACTIONS(4816), [anon_sym_err_GT] = ACTIONS(1973), [anon_sym_out_GT] = ACTIONS(1973), [anon_sym_e_GT] = ACTIONS(1973), @@ -225112,71 +225112,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [1565] = { [sym_comment] = STATE(1565), - [sym__newline] = ACTIONS(2766), - [anon_sym_SEMI] = ACTIONS(2766), - [anon_sym_PIPE] = ACTIONS(2766), - [anon_sym_err_GT_PIPE] = ACTIONS(2766), - [anon_sym_out_GT_PIPE] = ACTIONS(2766), - [anon_sym_e_GT_PIPE] = ACTIONS(2766), - [anon_sym_o_GT_PIPE] = ACTIONS(2766), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2766), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2766), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2766), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2766), - [anon_sym_LBRACK] = ACTIONS(2766), - [anon_sym_LPAREN] = ACTIONS(2766), - [anon_sym_RPAREN] = ACTIONS(2766), - [anon_sym_DOLLAR] = ACTIONS(4821), - [anon_sym_DASH_DASH] = ACTIONS(2766), - [anon_sym_DASH2] = ACTIONS(4821), - [anon_sym_LBRACE] = ACTIONS(2766), - [anon_sym_DOT_DOT] = ACTIONS(4821), - [anon_sym_DOT_DOT2] = ACTIONS(4741), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4821), - [anon_sym_DOT_DOT_LT] = ACTIONS(4821), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4743), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4743), - [anon_sym_null] = ACTIONS(2766), - [anon_sym_true] = ACTIONS(2766), - [anon_sym_false] = ACTIONS(2766), - [aux_sym__val_number_decimal_token1] = ACTIONS(4821), - [aux_sym__val_number_decimal_token2] = ACTIONS(2766), - [aux_sym__val_number_decimal_token3] = ACTIONS(2766), - [aux_sym__val_number_decimal_token4] = ACTIONS(2766), - [aux_sym__val_number_token1] = ACTIONS(2766), - [aux_sym__val_number_token2] = ACTIONS(2766), - [aux_sym__val_number_token3] = ACTIONS(2766), - [aux_sym__val_number_token4] = ACTIONS(2766), - [aux_sym__val_number_token5] = ACTIONS(2766), - [aux_sym__val_number_token6] = ACTIONS(2766), - [anon_sym_0b] = ACTIONS(4821), - [anon_sym_0o] = ACTIONS(4821), - [anon_sym_0x] = ACTIONS(4821), - [sym_val_date] = ACTIONS(2766), - [anon_sym_DQUOTE] = ACTIONS(2766), - [sym__str_single_quotes] = ACTIONS(2766), - [sym__str_back_ticks] = ACTIONS(2766), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2766), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2766), - [anon_sym_err_GT] = ACTIONS(4821), - [anon_sym_out_GT] = ACTIONS(4821), - [anon_sym_e_GT] = ACTIONS(4821), - [anon_sym_o_GT] = ACTIONS(4821), - [anon_sym_err_PLUSout_GT] = ACTIONS(4821), - [anon_sym_out_PLUSerr_GT] = ACTIONS(4821), - [anon_sym_o_PLUSe_GT] = ACTIONS(4821), - [anon_sym_e_PLUSo_GT] = ACTIONS(4821), - [anon_sym_err_GT_GT] = ACTIONS(2766), - [anon_sym_out_GT_GT] = ACTIONS(2766), - [anon_sym_e_GT_GT] = ACTIONS(2766), - [anon_sym_o_GT_GT] = ACTIONS(2766), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2766), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2766), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2766), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2766), - [aux_sym_unquoted_token1] = ACTIONS(4821), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2766), + [sym__newline] = ACTIONS(2770), + [anon_sym_SEMI] = ACTIONS(2770), + [anon_sym_PIPE] = ACTIONS(2770), + [anon_sym_err_GT_PIPE] = ACTIONS(2770), + [anon_sym_out_GT_PIPE] = ACTIONS(2770), + [anon_sym_e_GT_PIPE] = ACTIONS(2770), + [anon_sym_o_GT_PIPE] = ACTIONS(2770), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2770), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2770), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2770), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2770), + [anon_sym_LBRACK] = ACTIONS(2770), + [anon_sym_LPAREN] = ACTIONS(2770), + [anon_sym_RPAREN] = ACTIONS(2770), + [anon_sym_DOLLAR] = ACTIONS(4830), + [anon_sym_DASH_DASH] = ACTIONS(2770), + [anon_sym_DASH2] = ACTIONS(4830), + [anon_sym_LBRACE] = ACTIONS(2770), + [anon_sym_DOT_DOT] = ACTIONS(4830), + [anon_sym_DOT_DOT2] = ACTIONS(4750), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4830), + [anon_sym_DOT_DOT_LT] = ACTIONS(4830), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4752), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4752), + [anon_sym_null] = ACTIONS(2770), + [anon_sym_true] = ACTIONS(2770), + [anon_sym_false] = ACTIONS(2770), + [aux_sym__val_number_decimal_token1] = ACTIONS(4830), + [aux_sym__val_number_decimal_token2] = ACTIONS(2770), + [aux_sym__val_number_decimal_token3] = ACTIONS(2770), + [aux_sym__val_number_decimal_token4] = ACTIONS(2770), + [aux_sym__val_number_token1] = ACTIONS(2770), + [aux_sym__val_number_token2] = ACTIONS(2770), + [aux_sym__val_number_token3] = ACTIONS(2770), + [aux_sym__val_number_token4] = ACTIONS(2770), + [aux_sym__val_number_token5] = ACTIONS(2770), + [aux_sym__val_number_token6] = ACTIONS(2770), + [anon_sym_0b] = ACTIONS(4830), + [anon_sym_0o] = ACTIONS(4830), + [anon_sym_0x] = ACTIONS(4830), + [sym_val_date] = ACTIONS(2770), + [anon_sym_DQUOTE] = ACTIONS(2770), + [sym__str_single_quotes] = ACTIONS(2770), + [sym__str_back_ticks] = ACTIONS(2770), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2770), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2770), + [anon_sym_err_GT] = ACTIONS(4830), + [anon_sym_out_GT] = ACTIONS(4830), + [anon_sym_e_GT] = ACTIONS(4830), + [anon_sym_o_GT] = ACTIONS(4830), + [anon_sym_err_PLUSout_GT] = ACTIONS(4830), + [anon_sym_out_PLUSerr_GT] = ACTIONS(4830), + [anon_sym_o_PLUSe_GT] = ACTIONS(4830), + [anon_sym_e_PLUSo_GT] = ACTIONS(4830), + [anon_sym_err_GT_GT] = ACTIONS(2770), + [anon_sym_out_GT_GT] = ACTIONS(2770), + [anon_sym_e_GT_GT] = ACTIONS(2770), + [anon_sym_o_GT_GT] = ACTIONS(2770), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2770), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2770), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2770), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2770), + [aux_sym_unquoted_token1] = ACTIONS(4830), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2770), }, [1566] = { [sym_comment] = STATE(1566), @@ -225226,7 +225226,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT2] = ACTIONS(1725), [anon_sym_DOT_DOT_EQ2] = ACTIONS(1727), [anon_sym_DOT_DOT_LT2] = ACTIONS(1727), - [aux_sym__immediate_decimal_token2] = ACTIONS(4747), + [aux_sym__immediate_decimal_token2] = ACTIONS(4756), [anon_sym_err_GT] = ACTIONS(1725), [anon_sym_out_GT] = ACTIONS(1725), [anon_sym_e_GT] = ACTIONS(1725), @@ -225295,7 +225295,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bit_DASHand2] = ACTIONS(1999), [anon_sym_bit_DASHxor2] = ACTIONS(1999), [anon_sym_bit_DASHor2] = ACTIONS(1999), - [anon_sym_DOT2] = ACTIONS(4807), + [anon_sym_DOT2] = ACTIONS(4816), [anon_sym_err_GT] = ACTIONS(1997), [anon_sym_out_GT] = ACTIONS(1997), [anon_sym_e_GT] = ACTIONS(1997), @@ -225363,7 +225363,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bit_DASHand2] = ACTIONS(2003), [anon_sym_bit_DASHxor2] = ACTIONS(2003), [anon_sym_bit_DASHor2] = ACTIONS(2003), - [anon_sym_DOT2] = ACTIONS(4807), + [anon_sym_DOT2] = ACTIONS(4816), [anon_sym_err_GT] = ACTIONS(2001), [anon_sym_out_GT] = ACTIONS(2001), [anon_sym_e_GT] = ACTIONS(2001), @@ -225431,7 +225431,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bit_DASHand2] = ACTIONS(2007), [anon_sym_bit_DASHxor2] = ACTIONS(2007), [anon_sym_bit_DASHor2] = ACTIONS(2007), - [anon_sym_DOT2] = ACTIONS(4807), + [anon_sym_DOT2] = ACTIONS(4816), [anon_sym_err_GT] = ACTIONS(2005), [anon_sym_out_GT] = ACTIONS(2005), [anon_sym_e_GT] = ACTIONS(2005), @@ -225499,7 +225499,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bit_DASHand2] = ACTIONS(2011), [anon_sym_bit_DASHxor2] = ACTIONS(2011), [anon_sym_bit_DASHor2] = ACTIONS(2011), - [anon_sym_DOT2] = ACTIONS(4807), + [anon_sym_DOT2] = ACTIONS(4816), [anon_sym_err_GT] = ACTIONS(2009), [anon_sym_out_GT] = ACTIONS(2009), [anon_sym_e_GT] = ACTIONS(2009), @@ -225567,7 +225567,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bit_DASHand2] = ACTIONS(2091), [anon_sym_bit_DASHxor2] = ACTIONS(2091), [anon_sym_bit_DASHor2] = ACTIONS(2091), - [anon_sym_DOT2] = ACTIONS(4807), + [anon_sym_DOT2] = ACTIONS(4816), [anon_sym_err_GT] = ACTIONS(2089), [anon_sym_out_GT] = ACTIONS(2089), [anon_sym_e_GT] = ACTIONS(2089), @@ -225675,11 +225675,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH2] = ACTIONS(1004), [anon_sym_LBRACE] = ACTIONS(1000), [anon_sym_DOT_DOT] = ACTIONS(1004), - [anon_sym_DOT_DOT2] = ACTIONS(4809), + [anon_sym_DOT_DOT2] = ACTIONS(4818), [anon_sym_DOT_DOT_EQ] = ACTIONS(1004), [anon_sym_DOT_DOT_LT] = ACTIONS(1004), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4811), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4811), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4820), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4820), [anon_sym_null] = ACTIONS(1000), [anon_sym_true] = ACTIONS(1000), [anon_sym_false] = ACTIONS(1000), @@ -225724,71 +225724,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [1574] = { [sym_comment] = STATE(1574), - [sym__newline] = ACTIONS(4823), - [anon_sym_SEMI] = ACTIONS(4823), - [anon_sym_PIPE] = ACTIONS(4823), - [anon_sym_err_GT_PIPE] = ACTIONS(4823), - [anon_sym_out_GT_PIPE] = ACTIONS(4823), - [anon_sym_e_GT_PIPE] = ACTIONS(4823), - [anon_sym_o_GT_PIPE] = ACTIONS(4823), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4823), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4823), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4823), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4823), - [anon_sym_LBRACK] = ACTIONS(4823), - [anon_sym_LPAREN] = ACTIONS(4823), - [anon_sym_RPAREN] = ACTIONS(4823), - [anon_sym_DOLLAR] = ACTIONS(4825), - [anon_sym_DASH_DASH] = ACTIONS(4823), - [anon_sym_DASH2] = ACTIONS(4825), - [anon_sym_LBRACE] = ACTIONS(4823), - [anon_sym_DOT_DOT] = ACTIONS(4825), - [anon_sym_DOT_DOT2] = ACTIONS(4741), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4825), - [anon_sym_DOT_DOT_LT] = ACTIONS(4825), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4743), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4743), - [anon_sym_null] = ACTIONS(4823), - [anon_sym_true] = ACTIONS(4823), - [anon_sym_false] = ACTIONS(4823), - [aux_sym__val_number_decimal_token1] = ACTIONS(4825), - [aux_sym__val_number_decimal_token2] = ACTIONS(4823), - [aux_sym__val_number_decimal_token3] = ACTIONS(4823), - [aux_sym__val_number_decimal_token4] = ACTIONS(4823), - [aux_sym__val_number_token1] = ACTIONS(4823), - [aux_sym__val_number_token2] = ACTIONS(4823), - [aux_sym__val_number_token3] = ACTIONS(4823), - [aux_sym__val_number_token4] = ACTIONS(4823), - [aux_sym__val_number_token5] = ACTIONS(4823), - [aux_sym__val_number_token6] = ACTIONS(4823), - [anon_sym_0b] = ACTIONS(4825), - [anon_sym_0o] = ACTIONS(4825), - [anon_sym_0x] = ACTIONS(4825), - [sym_val_date] = ACTIONS(4823), - [anon_sym_DQUOTE] = ACTIONS(4823), - [sym__str_single_quotes] = ACTIONS(4823), - [sym__str_back_ticks] = ACTIONS(4823), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4823), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4823), - [anon_sym_err_GT] = ACTIONS(4825), - [anon_sym_out_GT] = ACTIONS(4825), - [anon_sym_e_GT] = ACTIONS(4825), - [anon_sym_o_GT] = ACTIONS(4825), - [anon_sym_err_PLUSout_GT] = ACTIONS(4825), - [anon_sym_out_PLUSerr_GT] = ACTIONS(4825), - [anon_sym_o_PLUSe_GT] = ACTIONS(4825), - [anon_sym_e_PLUSo_GT] = ACTIONS(4825), - [anon_sym_err_GT_GT] = ACTIONS(4823), - [anon_sym_out_GT_GT] = ACTIONS(4823), - [anon_sym_e_GT_GT] = ACTIONS(4823), - [anon_sym_o_GT_GT] = ACTIONS(4823), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4823), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4823), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4823), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4823), - [aux_sym_unquoted_token1] = ACTIONS(4825), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(4823), + [sym__newline] = ACTIONS(4832), + [anon_sym_SEMI] = ACTIONS(4832), + [anon_sym_PIPE] = ACTIONS(4832), + [anon_sym_err_GT_PIPE] = ACTIONS(4832), + [anon_sym_out_GT_PIPE] = ACTIONS(4832), + [anon_sym_e_GT_PIPE] = ACTIONS(4832), + [anon_sym_o_GT_PIPE] = ACTIONS(4832), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4832), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4832), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4832), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4832), + [anon_sym_LBRACK] = ACTIONS(4832), + [anon_sym_LPAREN] = ACTIONS(4832), + [anon_sym_RPAREN] = ACTIONS(4832), + [anon_sym_DOLLAR] = ACTIONS(4834), + [anon_sym_DASH_DASH] = ACTIONS(4832), + [anon_sym_DASH2] = ACTIONS(4834), + [anon_sym_LBRACE] = ACTIONS(4832), + [anon_sym_DOT_DOT] = ACTIONS(4834), + [anon_sym_DOT_DOT2] = ACTIONS(4750), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4834), + [anon_sym_DOT_DOT_LT] = ACTIONS(4834), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4752), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4752), + [anon_sym_null] = ACTIONS(4832), + [anon_sym_true] = ACTIONS(4832), + [anon_sym_false] = ACTIONS(4832), + [aux_sym__val_number_decimal_token1] = ACTIONS(4834), + [aux_sym__val_number_decimal_token2] = ACTIONS(4832), + [aux_sym__val_number_decimal_token3] = ACTIONS(4832), + [aux_sym__val_number_decimal_token4] = ACTIONS(4832), + [aux_sym__val_number_token1] = ACTIONS(4832), + [aux_sym__val_number_token2] = ACTIONS(4832), + [aux_sym__val_number_token3] = ACTIONS(4832), + [aux_sym__val_number_token4] = ACTIONS(4832), + [aux_sym__val_number_token5] = ACTIONS(4832), + [aux_sym__val_number_token6] = ACTIONS(4832), + [anon_sym_0b] = ACTIONS(4834), + [anon_sym_0o] = ACTIONS(4834), + [anon_sym_0x] = ACTIONS(4834), + [sym_val_date] = ACTIONS(4832), + [anon_sym_DQUOTE] = ACTIONS(4832), + [sym__str_single_quotes] = ACTIONS(4832), + [sym__str_back_ticks] = ACTIONS(4832), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4832), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4832), + [anon_sym_err_GT] = ACTIONS(4834), + [anon_sym_out_GT] = ACTIONS(4834), + [anon_sym_e_GT] = ACTIONS(4834), + [anon_sym_o_GT] = ACTIONS(4834), + [anon_sym_err_PLUSout_GT] = ACTIONS(4834), + [anon_sym_out_PLUSerr_GT] = ACTIONS(4834), + [anon_sym_o_PLUSe_GT] = ACTIONS(4834), + [anon_sym_e_PLUSo_GT] = ACTIONS(4834), + [anon_sym_err_GT_GT] = ACTIONS(4832), + [anon_sym_out_GT_GT] = ACTIONS(4832), + [anon_sym_e_GT_GT] = ACTIONS(4832), + [anon_sym_o_GT_GT] = ACTIONS(4832), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4832), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4832), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4832), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4832), + [aux_sym_unquoted_token1] = ACTIONS(4834), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(4832), }, [1575] = { [sym_comment] = STATE(1575), @@ -225974,7 +225974,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT2] = ACTIONS(1765), [anon_sym_DOT_DOT_EQ2] = ACTIONS(1767), [anon_sym_DOT_DOT_LT2] = ACTIONS(1767), - [aux_sym__immediate_decimal_token2] = ACTIONS(4827), + [aux_sym__immediate_decimal_token2] = ACTIONS(4836), [anon_sym_err_GT] = ACTIONS(1765), [anon_sym_out_GT] = ACTIONS(1765), [anon_sym_e_GT] = ACTIONS(1765), @@ -226015,11 +226015,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH2] = ACTIONS(2144), [anon_sym_LBRACE] = ACTIONS(2150), [anon_sym_DOT_DOT] = ACTIONS(2144), - [anon_sym_DOT_DOT2] = ACTIONS(4829), + [anon_sym_DOT_DOT2] = ACTIONS(4838), [anon_sym_DOT_DOT_EQ] = ACTIONS(2144), [anon_sym_DOT_DOT_LT] = ACTIONS(2144), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4831), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4831), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4840), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4840), [anon_sym_null] = ACTIONS(2150), [anon_sym_true] = ACTIONS(2150), [anon_sym_false] = ACTIONS(2150), @@ -226083,11 +226083,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH2] = ACTIONS(2152), [anon_sym_LBRACE] = ACTIONS(2158), [anon_sym_DOT_DOT] = ACTIONS(2152), - [anon_sym_DOT_DOT2] = ACTIONS(4833), + [anon_sym_DOT_DOT2] = ACTIONS(4842), [anon_sym_DOT_DOT_EQ] = ACTIONS(2152), [anon_sym_DOT_DOT_LT] = ACTIONS(2152), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4835), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4835), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4844), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4844), [anon_sym_null] = ACTIONS(2158), [anon_sym_true] = ACTIONS(2158), [anon_sym_false] = ACTIONS(2158), @@ -226133,138 +226133,138 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [1580] = { [sym__expr_parenthesized_immediate] = STATE(7420), [sym_comment] = STATE(1580), - [sym__newline] = ACTIONS(4837), - [anon_sym_SEMI] = ACTIONS(4837), - [anon_sym_PIPE] = ACTIONS(4837), - [anon_sym_err_GT_PIPE] = ACTIONS(4837), - [anon_sym_out_GT_PIPE] = ACTIONS(4837), - [anon_sym_e_GT_PIPE] = ACTIONS(4837), - [anon_sym_o_GT_PIPE] = ACTIONS(4837), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4837), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4837), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4837), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4837), - [anon_sym_LBRACK] = ACTIONS(4837), - [anon_sym_LPAREN] = ACTIONS(4839), - [anon_sym_RPAREN] = ACTIONS(4837), - [anon_sym_DOLLAR] = ACTIONS(4839), - [anon_sym_DASH_DASH] = ACTIONS(4837), - [anon_sym_DASH2] = ACTIONS(4839), - [anon_sym_LBRACE] = ACTIONS(4837), - [anon_sym_RBRACE] = ACTIONS(4837), - [anon_sym_DOT_DOT] = ACTIONS(4839), - [anon_sym_LPAREN2] = ACTIONS(4403), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4837), - [anon_sym_DOT_DOT_LT] = ACTIONS(4837), - [anon_sym_null] = ACTIONS(4837), - [anon_sym_true] = ACTIONS(4837), - [anon_sym_false] = ACTIONS(4837), - [aux_sym__val_number_decimal_token1] = ACTIONS(4839), - [aux_sym__val_number_decimal_token2] = ACTIONS(4837), - [aux_sym__val_number_decimal_token3] = ACTIONS(4837), - [aux_sym__val_number_decimal_token4] = ACTIONS(4837), - [aux_sym__val_number_token1] = ACTIONS(4837), - [aux_sym__val_number_token2] = ACTIONS(4837), - [aux_sym__val_number_token3] = ACTIONS(4837), - [aux_sym__val_number_token4] = ACTIONS(4837), - [aux_sym__val_number_token5] = ACTIONS(4837), - [aux_sym__val_number_token6] = ACTIONS(4837), - [anon_sym_0b] = ACTIONS(4839), - [anon_sym_0o] = ACTIONS(4839), - [anon_sym_0x] = ACTIONS(4839), - [sym_val_date] = ACTIONS(4837), - [anon_sym_DQUOTE] = ACTIONS(4837), - [sym__str_single_quotes] = ACTIONS(4837), - [sym__str_back_ticks] = ACTIONS(4837), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4837), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4837), - [anon_sym_err_GT] = ACTIONS(4839), - [anon_sym_out_GT] = ACTIONS(4839), - [anon_sym_e_GT] = ACTIONS(4839), - [anon_sym_o_GT] = ACTIONS(4839), - [anon_sym_err_PLUSout_GT] = ACTIONS(4839), - [anon_sym_out_PLUSerr_GT] = ACTIONS(4839), - [anon_sym_o_PLUSe_GT] = ACTIONS(4839), - [anon_sym_e_PLUSo_GT] = ACTIONS(4839), - [anon_sym_err_GT_GT] = ACTIONS(4837), - [anon_sym_out_GT_GT] = ACTIONS(4837), - [anon_sym_e_GT_GT] = ACTIONS(4837), - [anon_sym_o_GT_GT] = ACTIONS(4837), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4837), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4837), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4837), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4837), - [aux_sym_unquoted_token1] = ACTIONS(4839), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(4837), + [sym__newline] = ACTIONS(4846), + [anon_sym_SEMI] = ACTIONS(4846), + [anon_sym_PIPE] = ACTIONS(4846), + [anon_sym_err_GT_PIPE] = ACTIONS(4846), + [anon_sym_out_GT_PIPE] = ACTIONS(4846), + [anon_sym_e_GT_PIPE] = ACTIONS(4846), + [anon_sym_o_GT_PIPE] = ACTIONS(4846), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4846), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4846), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4846), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4846), + [anon_sym_LBRACK] = ACTIONS(4846), + [anon_sym_LPAREN] = ACTIONS(4848), + [anon_sym_RPAREN] = ACTIONS(4846), + [anon_sym_DOLLAR] = ACTIONS(4848), + [anon_sym_DASH_DASH] = ACTIONS(4846), + [anon_sym_DASH2] = ACTIONS(4848), + [anon_sym_LBRACE] = ACTIONS(4846), + [anon_sym_RBRACE] = ACTIONS(4846), + [anon_sym_DOT_DOT] = ACTIONS(4848), + [anon_sym_LPAREN2] = ACTIONS(4412), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4846), + [anon_sym_DOT_DOT_LT] = ACTIONS(4846), + [anon_sym_null] = ACTIONS(4846), + [anon_sym_true] = ACTIONS(4846), + [anon_sym_false] = ACTIONS(4846), + [aux_sym__val_number_decimal_token1] = ACTIONS(4848), + [aux_sym__val_number_decimal_token2] = ACTIONS(4846), + [aux_sym__val_number_decimal_token3] = ACTIONS(4846), + [aux_sym__val_number_decimal_token4] = ACTIONS(4846), + [aux_sym__val_number_token1] = ACTIONS(4846), + [aux_sym__val_number_token2] = ACTIONS(4846), + [aux_sym__val_number_token3] = ACTIONS(4846), + [aux_sym__val_number_token4] = ACTIONS(4846), + [aux_sym__val_number_token5] = ACTIONS(4846), + [aux_sym__val_number_token6] = ACTIONS(4846), + [anon_sym_0b] = ACTIONS(4848), + [anon_sym_0o] = ACTIONS(4848), + [anon_sym_0x] = ACTIONS(4848), + [sym_val_date] = ACTIONS(4846), + [anon_sym_DQUOTE] = ACTIONS(4846), + [sym__str_single_quotes] = ACTIONS(4846), + [sym__str_back_ticks] = ACTIONS(4846), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4846), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4846), + [anon_sym_err_GT] = ACTIONS(4848), + [anon_sym_out_GT] = ACTIONS(4848), + [anon_sym_e_GT] = ACTIONS(4848), + [anon_sym_o_GT] = ACTIONS(4848), + [anon_sym_err_PLUSout_GT] = ACTIONS(4848), + [anon_sym_out_PLUSerr_GT] = ACTIONS(4848), + [anon_sym_o_PLUSe_GT] = ACTIONS(4848), + [anon_sym_e_PLUSo_GT] = ACTIONS(4848), + [anon_sym_err_GT_GT] = ACTIONS(4846), + [anon_sym_out_GT_GT] = ACTIONS(4846), + [anon_sym_e_GT_GT] = ACTIONS(4846), + [anon_sym_o_GT_GT] = ACTIONS(4846), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4846), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4846), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4846), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4846), + [aux_sym_unquoted_token1] = ACTIONS(4848), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(4846), }, [1581] = { [sym__expr_parenthesized_immediate] = STATE(7420), [sym_comment] = STATE(1581), - [sym__newline] = ACTIONS(4841), - [anon_sym_SEMI] = ACTIONS(4841), - [anon_sym_PIPE] = ACTIONS(4841), - [anon_sym_err_GT_PIPE] = ACTIONS(4841), - [anon_sym_out_GT_PIPE] = ACTIONS(4841), - [anon_sym_e_GT_PIPE] = ACTIONS(4841), - [anon_sym_o_GT_PIPE] = ACTIONS(4841), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4841), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4841), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4841), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4841), - [anon_sym_LBRACK] = ACTIONS(4841), - [anon_sym_LPAREN] = ACTIONS(4843), - [anon_sym_RPAREN] = ACTIONS(4841), - [anon_sym_DOLLAR] = ACTIONS(4843), - [anon_sym_DASH_DASH] = ACTIONS(4841), - [anon_sym_DASH2] = ACTIONS(4843), - [anon_sym_LBRACE] = ACTIONS(4841), - [anon_sym_RBRACE] = ACTIONS(4841), - [anon_sym_DOT_DOT] = ACTIONS(4843), - [anon_sym_LPAREN2] = ACTIONS(4403), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4841), - [anon_sym_DOT_DOT_LT] = ACTIONS(4841), - [anon_sym_null] = ACTIONS(4841), - [anon_sym_true] = ACTIONS(4841), - [anon_sym_false] = ACTIONS(4841), - [aux_sym__val_number_decimal_token1] = ACTIONS(4843), - [aux_sym__val_number_decimal_token2] = ACTIONS(4841), - [aux_sym__val_number_decimal_token3] = ACTIONS(4841), - [aux_sym__val_number_decimal_token4] = ACTIONS(4841), - [aux_sym__val_number_token1] = ACTIONS(4841), - [aux_sym__val_number_token2] = ACTIONS(4841), - [aux_sym__val_number_token3] = ACTIONS(4841), - [aux_sym__val_number_token4] = ACTIONS(4841), - [aux_sym__val_number_token5] = ACTIONS(4841), - [aux_sym__val_number_token6] = ACTIONS(4841), - [anon_sym_0b] = ACTIONS(4843), - [anon_sym_0o] = ACTIONS(4843), - [anon_sym_0x] = ACTIONS(4843), - [sym_val_date] = ACTIONS(4841), - [anon_sym_DQUOTE] = ACTIONS(4841), - [sym__str_single_quotes] = ACTIONS(4841), - [sym__str_back_ticks] = ACTIONS(4841), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4841), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4841), - [anon_sym_err_GT] = ACTIONS(4843), - [anon_sym_out_GT] = ACTIONS(4843), - [anon_sym_e_GT] = ACTIONS(4843), - [anon_sym_o_GT] = ACTIONS(4843), - [anon_sym_err_PLUSout_GT] = ACTIONS(4843), - [anon_sym_out_PLUSerr_GT] = ACTIONS(4843), - [anon_sym_o_PLUSe_GT] = ACTIONS(4843), - [anon_sym_e_PLUSo_GT] = ACTIONS(4843), - [anon_sym_err_GT_GT] = ACTIONS(4841), - [anon_sym_out_GT_GT] = ACTIONS(4841), - [anon_sym_e_GT_GT] = ACTIONS(4841), - [anon_sym_o_GT_GT] = ACTIONS(4841), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4841), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4841), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4841), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4841), - [aux_sym_unquoted_token1] = ACTIONS(4843), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(4841), + [sym__newline] = ACTIONS(4850), + [anon_sym_SEMI] = ACTIONS(4850), + [anon_sym_PIPE] = ACTIONS(4850), + [anon_sym_err_GT_PIPE] = ACTIONS(4850), + [anon_sym_out_GT_PIPE] = ACTIONS(4850), + [anon_sym_e_GT_PIPE] = ACTIONS(4850), + [anon_sym_o_GT_PIPE] = ACTIONS(4850), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4850), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4850), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4850), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4850), + [anon_sym_LBRACK] = ACTIONS(4850), + [anon_sym_LPAREN] = ACTIONS(4852), + [anon_sym_RPAREN] = ACTIONS(4850), + [anon_sym_DOLLAR] = ACTIONS(4852), + [anon_sym_DASH_DASH] = ACTIONS(4850), + [anon_sym_DASH2] = ACTIONS(4852), + [anon_sym_LBRACE] = ACTIONS(4850), + [anon_sym_RBRACE] = ACTIONS(4850), + [anon_sym_DOT_DOT] = ACTIONS(4852), + [anon_sym_LPAREN2] = ACTIONS(4412), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4850), + [anon_sym_DOT_DOT_LT] = ACTIONS(4850), + [anon_sym_null] = ACTIONS(4850), + [anon_sym_true] = ACTIONS(4850), + [anon_sym_false] = ACTIONS(4850), + [aux_sym__val_number_decimal_token1] = ACTIONS(4852), + [aux_sym__val_number_decimal_token2] = ACTIONS(4850), + [aux_sym__val_number_decimal_token3] = ACTIONS(4850), + [aux_sym__val_number_decimal_token4] = ACTIONS(4850), + [aux_sym__val_number_token1] = ACTIONS(4850), + [aux_sym__val_number_token2] = ACTIONS(4850), + [aux_sym__val_number_token3] = ACTIONS(4850), + [aux_sym__val_number_token4] = ACTIONS(4850), + [aux_sym__val_number_token5] = ACTIONS(4850), + [aux_sym__val_number_token6] = ACTIONS(4850), + [anon_sym_0b] = ACTIONS(4852), + [anon_sym_0o] = ACTIONS(4852), + [anon_sym_0x] = ACTIONS(4852), + [sym_val_date] = ACTIONS(4850), + [anon_sym_DQUOTE] = ACTIONS(4850), + [sym__str_single_quotes] = ACTIONS(4850), + [sym__str_back_ticks] = ACTIONS(4850), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4850), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4850), + [anon_sym_err_GT] = ACTIONS(4852), + [anon_sym_out_GT] = ACTIONS(4852), + [anon_sym_e_GT] = ACTIONS(4852), + [anon_sym_o_GT] = ACTIONS(4852), + [anon_sym_err_PLUSout_GT] = ACTIONS(4852), + [anon_sym_out_PLUSerr_GT] = ACTIONS(4852), + [anon_sym_o_PLUSe_GT] = ACTIONS(4852), + [anon_sym_e_PLUSo_GT] = ACTIONS(4852), + [anon_sym_err_GT_GT] = ACTIONS(4850), + [anon_sym_out_GT_GT] = ACTIONS(4850), + [anon_sym_e_GT_GT] = ACTIONS(4850), + [anon_sym_o_GT_GT] = ACTIONS(4850), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4850), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4850), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4850), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4850), + [aux_sym_unquoted_token1] = ACTIONS(4852), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(4850), }, [1582] = { [sym_comment] = STATE(1582), @@ -226287,11 +226287,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH2] = ACTIONS(2160), [anon_sym_LBRACE] = ACTIONS(2166), [anon_sym_DOT_DOT] = ACTIONS(2160), - [anon_sym_DOT_DOT2] = ACTIONS(4845), + [anon_sym_DOT_DOT2] = ACTIONS(4854), [anon_sym_DOT_DOT_EQ] = ACTIONS(2160), [anon_sym_DOT_DOT_LT] = ACTIONS(2160), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4847), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4847), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4856), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4856), [anon_sym_null] = ACTIONS(2166), [anon_sym_true] = ACTIONS(2166), [anon_sym_false] = ACTIONS(2166), @@ -226337,138 +226337,138 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [1583] = { [sym__expr_parenthesized_immediate] = STATE(7420), [sym_comment] = STATE(1583), - [sym__newline] = ACTIONS(4849), - [anon_sym_SEMI] = ACTIONS(4849), - [anon_sym_PIPE] = ACTIONS(4849), - [anon_sym_err_GT_PIPE] = ACTIONS(4849), - [anon_sym_out_GT_PIPE] = ACTIONS(4849), - [anon_sym_e_GT_PIPE] = ACTIONS(4849), - [anon_sym_o_GT_PIPE] = ACTIONS(4849), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4849), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4849), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4849), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4849), - [anon_sym_LBRACK] = ACTIONS(4849), - [anon_sym_LPAREN] = ACTIONS(4851), - [anon_sym_RPAREN] = ACTIONS(4849), - [anon_sym_DOLLAR] = ACTIONS(4851), - [anon_sym_DASH_DASH] = ACTIONS(4849), - [anon_sym_DASH2] = ACTIONS(4851), - [anon_sym_LBRACE] = ACTIONS(4849), - [anon_sym_RBRACE] = ACTIONS(4849), - [anon_sym_DOT_DOT] = ACTIONS(4851), - [anon_sym_LPAREN2] = ACTIONS(4403), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4849), - [anon_sym_DOT_DOT_LT] = ACTIONS(4849), - [anon_sym_null] = ACTIONS(4849), - [anon_sym_true] = ACTIONS(4849), - [anon_sym_false] = ACTIONS(4849), - [aux_sym__val_number_decimal_token1] = ACTIONS(4851), - [aux_sym__val_number_decimal_token2] = ACTIONS(4849), - [aux_sym__val_number_decimal_token3] = ACTIONS(4849), - [aux_sym__val_number_decimal_token4] = ACTIONS(4849), - [aux_sym__val_number_token1] = ACTIONS(4849), - [aux_sym__val_number_token2] = ACTIONS(4849), - [aux_sym__val_number_token3] = ACTIONS(4849), - [aux_sym__val_number_token4] = ACTIONS(4849), - [aux_sym__val_number_token5] = ACTIONS(4849), - [aux_sym__val_number_token6] = ACTIONS(4849), - [anon_sym_0b] = ACTIONS(4851), - [anon_sym_0o] = ACTIONS(4851), - [anon_sym_0x] = ACTIONS(4851), - [sym_val_date] = ACTIONS(4849), - [anon_sym_DQUOTE] = ACTIONS(4849), - [sym__str_single_quotes] = ACTIONS(4849), - [sym__str_back_ticks] = ACTIONS(4849), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4849), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4849), - [anon_sym_err_GT] = ACTIONS(4851), - [anon_sym_out_GT] = ACTIONS(4851), - [anon_sym_e_GT] = ACTIONS(4851), - [anon_sym_o_GT] = ACTIONS(4851), - [anon_sym_err_PLUSout_GT] = ACTIONS(4851), - [anon_sym_out_PLUSerr_GT] = ACTIONS(4851), - [anon_sym_o_PLUSe_GT] = ACTIONS(4851), - [anon_sym_e_PLUSo_GT] = ACTIONS(4851), - [anon_sym_err_GT_GT] = ACTIONS(4849), - [anon_sym_out_GT_GT] = ACTIONS(4849), - [anon_sym_e_GT_GT] = ACTIONS(4849), - [anon_sym_o_GT_GT] = ACTIONS(4849), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4849), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4849), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4849), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4849), - [aux_sym_unquoted_token1] = ACTIONS(4851), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(4849), + [sym__newline] = ACTIONS(4858), + [anon_sym_SEMI] = ACTIONS(4858), + [anon_sym_PIPE] = ACTIONS(4858), + [anon_sym_err_GT_PIPE] = ACTIONS(4858), + [anon_sym_out_GT_PIPE] = ACTIONS(4858), + [anon_sym_e_GT_PIPE] = ACTIONS(4858), + [anon_sym_o_GT_PIPE] = ACTIONS(4858), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4858), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4858), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4858), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4858), + [anon_sym_LBRACK] = ACTIONS(4858), + [anon_sym_LPAREN] = ACTIONS(4860), + [anon_sym_RPAREN] = ACTIONS(4858), + [anon_sym_DOLLAR] = ACTIONS(4860), + [anon_sym_DASH_DASH] = ACTIONS(4858), + [anon_sym_DASH2] = ACTIONS(4860), + [anon_sym_LBRACE] = ACTIONS(4858), + [anon_sym_RBRACE] = ACTIONS(4858), + [anon_sym_DOT_DOT] = ACTIONS(4860), + [anon_sym_LPAREN2] = ACTIONS(4412), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4858), + [anon_sym_DOT_DOT_LT] = ACTIONS(4858), + [anon_sym_null] = ACTIONS(4858), + [anon_sym_true] = ACTIONS(4858), + [anon_sym_false] = ACTIONS(4858), + [aux_sym__val_number_decimal_token1] = ACTIONS(4860), + [aux_sym__val_number_decimal_token2] = ACTIONS(4858), + [aux_sym__val_number_decimal_token3] = ACTIONS(4858), + [aux_sym__val_number_decimal_token4] = ACTIONS(4858), + [aux_sym__val_number_token1] = ACTIONS(4858), + [aux_sym__val_number_token2] = ACTIONS(4858), + [aux_sym__val_number_token3] = ACTIONS(4858), + [aux_sym__val_number_token4] = ACTIONS(4858), + [aux_sym__val_number_token5] = ACTIONS(4858), + [aux_sym__val_number_token6] = ACTIONS(4858), + [anon_sym_0b] = ACTIONS(4860), + [anon_sym_0o] = ACTIONS(4860), + [anon_sym_0x] = ACTIONS(4860), + [sym_val_date] = ACTIONS(4858), + [anon_sym_DQUOTE] = ACTIONS(4858), + [sym__str_single_quotes] = ACTIONS(4858), + [sym__str_back_ticks] = ACTIONS(4858), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4858), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4858), + [anon_sym_err_GT] = ACTIONS(4860), + [anon_sym_out_GT] = ACTIONS(4860), + [anon_sym_e_GT] = ACTIONS(4860), + [anon_sym_o_GT] = ACTIONS(4860), + [anon_sym_err_PLUSout_GT] = ACTIONS(4860), + [anon_sym_out_PLUSerr_GT] = ACTIONS(4860), + [anon_sym_o_PLUSe_GT] = ACTIONS(4860), + [anon_sym_e_PLUSo_GT] = ACTIONS(4860), + [anon_sym_err_GT_GT] = ACTIONS(4858), + [anon_sym_out_GT_GT] = ACTIONS(4858), + [anon_sym_e_GT_GT] = ACTIONS(4858), + [anon_sym_o_GT_GT] = ACTIONS(4858), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4858), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4858), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4858), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4858), + [aux_sym_unquoted_token1] = ACTIONS(4860), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(4858), }, [1584] = { [sym__expr_parenthesized_immediate] = STATE(7420), [sym_comment] = STATE(1584), - [sym__newline] = ACTIONS(4853), - [anon_sym_SEMI] = ACTIONS(4853), - [anon_sym_PIPE] = ACTIONS(4853), - [anon_sym_err_GT_PIPE] = ACTIONS(4853), - [anon_sym_out_GT_PIPE] = ACTIONS(4853), - [anon_sym_e_GT_PIPE] = ACTIONS(4853), - [anon_sym_o_GT_PIPE] = ACTIONS(4853), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4853), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4853), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4853), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4853), - [anon_sym_LBRACK] = ACTIONS(4853), - [anon_sym_LPAREN] = ACTIONS(4855), - [anon_sym_RPAREN] = ACTIONS(4853), - [anon_sym_DOLLAR] = ACTIONS(4855), - [anon_sym_DASH_DASH] = ACTIONS(4853), - [anon_sym_DASH2] = ACTIONS(4855), - [anon_sym_LBRACE] = ACTIONS(4853), - [anon_sym_RBRACE] = ACTIONS(4853), - [anon_sym_DOT_DOT] = ACTIONS(4855), - [anon_sym_LPAREN2] = ACTIONS(4403), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4853), - [anon_sym_DOT_DOT_LT] = ACTIONS(4853), - [anon_sym_null] = ACTIONS(4853), - [anon_sym_true] = ACTIONS(4853), - [anon_sym_false] = ACTIONS(4853), - [aux_sym__val_number_decimal_token1] = ACTIONS(4855), - [aux_sym__val_number_decimal_token2] = ACTIONS(4853), - [aux_sym__val_number_decimal_token3] = ACTIONS(4853), - [aux_sym__val_number_decimal_token4] = ACTIONS(4853), - [aux_sym__val_number_token1] = ACTIONS(4853), - [aux_sym__val_number_token2] = ACTIONS(4853), - [aux_sym__val_number_token3] = ACTIONS(4853), - [aux_sym__val_number_token4] = ACTIONS(4853), - [aux_sym__val_number_token5] = ACTIONS(4853), - [aux_sym__val_number_token6] = ACTIONS(4853), - [anon_sym_0b] = ACTIONS(4855), - [anon_sym_0o] = ACTIONS(4855), - [anon_sym_0x] = ACTIONS(4855), - [sym_val_date] = ACTIONS(4853), - [anon_sym_DQUOTE] = ACTIONS(4853), - [sym__str_single_quotes] = ACTIONS(4853), - [sym__str_back_ticks] = ACTIONS(4853), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4853), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4853), - [anon_sym_err_GT] = ACTIONS(4855), - [anon_sym_out_GT] = ACTIONS(4855), - [anon_sym_e_GT] = ACTIONS(4855), - [anon_sym_o_GT] = ACTIONS(4855), - [anon_sym_err_PLUSout_GT] = ACTIONS(4855), - [anon_sym_out_PLUSerr_GT] = ACTIONS(4855), - [anon_sym_o_PLUSe_GT] = ACTIONS(4855), - [anon_sym_e_PLUSo_GT] = ACTIONS(4855), - [anon_sym_err_GT_GT] = ACTIONS(4853), - [anon_sym_out_GT_GT] = ACTIONS(4853), - [anon_sym_e_GT_GT] = ACTIONS(4853), - [anon_sym_o_GT_GT] = ACTIONS(4853), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4853), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4853), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4853), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4853), - [aux_sym_unquoted_token1] = ACTIONS(4855), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(4853), + [sym__newline] = ACTIONS(4862), + [anon_sym_SEMI] = ACTIONS(4862), + [anon_sym_PIPE] = ACTIONS(4862), + [anon_sym_err_GT_PIPE] = ACTIONS(4862), + [anon_sym_out_GT_PIPE] = ACTIONS(4862), + [anon_sym_e_GT_PIPE] = ACTIONS(4862), + [anon_sym_o_GT_PIPE] = ACTIONS(4862), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4862), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4862), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4862), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4862), + [anon_sym_LBRACK] = ACTIONS(4862), + [anon_sym_LPAREN] = ACTIONS(4864), + [anon_sym_RPAREN] = ACTIONS(4862), + [anon_sym_DOLLAR] = ACTIONS(4864), + [anon_sym_DASH_DASH] = ACTIONS(4862), + [anon_sym_DASH2] = ACTIONS(4864), + [anon_sym_LBRACE] = ACTIONS(4862), + [anon_sym_RBRACE] = ACTIONS(4862), + [anon_sym_DOT_DOT] = ACTIONS(4864), + [anon_sym_LPAREN2] = ACTIONS(4412), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4862), + [anon_sym_DOT_DOT_LT] = ACTIONS(4862), + [anon_sym_null] = ACTIONS(4862), + [anon_sym_true] = ACTIONS(4862), + [anon_sym_false] = ACTIONS(4862), + [aux_sym__val_number_decimal_token1] = ACTIONS(4864), + [aux_sym__val_number_decimal_token2] = ACTIONS(4862), + [aux_sym__val_number_decimal_token3] = ACTIONS(4862), + [aux_sym__val_number_decimal_token4] = ACTIONS(4862), + [aux_sym__val_number_token1] = ACTIONS(4862), + [aux_sym__val_number_token2] = ACTIONS(4862), + [aux_sym__val_number_token3] = ACTIONS(4862), + [aux_sym__val_number_token4] = ACTIONS(4862), + [aux_sym__val_number_token5] = ACTIONS(4862), + [aux_sym__val_number_token6] = ACTIONS(4862), + [anon_sym_0b] = ACTIONS(4864), + [anon_sym_0o] = ACTIONS(4864), + [anon_sym_0x] = ACTIONS(4864), + [sym_val_date] = ACTIONS(4862), + [anon_sym_DQUOTE] = ACTIONS(4862), + [sym__str_single_quotes] = ACTIONS(4862), + [sym__str_back_ticks] = ACTIONS(4862), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4862), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4862), + [anon_sym_err_GT] = ACTIONS(4864), + [anon_sym_out_GT] = ACTIONS(4864), + [anon_sym_e_GT] = ACTIONS(4864), + [anon_sym_o_GT] = ACTIONS(4864), + [anon_sym_err_PLUSout_GT] = ACTIONS(4864), + [anon_sym_out_PLUSerr_GT] = ACTIONS(4864), + [anon_sym_o_PLUSe_GT] = ACTIONS(4864), + [anon_sym_e_PLUSo_GT] = ACTIONS(4864), + [anon_sym_err_GT_GT] = ACTIONS(4862), + [anon_sym_out_GT_GT] = ACTIONS(4862), + [anon_sym_e_GT_GT] = ACTIONS(4862), + [anon_sym_o_GT_GT] = ACTIONS(4862), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4862), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4862), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4862), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4862), + [aux_sym_unquoted_token1] = ACTIONS(4864), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(4862), }, [1585] = { [sym_comment] = STATE(1585), @@ -226587,7 +226587,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bit_DASHand2] = ACTIONS(1979), [anon_sym_bit_DASHxor2] = ACTIONS(1979), [anon_sym_bit_DASHor2] = ACTIONS(1979), - [anon_sym_DOT2] = ACTIONS(4807), + [anon_sym_DOT2] = ACTIONS(4816), [anon_sym_err_GT] = ACTIONS(1977), [anon_sym_out_GT] = ACTIONS(1977), [anon_sym_e_GT] = ACTIONS(1977), @@ -226655,7 +226655,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bit_DASHand2] = ACTIONS(1983), [anon_sym_bit_DASHxor2] = ACTIONS(1983), [anon_sym_bit_DASHor2] = ACTIONS(1983), - [anon_sym_DOT2] = ACTIONS(4807), + [anon_sym_DOT2] = ACTIONS(4816), [anon_sym_err_GT] = ACTIONS(1981), [anon_sym_out_GT] = ACTIONS(1981), [anon_sym_e_GT] = ACTIONS(1981), @@ -226812,12 +226812,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [1590] = { [sym_comment] = STATE(1590), - [anon_sym_EQ] = ACTIONS(4857), - [anon_sym_PLUS_EQ] = ACTIONS(4859), - [anon_sym_DASH_EQ] = ACTIONS(4859), - [anon_sym_STAR_EQ] = ACTIONS(4859), - [anon_sym_SLASH_EQ] = ACTIONS(4859), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(4859), + [anon_sym_EQ] = ACTIONS(4866), + [anon_sym_PLUS_EQ] = ACTIONS(4868), + [anon_sym_DASH_EQ] = ACTIONS(4868), + [anon_sym_STAR_EQ] = ACTIONS(4868), + [anon_sym_SLASH_EQ] = ACTIONS(4868), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(4868), [sym__newline] = ACTIONS(1000), [anon_sym_SEMI] = ACTIONS(1000), [anon_sym_PIPE] = ACTIONS(1000), @@ -227063,7 +227063,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bit_DASHand2] = ACTIONS(1991), [anon_sym_bit_DASHxor2] = ACTIONS(1991), [anon_sym_bit_DASHor2] = ACTIONS(1991), - [anon_sym_DOT2] = ACTIONS(4807), + [anon_sym_DOT2] = ACTIONS(4816), [anon_sym_err_GT] = ACTIONS(1989), [anon_sym_out_GT] = ACTIONS(1989), [anon_sym_e_GT] = ACTIONS(1989), @@ -227172,7 +227172,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(960), [anon_sym_RBRACE] = ACTIONS(960), [anon_sym_DOT_DOT] = ACTIONS(958), - [anon_sym_QMARK2] = ACTIONS(4861), + [anon_sym_QMARK2] = ACTIONS(4870), [anon_sym_DOT_DOT_EQ] = ACTIONS(960), [anon_sym_DOT_DOT_LT] = ACTIONS(960), [anon_sym_null] = ACTIONS(960), @@ -227580,7 +227580,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(954), [anon_sym_RBRACE] = ACTIONS(954), [anon_sym_DOT_DOT] = ACTIONS(952), - [anon_sym_QMARK2] = ACTIONS(4863), + [anon_sym_QMARK2] = ACTIONS(4872), [anon_sym_DOT_DOT_EQ] = ACTIONS(954), [anon_sym_DOT_DOT_LT] = ACTIONS(954), [anon_sym_null] = ACTIONS(954), @@ -227628,12 +227628,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [1602] = { [sym_comment] = STATE(1602), - [anon_sym_EQ] = ACTIONS(4865), - [anon_sym_PLUS_EQ] = ACTIONS(4867), - [anon_sym_DASH_EQ] = ACTIONS(4867), - [anon_sym_STAR_EQ] = ACTIONS(4867), - [anon_sym_SLASH_EQ] = ACTIONS(4867), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(4867), + [anon_sym_EQ] = ACTIONS(4874), + [anon_sym_PLUS_EQ] = ACTIONS(4876), + [anon_sym_DASH_EQ] = ACTIONS(4876), + [anon_sym_STAR_EQ] = ACTIONS(4876), + [anon_sym_SLASH_EQ] = ACTIONS(4876), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(4876), [sym__newline] = ACTIONS(1000), [anon_sym_SEMI] = ACTIONS(1000), [anon_sym_PIPE] = ACTIONS(1000), @@ -228080,7 +228080,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT2] = ACTIONS(1587), [anon_sym_DOT_DOT_EQ2] = ACTIONS(1589), [anon_sym_DOT_DOT_LT2] = ACTIONS(1589), - [aux_sym__immediate_decimal_token2] = ACTIONS(4777), + [aux_sym__immediate_decimal_token2] = ACTIONS(4786), [sym_filesize_unit] = ACTIONS(1587), [sym_duration_unit] = ACTIONS(1589), [anon_sym_err_GT] = ACTIONS(1587), @@ -228104,71 +228104,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [1609] = { [sym_comment] = STATE(1609), - [sym__newline] = ACTIONS(4869), - [anon_sym_SEMI] = ACTIONS(4869), - [anon_sym_PIPE] = ACTIONS(4869), - [anon_sym_err_GT_PIPE] = ACTIONS(4869), - [anon_sym_out_GT_PIPE] = ACTIONS(4869), - [anon_sym_e_GT_PIPE] = ACTIONS(4869), - [anon_sym_o_GT_PIPE] = ACTIONS(4869), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4869), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4869), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4869), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4869), - [anon_sym_LBRACK] = ACTIONS(4869), - [anon_sym_LPAREN] = ACTIONS(4869), - [anon_sym_RPAREN] = ACTIONS(4869), - [anon_sym_DOLLAR] = ACTIONS(4871), - [anon_sym_DASH_DASH] = ACTIONS(4871), - [anon_sym_DASH2] = ACTIONS(4871), - [anon_sym_LBRACE] = ACTIONS(4869), - [anon_sym_RBRACE] = ACTIONS(4869), - [anon_sym_DOT_DOT] = ACTIONS(4871), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4869), - [anon_sym_DOT_DOT_LT] = ACTIONS(4869), - [anon_sym_null] = ACTIONS(4871), - [anon_sym_true] = ACTIONS(4871), - [anon_sym_false] = ACTIONS(4871), - [aux_sym__val_number_decimal_token1] = ACTIONS(4871), - [aux_sym__val_number_decimal_token2] = ACTIONS(4871), - [aux_sym__val_number_decimal_token3] = ACTIONS(4869), - [aux_sym__val_number_decimal_token4] = ACTIONS(4869), - [aux_sym__val_number_token1] = ACTIONS(4871), - [aux_sym__val_number_token2] = ACTIONS(4871), - [aux_sym__val_number_token3] = ACTIONS(4871), - [aux_sym__val_number_token4] = ACTIONS(4871), - [aux_sym__val_number_token5] = ACTIONS(4871), - [aux_sym__val_number_token6] = ACTIONS(4871), - [anon_sym_0b] = ACTIONS(4871), - [anon_sym_0o] = ACTIONS(4871), - [anon_sym_0x] = ACTIONS(4871), - [sym_val_date] = ACTIONS(4871), - [anon_sym_DQUOTE] = ACTIONS(4869), - [sym__str_single_quotes] = ACTIONS(4869), - [sym__str_back_ticks] = ACTIONS(4869), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4869), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4869), - [anon_sym_err_GT] = ACTIONS(4871), - [anon_sym_out_GT] = ACTIONS(4871), - [anon_sym_e_GT] = ACTIONS(4871), - [anon_sym_o_GT] = ACTIONS(4871), - [anon_sym_err_PLUSout_GT] = ACTIONS(4871), - [anon_sym_out_PLUSerr_GT] = ACTIONS(4871), - [anon_sym_o_PLUSe_GT] = ACTIONS(4871), - [anon_sym_e_PLUSo_GT] = ACTIONS(4871), - [anon_sym_err_GT_GT] = ACTIONS(4869), - [anon_sym_out_GT_GT] = ACTIONS(4869), - [anon_sym_e_GT_GT] = ACTIONS(4869), - [anon_sym_o_GT_GT] = ACTIONS(4869), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4869), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4869), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4869), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4869), - [anon_sym_EQ2] = ACTIONS(4873), - [sym_short_flag_identifier] = ACTIONS(4875), - [aux_sym_unquoted_token1] = ACTIONS(4871), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(4869), + [sym__newline] = ACTIONS(4878), + [anon_sym_SEMI] = ACTIONS(4878), + [anon_sym_PIPE] = ACTIONS(4878), + [anon_sym_err_GT_PIPE] = ACTIONS(4878), + [anon_sym_out_GT_PIPE] = ACTIONS(4878), + [anon_sym_e_GT_PIPE] = ACTIONS(4878), + [anon_sym_o_GT_PIPE] = ACTIONS(4878), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4878), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4878), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4878), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4878), + [anon_sym_LBRACK] = ACTIONS(4878), + [anon_sym_LPAREN] = ACTIONS(4878), + [anon_sym_RPAREN] = ACTIONS(4878), + [anon_sym_DOLLAR] = ACTIONS(4880), + [anon_sym_DASH_DASH] = ACTIONS(4880), + [anon_sym_DASH2] = ACTIONS(4880), + [anon_sym_LBRACE] = ACTIONS(4878), + [anon_sym_RBRACE] = ACTIONS(4878), + [anon_sym_DOT_DOT] = ACTIONS(4880), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4878), + [anon_sym_DOT_DOT_LT] = ACTIONS(4878), + [anon_sym_null] = ACTIONS(4880), + [anon_sym_true] = ACTIONS(4880), + [anon_sym_false] = ACTIONS(4880), + [aux_sym__val_number_decimal_token1] = ACTIONS(4880), + [aux_sym__val_number_decimal_token2] = ACTIONS(4880), + [aux_sym__val_number_decimal_token3] = ACTIONS(4878), + [aux_sym__val_number_decimal_token4] = ACTIONS(4878), + [aux_sym__val_number_token1] = ACTIONS(4880), + [aux_sym__val_number_token2] = ACTIONS(4880), + [aux_sym__val_number_token3] = ACTIONS(4880), + [aux_sym__val_number_token4] = ACTIONS(4880), + [aux_sym__val_number_token5] = ACTIONS(4880), + [aux_sym__val_number_token6] = ACTIONS(4880), + [anon_sym_0b] = ACTIONS(4880), + [anon_sym_0o] = ACTIONS(4880), + [anon_sym_0x] = ACTIONS(4880), + [sym_val_date] = ACTIONS(4880), + [anon_sym_DQUOTE] = ACTIONS(4878), + [sym__str_single_quotes] = ACTIONS(4878), + [sym__str_back_ticks] = ACTIONS(4878), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4878), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4878), + [anon_sym_err_GT] = ACTIONS(4880), + [anon_sym_out_GT] = ACTIONS(4880), + [anon_sym_e_GT] = ACTIONS(4880), + [anon_sym_o_GT] = ACTIONS(4880), + [anon_sym_err_PLUSout_GT] = ACTIONS(4880), + [anon_sym_out_PLUSerr_GT] = ACTIONS(4880), + [anon_sym_o_PLUSe_GT] = ACTIONS(4880), + [anon_sym_e_PLUSo_GT] = ACTIONS(4880), + [anon_sym_err_GT_GT] = ACTIONS(4878), + [anon_sym_out_GT_GT] = ACTIONS(4878), + [anon_sym_e_GT_GT] = ACTIONS(4878), + [anon_sym_o_GT_GT] = ACTIONS(4878), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4878), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4878), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4878), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4878), + [anon_sym_EQ2] = ACTIONS(4882), + [sym_short_flag_identifier] = ACTIONS(4884), + [aux_sym_unquoted_token1] = ACTIONS(4880), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(4878), }, [1610] = { [sym_comment] = STATE(1610), @@ -228194,7 +228194,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN2] = ACTIONS(1727), [anon_sym_DOT_DOT_EQ] = ACTIONS(1727), [anon_sym_DOT_DOT_LT] = ACTIONS(1727), - [aux_sym__immediate_decimal_token2] = ACTIONS(4755), + [aux_sym__immediate_decimal_token2] = ACTIONS(4764), [anon_sym_null] = ACTIONS(1727), [anon_sym_true] = ACTIONS(1727), [anon_sym_false] = ACTIONS(1727), @@ -228240,71 +228240,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [1611] = { [sym_comment] = STATE(1611), - [sym_long_flag_identifier] = ACTIONS(4877), - [sym__newline] = ACTIONS(4879), - [anon_sym_SEMI] = ACTIONS(4879), - [anon_sym_PIPE] = ACTIONS(4879), - [anon_sym_err_GT_PIPE] = ACTIONS(4879), - [anon_sym_out_GT_PIPE] = ACTIONS(4879), - [anon_sym_e_GT_PIPE] = ACTIONS(4879), - [anon_sym_o_GT_PIPE] = ACTIONS(4879), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4879), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4879), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4879), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4879), - [anon_sym_LBRACK] = ACTIONS(4879), - [anon_sym_LPAREN] = ACTIONS(4879), - [anon_sym_RPAREN] = ACTIONS(4879), - [anon_sym_DOLLAR] = ACTIONS(4881), - [anon_sym_DASH_DASH] = ACTIONS(4879), - [anon_sym_DASH2] = ACTIONS(4881), - [anon_sym_LBRACE] = ACTIONS(4879), - [anon_sym_RBRACE] = ACTIONS(4879), - [anon_sym_DOT_DOT] = ACTIONS(4881), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4879), - [anon_sym_DOT_DOT_LT] = ACTIONS(4879), - [anon_sym_null] = ACTIONS(4881), - [anon_sym_true] = ACTIONS(4881), - [anon_sym_false] = ACTIONS(4881), - [aux_sym__val_number_decimal_token1] = ACTIONS(4881), - [aux_sym__val_number_decimal_token2] = ACTIONS(4879), - [aux_sym__val_number_decimal_token3] = ACTIONS(4879), - [aux_sym__val_number_decimal_token4] = ACTIONS(4879), - [aux_sym__val_number_token1] = ACTIONS(4881), - [aux_sym__val_number_token2] = ACTIONS(4881), - [aux_sym__val_number_token3] = ACTIONS(4881), - [aux_sym__val_number_token4] = ACTIONS(4881), - [aux_sym__val_number_token5] = ACTIONS(4879), - [aux_sym__val_number_token6] = ACTIONS(4881), - [anon_sym_0b] = ACTIONS(4881), - [anon_sym_0o] = ACTIONS(4881), - [anon_sym_0x] = ACTIONS(4881), - [sym_val_date] = ACTIONS(4881), - [anon_sym_DQUOTE] = ACTIONS(4879), - [sym__str_single_quotes] = ACTIONS(4879), - [sym__str_back_ticks] = ACTIONS(4879), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4879), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4879), - [anon_sym_err_GT] = ACTIONS(4881), - [anon_sym_out_GT] = ACTIONS(4881), - [anon_sym_e_GT] = ACTIONS(4881), - [anon_sym_o_GT] = ACTIONS(4881), - [anon_sym_err_PLUSout_GT] = ACTIONS(4881), - [anon_sym_out_PLUSerr_GT] = ACTIONS(4881), - [anon_sym_o_PLUSe_GT] = ACTIONS(4881), - [anon_sym_e_PLUSo_GT] = ACTIONS(4881), - [anon_sym_err_GT_GT] = ACTIONS(4879), - [anon_sym_out_GT_GT] = ACTIONS(4879), - [anon_sym_e_GT_GT] = ACTIONS(4879), - [anon_sym_o_GT_GT] = ACTIONS(4879), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4879), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4879), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4879), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4879), - [anon_sym_EQ2] = ACTIONS(4883), - [aux_sym_unquoted_token1] = ACTIONS(4881), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(4879), + [sym_long_flag_identifier] = ACTIONS(4886), + [sym__newline] = ACTIONS(4888), + [anon_sym_SEMI] = ACTIONS(4888), + [anon_sym_PIPE] = ACTIONS(4888), + [anon_sym_err_GT_PIPE] = ACTIONS(4888), + [anon_sym_out_GT_PIPE] = ACTIONS(4888), + [anon_sym_e_GT_PIPE] = ACTIONS(4888), + [anon_sym_o_GT_PIPE] = ACTIONS(4888), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4888), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4888), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4888), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4888), + [anon_sym_LBRACK] = ACTIONS(4888), + [anon_sym_LPAREN] = ACTIONS(4888), + [anon_sym_RPAREN] = ACTIONS(4888), + [anon_sym_DOLLAR] = ACTIONS(4890), + [anon_sym_DASH_DASH] = ACTIONS(4888), + [anon_sym_DASH2] = ACTIONS(4890), + [anon_sym_LBRACE] = ACTIONS(4888), + [anon_sym_RBRACE] = ACTIONS(4888), + [anon_sym_DOT_DOT] = ACTIONS(4890), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4888), + [anon_sym_DOT_DOT_LT] = ACTIONS(4888), + [anon_sym_null] = ACTIONS(4890), + [anon_sym_true] = ACTIONS(4890), + [anon_sym_false] = ACTIONS(4890), + [aux_sym__val_number_decimal_token1] = ACTIONS(4890), + [aux_sym__val_number_decimal_token2] = ACTIONS(4888), + [aux_sym__val_number_decimal_token3] = ACTIONS(4888), + [aux_sym__val_number_decimal_token4] = ACTIONS(4888), + [aux_sym__val_number_token1] = ACTIONS(4890), + [aux_sym__val_number_token2] = ACTIONS(4890), + [aux_sym__val_number_token3] = ACTIONS(4890), + [aux_sym__val_number_token4] = ACTIONS(4890), + [aux_sym__val_number_token5] = ACTIONS(4888), + [aux_sym__val_number_token6] = ACTIONS(4890), + [anon_sym_0b] = ACTIONS(4890), + [anon_sym_0o] = ACTIONS(4890), + [anon_sym_0x] = ACTIONS(4890), + [sym_val_date] = ACTIONS(4890), + [anon_sym_DQUOTE] = ACTIONS(4888), + [sym__str_single_quotes] = ACTIONS(4888), + [sym__str_back_ticks] = ACTIONS(4888), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4888), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4888), + [anon_sym_err_GT] = ACTIONS(4890), + [anon_sym_out_GT] = ACTIONS(4890), + [anon_sym_e_GT] = ACTIONS(4890), + [anon_sym_o_GT] = ACTIONS(4890), + [anon_sym_err_PLUSout_GT] = ACTIONS(4890), + [anon_sym_out_PLUSerr_GT] = ACTIONS(4890), + [anon_sym_o_PLUSe_GT] = ACTIONS(4890), + [anon_sym_e_PLUSo_GT] = ACTIONS(4890), + [anon_sym_err_GT_GT] = ACTIONS(4888), + [anon_sym_out_GT_GT] = ACTIONS(4888), + [anon_sym_e_GT_GT] = ACTIONS(4888), + [anon_sym_o_GT_GT] = ACTIONS(4888), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4888), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4888), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4888), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4888), + [anon_sym_EQ2] = ACTIONS(4892), + [aux_sym_unquoted_token1] = ACTIONS(4890), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(4888), }, [1612] = { [sym_comment] = STATE(1612), @@ -228489,7 +228489,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(950), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(950), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(950), - [anon_sym_DOT2] = ACTIONS(4722), + [anon_sym_DOT2] = ACTIONS(4731), [anon_sym_err_GT] = ACTIONS(948), [anon_sym_out_GT] = ACTIONS(948), [anon_sym_e_GT] = ACTIONS(948), @@ -228624,7 +228624,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT2] = ACTIONS(1667), [anon_sym_DOT_DOT_EQ2] = ACTIONS(1669), [anon_sym_DOT_DOT_LT2] = ACTIONS(1669), - [aux_sym__immediate_decimal_token2] = ACTIONS(4885), + [aux_sym__immediate_decimal_token2] = ACTIONS(4894), [sym_filesize_unit] = ACTIONS(1667), [sym_duration_unit] = ACTIONS(1669), [anon_sym_err_GT] = ACTIONS(1667), @@ -228693,7 +228693,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(943), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(943), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(943), - [anon_sym_DOT2] = ACTIONS(4887), + [anon_sym_DOT2] = ACTIONS(4896), [anon_sym_err_GT] = ACTIONS(941), [anon_sym_out_GT] = ACTIONS(941), [anon_sym_e_GT] = ACTIONS(941), @@ -228763,7 +228763,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bit_DASHand2] = ACTIONS(1951), [anon_sym_bit_DASHxor2] = ACTIONS(1951), [anon_sym_bit_DASHor2] = ACTIONS(1951), - [anon_sym_DOT2] = ACTIONS(4807), + [anon_sym_DOT2] = ACTIONS(4816), [anon_sym_err_GT] = ACTIONS(1949), [anon_sym_out_GT] = ACTIONS(1949), [anon_sym_e_GT] = ACTIONS(1949), @@ -228831,7 +228831,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bit_DASHand2] = ACTIONS(1959), [anon_sym_bit_DASHxor2] = ACTIONS(1959), [anon_sym_bit_DASHor2] = ACTIONS(1959), - [anon_sym_DOT2] = ACTIONS(4807), + [anon_sym_DOT2] = ACTIONS(4816), [anon_sym_err_GT] = ACTIONS(1957), [anon_sym_out_GT] = ACTIONS(1957), [anon_sym_e_GT] = ACTIONS(1957), @@ -228853,70 +228853,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [1620] = { [sym__expr_parenthesized_immediate] = STATE(7221), [sym_comment] = STATE(1620), - [sym__newline] = ACTIONS(4890), - [anon_sym_SEMI] = ACTIONS(4890), - [anon_sym_PIPE] = ACTIONS(4890), - [anon_sym_err_GT_PIPE] = ACTIONS(4890), - [anon_sym_out_GT_PIPE] = ACTIONS(4890), - [anon_sym_e_GT_PIPE] = ACTIONS(4890), - [anon_sym_o_GT_PIPE] = ACTIONS(4890), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4890), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4890), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4890), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4890), - [anon_sym_LBRACK] = ACTIONS(4890), - [anon_sym_LPAREN] = ACTIONS(4892), - [anon_sym_RPAREN] = ACTIONS(4890), - [anon_sym_DOLLAR] = ACTIONS(4892), - [anon_sym_DASH_DASH] = ACTIONS(4890), - [anon_sym_DASH2] = ACTIONS(4892), - [anon_sym_LBRACE] = ACTIONS(4890), - [anon_sym_RBRACE] = ACTIONS(4890), - [anon_sym_DOT_DOT] = ACTIONS(4892), - [anon_sym_LPAREN2] = ACTIONS(4403), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4890), - [anon_sym_DOT_DOT_LT] = ACTIONS(4890), - [anon_sym_null] = ACTIONS(4890), - [anon_sym_true] = ACTIONS(4890), - [anon_sym_false] = ACTIONS(4890), - [aux_sym__val_number_decimal_token1] = ACTIONS(4892), - [aux_sym__val_number_decimal_token2] = ACTIONS(4890), - [aux_sym__val_number_decimal_token3] = ACTIONS(4890), - [aux_sym__val_number_decimal_token4] = ACTIONS(4890), - [aux_sym__val_number_token1] = ACTIONS(4890), - [aux_sym__val_number_token2] = ACTIONS(4890), - [aux_sym__val_number_token3] = ACTIONS(4890), - [aux_sym__val_number_token4] = ACTIONS(4890), - [aux_sym__val_number_token5] = ACTIONS(4890), - [aux_sym__val_number_token6] = ACTIONS(4890), - [anon_sym_0b] = ACTIONS(4892), - [anon_sym_0o] = ACTIONS(4892), - [anon_sym_0x] = ACTIONS(4892), - [sym_val_date] = ACTIONS(4890), - [anon_sym_DQUOTE] = ACTIONS(4890), - [sym__str_single_quotes] = ACTIONS(4890), - [sym__str_back_ticks] = ACTIONS(4890), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4890), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4890), - [anon_sym_err_GT] = ACTIONS(4892), - [anon_sym_out_GT] = ACTIONS(4892), - [anon_sym_e_GT] = ACTIONS(4892), - [anon_sym_o_GT] = ACTIONS(4892), - [anon_sym_err_PLUSout_GT] = ACTIONS(4892), - [anon_sym_out_PLUSerr_GT] = ACTIONS(4892), - [anon_sym_o_PLUSe_GT] = ACTIONS(4892), - [anon_sym_e_PLUSo_GT] = ACTIONS(4892), - [anon_sym_err_GT_GT] = ACTIONS(4890), - [anon_sym_out_GT_GT] = ACTIONS(4890), - [anon_sym_e_GT_GT] = ACTIONS(4890), - [anon_sym_o_GT_GT] = ACTIONS(4890), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4890), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4890), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4890), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4890), - [aux_sym_unquoted_token1] = ACTIONS(4892), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(4890), + [sym__newline] = ACTIONS(4899), + [anon_sym_SEMI] = ACTIONS(4899), + [anon_sym_PIPE] = ACTIONS(4899), + [anon_sym_err_GT_PIPE] = ACTIONS(4899), + [anon_sym_out_GT_PIPE] = ACTIONS(4899), + [anon_sym_e_GT_PIPE] = ACTIONS(4899), + [anon_sym_o_GT_PIPE] = ACTIONS(4899), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4899), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4899), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4899), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4899), + [anon_sym_LBRACK] = ACTIONS(4899), + [anon_sym_LPAREN] = ACTIONS(4901), + [anon_sym_RPAREN] = ACTIONS(4899), + [anon_sym_DOLLAR] = ACTIONS(4901), + [anon_sym_DASH_DASH] = ACTIONS(4899), + [anon_sym_DASH2] = ACTIONS(4901), + [anon_sym_LBRACE] = ACTIONS(4899), + [anon_sym_RBRACE] = ACTIONS(4899), + [anon_sym_DOT_DOT] = ACTIONS(4901), + [anon_sym_LPAREN2] = ACTIONS(4412), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4899), + [anon_sym_DOT_DOT_LT] = ACTIONS(4899), + [anon_sym_null] = ACTIONS(4899), + [anon_sym_true] = ACTIONS(4899), + [anon_sym_false] = ACTIONS(4899), + [aux_sym__val_number_decimal_token1] = ACTIONS(4901), + [aux_sym__val_number_decimal_token2] = ACTIONS(4899), + [aux_sym__val_number_decimal_token3] = ACTIONS(4899), + [aux_sym__val_number_decimal_token4] = ACTIONS(4899), + [aux_sym__val_number_token1] = ACTIONS(4899), + [aux_sym__val_number_token2] = ACTIONS(4899), + [aux_sym__val_number_token3] = ACTIONS(4899), + [aux_sym__val_number_token4] = ACTIONS(4899), + [aux_sym__val_number_token5] = ACTIONS(4899), + [aux_sym__val_number_token6] = ACTIONS(4899), + [anon_sym_0b] = ACTIONS(4901), + [anon_sym_0o] = ACTIONS(4901), + [anon_sym_0x] = ACTIONS(4901), + [sym_val_date] = ACTIONS(4899), + [anon_sym_DQUOTE] = ACTIONS(4899), + [sym__str_single_quotes] = ACTIONS(4899), + [sym__str_back_ticks] = ACTIONS(4899), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4899), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4899), + [anon_sym_err_GT] = ACTIONS(4901), + [anon_sym_out_GT] = ACTIONS(4901), + [anon_sym_e_GT] = ACTIONS(4901), + [anon_sym_o_GT] = ACTIONS(4901), + [anon_sym_err_PLUSout_GT] = ACTIONS(4901), + [anon_sym_out_PLUSerr_GT] = ACTIONS(4901), + [anon_sym_o_PLUSe_GT] = ACTIONS(4901), + [anon_sym_e_PLUSo_GT] = ACTIONS(4901), + [anon_sym_err_GT_GT] = ACTIONS(4899), + [anon_sym_out_GT_GT] = ACTIONS(4899), + [anon_sym_e_GT_GT] = ACTIONS(4899), + [anon_sym_o_GT_GT] = ACTIONS(4899), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4899), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4899), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4899), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4899), + [aux_sym_unquoted_token1] = ACTIONS(4901), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(4899), }, [1621] = { [sym_comment] = STATE(1621), @@ -228942,7 +228942,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN2] = ACTIONS(1767), [anon_sym_DOT_DOT_EQ] = ACTIONS(1767), [anon_sym_DOT_DOT_LT] = ACTIONS(1767), - [aux_sym__immediate_decimal_token2] = ACTIONS(4894), + [aux_sym__immediate_decimal_token2] = ACTIONS(4903), [anon_sym_null] = ACTIONS(1767), [anon_sym_true] = ACTIONS(1767), [anon_sym_false] = ACTIONS(1767), @@ -229018,7 +229018,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ2] = ACTIONS(1693), [anon_sym_EQ_TILDE2] = ACTIONS(1693), [anon_sym_BANG_TILDE2] = ACTIONS(1693), - [anon_sym_LPAREN2] = ACTIONS(4403), + [anon_sym_LPAREN2] = ACTIONS(4412), [anon_sym_STAR_STAR2] = ACTIONS(1693), [anon_sym_PLUS_PLUS2] = ACTIONS(1693), [anon_sym_SLASH2] = ACTIONS(1681), @@ -229030,11 +229030,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bit_DASHand2] = ACTIONS(1693), [anon_sym_bit_DASHxor2] = ACTIONS(1693), [anon_sym_bit_DASHor2] = ACTIONS(1693), - [anon_sym_DOT_DOT2] = ACTIONS(4896), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4898), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4898), - [sym_filesize_unit] = ACTIONS(4900), - [sym_duration_unit] = ACTIONS(4902), + [anon_sym_DOT_DOT2] = ACTIONS(4905), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4907), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4907), + [sym_filesize_unit] = ACTIONS(4909), + [sym_duration_unit] = ACTIONS(4911), [anon_sym_err_GT] = ACTIONS(1681), [anon_sym_out_GT] = ACTIONS(1681), [anon_sym_e_GT] = ACTIONS(1681), @@ -229051,7 +229051,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1693), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1693), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1693), - [aux_sym_unquoted_token2] = ACTIONS(4904), + [aux_sym_unquoted_token2] = ACTIONS(4913), [anon_sym_POUND] = ACTIONS(251), }, [1623] = { @@ -229171,7 +229171,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bit_DASHand2] = ACTIONS(1963), [anon_sym_bit_DASHxor2] = ACTIONS(1963), [anon_sym_bit_DASHor2] = ACTIONS(1963), - [anon_sym_DOT2] = ACTIONS(4807), + [anon_sym_DOT2] = ACTIONS(4816), [anon_sym_err_GT] = ACTIONS(1961), [anon_sym_out_GT] = ACTIONS(1961), [anon_sym_e_GT] = ACTIONS(1961), @@ -229239,7 +229239,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bit_DASHand2] = ACTIONS(1967), [anon_sym_bit_DASHxor2] = ACTIONS(1967), [anon_sym_bit_DASHor2] = ACTIONS(1967), - [anon_sym_DOT2] = ACTIONS(4807), + [anon_sym_DOT2] = ACTIONS(4816), [anon_sym_err_GT] = ACTIONS(1965), [anon_sym_out_GT] = ACTIONS(1965), [anon_sym_e_GT] = ACTIONS(1965), @@ -229307,7 +229307,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bit_DASHand2] = ACTIONS(1987), [anon_sym_bit_DASHxor2] = ACTIONS(1987), [anon_sym_bit_DASHor2] = ACTIONS(1987), - [anon_sym_DOT2] = ACTIONS(4807), + [anon_sym_DOT2] = ACTIONS(4816), [anon_sym_err_GT] = ACTIONS(1985), [anon_sym_out_GT] = ACTIONS(1985), [anon_sym_e_GT] = ACTIONS(1985), @@ -229375,7 +229375,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bit_DASHand2] = ACTIONS(1955), [anon_sym_bit_DASHxor2] = ACTIONS(1955), [anon_sym_bit_DASHor2] = ACTIONS(1955), - [anon_sym_DOT2] = ACTIONS(4807), + [anon_sym_DOT2] = ACTIONS(4816), [anon_sym_err_GT] = ACTIONS(1953), [anon_sym_out_GT] = ACTIONS(1953), [anon_sym_e_GT] = ACTIONS(1953), @@ -229418,8 +229418,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT] = ACTIONS(1757), [anon_sym_DOT_DOT_EQ] = ACTIONS(1759), [anon_sym_DOT_DOT_LT] = ACTIONS(1759), - [aux_sym__immediate_decimal_token1] = ACTIONS(4906), - [aux_sym__immediate_decimal_token2] = ACTIONS(4908), + [aux_sym__immediate_decimal_token1] = ACTIONS(4915), + [aux_sym__immediate_decimal_token2] = ACTIONS(4917), [anon_sym_null] = ACTIONS(1759), [anon_sym_true] = ACTIONS(1759), [anon_sym_false] = ACTIONS(1759), @@ -229578,7 +229578,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bit_DASHand2] = ACTIONS(1935), [anon_sym_bit_DASHxor2] = ACTIONS(1935), [anon_sym_bit_DASHor2] = ACTIONS(1935), - [anon_sym_DOT2] = ACTIONS(4807), + [anon_sym_DOT2] = ACTIONS(4816), [anon_sym_err_GT] = ACTIONS(1933), [anon_sym_out_GT] = ACTIONS(1933), [anon_sym_e_GT] = ACTIONS(1933), @@ -229645,7 +229645,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT2] = ACTIONS(1717), [anon_sym_DOT_DOT_EQ2] = ACTIONS(1719), [anon_sym_DOT_DOT_LT2] = ACTIONS(1719), - [anon_sym_DOT2] = ACTIONS(4910), + [anon_sym_DOT2] = ACTIONS(4919), [anon_sym_err_GT] = ACTIONS(1717), [anon_sym_out_GT] = ACTIONS(1717), [anon_sym_e_GT] = ACTIONS(1717), @@ -230045,8 +230045,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT2] = ACTIONS(1757), [anon_sym_DOT_DOT_EQ2] = ACTIONS(1759), [anon_sym_DOT_DOT_LT2] = ACTIONS(1759), - [aux_sym__immediate_decimal_token1] = ACTIONS(4912), - [aux_sym__immediate_decimal_token2] = ACTIONS(4914), + [aux_sym__immediate_decimal_token1] = ACTIONS(4921), + [aux_sym__immediate_decimal_token2] = ACTIONS(4923), [anon_sym_err_GT] = ACTIONS(1757), [anon_sym_out_GT] = ACTIONS(1757), [anon_sym_e_GT] = ACTIONS(1757), @@ -230202,137 +230202,137 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [1640] = { [sym_comment] = STATE(1640), - [sym__newline] = ACTIONS(4916), - [anon_sym_SEMI] = ACTIONS(4916), - [anon_sym_PIPE] = ACTIONS(4916), - [anon_sym_err_GT_PIPE] = ACTIONS(4916), - [anon_sym_out_GT_PIPE] = ACTIONS(4916), - [anon_sym_e_GT_PIPE] = ACTIONS(4916), - [anon_sym_o_GT_PIPE] = ACTIONS(4916), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4916), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4916), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4916), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4916), - [anon_sym_LBRACK] = ACTIONS(4916), - [anon_sym_LPAREN] = ACTIONS(4916), - [anon_sym_RPAREN] = ACTIONS(4916), - [anon_sym_DOLLAR] = ACTIONS(4918), - [anon_sym_DASH_DASH] = ACTIONS(4916), - [anon_sym_DASH2] = ACTIONS(4918), - [anon_sym_LBRACE] = ACTIONS(4916), - [anon_sym_RBRACE] = ACTIONS(4916), - [anon_sym_DOT_DOT] = ACTIONS(4918), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4916), - [anon_sym_DOT_DOT_LT] = ACTIONS(4916), - [anon_sym_null] = ACTIONS(4916), - [anon_sym_true] = ACTIONS(4916), - [anon_sym_false] = ACTIONS(4916), - [aux_sym__val_number_decimal_token1] = ACTIONS(4918), - [aux_sym__val_number_decimal_token2] = ACTIONS(4916), - [aux_sym__val_number_decimal_token3] = ACTIONS(4916), - [aux_sym__val_number_decimal_token4] = ACTIONS(4916), - [aux_sym__val_number_token1] = ACTIONS(4916), - [aux_sym__val_number_token2] = ACTIONS(4916), - [aux_sym__val_number_token3] = ACTIONS(4916), - [aux_sym__val_number_token4] = ACTIONS(4916), - [aux_sym__val_number_token5] = ACTIONS(4916), - [aux_sym__val_number_token6] = ACTIONS(4916), - [anon_sym_0b] = ACTIONS(4918), - [anon_sym_0o] = ACTIONS(4918), - [anon_sym_0x] = ACTIONS(4918), - [sym_val_date] = ACTIONS(4916), - [anon_sym_DQUOTE] = ACTIONS(4916), - [sym__str_single_quotes] = ACTIONS(4916), - [sym__str_back_ticks] = ACTIONS(4916), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4916), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4916), - [anon_sym_err_GT] = ACTIONS(4918), - [anon_sym_out_GT] = ACTIONS(4918), - [anon_sym_e_GT] = ACTIONS(4918), - [anon_sym_o_GT] = ACTIONS(4918), - [anon_sym_err_PLUSout_GT] = ACTIONS(4918), - [anon_sym_out_PLUSerr_GT] = ACTIONS(4918), - [anon_sym_o_PLUSe_GT] = ACTIONS(4918), - [anon_sym_e_PLUSo_GT] = ACTIONS(4918), - [anon_sym_err_GT_GT] = ACTIONS(4916), - [anon_sym_out_GT_GT] = ACTIONS(4916), - [anon_sym_e_GT_GT] = ACTIONS(4916), - [anon_sym_o_GT_GT] = ACTIONS(4916), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4916), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4916), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4916), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4916), - [anon_sym_EQ2] = ACTIONS(4920), - [aux_sym_unquoted_token1] = ACTIONS(4918), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(4916), + [sym__newline] = ACTIONS(4925), + [anon_sym_SEMI] = ACTIONS(4925), + [anon_sym_PIPE] = ACTIONS(4925), + [anon_sym_err_GT_PIPE] = ACTIONS(4925), + [anon_sym_out_GT_PIPE] = ACTIONS(4925), + [anon_sym_e_GT_PIPE] = ACTIONS(4925), + [anon_sym_o_GT_PIPE] = ACTIONS(4925), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4925), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4925), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4925), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4925), + [anon_sym_LBRACK] = ACTIONS(4925), + [anon_sym_LPAREN] = ACTIONS(4925), + [anon_sym_RPAREN] = ACTIONS(4925), + [anon_sym_DOLLAR] = ACTIONS(4927), + [anon_sym_DASH_DASH] = ACTIONS(4925), + [anon_sym_DASH2] = ACTIONS(4927), + [anon_sym_LBRACE] = ACTIONS(4925), + [anon_sym_RBRACE] = ACTIONS(4925), + [anon_sym_DOT_DOT] = ACTIONS(4927), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4925), + [anon_sym_DOT_DOT_LT] = ACTIONS(4925), + [anon_sym_null] = ACTIONS(4925), + [anon_sym_true] = ACTIONS(4925), + [anon_sym_false] = ACTIONS(4925), + [aux_sym__val_number_decimal_token1] = ACTIONS(4927), + [aux_sym__val_number_decimal_token2] = ACTIONS(4925), + [aux_sym__val_number_decimal_token3] = ACTIONS(4925), + [aux_sym__val_number_decimal_token4] = ACTIONS(4925), + [aux_sym__val_number_token1] = ACTIONS(4925), + [aux_sym__val_number_token2] = ACTIONS(4925), + [aux_sym__val_number_token3] = ACTIONS(4925), + [aux_sym__val_number_token4] = ACTIONS(4925), + [aux_sym__val_number_token5] = ACTIONS(4925), + [aux_sym__val_number_token6] = ACTIONS(4925), + [anon_sym_0b] = ACTIONS(4927), + [anon_sym_0o] = ACTIONS(4927), + [anon_sym_0x] = ACTIONS(4927), + [sym_val_date] = ACTIONS(4925), + [anon_sym_DQUOTE] = ACTIONS(4925), + [sym__str_single_quotes] = ACTIONS(4925), + [sym__str_back_ticks] = ACTIONS(4925), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4925), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4925), + [anon_sym_err_GT] = ACTIONS(4927), + [anon_sym_out_GT] = ACTIONS(4927), + [anon_sym_e_GT] = ACTIONS(4927), + [anon_sym_o_GT] = ACTIONS(4927), + [anon_sym_err_PLUSout_GT] = ACTIONS(4927), + [anon_sym_out_PLUSerr_GT] = ACTIONS(4927), + [anon_sym_o_PLUSe_GT] = ACTIONS(4927), + [anon_sym_e_PLUSo_GT] = ACTIONS(4927), + [anon_sym_err_GT_GT] = ACTIONS(4925), + [anon_sym_out_GT_GT] = ACTIONS(4925), + [anon_sym_e_GT_GT] = ACTIONS(4925), + [anon_sym_o_GT_GT] = ACTIONS(4925), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4925), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4925), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4925), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4925), + [anon_sym_EQ2] = ACTIONS(4929), + [aux_sym_unquoted_token1] = ACTIONS(4927), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(4925), }, [1641] = { [sym_comment] = STATE(1641), - [ts_builtin_sym_end] = ACTIONS(4869), - [sym__newline] = ACTIONS(4869), - [anon_sym_SEMI] = ACTIONS(4869), - [anon_sym_PIPE] = ACTIONS(4869), - [anon_sym_err_GT_PIPE] = ACTIONS(4869), - [anon_sym_out_GT_PIPE] = ACTIONS(4869), - [anon_sym_e_GT_PIPE] = ACTIONS(4869), - [anon_sym_o_GT_PIPE] = ACTIONS(4869), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4869), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4869), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4869), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4869), - [anon_sym_LBRACK] = ACTIONS(4869), - [anon_sym_LPAREN] = ACTIONS(4869), - [anon_sym_DOLLAR] = ACTIONS(4871), - [anon_sym_DASH_DASH] = ACTIONS(4871), - [anon_sym_DASH2] = ACTIONS(4871), - [anon_sym_LBRACE] = ACTIONS(4869), - [anon_sym_DOT_DOT] = ACTIONS(4871), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4869), - [anon_sym_DOT_DOT_LT] = ACTIONS(4869), - [anon_sym_null] = ACTIONS(4871), - [anon_sym_true] = ACTIONS(4871), - [anon_sym_false] = ACTIONS(4871), - [aux_sym__val_number_decimal_token1] = ACTIONS(4871), - [aux_sym__val_number_decimal_token2] = ACTIONS(4871), - [aux_sym__val_number_decimal_token3] = ACTIONS(4869), - [aux_sym__val_number_decimal_token4] = ACTIONS(4869), - [aux_sym__val_number_token1] = ACTIONS(4871), - [aux_sym__val_number_token2] = ACTIONS(4871), - [aux_sym__val_number_token3] = ACTIONS(4871), - [aux_sym__val_number_token4] = ACTIONS(4871), - [aux_sym__val_number_token5] = ACTIONS(4871), - [aux_sym__val_number_token6] = ACTIONS(4871), - [anon_sym_0b] = ACTIONS(4871), - [anon_sym_0o] = ACTIONS(4871), - [anon_sym_0x] = ACTIONS(4871), - [sym_val_date] = ACTIONS(4871), - [anon_sym_DQUOTE] = ACTIONS(4869), - [sym__str_single_quotes] = ACTIONS(4869), - [sym__str_back_ticks] = ACTIONS(4869), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4869), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4869), - [anon_sym_err_GT] = ACTIONS(4871), - [anon_sym_out_GT] = ACTIONS(4871), - [anon_sym_e_GT] = ACTIONS(4871), - [anon_sym_o_GT] = ACTIONS(4871), - [anon_sym_err_PLUSout_GT] = ACTIONS(4871), - [anon_sym_out_PLUSerr_GT] = ACTIONS(4871), - [anon_sym_o_PLUSe_GT] = ACTIONS(4871), - [anon_sym_e_PLUSo_GT] = ACTIONS(4871), - [anon_sym_err_GT_GT] = ACTIONS(4869), - [anon_sym_out_GT_GT] = ACTIONS(4869), - [anon_sym_e_GT_GT] = ACTIONS(4869), - [anon_sym_o_GT_GT] = ACTIONS(4869), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4869), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4869), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4869), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4869), - [anon_sym_EQ2] = ACTIONS(4922), - [sym_short_flag_identifier] = ACTIONS(4924), - [aux_sym_unquoted_token1] = ACTIONS(4871), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(4869), + [ts_builtin_sym_end] = ACTIONS(4878), + [sym__newline] = ACTIONS(4878), + [anon_sym_SEMI] = ACTIONS(4878), + [anon_sym_PIPE] = ACTIONS(4878), + [anon_sym_err_GT_PIPE] = ACTIONS(4878), + [anon_sym_out_GT_PIPE] = ACTIONS(4878), + [anon_sym_e_GT_PIPE] = ACTIONS(4878), + [anon_sym_o_GT_PIPE] = ACTIONS(4878), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4878), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4878), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4878), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4878), + [anon_sym_LBRACK] = ACTIONS(4878), + [anon_sym_LPAREN] = ACTIONS(4878), + [anon_sym_DOLLAR] = ACTIONS(4880), + [anon_sym_DASH_DASH] = ACTIONS(4880), + [anon_sym_DASH2] = ACTIONS(4880), + [anon_sym_LBRACE] = ACTIONS(4878), + [anon_sym_DOT_DOT] = ACTIONS(4880), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4878), + [anon_sym_DOT_DOT_LT] = ACTIONS(4878), + [anon_sym_null] = ACTIONS(4880), + [anon_sym_true] = ACTIONS(4880), + [anon_sym_false] = ACTIONS(4880), + [aux_sym__val_number_decimal_token1] = ACTIONS(4880), + [aux_sym__val_number_decimal_token2] = ACTIONS(4880), + [aux_sym__val_number_decimal_token3] = ACTIONS(4878), + [aux_sym__val_number_decimal_token4] = ACTIONS(4878), + [aux_sym__val_number_token1] = ACTIONS(4880), + [aux_sym__val_number_token2] = ACTIONS(4880), + [aux_sym__val_number_token3] = ACTIONS(4880), + [aux_sym__val_number_token4] = ACTIONS(4880), + [aux_sym__val_number_token5] = ACTIONS(4880), + [aux_sym__val_number_token6] = ACTIONS(4880), + [anon_sym_0b] = ACTIONS(4880), + [anon_sym_0o] = ACTIONS(4880), + [anon_sym_0x] = ACTIONS(4880), + [sym_val_date] = ACTIONS(4880), + [anon_sym_DQUOTE] = ACTIONS(4878), + [sym__str_single_quotes] = ACTIONS(4878), + [sym__str_back_ticks] = ACTIONS(4878), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4878), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4878), + [anon_sym_err_GT] = ACTIONS(4880), + [anon_sym_out_GT] = ACTIONS(4880), + [anon_sym_e_GT] = ACTIONS(4880), + [anon_sym_o_GT] = ACTIONS(4880), + [anon_sym_err_PLUSout_GT] = ACTIONS(4880), + [anon_sym_out_PLUSerr_GT] = ACTIONS(4880), + [anon_sym_o_PLUSe_GT] = ACTIONS(4880), + [anon_sym_e_PLUSo_GT] = ACTIONS(4880), + [anon_sym_err_GT_GT] = ACTIONS(4878), + [anon_sym_out_GT_GT] = ACTIONS(4878), + [anon_sym_e_GT_GT] = ACTIONS(4878), + [anon_sym_o_GT_GT] = ACTIONS(4878), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4878), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4878), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4878), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4878), + [anon_sym_EQ2] = ACTIONS(4931), + [sym_short_flag_identifier] = ACTIONS(4933), + [aux_sym_unquoted_token1] = ACTIONS(4880), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(4878), }, [1642] = { [sym_comment] = STATE(1642), @@ -230355,10 +230355,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH2] = ACTIONS(1725), [anon_sym_LBRACE] = ACTIONS(1727), [anon_sym_DOT_DOT] = ACTIONS(1725), - [anon_sym_DOT] = ACTIONS(4926), + [anon_sym_DOT] = ACTIONS(4935), [anon_sym_DOT_DOT_EQ] = ACTIONS(1727), [anon_sym_DOT_DOT_LT] = ACTIONS(1727), - [aux_sym__immediate_decimal_token2] = ACTIONS(4928), + [aux_sym__immediate_decimal_token2] = ACTIONS(4937), [anon_sym_null] = ACTIONS(1727), [anon_sym_true] = ACTIONS(1727), [anon_sym_false] = ACTIONS(1727), @@ -230403,70 +230403,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [1643] = { [sym_comment] = STATE(1643), - [sym__newline] = ACTIONS(4930), - [anon_sym_SEMI] = ACTIONS(4930), - [anon_sym_PIPE] = ACTIONS(4930), - [anon_sym_err_GT_PIPE] = ACTIONS(4930), - [anon_sym_out_GT_PIPE] = ACTIONS(4930), - [anon_sym_e_GT_PIPE] = ACTIONS(4930), - [anon_sym_o_GT_PIPE] = ACTIONS(4930), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4930), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4930), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4930), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4930), - [anon_sym_LBRACK] = ACTIONS(4930), - [anon_sym_LPAREN] = ACTIONS(4932), - [anon_sym_RPAREN] = ACTIONS(4930), - [anon_sym_DOLLAR] = ACTIONS(4932), - [anon_sym_DASH_DASH] = ACTIONS(4930), - [anon_sym_DASH2] = ACTIONS(4932), - [anon_sym_LBRACE] = ACTIONS(4930), - [anon_sym_RBRACE] = ACTIONS(4930), - [anon_sym_DOT_DOT] = ACTIONS(4932), - [anon_sym_LPAREN2] = ACTIONS(4930), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4930), - [anon_sym_DOT_DOT_LT] = ACTIONS(4930), - [anon_sym_null] = ACTIONS(4930), - [anon_sym_true] = ACTIONS(4930), - [anon_sym_false] = ACTIONS(4930), - [aux_sym__val_number_decimal_token1] = ACTIONS(4932), - [aux_sym__val_number_decimal_token2] = ACTIONS(4930), - [aux_sym__val_number_decimal_token3] = ACTIONS(4930), - [aux_sym__val_number_decimal_token4] = ACTIONS(4930), - [aux_sym__val_number_token1] = ACTIONS(4930), - [aux_sym__val_number_token2] = ACTIONS(4930), - [aux_sym__val_number_token3] = ACTIONS(4930), - [aux_sym__val_number_token4] = ACTIONS(4930), - [aux_sym__val_number_token5] = ACTIONS(4930), - [aux_sym__val_number_token6] = ACTIONS(4930), - [anon_sym_0b] = ACTIONS(4932), - [anon_sym_0o] = ACTIONS(4932), - [anon_sym_0x] = ACTIONS(4932), - [sym_val_date] = ACTIONS(4930), - [anon_sym_DQUOTE] = ACTIONS(4930), - [sym__str_single_quotes] = ACTIONS(4930), - [sym__str_back_ticks] = ACTIONS(4930), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4930), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4930), - [anon_sym_err_GT] = ACTIONS(4932), - [anon_sym_out_GT] = ACTIONS(4932), - [anon_sym_e_GT] = ACTIONS(4932), - [anon_sym_o_GT] = ACTIONS(4932), - [anon_sym_err_PLUSout_GT] = ACTIONS(4932), - [anon_sym_out_PLUSerr_GT] = ACTIONS(4932), - [anon_sym_o_PLUSe_GT] = ACTIONS(4932), - [anon_sym_e_PLUSo_GT] = ACTIONS(4932), - [anon_sym_err_GT_GT] = ACTIONS(4930), - [anon_sym_out_GT_GT] = ACTIONS(4930), - [anon_sym_e_GT_GT] = ACTIONS(4930), - [anon_sym_o_GT_GT] = ACTIONS(4930), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4930), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4930), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4930), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4930), - [aux_sym_unquoted_token1] = ACTIONS(4932), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(4930), + [sym__newline] = ACTIONS(4939), + [anon_sym_SEMI] = ACTIONS(4939), + [anon_sym_PIPE] = ACTIONS(4939), + [anon_sym_err_GT_PIPE] = ACTIONS(4939), + [anon_sym_out_GT_PIPE] = ACTIONS(4939), + [anon_sym_e_GT_PIPE] = ACTIONS(4939), + [anon_sym_o_GT_PIPE] = ACTIONS(4939), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4939), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4939), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4939), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4939), + [anon_sym_LBRACK] = ACTIONS(4939), + [anon_sym_LPAREN] = ACTIONS(4941), + [anon_sym_RPAREN] = ACTIONS(4939), + [anon_sym_DOLLAR] = ACTIONS(4941), + [anon_sym_DASH_DASH] = ACTIONS(4939), + [anon_sym_DASH2] = ACTIONS(4941), + [anon_sym_LBRACE] = ACTIONS(4939), + [anon_sym_RBRACE] = ACTIONS(4939), + [anon_sym_DOT_DOT] = ACTIONS(4941), + [anon_sym_LPAREN2] = ACTIONS(4939), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4939), + [anon_sym_DOT_DOT_LT] = ACTIONS(4939), + [anon_sym_null] = ACTIONS(4939), + [anon_sym_true] = ACTIONS(4939), + [anon_sym_false] = ACTIONS(4939), + [aux_sym__val_number_decimal_token1] = ACTIONS(4941), + [aux_sym__val_number_decimal_token2] = ACTIONS(4939), + [aux_sym__val_number_decimal_token3] = ACTIONS(4939), + [aux_sym__val_number_decimal_token4] = ACTIONS(4939), + [aux_sym__val_number_token1] = ACTIONS(4939), + [aux_sym__val_number_token2] = ACTIONS(4939), + [aux_sym__val_number_token3] = ACTIONS(4939), + [aux_sym__val_number_token4] = ACTIONS(4939), + [aux_sym__val_number_token5] = ACTIONS(4939), + [aux_sym__val_number_token6] = ACTIONS(4939), + [anon_sym_0b] = ACTIONS(4941), + [anon_sym_0o] = ACTIONS(4941), + [anon_sym_0x] = ACTIONS(4941), + [sym_val_date] = ACTIONS(4939), + [anon_sym_DQUOTE] = ACTIONS(4939), + [sym__str_single_quotes] = ACTIONS(4939), + [sym__str_back_ticks] = ACTIONS(4939), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4939), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4939), + [anon_sym_err_GT] = ACTIONS(4941), + [anon_sym_out_GT] = ACTIONS(4941), + [anon_sym_e_GT] = ACTIONS(4941), + [anon_sym_o_GT] = ACTIONS(4941), + [anon_sym_err_PLUSout_GT] = ACTIONS(4941), + [anon_sym_out_PLUSerr_GT] = ACTIONS(4941), + [anon_sym_o_PLUSe_GT] = ACTIONS(4941), + [anon_sym_e_PLUSo_GT] = ACTIONS(4941), + [anon_sym_err_GT_GT] = ACTIONS(4939), + [anon_sym_out_GT_GT] = ACTIONS(4939), + [anon_sym_e_GT_GT] = ACTIONS(4939), + [anon_sym_o_GT_GT] = ACTIONS(4939), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4939), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4939), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4939), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4939), + [aux_sym_unquoted_token1] = ACTIONS(4941), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(4939), }, [1644] = { [sym_comment] = STATE(1644), @@ -230537,70 +230537,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [1645] = { [sym_comment] = STATE(1645), - [sym__newline] = ACTIONS(4934), - [anon_sym_SEMI] = ACTIONS(4934), - [anon_sym_PIPE] = ACTIONS(4934), - [anon_sym_err_GT_PIPE] = ACTIONS(4934), - [anon_sym_out_GT_PIPE] = ACTIONS(4934), - [anon_sym_e_GT_PIPE] = ACTIONS(4934), - [anon_sym_o_GT_PIPE] = ACTIONS(4934), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4934), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4934), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4934), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4934), - [anon_sym_LBRACK] = ACTIONS(4934), - [anon_sym_LPAREN] = ACTIONS(4934), - [anon_sym_RPAREN] = ACTIONS(4934), - [anon_sym_DOLLAR] = ACTIONS(4936), - [anon_sym_DASH_DASH] = ACTIONS(4934), - [anon_sym_DASH2] = ACTIONS(4936), - [anon_sym_LBRACE] = ACTIONS(4934), - [anon_sym_RBRACE] = ACTIONS(4934), - [anon_sym_DOT_DOT] = ACTIONS(4936), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4934), - [anon_sym_DOT_DOT_LT] = ACTIONS(4934), - [anon_sym_null] = ACTIONS(4934), - [anon_sym_true] = ACTIONS(4934), - [anon_sym_false] = ACTIONS(4934), - [aux_sym__val_number_decimal_token1] = ACTIONS(4936), - [aux_sym__val_number_decimal_token2] = ACTIONS(4934), - [aux_sym__val_number_decimal_token3] = ACTIONS(4934), - [aux_sym__val_number_decimal_token4] = ACTIONS(4934), - [aux_sym__val_number_token1] = ACTIONS(4934), - [aux_sym__val_number_token2] = ACTIONS(4934), - [aux_sym__val_number_token3] = ACTIONS(4934), - [aux_sym__val_number_token4] = ACTIONS(4934), - [aux_sym__val_number_token5] = ACTIONS(4934), - [aux_sym__val_number_token6] = ACTIONS(4934), - [anon_sym_0b] = ACTIONS(4936), - [anon_sym_0o] = ACTIONS(4936), - [anon_sym_0x] = ACTIONS(4936), - [sym_val_date] = ACTIONS(4934), - [anon_sym_DQUOTE] = ACTIONS(4934), - [sym__str_single_quotes] = ACTIONS(4934), - [sym__str_back_ticks] = ACTIONS(4934), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4934), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4934), - [anon_sym_err_GT] = ACTIONS(4936), - [anon_sym_out_GT] = ACTIONS(4936), - [anon_sym_e_GT] = ACTIONS(4936), - [anon_sym_o_GT] = ACTIONS(4936), - [anon_sym_err_PLUSout_GT] = ACTIONS(4936), - [anon_sym_out_PLUSerr_GT] = ACTIONS(4936), - [anon_sym_o_PLUSe_GT] = ACTIONS(4936), - [anon_sym_e_PLUSo_GT] = ACTIONS(4936), - [anon_sym_err_GT_GT] = ACTIONS(4934), - [anon_sym_out_GT_GT] = ACTIONS(4934), - [anon_sym_e_GT_GT] = ACTIONS(4934), - [anon_sym_o_GT_GT] = ACTIONS(4934), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4934), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4934), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4934), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4934), - [anon_sym_EQ2] = ACTIONS(4938), - [aux_sym_unquoted_token1] = ACTIONS(4936), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(4934), + [sym__newline] = ACTIONS(4943), + [anon_sym_SEMI] = ACTIONS(4943), + [anon_sym_PIPE] = ACTIONS(4943), + [anon_sym_err_GT_PIPE] = ACTIONS(4943), + [anon_sym_out_GT_PIPE] = ACTIONS(4943), + [anon_sym_e_GT_PIPE] = ACTIONS(4943), + [anon_sym_o_GT_PIPE] = ACTIONS(4943), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4943), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4943), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4943), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4943), + [anon_sym_LBRACK] = ACTIONS(4943), + [anon_sym_LPAREN] = ACTIONS(4943), + [anon_sym_RPAREN] = ACTIONS(4943), + [anon_sym_DOLLAR] = ACTIONS(4945), + [anon_sym_DASH_DASH] = ACTIONS(4943), + [anon_sym_DASH2] = ACTIONS(4945), + [anon_sym_LBRACE] = ACTIONS(4943), + [anon_sym_RBRACE] = ACTIONS(4943), + [anon_sym_DOT_DOT] = ACTIONS(4945), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4943), + [anon_sym_DOT_DOT_LT] = ACTIONS(4943), + [anon_sym_null] = ACTIONS(4943), + [anon_sym_true] = ACTIONS(4943), + [anon_sym_false] = ACTIONS(4943), + [aux_sym__val_number_decimal_token1] = ACTIONS(4945), + [aux_sym__val_number_decimal_token2] = ACTIONS(4943), + [aux_sym__val_number_decimal_token3] = ACTIONS(4943), + [aux_sym__val_number_decimal_token4] = ACTIONS(4943), + [aux_sym__val_number_token1] = ACTIONS(4943), + [aux_sym__val_number_token2] = ACTIONS(4943), + [aux_sym__val_number_token3] = ACTIONS(4943), + [aux_sym__val_number_token4] = ACTIONS(4943), + [aux_sym__val_number_token5] = ACTIONS(4943), + [aux_sym__val_number_token6] = ACTIONS(4943), + [anon_sym_0b] = ACTIONS(4945), + [anon_sym_0o] = ACTIONS(4945), + [anon_sym_0x] = ACTIONS(4945), + [sym_val_date] = ACTIONS(4943), + [anon_sym_DQUOTE] = ACTIONS(4943), + [sym__str_single_quotes] = ACTIONS(4943), + [sym__str_back_ticks] = ACTIONS(4943), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4943), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4943), + [anon_sym_err_GT] = ACTIONS(4945), + [anon_sym_out_GT] = ACTIONS(4945), + [anon_sym_e_GT] = ACTIONS(4945), + [anon_sym_o_GT] = ACTIONS(4945), + [anon_sym_err_PLUSout_GT] = ACTIONS(4945), + [anon_sym_out_PLUSerr_GT] = ACTIONS(4945), + [anon_sym_o_PLUSe_GT] = ACTIONS(4945), + [anon_sym_e_PLUSo_GT] = ACTIONS(4945), + [anon_sym_err_GT_GT] = ACTIONS(4943), + [anon_sym_out_GT_GT] = ACTIONS(4943), + [anon_sym_e_GT_GT] = ACTIONS(4943), + [anon_sym_o_GT_GT] = ACTIONS(4943), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4943), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4943), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4943), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4943), + [anon_sym_EQ2] = ACTIONS(4947), + [aux_sym_unquoted_token1] = ACTIONS(4945), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(4943), }, [1646] = { [sym_comment] = STATE(1646), @@ -230776,7 +230776,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_0b] = ACTIONS(2318), [anon_sym_0o] = ACTIONS(2318), [anon_sym_0x] = ACTIONS(2318), - [anon_sym_LBRACK2] = ACTIONS(4940), + [anon_sym_LBRACK2] = ACTIONS(4949), [sym_val_date] = ACTIONS(2322), [anon_sym_DQUOTE] = ACTIONS(2322), [sym__str_single_quotes] = ACTIONS(2322), @@ -231052,7 +231052,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bit_DASHand2] = ACTIONS(1927), [anon_sym_bit_DASHxor2] = ACTIONS(1927), [anon_sym_bit_DASHor2] = ACTIONS(1927), - [anon_sym_DOT2] = ACTIONS(4807), + [anon_sym_DOT2] = ACTIONS(4816), [anon_sym_err_GT] = ACTIONS(1925), [anon_sym_out_GT] = ACTIONS(1925), [anon_sym_e_GT] = ACTIONS(1925), @@ -231074,136 +231074,136 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [1653] = { [sym__expr_parenthesized_immediate] = STATE(7420), [sym_comment] = STATE(1653), - [ts_builtin_sym_end] = ACTIONS(4837), - [sym__newline] = ACTIONS(4837), - [anon_sym_SEMI] = ACTIONS(4837), - [anon_sym_PIPE] = ACTIONS(4837), - [anon_sym_err_GT_PIPE] = ACTIONS(4837), - [anon_sym_out_GT_PIPE] = ACTIONS(4837), - [anon_sym_e_GT_PIPE] = ACTIONS(4837), - [anon_sym_o_GT_PIPE] = ACTIONS(4837), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4837), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4837), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4837), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4837), - [anon_sym_LBRACK] = ACTIONS(4837), - [anon_sym_LPAREN] = ACTIONS(4839), - [anon_sym_DOLLAR] = ACTIONS(4839), - [anon_sym_DASH_DASH] = ACTIONS(4837), - [anon_sym_DASH2] = ACTIONS(4839), - [anon_sym_LBRACE] = ACTIONS(4837), - [anon_sym_DOT_DOT] = ACTIONS(4839), - [anon_sym_LPAREN2] = ACTIONS(4403), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4837), - [anon_sym_DOT_DOT_LT] = ACTIONS(4837), - [anon_sym_null] = ACTIONS(4837), - [anon_sym_true] = ACTIONS(4837), - [anon_sym_false] = ACTIONS(4837), - [aux_sym__val_number_decimal_token1] = ACTIONS(4839), - [aux_sym__val_number_decimal_token2] = ACTIONS(4837), - [aux_sym__val_number_decimal_token3] = ACTIONS(4837), - [aux_sym__val_number_decimal_token4] = ACTIONS(4837), - [aux_sym__val_number_token1] = ACTIONS(4837), - [aux_sym__val_number_token2] = ACTIONS(4837), - [aux_sym__val_number_token3] = ACTIONS(4837), - [aux_sym__val_number_token4] = ACTIONS(4837), - [aux_sym__val_number_token5] = ACTIONS(4837), - [aux_sym__val_number_token6] = ACTIONS(4837), - [anon_sym_0b] = ACTIONS(4839), - [anon_sym_0o] = ACTIONS(4839), - [anon_sym_0x] = ACTIONS(4839), - [sym_val_date] = ACTIONS(4837), - [anon_sym_DQUOTE] = ACTIONS(4837), - [sym__str_single_quotes] = ACTIONS(4837), - [sym__str_back_ticks] = ACTIONS(4837), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4837), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4837), - [anon_sym_err_GT] = ACTIONS(4839), - [anon_sym_out_GT] = ACTIONS(4839), - [anon_sym_e_GT] = ACTIONS(4839), - [anon_sym_o_GT] = ACTIONS(4839), - [anon_sym_err_PLUSout_GT] = ACTIONS(4839), - [anon_sym_out_PLUSerr_GT] = ACTIONS(4839), - [anon_sym_o_PLUSe_GT] = ACTIONS(4839), - [anon_sym_e_PLUSo_GT] = ACTIONS(4839), - [anon_sym_err_GT_GT] = ACTIONS(4837), - [anon_sym_out_GT_GT] = ACTIONS(4837), - [anon_sym_e_GT_GT] = ACTIONS(4837), - [anon_sym_o_GT_GT] = ACTIONS(4837), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4837), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4837), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4837), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4837), - [aux_sym_unquoted_token1] = ACTIONS(4839), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(4837), + [ts_builtin_sym_end] = ACTIONS(4846), + [sym__newline] = ACTIONS(4846), + [anon_sym_SEMI] = ACTIONS(4846), + [anon_sym_PIPE] = ACTIONS(4846), + [anon_sym_err_GT_PIPE] = ACTIONS(4846), + [anon_sym_out_GT_PIPE] = ACTIONS(4846), + [anon_sym_e_GT_PIPE] = ACTIONS(4846), + [anon_sym_o_GT_PIPE] = ACTIONS(4846), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4846), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4846), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4846), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4846), + [anon_sym_LBRACK] = ACTIONS(4846), + [anon_sym_LPAREN] = ACTIONS(4848), + [anon_sym_DOLLAR] = ACTIONS(4848), + [anon_sym_DASH_DASH] = ACTIONS(4846), + [anon_sym_DASH2] = ACTIONS(4848), + [anon_sym_LBRACE] = ACTIONS(4846), + [anon_sym_DOT_DOT] = ACTIONS(4848), + [anon_sym_LPAREN2] = ACTIONS(4412), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4846), + [anon_sym_DOT_DOT_LT] = ACTIONS(4846), + [anon_sym_null] = ACTIONS(4846), + [anon_sym_true] = ACTIONS(4846), + [anon_sym_false] = ACTIONS(4846), + [aux_sym__val_number_decimal_token1] = ACTIONS(4848), + [aux_sym__val_number_decimal_token2] = ACTIONS(4846), + [aux_sym__val_number_decimal_token3] = ACTIONS(4846), + [aux_sym__val_number_decimal_token4] = ACTIONS(4846), + [aux_sym__val_number_token1] = ACTIONS(4846), + [aux_sym__val_number_token2] = ACTIONS(4846), + [aux_sym__val_number_token3] = ACTIONS(4846), + [aux_sym__val_number_token4] = ACTIONS(4846), + [aux_sym__val_number_token5] = ACTIONS(4846), + [aux_sym__val_number_token6] = ACTIONS(4846), + [anon_sym_0b] = ACTIONS(4848), + [anon_sym_0o] = ACTIONS(4848), + [anon_sym_0x] = ACTIONS(4848), + [sym_val_date] = ACTIONS(4846), + [anon_sym_DQUOTE] = ACTIONS(4846), + [sym__str_single_quotes] = ACTIONS(4846), + [sym__str_back_ticks] = ACTIONS(4846), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4846), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4846), + [anon_sym_err_GT] = ACTIONS(4848), + [anon_sym_out_GT] = ACTIONS(4848), + [anon_sym_e_GT] = ACTIONS(4848), + [anon_sym_o_GT] = ACTIONS(4848), + [anon_sym_err_PLUSout_GT] = ACTIONS(4848), + [anon_sym_out_PLUSerr_GT] = ACTIONS(4848), + [anon_sym_o_PLUSe_GT] = ACTIONS(4848), + [anon_sym_e_PLUSo_GT] = ACTIONS(4848), + [anon_sym_err_GT_GT] = ACTIONS(4846), + [anon_sym_out_GT_GT] = ACTIONS(4846), + [anon_sym_e_GT_GT] = ACTIONS(4846), + [anon_sym_o_GT_GT] = ACTIONS(4846), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4846), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4846), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4846), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4846), + [aux_sym_unquoted_token1] = ACTIONS(4848), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(4846), }, [1654] = { [sym__expr_parenthesized_immediate] = STATE(7221), [sym_comment] = STATE(1654), - [sym__newline] = ACTIONS(4942), - [anon_sym_SEMI] = ACTIONS(4942), - [anon_sym_PIPE] = ACTIONS(4942), - [anon_sym_err_GT_PIPE] = ACTIONS(4942), - [anon_sym_out_GT_PIPE] = ACTIONS(4942), - [anon_sym_e_GT_PIPE] = ACTIONS(4942), - [anon_sym_o_GT_PIPE] = ACTIONS(4942), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4942), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4942), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4942), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4942), - [anon_sym_LBRACK] = ACTIONS(4942), - [anon_sym_LPAREN] = ACTIONS(4944), - [anon_sym_RPAREN] = ACTIONS(4942), - [anon_sym_DOLLAR] = ACTIONS(4944), - [anon_sym_DASH_DASH] = ACTIONS(4942), - [anon_sym_DASH2] = ACTIONS(4944), - [anon_sym_LBRACE] = ACTIONS(4942), - [anon_sym_DOT_DOT] = ACTIONS(4944), - [anon_sym_LPAREN2] = ACTIONS(4403), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4942), - [anon_sym_DOT_DOT_LT] = ACTIONS(4942), - [anon_sym_null] = ACTIONS(4942), - [anon_sym_true] = ACTIONS(4942), - [anon_sym_false] = ACTIONS(4942), - [aux_sym__val_number_decimal_token1] = ACTIONS(4944), - [aux_sym__val_number_decimal_token2] = ACTIONS(4942), - [aux_sym__val_number_decimal_token3] = ACTIONS(4942), - [aux_sym__val_number_decimal_token4] = ACTIONS(4942), - [aux_sym__val_number_token1] = ACTIONS(4942), - [aux_sym__val_number_token2] = ACTIONS(4942), - [aux_sym__val_number_token3] = ACTIONS(4942), - [aux_sym__val_number_token4] = ACTIONS(4942), - [aux_sym__val_number_token5] = ACTIONS(4942), - [aux_sym__val_number_token6] = ACTIONS(4942), - [anon_sym_0b] = ACTIONS(4944), - [anon_sym_0o] = ACTIONS(4944), - [anon_sym_0x] = ACTIONS(4944), - [sym_val_date] = ACTIONS(4942), - [anon_sym_DQUOTE] = ACTIONS(4942), - [sym__str_single_quotes] = ACTIONS(4942), - [sym__str_back_ticks] = ACTIONS(4942), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4942), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4942), - [anon_sym_err_GT] = ACTIONS(4944), - [anon_sym_out_GT] = ACTIONS(4944), - [anon_sym_e_GT] = ACTIONS(4944), - [anon_sym_o_GT] = ACTIONS(4944), - [anon_sym_err_PLUSout_GT] = ACTIONS(4944), - [anon_sym_out_PLUSerr_GT] = ACTIONS(4944), - [anon_sym_o_PLUSe_GT] = ACTIONS(4944), - [anon_sym_e_PLUSo_GT] = ACTIONS(4944), - [anon_sym_err_GT_GT] = ACTIONS(4942), - [anon_sym_out_GT_GT] = ACTIONS(4942), - [anon_sym_e_GT_GT] = ACTIONS(4942), - [anon_sym_o_GT_GT] = ACTIONS(4942), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4942), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4942), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4942), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4942), - [aux_sym_unquoted_token1] = ACTIONS(4944), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(4942), + [sym__newline] = ACTIONS(4951), + [anon_sym_SEMI] = ACTIONS(4951), + [anon_sym_PIPE] = ACTIONS(4951), + [anon_sym_err_GT_PIPE] = ACTIONS(4951), + [anon_sym_out_GT_PIPE] = ACTIONS(4951), + [anon_sym_e_GT_PIPE] = ACTIONS(4951), + [anon_sym_o_GT_PIPE] = ACTIONS(4951), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4951), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4951), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4951), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4951), + [anon_sym_LBRACK] = ACTIONS(4951), + [anon_sym_LPAREN] = ACTIONS(4953), + [anon_sym_RPAREN] = ACTIONS(4951), + [anon_sym_DOLLAR] = ACTIONS(4953), + [anon_sym_DASH_DASH] = ACTIONS(4951), + [anon_sym_DASH2] = ACTIONS(4953), + [anon_sym_LBRACE] = ACTIONS(4951), + [anon_sym_DOT_DOT] = ACTIONS(4953), + [anon_sym_LPAREN2] = ACTIONS(4412), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4951), + [anon_sym_DOT_DOT_LT] = ACTIONS(4951), + [anon_sym_null] = ACTIONS(4951), + [anon_sym_true] = ACTIONS(4951), + [anon_sym_false] = ACTIONS(4951), + [aux_sym__val_number_decimal_token1] = ACTIONS(4953), + [aux_sym__val_number_decimal_token2] = ACTIONS(4951), + [aux_sym__val_number_decimal_token3] = ACTIONS(4951), + [aux_sym__val_number_decimal_token4] = ACTIONS(4951), + [aux_sym__val_number_token1] = ACTIONS(4951), + [aux_sym__val_number_token2] = ACTIONS(4951), + [aux_sym__val_number_token3] = ACTIONS(4951), + [aux_sym__val_number_token4] = ACTIONS(4951), + [aux_sym__val_number_token5] = ACTIONS(4951), + [aux_sym__val_number_token6] = ACTIONS(4951), + [anon_sym_0b] = ACTIONS(4953), + [anon_sym_0o] = ACTIONS(4953), + [anon_sym_0x] = ACTIONS(4953), + [sym_val_date] = ACTIONS(4951), + [anon_sym_DQUOTE] = ACTIONS(4951), + [sym__str_single_quotes] = ACTIONS(4951), + [sym__str_back_ticks] = ACTIONS(4951), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4951), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4951), + [anon_sym_err_GT] = ACTIONS(4953), + [anon_sym_out_GT] = ACTIONS(4953), + [anon_sym_e_GT] = ACTIONS(4953), + [anon_sym_o_GT] = ACTIONS(4953), + [anon_sym_err_PLUSout_GT] = ACTIONS(4953), + [anon_sym_out_PLUSerr_GT] = ACTIONS(4953), + [anon_sym_o_PLUSe_GT] = ACTIONS(4953), + [anon_sym_e_PLUSo_GT] = ACTIONS(4953), + [anon_sym_err_GT_GT] = ACTIONS(4951), + [anon_sym_out_GT_GT] = ACTIONS(4951), + [anon_sym_e_GT_GT] = ACTIONS(4951), + [anon_sym_o_GT_GT] = ACTIONS(4951), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4951), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4951), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4951), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4951), + [aux_sym_unquoted_token1] = ACTIONS(4953), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(4951), }, [1655] = { [sym_comment] = STATE(1655), @@ -231450,10 +231450,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bit_DASHxor2] = ACTIONS(1727), [anon_sym_bit_DASHor2] = ACTIONS(1727), [anon_sym_DOT_DOT2] = ACTIONS(1725), - [anon_sym_DOT] = ACTIONS(4946), + [anon_sym_DOT] = ACTIONS(4955), [anon_sym_DOT_DOT_EQ2] = ACTIONS(1727), [anon_sym_DOT_DOT_LT2] = ACTIONS(1727), - [aux_sym__immediate_decimal_token2] = ACTIONS(4948), + [aux_sym__immediate_decimal_token2] = ACTIONS(4957), [anon_sym_err_GT] = ACTIONS(1725), [anon_sym_out_GT] = ACTIONS(1725), [anon_sym_e_GT] = ACTIONS(1725), @@ -231551,56 +231551,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_str] = STATE(3916), [sym__str_double_quotes] = STATE(3916), [sym_comment] = STATE(1660), - [aux_sym_cmd_identifier_token1] = ACTIONS(4950), - [aux_sym_cmd_identifier_token2] = ACTIONS(4952), - [aux_sym_cmd_identifier_token3] = ACTIONS(4952), - [aux_sym_cmd_identifier_token4] = ACTIONS(4952), - [aux_sym_cmd_identifier_token5] = ACTIONS(4952), - [aux_sym_cmd_identifier_token6] = ACTIONS(4952), - [aux_sym_cmd_identifier_token7] = ACTIONS(4952), - [aux_sym_cmd_identifier_token8] = ACTIONS(4952), - [aux_sym_cmd_identifier_token9] = ACTIONS(4950), - [aux_sym_cmd_identifier_token10] = ACTIONS(4952), - [aux_sym_cmd_identifier_token11] = ACTIONS(4952), - [aux_sym_cmd_identifier_token12] = ACTIONS(4952), - [aux_sym_cmd_identifier_token13] = ACTIONS(4950), - [aux_sym_cmd_identifier_token14] = ACTIONS(4952), - [aux_sym_cmd_identifier_token15] = ACTIONS(4950), - [aux_sym_cmd_identifier_token16] = ACTIONS(4952), - [aux_sym_cmd_identifier_token17] = ACTIONS(4952), - [aux_sym_cmd_identifier_token18] = ACTIONS(4952), - [aux_sym_cmd_identifier_token19] = ACTIONS(4952), - [aux_sym_cmd_identifier_token20] = ACTIONS(4952), - [aux_sym_cmd_identifier_token21] = ACTIONS(4952), - [aux_sym_cmd_identifier_token22] = ACTIONS(4952), - [aux_sym_cmd_identifier_token23] = ACTIONS(4952), - [aux_sym_cmd_identifier_token24] = ACTIONS(4952), - [aux_sym_cmd_identifier_token25] = ACTIONS(4952), - [aux_sym_cmd_identifier_token26] = ACTIONS(4952), - [aux_sym_cmd_identifier_token27] = ACTIONS(4952), - [aux_sym_cmd_identifier_token28] = ACTIONS(4952), - [aux_sym_cmd_identifier_token29] = ACTIONS(4952), - [aux_sym_cmd_identifier_token30] = ACTIONS(4952), - [aux_sym_cmd_identifier_token31] = ACTIONS(4952), - [aux_sym_cmd_identifier_token32] = ACTIONS(4952), - [aux_sym_cmd_identifier_token33] = ACTIONS(4952), - [aux_sym_cmd_identifier_token34] = ACTIONS(4950), - [aux_sym_cmd_identifier_token35] = ACTIONS(4952), - [aux_sym_cmd_identifier_token36] = ACTIONS(4952), - [aux_sym_cmd_identifier_token37] = ACTIONS(4952), - [aux_sym_cmd_identifier_token38] = ACTIONS(4950), - [aux_sym_cmd_identifier_token39] = ACTIONS(4952), - [aux_sym_cmd_identifier_token40] = ACTIONS(4952), - [sym__newline] = ACTIONS(4954), - [anon_sym_SEMI] = ACTIONS(4954), - [anon_sym_LBRACK] = ACTIONS(4956), - [anon_sym_RPAREN] = ACTIONS(4954), - [anon_sym_RBRACE] = ACTIONS(4954), - [anon_sym_STAR2] = ACTIONS(4958), - [aux_sym__val_number_decimal_token1] = ACTIONS(4960), - [aux_sym__val_number_decimal_token2] = ACTIONS(4960), - [aux_sym__val_number_decimal_token3] = ACTIONS(4962), - [aux_sym__val_number_decimal_token4] = ACTIONS(4964), + [aux_sym_cmd_identifier_token1] = ACTIONS(4959), + [aux_sym_cmd_identifier_token2] = ACTIONS(4961), + [aux_sym_cmd_identifier_token3] = ACTIONS(4961), + [aux_sym_cmd_identifier_token4] = ACTIONS(4961), + [aux_sym_cmd_identifier_token5] = ACTIONS(4961), + [aux_sym_cmd_identifier_token6] = ACTIONS(4961), + [aux_sym_cmd_identifier_token7] = ACTIONS(4961), + [aux_sym_cmd_identifier_token8] = ACTIONS(4961), + [aux_sym_cmd_identifier_token9] = ACTIONS(4959), + [aux_sym_cmd_identifier_token10] = ACTIONS(4961), + [aux_sym_cmd_identifier_token11] = ACTIONS(4961), + [aux_sym_cmd_identifier_token12] = ACTIONS(4961), + [aux_sym_cmd_identifier_token13] = ACTIONS(4959), + [aux_sym_cmd_identifier_token14] = ACTIONS(4961), + [aux_sym_cmd_identifier_token15] = ACTIONS(4959), + [aux_sym_cmd_identifier_token16] = ACTIONS(4961), + [aux_sym_cmd_identifier_token17] = ACTIONS(4961), + [aux_sym_cmd_identifier_token18] = ACTIONS(4961), + [aux_sym_cmd_identifier_token19] = ACTIONS(4961), + [aux_sym_cmd_identifier_token20] = ACTIONS(4961), + [aux_sym_cmd_identifier_token21] = ACTIONS(4961), + [aux_sym_cmd_identifier_token22] = ACTIONS(4961), + [aux_sym_cmd_identifier_token23] = ACTIONS(4961), + [aux_sym_cmd_identifier_token24] = ACTIONS(4961), + [aux_sym_cmd_identifier_token25] = ACTIONS(4961), + [aux_sym_cmd_identifier_token26] = ACTIONS(4961), + [aux_sym_cmd_identifier_token27] = ACTIONS(4961), + [aux_sym_cmd_identifier_token28] = ACTIONS(4961), + [aux_sym_cmd_identifier_token29] = ACTIONS(4961), + [aux_sym_cmd_identifier_token30] = ACTIONS(4961), + [aux_sym_cmd_identifier_token31] = ACTIONS(4961), + [aux_sym_cmd_identifier_token32] = ACTIONS(4961), + [aux_sym_cmd_identifier_token33] = ACTIONS(4961), + [aux_sym_cmd_identifier_token34] = ACTIONS(4959), + [aux_sym_cmd_identifier_token35] = ACTIONS(4961), + [aux_sym_cmd_identifier_token36] = ACTIONS(4961), + [aux_sym_cmd_identifier_token37] = ACTIONS(4961), + [aux_sym_cmd_identifier_token38] = ACTIONS(4959), + [aux_sym_cmd_identifier_token39] = ACTIONS(4961), + [aux_sym_cmd_identifier_token40] = ACTIONS(4961), + [sym__newline] = ACTIONS(4963), + [anon_sym_SEMI] = ACTIONS(4963), + [anon_sym_LBRACK] = ACTIONS(4965), + [anon_sym_RPAREN] = ACTIONS(4963), + [anon_sym_RBRACE] = ACTIONS(4963), + [anon_sym_STAR2] = ACTIONS(4967), + [aux_sym__val_number_decimal_token1] = ACTIONS(4969), + [aux_sym__val_number_decimal_token2] = ACTIONS(4969), + [aux_sym__val_number_decimal_token3] = ACTIONS(4971), + [aux_sym__val_number_decimal_token4] = ACTIONS(4973), [anon_sym_DQUOTE] = ACTIONS(1295), [sym__str_single_quotes] = ACTIONS(1297), [sym__str_back_ticks] = ACTIONS(1297), @@ -231744,69 +231744,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [1663] = { [sym__expr_parenthesized_immediate] = STATE(7420), [sym_comment] = STATE(1663), - [ts_builtin_sym_end] = ACTIONS(4841), - [sym__newline] = ACTIONS(4841), - [anon_sym_SEMI] = ACTIONS(4841), - [anon_sym_PIPE] = ACTIONS(4841), - [anon_sym_err_GT_PIPE] = ACTIONS(4841), - [anon_sym_out_GT_PIPE] = ACTIONS(4841), - [anon_sym_e_GT_PIPE] = ACTIONS(4841), - [anon_sym_o_GT_PIPE] = ACTIONS(4841), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4841), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4841), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4841), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4841), - [anon_sym_LBRACK] = ACTIONS(4841), - [anon_sym_LPAREN] = ACTIONS(4843), - [anon_sym_DOLLAR] = ACTIONS(4843), - [anon_sym_DASH_DASH] = ACTIONS(4841), - [anon_sym_DASH2] = ACTIONS(4843), - [anon_sym_LBRACE] = ACTIONS(4841), - [anon_sym_DOT_DOT] = ACTIONS(4843), - [anon_sym_LPAREN2] = ACTIONS(4403), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4841), - [anon_sym_DOT_DOT_LT] = ACTIONS(4841), - [anon_sym_null] = ACTIONS(4841), - [anon_sym_true] = ACTIONS(4841), - [anon_sym_false] = ACTIONS(4841), - [aux_sym__val_number_decimal_token1] = ACTIONS(4843), - [aux_sym__val_number_decimal_token2] = ACTIONS(4841), - [aux_sym__val_number_decimal_token3] = ACTIONS(4841), - [aux_sym__val_number_decimal_token4] = ACTIONS(4841), - [aux_sym__val_number_token1] = ACTIONS(4841), - [aux_sym__val_number_token2] = ACTIONS(4841), - [aux_sym__val_number_token3] = ACTIONS(4841), - [aux_sym__val_number_token4] = ACTIONS(4841), - [aux_sym__val_number_token5] = ACTIONS(4841), - [aux_sym__val_number_token6] = ACTIONS(4841), - [anon_sym_0b] = ACTIONS(4843), - [anon_sym_0o] = ACTIONS(4843), - [anon_sym_0x] = ACTIONS(4843), - [sym_val_date] = ACTIONS(4841), - [anon_sym_DQUOTE] = ACTIONS(4841), - [sym__str_single_quotes] = ACTIONS(4841), - [sym__str_back_ticks] = ACTIONS(4841), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4841), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4841), - [anon_sym_err_GT] = ACTIONS(4843), - [anon_sym_out_GT] = ACTIONS(4843), - [anon_sym_e_GT] = ACTIONS(4843), - [anon_sym_o_GT] = ACTIONS(4843), - [anon_sym_err_PLUSout_GT] = ACTIONS(4843), - [anon_sym_out_PLUSerr_GT] = ACTIONS(4843), - [anon_sym_o_PLUSe_GT] = ACTIONS(4843), - [anon_sym_e_PLUSo_GT] = ACTIONS(4843), - [anon_sym_err_GT_GT] = ACTIONS(4841), - [anon_sym_out_GT_GT] = ACTIONS(4841), - [anon_sym_e_GT_GT] = ACTIONS(4841), - [anon_sym_o_GT_GT] = ACTIONS(4841), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4841), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4841), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4841), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4841), - [aux_sym_unquoted_token1] = ACTIONS(4843), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(4841), + [ts_builtin_sym_end] = ACTIONS(4850), + [sym__newline] = ACTIONS(4850), + [anon_sym_SEMI] = ACTIONS(4850), + [anon_sym_PIPE] = ACTIONS(4850), + [anon_sym_err_GT_PIPE] = ACTIONS(4850), + [anon_sym_out_GT_PIPE] = ACTIONS(4850), + [anon_sym_e_GT_PIPE] = ACTIONS(4850), + [anon_sym_o_GT_PIPE] = ACTIONS(4850), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4850), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4850), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4850), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4850), + [anon_sym_LBRACK] = ACTIONS(4850), + [anon_sym_LPAREN] = ACTIONS(4852), + [anon_sym_DOLLAR] = ACTIONS(4852), + [anon_sym_DASH_DASH] = ACTIONS(4850), + [anon_sym_DASH2] = ACTIONS(4852), + [anon_sym_LBRACE] = ACTIONS(4850), + [anon_sym_DOT_DOT] = ACTIONS(4852), + [anon_sym_LPAREN2] = ACTIONS(4412), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4850), + [anon_sym_DOT_DOT_LT] = ACTIONS(4850), + [anon_sym_null] = ACTIONS(4850), + [anon_sym_true] = ACTIONS(4850), + [anon_sym_false] = ACTIONS(4850), + [aux_sym__val_number_decimal_token1] = ACTIONS(4852), + [aux_sym__val_number_decimal_token2] = ACTIONS(4850), + [aux_sym__val_number_decimal_token3] = ACTIONS(4850), + [aux_sym__val_number_decimal_token4] = ACTIONS(4850), + [aux_sym__val_number_token1] = ACTIONS(4850), + [aux_sym__val_number_token2] = ACTIONS(4850), + [aux_sym__val_number_token3] = ACTIONS(4850), + [aux_sym__val_number_token4] = ACTIONS(4850), + [aux_sym__val_number_token5] = ACTIONS(4850), + [aux_sym__val_number_token6] = ACTIONS(4850), + [anon_sym_0b] = ACTIONS(4852), + [anon_sym_0o] = ACTIONS(4852), + [anon_sym_0x] = ACTIONS(4852), + [sym_val_date] = ACTIONS(4850), + [anon_sym_DQUOTE] = ACTIONS(4850), + [sym__str_single_quotes] = ACTIONS(4850), + [sym__str_back_ticks] = ACTIONS(4850), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4850), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4850), + [anon_sym_err_GT] = ACTIONS(4852), + [anon_sym_out_GT] = ACTIONS(4852), + [anon_sym_e_GT] = ACTIONS(4852), + [anon_sym_o_GT] = ACTIONS(4852), + [anon_sym_err_PLUSout_GT] = ACTIONS(4852), + [anon_sym_out_PLUSerr_GT] = ACTIONS(4852), + [anon_sym_o_PLUSe_GT] = ACTIONS(4852), + [anon_sym_e_PLUSo_GT] = ACTIONS(4852), + [anon_sym_err_GT_GT] = ACTIONS(4850), + [anon_sym_out_GT_GT] = ACTIONS(4850), + [anon_sym_e_GT_GT] = ACTIONS(4850), + [anon_sym_o_GT_GT] = ACTIONS(4850), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4850), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4850), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4850), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4850), + [aux_sym_unquoted_token1] = ACTIONS(4852), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(4850), }, [1664] = { [sym_comment] = STATE(1664), @@ -231923,7 +231923,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT2] = ACTIONS(935), [anon_sym_DOT_DOT_EQ2] = ACTIONS(937), [anon_sym_DOT_DOT_LT2] = ACTIONS(937), - [anon_sym_DOT2] = ACTIONS(4910), + [anon_sym_DOT2] = ACTIONS(4919), [anon_sym_err_GT] = ACTIONS(935), [anon_sym_out_GT] = ACTIONS(935), [anon_sym_e_GT] = ACTIONS(935), @@ -232124,7 +232124,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT2] = ACTIONS(941), [anon_sym_DOT_DOT_EQ2] = ACTIONS(943), [anon_sym_DOT_DOT_LT2] = ACTIONS(943), - [anon_sym_DOT2] = ACTIONS(4966), + [anon_sym_DOT2] = ACTIONS(4975), [anon_sym_err_GT] = ACTIONS(941), [anon_sym_out_GT] = ACTIONS(941), [anon_sym_e_GT] = ACTIONS(941), @@ -232233,8 +232233,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT] = ACTIONS(1757), [anon_sym_DOT_DOT_EQ] = ACTIONS(1759), [anon_sym_DOT_DOT_LT] = ACTIONS(1759), - [aux_sym__immediate_decimal_token1] = ACTIONS(4969), - [aux_sym__immediate_decimal_token2] = ACTIONS(4971), + [aux_sym__immediate_decimal_token1] = ACTIONS(4978), + [aux_sym__immediate_decimal_token2] = ACTIONS(4980), [anon_sym_null] = ACTIONS(1759), [anon_sym_true] = ACTIONS(1759), [anon_sym_false] = ACTIONS(1759), @@ -232347,136 +232347,136 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [1672] = { [sym__expr_parenthesized_immediate] = STATE(7237), [sym_comment] = STATE(1672), - [ts_builtin_sym_end] = ACTIONS(4890), - [sym__newline] = ACTIONS(4890), - [anon_sym_SEMI] = ACTIONS(4890), - [anon_sym_PIPE] = ACTIONS(4890), - [anon_sym_err_GT_PIPE] = ACTIONS(4890), - [anon_sym_out_GT_PIPE] = ACTIONS(4890), - [anon_sym_e_GT_PIPE] = ACTIONS(4890), - [anon_sym_o_GT_PIPE] = ACTIONS(4890), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4890), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4890), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4890), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4890), - [anon_sym_LBRACK] = ACTIONS(4890), - [anon_sym_LPAREN] = ACTIONS(4892), - [anon_sym_DOLLAR] = ACTIONS(4892), - [anon_sym_DASH_DASH] = ACTIONS(4890), - [anon_sym_DASH2] = ACTIONS(4892), - [anon_sym_LBRACE] = ACTIONS(4890), - [anon_sym_DOT_DOT] = ACTIONS(4892), - [anon_sym_LPAREN2] = ACTIONS(4403), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4890), - [anon_sym_DOT_DOT_LT] = ACTIONS(4890), - [anon_sym_null] = ACTIONS(4890), - [anon_sym_true] = ACTIONS(4890), - [anon_sym_false] = ACTIONS(4890), - [aux_sym__val_number_decimal_token1] = ACTIONS(4892), - [aux_sym__val_number_decimal_token2] = ACTIONS(4890), - [aux_sym__val_number_decimal_token3] = ACTIONS(4890), - [aux_sym__val_number_decimal_token4] = ACTIONS(4890), - [aux_sym__val_number_token1] = ACTIONS(4890), - [aux_sym__val_number_token2] = ACTIONS(4890), - [aux_sym__val_number_token3] = ACTIONS(4890), - [aux_sym__val_number_token4] = ACTIONS(4890), - [aux_sym__val_number_token5] = ACTIONS(4890), - [aux_sym__val_number_token6] = ACTIONS(4890), - [anon_sym_0b] = ACTIONS(4892), - [anon_sym_0o] = ACTIONS(4892), - [anon_sym_0x] = ACTIONS(4892), - [sym_val_date] = ACTIONS(4890), - [anon_sym_DQUOTE] = ACTIONS(4890), - [sym__str_single_quotes] = ACTIONS(4890), - [sym__str_back_ticks] = ACTIONS(4890), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4890), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4890), - [anon_sym_err_GT] = ACTIONS(4892), - [anon_sym_out_GT] = ACTIONS(4892), - [anon_sym_e_GT] = ACTIONS(4892), - [anon_sym_o_GT] = ACTIONS(4892), - [anon_sym_err_PLUSout_GT] = ACTIONS(4892), - [anon_sym_out_PLUSerr_GT] = ACTIONS(4892), - [anon_sym_o_PLUSe_GT] = ACTIONS(4892), - [anon_sym_e_PLUSo_GT] = ACTIONS(4892), - [anon_sym_err_GT_GT] = ACTIONS(4890), - [anon_sym_out_GT_GT] = ACTIONS(4890), - [anon_sym_e_GT_GT] = ACTIONS(4890), - [anon_sym_o_GT_GT] = ACTIONS(4890), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4890), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4890), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4890), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4890), - [aux_sym_unquoted_token1] = ACTIONS(4892), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(4890), + [ts_builtin_sym_end] = ACTIONS(4899), + [sym__newline] = ACTIONS(4899), + [anon_sym_SEMI] = ACTIONS(4899), + [anon_sym_PIPE] = ACTIONS(4899), + [anon_sym_err_GT_PIPE] = ACTIONS(4899), + [anon_sym_out_GT_PIPE] = ACTIONS(4899), + [anon_sym_e_GT_PIPE] = ACTIONS(4899), + [anon_sym_o_GT_PIPE] = ACTIONS(4899), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4899), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4899), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4899), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4899), + [anon_sym_LBRACK] = ACTIONS(4899), + [anon_sym_LPAREN] = ACTIONS(4901), + [anon_sym_DOLLAR] = ACTIONS(4901), + [anon_sym_DASH_DASH] = ACTIONS(4899), + [anon_sym_DASH2] = ACTIONS(4901), + [anon_sym_LBRACE] = ACTIONS(4899), + [anon_sym_DOT_DOT] = ACTIONS(4901), + [anon_sym_LPAREN2] = ACTIONS(4412), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4899), + [anon_sym_DOT_DOT_LT] = ACTIONS(4899), + [anon_sym_null] = ACTIONS(4899), + [anon_sym_true] = ACTIONS(4899), + [anon_sym_false] = ACTIONS(4899), + [aux_sym__val_number_decimal_token1] = ACTIONS(4901), + [aux_sym__val_number_decimal_token2] = ACTIONS(4899), + [aux_sym__val_number_decimal_token3] = ACTIONS(4899), + [aux_sym__val_number_decimal_token4] = ACTIONS(4899), + [aux_sym__val_number_token1] = ACTIONS(4899), + [aux_sym__val_number_token2] = ACTIONS(4899), + [aux_sym__val_number_token3] = ACTIONS(4899), + [aux_sym__val_number_token4] = ACTIONS(4899), + [aux_sym__val_number_token5] = ACTIONS(4899), + [aux_sym__val_number_token6] = ACTIONS(4899), + [anon_sym_0b] = ACTIONS(4901), + [anon_sym_0o] = ACTIONS(4901), + [anon_sym_0x] = ACTIONS(4901), + [sym_val_date] = ACTIONS(4899), + [anon_sym_DQUOTE] = ACTIONS(4899), + [sym__str_single_quotes] = ACTIONS(4899), + [sym__str_back_ticks] = ACTIONS(4899), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4899), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4899), + [anon_sym_err_GT] = ACTIONS(4901), + [anon_sym_out_GT] = ACTIONS(4901), + [anon_sym_e_GT] = ACTIONS(4901), + [anon_sym_o_GT] = ACTIONS(4901), + [anon_sym_err_PLUSout_GT] = ACTIONS(4901), + [anon_sym_out_PLUSerr_GT] = ACTIONS(4901), + [anon_sym_o_PLUSe_GT] = ACTIONS(4901), + [anon_sym_e_PLUSo_GT] = ACTIONS(4901), + [anon_sym_err_GT_GT] = ACTIONS(4899), + [anon_sym_out_GT_GT] = ACTIONS(4899), + [anon_sym_e_GT_GT] = ACTIONS(4899), + [anon_sym_o_GT_GT] = ACTIONS(4899), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4899), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4899), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4899), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4899), + [aux_sym_unquoted_token1] = ACTIONS(4901), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(4899), }, [1673] = { [sym__expr_parenthesized_immediate] = STATE(7420), [sym_comment] = STATE(1673), - [ts_builtin_sym_end] = ACTIONS(4849), - [sym__newline] = ACTIONS(4849), - [anon_sym_SEMI] = ACTIONS(4849), - [anon_sym_PIPE] = ACTIONS(4849), - [anon_sym_err_GT_PIPE] = ACTIONS(4849), - [anon_sym_out_GT_PIPE] = ACTIONS(4849), - [anon_sym_e_GT_PIPE] = ACTIONS(4849), - [anon_sym_o_GT_PIPE] = ACTIONS(4849), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4849), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4849), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4849), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4849), - [anon_sym_LBRACK] = ACTIONS(4849), - [anon_sym_LPAREN] = ACTIONS(4851), - [anon_sym_DOLLAR] = ACTIONS(4851), - [anon_sym_DASH_DASH] = ACTIONS(4849), - [anon_sym_DASH2] = ACTIONS(4851), - [anon_sym_LBRACE] = ACTIONS(4849), - [anon_sym_DOT_DOT] = ACTIONS(4851), - [anon_sym_LPAREN2] = ACTIONS(4403), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4849), - [anon_sym_DOT_DOT_LT] = ACTIONS(4849), - [anon_sym_null] = ACTIONS(4849), - [anon_sym_true] = ACTIONS(4849), - [anon_sym_false] = ACTIONS(4849), - [aux_sym__val_number_decimal_token1] = ACTIONS(4851), - [aux_sym__val_number_decimal_token2] = ACTIONS(4849), - [aux_sym__val_number_decimal_token3] = ACTIONS(4849), - [aux_sym__val_number_decimal_token4] = ACTIONS(4849), - [aux_sym__val_number_token1] = ACTIONS(4849), - [aux_sym__val_number_token2] = ACTIONS(4849), - [aux_sym__val_number_token3] = ACTIONS(4849), - [aux_sym__val_number_token4] = ACTIONS(4849), - [aux_sym__val_number_token5] = ACTIONS(4849), - [aux_sym__val_number_token6] = ACTIONS(4849), - [anon_sym_0b] = ACTIONS(4851), - [anon_sym_0o] = ACTIONS(4851), - [anon_sym_0x] = ACTIONS(4851), - [sym_val_date] = ACTIONS(4849), - [anon_sym_DQUOTE] = ACTIONS(4849), - [sym__str_single_quotes] = ACTIONS(4849), - [sym__str_back_ticks] = ACTIONS(4849), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4849), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4849), - [anon_sym_err_GT] = ACTIONS(4851), - [anon_sym_out_GT] = ACTIONS(4851), - [anon_sym_e_GT] = ACTIONS(4851), - [anon_sym_o_GT] = ACTIONS(4851), - [anon_sym_err_PLUSout_GT] = ACTIONS(4851), - [anon_sym_out_PLUSerr_GT] = ACTIONS(4851), - [anon_sym_o_PLUSe_GT] = ACTIONS(4851), - [anon_sym_e_PLUSo_GT] = ACTIONS(4851), - [anon_sym_err_GT_GT] = ACTIONS(4849), - [anon_sym_out_GT_GT] = ACTIONS(4849), - [anon_sym_e_GT_GT] = ACTIONS(4849), - [anon_sym_o_GT_GT] = ACTIONS(4849), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4849), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4849), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4849), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4849), - [aux_sym_unquoted_token1] = ACTIONS(4851), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(4849), + [ts_builtin_sym_end] = ACTIONS(4858), + [sym__newline] = ACTIONS(4858), + [anon_sym_SEMI] = ACTIONS(4858), + [anon_sym_PIPE] = ACTIONS(4858), + [anon_sym_err_GT_PIPE] = ACTIONS(4858), + [anon_sym_out_GT_PIPE] = ACTIONS(4858), + [anon_sym_e_GT_PIPE] = ACTIONS(4858), + [anon_sym_o_GT_PIPE] = ACTIONS(4858), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4858), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4858), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4858), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4858), + [anon_sym_LBRACK] = ACTIONS(4858), + [anon_sym_LPAREN] = ACTIONS(4860), + [anon_sym_DOLLAR] = ACTIONS(4860), + [anon_sym_DASH_DASH] = ACTIONS(4858), + [anon_sym_DASH2] = ACTIONS(4860), + [anon_sym_LBRACE] = ACTIONS(4858), + [anon_sym_DOT_DOT] = ACTIONS(4860), + [anon_sym_LPAREN2] = ACTIONS(4412), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4858), + [anon_sym_DOT_DOT_LT] = ACTIONS(4858), + [anon_sym_null] = ACTIONS(4858), + [anon_sym_true] = ACTIONS(4858), + [anon_sym_false] = ACTIONS(4858), + [aux_sym__val_number_decimal_token1] = ACTIONS(4860), + [aux_sym__val_number_decimal_token2] = ACTIONS(4858), + [aux_sym__val_number_decimal_token3] = ACTIONS(4858), + [aux_sym__val_number_decimal_token4] = ACTIONS(4858), + [aux_sym__val_number_token1] = ACTIONS(4858), + [aux_sym__val_number_token2] = ACTIONS(4858), + [aux_sym__val_number_token3] = ACTIONS(4858), + [aux_sym__val_number_token4] = ACTIONS(4858), + [aux_sym__val_number_token5] = ACTIONS(4858), + [aux_sym__val_number_token6] = ACTIONS(4858), + [anon_sym_0b] = ACTIONS(4860), + [anon_sym_0o] = ACTIONS(4860), + [anon_sym_0x] = ACTIONS(4860), + [sym_val_date] = ACTIONS(4858), + [anon_sym_DQUOTE] = ACTIONS(4858), + [sym__str_single_quotes] = ACTIONS(4858), + [sym__str_back_ticks] = ACTIONS(4858), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4858), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4858), + [anon_sym_err_GT] = ACTIONS(4860), + [anon_sym_out_GT] = ACTIONS(4860), + [anon_sym_e_GT] = ACTIONS(4860), + [anon_sym_o_GT] = ACTIONS(4860), + [anon_sym_err_PLUSout_GT] = ACTIONS(4860), + [anon_sym_out_PLUSerr_GT] = ACTIONS(4860), + [anon_sym_o_PLUSe_GT] = ACTIONS(4860), + [anon_sym_e_PLUSo_GT] = ACTIONS(4860), + [anon_sym_err_GT_GT] = ACTIONS(4858), + [anon_sym_out_GT_GT] = ACTIONS(4858), + [anon_sym_e_GT_GT] = ACTIONS(4858), + [anon_sym_o_GT_GT] = ACTIONS(4858), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4858), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4858), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4858), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4858), + [aux_sym_unquoted_token1] = ACTIONS(4860), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(4858), }, [1674] = { [sym_cmd_identifier] = STATE(3983), @@ -232489,56 +232489,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_str] = STATE(3916), [sym__str_double_quotes] = STATE(3916), [sym_comment] = STATE(1674), - [aux_sym_cmd_identifier_token1] = ACTIONS(4950), - [aux_sym_cmd_identifier_token2] = ACTIONS(4952), - [aux_sym_cmd_identifier_token3] = ACTIONS(4952), - [aux_sym_cmd_identifier_token4] = ACTIONS(4952), - [aux_sym_cmd_identifier_token5] = ACTIONS(4952), - [aux_sym_cmd_identifier_token6] = ACTIONS(4952), - [aux_sym_cmd_identifier_token7] = ACTIONS(4952), - [aux_sym_cmd_identifier_token8] = ACTIONS(4952), - [aux_sym_cmd_identifier_token9] = ACTIONS(4950), - [aux_sym_cmd_identifier_token10] = ACTIONS(4952), - [aux_sym_cmd_identifier_token11] = ACTIONS(4952), - [aux_sym_cmd_identifier_token12] = ACTIONS(4952), - [aux_sym_cmd_identifier_token13] = ACTIONS(4950), - [aux_sym_cmd_identifier_token14] = ACTIONS(4952), - [aux_sym_cmd_identifier_token15] = ACTIONS(4950), - [aux_sym_cmd_identifier_token16] = ACTIONS(4952), - [aux_sym_cmd_identifier_token17] = ACTIONS(4952), - [aux_sym_cmd_identifier_token18] = ACTIONS(4952), - [aux_sym_cmd_identifier_token19] = ACTIONS(4952), - [aux_sym_cmd_identifier_token20] = ACTIONS(4952), - [aux_sym_cmd_identifier_token21] = ACTIONS(4952), - [aux_sym_cmd_identifier_token22] = ACTIONS(4952), - [aux_sym_cmd_identifier_token23] = ACTIONS(4952), - [aux_sym_cmd_identifier_token24] = ACTIONS(4952), - [aux_sym_cmd_identifier_token25] = ACTIONS(4952), - [aux_sym_cmd_identifier_token26] = ACTIONS(4952), - [aux_sym_cmd_identifier_token27] = ACTIONS(4952), - [aux_sym_cmd_identifier_token28] = ACTIONS(4952), - [aux_sym_cmd_identifier_token29] = ACTIONS(4952), - [aux_sym_cmd_identifier_token30] = ACTIONS(4952), - [aux_sym_cmd_identifier_token31] = ACTIONS(4952), - [aux_sym_cmd_identifier_token32] = ACTIONS(4952), - [aux_sym_cmd_identifier_token33] = ACTIONS(4952), - [aux_sym_cmd_identifier_token34] = ACTIONS(4950), - [aux_sym_cmd_identifier_token35] = ACTIONS(4952), - [aux_sym_cmd_identifier_token36] = ACTIONS(4952), - [aux_sym_cmd_identifier_token37] = ACTIONS(4952), - [aux_sym_cmd_identifier_token38] = ACTIONS(4950), - [aux_sym_cmd_identifier_token39] = ACTIONS(4952), - [aux_sym_cmd_identifier_token40] = ACTIONS(4952), - [sym__newline] = ACTIONS(4973), - [anon_sym_SEMI] = ACTIONS(4973), - [anon_sym_LBRACK] = ACTIONS(4956), - [anon_sym_RPAREN] = ACTIONS(4973), - [anon_sym_RBRACE] = ACTIONS(4973), - [anon_sym_STAR2] = ACTIONS(4958), - [aux_sym__val_number_decimal_token1] = ACTIONS(4960), - [aux_sym__val_number_decimal_token2] = ACTIONS(4960), - [aux_sym__val_number_decimal_token3] = ACTIONS(4962), - [aux_sym__val_number_decimal_token4] = ACTIONS(4964), + [aux_sym_cmd_identifier_token1] = ACTIONS(4959), + [aux_sym_cmd_identifier_token2] = ACTIONS(4961), + [aux_sym_cmd_identifier_token3] = ACTIONS(4961), + [aux_sym_cmd_identifier_token4] = ACTIONS(4961), + [aux_sym_cmd_identifier_token5] = ACTIONS(4961), + [aux_sym_cmd_identifier_token6] = ACTIONS(4961), + [aux_sym_cmd_identifier_token7] = ACTIONS(4961), + [aux_sym_cmd_identifier_token8] = ACTIONS(4961), + [aux_sym_cmd_identifier_token9] = ACTIONS(4959), + [aux_sym_cmd_identifier_token10] = ACTIONS(4961), + [aux_sym_cmd_identifier_token11] = ACTIONS(4961), + [aux_sym_cmd_identifier_token12] = ACTIONS(4961), + [aux_sym_cmd_identifier_token13] = ACTIONS(4959), + [aux_sym_cmd_identifier_token14] = ACTIONS(4961), + [aux_sym_cmd_identifier_token15] = ACTIONS(4959), + [aux_sym_cmd_identifier_token16] = ACTIONS(4961), + [aux_sym_cmd_identifier_token17] = ACTIONS(4961), + [aux_sym_cmd_identifier_token18] = ACTIONS(4961), + [aux_sym_cmd_identifier_token19] = ACTIONS(4961), + [aux_sym_cmd_identifier_token20] = ACTIONS(4961), + [aux_sym_cmd_identifier_token21] = ACTIONS(4961), + [aux_sym_cmd_identifier_token22] = ACTIONS(4961), + [aux_sym_cmd_identifier_token23] = ACTIONS(4961), + [aux_sym_cmd_identifier_token24] = ACTIONS(4961), + [aux_sym_cmd_identifier_token25] = ACTIONS(4961), + [aux_sym_cmd_identifier_token26] = ACTIONS(4961), + [aux_sym_cmd_identifier_token27] = ACTIONS(4961), + [aux_sym_cmd_identifier_token28] = ACTIONS(4961), + [aux_sym_cmd_identifier_token29] = ACTIONS(4961), + [aux_sym_cmd_identifier_token30] = ACTIONS(4961), + [aux_sym_cmd_identifier_token31] = ACTIONS(4961), + [aux_sym_cmd_identifier_token32] = ACTIONS(4961), + [aux_sym_cmd_identifier_token33] = ACTIONS(4961), + [aux_sym_cmd_identifier_token34] = ACTIONS(4959), + [aux_sym_cmd_identifier_token35] = ACTIONS(4961), + [aux_sym_cmd_identifier_token36] = ACTIONS(4961), + [aux_sym_cmd_identifier_token37] = ACTIONS(4961), + [aux_sym_cmd_identifier_token38] = ACTIONS(4959), + [aux_sym_cmd_identifier_token39] = ACTIONS(4961), + [aux_sym_cmd_identifier_token40] = ACTIONS(4961), + [sym__newline] = ACTIONS(4982), + [anon_sym_SEMI] = ACTIONS(4982), + [anon_sym_LBRACK] = ACTIONS(4965), + [anon_sym_RPAREN] = ACTIONS(4982), + [anon_sym_RBRACE] = ACTIONS(4982), + [anon_sym_STAR2] = ACTIONS(4967), + [aux_sym__val_number_decimal_token1] = ACTIONS(4969), + [aux_sym__val_number_decimal_token2] = ACTIONS(4969), + [aux_sym__val_number_decimal_token3] = ACTIONS(4971), + [aux_sym__val_number_decimal_token4] = ACTIONS(4973), [anon_sym_DQUOTE] = ACTIONS(1295), [sym__str_single_quotes] = ACTIONS(1297), [sym__str_back_ticks] = ACTIONS(1297), @@ -232547,70 +232547,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [1675] = { [sym_comment] = STATE(1675), - [ts_builtin_sym_end] = ACTIONS(4879), - [sym_long_flag_identifier] = ACTIONS(4975), - [sym__newline] = ACTIONS(4879), - [anon_sym_SEMI] = ACTIONS(4879), - [anon_sym_PIPE] = ACTIONS(4879), - [anon_sym_err_GT_PIPE] = ACTIONS(4879), - [anon_sym_out_GT_PIPE] = ACTIONS(4879), - [anon_sym_e_GT_PIPE] = ACTIONS(4879), - [anon_sym_o_GT_PIPE] = ACTIONS(4879), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4879), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4879), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4879), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4879), - [anon_sym_LBRACK] = ACTIONS(4879), - [anon_sym_LPAREN] = ACTIONS(4879), - [anon_sym_DOLLAR] = ACTIONS(4881), - [anon_sym_DASH_DASH] = ACTIONS(4879), - [anon_sym_DASH2] = ACTIONS(4881), - [anon_sym_LBRACE] = ACTIONS(4879), - [anon_sym_DOT_DOT] = ACTIONS(4881), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4879), - [anon_sym_DOT_DOT_LT] = ACTIONS(4879), - [anon_sym_null] = ACTIONS(4881), - [anon_sym_true] = ACTIONS(4881), - [anon_sym_false] = ACTIONS(4881), - [aux_sym__val_number_decimal_token1] = ACTIONS(4881), - [aux_sym__val_number_decimal_token2] = ACTIONS(4879), - [aux_sym__val_number_decimal_token3] = ACTIONS(4879), - [aux_sym__val_number_decimal_token4] = ACTIONS(4879), - [aux_sym__val_number_token1] = ACTIONS(4881), - [aux_sym__val_number_token2] = ACTIONS(4881), - [aux_sym__val_number_token3] = ACTIONS(4881), - [aux_sym__val_number_token4] = ACTIONS(4881), - [aux_sym__val_number_token5] = ACTIONS(4879), - [aux_sym__val_number_token6] = ACTIONS(4881), - [anon_sym_0b] = ACTIONS(4881), - [anon_sym_0o] = ACTIONS(4881), - [anon_sym_0x] = ACTIONS(4881), - [sym_val_date] = ACTIONS(4881), - [anon_sym_DQUOTE] = ACTIONS(4879), - [sym__str_single_quotes] = ACTIONS(4879), - [sym__str_back_ticks] = ACTIONS(4879), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4879), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4879), - [anon_sym_err_GT] = ACTIONS(4881), - [anon_sym_out_GT] = ACTIONS(4881), - [anon_sym_e_GT] = ACTIONS(4881), - [anon_sym_o_GT] = ACTIONS(4881), - [anon_sym_err_PLUSout_GT] = ACTIONS(4881), - [anon_sym_out_PLUSerr_GT] = ACTIONS(4881), - [anon_sym_o_PLUSe_GT] = ACTIONS(4881), - [anon_sym_e_PLUSo_GT] = ACTIONS(4881), - [anon_sym_err_GT_GT] = ACTIONS(4879), - [anon_sym_out_GT_GT] = ACTIONS(4879), - [anon_sym_e_GT_GT] = ACTIONS(4879), - [anon_sym_o_GT_GT] = ACTIONS(4879), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4879), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4879), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4879), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4879), - [anon_sym_EQ2] = ACTIONS(4977), - [aux_sym_unquoted_token1] = ACTIONS(4881), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(4879), + [ts_builtin_sym_end] = ACTIONS(4888), + [sym_long_flag_identifier] = ACTIONS(4984), + [sym__newline] = ACTIONS(4888), + [anon_sym_SEMI] = ACTIONS(4888), + [anon_sym_PIPE] = ACTIONS(4888), + [anon_sym_err_GT_PIPE] = ACTIONS(4888), + [anon_sym_out_GT_PIPE] = ACTIONS(4888), + [anon_sym_e_GT_PIPE] = ACTIONS(4888), + [anon_sym_o_GT_PIPE] = ACTIONS(4888), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4888), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4888), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4888), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4888), + [anon_sym_LBRACK] = ACTIONS(4888), + [anon_sym_LPAREN] = ACTIONS(4888), + [anon_sym_DOLLAR] = ACTIONS(4890), + [anon_sym_DASH_DASH] = ACTIONS(4888), + [anon_sym_DASH2] = ACTIONS(4890), + [anon_sym_LBRACE] = ACTIONS(4888), + [anon_sym_DOT_DOT] = ACTIONS(4890), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4888), + [anon_sym_DOT_DOT_LT] = ACTIONS(4888), + [anon_sym_null] = ACTIONS(4890), + [anon_sym_true] = ACTIONS(4890), + [anon_sym_false] = ACTIONS(4890), + [aux_sym__val_number_decimal_token1] = ACTIONS(4890), + [aux_sym__val_number_decimal_token2] = ACTIONS(4888), + [aux_sym__val_number_decimal_token3] = ACTIONS(4888), + [aux_sym__val_number_decimal_token4] = ACTIONS(4888), + [aux_sym__val_number_token1] = ACTIONS(4890), + [aux_sym__val_number_token2] = ACTIONS(4890), + [aux_sym__val_number_token3] = ACTIONS(4890), + [aux_sym__val_number_token4] = ACTIONS(4890), + [aux_sym__val_number_token5] = ACTIONS(4888), + [aux_sym__val_number_token6] = ACTIONS(4890), + [anon_sym_0b] = ACTIONS(4890), + [anon_sym_0o] = ACTIONS(4890), + [anon_sym_0x] = ACTIONS(4890), + [sym_val_date] = ACTIONS(4890), + [anon_sym_DQUOTE] = ACTIONS(4888), + [sym__str_single_quotes] = ACTIONS(4888), + [sym__str_back_ticks] = ACTIONS(4888), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4888), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4888), + [anon_sym_err_GT] = ACTIONS(4890), + [anon_sym_out_GT] = ACTIONS(4890), + [anon_sym_e_GT] = ACTIONS(4890), + [anon_sym_o_GT] = ACTIONS(4890), + [anon_sym_err_PLUSout_GT] = ACTIONS(4890), + [anon_sym_out_PLUSerr_GT] = ACTIONS(4890), + [anon_sym_o_PLUSe_GT] = ACTIONS(4890), + [anon_sym_e_PLUSo_GT] = ACTIONS(4890), + [anon_sym_err_GT_GT] = ACTIONS(4888), + [anon_sym_out_GT_GT] = ACTIONS(4888), + [anon_sym_e_GT_GT] = ACTIONS(4888), + [anon_sym_o_GT_GT] = ACTIONS(4888), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4888), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4888), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4888), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4888), + [anon_sym_EQ2] = ACTIONS(4986), + [aux_sym_unquoted_token1] = ACTIONS(4890), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(4888), }, [1676] = { [sym_comment] = STATE(1676), @@ -232727,7 +232727,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bit_DASHand2] = ACTIONS(1947), [anon_sym_bit_DASHxor2] = ACTIONS(1947), [anon_sym_bit_DASHor2] = ACTIONS(1947), - [anon_sym_DOT2] = ACTIONS(4807), + [anon_sym_DOT2] = ACTIONS(4816), [anon_sym_err_GT] = ACTIONS(1945), [anon_sym_out_GT] = ACTIONS(1945), [anon_sym_e_GT] = ACTIONS(1945), @@ -232749,69 +232749,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [1678] = { [sym__expr_parenthesized_immediate] = STATE(7420), [sym_comment] = STATE(1678), - [ts_builtin_sym_end] = ACTIONS(4853), - [sym__newline] = ACTIONS(4853), - [anon_sym_SEMI] = ACTIONS(4853), - [anon_sym_PIPE] = ACTIONS(4853), - [anon_sym_err_GT_PIPE] = ACTIONS(4853), - [anon_sym_out_GT_PIPE] = ACTIONS(4853), - [anon_sym_e_GT_PIPE] = ACTIONS(4853), - [anon_sym_o_GT_PIPE] = ACTIONS(4853), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4853), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4853), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4853), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4853), - [anon_sym_LBRACK] = ACTIONS(4853), - [anon_sym_LPAREN] = ACTIONS(4855), - [anon_sym_DOLLAR] = ACTIONS(4855), - [anon_sym_DASH_DASH] = ACTIONS(4853), - [anon_sym_DASH2] = ACTIONS(4855), - [anon_sym_LBRACE] = ACTIONS(4853), - [anon_sym_DOT_DOT] = ACTIONS(4855), - [anon_sym_LPAREN2] = ACTIONS(4403), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4853), - [anon_sym_DOT_DOT_LT] = ACTIONS(4853), - [anon_sym_null] = ACTIONS(4853), - [anon_sym_true] = ACTIONS(4853), - [anon_sym_false] = ACTIONS(4853), - [aux_sym__val_number_decimal_token1] = ACTIONS(4855), - [aux_sym__val_number_decimal_token2] = ACTIONS(4853), - [aux_sym__val_number_decimal_token3] = ACTIONS(4853), - [aux_sym__val_number_decimal_token4] = ACTIONS(4853), - [aux_sym__val_number_token1] = ACTIONS(4853), - [aux_sym__val_number_token2] = ACTIONS(4853), - [aux_sym__val_number_token3] = ACTIONS(4853), - [aux_sym__val_number_token4] = ACTIONS(4853), - [aux_sym__val_number_token5] = ACTIONS(4853), - [aux_sym__val_number_token6] = ACTIONS(4853), - [anon_sym_0b] = ACTIONS(4855), - [anon_sym_0o] = ACTIONS(4855), - [anon_sym_0x] = ACTIONS(4855), - [sym_val_date] = ACTIONS(4853), - [anon_sym_DQUOTE] = ACTIONS(4853), - [sym__str_single_quotes] = ACTIONS(4853), - [sym__str_back_ticks] = ACTIONS(4853), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4853), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4853), - [anon_sym_err_GT] = ACTIONS(4855), - [anon_sym_out_GT] = ACTIONS(4855), - [anon_sym_e_GT] = ACTIONS(4855), - [anon_sym_o_GT] = ACTIONS(4855), - [anon_sym_err_PLUSout_GT] = ACTIONS(4855), - [anon_sym_out_PLUSerr_GT] = ACTIONS(4855), - [anon_sym_o_PLUSe_GT] = ACTIONS(4855), - [anon_sym_e_PLUSo_GT] = ACTIONS(4855), - [anon_sym_err_GT_GT] = ACTIONS(4853), - [anon_sym_out_GT_GT] = ACTIONS(4853), - [anon_sym_e_GT_GT] = ACTIONS(4853), - [anon_sym_o_GT_GT] = ACTIONS(4853), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4853), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4853), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4853), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4853), - [aux_sym_unquoted_token1] = ACTIONS(4855), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(4853), + [ts_builtin_sym_end] = ACTIONS(4862), + [sym__newline] = ACTIONS(4862), + [anon_sym_SEMI] = ACTIONS(4862), + [anon_sym_PIPE] = ACTIONS(4862), + [anon_sym_err_GT_PIPE] = ACTIONS(4862), + [anon_sym_out_GT_PIPE] = ACTIONS(4862), + [anon_sym_e_GT_PIPE] = ACTIONS(4862), + [anon_sym_o_GT_PIPE] = ACTIONS(4862), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4862), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4862), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4862), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4862), + [anon_sym_LBRACK] = ACTIONS(4862), + [anon_sym_LPAREN] = ACTIONS(4864), + [anon_sym_DOLLAR] = ACTIONS(4864), + [anon_sym_DASH_DASH] = ACTIONS(4862), + [anon_sym_DASH2] = ACTIONS(4864), + [anon_sym_LBRACE] = ACTIONS(4862), + [anon_sym_DOT_DOT] = ACTIONS(4864), + [anon_sym_LPAREN2] = ACTIONS(4412), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4862), + [anon_sym_DOT_DOT_LT] = ACTIONS(4862), + [anon_sym_null] = ACTIONS(4862), + [anon_sym_true] = ACTIONS(4862), + [anon_sym_false] = ACTIONS(4862), + [aux_sym__val_number_decimal_token1] = ACTIONS(4864), + [aux_sym__val_number_decimal_token2] = ACTIONS(4862), + [aux_sym__val_number_decimal_token3] = ACTIONS(4862), + [aux_sym__val_number_decimal_token4] = ACTIONS(4862), + [aux_sym__val_number_token1] = ACTIONS(4862), + [aux_sym__val_number_token2] = ACTIONS(4862), + [aux_sym__val_number_token3] = ACTIONS(4862), + [aux_sym__val_number_token4] = ACTIONS(4862), + [aux_sym__val_number_token5] = ACTIONS(4862), + [aux_sym__val_number_token6] = ACTIONS(4862), + [anon_sym_0b] = ACTIONS(4864), + [anon_sym_0o] = ACTIONS(4864), + [anon_sym_0x] = ACTIONS(4864), + [sym_val_date] = ACTIONS(4862), + [anon_sym_DQUOTE] = ACTIONS(4862), + [sym__str_single_quotes] = ACTIONS(4862), + [sym__str_back_ticks] = ACTIONS(4862), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4862), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4862), + [anon_sym_err_GT] = ACTIONS(4864), + [anon_sym_out_GT] = ACTIONS(4864), + [anon_sym_e_GT] = ACTIONS(4864), + [anon_sym_o_GT] = ACTIONS(4864), + [anon_sym_err_PLUSout_GT] = ACTIONS(4864), + [anon_sym_out_PLUSerr_GT] = ACTIONS(4864), + [anon_sym_o_PLUSe_GT] = ACTIONS(4864), + [anon_sym_e_PLUSo_GT] = ACTIONS(4864), + [anon_sym_err_GT_GT] = ACTIONS(4862), + [anon_sym_out_GT_GT] = ACTIONS(4862), + [anon_sym_e_GT_GT] = ACTIONS(4862), + [anon_sym_o_GT_GT] = ACTIONS(4862), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4862), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4862), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4862), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4862), + [aux_sym_unquoted_token1] = ACTIONS(4864), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(4862), }, [1679] = { [sym_comment] = STATE(1679), @@ -233035,7 +233035,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH2] = ACTIONS(958), [anon_sym_LBRACE] = ACTIONS(960), [anon_sym_DOT_DOT] = ACTIONS(958), - [anon_sym_QMARK2] = ACTIONS(4979), + [anon_sym_QMARK2] = ACTIONS(4988), [anon_sym_DOT_DOT_EQ] = ACTIONS(960), [anon_sym_DOT_DOT_LT] = ACTIONS(960), [anon_sym_null] = ACTIONS(960), @@ -233102,7 +233102,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH2] = ACTIONS(952), [anon_sym_LBRACE] = ACTIONS(954), [anon_sym_DOT_DOT] = ACTIONS(952), - [anon_sym_QMARK2] = ACTIONS(4981), + [anon_sym_QMARK2] = ACTIONS(4990), [anon_sym_DOT_DOT_EQ] = ACTIONS(954), [anon_sym_DOT_DOT_LT] = ACTIONS(954), [anon_sym_null] = ACTIONS(954), @@ -233196,7 +233196,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT2] = ACTIONS(948), [anon_sym_DOT_DOT_EQ2] = ACTIONS(950), [anon_sym_DOT_DOT_LT2] = ACTIONS(950), - [anon_sym_DOT2] = ACTIONS(4910), + [anon_sym_DOT2] = ACTIONS(4919), [anon_sym_err_GT] = ACTIONS(948), [anon_sym_out_GT] = ACTIONS(948), [anon_sym_e_GT] = ACTIONS(948), @@ -233218,69 +233218,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [1685] = { [sym__expr_parenthesized_immediate] = STATE(7221), [sym_comment] = STATE(1685), - [sym__newline] = ACTIONS(4983), - [anon_sym_SEMI] = ACTIONS(4983), - [anon_sym_PIPE] = ACTIONS(4983), - [anon_sym_err_GT_PIPE] = ACTIONS(4983), - [anon_sym_out_GT_PIPE] = ACTIONS(4983), - [anon_sym_e_GT_PIPE] = ACTIONS(4983), - [anon_sym_o_GT_PIPE] = ACTIONS(4983), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4983), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4983), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4983), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4983), - [anon_sym_LBRACK] = ACTIONS(4983), - [anon_sym_LPAREN] = ACTIONS(4985), - [anon_sym_RPAREN] = ACTIONS(4983), - [anon_sym_DOLLAR] = ACTIONS(4985), - [anon_sym_DASH_DASH] = ACTIONS(4983), - [anon_sym_DASH2] = ACTIONS(4985), - [anon_sym_LBRACE] = ACTIONS(4983), - [anon_sym_DOT_DOT] = ACTIONS(4985), - [anon_sym_LPAREN2] = ACTIONS(4403), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4983), - [anon_sym_DOT_DOT_LT] = ACTIONS(4983), - [anon_sym_null] = ACTIONS(4983), - [anon_sym_true] = ACTIONS(4983), - [anon_sym_false] = ACTIONS(4983), - [aux_sym__val_number_decimal_token1] = ACTIONS(4985), - [aux_sym__val_number_decimal_token2] = ACTIONS(4983), - [aux_sym__val_number_decimal_token3] = ACTIONS(4983), - [aux_sym__val_number_decimal_token4] = ACTIONS(4983), - [aux_sym__val_number_token1] = ACTIONS(4983), - [aux_sym__val_number_token2] = ACTIONS(4983), - [aux_sym__val_number_token3] = ACTIONS(4983), - [aux_sym__val_number_token4] = ACTIONS(4983), - [aux_sym__val_number_token5] = ACTIONS(4983), - [aux_sym__val_number_token6] = ACTIONS(4983), - [anon_sym_0b] = ACTIONS(4985), - [anon_sym_0o] = ACTIONS(4985), - [anon_sym_0x] = ACTIONS(4985), - [sym_val_date] = ACTIONS(4983), - [anon_sym_DQUOTE] = ACTIONS(4983), - [sym__str_single_quotes] = ACTIONS(4983), - [sym__str_back_ticks] = ACTIONS(4983), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4983), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4983), - [anon_sym_err_GT] = ACTIONS(4985), - [anon_sym_out_GT] = ACTIONS(4985), - [anon_sym_e_GT] = ACTIONS(4985), - [anon_sym_o_GT] = ACTIONS(4985), - [anon_sym_err_PLUSout_GT] = ACTIONS(4985), - [anon_sym_out_PLUSerr_GT] = ACTIONS(4985), - [anon_sym_o_PLUSe_GT] = ACTIONS(4985), - [anon_sym_e_PLUSo_GT] = ACTIONS(4985), - [anon_sym_err_GT_GT] = ACTIONS(4983), - [anon_sym_out_GT_GT] = ACTIONS(4983), - [anon_sym_e_GT_GT] = ACTIONS(4983), - [anon_sym_o_GT_GT] = ACTIONS(4983), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4983), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4983), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4983), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4983), - [aux_sym_unquoted_token1] = ACTIONS(4985), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(4983), + [sym__newline] = ACTIONS(4992), + [anon_sym_SEMI] = ACTIONS(4992), + [anon_sym_PIPE] = ACTIONS(4992), + [anon_sym_err_GT_PIPE] = ACTIONS(4992), + [anon_sym_out_GT_PIPE] = ACTIONS(4992), + [anon_sym_e_GT_PIPE] = ACTIONS(4992), + [anon_sym_o_GT_PIPE] = ACTIONS(4992), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4992), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4992), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4992), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4992), + [anon_sym_LBRACK] = ACTIONS(4992), + [anon_sym_LPAREN] = ACTIONS(4994), + [anon_sym_RPAREN] = ACTIONS(4992), + [anon_sym_DOLLAR] = ACTIONS(4994), + [anon_sym_DASH_DASH] = ACTIONS(4992), + [anon_sym_DASH2] = ACTIONS(4994), + [anon_sym_LBRACE] = ACTIONS(4992), + [anon_sym_DOT_DOT] = ACTIONS(4994), + [anon_sym_LPAREN2] = ACTIONS(4412), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4992), + [anon_sym_DOT_DOT_LT] = ACTIONS(4992), + [anon_sym_null] = ACTIONS(4992), + [anon_sym_true] = ACTIONS(4992), + [anon_sym_false] = ACTIONS(4992), + [aux_sym__val_number_decimal_token1] = ACTIONS(4994), + [aux_sym__val_number_decimal_token2] = ACTIONS(4992), + [aux_sym__val_number_decimal_token3] = ACTIONS(4992), + [aux_sym__val_number_decimal_token4] = ACTIONS(4992), + [aux_sym__val_number_token1] = ACTIONS(4992), + [aux_sym__val_number_token2] = ACTIONS(4992), + [aux_sym__val_number_token3] = ACTIONS(4992), + [aux_sym__val_number_token4] = ACTIONS(4992), + [aux_sym__val_number_token5] = ACTIONS(4992), + [aux_sym__val_number_token6] = ACTIONS(4992), + [anon_sym_0b] = ACTIONS(4994), + [anon_sym_0o] = ACTIONS(4994), + [anon_sym_0x] = ACTIONS(4994), + [sym_val_date] = ACTIONS(4992), + [anon_sym_DQUOTE] = ACTIONS(4992), + [sym__str_single_quotes] = ACTIONS(4992), + [sym__str_back_ticks] = ACTIONS(4992), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4992), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4992), + [anon_sym_err_GT] = ACTIONS(4994), + [anon_sym_out_GT] = ACTIONS(4994), + [anon_sym_e_GT] = ACTIONS(4994), + [anon_sym_o_GT] = ACTIONS(4994), + [anon_sym_err_PLUSout_GT] = ACTIONS(4994), + [anon_sym_out_PLUSerr_GT] = ACTIONS(4994), + [anon_sym_o_PLUSe_GT] = ACTIONS(4994), + [anon_sym_e_PLUSo_GT] = ACTIONS(4994), + [anon_sym_err_GT_GT] = ACTIONS(4992), + [anon_sym_out_GT_GT] = ACTIONS(4992), + [anon_sym_e_GT_GT] = ACTIONS(4992), + [anon_sym_o_GT_GT] = ACTIONS(4992), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4992), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4992), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4992), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4992), + [aux_sym_unquoted_token1] = ACTIONS(4994), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(4992), }, [1686] = { [sym_comment] = STATE(1686), @@ -233397,7 +233397,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bit_DASHand2] = ACTIONS(1939), [anon_sym_bit_DASHxor2] = ACTIONS(1939), [anon_sym_bit_DASHor2] = ACTIONS(1939), - [anon_sym_DOT2] = ACTIONS(4807), + [anon_sym_DOT2] = ACTIONS(4816), [anon_sym_err_GT] = ACTIONS(1937), [anon_sym_out_GT] = ACTIONS(1937), [anon_sym_e_GT] = ACTIONS(1937), @@ -233546,76 +233546,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1693), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1693), [aux_sym_unquoted_token1] = ACTIONS(1681), - [aux_sym_unquoted_token2] = ACTIONS(4604), + [aux_sym_unquoted_token2] = ACTIONS(4613), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(1693), }, [1690] = { [sym_comment] = STATE(1690), - [sym__newline] = ACTIONS(4987), - [anon_sym_SEMI] = ACTIONS(4987), - [anon_sym_PIPE] = ACTIONS(4987), - [anon_sym_err_GT_PIPE] = ACTIONS(4987), - [anon_sym_out_GT_PIPE] = ACTIONS(4987), - [anon_sym_e_GT_PIPE] = ACTIONS(4987), - [anon_sym_o_GT_PIPE] = ACTIONS(4987), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4987), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4987), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4987), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4987), - [anon_sym_LBRACK] = ACTIONS(4987), - [anon_sym_LPAREN] = ACTIONS(4989), - [anon_sym_RPAREN] = ACTIONS(4987), - [anon_sym_DOLLAR] = ACTIONS(4989), - [anon_sym_DASH_DASH] = ACTIONS(4987), - [anon_sym_DASH2] = ACTIONS(4989), - [anon_sym_LBRACE] = ACTIONS(4987), - [anon_sym_RBRACE] = ACTIONS(4987), - [anon_sym_DOT_DOT] = ACTIONS(4989), - [anon_sym_LPAREN2] = ACTIONS(4987), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4987), - [anon_sym_DOT_DOT_LT] = ACTIONS(4987), - [anon_sym_null] = ACTIONS(4987), - [anon_sym_true] = ACTIONS(4987), - [anon_sym_false] = ACTIONS(4987), - [aux_sym__val_number_decimal_token1] = ACTIONS(4989), - [aux_sym__val_number_decimal_token2] = ACTIONS(4987), - [aux_sym__val_number_decimal_token3] = ACTIONS(4987), - [aux_sym__val_number_decimal_token4] = ACTIONS(4987), - [aux_sym__val_number_token1] = ACTIONS(4987), - [aux_sym__val_number_token2] = ACTIONS(4987), - [aux_sym__val_number_token3] = ACTIONS(4987), - [aux_sym__val_number_token4] = ACTIONS(4987), - [aux_sym__val_number_token5] = ACTIONS(4987), - [aux_sym__val_number_token6] = ACTIONS(4987), - [anon_sym_0b] = ACTIONS(4989), - [anon_sym_0o] = ACTIONS(4989), - [anon_sym_0x] = ACTIONS(4989), - [sym_val_date] = ACTIONS(4987), - [anon_sym_DQUOTE] = ACTIONS(4987), - [sym__str_single_quotes] = ACTIONS(4987), - [sym__str_back_ticks] = ACTIONS(4987), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4987), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4987), - [anon_sym_err_GT] = ACTIONS(4989), - [anon_sym_out_GT] = ACTIONS(4989), - [anon_sym_e_GT] = ACTIONS(4989), - [anon_sym_o_GT] = ACTIONS(4989), - [anon_sym_err_PLUSout_GT] = ACTIONS(4989), - [anon_sym_out_PLUSerr_GT] = ACTIONS(4989), - [anon_sym_o_PLUSe_GT] = ACTIONS(4989), - [anon_sym_e_PLUSo_GT] = ACTIONS(4989), - [anon_sym_err_GT_GT] = ACTIONS(4987), - [anon_sym_out_GT_GT] = ACTIONS(4987), - [anon_sym_e_GT_GT] = ACTIONS(4987), - [anon_sym_o_GT_GT] = ACTIONS(4987), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4987), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4987), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4987), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4987), - [aux_sym_unquoted_token1] = ACTIONS(4989), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(4987), + [sym__newline] = ACTIONS(4996), + [anon_sym_SEMI] = ACTIONS(4996), + [anon_sym_PIPE] = ACTIONS(4996), + [anon_sym_err_GT_PIPE] = ACTIONS(4996), + [anon_sym_out_GT_PIPE] = ACTIONS(4996), + [anon_sym_e_GT_PIPE] = ACTIONS(4996), + [anon_sym_o_GT_PIPE] = ACTIONS(4996), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4996), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4996), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4996), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4996), + [anon_sym_LBRACK] = ACTIONS(4996), + [anon_sym_LPAREN] = ACTIONS(4998), + [anon_sym_RPAREN] = ACTIONS(4996), + [anon_sym_DOLLAR] = ACTIONS(4998), + [anon_sym_DASH_DASH] = ACTIONS(4996), + [anon_sym_DASH2] = ACTIONS(4998), + [anon_sym_LBRACE] = ACTIONS(4996), + [anon_sym_RBRACE] = ACTIONS(4996), + [anon_sym_DOT_DOT] = ACTIONS(4998), + [anon_sym_LPAREN2] = ACTIONS(4996), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4996), + [anon_sym_DOT_DOT_LT] = ACTIONS(4996), + [anon_sym_null] = ACTIONS(4996), + [anon_sym_true] = ACTIONS(4996), + [anon_sym_false] = ACTIONS(4996), + [aux_sym__val_number_decimal_token1] = ACTIONS(4998), + [aux_sym__val_number_decimal_token2] = ACTIONS(4996), + [aux_sym__val_number_decimal_token3] = ACTIONS(4996), + [aux_sym__val_number_decimal_token4] = ACTIONS(4996), + [aux_sym__val_number_token1] = ACTIONS(4996), + [aux_sym__val_number_token2] = ACTIONS(4996), + [aux_sym__val_number_token3] = ACTIONS(4996), + [aux_sym__val_number_token4] = ACTIONS(4996), + [aux_sym__val_number_token5] = ACTIONS(4996), + [aux_sym__val_number_token6] = ACTIONS(4996), + [anon_sym_0b] = ACTIONS(4998), + [anon_sym_0o] = ACTIONS(4998), + [anon_sym_0x] = ACTIONS(4998), + [sym_val_date] = ACTIONS(4996), + [anon_sym_DQUOTE] = ACTIONS(4996), + [sym__str_single_quotes] = ACTIONS(4996), + [sym__str_back_ticks] = ACTIONS(4996), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4996), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4996), + [anon_sym_err_GT] = ACTIONS(4998), + [anon_sym_out_GT] = ACTIONS(4998), + [anon_sym_e_GT] = ACTIONS(4998), + [anon_sym_o_GT] = ACTIONS(4998), + [anon_sym_err_PLUSout_GT] = ACTIONS(4998), + [anon_sym_out_PLUSerr_GT] = ACTIONS(4998), + [anon_sym_o_PLUSe_GT] = ACTIONS(4998), + [anon_sym_e_PLUSo_GT] = ACTIONS(4998), + [anon_sym_err_GT_GT] = ACTIONS(4996), + [anon_sym_out_GT_GT] = ACTIONS(4996), + [anon_sym_e_GT_GT] = ACTIONS(4996), + [anon_sym_o_GT_GT] = ACTIONS(4996), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4996), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4996), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4996), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4996), + [aux_sym_unquoted_token1] = ACTIONS(4998), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(4996), }, [1691] = { [sym_comment] = STATE(1691), @@ -233762,56 +233762,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_str] = STATE(3916), [sym__str_double_quotes] = STATE(3916), [sym_comment] = STATE(1693), - [aux_sym_cmd_identifier_token1] = ACTIONS(4950), - [aux_sym_cmd_identifier_token2] = ACTIONS(4952), - [aux_sym_cmd_identifier_token3] = ACTIONS(4952), - [aux_sym_cmd_identifier_token4] = ACTIONS(4952), - [aux_sym_cmd_identifier_token5] = ACTIONS(4952), - [aux_sym_cmd_identifier_token6] = ACTIONS(4952), - [aux_sym_cmd_identifier_token7] = ACTIONS(4952), - [aux_sym_cmd_identifier_token8] = ACTIONS(4952), - [aux_sym_cmd_identifier_token9] = ACTIONS(4950), - [aux_sym_cmd_identifier_token10] = ACTIONS(4952), - [aux_sym_cmd_identifier_token11] = ACTIONS(4952), - [aux_sym_cmd_identifier_token12] = ACTIONS(4952), - [aux_sym_cmd_identifier_token13] = ACTIONS(4950), - [aux_sym_cmd_identifier_token14] = ACTIONS(4952), - [aux_sym_cmd_identifier_token15] = ACTIONS(4950), - [aux_sym_cmd_identifier_token16] = ACTIONS(4952), - [aux_sym_cmd_identifier_token17] = ACTIONS(4952), - [aux_sym_cmd_identifier_token18] = ACTIONS(4952), - [aux_sym_cmd_identifier_token19] = ACTIONS(4952), - [aux_sym_cmd_identifier_token20] = ACTIONS(4952), - [aux_sym_cmd_identifier_token21] = ACTIONS(4952), - [aux_sym_cmd_identifier_token22] = ACTIONS(4952), - [aux_sym_cmd_identifier_token23] = ACTIONS(4952), - [aux_sym_cmd_identifier_token24] = ACTIONS(4952), - [aux_sym_cmd_identifier_token25] = ACTIONS(4952), - [aux_sym_cmd_identifier_token26] = ACTIONS(4952), - [aux_sym_cmd_identifier_token27] = ACTIONS(4952), - [aux_sym_cmd_identifier_token28] = ACTIONS(4952), - [aux_sym_cmd_identifier_token29] = ACTIONS(4952), - [aux_sym_cmd_identifier_token30] = ACTIONS(4952), - [aux_sym_cmd_identifier_token31] = ACTIONS(4952), - [aux_sym_cmd_identifier_token32] = ACTIONS(4952), - [aux_sym_cmd_identifier_token33] = ACTIONS(4952), - [aux_sym_cmd_identifier_token34] = ACTIONS(4950), - [aux_sym_cmd_identifier_token35] = ACTIONS(4952), - [aux_sym_cmd_identifier_token36] = ACTIONS(4952), - [aux_sym_cmd_identifier_token37] = ACTIONS(4952), - [aux_sym_cmd_identifier_token38] = ACTIONS(4950), - [aux_sym_cmd_identifier_token39] = ACTIONS(4952), - [aux_sym_cmd_identifier_token40] = ACTIONS(4952), - [sym__newline] = ACTIONS(4991), - [anon_sym_SEMI] = ACTIONS(4991), - [anon_sym_LBRACK] = ACTIONS(4956), - [anon_sym_RPAREN] = ACTIONS(4991), - [anon_sym_RBRACE] = ACTIONS(4991), - [anon_sym_STAR2] = ACTIONS(4958), - [aux_sym__val_number_decimal_token1] = ACTIONS(4960), - [aux_sym__val_number_decimal_token2] = ACTIONS(4960), - [aux_sym__val_number_decimal_token3] = ACTIONS(4962), - [aux_sym__val_number_decimal_token4] = ACTIONS(4964), + [aux_sym_cmd_identifier_token1] = ACTIONS(4959), + [aux_sym_cmd_identifier_token2] = ACTIONS(4961), + [aux_sym_cmd_identifier_token3] = ACTIONS(4961), + [aux_sym_cmd_identifier_token4] = ACTIONS(4961), + [aux_sym_cmd_identifier_token5] = ACTIONS(4961), + [aux_sym_cmd_identifier_token6] = ACTIONS(4961), + [aux_sym_cmd_identifier_token7] = ACTIONS(4961), + [aux_sym_cmd_identifier_token8] = ACTIONS(4961), + [aux_sym_cmd_identifier_token9] = ACTIONS(4959), + [aux_sym_cmd_identifier_token10] = ACTIONS(4961), + [aux_sym_cmd_identifier_token11] = ACTIONS(4961), + [aux_sym_cmd_identifier_token12] = ACTIONS(4961), + [aux_sym_cmd_identifier_token13] = ACTIONS(4959), + [aux_sym_cmd_identifier_token14] = ACTIONS(4961), + [aux_sym_cmd_identifier_token15] = ACTIONS(4959), + [aux_sym_cmd_identifier_token16] = ACTIONS(4961), + [aux_sym_cmd_identifier_token17] = ACTIONS(4961), + [aux_sym_cmd_identifier_token18] = ACTIONS(4961), + [aux_sym_cmd_identifier_token19] = ACTIONS(4961), + [aux_sym_cmd_identifier_token20] = ACTIONS(4961), + [aux_sym_cmd_identifier_token21] = ACTIONS(4961), + [aux_sym_cmd_identifier_token22] = ACTIONS(4961), + [aux_sym_cmd_identifier_token23] = ACTIONS(4961), + [aux_sym_cmd_identifier_token24] = ACTIONS(4961), + [aux_sym_cmd_identifier_token25] = ACTIONS(4961), + [aux_sym_cmd_identifier_token26] = ACTIONS(4961), + [aux_sym_cmd_identifier_token27] = ACTIONS(4961), + [aux_sym_cmd_identifier_token28] = ACTIONS(4961), + [aux_sym_cmd_identifier_token29] = ACTIONS(4961), + [aux_sym_cmd_identifier_token30] = ACTIONS(4961), + [aux_sym_cmd_identifier_token31] = ACTIONS(4961), + [aux_sym_cmd_identifier_token32] = ACTIONS(4961), + [aux_sym_cmd_identifier_token33] = ACTIONS(4961), + [aux_sym_cmd_identifier_token34] = ACTIONS(4959), + [aux_sym_cmd_identifier_token35] = ACTIONS(4961), + [aux_sym_cmd_identifier_token36] = ACTIONS(4961), + [aux_sym_cmd_identifier_token37] = ACTIONS(4961), + [aux_sym_cmd_identifier_token38] = ACTIONS(4959), + [aux_sym_cmd_identifier_token39] = ACTIONS(4961), + [aux_sym_cmd_identifier_token40] = ACTIONS(4961), + [sym__newline] = ACTIONS(5000), + [anon_sym_SEMI] = ACTIONS(5000), + [anon_sym_LBRACK] = ACTIONS(4965), + [anon_sym_RPAREN] = ACTIONS(5000), + [anon_sym_RBRACE] = ACTIONS(5000), + [anon_sym_STAR2] = ACTIONS(4967), + [aux_sym__val_number_decimal_token1] = ACTIONS(4969), + [aux_sym__val_number_decimal_token2] = ACTIONS(4969), + [aux_sym__val_number_decimal_token3] = ACTIONS(4971), + [aux_sym__val_number_decimal_token4] = ACTIONS(4973), [anon_sym_DQUOTE] = ACTIONS(1295), [sym__str_single_quotes] = ACTIONS(1297), [sym__str_back_ticks] = ACTIONS(1297), @@ -233909,7 +233909,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT] = ACTIONS(1765), [anon_sym_DOT_DOT_EQ] = ACTIONS(1767), [anon_sym_DOT_DOT_LT] = ACTIONS(1767), - [aux_sym__immediate_decimal_token2] = ACTIONS(4993), + [aux_sym__immediate_decimal_token2] = ACTIONS(5002), [anon_sym_null] = ACTIONS(1767), [anon_sym_true] = ACTIONS(1767), [anon_sym_false] = ACTIONS(1767), @@ -234067,7 +234067,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT2] = ACTIONS(1721), [anon_sym_DOT_DOT_EQ2] = ACTIONS(1723), [anon_sym_DOT_DOT_LT2] = ACTIONS(1723), - [anon_sym_DOT2] = ACTIONS(4910), + [anon_sym_DOT2] = ACTIONS(4919), [anon_sym_err_GT] = ACTIONS(1721), [anon_sym_out_GT] = ACTIONS(1721), [anon_sym_e_GT] = ACTIONS(1721), @@ -234244,7 +234244,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT] = ACTIONS(1725), [anon_sym_DOT_DOT_EQ] = ACTIONS(1727), [anon_sym_DOT_DOT_LT] = ACTIONS(1727), - [aux_sym__immediate_decimal_token2] = ACTIONS(4819), + [aux_sym__immediate_decimal_token2] = ACTIONS(4828), [anon_sym_null] = ACTIONS(1727), [anon_sym_true] = ACTIONS(1727), [anon_sym_false] = ACTIONS(1727), @@ -234551,7 +234551,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1693), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1693), [aux_sym_unquoted_token1] = ACTIONS(1681), - [aux_sym_unquoted_token2] = ACTIONS(4413), + [aux_sym_unquoted_token2] = ACTIONS(4422), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(1693), }, @@ -234563,7 +234563,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(1705), 1, sym_comment, - ACTIONS(4932), 16, + ACTIONS(4941), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -234580,7 +234580,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(4930), 46, + ACTIONS(4939), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -234630,7 +234630,7 @@ static const uint16_t ts_small_parse_table[] = { [73] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4995), 1, + ACTIONS(5004), 1, sym__newline, STATE(1706), 2, sym_comment, @@ -234700,11 +234700,11 @@ static const uint16_t ts_small_parse_table[] = { [148] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4998), 1, + ACTIONS(5007), 1, anon_sym_EQ2, STATE(1707), 1, sym_comment, - ACTIONS(4918), 16, + ACTIONS(4927), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -234721,7 +234721,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(4916), 45, + ACTIONS(4925), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -234772,7 +234772,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(1708), 1, sym_comment, - ACTIONS(5002), 16, + ACTIONS(5011), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -234789,7 +234789,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(5000), 46, + ACTIONS(5009), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -234843,13 +234843,13 @@ static const uint16_t ts_small_parse_table[] = { sym_raw_string_begin, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4962), 1, + ACTIONS(4971), 1, aux_sym__val_number_decimal_token3, - ACTIONS(4964), 1, + ACTIONS(4973), 1, aux_sym__val_number_decimal_token4, - ACTIONS(5008), 1, + ACTIONS(5017), 1, anon_sym_LBRACK, - ACTIONS(5010), 1, + ACTIONS(5019), 1, anon_sym_STAR2, STATE(1709), 1, sym_comment, @@ -234870,24 +234870,24 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(111), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4960), 2, + ACTIONS(4969), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, STATE(1720), 2, sym__raw_str, sym__str_double_quotes, - ACTIONS(4973), 3, + ACTIONS(4982), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - ACTIONS(5004), 6, + ACTIONS(5013), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(5006), 34, + ACTIONS(5015), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -234927,7 +234927,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(1710), 1, sym_comment, - ACTIONS(4932), 17, + ACTIONS(4941), 17, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_DASH2, @@ -234945,7 +234945,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(4930), 45, + ACTIONS(4939), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -234996,7 +234996,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(1711), 1, sym_comment, - ACTIONS(5014), 16, + ACTIONS(5023), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -235013,7 +235013,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(5012), 46, + ACTIONS(5021), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -235065,7 +235065,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(1712), 1, sym_comment, - ACTIONS(4989), 17, + ACTIONS(4998), 17, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_DASH2, @@ -235083,7 +235083,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(4987), 45, + ACTIONS(4996), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -235136,17 +235136,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, ACTIONS(1859), 1, sym_raw_string_begin, - ACTIONS(4203), 1, + ACTIONS(4212), 1, anon_sym_DQUOTE, - ACTIONS(4207), 1, + ACTIONS(4216), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(4209), 1, + ACTIONS(4218), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(4962), 1, + ACTIONS(4971), 1, aux_sym__val_number_decimal_token3, - ACTIONS(4964), 1, + ACTIONS(4973), 1, aux_sym__val_number_decimal_token4, - ACTIONS(5016), 1, + ACTIONS(5025), 1, anon_sym_LPAREN, STATE(1713), 1, sym_comment, @@ -235156,10 +235156,10 @@ static const uint16_t ts_small_parse_table[] = { sym__inter_single_quotes, STATE(4526), 1, sym__inter_double_quotes, - ACTIONS(4205), 2, + ACTIONS(4214), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4960), 2, + ACTIONS(4969), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, STATE(3922), 2, @@ -235289,13 +235289,13 @@ static const uint16_t ts_small_parse_table[] = { sym_raw_string_begin, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4962), 1, + ACTIONS(4971), 1, aux_sym__val_number_decimal_token3, - ACTIONS(4964), 1, + ACTIONS(4973), 1, aux_sym__val_number_decimal_token4, - ACTIONS(5008), 1, + ACTIONS(5017), 1, anon_sym_LBRACK, - ACTIONS(5010), 1, + ACTIONS(5019), 1, anon_sym_STAR2, STATE(1715), 1, sym_comment, @@ -235316,24 +235316,24 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(111), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4960), 2, + ACTIONS(4969), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, STATE(1720), 2, sym__raw_str, sym__str_double_quotes, - ACTIONS(4954), 3, + ACTIONS(4963), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - ACTIONS(5004), 6, + ACTIONS(5013), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(5006), 34, + ACTIONS(5015), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -235373,7 +235373,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(1716), 1, sym_comment, - ACTIONS(5020), 16, + ACTIONS(5029), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -235390,7 +235390,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(5018), 46, + ACTIONS(5027), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -235442,7 +235442,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(1717), 1, sym_comment, - ACTIONS(5024), 16, + ACTIONS(5033), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -235459,7 +235459,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(5022), 46, + ACTIONS(5031), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -235720,17 +235720,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, ACTIONS(2083), 1, sym_raw_string_begin, - ACTIONS(4042), 1, + ACTIONS(4051), 1, anon_sym_DQUOTE, - ACTIONS(4046), 1, + ACTIONS(4055), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(4048), 1, + ACTIONS(4057), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(4962), 1, + ACTIONS(4971), 1, aux_sym__val_number_decimal_token3, - ACTIONS(4964), 1, + ACTIONS(4973), 1, aux_sym__val_number_decimal_token4, - ACTIONS(5026), 1, + ACTIONS(5035), 1, anon_sym_LPAREN, STATE(1721), 1, sym_comment, @@ -235740,10 +235740,10 @@ static const uint16_t ts_small_parse_table[] = { sym__inter_single_quotes, STATE(4658), 1, sym__inter_double_quotes, - ACTIONS(4044), 2, + ACTIONS(4053), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4960), 2, + ACTIONS(4969), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, STATE(3997), 2, @@ -235802,7 +235802,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(1722), 1, sym_comment, - ACTIONS(5030), 16, + ACTIONS(5039), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -235819,7 +235819,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(5028), 46, + ACTIONS(5037), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -235871,7 +235871,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(1723), 1, sym_comment, - ACTIONS(5034), 16, + ACTIONS(5043), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -235888,7 +235888,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(5032), 46, + ACTIONS(5041), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -236007,7 +236007,7 @@ static const uint16_t ts_small_parse_table[] = { [1592] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5036), 1, + ACTIONS(5045), 1, aux_sym__immediate_decimal_token2, STATE(1725), 1, sym_comment, @@ -236081,11 +236081,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_unquoted_token2, ACTIONS(1788), 1, anon_sym_LPAREN2, - ACTIONS(5038), 1, + ACTIONS(5047), 1, anon_sym_DOT_DOT2, STATE(1726), 1, sym_comment, - ACTIONS(5040), 2, + ACTIONS(5049), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, ACTIONS(1786), 13, @@ -236152,7 +236152,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(1727), 1, sym_comment, - ACTIONS(5044), 16, + ACTIONS(5053), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -236169,7 +236169,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(5042), 46, + ACTIONS(5051), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -236221,7 +236221,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(1728), 1, sym_comment, - ACTIONS(5048), 16, + ACTIONS(5057), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -236238,7 +236238,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(5046), 46, + ACTIONS(5055), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -236292,11 +236292,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, ACTIONS(1875), 1, aux_sym_unquoted_token2, - ACTIONS(5050), 1, + ACTIONS(5059), 1, anon_sym_DOT_DOT2, STATE(1729), 1, sym_comment, - ACTIONS(5052), 2, + ACTIONS(5061), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, ACTIONS(1865), 13, @@ -236363,7 +236363,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(1730), 1, sym_comment, - ACTIONS(5056), 16, + ACTIONS(5065), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -236380,7 +236380,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(5054), 46, + ACTIONS(5063), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -236432,7 +236432,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(1731), 1, sym_comment, - ACTIONS(5060), 16, + ACTIONS(5069), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -236449,7 +236449,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(5058), 46, + ACTIONS(5067), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -238776,7 +238776,7 @@ static const uint16_t ts_small_parse_table[] = { [4530] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5062), 1, + ACTIONS(5071), 1, anon_sym_LBRACK2, STATE(1765), 1, sym_comment, @@ -240021,7 +240021,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(1783), 1, sym_comment, - ACTIONS(4989), 16, + ACTIONS(4998), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -240038,7 +240038,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(4987), 46, + ACTIONS(4996), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -240849,7 +240849,7 @@ static const uint16_t ts_small_parse_table[] = { [6726] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4928), 1, + ACTIONS(4937), 1, aux_sym__immediate_decimal_token2, STATE(1795), 1, sym_comment, @@ -241059,7 +241059,7 @@ static const uint16_t ts_small_parse_table[] = { [6951] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5064), 1, + ACTIONS(5073), 1, aux_sym__immediate_decimal_token2, STATE(1798), 1, sym_comment, @@ -241198,7 +241198,7 @@ static const uint16_t ts_small_parse_table[] = { [7099] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4948), 1, + ACTIONS(4957), 1, aux_sym__immediate_decimal_token2, STATE(1800), 1, sym_comment, @@ -241272,13 +241272,13 @@ static const uint16_t ts_small_parse_table[] = { sym_raw_string_begin, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4962), 1, + ACTIONS(4971), 1, aux_sym__val_number_decimal_token3, - ACTIONS(4964), 1, + ACTIONS(4973), 1, aux_sym__val_number_decimal_token4, - ACTIONS(5008), 1, + ACTIONS(5017), 1, anon_sym_LBRACK, - ACTIONS(5010), 1, + ACTIONS(5019), 1, anon_sym_STAR2, STATE(1801), 1, sym_comment, @@ -241299,24 +241299,24 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(111), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4960), 2, + ACTIONS(4969), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, STATE(1720), 2, sym__raw_str, sym__str_double_quotes, - ACTIONS(4991), 3, + ACTIONS(5000), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - ACTIONS(5004), 6, + ACTIONS(5013), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(5006), 34, + ACTIONS(5015), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -241358,17 +241358,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, ACTIONS(1859), 1, sym_raw_string_begin, - ACTIONS(4203), 1, + ACTIONS(4212), 1, anon_sym_DQUOTE, - ACTIONS(4207), 1, + ACTIONS(4216), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(4209), 1, + ACTIONS(4218), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(4962), 1, + ACTIONS(4971), 1, aux_sym__val_number_decimal_token3, - ACTIONS(4964), 1, + ACTIONS(4973), 1, aux_sym__val_number_decimal_token4, - ACTIONS(5016), 1, + ACTIONS(5025), 1, anon_sym_LPAREN, STATE(1802), 1, sym_comment, @@ -241378,10 +241378,10 @@ static const uint16_t ts_small_parse_table[] = { sym__inter_single_quotes, STATE(4526), 1, sym__inter_double_quotes, - ACTIONS(4205), 2, + ACTIONS(4214), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4960), 2, + ACTIONS(4969), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, STATE(3922), 2, @@ -241440,7 +241440,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(1803), 1, sym_comment, - ACTIONS(5068), 16, + ACTIONS(5077), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -241457,7 +241457,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(5066), 46, + ACTIONS(5075), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -241509,7 +241509,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(1804), 1, sym_comment, - ACTIONS(5072), 16, + ACTIONS(5081), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -241526,7 +241526,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(5070), 46, + ACTIONS(5079), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -241576,7 +241576,7 @@ static const uint16_t ts_small_parse_table[] = { [7530] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4534), 1, + ACTIONS(4543), 1, aux_sym_unquoted_token2, STATE(1805), 1, sym_comment, @@ -241991,11 +241991,11 @@ static const uint16_t ts_small_parse_table[] = { [7970] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5074), 1, + ACTIONS(5083), 1, anon_sym_EQ2, STATE(1811), 1, sym_comment, - ACTIONS(4936), 16, + ACTIONS(4945), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -242012,7 +242012,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(4934), 45, + ACTIONS(4943), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -242063,7 +242063,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(1812), 1, sym_comment, - ACTIONS(4751), 16, + ACTIONS(4760), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -242080,7 +242080,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(4749), 46, + ACTIONS(4758), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -242132,7 +242132,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(1813), 1, sym_comment, - ACTIONS(4892), 16, + ACTIONS(4901), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -242149,7 +242149,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(4890), 46, + ACTIONS(4899), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -242201,7 +242201,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(1814), 1, sym_comment, - ACTIONS(5079), 16, + ACTIONS(5088), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -242218,7 +242218,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(5076), 46, + ACTIONS(5085), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -242268,7 +242268,7 @@ static const uint16_t ts_small_parse_table[] = { [8264] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4631), 1, + ACTIONS(4640), 1, aux_sym_unquoted_token2, STATE(1815), 1, sym_comment, @@ -242407,7 +242407,7 @@ static const uint16_t ts_small_parse_table[] = { [8412] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5082), 1, + ACTIONS(5091), 1, anon_sym_QMARK2, STATE(1817), 1, sym_comment, @@ -242477,7 +242477,7 @@ static const uint16_t ts_small_parse_table[] = { [8487] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5084), 1, + ACTIONS(5093), 1, anon_sym_QMARK2, STATE(1818), 1, sym_comment, @@ -242616,11 +242616,11 @@ static const uint16_t ts_small_parse_table[] = { [8635] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5086), 1, + ACTIONS(5095), 1, anon_sym_DOT_DOT2, STATE(1820), 1, sym_comment, - ACTIONS(5088), 2, + ACTIONS(5097), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, ACTIONS(2160), 13, @@ -242758,11 +242758,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_unquoted_token2, ACTIONS(1788), 1, anon_sym_LPAREN2, - ACTIONS(5090), 1, + ACTIONS(5099), 1, anon_sym_DOT_DOT2, STATE(1822), 1, sym_comment, - ACTIONS(5092), 2, + ACTIONS(5101), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, ACTIONS(1786), 13, @@ -243056,17 +243056,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH2, ACTIONS(1022), 1, anon_sym_DOLLAR, - ACTIONS(3190), 1, + ACTIONS(3197), 1, sym__newline, - ACTIONS(3410), 1, + ACTIONS(3419), 1, anon_sym_null, - ACTIONS(3414), 1, + ACTIONS(3423), 1, aux_sym__val_number_decimal_token1, - ACTIONS(3416), 1, + ACTIONS(3425), 1, aux_sym__val_number_decimal_token2, - ACTIONS(3418), 1, + ACTIONS(3427), 1, aux_sym__val_number_decimal_token3, - ACTIONS(3420), 1, + ACTIONS(3429), 1, aux_sym__val_number_decimal_token4, STATE(1638), 1, sym__val_number, @@ -243099,7 +243099,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(239), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3412), 2, + ACTIONS(3421), 2, anon_sym_true, anon_sym_false, STATE(1420), 2, @@ -243475,7 +243475,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(1832), 1, sym_comment, - ACTIONS(5079), 16, + ACTIONS(5088), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -243492,7 +243492,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(5076), 45, + ACTIONS(5085), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -243885,11 +243885,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, ACTIONS(1875), 1, aux_sym_unquoted_token2, - ACTIONS(5094), 1, + ACTIONS(5103), 1, anon_sym_DOT_DOT2, STATE(1838), 1, sym_comment, - ACTIONS(5096), 2, + ACTIONS(5105), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, ACTIONS(1865), 13, @@ -244225,13 +244225,13 @@ static const uint16_t ts_small_parse_table[] = { [10381] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4403), 1, + ACTIONS(4412), 1, anon_sym_LPAREN2, STATE(1843), 1, sym_comment, STATE(7420), 1, sym__expr_parenthesized_immediate, - ACTIONS(4839), 13, + ACTIONS(4848), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -244245,7 +244245,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(4837), 46, + ACTIONS(4846), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -244295,13 +244295,13 @@ static const uint16_t ts_small_parse_table[] = { [10457] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4403), 1, + ACTIONS(4412), 1, anon_sym_LPAREN2, STATE(1844), 1, sym_comment, STATE(7420), 1, sym__expr_parenthesized_immediate, - ACTIONS(4843), 13, + ACTIONS(4852), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -244315,7 +244315,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(4841), 46, + ACTIONS(4850), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -244433,13 +244433,13 @@ static const uint16_t ts_small_parse_table[] = { [10605] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4403), 1, + ACTIONS(4412), 1, anon_sym_LPAREN2, STATE(1846), 1, sym_comment, STATE(7420), 1, sym__expr_parenthesized_immediate, - ACTIONS(4851), 13, + ACTIONS(4860), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -244453,7 +244453,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(4849), 46, + ACTIONS(4858), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -244503,13 +244503,13 @@ static const uint16_t ts_small_parse_table[] = { [10681] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4403), 1, + ACTIONS(4412), 1, anon_sym_LPAREN2, STATE(1847), 1, sym_comment, STATE(7420), 1, sym__expr_parenthesized_immediate, - ACTIONS(4855), 13, + ACTIONS(4864), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -244523,7 +244523,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(4853), 46, + ACTIONS(4862), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -244643,7 +244643,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(1849), 1, sym_comment, - ACTIONS(4932), 16, + ACTIONS(4941), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -244660,7 +244660,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(4930), 45, + ACTIONS(4939), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -244711,7 +244711,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(1850), 1, sym_comment, - ACTIONS(4989), 16, + ACTIONS(4998), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -244728,7 +244728,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(4987), 45, + ACTIONS(4996), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -245731,7 +245731,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(1865), 1, sym_comment, - ACTIONS(5068), 16, + ACTIONS(5077), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -245748,7 +245748,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(5066), 45, + ACTIONS(5075), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -245867,7 +245867,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(1867), 1, sym_comment, - ACTIONS(5072), 16, + ACTIONS(5081), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -245884,7 +245884,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(5070), 45, + ACTIONS(5079), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -246071,7 +246071,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(1870), 1, sym_comment, - ACTIONS(4821), 16, + ACTIONS(4830), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -246088,7 +246088,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2766), 45, + ACTIONS(2770), 45, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -246139,7 +246139,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(1871), 1, sym_comment, - ACTIONS(4944), 16, + ACTIONS(4953), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -246156,7 +246156,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(4942), 45, + ACTIONS(4951), 45, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -246205,9 +246205,9 @@ static const uint16_t ts_small_parse_table[] = { [12485] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5098), 1, + ACTIONS(5107), 1, aux_sym__immediate_decimal_token1, - ACTIONS(5100), 1, + ACTIONS(5109), 1, aux_sym__immediate_decimal_token2, STATE(1872), 1, sym_comment, @@ -246411,9 +246411,9 @@ static const uint16_t ts_small_parse_table[] = { [12705] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5102), 1, + ACTIONS(5111), 1, anon_sym_DOT, - ACTIONS(5104), 1, + ACTIONS(5113), 1, aux_sym__immediate_decimal_token2, STATE(1875), 1, sym_comment, @@ -247027,7 +247027,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(1884), 1, sym_comment, - ACTIONS(4751), 16, + ACTIONS(4760), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -247044,7 +247044,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(4749), 45, + ACTIONS(4758), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -247163,7 +247163,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(1886), 1, sym_comment, - ACTIONS(4892), 16, + ACTIONS(4901), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -247180,7 +247180,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(4890), 45, + ACTIONS(4899), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -247508,13 +247508,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1014), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(5108), 5, + ACTIONS(5117), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(5112), 8, + ACTIONS(5121), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -247523,7 +247523,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5106), 22, + ACTIONS(5115), 22, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -247546,7 +247546,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - ACTIONS(5110), 23, + ACTIONS(5119), 23, anon_sym_DASH2, anon_sym_in2, anon_sym_and2, @@ -247643,7 +247643,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(1893), 1, sym_comment, - ACTIONS(4932), 13, + ACTIONS(4941), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -247657,7 +247657,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(4930), 48, + ACTIONS(4939), 48, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -247917,7 +247917,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(1897), 1, sym_comment, - ACTIONS(5014), 16, + ACTIONS(5023), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -247934,7 +247934,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(5012), 45, + ACTIONS(5021), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -248119,11 +248119,11 @@ static const uint16_t ts_small_parse_table[] = { [14521] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5114), 1, + ACTIONS(5123), 1, anon_sym_DOT_DOT2, STATE(1900), 1, sym_comment, - ACTIONS(5116), 2, + ACTIONS(5125), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, ACTIONS(1786), 13, @@ -248395,7 +248395,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(1904), 1, sym_comment, - ACTIONS(4825), 16, + ACTIONS(4834), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -248412,7 +248412,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(4823), 45, + ACTIONS(4832), 45, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -248463,7 +248463,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(1905), 1, sym_comment, - ACTIONS(5002), 16, + ACTIONS(5011), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -248480,7 +248480,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(5000), 45, + ACTIONS(5009), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -248531,7 +248531,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(1906), 1, sym_comment, - ACTIONS(4989), 13, + ACTIONS(4998), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -248545,7 +248545,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(4987), 48, + ACTIONS(4996), 48, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -248599,7 +248599,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(1907), 1, sym_comment, - ACTIONS(4985), 16, + ACTIONS(4994), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -248616,7 +248616,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(4983), 45, + ACTIONS(4992), 45, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -248808,7 +248808,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1014), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(5108), 13, + ACTIONS(5117), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -248822,7 +248822,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5110), 45, + ACTIONS(5119), 45, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -248871,13 +248871,13 @@ static const uint16_t ts_small_parse_table[] = { [15321] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4403), 1, + ACTIONS(4412), 1, anon_sym_LPAREN2, STATE(1911), 1, sym_comment, STATE(7336), 1, sym__expr_parenthesized_immediate, - ACTIONS(5120), 13, + ACTIONS(5129), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -248891,7 +248891,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5118), 46, + ACTIONS(5127), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -248941,13 +248941,13 @@ static const uint16_t ts_small_parse_table[] = { [15397] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4403), 1, + ACTIONS(4412), 1, anon_sym_LPAREN2, STATE(1912), 1, sym_comment, STATE(7336), 1, sym__expr_parenthesized_immediate, - ACTIONS(5120), 13, + ACTIONS(5129), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -248961,7 +248961,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5118), 46, + ACTIONS(5127), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -249011,13 +249011,13 @@ static const uint16_t ts_small_parse_table[] = { [15473] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4403), 1, + ACTIONS(4412), 1, anon_sym_LPAREN2, STATE(1913), 1, sym_comment, STATE(7336), 1, sym__expr_parenthesized_immediate, - ACTIONS(5120), 13, + ACTIONS(5129), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -249031,7 +249031,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5118), 46, + ACTIONS(5127), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -249081,13 +249081,13 @@ static const uint16_t ts_small_parse_table[] = { [15549] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4403), 1, + ACTIONS(4412), 1, anon_sym_LPAREN2, STATE(1914), 1, sym_comment, STATE(7336), 1, sym__expr_parenthesized_immediate, - ACTIONS(5120), 13, + ACTIONS(5129), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -249101,7 +249101,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5118), 46, + ACTIONS(5127), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -249151,13 +249151,13 @@ static const uint16_t ts_small_parse_table[] = { [15625] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4403), 1, + ACTIONS(4412), 1, anon_sym_LPAREN2, STATE(1915), 1, sym_comment, STATE(7336), 1, sym__expr_parenthesized_immediate, - ACTIONS(5120), 13, + ACTIONS(5129), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -249171,7 +249171,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5118), 46, + ACTIONS(5127), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -249221,13 +249221,13 @@ static const uint16_t ts_small_parse_table[] = { [15701] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4403), 1, + ACTIONS(4412), 1, anon_sym_LPAREN2, STATE(1916), 1, sym_comment, STATE(7336), 1, sym__expr_parenthesized_immediate, - ACTIONS(5120), 13, + ACTIONS(5129), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -249241,7 +249241,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5118), 46, + ACTIONS(5127), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -249291,13 +249291,13 @@ static const uint16_t ts_small_parse_table[] = { [15777] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4403), 1, + ACTIONS(4412), 1, anon_sym_LPAREN2, STATE(1917), 1, sym_comment, STATE(7336), 1, sym__expr_parenthesized_immediate, - ACTIONS(5120), 13, + ACTIONS(5129), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -249311,7 +249311,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5118), 46, + ACTIONS(5127), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -249361,13 +249361,13 @@ static const uint16_t ts_small_parse_table[] = { [15853] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4403), 1, + ACTIONS(4412), 1, anon_sym_LPAREN2, STATE(1918), 1, sym_comment, STATE(7336), 1, sym__expr_parenthesized_immediate, - ACTIONS(5120), 13, + ACTIONS(5129), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -249381,7 +249381,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5118), 46, + ACTIONS(5127), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -249431,13 +249431,13 @@ static const uint16_t ts_small_parse_table[] = { [15929] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4403), 1, + ACTIONS(4412), 1, anon_sym_LPAREN2, STATE(1919), 1, sym_comment, STATE(7336), 1, sym__expr_parenthesized_immediate, - ACTIONS(5120), 13, + ACTIONS(5129), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -249451,7 +249451,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5118), 46, + ACTIONS(5127), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -249501,13 +249501,13 @@ static const uint16_t ts_small_parse_table[] = { [16005] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4403), 1, + ACTIONS(4412), 1, anon_sym_LPAREN2, STATE(1920), 1, sym_comment, STATE(7336), 1, sym__expr_parenthesized_immediate, - ACTIONS(5120), 13, + ACTIONS(5129), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -249521,7 +249521,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5118), 46, + ACTIONS(5127), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -249571,13 +249571,13 @@ static const uint16_t ts_small_parse_table[] = { [16081] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4403), 1, + ACTIONS(4412), 1, anon_sym_LPAREN2, STATE(1921), 1, sym_comment, STATE(7336), 1, sym__expr_parenthesized_immediate, - ACTIONS(5120), 13, + ACTIONS(5129), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -249591,7 +249591,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5118), 46, + ACTIONS(5127), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -249641,13 +249641,13 @@ static const uint16_t ts_small_parse_table[] = { [16157] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4403), 1, + ACTIONS(4412), 1, anon_sym_LPAREN2, STATE(1922), 1, sym_comment, STATE(7336), 1, sym__expr_parenthesized_immediate, - ACTIONS(5120), 13, + ACTIONS(5129), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -249661,7 +249661,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5118), 46, + ACTIONS(5127), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -249711,13 +249711,13 @@ static const uint16_t ts_small_parse_table[] = { [16233] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4403), 1, + ACTIONS(4412), 1, anon_sym_LPAREN2, STATE(1923), 1, sym_comment, STATE(7336), 1, sym__expr_parenthesized_immediate, - ACTIONS(5120), 13, + ACTIONS(5129), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -249731,7 +249731,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5118), 46, + ACTIONS(5127), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -249781,11 +249781,11 @@ static const uint16_t ts_small_parse_table[] = { [16309] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5122), 1, + ACTIONS(5131), 1, anon_sym_DOT_DOT2, STATE(1924), 1, sym_comment, - ACTIONS(5124), 2, + ACTIONS(5133), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, ACTIONS(1865), 13, @@ -249853,7 +249853,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(1925), 1, sym_comment, - ACTIONS(5020), 16, + ACTIONS(5029), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -249870,7 +249870,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(5018), 45, + ACTIONS(5027), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -249921,7 +249921,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(1926), 1, sym_comment, - ACTIONS(5024), 16, + ACTIONS(5033), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -249938,7 +249938,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(5022), 45, + ACTIONS(5031), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -250013,17 +250013,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH2, ACTIONS(1022), 1, anon_sym_DOLLAR, - ACTIONS(3190), 1, + ACTIONS(3197), 1, sym__newline, - ACTIONS(3410), 1, + ACTIONS(3419), 1, anon_sym_null, - ACTIONS(3414), 1, + ACTIONS(3423), 1, aux_sym__val_number_decimal_token1, - ACTIONS(3416), 1, + ACTIONS(3425), 1, aux_sym__val_number_decimal_token2, - ACTIONS(3418), 1, + ACTIONS(3427), 1, aux_sym__val_number_decimal_token3, - ACTIONS(3420), 1, + ACTIONS(3429), 1, aux_sym__val_number_decimal_token4, STATE(1638), 1, sym__val_number, @@ -250056,7 +250056,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(239), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3412), 2, + ACTIONS(3421), 2, anon_sym_true, anon_sym_false, STATE(1420), 2, @@ -250160,7 +250160,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(1929), 1, sym_comment, - ACTIONS(5030), 16, + ACTIONS(5039), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -250177,7 +250177,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(5028), 45, + ACTIONS(5037), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -250228,7 +250228,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(1930), 1, sym_comment, - ACTIONS(5034), 16, + ACTIONS(5043), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -250245,7 +250245,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(5032), 45, + ACTIONS(5041), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -250362,7 +250362,7 @@ static const uint16_t ts_small_parse_table[] = { [16959] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5126), 1, + ACTIONS(5135), 1, anon_sym_LBRACK2, STATE(1932), 1, sym_comment, @@ -250431,11 +250431,11 @@ static const uint16_t ts_small_parse_table[] = { [17033] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5128), 1, + ACTIONS(5137), 1, anon_sym_DOT_DOT2, STATE(1933), 1, sym_comment, - ACTIONS(5130), 2, + ACTIONS(5139), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, ACTIONS(2170), 13, @@ -250501,11 +250501,11 @@ static const uint16_t ts_small_parse_table[] = { [17109] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5132), 1, + ACTIONS(5141), 1, anon_sym_DOT_DOT2, STATE(1934), 1, sym_comment, - ACTIONS(5134), 2, + ACTIONS(5143), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, ACTIONS(2144), 13, @@ -250571,11 +250571,11 @@ static const uint16_t ts_small_parse_table[] = { [17185] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5136), 1, + ACTIONS(5145), 1, anon_sym_DOT_DOT2, STATE(1935), 1, sym_comment, - ACTIONS(5138), 2, + ACTIONS(5147), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, ACTIONS(2152), 13, @@ -250667,17 +250667,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH2, ACTIONS(1022), 1, anon_sym_DOLLAR, - ACTIONS(3190), 1, + ACTIONS(3197), 1, sym__newline, - ACTIONS(3410), 1, + ACTIONS(3419), 1, anon_sym_null, - ACTIONS(3414), 1, + ACTIONS(3423), 1, aux_sym__val_number_decimal_token1, - ACTIONS(3416), 1, + ACTIONS(3425), 1, aux_sym__val_number_decimal_token2, - ACTIONS(3418), 1, + ACTIONS(3427), 1, aux_sym__val_number_decimal_token3, - ACTIONS(3420), 1, + ACTIONS(3429), 1, aux_sym__val_number_decimal_token4, STATE(1638), 1, sym__val_number, @@ -250710,7 +250710,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(239), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3412), 2, + ACTIONS(3421), 2, anon_sym_true, anon_sym_false, STATE(1420), 2, @@ -250746,7 +250746,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(1937), 1, sym_comment, - ACTIONS(5044), 16, + ACTIONS(5053), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -250763,7 +250763,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(5042), 45, + ACTIONS(5051), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -250814,7 +250814,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(1938), 1, sym_comment, - ACTIONS(5048), 16, + ACTIONS(5057), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -250831,7 +250831,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(5046), 45, + ACTIONS(5055), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -251086,7 +251086,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(1942), 1, sym_comment, - ACTIONS(5056), 16, + ACTIONS(5065), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -251103,7 +251103,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(5054), 45, + ACTIONS(5063), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -251154,7 +251154,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(1943), 1, sym_comment, - ACTIONS(5060), 16, + ACTIONS(5069), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -251171,7 +251171,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(5058), 45, + ACTIONS(5067), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -251518,17 +251518,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH2, ACTIONS(1022), 1, anon_sym_DOLLAR, - ACTIONS(3190), 1, + ACTIONS(3197), 1, sym__newline, - ACTIONS(3410), 1, + ACTIONS(3419), 1, anon_sym_null, - ACTIONS(3414), 1, + ACTIONS(3423), 1, aux_sym__val_number_decimal_token1, - ACTIONS(3416), 1, + ACTIONS(3425), 1, aux_sym__val_number_decimal_token2, - ACTIONS(3418), 1, + ACTIONS(3427), 1, aux_sym__val_number_decimal_token3, - ACTIONS(3420), 1, + ACTIONS(3429), 1, aux_sym__val_number_decimal_token4, STATE(1638), 1, sym__val_number, @@ -251561,7 +251561,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(239), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3412), 2, + ACTIONS(3421), 2, anon_sym_true, anon_sym_false, STATE(1420), 2, @@ -251621,17 +251621,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH2, ACTIONS(1022), 1, anon_sym_DOLLAR, - ACTIONS(3190), 1, + ACTIONS(3197), 1, sym__newline, - ACTIONS(3410), 1, + ACTIONS(3419), 1, anon_sym_null, - ACTIONS(3414), 1, + ACTIONS(3423), 1, aux_sym__val_number_decimal_token1, - ACTIONS(3416), 1, + ACTIONS(3425), 1, aux_sym__val_number_decimal_token2, - ACTIONS(3418), 1, + ACTIONS(3427), 1, aux_sym__val_number_decimal_token3, - ACTIONS(3420), 1, + ACTIONS(3429), 1, aux_sym__val_number_decimal_token4, STATE(1638), 1, sym__val_number, @@ -251664,7 +251664,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(239), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3412), 2, + ACTIONS(3421), 2, anon_sym_true, anon_sym_false, STATE(1420), 2, @@ -251724,17 +251724,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH2, ACTIONS(1022), 1, anon_sym_DOLLAR, - ACTIONS(3190), 1, + ACTIONS(3197), 1, sym__newline, - ACTIONS(3410), 1, + ACTIONS(3419), 1, anon_sym_null, - ACTIONS(3414), 1, + ACTIONS(3423), 1, aux_sym__val_number_decimal_token1, - ACTIONS(3416), 1, + ACTIONS(3425), 1, aux_sym__val_number_decimal_token2, - ACTIONS(3418), 1, + ACTIONS(3427), 1, aux_sym__val_number_decimal_token3, - ACTIONS(3420), 1, + ACTIONS(3429), 1, aux_sym__val_number_decimal_token4, STATE(1638), 1, sym__val_number, @@ -251767,7 +251767,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(239), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3412), 2, + ACTIONS(3421), 2, anon_sym_true, anon_sym_false, STATE(1420), 2, @@ -251938,20 +251938,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(1012), 1, anon_sym_DOT_DOT2, - ACTIONS(5140), 1, + ACTIONS(5149), 1, sym__newline, STATE(1953), 1, sym_comment, ACTIONS(1014), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(5145), 5, + ACTIONS(5154), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(5149), 8, + ACTIONS(5158), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -251960,7 +251960,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5143), 20, + ACTIONS(5152), 20, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -251981,7 +251981,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - ACTIONS(5147), 23, + ACTIONS(5156), 23, anon_sym_DASH2, anon_sym_in2, anon_sym_and2, @@ -252008,7 +252008,7 @@ static const uint16_t ts_small_parse_table[] = { [18845] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4403), 1, + ACTIONS(4412), 1, anon_sym_LPAREN2, STATE(1954), 1, sym_comment, @@ -252016,7 +252016,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_shebang_repeat1, STATE(7336), 1, sym__expr_parenthesized_immediate, - ACTIONS(5153), 13, + ACTIONS(5162), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -252030,7 +252030,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5151), 44, + ACTIONS(5160), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -252078,7 +252078,7 @@ static const uint16_t ts_small_parse_table[] = { [18922] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4403), 1, + ACTIONS(4412), 1, anon_sym_LPAREN2, STATE(1955), 1, sym_comment, @@ -252086,7 +252086,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_shebang_repeat1, STATE(7336), 1, sym__expr_parenthesized_immediate, - ACTIONS(5157), 13, + ACTIONS(5166), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -252100,7 +252100,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5155), 44, + ACTIONS(5164), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -252148,7 +252148,7 @@ static const uint16_t ts_small_parse_table[] = { [18999] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4403), 1, + ACTIONS(4412), 1, anon_sym_LPAREN2, STATE(1956), 1, sym_comment, @@ -252156,7 +252156,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_shebang_repeat1, STATE(7336), 1, sym__expr_parenthesized_immediate, - ACTIONS(5153), 13, + ACTIONS(5162), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -252170,7 +252170,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5151), 44, + ACTIONS(5160), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -252218,9 +252218,9 @@ static const uint16_t ts_small_parse_table[] = { [19076] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5159), 1, + ACTIONS(5168), 1, aux_sym__immediate_decimal_token1, - ACTIONS(5161), 1, + ACTIONS(5170), 1, aux_sym__immediate_decimal_token2, STATE(1957), 1, sym_comment, @@ -252287,7 +252287,7 @@ static const uint16_t ts_small_parse_table[] = { [19151] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4403), 1, + ACTIONS(4412), 1, anon_sym_LPAREN2, STATE(1958), 1, sym_comment, @@ -252295,7 +252295,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_shebang_repeat1, STATE(7336), 1, sym__expr_parenthesized_immediate, - ACTIONS(5153), 13, + ACTIONS(5162), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -252309,7 +252309,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5151), 44, + ACTIONS(5160), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -252357,7 +252357,7 @@ static const uint16_t ts_small_parse_table[] = { [19228] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4403), 1, + ACTIONS(4412), 1, anon_sym_LPAREN2, STATE(1959), 1, sym_comment, @@ -252365,7 +252365,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_shebang_repeat1, STATE(7336), 1, sym__expr_parenthesized_immediate, - ACTIONS(5165), 13, + ACTIONS(5174), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -252379,7 +252379,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5163), 44, + ACTIONS(5172), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -252427,7 +252427,7 @@ static const uint16_t ts_small_parse_table[] = { [19305] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4403), 1, + ACTIONS(4412), 1, anon_sym_LPAREN2, STATE(1960), 1, sym_comment, @@ -252435,7 +252435,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_shebang_repeat1, STATE(7336), 1, sym__expr_parenthesized_immediate, - ACTIONS(5165), 13, + ACTIONS(5174), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -252449,7 +252449,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5163), 44, + ACTIONS(5172), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -252497,7 +252497,7 @@ static const uint16_t ts_small_parse_table[] = { [19382] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4403), 1, + ACTIONS(4412), 1, anon_sym_LPAREN2, STATE(1961), 1, sym_comment, @@ -252505,7 +252505,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_shebang_repeat1, STATE(7336), 1, sym__expr_parenthesized_immediate, - ACTIONS(5165), 13, + ACTIONS(5174), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -252519,7 +252519,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5163), 44, + ACTIONS(5172), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -252567,7 +252567,7 @@ static const uint16_t ts_small_parse_table[] = { [19459] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4403), 1, + ACTIONS(4412), 1, anon_sym_LPAREN2, STATE(1962), 1, sym_comment, @@ -252575,7 +252575,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_shebang_repeat1, STATE(7336), 1, sym__expr_parenthesized_immediate, - ACTIONS(5165), 13, + ACTIONS(5174), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -252589,7 +252589,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5163), 44, + ACTIONS(5172), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -252637,7 +252637,7 @@ static const uint16_t ts_small_parse_table[] = { [19536] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4403), 1, + ACTIONS(4412), 1, anon_sym_LPAREN2, STATE(1963), 1, sym_comment, @@ -252645,7 +252645,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_shebang_repeat1, STATE(7336), 1, sym__expr_parenthesized_immediate, - ACTIONS(5165), 13, + ACTIONS(5174), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -252659,7 +252659,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5163), 44, + ACTIONS(5172), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -252707,9 +252707,9 @@ static const uint16_t ts_small_parse_table[] = { [19613] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4747), 1, + ACTIONS(4756), 1, aux_sym__immediate_decimal_token2, - ACTIONS(5167), 1, + ACTIONS(5176), 1, anon_sym_DOT, STATE(1964), 1, sym_comment, @@ -252776,7 +252776,7 @@ static const uint16_t ts_small_parse_table[] = { [19688] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4403), 1, + ACTIONS(4412), 1, anon_sym_LPAREN2, STATE(1965), 1, sym_comment, @@ -252784,7 +252784,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_shebang_repeat1, STATE(7336), 1, sym__expr_parenthesized_immediate, - ACTIONS(5165), 13, + ACTIONS(5174), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -252798,7 +252798,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5163), 44, + ACTIONS(5172), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -252846,7 +252846,7 @@ static const uint16_t ts_small_parse_table[] = { [19765] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4403), 1, + ACTIONS(4412), 1, anon_sym_LPAREN2, STATE(1966), 1, sym_comment, @@ -252854,7 +252854,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_shebang_repeat1, STATE(7336), 1, sym__expr_parenthesized_immediate, - ACTIONS(5165), 13, + ACTIONS(5174), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -252868,7 +252868,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5163), 44, + ACTIONS(5172), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -252916,7 +252916,7 @@ static const uint16_t ts_small_parse_table[] = { [19842] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4403), 1, + ACTIONS(4412), 1, anon_sym_LPAREN2, STATE(1967), 1, sym_comment, @@ -252924,7 +252924,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_shebang_repeat1, STATE(7336), 1, sym__expr_parenthesized_immediate, - ACTIONS(5157), 13, + ACTIONS(5166), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -252938,7 +252938,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5155), 44, + ACTIONS(5164), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -252986,7 +252986,7 @@ static const uint16_t ts_small_parse_table[] = { [19919] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4403), 1, + ACTIONS(4412), 1, anon_sym_LPAREN2, STATE(1968), 1, sym_comment, @@ -252994,7 +252994,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_shebang_repeat1, STATE(7336), 1, sym__expr_parenthesized_immediate, - ACTIONS(5165), 13, + ACTIONS(5174), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -253008,7 +253008,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5163), 44, + ACTIONS(5172), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -253056,7 +253056,7 @@ static const uint16_t ts_small_parse_table[] = { [19996] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5169), 1, + ACTIONS(5178), 1, anon_sym_DOT2, STATE(1684), 1, aux_sym_cell_path_repeat1, @@ -253127,7 +253127,7 @@ static const uint16_t ts_small_parse_table[] = { [20075] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4403), 1, + ACTIONS(4412), 1, anon_sym_LPAREN2, STATE(1970), 1, sym_comment, @@ -253135,7 +253135,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_shebang_repeat1, STATE(7336), 1, sym__expr_parenthesized_immediate, - ACTIONS(5165), 13, + ACTIONS(5174), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -253149,7 +253149,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5163), 44, + ACTIONS(5172), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -253197,7 +253197,7 @@ static const uint16_t ts_small_parse_table[] = { [20152] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4403), 1, + ACTIONS(4412), 1, anon_sym_LPAREN2, STATE(1971), 1, sym_comment, @@ -253205,7 +253205,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_shebang_repeat1, STATE(7336), 1, sym__expr_parenthesized_immediate, - ACTIONS(5165), 13, + ACTIONS(5174), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -253219,7 +253219,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5163), 44, + ACTIONS(5172), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -253267,7 +253267,7 @@ static const uint16_t ts_small_parse_table[] = { [20229] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4403), 1, + ACTIONS(4412), 1, anon_sym_LPAREN2, STATE(1972), 1, sym_comment, @@ -253275,7 +253275,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_shebang_repeat1, STATE(7336), 1, sym__expr_parenthesized_immediate, - ACTIONS(5165), 13, + ACTIONS(5174), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -253289,7 +253289,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5163), 44, + ACTIONS(5172), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -253337,7 +253337,7 @@ static const uint16_t ts_small_parse_table[] = { [20306] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5169), 1, + ACTIONS(5178), 1, anon_sym_DOT2, STATE(1684), 1, aux_sym_cell_path_repeat1, @@ -253408,7 +253408,7 @@ static const uint16_t ts_small_parse_table[] = { [20385] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4403), 1, + ACTIONS(4412), 1, anon_sym_LPAREN2, STATE(1974), 1, sym_comment, @@ -253416,7 +253416,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_shebang_repeat1, STATE(7336), 1, sym__expr_parenthesized_immediate, - ACTIONS(5165), 13, + ACTIONS(5174), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -253430,7 +253430,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5163), 44, + ACTIONS(5172), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -253478,7 +253478,7 @@ static const uint16_t ts_small_parse_table[] = { [20462] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4403), 1, + ACTIONS(4412), 1, anon_sym_LPAREN2, STATE(1975), 1, sym_comment, @@ -253486,7 +253486,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_shebang_repeat1, STATE(7336), 1, sym__expr_parenthesized_immediate, - ACTIONS(5165), 13, + ACTIONS(5174), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -253500,7 +253500,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5163), 44, + ACTIONS(5172), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -253574,17 +253574,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH2, ACTIONS(1022), 1, anon_sym_DOLLAR, - ACTIONS(3410), 1, + ACTIONS(3419), 1, anon_sym_null, - ACTIONS(3414), 1, + ACTIONS(3423), 1, aux_sym__val_number_decimal_token1, - ACTIONS(3416), 1, + ACTIONS(3425), 1, aux_sym__val_number_decimal_token2, - ACTIONS(3418), 1, + ACTIONS(3427), 1, aux_sym__val_number_decimal_token3, - ACTIONS(3420), 1, + ACTIONS(3429), 1, aux_sym__val_number_decimal_token4, - ACTIONS(3424), 1, + ACTIONS(3433), 1, anon_sym_COLON2, STATE(1638), 1, sym__val_number, @@ -253615,7 +253615,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(239), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3412), 2, + ACTIONS(3421), 2, anon_sym_true, anon_sym_false, STATE(1420), 2, @@ -253675,17 +253675,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH2, ACTIONS(1022), 1, anon_sym_DOLLAR, - ACTIONS(3410), 1, + ACTIONS(3419), 1, anon_sym_null, - ACTIONS(3414), 1, + ACTIONS(3423), 1, aux_sym__val_number_decimal_token1, - ACTIONS(3416), 1, + ACTIONS(3425), 1, aux_sym__val_number_decimal_token2, - ACTIONS(3418), 1, + ACTIONS(3427), 1, aux_sym__val_number_decimal_token3, - ACTIONS(3420), 1, + ACTIONS(3429), 1, aux_sym__val_number_decimal_token4, - ACTIONS(3424), 1, + ACTIONS(3433), 1, anon_sym_COLON2, STATE(1638), 1, sym__val_number, @@ -253716,7 +253716,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(239), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3412), 2, + ACTIONS(3421), 2, anon_sym_true, anon_sym_false, STATE(1420), 2, @@ -253750,7 +253750,7 @@ static const uint16_t ts_small_parse_table[] = { [20817] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5169), 1, + ACTIONS(5178), 1, anon_sym_DOT2, STATE(1684), 1, aux_sym_cell_path_repeat1, @@ -253821,7 +253821,7 @@ static const uint16_t ts_small_parse_table[] = { [20896] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5169), 1, + ACTIONS(5178), 1, anon_sym_DOT2, STATE(1684), 1, aux_sym_cell_path_repeat1, @@ -253892,7 +253892,7 @@ static const uint16_t ts_small_parse_table[] = { [20975] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5169), 1, + ACTIONS(5178), 1, anon_sym_DOT2, STATE(1684), 1, aux_sym_cell_path_repeat1, @@ -253963,7 +253963,7 @@ static const uint16_t ts_small_parse_table[] = { [21054] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5169), 1, + ACTIONS(5178), 1, anon_sym_DOT2, STATE(1684), 1, aux_sym_cell_path_repeat1, @@ -254034,7 +254034,7 @@ static const uint16_t ts_small_parse_table[] = { [21133] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5169), 1, + ACTIONS(5178), 1, anon_sym_DOT2, STATE(1684), 1, aux_sym_cell_path_repeat1, @@ -254105,7 +254105,7 @@ static const uint16_t ts_small_parse_table[] = { [21212] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4403), 1, + ACTIONS(4412), 1, anon_sym_LPAREN2, STATE(1983), 1, sym_comment, @@ -254113,7 +254113,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_shebang_repeat1, STATE(7336), 1, sym__expr_parenthesized_immediate, - ACTIONS(5157), 13, + ACTIONS(5166), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -254127,7 +254127,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5155), 44, + ACTIONS(5164), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -254175,7 +254175,7 @@ static const uint16_t ts_small_parse_table[] = { [21289] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5104), 1, + ACTIONS(5113), 1, aux_sym__immediate_decimal_token2, STATE(1984), 1, sym_comment, @@ -254243,7 +254243,7 @@ static const uint16_t ts_small_parse_table[] = { [21362] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5171), 1, + ACTIONS(5180), 1, aux_sym__immediate_decimal_token2, STATE(1985), 1, sym_comment, @@ -254311,9 +254311,9 @@ static const uint16_t ts_small_parse_table[] = { [21435] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5173), 1, + ACTIONS(5182), 1, anon_sym_DOT, - ACTIONS(5175), 1, + ACTIONS(5184), 1, aux_sym__immediate_decimal_token2, STATE(1986), 1, sym_comment, @@ -254380,7 +254380,7 @@ static const uint16_t ts_small_parse_table[] = { [21510] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4403), 1, + ACTIONS(4412), 1, anon_sym_LPAREN2, STATE(1987), 1, sym_comment, @@ -254388,7 +254388,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_shebang_repeat1, STATE(7336), 1, sym__expr_parenthesized_immediate, - ACTIONS(5179), 13, + ACTIONS(5188), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -254402,7 +254402,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5177), 44, + ACTIONS(5186), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -254450,7 +254450,7 @@ static const uint16_t ts_small_parse_table[] = { [21587] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4403), 1, + ACTIONS(4412), 1, anon_sym_LPAREN2, STATE(1988), 1, sym_comment, @@ -254458,7 +254458,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_shebang_repeat1, STATE(7336), 1, sym__expr_parenthesized_immediate, - ACTIONS(5179), 13, + ACTIONS(5188), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -254472,7 +254472,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5177), 44, + ACTIONS(5186), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -254520,7 +254520,7 @@ static const uint16_t ts_small_parse_table[] = { [21664] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4403), 1, + ACTIONS(4412), 1, anon_sym_LPAREN2, STATE(1989), 1, sym_comment, @@ -254528,7 +254528,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_shebang_repeat1, STATE(7336), 1, sym__expr_parenthesized_immediate, - ACTIONS(5179), 13, + ACTIONS(5188), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -254542,7 +254542,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5177), 44, + ACTIONS(5186), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -254590,7 +254590,7 @@ static const uint16_t ts_small_parse_table[] = { [21741] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4403), 1, + ACTIONS(4412), 1, anon_sym_LPAREN2, STATE(1990), 1, sym_comment, @@ -254598,7 +254598,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_shebang_repeat1, STATE(7336), 1, sym__expr_parenthesized_immediate, - ACTIONS(5179), 13, + ACTIONS(5188), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -254612,7 +254612,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5177), 44, + ACTIONS(5186), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -254660,7 +254660,7 @@ static const uint16_t ts_small_parse_table[] = { [21818] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4403), 1, + ACTIONS(4412), 1, anon_sym_LPAREN2, STATE(1991), 1, sym_comment, @@ -254668,7 +254668,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_shebang_repeat1, STATE(7336), 1, sym__expr_parenthesized_immediate, - ACTIONS(5179), 13, + ACTIONS(5188), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -254682,7 +254682,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5177), 44, + ACTIONS(5186), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -254730,7 +254730,7 @@ static const uint16_t ts_small_parse_table[] = { [21895] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4403), 1, + ACTIONS(4412), 1, anon_sym_LPAREN2, STATE(1992), 1, sym_comment, @@ -254738,7 +254738,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_shebang_repeat1, STATE(7336), 1, sym__expr_parenthesized_immediate, - ACTIONS(5179), 13, + ACTIONS(5188), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -254752,7 +254752,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5177), 44, + ACTIONS(5186), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -254800,7 +254800,7 @@ static const uint16_t ts_small_parse_table[] = { [21972] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4403), 1, + ACTIONS(4412), 1, anon_sym_LPAREN2, STATE(1993), 1, sym_comment, @@ -254808,7 +254808,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_shebang_repeat1, STATE(7336), 1, sym__expr_parenthesized_immediate, - ACTIONS(5179), 13, + ACTIONS(5188), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -254822,7 +254822,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5177), 44, + ACTIONS(5186), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -254870,7 +254870,7 @@ static const uint16_t ts_small_parse_table[] = { [22049] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4403), 1, + ACTIONS(4412), 1, anon_sym_LPAREN2, STATE(1994), 1, sym_comment, @@ -254878,7 +254878,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_shebang_repeat1, STATE(7336), 1, sym__expr_parenthesized_immediate, - ACTIONS(5179), 13, + ACTIONS(5188), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -254892,7 +254892,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5177), 44, + ACTIONS(5186), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -254940,7 +254940,7 @@ static const uint16_t ts_small_parse_table[] = { [22126] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4403), 1, + ACTIONS(4412), 1, anon_sym_LPAREN2, STATE(1995), 1, sym_comment, @@ -254948,7 +254948,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_shebang_repeat1, STATE(7336), 1, sym__expr_parenthesized_immediate, - ACTIONS(5179), 13, + ACTIONS(5188), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -254962,7 +254962,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5177), 44, + ACTIONS(5186), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -255010,7 +255010,7 @@ static const uint16_t ts_small_parse_table[] = { [22203] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4403), 1, + ACTIONS(4412), 1, anon_sym_LPAREN2, STATE(1996), 1, sym_comment, @@ -255018,7 +255018,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_shebang_repeat1, STATE(7336), 1, sym__expr_parenthesized_immediate, - ACTIONS(5179), 13, + ACTIONS(5188), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -255032,7 +255032,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5177), 44, + ACTIONS(5186), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -255080,7 +255080,7 @@ static const uint16_t ts_small_parse_table[] = { [22280] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4403), 1, + ACTIONS(4412), 1, anon_sym_LPAREN2, STATE(1997), 1, sym_comment, @@ -255088,7 +255088,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_shebang_repeat1, STATE(7336), 1, sym__expr_parenthesized_immediate, - ACTIONS(5179), 13, + ACTIONS(5188), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -255102,7 +255102,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5177), 44, + ACTIONS(5186), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -255150,7 +255150,7 @@ static const uint16_t ts_small_parse_table[] = { [22357] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4403), 1, + ACTIONS(4412), 1, anon_sym_LPAREN2, STATE(1998), 1, sym_comment, @@ -255158,7 +255158,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_shebang_repeat1, STATE(7336), 1, sym__expr_parenthesized_immediate, - ACTIONS(5179), 13, + ACTIONS(5188), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -255172,7 +255172,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5177), 44, + ACTIONS(5186), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -255220,7 +255220,7 @@ static const uint16_t ts_small_parse_table[] = { [22434] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4403), 1, + ACTIONS(4412), 1, anon_sym_LPAREN2, STATE(1999), 1, sym_comment, @@ -255228,7 +255228,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_shebang_repeat1, STATE(7336), 1, sym__expr_parenthesized_immediate, - ACTIONS(5157), 13, + ACTIONS(5166), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -255242,7 +255242,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5155), 44, + ACTIONS(5164), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -255290,7 +255290,7 @@ static const uint16_t ts_small_parse_table[] = { [22511] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4403), 1, + ACTIONS(4412), 1, anon_sym_LPAREN2, STATE(2000), 1, sym_comment, @@ -255298,7 +255298,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_shebang_repeat1, STATE(7336), 1, sym__expr_parenthesized_immediate, - ACTIONS(5179), 13, + ACTIONS(5188), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -255312,7 +255312,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5177), 44, + ACTIONS(5186), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -255360,7 +255360,7 @@ static const uint16_t ts_small_parse_table[] = { [22588] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4403), 1, + ACTIONS(4412), 1, anon_sym_LPAREN2, STATE(2001), 1, sym_comment, @@ -255368,7 +255368,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_shebang_repeat1, STATE(7336), 1, sym__expr_parenthesized_immediate, - ACTIONS(5157), 13, + ACTIONS(5166), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -255382,7 +255382,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5155), 44, + ACTIONS(5164), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -255432,20 +255432,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(1012), 1, anon_sym_DOT_DOT2, - ACTIONS(4692), 1, + ACTIONS(4701), 1, anon_sym_COLON2, STATE(2002), 1, sym_comment, ACTIONS(1014), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(5108), 5, + ACTIONS(5117), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(5112), 8, + ACTIONS(5121), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -255454,7 +255454,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5106), 20, + ACTIONS(5115), 20, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -255475,7 +255475,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - ACTIONS(5110), 23, + ACTIONS(5119), 23, anon_sym_DASH2, anon_sym_in2, anon_sym_and2, @@ -255502,7 +255502,7 @@ static const uint16_t ts_small_parse_table[] = { [22746] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4403), 1, + ACTIONS(4412), 1, anon_sym_LPAREN2, STATE(2003), 1, sym_comment, @@ -255510,7 +255510,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_shebang_repeat1, STATE(7336), 1, sym__expr_parenthesized_immediate, - ACTIONS(5157), 13, + ACTIONS(5166), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -255524,7 +255524,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5155), 44, + ACTIONS(5164), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -255572,7 +255572,7 @@ static const uint16_t ts_small_parse_table[] = { [22823] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5169), 1, + ACTIONS(5178), 1, anon_sym_DOT2, STATE(1684), 1, aux_sym_cell_path_repeat1, @@ -255643,7 +255643,7 @@ static const uint16_t ts_small_parse_table[] = { [22902] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5169), 1, + ACTIONS(5178), 1, anon_sym_DOT2, STATE(1684), 1, aux_sym_cell_path_repeat1, @@ -255714,7 +255714,7 @@ static const uint16_t ts_small_parse_table[] = { [22981] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5169), 1, + ACTIONS(5178), 1, anon_sym_DOT2, STATE(1684), 1, aux_sym_cell_path_repeat1, @@ -255785,7 +255785,7 @@ static const uint16_t ts_small_parse_table[] = { [23060] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5169), 1, + ACTIONS(5178), 1, anon_sym_DOT2, STATE(1684), 1, aux_sym_cell_path_repeat1, @@ -255856,7 +255856,7 @@ static const uint16_t ts_small_parse_table[] = { [23139] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5169), 1, + ACTIONS(5178), 1, anon_sym_DOT2, STATE(1684), 1, aux_sym_cell_path_repeat1, @@ -255927,7 +255927,7 @@ static const uint16_t ts_small_parse_table[] = { [23218] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5169), 1, + ACTIONS(5178), 1, anon_sym_DOT2, STATE(1684), 1, aux_sym_cell_path_repeat1, @@ -255998,7 +255998,7 @@ static const uint16_t ts_small_parse_table[] = { [23297] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4403), 1, + ACTIONS(4412), 1, anon_sym_LPAREN2, STATE(2010), 1, sym_comment, @@ -256006,7 +256006,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_shebang_repeat1, STATE(7336), 1, sym__expr_parenthesized_immediate, - ACTIONS(5157), 13, + ACTIONS(5166), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -256020,7 +256020,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5155), 44, + ACTIONS(5164), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -256068,7 +256068,7 @@ static const uint16_t ts_small_parse_table[] = { [23374] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5169), 1, + ACTIONS(5178), 1, anon_sym_DOT2, STATE(1684), 1, aux_sym_cell_path_repeat1, @@ -256139,7 +256139,7 @@ static const uint16_t ts_small_parse_table[] = { [23453] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5169), 1, + ACTIONS(5178), 1, anon_sym_DOT2, STATE(1684), 1, aux_sym_cell_path_repeat1, @@ -256210,7 +256210,7 @@ static const uint16_t ts_small_parse_table[] = { [23532] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5169), 1, + ACTIONS(5178), 1, anon_sym_DOT2, STATE(1684), 1, aux_sym_cell_path_repeat1, @@ -256281,7 +256281,7 @@ static const uint16_t ts_small_parse_table[] = { [23611] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4403), 1, + ACTIONS(4412), 1, anon_sym_LPAREN2, STATE(2014), 1, sym_comment, @@ -256289,7 +256289,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_shebang_repeat1, STATE(7336), 1, sym__expr_parenthesized_immediate, - ACTIONS(5157), 13, + ACTIONS(5166), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -256303,7 +256303,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5155), 44, + ACTIONS(5164), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -256351,7 +256351,7 @@ static const uint16_t ts_small_parse_table[] = { [23688] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5169), 1, + ACTIONS(5178), 1, anon_sym_DOT2, STATE(1684), 1, aux_sym_cell_path_repeat1, @@ -256422,7 +256422,7 @@ static const uint16_t ts_small_parse_table[] = { [23767] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5169), 1, + ACTIONS(5178), 1, anon_sym_DOT2, STATE(1684), 1, aux_sym_cell_path_repeat1, @@ -256493,7 +256493,7 @@ static const uint16_t ts_small_parse_table[] = { [23846] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4403), 1, + ACTIONS(4412), 1, anon_sym_LPAREN2, STATE(2017), 1, sym_comment, @@ -256501,7 +256501,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_shebang_repeat1, STATE(7336), 1, sym__expr_parenthesized_immediate, - ACTIONS(5153), 13, + ACTIONS(5162), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -256515,7 +256515,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5151), 44, + ACTIONS(5160), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -256563,7 +256563,7 @@ static const uint16_t ts_small_parse_table[] = { [23923] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4403), 1, + ACTIONS(4412), 1, anon_sym_LPAREN2, STATE(2018), 1, sym_comment, @@ -256571,7 +256571,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_shebang_repeat1, STATE(7336), 1, sym__expr_parenthesized_immediate, - ACTIONS(5157), 13, + ACTIONS(5166), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -256585,7 +256585,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5155), 44, + ACTIONS(5164), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -256633,7 +256633,7 @@ static const uint16_t ts_small_parse_table[] = { [24000] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4403), 1, + ACTIONS(4412), 1, anon_sym_LPAREN2, STATE(2019), 1, sym_comment, @@ -256641,7 +256641,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_shebang_repeat1, STATE(7336), 1, sym__expr_parenthesized_immediate, - ACTIONS(5153), 13, + ACTIONS(5162), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -256655,7 +256655,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5151), 44, + ACTIONS(5160), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -256703,7 +256703,7 @@ static const uint16_t ts_small_parse_table[] = { [24077] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4403), 1, + ACTIONS(4412), 1, anon_sym_LPAREN2, STATE(2020), 1, sym_comment, @@ -256711,7 +256711,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_shebang_repeat1, STATE(7336), 1, sym__expr_parenthesized_immediate, - ACTIONS(5153), 13, + ACTIONS(5162), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -256725,7 +256725,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5151), 44, + ACTIONS(5160), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -256773,7 +256773,7 @@ static const uint16_t ts_small_parse_table[] = { [24154] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4403), 1, + ACTIONS(4412), 1, anon_sym_LPAREN2, STATE(2021), 1, sym_comment, @@ -256781,7 +256781,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_shebang_repeat1, STATE(7336), 1, sym__expr_parenthesized_immediate, - ACTIONS(5153), 13, + ACTIONS(5162), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -256795,7 +256795,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5151), 44, + ACTIONS(5160), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -256843,7 +256843,7 @@ static const uint16_t ts_small_parse_table[] = { [24231] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4403), 1, + ACTIONS(4412), 1, anon_sym_LPAREN2, STATE(2022), 1, sym_comment, @@ -256851,7 +256851,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_shebang_repeat1, STATE(7336), 1, sym__expr_parenthesized_immediate, - ACTIONS(5157), 13, + ACTIONS(5166), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -256865,7 +256865,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5155), 44, + ACTIONS(5164), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -256913,7 +256913,7 @@ static const uint16_t ts_small_parse_table[] = { [24308] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5169), 1, + ACTIONS(5178), 1, anon_sym_DOT2, STATE(1684), 1, aux_sym_cell_path_repeat1, @@ -256984,7 +256984,7 @@ static const uint16_t ts_small_parse_table[] = { [24387] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4403), 1, + ACTIONS(4412), 1, anon_sym_LPAREN2, STATE(2024), 1, sym_comment, @@ -256992,7 +256992,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_shebang_repeat1, STATE(7336), 1, sym__expr_parenthesized_immediate, - ACTIONS(5153), 13, + ACTIONS(5162), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -257006,7 +257006,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5151), 44, + ACTIONS(5160), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -257054,7 +257054,7 @@ static const uint16_t ts_small_parse_table[] = { [24464] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4403), 1, + ACTIONS(4412), 1, anon_sym_LPAREN2, STATE(2025), 1, sym_comment, @@ -257062,7 +257062,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_shebang_repeat1, STATE(7336), 1, sym__expr_parenthesized_immediate, - ACTIONS(5153), 13, + ACTIONS(5162), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -257076,7 +257076,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5151), 44, + ACTIONS(5160), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -257124,7 +257124,7 @@ static const uint16_t ts_small_parse_table[] = { [24541] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5169), 1, + ACTIONS(5178), 1, anon_sym_DOT2, STATE(1684), 1, aux_sym_cell_path_repeat1, @@ -257195,7 +257195,7 @@ static const uint16_t ts_small_parse_table[] = { [24620] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4403), 1, + ACTIONS(4412), 1, anon_sym_LPAREN2, STATE(2027), 1, sym_comment, @@ -257203,7 +257203,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_shebang_repeat1, STATE(7336), 1, sym__expr_parenthesized_immediate, - ACTIONS(5153), 13, + ACTIONS(5162), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -257217,7 +257217,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5151), 44, + ACTIONS(5160), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -257533,7 +257533,7 @@ static const uint16_t ts_small_parse_table[] = { [24981] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4403), 1, + ACTIONS(4412), 1, anon_sym_LPAREN2, STATE(2032), 1, sym_comment, @@ -257541,7 +257541,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_shebang_repeat1, STATE(7336), 1, sym__expr_parenthesized_immediate, - ACTIONS(5153), 13, + ACTIONS(5162), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -257555,7 +257555,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5151), 44, + ACTIONS(5160), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -257804,7 +257804,7 @@ static const uint16_t ts_small_parse_table[] = { [25271] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4403), 1, + ACTIONS(4412), 1, anon_sym_LPAREN2, STATE(2036), 1, sym_comment, @@ -257812,7 +257812,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_shebang_repeat1, STATE(7336), 1, sym__expr_parenthesized_immediate, - ACTIONS(5157), 13, + ACTIONS(5166), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -257826,7 +257826,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5155), 44, + ACTIONS(5164), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -257874,7 +257874,7 @@ static const uint16_t ts_small_parse_table[] = { [25348] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5169), 1, + ACTIONS(5178), 1, anon_sym_DOT2, STATE(1684), 1, aux_sym_cell_path_repeat1, @@ -258213,7 +258213,7 @@ static const uint16_t ts_small_parse_table[] = { [25711] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4403), 1, + ACTIONS(4412), 1, anon_sym_LPAREN2, STATE(2042), 1, sym_comment, @@ -258221,7 +258221,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_shebang_repeat1, STATE(7336), 1, sym__expr_parenthesized_immediate, - ACTIONS(5153), 13, + ACTIONS(5162), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -258235,7 +258235,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5151), 44, + ACTIONS(5160), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -259161,7 +259161,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1014), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(5145), 13, + ACTIONS(5154), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -259175,7 +259175,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5147), 44, + ACTIONS(5156), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -259249,17 +259249,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH2, ACTIONS(1022), 1, anon_sym_DOLLAR, - ACTIONS(3410), 1, + ACTIONS(3419), 1, anon_sym_null, - ACTIONS(3414), 1, + ACTIONS(3423), 1, aux_sym__val_number_decimal_token1, - ACTIONS(3416), 1, + ACTIONS(3425), 1, aux_sym__val_number_decimal_token2, - ACTIONS(3418), 1, + ACTIONS(3427), 1, aux_sym__val_number_decimal_token3, - ACTIONS(3420), 1, + ACTIONS(3429), 1, aux_sym__val_number_decimal_token4, - ACTIONS(3422), 1, + ACTIONS(3431), 1, anon_sym_COLON2, STATE(1638), 1, sym__val_number, @@ -259290,7 +259290,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(239), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3412), 2, + ACTIONS(3421), 2, anon_sym_true, anon_sym_false, STATE(1420), 2, @@ -259350,17 +259350,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH2, ACTIONS(1022), 1, anon_sym_DOLLAR, - ACTIONS(3410), 1, + ACTIONS(3419), 1, anon_sym_null, - ACTIONS(3414), 1, + ACTIONS(3423), 1, aux_sym__val_number_decimal_token1, - ACTIONS(3416), 1, + ACTIONS(3425), 1, aux_sym__val_number_decimal_token2, - ACTIONS(3418), 1, + ACTIONS(3427), 1, aux_sym__val_number_decimal_token3, - ACTIONS(3420), 1, + ACTIONS(3429), 1, aux_sym__val_number_decimal_token4, - ACTIONS(3422), 1, + ACTIONS(3431), 1, anon_sym_COLON2, STATE(1638), 1, sym__val_number, @@ -259391,7 +259391,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(239), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3412), 2, + ACTIONS(3421), 2, anon_sym_true, anon_sym_false, STATE(1420), 2, @@ -259434,13 +259434,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1014), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(5108), 5, + ACTIONS(5117), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(5112), 8, + ACTIONS(5121), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -259449,7 +259449,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5106), 20, + ACTIONS(5115), 20, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -259470,7 +259470,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - ACTIONS(5110), 23, + ACTIONS(5119), 23, anon_sym_DASH2, anon_sym_in2, anon_sym_and2, @@ -259631,7 +259631,7 @@ static const uint16_t ts_small_parse_table[] = { [27287] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4403), 1, + ACTIONS(4412), 1, anon_sym_LPAREN2, STATE(2062), 1, sym_comment, @@ -259639,7 +259639,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_shebang_repeat1, STATE(7336), 1, sym__expr_parenthesized_immediate, - ACTIONS(5157), 13, + ACTIONS(5166), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -259653,7 +259653,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5155), 44, + ACTIONS(5164), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -260170,7 +260170,7 @@ static const uint16_t ts_small_parse_table[] = { [27861] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4403), 1, + ACTIONS(4412), 1, anon_sym_LPAREN2, STATE(2070), 1, sym_comment, @@ -260178,7 +260178,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_shebang_repeat1, STATE(7336), 1, sym__expr_parenthesized_immediate, - ACTIONS(5157), 13, + ACTIONS(5166), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -260192,7 +260192,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5155), 44, + ACTIONS(5164), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -260374,7 +260374,7 @@ static const uint16_t ts_small_parse_table[] = { [28080] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4403), 1, + ACTIONS(4412), 1, anon_sym_LPAREN2, STATE(2073), 1, sym_comment, @@ -260382,7 +260382,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_shebang_repeat1, STATE(7336), 1, sym__expr_parenthesized_immediate, - ACTIONS(5153), 13, + ACTIONS(5162), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -260396,7 +260396,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5151), 44, + ACTIONS(5160), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -260444,7 +260444,7 @@ static const uint16_t ts_small_parse_table[] = { [28157] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5169), 1, + ACTIONS(5178), 1, anon_sym_DOT2, STATE(1684), 1, aux_sym_cell_path_repeat1, @@ -260517,7 +260517,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(2075), 1, sym_comment, - ACTIONS(5120), 13, + ACTIONS(5129), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -260531,7 +260531,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5118), 46, + ACTIONS(5127), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -260939,17 +260939,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH2, ACTIONS(1022), 1, anon_sym_DOLLAR, - ACTIONS(3410), 1, + ACTIONS(3419), 1, anon_sym_null, - ACTIONS(3418), 1, + ACTIONS(3427), 1, aux_sym__val_number_decimal_token3, - ACTIONS(3420), 1, + ACTIONS(3429), 1, aux_sym__val_number_decimal_token4, - ACTIONS(5181), 1, + ACTIONS(5190), 1, anon_sym_DOT_DOT, - ACTIONS(5185), 1, + ACTIONS(5194), 1, aux_sym__val_number_decimal_token1, - ACTIONS(5187), 1, + ACTIONS(5196), 1, aux_sym__val_number_decimal_token2, STATE(1638), 1, sym__val_number, @@ -260977,10 +260977,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(239), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3412), 2, + ACTIONS(3421), 2, anon_sym_true, anon_sym_false, - ACTIONS(5183), 2, + ACTIONS(5192), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, STATE(1420), 2, @@ -261082,11 +261082,11 @@ static const uint16_t ts_small_parse_table[] = { [28874] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5189), 1, + ACTIONS(5198), 1, anon_sym_DOT_DOT2, STATE(2083), 1, sym_comment, - ACTIONS(5191), 2, + ACTIONS(5200), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, ACTIONS(2170), 13, @@ -261150,11 +261150,11 @@ static const uint16_t ts_small_parse_table[] = { [28948] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5193), 1, + ACTIONS(5202), 1, anon_sym_DOT_DOT2, STATE(2084), 1, sym_comment, - ACTIONS(5195), 2, + ACTIONS(5204), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, ACTIONS(1786), 13, @@ -261218,20 +261218,20 @@ static const uint16_t ts_small_parse_table[] = { [29022] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4728), 1, + ACTIONS(4737), 1, anon_sym_DOT_DOT2, STATE(2085), 1, sym_comment, - ACTIONS(4730), 2, + ACTIONS(4739), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(5108), 5, + ACTIONS(5117), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(5112), 8, + ACTIONS(5121), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -261240,7 +261240,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5106), 20, + ACTIONS(5115), 20, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -261261,7 +261261,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - ACTIONS(5110), 23, + ACTIONS(5119), 23, anon_sym_DASH2, anon_sym_in2, anon_sym_and2, @@ -261492,13 +261492,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(2089), 1, sym_comment, - ACTIONS(5108), 5, + ACTIONS(5117), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(5112), 8, + ACTIONS(5121), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -261507,7 +261507,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5106), 23, + ACTIONS(5115), 23, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -261531,7 +261531,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - ACTIONS(5110), 23, + ACTIONS(5119), 23, anon_sym_DASH2, anon_sym_in2, anon_sym_and2, @@ -261560,7 +261560,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(2090), 1, sym_comment, - ACTIONS(5199), 13, + ACTIONS(5208), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -261574,7 +261574,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5197), 46, + ACTIONS(5206), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -262030,7 +262030,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(2097), 1, sym_comment, - ACTIONS(5203), 13, + ACTIONS(5212), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -262044,7 +262044,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5201), 46, + ACTIONS(5210), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -262160,14 +262160,14 @@ static const uint16_t ts_small_parse_table[] = { [30038] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4728), 1, + ACTIONS(4737), 1, anon_sym_DOT_DOT2, STATE(2099), 1, sym_comment, - ACTIONS(4730), 2, + ACTIONS(4739), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(5108), 13, + ACTIONS(5117), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -262181,7 +262181,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5110), 43, + ACTIONS(5119), 43, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -262254,15 +262254,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH2, ACTIONS(1022), 1, anon_sym_DOLLAR, - ACTIONS(3410), 1, + ACTIONS(3419), 1, anon_sym_null, - ACTIONS(3414), 1, + ACTIONS(3423), 1, aux_sym__val_number_decimal_token1, - ACTIONS(3416), 1, + ACTIONS(3425), 1, aux_sym__val_number_decimal_token2, - ACTIONS(3418), 1, + ACTIONS(3427), 1, aux_sym__val_number_decimal_token3, - ACTIONS(3420), 1, + ACTIONS(3429), 1, aux_sym__val_number_decimal_token4, STATE(1638), 1, sym__val_number, @@ -262293,7 +262293,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(239), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3412), 2, + ACTIONS(3421), 2, anon_sym_true, anon_sym_false, STATE(1420), 2, @@ -262329,7 +262329,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(2101), 1, sym_comment, - ACTIONS(5108), 13, + ACTIONS(5117), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -262343,7 +262343,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5110), 46, + ACTIONS(5119), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -262395,7 +262395,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(2102), 1, sym_comment, - ACTIONS(5120), 13, + ACTIONS(5129), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -262409,7 +262409,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5118), 46, + ACTIONS(5127), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -262485,15 +262485,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH2, ACTIONS(1022), 1, anon_sym_DOLLAR, - ACTIONS(3410), 1, + ACTIONS(3419), 1, anon_sym_null, - ACTIONS(3414), 1, + ACTIONS(3423), 1, aux_sym__val_number_decimal_token1, - ACTIONS(3416), 1, + ACTIONS(3425), 1, aux_sym__val_number_decimal_token2, - ACTIONS(3418), 1, + ACTIONS(3427), 1, aux_sym__val_number_decimal_token3, - ACTIONS(3420), 1, + ACTIONS(3429), 1, aux_sym__val_number_decimal_token4, STATE(1638), 1, sym__val_number, @@ -262524,7 +262524,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(239), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3412), 2, + ACTIONS(3421), 2, anon_sym_true, anon_sym_false, STATE(1420), 2, @@ -262560,7 +262560,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(2104), 1, sym_comment, - ACTIONS(5120), 13, + ACTIONS(5129), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -262574,7 +262574,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5118), 46, + ACTIONS(5127), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -262626,7 +262626,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(2105), 1, sym_comment, - ACTIONS(5120), 13, + ACTIONS(5129), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -262640,7 +262640,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5118), 46, + ACTIONS(5127), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -262758,7 +262758,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(2107), 1, sym_comment, - ACTIONS(5120), 13, + ACTIONS(5129), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -262772,7 +262772,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5118), 46, + ACTIONS(5127), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -262824,7 +262824,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(2108), 1, sym_comment, - ACTIONS(5120), 13, + ACTIONS(5129), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -262838,7 +262838,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5118), 46, + ACTIONS(5127), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -262890,7 +262890,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(2109), 1, sym_comment, - ACTIONS(5120), 13, + ACTIONS(5129), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -262904,7 +262904,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5118), 46, + ACTIONS(5127), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -262956,7 +262956,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(2110), 1, sym_comment, - ACTIONS(5120), 13, + ACTIONS(5129), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -262970,7 +262970,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5118), 46, + ACTIONS(5127), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -263022,7 +263022,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(2111), 1, sym_comment, - ACTIONS(5120), 13, + ACTIONS(5129), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -263036,7 +263036,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5118), 46, + ACTIONS(5127), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -263088,7 +263088,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(2112), 1, sym_comment, - ACTIONS(5207), 13, + ACTIONS(5216), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -263102,7 +263102,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5205), 46, + ACTIONS(5214), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -263220,7 +263220,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(2114), 1, sym_comment, - ACTIONS(5120), 13, + ACTIONS(5129), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -263234,7 +263234,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5118), 46, + ACTIONS(5127), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -263286,7 +263286,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(2115), 1, sym_comment, - ACTIONS(5120), 13, + ACTIONS(5129), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -263300,7 +263300,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5118), 46, + ACTIONS(5127), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -263352,7 +263352,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(2116), 1, sym_comment, - ACTIONS(5120), 13, + ACTIONS(5129), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -263366,7 +263366,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5118), 46, + ACTIONS(5127), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -263418,7 +263418,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(2117), 1, sym_comment, - ACTIONS(5120), 13, + ACTIONS(5129), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -263432,7 +263432,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5118), 46, + ACTIONS(5127), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -263548,7 +263548,7 @@ static const uint16_t ts_small_parse_table[] = { [31574] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5209), 1, + ACTIONS(5218), 1, aux_sym__immediate_decimal_token2, STATE(2119), 1, sym_comment, @@ -263683,7 +263683,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(2121), 1, sym_comment, - ACTIONS(5213), 13, + ACTIONS(5222), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -263697,7 +263697,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5211), 46, + ACTIONS(5220), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -263879,11 +263879,11 @@ static const uint16_t ts_small_parse_table[] = { [31926] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5215), 1, + ACTIONS(5224), 1, anon_sym_DOT_DOT2, STATE(2124), 1, sym_comment, - ACTIONS(5217), 2, + ACTIONS(5226), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, ACTIONS(2144), 13, @@ -263947,11 +263947,11 @@ static const uint16_t ts_small_parse_table[] = { [32000] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5219), 1, + ACTIONS(5228), 1, anon_sym_DOT_DOT2, STATE(2125), 1, sym_comment, - ACTIONS(5221), 2, + ACTIONS(5230), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, ACTIONS(2152), 13, @@ -264081,11 +264081,11 @@ static const uint16_t ts_small_parse_table[] = { [32144] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5223), 1, + ACTIONS(5232), 1, anon_sym_DOT_DOT2, STATE(2127), 1, sym_comment, - ACTIONS(5225), 2, + ACTIONS(5234), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, ACTIONS(2160), 13, @@ -264149,11 +264149,11 @@ static const uint16_t ts_small_parse_table[] = { [32218] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5227), 1, + ACTIONS(5236), 1, anon_sym_DOT_DOT2, STATE(2128), 1, sym_comment, - ACTIONS(5229), 2, + ACTIONS(5238), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, ACTIONS(1865), 13, @@ -264415,11 +264415,11 @@ static const uint16_t ts_small_parse_table[] = { [32502] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4728), 1, + ACTIONS(4737), 1, anon_sym_DOT_DOT2, STATE(2132), 1, sym_comment, - ACTIONS(4730), 2, + ACTIONS(4739), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, ACTIONS(1004), 13, @@ -265235,15 +265235,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH2, ACTIONS(1022), 1, anon_sym_DOLLAR, - ACTIONS(3410), 1, + ACTIONS(3419), 1, anon_sym_null, - ACTIONS(3414), 1, + ACTIONS(3423), 1, aux_sym__val_number_decimal_token1, - ACTIONS(3416), 1, + ACTIONS(3425), 1, aux_sym__val_number_decimal_token2, - ACTIONS(3418), 1, + ACTIONS(3427), 1, aux_sym__val_number_decimal_token3, - ACTIONS(3420), 1, + ACTIONS(3429), 1, aux_sym__val_number_decimal_token4, STATE(1638), 1, sym__val_number, @@ -265274,7 +265274,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(239), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3412), 2, + ACTIONS(3421), 2, anon_sym_true, anon_sym_false, STATE(1420), 2, @@ -265334,15 +265334,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH2, ACTIONS(1022), 1, anon_sym_DOLLAR, - ACTIONS(3410), 1, + ACTIONS(3419), 1, anon_sym_null, - ACTIONS(3414), 1, + ACTIONS(3423), 1, aux_sym__val_number_decimal_token1, - ACTIONS(3416), 1, + ACTIONS(3425), 1, aux_sym__val_number_decimal_token2, - ACTIONS(3418), 1, + ACTIONS(3427), 1, aux_sym__val_number_decimal_token3, - ACTIONS(3420), 1, + ACTIONS(3429), 1, aux_sym__val_number_decimal_token4, STATE(1638), 1, sym__val_number, @@ -265373,7 +265373,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(239), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3412), 2, + ACTIONS(3421), 2, anon_sym_true, anon_sym_false, STATE(1420), 2, @@ -265433,15 +265433,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH2, ACTIONS(1022), 1, anon_sym_DOLLAR, - ACTIONS(3410), 1, + ACTIONS(3419), 1, anon_sym_null, - ACTIONS(3414), 1, + ACTIONS(3423), 1, aux_sym__val_number_decimal_token1, - ACTIONS(3416), 1, + ACTIONS(3425), 1, aux_sym__val_number_decimal_token2, - ACTIONS(3418), 1, + ACTIONS(3427), 1, aux_sym__val_number_decimal_token3, - ACTIONS(3420), 1, + ACTIONS(3429), 1, aux_sym__val_number_decimal_token4, STATE(1638), 1, sym__val_number, @@ -265472,7 +265472,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(239), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3412), 2, + ACTIONS(3421), 2, anon_sym_true, anon_sym_false, STATE(1420), 2, @@ -265598,15 +265598,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH2, ACTIONS(1022), 1, anon_sym_DOLLAR, - ACTIONS(3410), 1, + ACTIONS(3419), 1, anon_sym_null, - ACTIONS(3414), 1, + ACTIONS(3423), 1, aux_sym__val_number_decimal_token1, - ACTIONS(3416), 1, + ACTIONS(3425), 1, aux_sym__val_number_decimal_token2, - ACTIONS(3418), 1, + ACTIONS(3427), 1, aux_sym__val_number_decimal_token3, - ACTIONS(3420), 1, + ACTIONS(3429), 1, aux_sym__val_number_decimal_token4, STATE(1638), 1, sym__val_number, @@ -265637,7 +265637,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(239), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3412), 2, + ACTIONS(3421), 2, anon_sym_true, anon_sym_false, STATE(1420), 2, @@ -265763,15 +265763,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH2, ACTIONS(1022), 1, anon_sym_DOLLAR, - ACTIONS(3410), 1, + ACTIONS(3419), 1, anon_sym_null, - ACTIONS(3414), 1, + ACTIONS(3423), 1, aux_sym__val_number_decimal_token1, - ACTIONS(3416), 1, + ACTIONS(3425), 1, aux_sym__val_number_decimal_token2, - ACTIONS(3418), 1, + ACTIONS(3427), 1, aux_sym__val_number_decimal_token3, - ACTIONS(3420), 1, + ACTIONS(3429), 1, aux_sym__val_number_decimal_token4, STATE(1638), 1, sym__val_number, @@ -265802,7 +265802,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(239), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3412), 2, + ACTIONS(3421), 2, anon_sym_true, anon_sym_false, STATE(1420), 2, @@ -265862,15 +265862,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH2, ACTIONS(1022), 1, anon_sym_DOLLAR, - ACTIONS(3410), 1, + ACTIONS(3419), 1, anon_sym_null, - ACTIONS(3414), 1, + ACTIONS(3423), 1, aux_sym__val_number_decimal_token1, - ACTIONS(3416), 1, + ACTIONS(3425), 1, aux_sym__val_number_decimal_token2, - ACTIONS(3418), 1, + ACTIONS(3427), 1, aux_sym__val_number_decimal_token3, - ACTIONS(3420), 1, + ACTIONS(3429), 1, aux_sym__val_number_decimal_token4, STATE(1638), 1, sym__val_number, @@ -265901,7 +265901,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(239), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3412), 2, + ACTIONS(3421), 2, anon_sym_true, anon_sym_false, STATE(1420), 2, @@ -265935,7 +265935,7 @@ static const uint16_t ts_small_parse_table[] = { [34302] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5175), 1, + ACTIONS(5184), 1, aux_sym__immediate_decimal_token2, STATE(2152), 1, sym_comment, @@ -266094,15 +266094,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH2, ACTIONS(1022), 1, anon_sym_DOLLAR, - ACTIONS(3410), 1, + ACTIONS(3419), 1, anon_sym_null, - ACTIONS(3414), 1, + ACTIONS(3423), 1, aux_sym__val_number_decimal_token1, - ACTIONS(3416), 1, + ACTIONS(3425), 1, aux_sym__val_number_decimal_token2, - ACTIONS(3418), 1, + ACTIONS(3427), 1, aux_sym__val_number_decimal_token3, - ACTIONS(3420), 1, + ACTIONS(3429), 1, aux_sym__val_number_decimal_token4, STATE(1638), 1, sym__val_number, @@ -266133,7 +266133,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(239), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3412), 2, + ACTIONS(3421), 2, anon_sym_true, anon_sym_false, STATE(1420), 2, @@ -266237,7 +266237,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(2193), 1, aux_sym_shebang_repeat1, - ACTIONS(5233), 13, + ACTIONS(5242), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -266251,7 +266251,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5231), 44, + ACTIONS(5240), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -266299,13 +266299,13 @@ static const uint16_t ts_small_parse_table[] = { [34721] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4403), 1, + ACTIONS(4412), 1, anon_sym_LPAREN2, STATE(2157), 1, sym_comment, STATE(7291), 1, sym__expr_parenthesized_immediate, - ACTIONS(5120), 13, + ACTIONS(5129), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -266319,7 +266319,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5118), 43, + ACTIONS(5127), 43, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -266366,13 +266366,13 @@ static const uint16_t ts_small_parse_table[] = { [34794] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4403), 1, + ACTIONS(4412), 1, anon_sym_LPAREN2, STATE(2158), 1, sym_comment, STATE(7291), 1, sym__expr_parenthesized_immediate, - ACTIONS(5120), 13, + ACTIONS(5129), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -266386,7 +266386,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5118), 43, + ACTIONS(5127), 43, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -266433,13 +266433,13 @@ static const uint16_t ts_small_parse_table[] = { [34867] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4403), 1, + ACTIONS(4412), 1, anon_sym_LPAREN2, STATE(2159), 1, sym_comment, STATE(7291), 1, sym__expr_parenthesized_immediate, - ACTIONS(5120), 13, + ACTIONS(5129), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -266453,7 +266453,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5118), 43, + ACTIONS(5127), 43, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -266500,17 +266500,17 @@ static const uint16_t ts_small_parse_table[] = { [34940] = 19, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3118), 1, + ACTIONS(3125), 1, anon_sym_DQUOTE, - ACTIONS(3124), 1, + ACTIONS(3131), 1, sym_raw_string_begin, - ACTIONS(4962), 1, + ACTIONS(4971), 1, aux_sym__val_number_decimal_token3, - ACTIONS(4964), 1, + ACTIONS(4973), 1, aux_sym__val_number_decimal_token4, - ACTIONS(5239), 1, + ACTIONS(5248), 1, sym__newline, - ACTIONS(5241), 1, + ACTIONS(5250), 1, anon_sym_RBRACK, STATE(2160), 1, sym_comment, @@ -266526,23 +266526,23 @@ static const uint16_t ts_small_parse_table[] = { sym_cmd_identifier, STATE(6932), 1, sym_val_string, - ACTIONS(3120), 2, + ACTIONS(3127), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4960), 2, + ACTIONS(4969), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, STATE(5129), 2, sym__raw_str, sym__str_double_quotes, - ACTIONS(5235), 6, + ACTIONS(5244), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(5237), 34, + ACTIONS(5246), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -266584,7 +266584,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(2214), 1, aux_sym_shebang_repeat1, - ACTIONS(5165), 13, + ACTIONS(5174), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -266598,7 +266598,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5163), 44, + ACTIONS(5172), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -266646,13 +266646,13 @@ static const uint16_t ts_small_parse_table[] = { [35110] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4403), 1, + ACTIONS(4412), 1, anon_sym_LPAREN2, STATE(2162), 1, sym_comment, STATE(7291), 1, sym__expr_parenthesized_immediate, - ACTIONS(5120), 13, + ACTIONS(5129), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -266666,7 +266666,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5118), 43, + ACTIONS(5127), 43, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -266717,7 +266717,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(2279), 1, aux_sym_shebang_repeat1, - ACTIONS(5157), 13, + ACTIONS(5166), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -266731,7 +266731,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5155), 44, + ACTIONS(5164), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -266779,13 +266779,13 @@ static const uint16_t ts_small_parse_table[] = { [35254] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4403), 1, + ACTIONS(4412), 1, anon_sym_LPAREN2, STATE(2164), 1, sym_comment, STATE(7291), 1, sym__expr_parenthesized_immediate, - ACTIONS(5120), 13, + ACTIONS(5129), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -266799,7 +266799,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5118), 43, + ACTIONS(5127), 43, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -266846,13 +266846,13 @@ static const uint16_t ts_small_parse_table[] = { [35327] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4403), 1, + ACTIONS(4412), 1, anon_sym_LPAREN2, STATE(2165), 1, sym_comment, STATE(7291), 1, sym__expr_parenthesized_immediate, - ACTIONS(5120), 13, + ACTIONS(5129), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -266866,7 +266866,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5118), 43, + ACTIONS(5127), 43, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -266984,7 +266984,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(2234), 1, aux_sym_shebang_repeat1, - ACTIONS(5153), 13, + ACTIONS(5162), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -266998,7 +266998,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5151), 44, + ACTIONS(5160), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -267050,7 +267050,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_shebang_repeat1, STATE(2168), 1, sym_comment, - ACTIONS(5245), 13, + ACTIONS(5254), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -267064,7 +267064,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5243), 44, + ACTIONS(5252), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -267116,13 +267116,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1299), 1, sym_raw_string_begin, - ACTIONS(3424), 1, + ACTIONS(3433), 1, anon_sym_COLON2, - ACTIONS(4962), 1, + ACTIONS(4971), 1, aux_sym__val_number_decimal_token3, - ACTIONS(4964), 1, + ACTIONS(4973), 1, aux_sym__val_number_decimal_token4, - ACTIONS(5247), 1, + ACTIONS(5256), 1, anon_sym_DASH_DASH, STATE(2169), 1, sym_comment, @@ -267141,20 +267141,20 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1297), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4960), 2, + ACTIONS(4969), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, STATE(3916), 2, sym__raw_str, sym__str_double_quotes, - ACTIONS(4950), 6, + ACTIONS(4959), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(4952), 34, + ACTIONS(4961), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -267196,7 +267196,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(2307), 1, aux_sym_shebang_repeat1, - ACTIONS(5157), 13, + ACTIONS(5166), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -267210,7 +267210,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5155), 44, + ACTIONS(5164), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -267323,7 +267323,7 @@ static const uint16_t ts_small_parse_table[] = { [35854] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5249), 1, + ACTIONS(5258), 1, anon_sym_DOT2, STATE(2172), 1, sym_comment, @@ -267396,7 +267396,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(2266), 1, aux_sym_shebang_repeat1, - ACTIONS(5165), 13, + ACTIONS(5174), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -267410,7 +267410,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5163), 44, + ACTIONS(5172), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -267462,7 +267462,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(2241), 1, aux_sym_shebang_repeat1, - ACTIONS(5253), 13, + ACTIONS(5262), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -267476,7 +267476,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5251), 44, + ACTIONS(5260), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -267524,17 +267524,17 @@ static const uint16_t ts_small_parse_table[] = { [36073] = 19, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3118), 1, + ACTIONS(3125), 1, anon_sym_DQUOTE, - ACTIONS(3124), 1, + ACTIONS(3131), 1, sym_raw_string_begin, - ACTIONS(4962), 1, + ACTIONS(4971), 1, aux_sym__val_number_decimal_token3, - ACTIONS(4964), 1, + ACTIONS(4973), 1, aux_sym__val_number_decimal_token4, - ACTIONS(5239), 1, + ACTIONS(5248), 1, sym__newline, - ACTIONS(5255), 1, + ACTIONS(5264), 1, anon_sym_RBRACK, STATE(2175), 1, sym_comment, @@ -267550,23 +267550,23 @@ static const uint16_t ts_small_parse_table[] = { sym_cmd_identifier, STATE(6932), 1, sym_val_string, - ACTIONS(3120), 2, + ACTIONS(3127), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4960), 2, + ACTIONS(4969), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, STATE(5129), 2, sym__raw_str, sym__str_double_quotes, - ACTIONS(5235), 6, + ACTIONS(5244), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(5237), 34, + ACTIONS(5246), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -267675,7 +267675,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(2233), 1, aux_sym_shebang_repeat1, - ACTIONS(5157), 13, + ACTIONS(5166), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -267689,7 +267689,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5155), 44, + ACTIONS(5164), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -267741,7 +267741,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(2196), 1, aux_sym_shebang_repeat1, - ACTIONS(5179), 13, + ACTIONS(5188), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -267755,7 +267755,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5177), 44, + ACTIONS(5186), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -267807,7 +267807,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(2235), 1, aux_sym_shebang_repeat1, - ACTIONS(5157), 13, + ACTIONS(5166), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -267821,7 +267821,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5155), 44, + ACTIONS(5164), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -267873,7 +267873,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_shebang_repeat1, STATE(2180), 1, sym_comment, - ACTIONS(5259), 13, + ACTIONS(5268), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -267887,7 +267887,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5257), 44, + ACTIONS(5266), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -268006,7 +268006,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_shebang_repeat1, STATE(2182), 1, sym_comment, - ACTIONS(5259), 13, + ACTIONS(5268), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -268020,7 +268020,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5257), 44, + ACTIONS(5266), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -268072,7 +268072,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(2236), 1, aux_sym_shebang_repeat1, - ACTIONS(5153), 13, + ACTIONS(5162), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -268086,7 +268086,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5151), 44, + ACTIONS(5160), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -268138,7 +268138,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_shebang_repeat1, STATE(2184), 1, sym_comment, - ACTIONS(5259), 13, + ACTIONS(5268), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -268152,7 +268152,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5257), 44, + ACTIONS(5266), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -268204,7 +268204,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_shebang_repeat1, STATE(2185), 1, sym_comment, - ACTIONS(5259), 13, + ACTIONS(5268), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -268218,7 +268218,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5257), 44, + ACTIONS(5266), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -268270,7 +268270,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_shebang_repeat1, STATE(2186), 1, sym_comment, - ACTIONS(5259), 13, + ACTIONS(5268), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -268284,7 +268284,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5257), 44, + ACTIONS(5266), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -268336,7 +268336,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_shebang_repeat1, STATE(2187), 1, sym_comment, - ACTIONS(5259), 13, + ACTIONS(5268), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -268350,7 +268350,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5257), 44, + ACTIONS(5266), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -268469,7 +268469,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_shebang_repeat1, STATE(2189), 1, sym_comment, - ACTIONS(5259), 13, + ACTIONS(5268), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -268483,7 +268483,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5257), 44, + ACTIONS(5266), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -268535,7 +268535,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(2217), 1, aux_sym_shebang_repeat1, - ACTIONS(5157), 13, + ACTIONS(5166), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -268549,7 +268549,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5155), 44, + ACTIONS(5164), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -268601,7 +268601,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_shebang_repeat1, STATE(2191), 1, sym_comment, - ACTIONS(5259), 13, + ACTIONS(5268), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -268615,7 +268615,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5257), 44, + ACTIONS(5266), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -268734,7 +268734,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_shebang_repeat1, STATE(2193), 1, sym_comment, - ACTIONS(5263), 13, + ACTIONS(5272), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -268748,7 +268748,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5261), 44, + ACTIONS(5270), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -268800,7 +268800,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_shebang_repeat1, STATE(2194), 1, sym_comment, - ACTIONS(5245), 13, + ACTIONS(5254), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -268814,7 +268814,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5243), 44, + ACTIONS(5252), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -268866,7 +268866,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_shebang_repeat1, STATE(2195), 1, sym_comment, - ACTIONS(5259), 13, + ACTIONS(5268), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -268880,7 +268880,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5257), 44, + ACTIONS(5266), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -268932,7 +268932,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_shebang_repeat1, STATE(2196), 1, sym_comment, - ACTIONS(5259), 13, + ACTIONS(5268), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -268946,7 +268946,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5257), 44, + ACTIONS(5266), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -269065,7 +269065,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_shebang_repeat1, STATE(2198), 1, sym_comment, - ACTIONS(5259), 13, + ACTIONS(5268), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -269079,7 +269079,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5257), 44, + ACTIONS(5266), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -269127,13 +269127,13 @@ static const uint16_t ts_small_parse_table[] = { [37815] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4403), 1, + ACTIONS(4412), 1, anon_sym_LPAREN2, STATE(2199), 1, sym_comment, STATE(7291), 1, sym__expr_parenthesized_immediate, - ACTIONS(5120), 13, + ACTIONS(5129), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -269147,7 +269147,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5118), 43, + ACTIONS(5127), 43, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -269194,13 +269194,13 @@ static const uint16_t ts_small_parse_table[] = { [37888] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4403), 1, + ACTIONS(4412), 1, anon_sym_LPAREN2, STATE(2200), 1, sym_comment, STATE(7291), 1, sym__expr_parenthesized_immediate, - ACTIONS(5120), 13, + ACTIONS(5129), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -269214,7 +269214,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5118), 43, + ACTIONS(5127), 43, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -269261,13 +269261,13 @@ static const uint16_t ts_small_parse_table[] = { [37961] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4403), 1, + ACTIONS(4412), 1, anon_sym_LPAREN2, STATE(2201), 1, sym_comment, STATE(7291), 1, sym__expr_parenthesized_immediate, - ACTIONS(5120), 13, + ACTIONS(5129), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -269281,7 +269281,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5118), 43, + ACTIONS(5127), 43, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -269328,13 +269328,13 @@ static const uint16_t ts_small_parse_table[] = { [38034] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4403), 1, + ACTIONS(4412), 1, anon_sym_LPAREN2, STATE(2202), 1, sym_comment, STATE(7291), 1, sym__expr_parenthesized_immediate, - ACTIONS(5120), 13, + ACTIONS(5129), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -269348,7 +269348,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5118), 43, + ACTIONS(5127), 43, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -269399,7 +269399,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_shebang_repeat1, STATE(2203), 1, sym_comment, - ACTIONS(5259), 13, + ACTIONS(5268), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -269413,7 +269413,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5257), 44, + ACTIONS(5266), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -269532,7 +269532,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_shebang_repeat1, STATE(2205), 1, sym_comment, - ACTIONS(5259), 13, + ACTIONS(5268), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -269546,7 +269546,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5257), 44, + ACTIONS(5266), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -269598,7 +269598,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(2211), 1, aux_sym_shebang_repeat1, - ACTIONS(5165), 13, + ACTIONS(5174), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -269612,7 +269612,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5163), 44, + ACTIONS(5172), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -269660,13 +269660,13 @@ static const uint16_t ts_small_parse_table[] = { [38393] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4403), 1, + ACTIONS(4412), 1, anon_sym_LPAREN2, STATE(2207), 1, sym_comment, STATE(7291), 1, sym__expr_parenthesized_immediate, - ACTIONS(5120), 13, + ACTIONS(5129), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -269680,7 +269680,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5118), 43, + ACTIONS(5127), 43, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -269727,13 +269727,13 @@ static const uint16_t ts_small_parse_table[] = { [38466] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4403), 1, + ACTIONS(4412), 1, anon_sym_LPAREN2, STATE(2208), 1, sym_comment, STATE(7291), 1, sym__expr_parenthesized_immediate, - ACTIONS(5120), 13, + ACTIONS(5129), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -269747,7 +269747,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5118), 43, + ACTIONS(5127), 43, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -269794,13 +269794,13 @@ static const uint16_t ts_small_parse_table[] = { [38539] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4403), 1, + ACTIONS(4412), 1, anon_sym_LPAREN2, STATE(2209), 1, sym_comment, STATE(7291), 1, sym__expr_parenthesized_immediate, - ACTIONS(5120), 13, + ACTIONS(5129), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -269814,7 +269814,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5118), 43, + ACTIONS(5127), 43, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -269930,7 +269930,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_shebang_repeat1, STATE(2211), 1, sym_comment, - ACTIONS(5267), 13, + ACTIONS(5276), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -269944,7 +269944,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5265), 44, + ACTIONS(5274), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -269996,7 +269996,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_shebang_repeat1, STATE(2212), 1, sym_comment, - ACTIONS(5179), 13, + ACTIONS(5188), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -270010,7 +270010,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5177), 44, + ACTIONS(5186), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -270062,7 +270062,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(2310), 1, aux_sym_shebang_repeat1, - ACTIONS(5153), 13, + ACTIONS(5162), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -270076,7 +270076,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5151), 44, + ACTIONS(5160), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -270128,7 +270128,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_shebang_repeat1, STATE(2214), 1, sym_comment, - ACTIONS(5267), 13, + ACTIONS(5276), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -270142,7 +270142,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5265), 44, + ACTIONS(5274), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -270194,7 +270194,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(2272), 1, aux_sym_shebang_repeat1, - ACTIONS(5165), 13, + ACTIONS(5174), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -270208,7 +270208,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5163), 44, + ACTIONS(5172), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -270260,7 +270260,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(2282), 1, aux_sym_shebang_repeat1, - ACTIONS(5165), 13, + ACTIONS(5174), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -270274,7 +270274,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5163), 44, + ACTIONS(5172), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -270326,7 +270326,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_shebang_repeat1, STATE(2217), 1, sym_comment, - ACTIONS(5245), 13, + ACTIONS(5254), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -270340,7 +270340,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5243), 44, + ACTIONS(5252), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -270459,7 +270459,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(2255), 1, aux_sym_shebang_repeat1, - ACTIONS(5153), 13, + ACTIONS(5162), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -270473,7 +270473,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5151), 44, + ACTIONS(5160), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -270521,7 +270521,7 @@ static const uint16_t ts_small_parse_table[] = { [39322] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5249), 1, + ACTIONS(5258), 1, anon_sym_DOT2, STATE(2220), 1, sym_comment, @@ -270594,7 +270594,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(2306), 1, aux_sym_shebang_repeat1, - ACTIONS(5165), 13, + ACTIONS(5174), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -270608,7 +270608,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5163), 44, + ACTIONS(5172), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -270658,7 +270658,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(2222), 1, sym_comment, - ACTIONS(4932), 13, + ACTIONS(4941), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -270672,7 +270672,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(4930), 45, + ACTIONS(4939), 45, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -270725,7 +270725,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_shebang_repeat1, STATE(2223), 1, sym_comment, - ACTIONS(5245), 13, + ACTIONS(5254), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -270739,7 +270739,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5243), 44, + ACTIONS(5252), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -270856,7 +270856,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(2244), 1, aux_sym_shebang_repeat1, - ACTIONS(5153), 13, + ACTIONS(5162), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -270870,7 +270870,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5151), 44, + ACTIONS(5160), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -270922,7 +270922,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_shebang_repeat1, STATE(2226), 1, sym_comment, - ACTIONS(5271), 13, + ACTIONS(5280), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -270936,7 +270936,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5269), 44, + ACTIONS(5278), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -270986,7 +270986,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(2227), 1, sym_comment, - ACTIONS(4989), 13, + ACTIONS(4998), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -271000,7 +271000,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(4987), 45, + ACTIONS(4996), 45, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -271053,7 +271053,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_shebang_repeat1, STATE(2228), 1, sym_comment, - ACTIONS(5157), 13, + ACTIONS(5166), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -271067,7 +271067,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5155), 44, + ACTIONS(5164), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -271119,7 +271119,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_shebang_repeat1, STATE(2229), 1, sym_comment, - ACTIONS(5179), 13, + ACTIONS(5188), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -271133,7 +271133,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5177), 44, + ACTIONS(5186), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -271185,7 +271185,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_shebang_repeat1, STATE(2230), 1, sym_comment, - ACTIONS(5157), 13, + ACTIONS(5166), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -271199,7 +271199,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5155), 44, + ACTIONS(5164), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -271251,7 +271251,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_shebang_repeat1, STATE(2231), 1, sym_comment, - ACTIONS(5271), 13, + ACTIONS(5280), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -271265,7 +271265,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5269), 44, + ACTIONS(5278), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -271317,7 +271317,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_shebang_repeat1, STATE(2232), 1, sym_comment, - ACTIONS(5271), 13, + ACTIONS(5280), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -271331,7 +271331,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5269), 44, + ACTIONS(5278), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -271383,7 +271383,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_shebang_repeat1, STATE(2233), 1, sym_comment, - ACTIONS(5245), 13, + ACTIONS(5254), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -271397,7 +271397,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5243), 44, + ACTIONS(5252), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -271449,7 +271449,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_shebang_repeat1, STATE(2234), 1, sym_comment, - ACTIONS(5271), 13, + ACTIONS(5280), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -271463,7 +271463,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5269), 44, + ACTIONS(5278), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -271515,7 +271515,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_shebang_repeat1, STATE(2235), 1, sym_comment, - ACTIONS(5245), 13, + ACTIONS(5254), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -271529,7 +271529,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5243), 44, + ACTIONS(5252), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -271581,7 +271581,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_shebang_repeat1, STATE(2236), 1, sym_comment, - ACTIONS(5271), 13, + ACTIONS(5280), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -271595,7 +271595,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5269), 44, + ACTIONS(5278), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -271647,7 +271647,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(2249), 1, aux_sym_shebang_repeat1, - ACTIONS(5153), 13, + ACTIONS(5162), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -271661,7 +271661,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5151), 44, + ACTIONS(5160), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -271713,13 +271713,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__unquoted_in_list_token2, ACTIONS(2547), 1, anon_sym_DOLLAR, - ACTIONS(5273), 1, + ACTIONS(5282), 1, anon_sym_LPAREN2, - ACTIONS(5275), 1, + ACTIONS(5284), 1, anon_sym_DOT, - ACTIONS(5279), 1, + ACTIONS(5288), 1, aux_sym__immediate_decimal_token4, - ACTIONS(5281), 1, + ACTIONS(5290), 1, aux_sym__immediate_decimal_token5, STATE(2238), 1, sym_comment, @@ -271728,7 +271728,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1553), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(5277), 2, + ACTIONS(5286), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, STATE(2805), 2, @@ -271787,7 +271787,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_shebang_repeat1, STATE(2239), 1, sym_comment, - ACTIONS(5153), 13, + ACTIONS(5162), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -271801,7 +271801,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5151), 44, + ACTIONS(5160), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -271853,7 +271853,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(2275), 1, aux_sym_shebang_repeat1, - ACTIONS(5157), 13, + ACTIONS(5166), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -271867,7 +271867,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5155), 44, + ACTIONS(5164), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -271919,7 +271919,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_shebang_repeat1, STATE(2241), 1, sym_comment, - ACTIONS(5285), 13, + ACTIONS(5294), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -271933,7 +271933,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5283), 44, + ACTIONS(5292), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -271985,7 +271985,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_shebang_repeat1, STATE(2242), 1, sym_comment, - ACTIONS(5245), 13, + ACTIONS(5254), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -271999,7 +271999,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5243), 44, + ACTIONS(5252), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -272051,7 +272051,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(2278), 1, aux_sym_shebang_repeat1, - ACTIONS(5165), 13, + ACTIONS(5174), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -272065,7 +272065,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5163), 44, + ACTIONS(5172), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -272117,7 +272117,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_shebang_repeat1, STATE(2244), 1, sym_comment, - ACTIONS(5271), 13, + ACTIONS(5280), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -272131,7 +272131,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5269), 44, + ACTIONS(5278), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -272183,7 +272183,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(2250), 1, aux_sym_shebang_repeat1, - ACTIONS(5289), 13, + ACTIONS(5298), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -272197,7 +272197,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5287), 44, + ACTIONS(5296), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -272249,7 +272249,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_shebang_repeat1, STATE(2246), 1, sym_comment, - ACTIONS(5245), 13, + ACTIONS(5254), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -272263,7 +272263,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5243), 44, + ACTIONS(5252), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -272315,7 +272315,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(2263), 1, aux_sym_shebang_repeat1, - ACTIONS(5165), 13, + ACTIONS(5174), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -272329,7 +272329,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5163), 44, + ACTIONS(5172), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -272381,7 +272381,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_shebang_repeat1, STATE(2248), 1, sym_comment, - ACTIONS(5179), 13, + ACTIONS(5188), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -272395,7 +272395,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5177), 44, + ACTIONS(5186), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -272447,7 +272447,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_shebang_repeat1, STATE(2249), 1, sym_comment, - ACTIONS(5271), 13, + ACTIONS(5280), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -272461,7 +272461,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5269), 44, + ACTIONS(5278), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -272513,7 +272513,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_shebang_repeat1, STATE(2250), 1, sym_comment, - ACTIONS(5293), 13, + ACTIONS(5302), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -272527,7 +272527,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5291), 44, + ACTIONS(5300), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -272579,7 +272579,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_shebang_repeat1, STATE(2251), 1, sym_comment, - ACTIONS(5271), 13, + ACTIONS(5280), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -272593,7 +272593,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5269), 44, + ACTIONS(5278), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -272645,7 +272645,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_shebang_repeat1, STATE(2252), 1, sym_comment, - ACTIONS(5271), 13, + ACTIONS(5280), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -272659,7 +272659,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5269), 44, + ACTIONS(5278), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -272711,7 +272711,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_shebang_repeat1, STATE(2253), 1, sym_comment, - ACTIONS(5271), 13, + ACTIONS(5280), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -272725,7 +272725,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5269), 44, + ACTIONS(5278), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -272777,7 +272777,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_shebang_repeat1, STATE(2254), 1, sym_comment, - ACTIONS(5153), 13, + ACTIONS(5162), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -272791,7 +272791,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5151), 44, + ACTIONS(5160), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -272843,7 +272843,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_shebang_repeat1, STATE(2255), 1, sym_comment, - ACTIONS(5271), 13, + ACTIONS(5280), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -272857,7 +272857,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5269), 44, + ACTIONS(5278), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -272905,13 +272905,13 @@ static const uint16_t ts_small_parse_table[] = { [41894] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4403), 1, + ACTIONS(4412), 1, anon_sym_LPAREN2, STATE(2256), 1, sym_comment, STATE(7420), 1, sym__expr_parenthesized_immediate, - ACTIONS(4839), 13, + ACTIONS(4848), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -272925,7 +272925,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(4837), 43, + ACTIONS(4846), 43, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -272972,13 +272972,13 @@ static const uint16_t ts_small_parse_table[] = { [41967] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4403), 1, + ACTIONS(4412), 1, anon_sym_LPAREN2, STATE(2257), 1, sym_comment, STATE(7420), 1, sym__expr_parenthesized_immediate, - ACTIONS(4843), 13, + ACTIONS(4852), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -272992,7 +272992,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(4841), 43, + ACTIONS(4850), 43, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -273043,7 +273043,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(2303), 1, aux_sym_shebang_repeat1, - ACTIONS(5157), 13, + ACTIONS(5166), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -273057,7 +273057,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5155), 44, + ACTIONS(5164), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -273109,7 +273109,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_shebang_repeat1, STATE(2259), 1, sym_comment, - ACTIONS(5271), 13, + ACTIONS(5280), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -273123,7 +273123,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5269), 44, + ACTIONS(5278), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -273175,7 +273175,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_shebang_repeat1, STATE(2260), 1, sym_comment, - ACTIONS(5267), 13, + ACTIONS(5276), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -273189,7 +273189,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5265), 44, + ACTIONS(5274), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -273241,7 +273241,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_shebang_repeat1, STATE(2261), 1, sym_comment, - ACTIONS(5153), 13, + ACTIONS(5162), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -273255,7 +273255,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5151), 44, + ACTIONS(5160), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -273307,7 +273307,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_shebang_repeat1, STATE(2262), 1, sym_comment, - ACTIONS(5179), 13, + ACTIONS(5188), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -273321,7 +273321,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5177), 44, + ACTIONS(5186), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -273373,7 +273373,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_shebang_repeat1, STATE(2263), 1, sym_comment, - ACTIONS(5267), 13, + ACTIONS(5276), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -273387,7 +273387,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5265), 44, + ACTIONS(5274), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -273439,7 +273439,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(2285), 1, aux_sym_shebang_repeat1, - ACTIONS(5165), 13, + ACTIONS(5174), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -273453,7 +273453,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5163), 44, + ACTIONS(5172), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -273505,7 +273505,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_shebang_repeat1, STATE(2265), 1, sym_comment, - ACTIONS(5179), 13, + ACTIONS(5188), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -273519,7 +273519,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5177), 44, + ACTIONS(5186), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -273571,7 +273571,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_shebang_repeat1, STATE(2266), 1, sym_comment, - ACTIONS(5267), 13, + ACTIONS(5276), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -273585,7 +273585,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5265), 44, + ACTIONS(5274), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -273637,7 +273637,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_shebang_repeat1, STATE(2267), 1, sym_comment, - ACTIONS(5153), 13, + ACTIONS(5162), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -273651,7 +273651,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5151), 44, + ACTIONS(5160), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -273699,13 +273699,13 @@ static const uint16_t ts_small_parse_table[] = { [42750] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4403), 1, + ACTIONS(4412), 1, anon_sym_LPAREN2, STATE(2268), 1, sym_comment, STATE(7420), 1, sym__expr_parenthesized_immediate, - ACTIONS(4851), 13, + ACTIONS(4860), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -273719,7 +273719,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(4849), 43, + ACTIONS(4858), 43, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -273766,13 +273766,13 @@ static const uint16_t ts_small_parse_table[] = { [42823] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4403), 1, + ACTIONS(4412), 1, anon_sym_LPAREN2, STATE(2269), 1, sym_comment, STATE(7420), 1, sym__expr_parenthesized_immediate, - ACTIONS(4855), 13, + ACTIONS(4864), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -273786,7 +273786,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(4853), 43, + ACTIONS(4862), 43, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -273837,7 +273837,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_shebang_repeat1, STATE(2270), 1, sym_comment, - ACTIONS(5153), 13, + ACTIONS(5162), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -273851,7 +273851,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5151), 44, + ACTIONS(5160), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -273903,7 +273903,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_shebang_repeat1, STATE(2271), 1, sym_comment, - ACTIONS(5179), 13, + ACTIONS(5188), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -273917,7 +273917,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5177), 44, + ACTIONS(5186), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -273969,7 +273969,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_shebang_repeat1, STATE(2272), 1, sym_comment, - ACTIONS(5267), 13, + ACTIONS(5276), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -273983,7 +273983,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5265), 44, + ACTIONS(5274), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -274035,7 +274035,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(2290), 1, aux_sym_shebang_repeat1, - ACTIONS(5165), 13, + ACTIONS(5174), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -274049,7 +274049,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5163), 44, + ACTIONS(5172), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -274097,9 +274097,9 @@ static const uint16_t ts_small_parse_table[] = { [43180] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4948), 1, + ACTIONS(4957), 1, aux_sym__immediate_decimal_token2, - ACTIONS(5295), 1, + ACTIONS(5304), 1, anon_sym_DOT, STATE(2274), 1, sym_comment, @@ -274168,7 +274168,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_shebang_repeat1, STATE(2275), 1, sym_comment, - ACTIONS(5245), 13, + ACTIONS(5254), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -274182,7 +274182,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5243), 44, + ACTIONS(5252), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -274234,7 +274234,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_shebang_repeat1, STATE(2276), 1, sym_comment, - ACTIONS(5179), 13, + ACTIONS(5188), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -274248,7 +274248,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5177), 44, + ACTIONS(5186), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -274300,13 +274300,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1299), 1, sym_raw_string_begin, - ACTIONS(3422), 1, + ACTIONS(3431), 1, anon_sym_COLON2, - ACTIONS(4962), 1, + ACTIONS(4971), 1, aux_sym__val_number_decimal_token3, - ACTIONS(4964), 1, + ACTIONS(4973), 1, aux_sym__val_number_decimal_token4, - ACTIONS(5247), 1, + ACTIONS(5256), 1, anon_sym_DASH_DASH, STATE(2277), 1, sym_comment, @@ -274325,20 +274325,20 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1297), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4960), 2, + ACTIONS(4969), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, STATE(3916), 2, sym__raw_str, sym__str_double_quotes, - ACTIONS(4950), 6, + ACTIONS(4959), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(4952), 34, + ACTIONS(4961), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -274380,7 +274380,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_shebang_repeat1, STATE(2278), 1, sym_comment, - ACTIONS(5267), 13, + ACTIONS(5276), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -274394,7 +274394,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5265), 44, + ACTIONS(5274), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -274446,7 +274446,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_shebang_repeat1, STATE(2279), 1, sym_comment, - ACTIONS(5245), 13, + ACTIONS(5254), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -274460,7 +274460,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5243), 44, + ACTIONS(5252), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -274512,7 +274512,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_shebang_repeat1, STATE(2280), 1, sym_comment, - ACTIONS(5179), 13, + ACTIONS(5188), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -274526,7 +274526,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5177), 44, + ACTIONS(5186), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -274643,7 +274643,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_shebang_repeat1, STATE(2282), 1, sym_comment, - ACTIONS(5267), 13, + ACTIONS(5276), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -274657,7 +274657,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5265), 44, + ACTIONS(5274), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -274709,7 +274709,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(2293), 1, aux_sym_shebang_repeat1, - ACTIONS(5165), 13, + ACTIONS(5174), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -274723,7 +274723,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5163), 44, + ACTIONS(5172), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -274775,7 +274775,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_shebang_repeat1, STATE(2284), 1, sym_comment, - ACTIONS(5179), 13, + ACTIONS(5188), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -274789,7 +274789,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5177), 44, + ACTIONS(5186), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -274841,7 +274841,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_shebang_repeat1, STATE(2285), 1, sym_comment, - ACTIONS(5267), 13, + ACTIONS(5276), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -274855,7 +274855,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5265), 44, + ACTIONS(5274), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -274907,7 +274907,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(2296), 1, aux_sym_shebang_repeat1, - ACTIONS(5299), 13, + ACTIONS(5308), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -274921,7 +274921,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5297), 44, + ACTIONS(5306), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -274973,7 +274973,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_shebang_repeat1, STATE(2287), 1, sym_comment, - ACTIONS(5179), 13, + ACTIONS(5188), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -274987,7 +274987,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5177), 44, + ACTIONS(5186), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -275039,7 +275039,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_shebang_repeat1, STATE(2288), 1, sym_comment, - ACTIONS(5157), 13, + ACTIONS(5166), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -275053,7 +275053,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5155), 44, + ACTIONS(5164), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -275105,7 +275105,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_shebang_repeat1, STATE(2289), 1, sym_comment, - ACTIONS(5153), 13, + ACTIONS(5162), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -275119,7 +275119,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5151), 44, + ACTIONS(5160), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -275171,7 +275171,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_shebang_repeat1, STATE(2290), 1, sym_comment, - ACTIONS(5267), 13, + ACTIONS(5276), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -275185,7 +275185,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5265), 44, + ACTIONS(5274), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -275233,7 +275233,7 @@ static const uint16_t ts_small_parse_table[] = { [44415] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5249), 1, + ACTIONS(5258), 1, anon_sym_DOT2, STATE(2291), 1, sym_comment, @@ -275306,7 +275306,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(2308), 1, aux_sym_shebang_repeat1, - ACTIONS(5157), 13, + ACTIONS(5166), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -275320,7 +275320,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5155), 44, + ACTIONS(5164), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -275372,7 +275372,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_shebang_repeat1, STATE(2293), 1, sym_comment, - ACTIONS(5267), 13, + ACTIONS(5276), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -275386,7 +275386,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5265), 44, + ACTIONS(5274), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -275438,7 +275438,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_shebang_repeat1, STATE(2294), 1, sym_comment, - ACTIONS(5165), 13, + ACTIONS(5174), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -275452,7 +275452,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5163), 44, + ACTIONS(5172), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -275504,7 +275504,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_shebang_repeat1, STATE(2295), 1, sym_comment, - ACTIONS(5179), 13, + ACTIONS(5188), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -275518,7 +275518,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5177), 44, + ACTIONS(5186), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -275570,7 +275570,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_shebang_repeat1, STATE(2296), 1, sym_comment, - ACTIONS(5303), 13, + ACTIONS(5312), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -275584,7 +275584,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5301), 44, + ACTIONS(5310), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -275636,7 +275636,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_shebang_repeat1, STATE(2297), 1, sym_comment, - ACTIONS(5267), 13, + ACTIONS(5276), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -275650,7 +275650,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5265), 44, + ACTIONS(5274), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -275698,7 +275698,7 @@ static const uint16_t ts_small_parse_table[] = { [44918] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4801), 1, + ACTIONS(4810), 1, aux_sym_unquoted_token2, STATE(2298), 1, sym_comment, @@ -275768,7 +275768,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_shebang_repeat1, STATE(2299), 1, sym_comment, - ACTIONS(5165), 13, + ACTIONS(5174), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -275782,7 +275782,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5163), 44, + ACTIONS(5172), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -275834,7 +275834,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_shebang_repeat1, STATE(2300), 1, sym_comment, - ACTIONS(5157), 13, + ACTIONS(5166), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -275848,7 +275848,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5155), 44, + ACTIONS(5164), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -275967,7 +275967,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_shebang_repeat1, STATE(2302), 1, sym_comment, - ACTIONS(5157), 13, + ACTIONS(5166), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -275981,7 +275981,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5155), 44, + ACTIONS(5164), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -276033,7 +276033,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_shebang_repeat1, STATE(2303), 1, sym_comment, - ACTIONS(5245), 13, + ACTIONS(5254), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -276047,7 +276047,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5243), 44, + ACTIONS(5252), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -276099,7 +276099,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_shebang_repeat1, STATE(2304), 1, sym_comment, - ACTIONS(5179), 13, + ACTIONS(5188), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -276113,7 +276113,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5177), 44, + ACTIONS(5186), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -276165,7 +276165,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_shebang_repeat1, STATE(2305), 1, sym_comment, - ACTIONS(5153), 13, + ACTIONS(5162), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -276179,7 +276179,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5151), 44, + ACTIONS(5160), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -276231,7 +276231,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_shebang_repeat1, STATE(2306), 1, sym_comment, - ACTIONS(5267), 13, + ACTIONS(5276), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -276245,7 +276245,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5265), 44, + ACTIONS(5274), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -276297,7 +276297,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_shebang_repeat1, STATE(2307), 1, sym_comment, - ACTIONS(5245), 13, + ACTIONS(5254), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -276311,7 +276311,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5243), 44, + ACTIONS(5252), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -276363,7 +276363,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_shebang_repeat1, STATE(2308), 1, sym_comment, - ACTIONS(5245), 13, + ACTIONS(5254), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -276377,7 +276377,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5243), 44, + ACTIONS(5252), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -276494,7 +276494,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_shebang_repeat1, STATE(2310), 1, sym_comment, - ACTIONS(5271), 13, + ACTIONS(5280), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -276508,7 +276508,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5269), 44, + ACTIONS(5278), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -276556,22 +276556,22 @@ static const uint16_t ts_small_parse_table[] = { [45841] = 9, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5305), 1, + ACTIONS(5314), 1, sym__newline, STATE(2311), 1, sym_comment, STATE(2358), 1, aux_sym_shebang_repeat1, - ACTIONS(5308), 2, + ACTIONS(5317), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5310), 2, + ACTIONS(5319), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5312), 2, + ACTIONS(5321), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5253), 11, + ACTIONS(5262), 11, anon_sym_GT2, anon_sym_LT2, anon_sym_PLUS2, @@ -276583,7 +276583,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5251), 38, + ACTIONS(5260), 38, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -276625,55 +276625,55 @@ static const uint16_t ts_small_parse_table[] = { [45919] = 21, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3802), 1, + ACTIONS(3811), 1, sym__newline, - ACTIONS(5316), 1, + ACTIONS(5325), 1, anon_sym_DASH2, - ACTIONS(5320), 1, + ACTIONS(5329), 1, anon_sym_and2, - ACTIONS(5322), 1, + ACTIONS(5331), 1, anon_sym_xor2, - ACTIONS(5328), 1, + ACTIONS(5337), 1, anon_sym_PLUS2, - ACTIONS(5332), 1, + ACTIONS(5341), 1, anon_sym_bit_DASHand2, - ACTIONS(5334), 1, + ACTIONS(5343), 1, anon_sym_bit_DASHxor2, - ACTIONS(5336), 1, + ACTIONS(5345), 1, anon_sym_bit_DASHor2, STATE(2312), 1, sym_comment, STATE(2346), 1, aux_sym_shebang_repeat1, - ACTIONS(5308), 2, + ACTIONS(5317), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5310), 2, + ACTIONS(5319), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5312), 2, + ACTIONS(5321), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5314), 2, + ACTIONS(5323), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(5326), 2, + ACTIONS(5335), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(5330), 2, + ACTIONS(5339), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5318), 4, + ACTIONS(5327), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5324), 4, + ACTIONS(5333), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5299), 8, + ACTIONS(5308), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -276682,7 +276682,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5297), 20, + ACTIONS(5306), 20, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -276706,42 +276706,42 @@ static const uint16_t ts_small_parse_table[] = { [46021] = 15, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5316), 1, + ACTIONS(5325), 1, anon_sym_DASH2, - ACTIONS(5328), 1, + ACTIONS(5337), 1, anon_sym_PLUS2, - ACTIONS(5338), 1, + ACTIONS(5347), 1, sym__newline, STATE(2313), 1, sym_comment, STATE(2348), 1, aux_sym_shebang_repeat1, - ACTIONS(5308), 2, + ACTIONS(5317), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5310), 2, + ACTIONS(5319), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5312), 2, + ACTIONS(5321), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5314), 2, + ACTIONS(5323), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(5330), 2, + ACTIONS(5339), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5318), 4, + ACTIONS(5327), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5324), 4, + ACTIONS(5333), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5299), 8, + ACTIONS(5308), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -276750,7 +276750,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5297), 27, + ACTIONS(5306), 27, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -276781,26 +276781,26 @@ static const uint16_t ts_small_parse_table[] = { [46111] = 11, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5316), 1, + ACTIONS(5325), 1, anon_sym_DASH2, - ACTIONS(5328), 1, + ACTIONS(5337), 1, anon_sym_PLUS2, - ACTIONS(5338), 1, + ACTIONS(5347), 1, sym__newline, STATE(2314), 1, sym_comment, STATE(2352), 1, aux_sym_shebang_repeat1, - ACTIONS(5308), 2, + ACTIONS(5317), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5310), 2, + ACTIONS(5319), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5312), 2, + ACTIONS(5321), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5299), 10, + ACTIONS(5308), 10, anon_sym_GT2, anon_sym_LT2, anon_sym_err_GT, @@ -276811,7 +276811,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5297), 37, + ACTIONS(5306), 37, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -276852,45 +276852,45 @@ static const uint16_t ts_small_parse_table[] = { [46193] = 16, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5316), 1, + ACTIONS(5325), 1, anon_sym_DASH2, - ACTIONS(5328), 1, + ACTIONS(5337), 1, anon_sym_PLUS2, - ACTIONS(5338), 1, + ACTIONS(5347), 1, sym__newline, STATE(2315), 1, sym_comment, STATE(2354), 1, aux_sym_shebang_repeat1, - ACTIONS(5308), 2, + ACTIONS(5317), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5310), 2, + ACTIONS(5319), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5312), 2, + ACTIONS(5321), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5314), 2, + ACTIONS(5323), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(5326), 2, + ACTIONS(5335), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(5330), 2, + ACTIONS(5339), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5318), 4, + ACTIONS(5327), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5324), 4, + ACTIONS(5333), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5299), 8, + ACTIONS(5308), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -276899,7 +276899,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5297), 25, + ACTIONS(5306), 25, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -276928,47 +276928,47 @@ static const uint16_t ts_small_parse_table[] = { [46285] = 17, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5316), 1, + ACTIONS(5325), 1, anon_sym_DASH2, - ACTIONS(5328), 1, + ACTIONS(5337), 1, anon_sym_PLUS2, - ACTIONS(5332), 1, + ACTIONS(5341), 1, anon_sym_bit_DASHand2, - ACTIONS(5338), 1, + ACTIONS(5347), 1, sym__newline, STATE(2316), 1, sym_comment, STATE(2357), 1, aux_sym_shebang_repeat1, - ACTIONS(5308), 2, + ACTIONS(5317), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5310), 2, + ACTIONS(5319), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5312), 2, + ACTIONS(5321), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5314), 2, + ACTIONS(5323), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(5326), 2, + ACTIONS(5335), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(5330), 2, + ACTIONS(5339), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5318), 4, + ACTIONS(5327), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5324), 4, + ACTIONS(5333), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5299), 8, + ACTIONS(5308), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -276977,7 +276977,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5297), 24, + ACTIONS(5306), 24, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -277005,49 +277005,49 @@ static const uint16_t ts_small_parse_table[] = { [46379] = 18, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5316), 1, + ACTIONS(5325), 1, anon_sym_DASH2, - ACTIONS(5328), 1, + ACTIONS(5337), 1, anon_sym_PLUS2, - ACTIONS(5332), 1, + ACTIONS(5341), 1, anon_sym_bit_DASHand2, - ACTIONS(5334), 1, + ACTIONS(5343), 1, anon_sym_bit_DASHxor2, - ACTIONS(5338), 1, + ACTIONS(5347), 1, sym__newline, STATE(2317), 1, sym_comment, STATE(2360), 1, aux_sym_shebang_repeat1, - ACTIONS(5308), 2, + ACTIONS(5317), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5310), 2, + ACTIONS(5319), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5312), 2, + ACTIONS(5321), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5314), 2, + ACTIONS(5323), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(5326), 2, + ACTIONS(5335), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(5330), 2, + ACTIONS(5339), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5318), 4, + ACTIONS(5327), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5324), 4, + ACTIONS(5333), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5299), 8, + ACTIONS(5308), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -277056,7 +277056,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5297), 23, + ACTIONS(5306), 23, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -277083,27 +277083,27 @@ static const uint16_t ts_small_parse_table[] = { [46475] = 11, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5341), 1, + ACTIONS(5350), 1, anon_sym_DASH2, - ACTIONS(5349), 1, + ACTIONS(5358), 1, anon_sym_PLUS2, STATE(1706), 1, aux_sym_shebang_repeat1, STATE(2318), 1, sym_comment, - ACTIONS(5343), 2, + ACTIONS(5352), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5345), 2, + ACTIONS(5354), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5347), 2, + ACTIONS(5356), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5351), 2, + ACTIONS(5360), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5293), 10, + ACTIONS(5302), 10, anon_sym_GT2, anon_sym_LT2, anon_sym_err_GT, @@ -277114,7 +277114,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5291), 36, + ACTIONS(5300), 36, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -277158,16 +277158,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_shebang_repeat1, STATE(2319), 1, sym_comment, - ACTIONS(5343), 2, + ACTIONS(5352), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5345), 2, + ACTIONS(5354), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5347), 2, + ACTIONS(5356), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5293), 11, + ACTIONS(5302), 11, anon_sym_GT2, anon_sym_LT2, anon_sym_PLUS2, @@ -277179,7 +277179,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5291), 39, + ACTIONS(5300), 39, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -277222,35 +277222,35 @@ static const uint16_t ts_small_parse_table[] = { [46633] = 13, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5341), 1, + ACTIONS(5350), 1, anon_sym_DASH2, - ACTIONS(5349), 1, + ACTIONS(5358), 1, anon_sym_PLUS2, STATE(1706), 1, aux_sym_shebang_repeat1, STATE(2320), 1, sym_comment, - ACTIONS(5343), 2, + ACTIONS(5352), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5345), 2, + ACTIONS(5354), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5347), 2, + ACTIONS(5356), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5351), 2, + ACTIONS(5360), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5353), 2, + ACTIONS(5362), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(5355), 4, + ACTIONS(5364), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5293), 8, + ACTIONS(5302), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -277259,7 +277259,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5291), 32, + ACTIONS(5300), 32, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -277299,10 +277299,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_shebang_repeat1, STATE(2321), 1, sym_comment, - ACTIONS(5345), 2, + ACTIONS(5354), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5293), 13, + ACTIONS(5302), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -277316,7 +277316,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5291), 41, + ACTIONS(5300), 41, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -277361,9 +277361,9 @@ static const uint16_t ts_small_parse_table[] = { [46791] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5357), 1, + ACTIONS(5366), 1, aux_sym__immediate_decimal_token1, - ACTIONS(5359), 1, + ACTIONS(5368), 1, aux_sym__immediate_decimal_token2, STATE(2322), 1, sym_comment, @@ -277427,49 +277427,49 @@ static const uint16_t ts_small_parse_table[] = { [46863] = 18, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5341), 1, + ACTIONS(5350), 1, anon_sym_DASH2, - ACTIONS(5349), 1, + ACTIONS(5358), 1, anon_sym_PLUS2, - ACTIONS(5365), 1, + ACTIONS(5374), 1, anon_sym_bit_DASHand2, - ACTIONS(5367), 1, + ACTIONS(5376), 1, anon_sym_bit_DASHxor2, - ACTIONS(5369), 1, + ACTIONS(5378), 1, anon_sym_bit_DASHor2, STATE(1706), 1, aux_sym_shebang_repeat1, STATE(2323), 1, sym_comment, - ACTIONS(5343), 2, + ACTIONS(5352), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5345), 2, + ACTIONS(5354), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5347), 2, + ACTIONS(5356), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5351), 2, + ACTIONS(5360), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5353), 2, + ACTIONS(5362), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(5363), 2, + ACTIONS(5372), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(5355), 4, + ACTIONS(5364), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5361), 4, + ACTIONS(5370), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5293), 8, + ACTIONS(5302), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -277478,7 +277478,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5291), 23, + ACTIONS(5300), 23, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -277505,51 +277505,51 @@ static const uint16_t ts_small_parse_table[] = { [46959] = 19, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5341), 1, + ACTIONS(5350), 1, anon_sym_DASH2, - ACTIONS(5349), 1, + ACTIONS(5358), 1, anon_sym_PLUS2, - ACTIONS(5365), 1, + ACTIONS(5374), 1, anon_sym_bit_DASHand2, - ACTIONS(5367), 1, + ACTIONS(5376), 1, anon_sym_bit_DASHxor2, - ACTIONS(5369), 1, + ACTIONS(5378), 1, anon_sym_bit_DASHor2, - ACTIONS(5371), 1, + ACTIONS(5380), 1, anon_sym_and2, STATE(1706), 1, aux_sym_shebang_repeat1, STATE(2324), 1, sym_comment, - ACTIONS(5343), 2, + ACTIONS(5352), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5345), 2, + ACTIONS(5354), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5347), 2, + ACTIONS(5356), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5351), 2, + ACTIONS(5360), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5353), 2, + ACTIONS(5362), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(5363), 2, + ACTIONS(5372), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(5355), 4, + ACTIONS(5364), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5361), 4, + ACTIONS(5370), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5293), 8, + ACTIONS(5302), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -277558,7 +277558,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5291), 22, + ACTIONS(5300), 22, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -277586,13 +277586,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(1555), 1, aux_sym__unquoted_in_list_token2, - ACTIONS(5373), 1, + ACTIONS(5382), 1, anon_sym_DOLLAR, - ACTIONS(5375), 1, + ACTIONS(5384), 1, anon_sym_LPAREN2, - ACTIONS(5379), 1, + ACTIONS(5388), 1, aux_sym__immediate_decimal_token4, - ACTIONS(5381), 1, + ACTIONS(5390), 1, aux_sym__immediate_decimal_token5, STATE(2325), 1, sym_comment, @@ -277601,7 +277601,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1553), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(5377), 2, + ACTIONS(5386), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, STATE(3044), 2, @@ -277656,53 +277656,53 @@ static const uint16_t ts_small_parse_table[] = { [47141] = 20, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5341), 1, + ACTIONS(5350), 1, anon_sym_DASH2, - ACTIONS(5349), 1, + ACTIONS(5358), 1, anon_sym_PLUS2, - ACTIONS(5365), 1, + ACTIONS(5374), 1, anon_sym_bit_DASHand2, - ACTIONS(5367), 1, + ACTIONS(5376), 1, anon_sym_bit_DASHxor2, - ACTIONS(5369), 1, + ACTIONS(5378), 1, anon_sym_bit_DASHor2, - ACTIONS(5371), 1, + ACTIONS(5380), 1, anon_sym_and2, - ACTIONS(5383), 1, + ACTIONS(5392), 1, anon_sym_xor2, STATE(1706), 1, aux_sym_shebang_repeat1, STATE(2326), 1, sym_comment, - ACTIONS(5343), 2, + ACTIONS(5352), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5345), 2, + ACTIONS(5354), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5347), 2, + ACTIONS(5356), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5351), 2, + ACTIONS(5360), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5353), 2, + ACTIONS(5362), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(5363), 2, + ACTIONS(5372), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(5355), 4, + ACTIONS(5364), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5361), 4, + ACTIONS(5370), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5293), 8, + ACTIONS(5302), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -277711,7 +277711,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5291), 21, + ACTIONS(5300), 21, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -277736,40 +277736,40 @@ static const uint16_t ts_small_parse_table[] = { [47241] = 14, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5341), 1, + ACTIONS(5350), 1, anon_sym_DASH2, - ACTIONS(5349), 1, + ACTIONS(5358), 1, anon_sym_PLUS2, STATE(1706), 1, aux_sym_shebang_repeat1, STATE(2327), 1, sym_comment, - ACTIONS(5343), 2, + ACTIONS(5352), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5345), 2, + ACTIONS(5354), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5347), 2, + ACTIONS(5356), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5351), 2, + ACTIONS(5360), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5353), 2, + ACTIONS(5362), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(5355), 4, + ACTIONS(5364), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5361), 4, + ACTIONS(5370), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5293), 8, + ACTIONS(5302), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -277778,7 +277778,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5291), 28, + ACTIONS(5300), 28, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -277810,24 +277810,24 @@ static const uint16_t ts_small_parse_table[] = { [47329] = 10, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5341), 1, + ACTIONS(5350), 1, anon_sym_DASH2, - ACTIONS(5349), 1, + ACTIONS(5358), 1, anon_sym_PLUS2, STATE(1706), 1, aux_sym_shebang_repeat1, STATE(2328), 1, sym_comment, - ACTIONS(5343), 2, + ACTIONS(5352), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5345), 2, + ACTIONS(5354), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5347), 2, + ACTIONS(5356), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5293), 10, + ACTIONS(5302), 10, anon_sym_GT2, anon_sym_LT2, anon_sym_err_GT, @@ -277838,7 +277838,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5291), 38, + ACTIONS(5300), 38, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -277882,13 +277882,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(1631), 1, aux_sym__unquoted_in_list_token2, - ACTIONS(5373), 1, + ACTIONS(5382), 1, anon_sym_DOLLAR, - ACTIONS(5375), 1, + ACTIONS(5384), 1, anon_sym_LPAREN2, - ACTIONS(5379), 1, + ACTIONS(5388), 1, aux_sym__immediate_decimal_token4, - ACTIONS(5381), 1, + ACTIONS(5390), 1, aux_sym__immediate_decimal_token5, STATE(2329), 1, sym_comment, @@ -277897,7 +277897,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1629), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(5377), 2, + ACTIONS(5386), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, STATE(3096), 2, @@ -277952,43 +277952,43 @@ static const uint16_t ts_small_parse_table[] = { [47493] = 15, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5341), 1, + ACTIONS(5350), 1, anon_sym_DASH2, - ACTIONS(5349), 1, + ACTIONS(5358), 1, anon_sym_PLUS2, STATE(1706), 1, aux_sym_shebang_repeat1, STATE(2330), 1, sym_comment, - ACTIONS(5343), 2, + ACTIONS(5352), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5345), 2, + ACTIONS(5354), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5347), 2, + ACTIONS(5356), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5351), 2, + ACTIONS(5360), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5353), 2, + ACTIONS(5362), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(5363), 2, + ACTIONS(5372), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(5355), 4, + ACTIONS(5364), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5361), 4, + ACTIONS(5370), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5293), 8, + ACTIONS(5302), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -277997,7 +277997,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5291), 26, + ACTIONS(5300), 26, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -278027,45 +278027,45 @@ static const uint16_t ts_small_parse_table[] = { [47583] = 16, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5341), 1, + ACTIONS(5350), 1, anon_sym_DASH2, - ACTIONS(5349), 1, + ACTIONS(5358), 1, anon_sym_PLUS2, - ACTIONS(5365), 1, + ACTIONS(5374), 1, anon_sym_bit_DASHand2, STATE(1706), 1, aux_sym_shebang_repeat1, STATE(2331), 1, sym_comment, - ACTIONS(5343), 2, + ACTIONS(5352), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5345), 2, + ACTIONS(5354), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5347), 2, + ACTIONS(5356), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5351), 2, + ACTIONS(5360), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5353), 2, + ACTIONS(5362), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(5363), 2, + ACTIONS(5372), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(5355), 4, + ACTIONS(5364), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5361), 4, + ACTIONS(5370), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5293), 8, + ACTIONS(5302), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -278074,7 +278074,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5291), 25, + ACTIONS(5300), 25, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -278103,47 +278103,47 @@ static const uint16_t ts_small_parse_table[] = { [47675] = 17, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5341), 1, + ACTIONS(5350), 1, anon_sym_DASH2, - ACTIONS(5349), 1, + ACTIONS(5358), 1, anon_sym_PLUS2, - ACTIONS(5365), 1, + ACTIONS(5374), 1, anon_sym_bit_DASHand2, - ACTIONS(5367), 1, + ACTIONS(5376), 1, anon_sym_bit_DASHxor2, STATE(1706), 1, aux_sym_shebang_repeat1, STATE(2332), 1, sym_comment, - ACTIONS(5343), 2, + ACTIONS(5352), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5345), 2, + ACTIONS(5354), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5347), 2, + ACTIONS(5356), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5351), 2, + ACTIONS(5360), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5353), 2, + ACTIONS(5362), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(5363), 2, + ACTIONS(5372), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(5355), 4, + ACTIONS(5364), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5361), 4, + ACTIONS(5370), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5293), 8, + ACTIONS(5302), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -278152,7 +278152,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5291), 24, + ACTIONS(5300), 24, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -278180,27 +278180,27 @@ static const uint16_t ts_small_parse_table[] = { [47769] = 11, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5341), 1, + ACTIONS(5350), 1, anon_sym_DASH2, - ACTIONS(5349), 1, + ACTIONS(5358), 1, anon_sym_PLUS2, STATE(1706), 1, aux_sym_shebang_repeat1, STATE(2333), 1, sym_comment, - ACTIONS(5343), 2, + ACTIONS(5352), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5345), 2, + ACTIONS(5354), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5347), 2, + ACTIONS(5356), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5351), 2, + ACTIONS(5360), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5303), 10, + ACTIONS(5312), 10, anon_sym_GT2, anon_sym_LT2, anon_sym_err_GT, @@ -278211,7 +278211,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5301), 36, + ACTIONS(5310), 36, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -278251,29 +278251,29 @@ static const uint16_t ts_small_parse_table[] = { [47851] = 12, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5316), 1, + ACTIONS(5325), 1, anon_sym_DASH2, - ACTIONS(5328), 1, + ACTIONS(5337), 1, anon_sym_PLUS2, - ACTIONS(5385), 1, + ACTIONS(5394), 1, sym__newline, STATE(2334), 1, sym_comment, STATE(2372), 1, aux_sym_shebang_repeat1, - ACTIONS(5308), 2, + ACTIONS(5317), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5310), 2, + ACTIONS(5319), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5312), 2, + ACTIONS(5321), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5330), 2, + ACTIONS(5339), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5233), 10, + ACTIONS(5242), 10, anon_sym_GT2, anon_sym_LT2, anon_sym_err_GT, @@ -278284,7 +278284,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5231), 35, + ACTIONS(5240), 35, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -278327,16 +278327,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_shebang_repeat1, STATE(2335), 1, sym_comment, - ACTIONS(5343), 2, + ACTIONS(5352), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5345), 2, + ACTIONS(5354), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5347), 2, + ACTIONS(5356), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5303), 11, + ACTIONS(5312), 11, anon_sym_GT2, anon_sym_LT2, anon_sym_PLUS2, @@ -278348,7 +278348,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5301), 39, + ACTIONS(5310), 39, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -278391,22 +278391,22 @@ static const uint16_t ts_small_parse_table[] = { [48011] = 9, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5385), 1, + ACTIONS(5394), 1, sym__newline, STATE(2336), 1, sym_comment, STATE(2374), 1, aux_sym_shebang_repeat1, - ACTIONS(5308), 2, + ACTIONS(5317), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5310), 2, + ACTIONS(5319), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5312), 2, + ACTIONS(5321), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5233), 11, + ACTIONS(5242), 11, anon_sym_GT2, anon_sym_LT2, anon_sym_PLUS2, @@ -278418,7 +278418,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5231), 38, + ACTIONS(5240), 38, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -278460,35 +278460,35 @@ static const uint16_t ts_small_parse_table[] = { [48089] = 13, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5341), 1, + ACTIONS(5350), 1, anon_sym_DASH2, - ACTIONS(5349), 1, + ACTIONS(5358), 1, anon_sym_PLUS2, STATE(1706), 1, aux_sym_shebang_repeat1, STATE(2337), 1, sym_comment, - ACTIONS(5343), 2, + ACTIONS(5352), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5345), 2, + ACTIONS(5354), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5347), 2, + ACTIONS(5356), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5351), 2, + ACTIONS(5360), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5353), 2, + ACTIONS(5362), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(5355), 4, + ACTIONS(5364), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5303), 8, + ACTIONS(5312), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -278497,7 +278497,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5301), 32, + ACTIONS(5310), 32, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -278533,9 +278533,9 @@ static const uint16_t ts_small_parse_table[] = { [48175] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5388), 1, + ACTIONS(5397), 1, anon_sym_DOT, - ACTIONS(5390), 1, + ACTIONS(5399), 1, aux_sym__immediate_decimal_token2, STATE(2338), 1, sym_comment, @@ -278599,37 +278599,37 @@ static const uint16_t ts_small_parse_table[] = { [48247] = 14, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5316), 1, + ACTIONS(5325), 1, anon_sym_DASH2, - ACTIONS(5328), 1, + ACTIONS(5337), 1, anon_sym_PLUS2, - ACTIONS(5385), 1, + ACTIONS(5394), 1, sym__newline, STATE(2339), 1, sym_comment, STATE(2375), 1, aux_sym_shebang_repeat1, - ACTIONS(5308), 2, + ACTIONS(5317), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5310), 2, + ACTIONS(5319), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5312), 2, + ACTIONS(5321), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5314), 2, + ACTIONS(5323), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(5330), 2, + ACTIONS(5339), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5324), 4, + ACTIONS(5333), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5233), 8, + ACTIONS(5242), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -278638,7 +278638,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5231), 31, + ACTIONS(5240), 31, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -278677,10 +278677,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_shebang_repeat1, STATE(2340), 1, sym_comment, - ACTIONS(5345), 2, + ACTIONS(5354), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5303), 13, + ACTIONS(5312), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -278694,7 +278694,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5301), 41, + ACTIONS(5310), 41, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -278739,16 +278739,16 @@ static const uint16_t ts_small_parse_table[] = { [48407] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5385), 1, + ACTIONS(5394), 1, sym__newline, STATE(2341), 1, sym_comment, STATE(2377), 1, aux_sym_shebang_repeat1, - ACTIONS(5310), 2, + ACTIONS(5319), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5233), 13, + ACTIONS(5242), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -278762,7 +278762,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5231), 40, + ACTIONS(5240), 40, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -278806,49 +278806,49 @@ static const uint16_t ts_small_parse_table[] = { [48481] = 18, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5341), 1, + ACTIONS(5350), 1, anon_sym_DASH2, - ACTIONS(5349), 1, + ACTIONS(5358), 1, anon_sym_PLUS2, - ACTIONS(5365), 1, + ACTIONS(5374), 1, anon_sym_bit_DASHand2, - ACTIONS(5367), 1, + ACTIONS(5376), 1, anon_sym_bit_DASHxor2, - ACTIONS(5369), 1, + ACTIONS(5378), 1, anon_sym_bit_DASHor2, STATE(1706), 1, aux_sym_shebang_repeat1, STATE(2342), 1, sym_comment, - ACTIONS(5343), 2, + ACTIONS(5352), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5345), 2, + ACTIONS(5354), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5347), 2, + ACTIONS(5356), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5351), 2, + ACTIONS(5360), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5353), 2, + ACTIONS(5362), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(5363), 2, + ACTIONS(5372), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(5355), 4, + ACTIONS(5364), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5361), 4, + ACTIONS(5370), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5303), 8, + ACTIONS(5312), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -278857,7 +278857,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5301), 23, + ACTIONS(5310), 23, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -278884,51 +278884,51 @@ static const uint16_t ts_small_parse_table[] = { [48577] = 19, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5316), 1, + ACTIONS(5325), 1, anon_sym_DASH2, - ACTIONS(5328), 1, + ACTIONS(5337), 1, anon_sym_PLUS2, - ACTIONS(5332), 1, + ACTIONS(5341), 1, anon_sym_bit_DASHand2, - ACTIONS(5334), 1, + ACTIONS(5343), 1, anon_sym_bit_DASHxor2, - ACTIONS(5336), 1, + ACTIONS(5345), 1, anon_sym_bit_DASHor2, - ACTIONS(5385), 1, + ACTIONS(5394), 1, sym__newline, STATE(2343), 1, sym_comment, STATE(2378), 1, aux_sym_shebang_repeat1, - ACTIONS(5308), 2, + ACTIONS(5317), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5310), 2, + ACTIONS(5319), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5312), 2, + ACTIONS(5321), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5314), 2, + ACTIONS(5323), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(5326), 2, + ACTIONS(5335), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(5330), 2, + ACTIONS(5339), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5318), 4, + ACTIONS(5327), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5324), 4, + ACTIONS(5333), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5233), 8, + ACTIONS(5242), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -278937,7 +278937,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5231), 22, + ACTIONS(5240), 22, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -278963,51 +278963,51 @@ static const uint16_t ts_small_parse_table[] = { [48675] = 19, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5341), 1, + ACTIONS(5350), 1, anon_sym_DASH2, - ACTIONS(5349), 1, + ACTIONS(5358), 1, anon_sym_PLUS2, - ACTIONS(5365), 1, + ACTIONS(5374), 1, anon_sym_bit_DASHand2, - ACTIONS(5367), 1, + ACTIONS(5376), 1, anon_sym_bit_DASHxor2, - ACTIONS(5369), 1, + ACTIONS(5378), 1, anon_sym_bit_DASHor2, - ACTIONS(5371), 1, + ACTIONS(5380), 1, anon_sym_and2, STATE(1706), 1, aux_sym_shebang_repeat1, STATE(2344), 1, sym_comment, - ACTIONS(5343), 2, + ACTIONS(5352), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5345), 2, + ACTIONS(5354), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5347), 2, + ACTIONS(5356), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5351), 2, + ACTIONS(5360), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5353), 2, + ACTIONS(5362), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(5363), 2, + ACTIONS(5372), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(5355), 4, + ACTIONS(5364), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5361), 4, + ACTIONS(5370), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5303), 8, + ACTIONS(5312), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -279016,7 +279016,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5301), 22, + ACTIONS(5310), 22, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -279042,53 +279042,53 @@ static const uint16_t ts_small_parse_table[] = { [48773] = 20, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5316), 1, + ACTIONS(5325), 1, anon_sym_DASH2, - ACTIONS(5320), 1, + ACTIONS(5329), 1, anon_sym_and2, - ACTIONS(5328), 1, + ACTIONS(5337), 1, anon_sym_PLUS2, - ACTIONS(5332), 1, + ACTIONS(5341), 1, anon_sym_bit_DASHand2, - ACTIONS(5334), 1, + ACTIONS(5343), 1, anon_sym_bit_DASHxor2, - ACTIONS(5336), 1, + ACTIONS(5345), 1, anon_sym_bit_DASHor2, - ACTIONS(5385), 1, + ACTIONS(5394), 1, sym__newline, STATE(2345), 1, sym_comment, STATE(2379), 1, aux_sym_shebang_repeat1, - ACTIONS(5308), 2, + ACTIONS(5317), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5310), 2, + ACTIONS(5319), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5312), 2, + ACTIONS(5321), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5314), 2, + ACTIONS(5323), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(5326), 2, + ACTIONS(5335), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(5330), 2, + ACTIONS(5339), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5318), 4, + ACTIONS(5327), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5324), 4, + ACTIONS(5333), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5233), 8, + ACTIONS(5242), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -279097,7 +279097,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5231), 21, + ACTIONS(5240), 21, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -279122,53 +279122,53 @@ static const uint16_t ts_small_parse_table[] = { [48873] = 20, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5341), 1, + ACTIONS(5350), 1, anon_sym_DASH2, - ACTIONS(5349), 1, + ACTIONS(5358), 1, anon_sym_PLUS2, - ACTIONS(5365), 1, + ACTIONS(5374), 1, anon_sym_bit_DASHand2, - ACTIONS(5367), 1, + ACTIONS(5376), 1, anon_sym_bit_DASHxor2, - ACTIONS(5369), 1, + ACTIONS(5378), 1, anon_sym_bit_DASHor2, - ACTIONS(5371), 1, + ACTIONS(5380), 1, anon_sym_and2, - ACTIONS(5383), 1, + ACTIONS(5392), 1, anon_sym_xor2, STATE(1706), 1, aux_sym_shebang_repeat1, STATE(2346), 1, sym_comment, - ACTIONS(5343), 2, + ACTIONS(5352), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5345), 2, + ACTIONS(5354), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5347), 2, + ACTIONS(5356), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5351), 2, + ACTIONS(5360), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5353), 2, + ACTIONS(5362), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(5363), 2, + ACTIONS(5372), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(5355), 4, + ACTIONS(5364), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5361), 4, + ACTIONS(5370), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5303), 8, + ACTIONS(5312), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -279177,7 +279177,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5301), 21, + ACTIONS(5310), 21, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -279202,55 +279202,55 @@ static const uint16_t ts_small_parse_table[] = { [48973] = 21, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3802), 1, + ACTIONS(3811), 1, sym__newline, - ACTIONS(5316), 1, + ACTIONS(5325), 1, anon_sym_DASH2, - ACTIONS(5320), 1, + ACTIONS(5329), 1, anon_sym_and2, - ACTIONS(5322), 1, + ACTIONS(5331), 1, anon_sym_xor2, - ACTIONS(5328), 1, + ACTIONS(5337), 1, anon_sym_PLUS2, - ACTIONS(5332), 1, + ACTIONS(5341), 1, anon_sym_bit_DASHand2, - ACTIONS(5334), 1, + ACTIONS(5343), 1, anon_sym_bit_DASHxor2, - ACTIONS(5336), 1, + ACTIONS(5345), 1, anon_sym_bit_DASHor2, STATE(2347), 1, sym_comment, STATE(2380), 1, aux_sym_shebang_repeat1, - ACTIONS(5308), 2, + ACTIONS(5317), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5310), 2, + ACTIONS(5319), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5312), 2, + ACTIONS(5321), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5314), 2, + ACTIONS(5323), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(5326), 2, + ACTIONS(5335), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(5330), 2, + ACTIONS(5339), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5318), 4, + ACTIONS(5327), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5324), 4, + ACTIONS(5333), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5233), 8, + ACTIONS(5242), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -279259,7 +279259,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5231), 20, + ACTIONS(5240), 20, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -279283,40 +279283,40 @@ static const uint16_t ts_small_parse_table[] = { [49075] = 14, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5341), 1, + ACTIONS(5350), 1, anon_sym_DASH2, - ACTIONS(5349), 1, + ACTIONS(5358), 1, anon_sym_PLUS2, STATE(1706), 1, aux_sym_shebang_repeat1, STATE(2348), 1, sym_comment, - ACTIONS(5343), 2, + ACTIONS(5352), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5345), 2, + ACTIONS(5354), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5347), 2, + ACTIONS(5356), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5351), 2, + ACTIONS(5360), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5353), 2, + ACTIONS(5362), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(5355), 4, + ACTIONS(5364), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5361), 4, + ACTIONS(5370), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5303), 8, + ACTIONS(5312), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -279325,7 +279325,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5301), 28, + ACTIONS(5310), 28, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -279357,42 +279357,42 @@ static const uint16_t ts_small_parse_table[] = { [49163] = 15, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5316), 1, + ACTIONS(5325), 1, anon_sym_DASH2, - ACTIONS(5328), 1, + ACTIONS(5337), 1, anon_sym_PLUS2, - ACTIONS(5385), 1, + ACTIONS(5394), 1, sym__newline, STATE(2349), 1, sym_comment, STATE(2381), 1, aux_sym_shebang_repeat1, - ACTIONS(5308), 2, + ACTIONS(5317), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5310), 2, + ACTIONS(5319), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5312), 2, + ACTIONS(5321), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5314), 2, + ACTIONS(5323), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(5330), 2, + ACTIONS(5339), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5318), 4, + ACTIONS(5327), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5324), 4, + ACTIONS(5333), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5233), 8, + ACTIONS(5242), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -279401,7 +279401,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5231), 27, + ACTIONS(5240), 27, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -279436,11 +279436,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1299), 1, sym_raw_string_begin, - ACTIONS(4962), 1, + ACTIONS(4971), 1, aux_sym__val_number_decimal_token3, - ACTIONS(4964), 1, + ACTIONS(4973), 1, aux_sym__val_number_decimal_token4, - ACTIONS(5247), 1, + ACTIONS(5256), 1, anon_sym_DASH_DASH, STATE(2350), 1, sym_comment, @@ -279459,20 +279459,20 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1297), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4960), 2, + ACTIONS(4969), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, STATE(3916), 2, sym__raw_str, sym__str_double_quotes, - ACTIONS(4950), 6, + ACTIONS(4959), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(4952), 34, + ACTIONS(4961), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -279510,27 +279510,27 @@ static const uint16_t ts_small_parse_table[] = { [49349] = 11, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5341), 1, + ACTIONS(5350), 1, anon_sym_DASH2, - ACTIONS(5349), 1, + ACTIONS(5358), 1, anon_sym_PLUS2, STATE(1706), 1, aux_sym_shebang_repeat1, STATE(2351), 1, sym_comment, - ACTIONS(5343), 2, + ACTIONS(5352), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5345), 2, + ACTIONS(5354), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5347), 2, + ACTIONS(5356), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5351), 2, + ACTIONS(5360), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5285), 10, + ACTIONS(5294), 10, anon_sym_GT2, anon_sym_LT2, anon_sym_err_GT, @@ -279541,7 +279541,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5283), 36, + ACTIONS(5292), 36, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -279581,24 +279581,24 @@ static const uint16_t ts_small_parse_table[] = { [49431] = 10, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5341), 1, + ACTIONS(5350), 1, anon_sym_DASH2, - ACTIONS(5349), 1, + ACTIONS(5358), 1, anon_sym_PLUS2, STATE(1706), 1, aux_sym_shebang_repeat1, STATE(2352), 1, sym_comment, - ACTIONS(5343), 2, + ACTIONS(5352), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5345), 2, + ACTIONS(5354), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5347), 2, + ACTIONS(5356), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5303), 10, + ACTIONS(5312), 10, anon_sym_GT2, anon_sym_LT2, anon_sym_err_GT, @@ -279609,7 +279609,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5301), 38, + ACTIONS(5310), 38, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -279651,26 +279651,26 @@ static const uint16_t ts_small_parse_table[] = { [49511] = 11, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5316), 1, + ACTIONS(5325), 1, anon_sym_DASH2, - ACTIONS(5328), 1, + ACTIONS(5337), 1, anon_sym_PLUS2, - ACTIONS(5385), 1, + ACTIONS(5394), 1, sym__newline, STATE(2353), 1, sym_comment, STATE(2383), 1, aux_sym_shebang_repeat1, - ACTIONS(5308), 2, + ACTIONS(5317), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5310), 2, + ACTIONS(5319), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5312), 2, + ACTIONS(5321), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5233), 10, + ACTIONS(5242), 10, anon_sym_GT2, anon_sym_LT2, anon_sym_err_GT, @@ -279681,7 +279681,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5231), 37, + ACTIONS(5240), 37, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -279722,43 +279722,43 @@ static const uint16_t ts_small_parse_table[] = { [49593] = 15, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5341), 1, + ACTIONS(5350), 1, anon_sym_DASH2, - ACTIONS(5349), 1, + ACTIONS(5358), 1, anon_sym_PLUS2, STATE(1706), 1, aux_sym_shebang_repeat1, STATE(2354), 1, sym_comment, - ACTIONS(5343), 2, + ACTIONS(5352), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5345), 2, + ACTIONS(5354), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5347), 2, + ACTIONS(5356), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5351), 2, + ACTIONS(5360), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5353), 2, + ACTIONS(5362), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(5363), 2, + ACTIONS(5372), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(5355), 4, + ACTIONS(5364), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5361), 4, + ACTIONS(5370), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5303), 8, + ACTIONS(5312), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -279767,7 +279767,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5301), 26, + ACTIONS(5310), 26, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -279797,29 +279797,29 @@ static const uint16_t ts_small_parse_table[] = { [49683] = 12, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5316), 1, + ACTIONS(5325), 1, anon_sym_DASH2, - ACTIONS(5328), 1, + ACTIONS(5337), 1, anon_sym_PLUS2, - ACTIONS(5392), 1, + ACTIONS(5401), 1, sym__newline, STATE(2318), 1, aux_sym_shebang_repeat1, STATE(2355), 1, sym_comment, - ACTIONS(5308), 2, + ACTIONS(5317), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5310), 2, + ACTIONS(5319), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5312), 2, + ACTIONS(5321), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5330), 2, + ACTIONS(5339), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5289), 10, + ACTIONS(5298), 10, anon_sym_GT2, anon_sym_LT2, anon_sym_err_GT, @@ -279830,7 +279830,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5287), 35, + ACTIONS(5296), 35, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -279869,45 +279869,45 @@ static const uint16_t ts_small_parse_table[] = { [49767] = 16, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5316), 1, + ACTIONS(5325), 1, anon_sym_DASH2, - ACTIONS(5328), 1, + ACTIONS(5337), 1, anon_sym_PLUS2, - ACTIONS(5385), 1, + ACTIONS(5394), 1, sym__newline, STATE(2356), 1, sym_comment, STATE(2384), 1, aux_sym_shebang_repeat1, - ACTIONS(5308), 2, + ACTIONS(5317), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5310), 2, + ACTIONS(5319), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5312), 2, + ACTIONS(5321), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5314), 2, + ACTIONS(5323), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(5326), 2, + ACTIONS(5335), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(5330), 2, + ACTIONS(5339), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5318), 4, + ACTIONS(5327), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5324), 4, + ACTIONS(5333), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5233), 8, + ACTIONS(5242), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -279916,7 +279916,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5231), 25, + ACTIONS(5240), 25, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -279945,45 +279945,45 @@ static const uint16_t ts_small_parse_table[] = { [49859] = 16, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5341), 1, + ACTIONS(5350), 1, anon_sym_DASH2, - ACTIONS(5349), 1, + ACTIONS(5358), 1, anon_sym_PLUS2, - ACTIONS(5365), 1, + ACTIONS(5374), 1, anon_sym_bit_DASHand2, STATE(1706), 1, aux_sym_shebang_repeat1, STATE(2357), 1, sym_comment, - ACTIONS(5343), 2, + ACTIONS(5352), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5345), 2, + ACTIONS(5354), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5347), 2, + ACTIONS(5356), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5351), 2, + ACTIONS(5360), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5353), 2, + ACTIONS(5362), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(5363), 2, + ACTIONS(5372), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(5355), 4, + ACTIONS(5364), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5361), 4, + ACTIONS(5370), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5303), 8, + ACTIONS(5312), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -279992,7 +279992,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5301), 25, + ACTIONS(5310), 25, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -280025,16 +280025,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_shebang_repeat1, STATE(2358), 1, sym_comment, - ACTIONS(5343), 2, + ACTIONS(5352), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5345), 2, + ACTIONS(5354), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5347), 2, + ACTIONS(5356), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5285), 11, + ACTIONS(5294), 11, anon_sym_GT2, anon_sym_LT2, anon_sym_PLUS2, @@ -280046,7 +280046,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5283), 39, + ACTIONS(5292), 39, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -280089,47 +280089,47 @@ static const uint16_t ts_small_parse_table[] = { [50027] = 17, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5316), 1, + ACTIONS(5325), 1, anon_sym_DASH2, - ACTIONS(5328), 1, + ACTIONS(5337), 1, anon_sym_PLUS2, - ACTIONS(5332), 1, + ACTIONS(5341), 1, anon_sym_bit_DASHand2, - ACTIONS(5385), 1, + ACTIONS(5394), 1, sym__newline, STATE(2359), 1, sym_comment, STATE(2385), 1, aux_sym_shebang_repeat1, - ACTIONS(5308), 2, + ACTIONS(5317), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5310), 2, + ACTIONS(5319), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5312), 2, + ACTIONS(5321), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5314), 2, + ACTIONS(5323), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(5326), 2, + ACTIONS(5335), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(5330), 2, + ACTIONS(5339), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5318), 4, + ACTIONS(5327), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5324), 4, + ACTIONS(5333), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5233), 8, + ACTIONS(5242), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -280138,7 +280138,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5231), 24, + ACTIONS(5240), 24, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -280166,47 +280166,47 @@ static const uint16_t ts_small_parse_table[] = { [50121] = 17, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5341), 1, + ACTIONS(5350), 1, anon_sym_DASH2, - ACTIONS(5349), 1, + ACTIONS(5358), 1, anon_sym_PLUS2, - ACTIONS(5365), 1, + ACTIONS(5374), 1, anon_sym_bit_DASHand2, - ACTIONS(5367), 1, + ACTIONS(5376), 1, anon_sym_bit_DASHxor2, STATE(1706), 1, aux_sym_shebang_repeat1, STATE(2360), 1, sym_comment, - ACTIONS(5343), 2, + ACTIONS(5352), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5345), 2, + ACTIONS(5354), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5347), 2, + ACTIONS(5356), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5351), 2, + ACTIONS(5360), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5353), 2, + ACTIONS(5362), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(5363), 2, + ACTIONS(5372), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(5355), 4, + ACTIONS(5364), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5361), 4, + ACTIONS(5370), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5303), 8, + ACTIONS(5312), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -280215,7 +280215,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5301), 24, + ACTIONS(5310), 24, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -280243,22 +280243,22 @@ static const uint16_t ts_small_parse_table[] = { [50215] = 9, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5392), 1, + ACTIONS(5401), 1, sym__newline, STATE(2319), 1, aux_sym_shebang_repeat1, STATE(2361), 1, sym_comment, - ACTIONS(5308), 2, + ACTIONS(5317), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5310), 2, + ACTIONS(5319), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5312), 2, + ACTIONS(5321), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5289), 11, + ACTIONS(5298), 11, anon_sym_GT2, anon_sym_LT2, anon_sym_PLUS2, @@ -280270,7 +280270,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5287), 38, + ACTIONS(5296), 38, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -280312,49 +280312,49 @@ static const uint16_t ts_small_parse_table[] = { [50293] = 18, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5316), 1, + ACTIONS(5325), 1, anon_sym_DASH2, - ACTIONS(5328), 1, + ACTIONS(5337), 1, anon_sym_PLUS2, - ACTIONS(5332), 1, + ACTIONS(5341), 1, anon_sym_bit_DASHand2, - ACTIONS(5334), 1, + ACTIONS(5343), 1, anon_sym_bit_DASHxor2, - ACTIONS(5385), 1, + ACTIONS(5394), 1, sym__newline, STATE(2362), 1, sym_comment, STATE(2386), 1, aux_sym_shebang_repeat1, - ACTIONS(5308), 2, + ACTIONS(5317), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5310), 2, + ACTIONS(5319), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5312), 2, + ACTIONS(5321), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5314), 2, + ACTIONS(5323), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(5326), 2, + ACTIONS(5335), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(5330), 2, + ACTIONS(5339), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5318), 4, + ACTIONS(5327), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5324), 4, + ACTIONS(5333), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5233), 8, + ACTIONS(5242), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -280363,7 +280363,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5231), 23, + ACTIONS(5240), 23, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -280390,35 +280390,35 @@ static const uint16_t ts_small_parse_table[] = { [50389] = 13, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5341), 1, + ACTIONS(5350), 1, anon_sym_DASH2, - ACTIONS(5349), 1, + ACTIONS(5358), 1, anon_sym_PLUS2, STATE(1706), 1, aux_sym_shebang_repeat1, STATE(2363), 1, sym_comment, - ACTIONS(5343), 2, + ACTIONS(5352), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5345), 2, + ACTIONS(5354), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5347), 2, + ACTIONS(5356), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5351), 2, + ACTIONS(5360), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5353), 2, + ACTIONS(5362), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(5355), 4, + ACTIONS(5364), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5285), 8, + ACTIONS(5294), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -280427,7 +280427,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5283), 32, + ACTIONS(5292), 32, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -280463,37 +280463,37 @@ static const uint16_t ts_small_parse_table[] = { [50475] = 14, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5316), 1, + ACTIONS(5325), 1, anon_sym_DASH2, - ACTIONS(5328), 1, + ACTIONS(5337), 1, anon_sym_PLUS2, - ACTIONS(5392), 1, + ACTIONS(5401), 1, sym__newline, STATE(2320), 1, aux_sym_shebang_repeat1, STATE(2364), 1, sym_comment, - ACTIONS(5308), 2, + ACTIONS(5317), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5310), 2, + ACTIONS(5319), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5312), 2, + ACTIONS(5321), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5314), 2, + ACTIONS(5323), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(5330), 2, + ACTIONS(5339), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5324), 4, + ACTIONS(5333), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5289), 8, + ACTIONS(5298), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -280502,7 +280502,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5287), 31, + ACTIONS(5296), 31, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -280537,16 +280537,16 @@ static const uint16_t ts_small_parse_table[] = { [50563] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5305), 1, + ACTIONS(5314), 1, sym__newline, STATE(2365), 1, sym_comment, STATE(2368), 1, aux_sym_shebang_repeat1, - ACTIONS(5310), 2, + ACTIONS(5319), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5253), 13, + ACTIONS(5262), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -280560,7 +280560,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5251), 40, + ACTIONS(5260), 40, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -280604,7 +280604,7 @@ static const uint16_t ts_small_parse_table[] = { [50637] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4692), 1, + ACTIONS(4701), 1, anon_sym_COLON2, STATE(2366), 1, sym_comment, @@ -280669,53 +280669,53 @@ static const uint16_t ts_small_parse_table[] = { [50707] = 20, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5305), 1, + ACTIONS(5314), 1, sym__newline, - ACTIONS(5316), 1, + ACTIONS(5325), 1, anon_sym_DASH2, - ACTIONS(5320), 1, + ACTIONS(5329), 1, anon_sym_and2, - ACTIONS(5328), 1, + ACTIONS(5337), 1, anon_sym_PLUS2, - ACTIONS(5332), 1, + ACTIONS(5341), 1, anon_sym_bit_DASHand2, - ACTIONS(5334), 1, + ACTIONS(5343), 1, anon_sym_bit_DASHxor2, - ACTIONS(5336), 1, + ACTIONS(5345), 1, anon_sym_bit_DASHor2, STATE(2367), 1, sym_comment, STATE(2382), 1, aux_sym_shebang_repeat1, - ACTIONS(5308), 2, + ACTIONS(5317), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5310), 2, + ACTIONS(5319), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5312), 2, + ACTIONS(5321), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5314), 2, + ACTIONS(5323), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(5326), 2, + ACTIONS(5335), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(5330), 2, + ACTIONS(5339), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5318), 4, + ACTIONS(5327), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5324), 4, + ACTIONS(5333), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5253), 8, + ACTIONS(5262), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -280724,7 +280724,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5251), 21, + ACTIONS(5260), 21, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -280753,10 +280753,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_shebang_repeat1, STATE(2368), 1, sym_comment, - ACTIONS(5345), 2, + ACTIONS(5354), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5285), 13, + ACTIONS(5294), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -280770,7 +280770,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5283), 41, + ACTIONS(5292), 41, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -280815,17 +280815,17 @@ static const uint16_t ts_small_parse_table[] = { [50879] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5140), 1, + ACTIONS(5149), 1, sym__newline, STATE(2369), 1, sym_comment, - ACTIONS(5145), 5, + ACTIONS(5154), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(5149), 8, + ACTIONS(5158), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -280834,7 +280834,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5143), 20, + ACTIONS(5152), 20, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -280855,7 +280855,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - ACTIONS(5147), 23, + ACTIONS(5156), 23, anon_sym_DASH2, anon_sym_in2, anon_sym_and2, @@ -280882,16 +280882,16 @@ static const uint16_t ts_small_parse_table[] = { [50953] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5392), 1, + ACTIONS(5401), 1, sym__newline, STATE(2321), 1, aux_sym_shebang_repeat1, STATE(2370), 1, sym_comment, - ACTIONS(5310), 2, + ACTIONS(5319), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5289), 13, + ACTIONS(5298), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -280905,7 +280905,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5287), 40, + ACTIONS(5296), 40, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -280949,49 +280949,49 @@ static const uint16_t ts_small_parse_table[] = { [51027] = 18, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5341), 1, + ACTIONS(5350), 1, anon_sym_DASH2, - ACTIONS(5349), 1, + ACTIONS(5358), 1, anon_sym_PLUS2, - ACTIONS(5365), 1, + ACTIONS(5374), 1, anon_sym_bit_DASHand2, - ACTIONS(5367), 1, + ACTIONS(5376), 1, anon_sym_bit_DASHxor2, - ACTIONS(5369), 1, + ACTIONS(5378), 1, anon_sym_bit_DASHor2, STATE(1706), 1, aux_sym_shebang_repeat1, STATE(2371), 1, sym_comment, - ACTIONS(5343), 2, + ACTIONS(5352), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5345), 2, + ACTIONS(5354), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5347), 2, + ACTIONS(5356), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5351), 2, + ACTIONS(5360), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5353), 2, + ACTIONS(5362), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(5363), 2, + ACTIONS(5372), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(5355), 4, + ACTIONS(5364), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5361), 4, + ACTIONS(5370), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5285), 8, + ACTIONS(5294), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -281000,7 +281000,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5283), 23, + ACTIONS(5292), 23, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -281027,27 +281027,27 @@ static const uint16_t ts_small_parse_table[] = { [51123] = 11, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5341), 1, + ACTIONS(5350), 1, anon_sym_DASH2, - ACTIONS(5349), 1, + ACTIONS(5358), 1, anon_sym_PLUS2, STATE(1706), 1, aux_sym_shebang_repeat1, STATE(2372), 1, sym_comment, - ACTIONS(5343), 2, + ACTIONS(5352), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5345), 2, + ACTIONS(5354), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5347), 2, + ACTIONS(5356), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5351), 2, + ACTIONS(5360), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5263), 10, + ACTIONS(5272), 10, anon_sym_GT2, anon_sym_LT2, anon_sym_err_GT, @@ -281058,7 +281058,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5261), 36, + ACTIONS(5270), 36, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -281098,45 +281098,45 @@ static const uint16_t ts_small_parse_table[] = { [51205] = 16, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5305), 1, + ACTIONS(5314), 1, sym__newline, - ACTIONS(5316), 1, + ACTIONS(5325), 1, anon_sym_DASH2, - ACTIONS(5328), 1, + ACTIONS(5337), 1, anon_sym_PLUS2, STATE(2373), 1, sym_comment, STATE(2418), 1, aux_sym_shebang_repeat1, - ACTIONS(5308), 2, + ACTIONS(5317), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5310), 2, + ACTIONS(5319), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5312), 2, + ACTIONS(5321), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5314), 2, + ACTIONS(5323), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(5326), 2, + ACTIONS(5335), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(5330), 2, + ACTIONS(5339), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5318), 4, + ACTIONS(5327), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5324), 4, + ACTIONS(5333), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5253), 8, + ACTIONS(5262), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -281145,7 +281145,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5251), 25, + ACTIONS(5260), 25, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -281178,16 +281178,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_shebang_repeat1, STATE(2374), 1, sym_comment, - ACTIONS(5343), 2, + ACTIONS(5352), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5345), 2, + ACTIONS(5354), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5347), 2, + ACTIONS(5356), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5263), 11, + ACTIONS(5272), 11, anon_sym_GT2, anon_sym_LT2, anon_sym_PLUS2, @@ -281199,7 +281199,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5261), 39, + ACTIONS(5270), 39, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -281242,35 +281242,35 @@ static const uint16_t ts_small_parse_table[] = { [51373] = 13, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5341), 1, + ACTIONS(5350), 1, anon_sym_DASH2, - ACTIONS(5349), 1, + ACTIONS(5358), 1, anon_sym_PLUS2, STATE(1706), 1, aux_sym_shebang_repeat1, STATE(2375), 1, sym_comment, - ACTIONS(5343), 2, + ACTIONS(5352), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5345), 2, + ACTIONS(5354), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5347), 2, + ACTIONS(5356), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5351), 2, + ACTIONS(5360), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5353), 2, + ACTIONS(5362), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(5355), 4, + ACTIONS(5364), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5263), 8, + ACTIONS(5272), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -281279,7 +281279,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5261), 32, + ACTIONS(5270), 32, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -281315,51 +281315,51 @@ static const uint16_t ts_small_parse_table[] = { [51459] = 19, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5316), 1, + ACTIONS(5325), 1, anon_sym_DASH2, - ACTIONS(5328), 1, + ACTIONS(5337), 1, anon_sym_PLUS2, - ACTIONS(5332), 1, + ACTIONS(5341), 1, anon_sym_bit_DASHand2, - ACTIONS(5334), 1, + ACTIONS(5343), 1, anon_sym_bit_DASHxor2, - ACTIONS(5336), 1, + ACTIONS(5345), 1, anon_sym_bit_DASHor2, - ACTIONS(5392), 1, + ACTIONS(5401), 1, sym__newline, STATE(2323), 1, aux_sym_shebang_repeat1, STATE(2376), 1, sym_comment, - ACTIONS(5308), 2, + ACTIONS(5317), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5310), 2, + ACTIONS(5319), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5312), 2, + ACTIONS(5321), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5314), 2, + ACTIONS(5323), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(5326), 2, + ACTIONS(5335), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(5330), 2, + ACTIONS(5339), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5318), 4, + ACTIONS(5327), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5324), 4, + ACTIONS(5333), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5289), 8, + ACTIONS(5298), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -281368,7 +281368,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5287), 22, + ACTIONS(5296), 22, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -281398,10 +281398,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_shebang_repeat1, STATE(2377), 1, sym_comment, - ACTIONS(5345), 2, + ACTIONS(5354), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5263), 13, + ACTIONS(5272), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -281415,7 +281415,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5261), 41, + ACTIONS(5270), 41, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -281460,49 +281460,49 @@ static const uint16_t ts_small_parse_table[] = { [51629] = 18, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5341), 1, + ACTIONS(5350), 1, anon_sym_DASH2, - ACTIONS(5349), 1, + ACTIONS(5358), 1, anon_sym_PLUS2, - ACTIONS(5365), 1, + ACTIONS(5374), 1, anon_sym_bit_DASHand2, - ACTIONS(5367), 1, + ACTIONS(5376), 1, anon_sym_bit_DASHxor2, - ACTIONS(5369), 1, + ACTIONS(5378), 1, anon_sym_bit_DASHor2, STATE(1706), 1, aux_sym_shebang_repeat1, STATE(2378), 1, sym_comment, - ACTIONS(5343), 2, + ACTIONS(5352), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5345), 2, + ACTIONS(5354), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5347), 2, + ACTIONS(5356), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5351), 2, + ACTIONS(5360), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5353), 2, + ACTIONS(5362), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(5363), 2, + ACTIONS(5372), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(5355), 4, + ACTIONS(5364), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5361), 4, + ACTIONS(5370), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5263), 8, + ACTIONS(5272), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -281511,7 +281511,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5261), 23, + ACTIONS(5270), 23, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -281538,51 +281538,51 @@ static const uint16_t ts_small_parse_table[] = { [51725] = 19, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5341), 1, + ACTIONS(5350), 1, anon_sym_DASH2, - ACTIONS(5349), 1, + ACTIONS(5358), 1, anon_sym_PLUS2, - ACTIONS(5365), 1, + ACTIONS(5374), 1, anon_sym_bit_DASHand2, - ACTIONS(5367), 1, + ACTIONS(5376), 1, anon_sym_bit_DASHxor2, - ACTIONS(5369), 1, + ACTIONS(5378), 1, anon_sym_bit_DASHor2, - ACTIONS(5371), 1, + ACTIONS(5380), 1, anon_sym_and2, STATE(1706), 1, aux_sym_shebang_repeat1, STATE(2379), 1, sym_comment, - ACTIONS(5343), 2, + ACTIONS(5352), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5345), 2, + ACTIONS(5354), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5347), 2, + ACTIONS(5356), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5351), 2, + ACTIONS(5360), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5353), 2, + ACTIONS(5362), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(5363), 2, + ACTIONS(5372), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(5355), 4, + ACTIONS(5364), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5361), 4, + ACTIONS(5370), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5263), 8, + ACTIONS(5272), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -281591,7 +281591,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5261), 22, + ACTIONS(5270), 22, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -281617,53 +281617,53 @@ static const uint16_t ts_small_parse_table[] = { [51823] = 20, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5341), 1, + ACTIONS(5350), 1, anon_sym_DASH2, - ACTIONS(5349), 1, + ACTIONS(5358), 1, anon_sym_PLUS2, - ACTIONS(5365), 1, + ACTIONS(5374), 1, anon_sym_bit_DASHand2, - ACTIONS(5367), 1, + ACTIONS(5376), 1, anon_sym_bit_DASHxor2, - ACTIONS(5369), 1, + ACTIONS(5378), 1, anon_sym_bit_DASHor2, - ACTIONS(5371), 1, + ACTIONS(5380), 1, anon_sym_and2, - ACTIONS(5383), 1, + ACTIONS(5392), 1, anon_sym_xor2, STATE(1706), 1, aux_sym_shebang_repeat1, STATE(2380), 1, sym_comment, - ACTIONS(5343), 2, + ACTIONS(5352), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5345), 2, + ACTIONS(5354), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5347), 2, + ACTIONS(5356), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5351), 2, + ACTIONS(5360), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5353), 2, + ACTIONS(5362), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(5363), 2, + ACTIONS(5372), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(5355), 4, + ACTIONS(5364), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5361), 4, + ACTIONS(5370), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5263), 8, + ACTIONS(5272), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -281672,7 +281672,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5261), 21, + ACTIONS(5270), 21, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -281697,40 +281697,40 @@ static const uint16_t ts_small_parse_table[] = { [51923] = 14, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5341), 1, + ACTIONS(5350), 1, anon_sym_DASH2, - ACTIONS(5349), 1, + ACTIONS(5358), 1, anon_sym_PLUS2, STATE(1706), 1, aux_sym_shebang_repeat1, STATE(2381), 1, sym_comment, - ACTIONS(5343), 2, + ACTIONS(5352), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5345), 2, + ACTIONS(5354), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5347), 2, + ACTIONS(5356), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5351), 2, + ACTIONS(5360), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5353), 2, + ACTIONS(5362), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(5355), 4, + ACTIONS(5364), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5361), 4, + ACTIONS(5370), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5263), 8, + ACTIONS(5272), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -281739,7 +281739,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5261), 28, + ACTIONS(5270), 28, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -281771,51 +281771,51 @@ static const uint16_t ts_small_parse_table[] = { [52011] = 19, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5341), 1, + ACTIONS(5350), 1, anon_sym_DASH2, - ACTIONS(5349), 1, + ACTIONS(5358), 1, anon_sym_PLUS2, - ACTIONS(5365), 1, + ACTIONS(5374), 1, anon_sym_bit_DASHand2, - ACTIONS(5367), 1, + ACTIONS(5376), 1, anon_sym_bit_DASHxor2, - ACTIONS(5369), 1, + ACTIONS(5378), 1, anon_sym_bit_DASHor2, - ACTIONS(5371), 1, + ACTIONS(5380), 1, anon_sym_and2, STATE(1706), 1, aux_sym_shebang_repeat1, STATE(2382), 1, sym_comment, - ACTIONS(5343), 2, + ACTIONS(5352), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5345), 2, + ACTIONS(5354), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5347), 2, + ACTIONS(5356), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5351), 2, + ACTIONS(5360), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5353), 2, + ACTIONS(5362), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(5363), 2, + ACTIONS(5372), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(5355), 4, + ACTIONS(5364), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5361), 4, + ACTIONS(5370), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5285), 8, + ACTIONS(5294), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -281824,7 +281824,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5283), 22, + ACTIONS(5292), 22, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -281850,24 +281850,24 @@ static const uint16_t ts_small_parse_table[] = { [52109] = 10, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5341), 1, + ACTIONS(5350), 1, anon_sym_DASH2, - ACTIONS(5349), 1, + ACTIONS(5358), 1, anon_sym_PLUS2, STATE(1706), 1, aux_sym_shebang_repeat1, STATE(2383), 1, sym_comment, - ACTIONS(5343), 2, + ACTIONS(5352), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5345), 2, + ACTIONS(5354), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5347), 2, + ACTIONS(5356), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5263), 10, + ACTIONS(5272), 10, anon_sym_GT2, anon_sym_LT2, anon_sym_err_GT, @@ -281878,7 +281878,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5261), 38, + ACTIONS(5270), 38, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -281920,43 +281920,43 @@ static const uint16_t ts_small_parse_table[] = { [52189] = 15, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5341), 1, + ACTIONS(5350), 1, anon_sym_DASH2, - ACTIONS(5349), 1, + ACTIONS(5358), 1, anon_sym_PLUS2, STATE(1706), 1, aux_sym_shebang_repeat1, STATE(2384), 1, sym_comment, - ACTIONS(5343), 2, + ACTIONS(5352), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5345), 2, + ACTIONS(5354), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5347), 2, + ACTIONS(5356), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5351), 2, + ACTIONS(5360), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5353), 2, + ACTIONS(5362), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(5363), 2, + ACTIONS(5372), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(5355), 4, + ACTIONS(5364), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5361), 4, + ACTIONS(5370), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5263), 8, + ACTIONS(5272), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -281965,7 +281965,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5261), 26, + ACTIONS(5270), 26, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -281995,45 +281995,45 @@ static const uint16_t ts_small_parse_table[] = { [52279] = 16, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5341), 1, + ACTIONS(5350), 1, anon_sym_DASH2, - ACTIONS(5349), 1, + ACTIONS(5358), 1, anon_sym_PLUS2, - ACTIONS(5365), 1, + ACTIONS(5374), 1, anon_sym_bit_DASHand2, STATE(1706), 1, aux_sym_shebang_repeat1, STATE(2385), 1, sym_comment, - ACTIONS(5343), 2, + ACTIONS(5352), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5345), 2, + ACTIONS(5354), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5347), 2, + ACTIONS(5356), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5351), 2, + ACTIONS(5360), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5353), 2, + ACTIONS(5362), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(5363), 2, + ACTIONS(5372), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(5355), 4, + ACTIONS(5364), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5361), 4, + ACTIONS(5370), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5263), 8, + ACTIONS(5272), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -282042,7 +282042,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5261), 25, + ACTIONS(5270), 25, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -282071,47 +282071,47 @@ static const uint16_t ts_small_parse_table[] = { [52371] = 17, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5341), 1, + ACTIONS(5350), 1, anon_sym_DASH2, - ACTIONS(5349), 1, + ACTIONS(5358), 1, anon_sym_PLUS2, - ACTIONS(5365), 1, + ACTIONS(5374), 1, anon_sym_bit_DASHand2, - ACTIONS(5367), 1, + ACTIONS(5376), 1, anon_sym_bit_DASHxor2, STATE(1706), 1, aux_sym_shebang_repeat1, STATE(2386), 1, sym_comment, - ACTIONS(5343), 2, + ACTIONS(5352), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5345), 2, + ACTIONS(5354), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5347), 2, + ACTIONS(5356), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5351), 2, + ACTIONS(5360), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5353), 2, + ACTIONS(5362), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(5363), 2, + ACTIONS(5372), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(5355), 4, + ACTIONS(5364), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5361), 4, + ACTIONS(5370), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5263), 8, + ACTIONS(5272), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -282120,7 +282120,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5261), 24, + ACTIONS(5270), 24, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -282148,53 +282148,53 @@ static const uint16_t ts_small_parse_table[] = { [52465] = 20, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5316), 1, + ACTIONS(5325), 1, anon_sym_DASH2, - ACTIONS(5320), 1, + ACTIONS(5329), 1, anon_sym_and2, - ACTIONS(5328), 1, + ACTIONS(5337), 1, anon_sym_PLUS2, - ACTIONS(5332), 1, + ACTIONS(5341), 1, anon_sym_bit_DASHand2, - ACTIONS(5334), 1, + ACTIONS(5343), 1, anon_sym_bit_DASHxor2, - ACTIONS(5336), 1, + ACTIONS(5345), 1, anon_sym_bit_DASHor2, - ACTIONS(5338), 1, + ACTIONS(5347), 1, sym__newline, STATE(2344), 1, aux_sym_shebang_repeat1, STATE(2387), 1, sym_comment, - ACTIONS(5308), 2, + ACTIONS(5317), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5310), 2, + ACTIONS(5319), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5312), 2, + ACTIONS(5321), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5314), 2, + ACTIONS(5323), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(5326), 2, + ACTIONS(5335), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(5330), 2, + ACTIONS(5339), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5318), 4, + ACTIONS(5327), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5324), 4, + ACTIONS(5333), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5299), 8, + ACTIONS(5308), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -282203,7 +282203,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5297), 21, + ACTIONS(5306), 21, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -282228,9 +282228,9 @@ static const uint16_t ts_small_parse_table[] = { [52565] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5395), 1, + ACTIONS(5404), 1, aux_sym__immediate_decimal_token1, - ACTIONS(5397), 1, + ACTIONS(5406), 1, aux_sym__immediate_decimal_token2, STATE(2388), 1, sym_comment, @@ -282294,9 +282294,9 @@ static const uint16_t ts_small_parse_table[] = { [52637] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5399), 1, + ACTIONS(5408), 1, anon_sym_DOT, - ACTIONS(5401), 1, + ACTIONS(5410), 1, aux_sym__immediate_decimal_token2, STATE(2389), 1, sym_comment, @@ -282360,53 +282360,53 @@ static const uint16_t ts_small_parse_table[] = { [52709] = 20, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5341), 1, + ACTIONS(5350), 1, anon_sym_DASH2, - ACTIONS(5349), 1, + ACTIONS(5358), 1, anon_sym_PLUS2, - ACTIONS(5365), 1, + ACTIONS(5374), 1, anon_sym_bit_DASHand2, - ACTIONS(5367), 1, + ACTIONS(5376), 1, anon_sym_bit_DASHxor2, - ACTIONS(5369), 1, + ACTIONS(5378), 1, anon_sym_bit_DASHor2, - ACTIONS(5371), 1, + ACTIONS(5380), 1, anon_sym_and2, - ACTIONS(5383), 1, + ACTIONS(5392), 1, anon_sym_xor2, STATE(1706), 1, aux_sym_shebang_repeat1, STATE(2390), 1, sym_comment, - ACTIONS(5343), 2, + ACTIONS(5352), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5345), 2, + ACTIONS(5354), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5347), 2, + ACTIONS(5356), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5351), 2, + ACTIONS(5360), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5353), 2, + ACTIONS(5362), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(5363), 2, + ACTIONS(5372), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(5355), 4, + ACTIONS(5364), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5361), 4, + ACTIONS(5370), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5285), 8, + ACTIONS(5294), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -282415,7 +282415,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5283), 21, + ACTIONS(5292), 21, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -282440,55 +282440,55 @@ static const uint16_t ts_small_parse_table[] = { [52809] = 21, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3802), 1, + ACTIONS(3811), 1, sym__newline, - ACTIONS(5316), 1, + ACTIONS(5325), 1, anon_sym_DASH2, - ACTIONS(5320), 1, + ACTIONS(5329), 1, anon_sym_and2, - ACTIONS(5322), 1, + ACTIONS(5331), 1, anon_sym_xor2, - ACTIONS(5328), 1, + ACTIONS(5337), 1, anon_sym_PLUS2, - ACTIONS(5332), 1, + ACTIONS(5341), 1, anon_sym_bit_DASHand2, - ACTIONS(5334), 1, + ACTIONS(5343), 1, anon_sym_bit_DASHxor2, - ACTIONS(5336), 1, + ACTIONS(5345), 1, anon_sym_bit_DASHor2, STATE(2326), 1, aux_sym_shebang_repeat1, STATE(2391), 1, sym_comment, - ACTIONS(5308), 2, + ACTIONS(5317), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5310), 2, + ACTIONS(5319), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5312), 2, + ACTIONS(5321), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5314), 2, + ACTIONS(5323), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(5326), 2, + ACTIONS(5335), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(5330), 2, + ACTIONS(5339), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5318), 4, + ACTIONS(5327), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5324), 4, + ACTIONS(5333), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5289), 8, + ACTIONS(5298), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -282497,7 +282497,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5287), 20, + ACTIONS(5296), 20, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -282521,7 +282521,7 @@ static const uint16_t ts_small_parse_table[] = { [52911] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5403), 1, + ACTIONS(5412), 1, anon_sym_DOT2, STATE(2392), 1, sym_comment, @@ -282589,40 +282589,40 @@ static const uint16_t ts_small_parse_table[] = { [52987] = 14, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5341), 1, + ACTIONS(5350), 1, anon_sym_DASH2, - ACTIONS(5349), 1, + ACTIONS(5358), 1, anon_sym_PLUS2, STATE(1706), 1, aux_sym_shebang_repeat1, STATE(2393), 1, sym_comment, - ACTIONS(5343), 2, + ACTIONS(5352), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5345), 2, + ACTIONS(5354), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5347), 2, + ACTIONS(5356), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5351), 2, + ACTIONS(5360), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5353), 2, + ACTIONS(5362), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(5355), 4, + ACTIONS(5364), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5361), 4, + ACTIONS(5370), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5285), 8, + ACTIONS(5294), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -282631,7 +282631,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5283), 28, + ACTIONS(5292), 28, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -282663,42 +282663,42 @@ static const uint16_t ts_small_parse_table[] = { [53075] = 15, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5316), 1, + ACTIONS(5325), 1, anon_sym_DASH2, - ACTIONS(5328), 1, + ACTIONS(5337), 1, anon_sym_PLUS2, - ACTIONS(5392), 1, + ACTIONS(5401), 1, sym__newline, STATE(2327), 1, aux_sym_shebang_repeat1, STATE(2394), 1, sym_comment, - ACTIONS(5308), 2, + ACTIONS(5317), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5310), 2, + ACTIONS(5319), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5312), 2, + ACTIONS(5321), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5314), 2, + ACTIONS(5323), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(5330), 2, + ACTIONS(5339), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5318), 4, + ACTIONS(5327), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5324), 4, + ACTIONS(5333), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5289), 8, + ACTIONS(5298), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -282707,7 +282707,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5287), 27, + ACTIONS(5296), 27, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -282742,11 +282742,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1299), 1, sym_raw_string_begin, - ACTIONS(4962), 1, + ACTIONS(4971), 1, aux_sym__val_number_decimal_token3, - ACTIONS(4964), 1, + ACTIONS(4973), 1, aux_sym__val_number_decimal_token4, - ACTIONS(5247), 1, + ACTIONS(5256), 1, anon_sym_DASH_DASH, STATE(2395), 1, sym_comment, @@ -282765,20 +282765,20 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1297), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4960), 2, + ACTIONS(4969), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, STATE(3916), 2, sym__raw_str, sym__str_double_quotes, - ACTIONS(4950), 6, + ACTIONS(4959), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(4952), 34, + ACTIONS(4961), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -282816,42 +282816,42 @@ static const uint16_t ts_small_parse_table[] = { [53261] = 15, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5305), 1, + ACTIONS(5314), 1, sym__newline, - ACTIONS(5316), 1, + ACTIONS(5325), 1, anon_sym_DASH2, - ACTIONS(5328), 1, + ACTIONS(5337), 1, anon_sym_PLUS2, STATE(2393), 1, aux_sym_shebang_repeat1, STATE(2396), 1, sym_comment, - ACTIONS(5308), 2, + ACTIONS(5317), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5310), 2, + ACTIONS(5319), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5312), 2, + ACTIONS(5321), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5314), 2, + ACTIONS(5323), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(5330), 2, + ACTIONS(5339), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5318), 4, + ACTIONS(5327), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5324), 4, + ACTIONS(5333), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5253), 8, + ACTIONS(5262), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -282860,7 +282860,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5251), 27, + ACTIONS(5260), 27, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -282891,7 +282891,7 @@ static const uint16_t ts_small_parse_table[] = { [53351] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5403), 1, + ACTIONS(5412), 1, anon_sym_DOT2, STATE(2397), 1, sym_comment, @@ -282959,51 +282959,51 @@ static const uint16_t ts_small_parse_table[] = { [53427] = 19, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5305), 1, + ACTIONS(5314), 1, sym__newline, - ACTIONS(5316), 1, + ACTIONS(5325), 1, anon_sym_DASH2, - ACTIONS(5328), 1, + ACTIONS(5337), 1, anon_sym_PLUS2, - ACTIONS(5332), 1, + ACTIONS(5341), 1, anon_sym_bit_DASHand2, - ACTIONS(5334), 1, + ACTIONS(5343), 1, anon_sym_bit_DASHxor2, - ACTIONS(5336), 1, + ACTIONS(5345), 1, anon_sym_bit_DASHor2, STATE(2371), 1, aux_sym_shebang_repeat1, STATE(2398), 1, sym_comment, - ACTIONS(5308), 2, + ACTIONS(5317), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5310), 2, + ACTIONS(5319), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5312), 2, + ACTIONS(5321), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5314), 2, + ACTIONS(5323), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(5326), 2, + ACTIONS(5335), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(5330), 2, + ACTIONS(5339), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5318), 4, + ACTIONS(5327), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5324), 4, + ACTIONS(5333), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5253), 8, + ACTIONS(5262), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -283012,7 +283012,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5251), 22, + ACTIONS(5260), 22, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -283038,7 +283038,7 @@ static const uint16_t ts_small_parse_table[] = { [53525] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5405), 1, + ACTIONS(5414), 1, anon_sym_LBRACK2, STATE(2399), 1, sym_comment, @@ -283103,24 +283103,24 @@ static const uint16_t ts_small_parse_table[] = { [53595] = 10, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5341), 1, + ACTIONS(5350), 1, anon_sym_DASH2, - ACTIONS(5349), 1, + ACTIONS(5358), 1, anon_sym_PLUS2, STATE(1706), 1, aux_sym_shebang_repeat1, STATE(2400), 1, sym_comment, - ACTIONS(5343), 2, + ACTIONS(5352), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5345), 2, + ACTIONS(5354), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5347), 2, + ACTIONS(5356), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5285), 10, + ACTIONS(5294), 10, anon_sym_GT2, anon_sym_LT2, anon_sym_err_GT, @@ -283131,7 +283131,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5283), 38, + ACTIONS(5292), 38, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -283173,25 +283173,25 @@ static const uint16_t ts_small_parse_table[] = { [53675] = 10, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5407), 1, + ACTIONS(5416), 1, anon_sym_DASH2, - ACTIONS(5415), 1, + ACTIONS(5424), 1, anon_sym_PLUS2, STATE(2401), 1, sym_comment, - ACTIONS(5409), 2, + ACTIONS(5418), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5411), 2, + ACTIONS(5420), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5413), 2, + ACTIONS(5422), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5417), 2, + ACTIONS(5426), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5207), 10, + ACTIONS(5216), 10, anon_sym_GT2, anon_sym_LT2, anon_sym_err_GT, @@ -283202,7 +283202,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5205), 37, + ACTIONS(5214), 37, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -283245,16 +283245,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(2402), 1, sym_comment, - ACTIONS(5409), 2, + ACTIONS(5418), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5411), 2, + ACTIONS(5420), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5413), 2, + ACTIONS(5422), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5207), 11, + ACTIONS(5216), 11, anon_sym_GT2, anon_sym_LT2, anon_sym_PLUS2, @@ -283266,7 +283266,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5205), 40, + ACTIONS(5214), 40, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -283310,33 +283310,33 @@ static const uint16_t ts_small_parse_table[] = { [53829] = 12, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5407), 1, + ACTIONS(5416), 1, anon_sym_DASH2, - ACTIONS(5415), 1, + ACTIONS(5424), 1, anon_sym_PLUS2, STATE(2403), 1, sym_comment, - ACTIONS(5409), 2, + ACTIONS(5418), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5411), 2, + ACTIONS(5420), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5413), 2, + ACTIONS(5422), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5417), 2, + ACTIONS(5426), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5419), 2, + ACTIONS(5428), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(5421), 4, + ACTIONS(5430), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5207), 8, + ACTIONS(5216), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -283345,7 +283345,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5205), 33, + ACTIONS(5214), 33, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -283384,10 +283384,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(2404), 1, sym_comment, - ACTIONS(5411), 2, + ACTIONS(5420), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5207), 13, + ACTIONS(5216), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -283401,7 +283401,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5205), 42, + ACTIONS(5214), 42, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -283447,47 +283447,47 @@ static const uint16_t ts_small_parse_table[] = { [53983] = 17, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5407), 1, + ACTIONS(5416), 1, anon_sym_DASH2, - ACTIONS(5415), 1, + ACTIONS(5424), 1, anon_sym_PLUS2, - ACTIONS(5427), 1, + ACTIONS(5436), 1, anon_sym_bit_DASHand2, - ACTIONS(5429), 1, + ACTIONS(5438), 1, anon_sym_bit_DASHxor2, - ACTIONS(5431), 1, + ACTIONS(5440), 1, anon_sym_bit_DASHor2, STATE(2405), 1, sym_comment, - ACTIONS(5409), 2, + ACTIONS(5418), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5411), 2, + ACTIONS(5420), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5413), 2, + ACTIONS(5422), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5417), 2, + ACTIONS(5426), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5419), 2, + ACTIONS(5428), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(5425), 2, + ACTIONS(5434), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(5421), 4, + ACTIONS(5430), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5423), 4, + ACTIONS(5432), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5207), 8, + ACTIONS(5216), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -283496,7 +283496,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5205), 24, + ACTIONS(5214), 24, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -283524,49 +283524,49 @@ static const uint16_t ts_small_parse_table[] = { [54077] = 18, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5407), 1, + ACTIONS(5416), 1, anon_sym_DASH2, - ACTIONS(5415), 1, + ACTIONS(5424), 1, anon_sym_PLUS2, - ACTIONS(5427), 1, + ACTIONS(5436), 1, anon_sym_bit_DASHand2, - ACTIONS(5429), 1, + ACTIONS(5438), 1, anon_sym_bit_DASHxor2, - ACTIONS(5431), 1, + ACTIONS(5440), 1, anon_sym_bit_DASHor2, - ACTIONS(5433), 1, + ACTIONS(5442), 1, anon_sym_and2, STATE(2406), 1, sym_comment, - ACTIONS(5409), 2, + ACTIONS(5418), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5411), 2, + ACTIONS(5420), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5413), 2, + ACTIONS(5422), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5417), 2, + ACTIONS(5426), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5419), 2, + ACTIONS(5428), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(5425), 2, + ACTIONS(5434), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(5421), 4, + ACTIONS(5430), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5423), 4, + ACTIONS(5432), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5207), 8, + ACTIONS(5216), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -283575,7 +283575,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5205), 23, + ACTIONS(5214), 23, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -283602,51 +283602,51 @@ static const uint16_t ts_small_parse_table[] = { [54173] = 19, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5407), 1, + ACTIONS(5416), 1, anon_sym_DASH2, - ACTIONS(5415), 1, + ACTIONS(5424), 1, anon_sym_PLUS2, - ACTIONS(5427), 1, + ACTIONS(5436), 1, anon_sym_bit_DASHand2, - ACTIONS(5429), 1, + ACTIONS(5438), 1, anon_sym_bit_DASHxor2, - ACTIONS(5431), 1, + ACTIONS(5440), 1, anon_sym_bit_DASHor2, - ACTIONS(5433), 1, + ACTIONS(5442), 1, anon_sym_and2, - ACTIONS(5435), 1, + ACTIONS(5444), 1, anon_sym_xor2, STATE(2407), 1, sym_comment, - ACTIONS(5409), 2, + ACTIONS(5418), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5411), 2, + ACTIONS(5420), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5413), 2, + ACTIONS(5422), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5417), 2, + ACTIONS(5426), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5419), 2, + ACTIONS(5428), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(5425), 2, + ACTIONS(5434), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(5421), 4, + ACTIONS(5430), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5423), 4, + ACTIONS(5432), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5207), 8, + ACTIONS(5216), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -283655,7 +283655,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5205), 22, + ACTIONS(5214), 22, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -283681,38 +283681,38 @@ static const uint16_t ts_small_parse_table[] = { [54271] = 13, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5407), 1, + ACTIONS(5416), 1, anon_sym_DASH2, - ACTIONS(5415), 1, + ACTIONS(5424), 1, anon_sym_PLUS2, STATE(2408), 1, sym_comment, - ACTIONS(5409), 2, + ACTIONS(5418), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5411), 2, + ACTIONS(5420), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5413), 2, + ACTIONS(5422), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5417), 2, + ACTIONS(5426), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5419), 2, + ACTIONS(5428), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(5421), 4, + ACTIONS(5430), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5423), 4, + ACTIONS(5432), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5207), 8, + ACTIONS(5216), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -283721,7 +283721,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5205), 29, + ACTIONS(5214), 29, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -283754,22 +283754,22 @@ static const uint16_t ts_small_parse_table[] = { [54357] = 9, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5407), 1, + ACTIONS(5416), 1, anon_sym_DASH2, - ACTIONS(5415), 1, + ACTIONS(5424), 1, anon_sym_PLUS2, STATE(2409), 1, sym_comment, - ACTIONS(5409), 2, + ACTIONS(5418), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5411), 2, + ACTIONS(5420), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5413), 2, + ACTIONS(5422), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5207), 10, + ACTIONS(5216), 10, anon_sym_GT2, anon_sym_LT2, anon_sym_err_GT, @@ -283780,7 +283780,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5205), 39, + ACTIONS(5214), 39, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -283823,41 +283823,41 @@ static const uint16_t ts_small_parse_table[] = { [54435] = 14, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5407), 1, + ACTIONS(5416), 1, anon_sym_DASH2, - ACTIONS(5415), 1, + ACTIONS(5424), 1, anon_sym_PLUS2, STATE(2410), 1, sym_comment, - ACTIONS(5409), 2, + ACTIONS(5418), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5411), 2, + ACTIONS(5420), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5413), 2, + ACTIONS(5422), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5417), 2, + ACTIONS(5426), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5419), 2, + ACTIONS(5428), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(5425), 2, + ACTIONS(5434), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(5421), 4, + ACTIONS(5430), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5423), 4, + ACTIONS(5432), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5207), 8, + ACTIONS(5216), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -283866,7 +283866,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5205), 27, + ACTIONS(5214), 27, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -283897,43 +283897,43 @@ static const uint16_t ts_small_parse_table[] = { [54523] = 15, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5407), 1, + ACTIONS(5416), 1, anon_sym_DASH2, - ACTIONS(5415), 1, + ACTIONS(5424), 1, anon_sym_PLUS2, - ACTIONS(5427), 1, + ACTIONS(5436), 1, anon_sym_bit_DASHand2, STATE(2411), 1, sym_comment, - ACTIONS(5409), 2, + ACTIONS(5418), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5411), 2, + ACTIONS(5420), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5413), 2, + ACTIONS(5422), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5417), 2, + ACTIONS(5426), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5419), 2, + ACTIONS(5428), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(5425), 2, + ACTIONS(5434), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(5421), 4, + ACTIONS(5430), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5423), 4, + ACTIONS(5432), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5207), 8, + ACTIONS(5216), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -283942,7 +283942,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5205), 26, + ACTIONS(5214), 26, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -283972,45 +283972,45 @@ static const uint16_t ts_small_parse_table[] = { [54613] = 16, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5407), 1, + ACTIONS(5416), 1, anon_sym_DASH2, - ACTIONS(5415), 1, + ACTIONS(5424), 1, anon_sym_PLUS2, - ACTIONS(5427), 1, + ACTIONS(5436), 1, anon_sym_bit_DASHand2, - ACTIONS(5429), 1, + ACTIONS(5438), 1, anon_sym_bit_DASHxor2, STATE(2412), 1, sym_comment, - ACTIONS(5409), 2, + ACTIONS(5418), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5411), 2, + ACTIONS(5420), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5413), 2, + ACTIONS(5422), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5417), 2, + ACTIONS(5426), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5419), 2, + ACTIONS(5428), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(5425), 2, + ACTIONS(5434), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(5421), 4, + ACTIONS(5430), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5423), 4, + ACTIONS(5432), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5207), 8, + ACTIONS(5216), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -284019,7 +284019,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5205), 25, + ACTIONS(5214), 25, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -284048,7 +284048,7 @@ static const uint16_t ts_small_parse_table[] = { [54705] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5403), 1, + ACTIONS(5412), 1, anon_sym_DOT2, STATE(2413), 1, sym_comment, @@ -284120,11 +284120,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1299), 1, sym_raw_string_begin, - ACTIONS(4962), 1, + ACTIONS(4971), 1, aux_sym__val_number_decimal_token3, - ACTIONS(4964), 1, + ACTIONS(4973), 1, aux_sym__val_number_decimal_token4, - ACTIONS(5247), 1, + ACTIONS(5256), 1, anon_sym_DASH_DASH, STATE(2395), 1, aux_sym_decl_def_repeat1, @@ -284143,20 +284143,20 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1297), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4960), 2, + ACTIONS(4969), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, STATE(3916), 2, sym__raw_str, sym__str_double_quotes, - ACTIONS(4950), 6, + ACTIONS(4959), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(4952), 34, + ACTIONS(4961), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -284196,19 +284196,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(1555), 1, aux_sym__unquoted_in_list_token2, - ACTIONS(3810), 1, + ACTIONS(3819), 1, anon_sym_DOLLAR, - ACTIONS(5437), 1, + ACTIONS(5446), 1, anon_sym_LPAREN2, - ACTIONS(5439), 1, + ACTIONS(5448), 1, anon_sym_DOT, - ACTIONS(5441), 1, + ACTIONS(5450), 1, aux_sym__immediate_decimal_token1, - ACTIONS(5443), 1, + ACTIONS(5452), 1, aux_sym__immediate_decimal_token3, - ACTIONS(5445), 1, + ACTIONS(5454), 1, aux_sym__immediate_decimal_token4, - ACTIONS(5447), 1, + ACTIONS(5456), 1, aux_sym__immediate_decimal_token5, STATE(2415), 1, sym_comment, @@ -284268,26 +284268,26 @@ static const uint16_t ts_small_parse_table[] = { [54965] = 11, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5316), 1, + ACTIONS(5325), 1, anon_sym_DASH2, - ACTIONS(5328), 1, + ACTIONS(5337), 1, anon_sym_PLUS2, - ACTIONS(5392), 1, + ACTIONS(5401), 1, sym__newline, STATE(2328), 1, aux_sym_shebang_repeat1, STATE(2416), 1, sym_comment, - ACTIONS(5308), 2, + ACTIONS(5317), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5310), 2, + ACTIONS(5319), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5312), 2, + ACTIONS(5321), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5289), 10, + ACTIONS(5298), 10, anon_sym_GT2, anon_sym_LT2, anon_sym_err_GT, @@ -284298,7 +284298,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5287), 37, + ACTIONS(5296), 37, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -284339,47 +284339,47 @@ static const uint16_t ts_small_parse_table[] = { [55047] = 17, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5305), 1, + ACTIONS(5314), 1, sym__newline, - ACTIONS(5316), 1, + ACTIONS(5325), 1, anon_sym_DASH2, - ACTIONS(5328), 1, + ACTIONS(5337), 1, anon_sym_PLUS2, - ACTIONS(5332), 1, + ACTIONS(5341), 1, anon_sym_bit_DASHand2, STATE(2417), 1, sym_comment, STATE(2424), 1, aux_sym_shebang_repeat1, - ACTIONS(5308), 2, + ACTIONS(5317), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5310), 2, + ACTIONS(5319), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5312), 2, + ACTIONS(5321), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5314), 2, + ACTIONS(5323), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(5326), 2, + ACTIONS(5335), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(5330), 2, + ACTIONS(5339), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5318), 4, + ACTIONS(5327), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5324), 4, + ACTIONS(5333), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5253), 8, + ACTIONS(5262), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -284388,7 +284388,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5251), 24, + ACTIONS(5260), 24, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -284416,43 +284416,43 @@ static const uint16_t ts_small_parse_table[] = { [55141] = 15, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5341), 1, + ACTIONS(5350), 1, anon_sym_DASH2, - ACTIONS(5349), 1, + ACTIONS(5358), 1, anon_sym_PLUS2, STATE(1706), 1, aux_sym_shebang_repeat1, STATE(2418), 1, sym_comment, - ACTIONS(5343), 2, + ACTIONS(5352), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5345), 2, + ACTIONS(5354), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5347), 2, + ACTIONS(5356), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5351), 2, + ACTIONS(5360), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5353), 2, + ACTIONS(5362), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(5363), 2, + ACTIONS(5372), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(5355), 4, + ACTIONS(5364), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5361), 4, + ACTIONS(5370), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5285), 8, + ACTIONS(5294), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -284461,7 +284461,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5283), 26, + ACTIONS(5292), 26, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -284491,45 +284491,45 @@ static const uint16_t ts_small_parse_table[] = { [55231] = 16, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5316), 1, + ACTIONS(5325), 1, anon_sym_DASH2, - ACTIONS(5328), 1, + ACTIONS(5337), 1, anon_sym_PLUS2, - ACTIONS(5392), 1, + ACTIONS(5401), 1, sym__newline, STATE(2330), 1, aux_sym_shebang_repeat1, STATE(2419), 1, sym_comment, - ACTIONS(5308), 2, + ACTIONS(5317), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5310), 2, + ACTIONS(5319), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5312), 2, + ACTIONS(5321), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5314), 2, + ACTIONS(5323), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(5326), 2, + ACTIONS(5335), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(5330), 2, + ACTIONS(5339), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5318), 4, + ACTIONS(5327), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5324), 4, + ACTIONS(5333), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5289), 8, + ACTIONS(5298), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -284538,7 +284538,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5287), 25, + ACTIONS(5296), 25, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -284567,15 +284567,15 @@ static const uint16_t ts_small_parse_table[] = { [55323] = 18, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3118), 1, + ACTIONS(3125), 1, anon_sym_DQUOTE, - ACTIONS(3124), 1, + ACTIONS(3131), 1, sym_raw_string_begin, - ACTIONS(4962), 1, + ACTIONS(4971), 1, aux_sym__val_number_decimal_token3, - ACTIONS(4964), 1, + ACTIONS(4973), 1, aux_sym__val_number_decimal_token4, - ACTIONS(5239), 1, + ACTIONS(5248), 1, sym__newline, STATE(2420), 1, sym_comment, @@ -284591,23 +284591,23 @@ static const uint16_t ts_small_parse_table[] = { sym_cmd_identifier, STATE(6932), 1, sym_val_string, - ACTIONS(3120), 2, + ACTIONS(3127), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4960), 2, + ACTIONS(4969), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, STATE(5129), 2, sym__raw_str, sym__str_double_quotes, - ACTIONS(5235), 6, + ACTIONS(5244), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(5237), 34, + ACTIONS(5246), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -284645,26 +284645,26 @@ static const uint16_t ts_small_parse_table[] = { [55419] = 11, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5305), 1, + ACTIONS(5314), 1, sym__newline, - ACTIONS(5316), 1, + ACTIONS(5325), 1, anon_sym_DASH2, - ACTIONS(5328), 1, + ACTIONS(5337), 1, anon_sym_PLUS2, STATE(2400), 1, aux_sym_shebang_repeat1, STATE(2421), 1, sym_comment, - ACTIONS(5308), 2, + ACTIONS(5317), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5310), 2, + ACTIONS(5319), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5312), 2, + ACTIONS(5321), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5253), 10, + ACTIONS(5262), 10, anon_sym_GT2, anon_sym_LT2, anon_sym_err_GT, @@ -284675,7 +284675,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5251), 37, + ACTIONS(5260), 37, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -284716,7 +284716,7 @@ static const uint16_t ts_small_parse_table[] = { [55501] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4904), 1, + ACTIONS(4913), 1, aux_sym_unquoted_token2, STATE(2422), 1, sym_comment, @@ -284783,13 +284783,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(2547), 1, anon_sym_DOLLAR, - ACTIONS(5273), 1, + ACTIONS(5282), 1, anon_sym_LPAREN2, - ACTIONS(5449), 1, + ACTIONS(5458), 1, anon_sym_DOT, - ACTIONS(5453), 1, + ACTIONS(5462), 1, aux_sym__immediate_decimal_token4, - ACTIONS(5455), 1, + ACTIONS(5464), 1, aux_sym__immediate_decimal_token5, STATE(2423), 1, sym_comment, @@ -284798,7 +284798,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1643), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(5451), 2, + ACTIONS(5460), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, STATE(2872), 2, @@ -284853,45 +284853,45 @@ static const uint16_t ts_small_parse_table[] = { [55655] = 16, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5341), 1, + ACTIONS(5350), 1, anon_sym_DASH2, - ACTIONS(5349), 1, + ACTIONS(5358), 1, anon_sym_PLUS2, - ACTIONS(5365), 1, + ACTIONS(5374), 1, anon_sym_bit_DASHand2, STATE(1706), 1, aux_sym_shebang_repeat1, STATE(2424), 1, sym_comment, - ACTIONS(5343), 2, + ACTIONS(5352), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5345), 2, + ACTIONS(5354), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5347), 2, + ACTIONS(5356), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5351), 2, + ACTIONS(5360), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5353), 2, + ACTIONS(5362), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(5363), 2, + ACTIONS(5372), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(5355), 4, + ACTIONS(5364), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5361), 4, + ACTIONS(5370), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5285), 8, + ACTIONS(5294), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -284900,7 +284900,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5283), 25, + ACTIONS(5292), 25, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -284929,37 +284929,37 @@ static const uint16_t ts_small_parse_table[] = { [55747] = 14, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5305), 1, + ACTIONS(5314), 1, sym__newline, - ACTIONS(5316), 1, + ACTIONS(5325), 1, anon_sym_DASH2, - ACTIONS(5328), 1, + ACTIONS(5337), 1, anon_sym_PLUS2, STATE(2363), 1, aux_sym_shebang_repeat1, STATE(2425), 1, sym_comment, - ACTIONS(5308), 2, + ACTIONS(5317), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5310), 2, + ACTIONS(5319), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5312), 2, + ACTIONS(5321), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5314), 2, + ACTIONS(5323), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(5330), 2, + ACTIONS(5339), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5324), 4, + ACTIONS(5333), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5253), 8, + ACTIONS(5262), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -284968,7 +284968,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5251), 31, + ACTIONS(5260), 31, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -285003,7 +285003,7 @@ static const uint16_t ts_small_parse_table[] = { [55835] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5249), 1, + ACTIONS(5258), 1, anon_sym_DOT2, STATE(2426), 1, sym_comment, @@ -285070,47 +285070,47 @@ static const uint16_t ts_small_parse_table[] = { [55909] = 17, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5316), 1, + ACTIONS(5325), 1, anon_sym_DASH2, - ACTIONS(5328), 1, + ACTIONS(5337), 1, anon_sym_PLUS2, - ACTIONS(5332), 1, + ACTIONS(5341), 1, anon_sym_bit_DASHand2, - ACTIONS(5392), 1, + ACTIONS(5401), 1, sym__newline, STATE(2331), 1, aux_sym_shebang_repeat1, STATE(2427), 1, sym_comment, - ACTIONS(5308), 2, + ACTIONS(5317), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5310), 2, + ACTIONS(5319), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5312), 2, + ACTIONS(5321), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5314), 2, + ACTIONS(5323), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(5326), 2, + ACTIONS(5335), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(5330), 2, + ACTIONS(5339), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5318), 4, + ACTIONS(5327), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5324), 4, + ACTIONS(5333), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5289), 8, + ACTIONS(5298), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -285119,7 +285119,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5287), 24, + ACTIONS(5296), 24, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -285147,47 +285147,47 @@ static const uint16_t ts_small_parse_table[] = { [56003] = 17, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5341), 1, + ACTIONS(5350), 1, anon_sym_DASH2, - ACTIONS(5349), 1, + ACTIONS(5358), 1, anon_sym_PLUS2, - ACTIONS(5365), 1, + ACTIONS(5374), 1, anon_sym_bit_DASHand2, - ACTIONS(5367), 1, + ACTIONS(5376), 1, anon_sym_bit_DASHxor2, STATE(1706), 1, aux_sym_shebang_repeat1, STATE(2428), 1, sym_comment, - ACTIONS(5343), 2, + ACTIONS(5352), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5345), 2, + ACTIONS(5354), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5347), 2, + ACTIONS(5356), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5351), 2, + ACTIONS(5360), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5353), 2, + ACTIONS(5362), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(5363), 2, + ACTIONS(5372), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(5355), 4, + ACTIONS(5364), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5361), 4, + ACTIONS(5370), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5285), 8, + ACTIONS(5294), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -285196,7 +285196,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5283), 24, + ACTIONS(5292), 24, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -285224,49 +285224,49 @@ static const uint16_t ts_small_parse_table[] = { [56097] = 18, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5316), 1, + ACTIONS(5325), 1, anon_sym_DASH2, - ACTIONS(5328), 1, + ACTIONS(5337), 1, anon_sym_PLUS2, - ACTIONS(5332), 1, + ACTIONS(5341), 1, anon_sym_bit_DASHand2, - ACTIONS(5334), 1, + ACTIONS(5343), 1, anon_sym_bit_DASHxor2, - ACTIONS(5392), 1, + ACTIONS(5401), 1, sym__newline, STATE(2332), 1, aux_sym_shebang_repeat1, STATE(2429), 1, sym_comment, - ACTIONS(5308), 2, + ACTIONS(5317), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5310), 2, + ACTIONS(5319), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5312), 2, + ACTIONS(5321), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5314), 2, + ACTIONS(5323), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(5326), 2, + ACTIONS(5335), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(5330), 2, + ACTIONS(5339), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5318), 4, + ACTIONS(5327), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5324), 4, + ACTIONS(5333), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5289), 8, + ACTIONS(5298), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -285275,7 +285275,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5287), 23, + ACTIONS(5296), 23, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -285302,29 +285302,29 @@ static const uint16_t ts_small_parse_table[] = { [56193] = 12, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5316), 1, + ACTIONS(5325), 1, anon_sym_DASH2, - ACTIONS(5328), 1, + ACTIONS(5337), 1, anon_sym_PLUS2, - ACTIONS(5338), 1, + ACTIONS(5347), 1, sym__newline, STATE(2333), 1, aux_sym_shebang_repeat1, STATE(2430), 1, sym_comment, - ACTIONS(5308), 2, + ACTIONS(5317), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5310), 2, + ACTIONS(5319), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5312), 2, + ACTIONS(5321), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5330), 2, + ACTIONS(5339), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5299), 10, + ACTIONS(5308), 10, anon_sym_GT2, anon_sym_LT2, anon_sym_err_GT, @@ -285335,7 +285335,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5297), 35, + ACTIONS(5306), 35, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -285374,7 +285374,7 @@ static const uint16_t ts_small_parse_table[] = { [56277] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5457), 1, + ACTIONS(5466), 1, anon_sym_DOT2, STATE(2560), 1, sym_path, @@ -285442,7 +285442,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(2432), 1, sym_comment, - ACTIONS(5145), 13, + ACTIONS(5154), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -285456,7 +285456,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5147), 44, + ACTIONS(5156), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -285504,29 +285504,29 @@ static const uint16_t ts_small_parse_table[] = { [56417] = 12, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5305), 1, + ACTIONS(5314), 1, sym__newline, - ACTIONS(5316), 1, + ACTIONS(5325), 1, anon_sym_DASH2, - ACTIONS(5328), 1, + ACTIONS(5337), 1, anon_sym_PLUS2, STATE(2351), 1, aux_sym_shebang_repeat1, STATE(2433), 1, sym_comment, - ACTIONS(5308), 2, + ACTIONS(5317), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5310), 2, + ACTIONS(5319), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5312), 2, + ACTIONS(5321), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5330), 2, + ACTIONS(5339), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5253), 10, + ACTIONS(5262), 10, anon_sym_GT2, anon_sym_LT2, anon_sym_err_GT, @@ -285537,7 +285537,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5251), 35, + ACTIONS(5260), 35, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -285576,22 +285576,22 @@ static const uint16_t ts_small_parse_table[] = { [56501] = 9, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5338), 1, + ACTIONS(5347), 1, sym__newline, STATE(2335), 1, aux_sym_shebang_repeat1, STATE(2434), 1, sym_comment, - ACTIONS(5308), 2, + ACTIONS(5317), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5310), 2, + ACTIONS(5319), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5312), 2, + ACTIONS(5321), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5299), 11, + ACTIONS(5308), 11, anon_sym_GT2, anon_sym_LT2, anon_sym_PLUS2, @@ -285603,7 +285603,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5297), 38, + ACTIONS(5306), 38, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -285645,37 +285645,37 @@ static const uint16_t ts_small_parse_table[] = { [56579] = 14, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5316), 1, + ACTIONS(5325), 1, anon_sym_DASH2, - ACTIONS(5328), 1, + ACTIONS(5337), 1, anon_sym_PLUS2, - ACTIONS(5338), 1, + ACTIONS(5347), 1, sym__newline, STATE(2337), 1, aux_sym_shebang_repeat1, STATE(2435), 1, sym_comment, - ACTIONS(5308), 2, + ACTIONS(5317), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5310), 2, + ACTIONS(5319), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5312), 2, + ACTIONS(5321), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5314), 2, + ACTIONS(5323), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(5330), 2, + ACTIONS(5339), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5324), 4, + ACTIONS(5333), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5299), 8, + ACTIONS(5308), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -285684,7 +285684,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5297), 31, + ACTIONS(5306), 31, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -285784,15 +285784,15 @@ static const uint16_t ts_small_parse_table[] = { [56737] = 18, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3118), 1, + ACTIONS(3125), 1, anon_sym_DQUOTE, - ACTIONS(3124), 1, + ACTIONS(3131), 1, sym_raw_string_begin, - ACTIONS(4962), 1, + ACTIONS(4971), 1, aux_sym__val_number_decimal_token3, - ACTIONS(4964), 1, + ACTIONS(4973), 1, aux_sym__val_number_decimal_token4, - ACTIONS(5239), 1, + ACTIONS(5248), 1, sym__newline, STATE(2437), 1, sym_comment, @@ -285808,23 +285808,23 @@ static const uint16_t ts_small_parse_table[] = { sym_cmd_identifier, STATE(6932), 1, sym_val_string, - ACTIONS(3120), 2, + ACTIONS(3127), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4960), 2, + ACTIONS(4969), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, STATE(5129), 2, sym__raw_str, sym__str_double_quotes, - ACTIONS(5235), 6, + ACTIONS(5244), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(5237), 34, + ACTIONS(5246), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -285862,16 +285862,16 @@ static const uint16_t ts_small_parse_table[] = { [56833] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5338), 1, + ACTIONS(5347), 1, sym__newline, STATE(2340), 1, aux_sym_shebang_repeat1, STATE(2438), 1, sym_comment, - ACTIONS(5310), 2, + ACTIONS(5319), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5299), 13, + ACTIONS(5308), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -285885,7 +285885,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5297), 40, + ACTIONS(5306), 40, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -285933,11 +285933,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1299), 1, sym_raw_string_begin, - ACTIONS(4962), 1, + ACTIONS(4971), 1, aux_sym__val_number_decimal_token3, - ACTIONS(4964), 1, + ACTIONS(4973), 1, aux_sym__val_number_decimal_token4, - ACTIONS(5247), 1, + ACTIONS(5256), 1, anon_sym_DASH_DASH, STATE(2439), 1, sym_comment, @@ -285956,20 +285956,20 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1297), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4960), 2, + ACTIONS(4969), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, STATE(3916), 2, sym__raw_str, sym__str_double_quotes, - ACTIONS(4950), 6, + ACTIONS(4959), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(4952), 34, + ACTIONS(4961), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -286007,49 +286007,49 @@ static const uint16_t ts_small_parse_table[] = { [57003] = 18, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5305), 1, + ACTIONS(5314), 1, sym__newline, - ACTIONS(5316), 1, + ACTIONS(5325), 1, anon_sym_DASH2, - ACTIONS(5328), 1, + ACTIONS(5337), 1, anon_sym_PLUS2, - ACTIONS(5332), 1, + ACTIONS(5341), 1, anon_sym_bit_DASHand2, - ACTIONS(5334), 1, + ACTIONS(5343), 1, anon_sym_bit_DASHxor2, STATE(2428), 1, aux_sym_shebang_repeat1, STATE(2440), 1, sym_comment, - ACTIONS(5308), 2, + ACTIONS(5317), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5310), 2, + ACTIONS(5319), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5312), 2, + ACTIONS(5321), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5314), 2, + ACTIONS(5323), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(5326), 2, + ACTIONS(5335), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(5330), 2, + ACTIONS(5339), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5318), 4, + ACTIONS(5327), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5324), 4, + ACTIONS(5333), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5253), 8, + ACTIONS(5262), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -286058,7 +286058,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5251), 23, + ACTIONS(5260), 23, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -286085,55 +286085,55 @@ static const uint16_t ts_small_parse_table[] = { [57099] = 21, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3802), 1, + ACTIONS(3811), 1, sym__newline, - ACTIONS(5316), 1, + ACTIONS(5325), 1, anon_sym_DASH2, - ACTIONS(5320), 1, + ACTIONS(5329), 1, anon_sym_and2, - ACTIONS(5322), 1, + ACTIONS(5331), 1, anon_sym_xor2, - ACTIONS(5328), 1, + ACTIONS(5337), 1, anon_sym_PLUS2, - ACTIONS(5332), 1, + ACTIONS(5341), 1, anon_sym_bit_DASHand2, - ACTIONS(5334), 1, + ACTIONS(5343), 1, anon_sym_bit_DASHxor2, - ACTIONS(5336), 1, + ACTIONS(5345), 1, anon_sym_bit_DASHor2, STATE(2390), 1, aux_sym_shebang_repeat1, STATE(2441), 1, sym_comment, - ACTIONS(5308), 2, + ACTIONS(5317), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5310), 2, + ACTIONS(5319), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5312), 2, + ACTIONS(5321), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5314), 2, + ACTIONS(5323), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(5326), 2, + ACTIONS(5335), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(5330), 2, + ACTIONS(5339), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5318), 4, + ACTIONS(5327), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5324), 4, + ACTIONS(5333), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5253), 8, + ACTIONS(5262), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -286142,7 +286142,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5251), 20, + ACTIONS(5260), 20, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -286166,51 +286166,51 @@ static const uint16_t ts_small_parse_table[] = { [57201] = 19, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5316), 1, + ACTIONS(5325), 1, anon_sym_DASH2, - ACTIONS(5328), 1, + ACTIONS(5337), 1, anon_sym_PLUS2, - ACTIONS(5332), 1, + ACTIONS(5341), 1, anon_sym_bit_DASHand2, - ACTIONS(5334), 1, + ACTIONS(5343), 1, anon_sym_bit_DASHxor2, - ACTIONS(5336), 1, + ACTIONS(5345), 1, anon_sym_bit_DASHor2, - ACTIONS(5338), 1, + ACTIONS(5347), 1, sym__newline, STATE(2342), 1, aux_sym_shebang_repeat1, STATE(2442), 1, sym_comment, - ACTIONS(5308), 2, + ACTIONS(5317), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5310), 2, + ACTIONS(5319), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5312), 2, + ACTIONS(5321), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5314), 2, + ACTIONS(5323), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(5326), 2, + ACTIONS(5335), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(5330), 2, + ACTIONS(5339), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5318), 4, + ACTIONS(5327), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5324), 4, + ACTIONS(5333), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5299), 8, + ACTIONS(5308), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -286219,7 +286219,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5297), 22, + ACTIONS(5306), 22, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -286249,11 +286249,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1299), 1, sym_raw_string_begin, - ACTIONS(4962), 1, + ACTIONS(4971), 1, aux_sym__val_number_decimal_token3, - ACTIONS(4964), 1, + ACTIONS(4973), 1, aux_sym__val_number_decimal_token4, - ACTIONS(5247), 1, + ACTIONS(5256), 1, anon_sym_DASH_DASH, STATE(2443), 1, sym_comment, @@ -286272,20 +286272,20 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1297), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4960), 2, + ACTIONS(4969), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, STATE(3916), 2, sym__raw_str, sym__str_double_quotes, - ACTIONS(4950), 6, + ACTIONS(4959), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(4952), 34, + ACTIONS(4961), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -286327,11 +286327,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1299), 1, sym_raw_string_begin, - ACTIONS(4962), 1, + ACTIONS(4971), 1, aux_sym__val_number_decimal_token3, - ACTIONS(4964), 1, + ACTIONS(4973), 1, aux_sym__val_number_decimal_token4, - ACTIONS(5247), 1, + ACTIONS(5256), 1, anon_sym_DASH_DASH, STATE(2444), 1, sym_comment, @@ -286350,20 +286350,20 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1297), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4960), 2, + ACTIONS(4969), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, STATE(3916), 2, sym__raw_str, sym__str_double_quotes, - ACTIONS(4950), 6, + ACTIONS(4959), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(4952), 34, + ACTIONS(4961), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -286405,11 +286405,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1299), 1, sym_raw_string_begin, - ACTIONS(4962), 1, + ACTIONS(4971), 1, aux_sym__val_number_decimal_token3, - ACTIONS(4964), 1, + ACTIONS(4973), 1, aux_sym__val_number_decimal_token4, - ACTIONS(5247), 1, + ACTIONS(5256), 1, anon_sym_DASH_DASH, STATE(2445), 1, sym_comment, @@ -286428,20 +286428,20 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1297), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4960), 2, + ACTIONS(4969), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, STATE(3916), 2, sym__raw_str, sym__str_double_quotes, - ACTIONS(4950), 6, + ACTIONS(4959), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(4952), 34, + ACTIONS(4961), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -286483,11 +286483,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1299), 1, sym_raw_string_begin, - ACTIONS(4962), 1, + ACTIONS(4971), 1, aux_sym__val_number_decimal_token3, - ACTIONS(4964), 1, + ACTIONS(4973), 1, aux_sym__val_number_decimal_token4, - ACTIONS(5247), 1, + ACTIONS(5256), 1, anon_sym_DASH_DASH, STATE(2446), 1, sym_comment, @@ -286506,20 +286506,20 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1297), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4960), 2, + ACTIONS(4969), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, STATE(3916), 2, sym__raw_str, sym__str_double_quotes, - ACTIONS(4950), 6, + ACTIONS(4959), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(4952), 34, + ACTIONS(4961), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -286557,53 +286557,53 @@ static const uint16_t ts_small_parse_table[] = { [57683] = 20, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5316), 1, + ACTIONS(5325), 1, anon_sym_DASH2, - ACTIONS(5320), 1, + ACTIONS(5329), 1, anon_sym_and2, - ACTIONS(5328), 1, + ACTIONS(5337), 1, anon_sym_PLUS2, - ACTIONS(5332), 1, + ACTIONS(5341), 1, anon_sym_bit_DASHand2, - ACTIONS(5334), 1, + ACTIONS(5343), 1, anon_sym_bit_DASHxor2, - ACTIONS(5336), 1, + ACTIONS(5345), 1, anon_sym_bit_DASHor2, - ACTIONS(5392), 1, + ACTIONS(5401), 1, sym__newline, STATE(2324), 1, aux_sym_shebang_repeat1, STATE(2447), 1, sym_comment, - ACTIONS(5308), 2, + ACTIONS(5317), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5310), 2, + ACTIONS(5319), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5312), 2, + ACTIONS(5321), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5314), 2, + ACTIONS(5323), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(5326), 2, + ACTIONS(5335), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(5330), 2, + ACTIONS(5339), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5318), 4, + ACTIONS(5327), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5324), 4, + ACTIONS(5333), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5289), 8, + ACTIONS(5298), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -286612,7 +286612,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5287), 21, + ACTIONS(5296), 21, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -286702,7 +286702,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(2449), 1, sym_comment, - ACTIONS(5213), 13, + ACTIONS(5222), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -286716,7 +286716,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5211), 43, + ACTIONS(5220), 43, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -286763,7 +286763,7 @@ static const uint16_t ts_small_parse_table[] = { [57917] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5460), 1, + ACTIONS(5469), 1, aux_sym__immediate_decimal_token2, STATE(2450), 1, sym_comment, @@ -287772,7 +287772,7 @@ static const uint16_t ts_small_parse_table[] = { [58991] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5401), 1, + ACTIONS(5410), 1, aux_sym__immediate_decimal_token2, STATE(2466), 1, sym_comment, @@ -288025,7 +288025,7 @@ static const uint16_t ts_small_parse_table[] = { [59261] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5462), 1, + ACTIONS(5471), 1, aux_sym__immediate_decimal_token2, STATE(2470), 1, sym_comment, @@ -288341,15 +288341,15 @@ static const uint16_t ts_small_parse_table[] = { [59598] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5464), 1, + ACTIONS(5473), 1, anon_sym_LPAREN2, - ACTIONS(5466), 1, + ACTIONS(5475), 1, anon_sym_DOT_DOT2, - ACTIONS(5470), 1, + ACTIONS(5479), 1, sym_filesize_unit, - ACTIONS(5472), 1, + ACTIONS(5481), 1, sym_duration_unit, - ACTIONS(5474), 1, + ACTIONS(5483), 1, aux_sym__unquoted_in_list_token2, STATE(2475), 1, sym_comment, @@ -288358,7 +288358,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1693), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(5468), 2, + ACTIONS(5477), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, ACTIONS(1681), 46, @@ -288474,7 +288474,7 @@ static const uint16_t ts_small_parse_table[] = { [59746] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5476), 1, + ACTIONS(5485), 1, anon_sym_DOT2, STATE(2657), 1, sym_path, @@ -288604,7 +288604,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(2479), 1, sym_comment, - ACTIONS(5203), 13, + ACTIONS(5212), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -288618,7 +288618,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5201), 43, + ACTIONS(5210), 43, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -289045,7 +289045,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(2486), 1, sym_comment, - ACTIONS(5108), 13, + ACTIONS(5117), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -289059,7 +289059,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5110), 43, + ACTIONS(5119), 43, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -289106,25 +289106,25 @@ static const uint16_t ts_small_parse_table[] = { [60420] = 10, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5479), 1, + ACTIONS(5488), 1, anon_sym_DASH2, - ACTIONS(5487), 1, + ACTIONS(5496), 1, anon_sym_PLUS2, STATE(2487), 1, sym_comment, - ACTIONS(5481), 2, + ACTIONS(5490), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5483), 2, + ACTIONS(5492), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5485), 2, + ACTIONS(5494), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5489), 2, + ACTIONS(5498), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5207), 10, + ACTIONS(5216), 10, anon_sym_GT2, anon_sym_LT2, anon_sym_err_GT, @@ -289135,7 +289135,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5205), 36, + ACTIONS(5214), 36, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -289177,7 +289177,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(2488), 1, sym_comment, - ACTIONS(5120), 13, + ACTIONS(5129), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -289191,7 +289191,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5118), 43, + ACTIONS(5127), 43, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -289240,16 +289240,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(2489), 1, sym_comment, - ACTIONS(5481), 2, + ACTIONS(5490), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5483), 2, + ACTIONS(5492), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5485), 2, + ACTIONS(5494), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5207), 11, + ACTIONS(5216), 11, anon_sym_GT2, anon_sym_LT2, anon_sym_PLUS2, @@ -289261,7 +289261,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5205), 39, + ACTIONS(5214), 39, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -289306,7 +289306,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(2490), 1, sym_comment, - ACTIONS(5120), 13, + ACTIONS(5129), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -289320,7 +289320,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5118), 43, + ACTIONS(5127), 43, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -289367,33 +289367,33 @@ static const uint16_t ts_small_parse_table[] = { [60706] = 12, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5479), 1, + ACTIONS(5488), 1, anon_sym_DASH2, - ACTIONS(5487), 1, + ACTIONS(5496), 1, anon_sym_PLUS2, STATE(2491), 1, sym_comment, - ACTIONS(5481), 2, + ACTIONS(5490), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5483), 2, + ACTIONS(5492), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5485), 2, + ACTIONS(5494), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5489), 2, + ACTIONS(5498), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5491), 2, + ACTIONS(5500), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(5493), 4, + ACTIONS(5502), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5207), 8, + ACTIONS(5216), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -289402,7 +289402,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5205), 32, + ACTIONS(5214), 32, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -289503,7 +289503,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(2493), 1, sym_comment, - ACTIONS(5120), 13, + ACTIONS(5129), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -289517,7 +289517,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5118), 43, + ACTIONS(5127), 43, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -289629,10 +289629,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(2495), 1, sym_comment, - ACTIONS(5483), 2, + ACTIONS(5492), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5207), 13, + ACTIONS(5216), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -289646,7 +289646,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5205), 41, + ACTIONS(5214), 41, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -289756,7 +289756,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(2497), 1, sym_comment, - ACTIONS(5120), 13, + ACTIONS(5129), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -289770,7 +289770,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5118), 43, + ACTIONS(5127), 43, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -289817,47 +289817,47 @@ static const uint16_t ts_small_parse_table[] = { [61193] = 17, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5479), 1, + ACTIONS(5488), 1, anon_sym_DASH2, - ACTIONS(5487), 1, + ACTIONS(5496), 1, anon_sym_PLUS2, - ACTIONS(5499), 1, + ACTIONS(5508), 1, anon_sym_bit_DASHand2, - ACTIONS(5501), 1, + ACTIONS(5510), 1, anon_sym_bit_DASHxor2, - ACTIONS(5503), 1, + ACTIONS(5512), 1, anon_sym_bit_DASHor2, STATE(2498), 1, sym_comment, - ACTIONS(5481), 2, + ACTIONS(5490), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5483), 2, + ACTIONS(5492), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5485), 2, + ACTIONS(5494), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5489), 2, + ACTIONS(5498), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5491), 2, + ACTIONS(5500), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(5497), 2, + ACTIONS(5506), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(5493), 4, + ACTIONS(5502), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5495), 4, + ACTIONS(5504), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5207), 8, + ACTIONS(5216), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -289866,7 +289866,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5205), 23, + ACTIONS(5214), 23, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -289895,7 +289895,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(2499), 1, sym_comment, - ACTIONS(5120), 13, + ACTIONS(5129), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -289909,7 +289909,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5118), 43, + ACTIONS(5127), 43, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -289956,49 +289956,49 @@ static const uint16_t ts_small_parse_table[] = { [61353] = 18, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5479), 1, + ACTIONS(5488), 1, anon_sym_DASH2, - ACTIONS(5487), 1, + ACTIONS(5496), 1, anon_sym_PLUS2, - ACTIONS(5499), 1, + ACTIONS(5508), 1, anon_sym_bit_DASHand2, - ACTIONS(5501), 1, + ACTIONS(5510), 1, anon_sym_bit_DASHxor2, - ACTIONS(5503), 1, + ACTIONS(5512), 1, anon_sym_bit_DASHor2, - ACTIONS(5505), 1, + ACTIONS(5514), 1, anon_sym_and2, STATE(2500), 1, sym_comment, - ACTIONS(5481), 2, + ACTIONS(5490), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5483), 2, + ACTIONS(5492), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5485), 2, + ACTIONS(5494), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5489), 2, + ACTIONS(5498), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5491), 2, + ACTIONS(5500), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(5497), 2, + ACTIONS(5506), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(5493), 4, + ACTIONS(5502), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5495), 4, + ACTIONS(5504), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5207), 8, + ACTIONS(5216), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -290007,7 +290007,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5205), 22, + ACTIONS(5214), 22, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -290096,7 +290096,7 @@ static const uint16_t ts_small_parse_table[] = { [61515] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5507), 1, + ACTIONS(5516), 1, anon_sym_QMARK2, STATE(2502), 1, sym_comment, @@ -290160,7 +290160,7 @@ static const uint16_t ts_small_parse_table[] = { [61584] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5509), 1, + ACTIONS(5518), 1, anon_sym_QMARK2, STATE(2503), 1, sym_comment, @@ -290289,7 +290289,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(2505), 1, sym_comment, - ACTIONS(5120), 13, + ACTIONS(5129), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -290303,7 +290303,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5118), 43, + ACTIONS(5127), 43, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -290350,51 +290350,51 @@ static const uint16_t ts_small_parse_table[] = { [61787] = 19, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5479), 1, + ACTIONS(5488), 1, anon_sym_DASH2, - ACTIONS(5487), 1, + ACTIONS(5496), 1, anon_sym_PLUS2, - ACTIONS(5499), 1, + ACTIONS(5508), 1, anon_sym_bit_DASHand2, - ACTIONS(5501), 1, + ACTIONS(5510), 1, anon_sym_bit_DASHxor2, - ACTIONS(5503), 1, + ACTIONS(5512), 1, anon_sym_bit_DASHor2, - ACTIONS(5505), 1, + ACTIONS(5514), 1, anon_sym_and2, - ACTIONS(5511), 1, + ACTIONS(5520), 1, anon_sym_xor2, STATE(2506), 1, sym_comment, - ACTIONS(5481), 2, + ACTIONS(5490), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5483), 2, + ACTIONS(5492), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5485), 2, + ACTIONS(5494), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5489), 2, + ACTIONS(5498), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5491), 2, + ACTIONS(5500), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(5497), 2, + ACTIONS(5506), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(5493), 4, + ACTIONS(5502), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5495), 4, + ACTIONS(5504), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5207), 8, + ACTIONS(5216), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -290403,7 +290403,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5205), 21, + ACTIONS(5214), 21, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -290430,7 +290430,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(2507), 1, sym_comment, - ACTIONS(5120), 13, + ACTIONS(5129), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -290444,7 +290444,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5118), 43, + ACTIONS(5127), 43, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -290491,38 +290491,38 @@ static const uint16_t ts_small_parse_table[] = { [61951] = 13, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5479), 1, + ACTIONS(5488), 1, anon_sym_DASH2, - ACTIONS(5487), 1, + ACTIONS(5496), 1, anon_sym_PLUS2, STATE(2508), 1, sym_comment, - ACTIONS(5481), 2, + ACTIONS(5490), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5483), 2, + ACTIONS(5492), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5485), 2, + ACTIONS(5494), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5489), 2, + ACTIONS(5498), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5491), 2, + ACTIONS(5500), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(5493), 4, + ACTIONS(5502), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5495), 4, + ACTIONS(5504), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5207), 8, + ACTIONS(5216), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -290531,7 +290531,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5205), 28, + ACTIONS(5214), 28, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -290565,7 +290565,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(2509), 1, sym_comment, - ACTIONS(5120), 13, + ACTIONS(5129), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -290579,7 +290579,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5118), 43, + ACTIONS(5127), 43, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -290628,7 +290628,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(2510), 1, sym_comment, - ACTIONS(5207), 13, + ACTIONS(5216), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -290642,7 +290642,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5205), 43, + ACTIONS(5214), 43, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -290691,7 +290691,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(2511), 1, sym_comment, - ACTIONS(5120), 13, + ACTIONS(5129), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -290705,7 +290705,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5118), 43, + ACTIONS(5127), 43, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -290752,22 +290752,22 @@ static const uint16_t ts_small_parse_table[] = { [62237] = 9, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5479), 1, + ACTIONS(5488), 1, anon_sym_DASH2, - ACTIONS(5487), 1, + ACTIONS(5496), 1, anon_sym_PLUS2, STATE(2512), 1, sym_comment, - ACTIONS(5481), 2, + ACTIONS(5490), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5483), 2, + ACTIONS(5492), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5485), 2, + ACTIONS(5494), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5207), 10, + ACTIONS(5216), 10, anon_sym_GT2, anon_sym_LT2, anon_sym_err_GT, @@ -290778,7 +290778,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5205), 38, + ACTIONS(5214), 38, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -290822,7 +290822,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(2513), 1, sym_comment, - ACTIONS(5120), 13, + ACTIONS(5129), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -290836,7 +290836,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5118), 43, + ACTIONS(5127), 43, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -290883,41 +290883,41 @@ static const uint16_t ts_small_parse_table[] = { [62381] = 14, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5479), 1, + ACTIONS(5488), 1, anon_sym_DASH2, - ACTIONS(5487), 1, + ACTIONS(5496), 1, anon_sym_PLUS2, STATE(2514), 1, sym_comment, - ACTIONS(5481), 2, + ACTIONS(5490), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5483), 2, + ACTIONS(5492), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5485), 2, + ACTIONS(5494), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5489), 2, + ACTIONS(5498), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5491), 2, + ACTIONS(5500), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(5497), 2, + ACTIONS(5506), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(5493), 4, + ACTIONS(5502), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5495), 4, + ACTIONS(5504), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5207), 8, + ACTIONS(5216), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -290926,7 +290926,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5205), 26, + ACTIONS(5214), 26, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -290958,7 +290958,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(2515), 1, sym_comment, - ACTIONS(5120), 13, + ACTIONS(5129), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -290972,7 +290972,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5118), 43, + ACTIONS(5127), 43, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -291019,43 +291019,43 @@ static const uint16_t ts_small_parse_table[] = { [62535] = 15, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5479), 1, + ACTIONS(5488), 1, anon_sym_DASH2, - ACTIONS(5487), 1, + ACTIONS(5496), 1, anon_sym_PLUS2, - ACTIONS(5499), 1, + ACTIONS(5508), 1, anon_sym_bit_DASHand2, STATE(2516), 1, sym_comment, - ACTIONS(5481), 2, + ACTIONS(5490), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5483), 2, + ACTIONS(5492), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5485), 2, + ACTIONS(5494), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5489), 2, + ACTIONS(5498), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5491), 2, + ACTIONS(5500), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(5497), 2, + ACTIONS(5506), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(5493), 4, + ACTIONS(5502), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5495), 4, + ACTIONS(5504), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5207), 8, + ACTIONS(5216), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -291064,7 +291064,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5205), 25, + ACTIONS(5214), 25, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -291095,7 +291095,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(2517), 1, sym_comment, - ACTIONS(5120), 13, + ACTIONS(5129), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -291109,7 +291109,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5118), 43, + ACTIONS(5127), 43, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -291156,45 +291156,45 @@ static const uint16_t ts_small_parse_table[] = { [62691] = 16, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5479), 1, + ACTIONS(5488), 1, anon_sym_DASH2, - ACTIONS(5487), 1, + ACTIONS(5496), 1, anon_sym_PLUS2, - ACTIONS(5499), 1, + ACTIONS(5508), 1, anon_sym_bit_DASHand2, - ACTIONS(5501), 1, + ACTIONS(5510), 1, anon_sym_bit_DASHxor2, STATE(2518), 1, sym_comment, - ACTIONS(5481), 2, + ACTIONS(5490), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5483), 2, + ACTIONS(5492), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5485), 2, + ACTIONS(5494), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5489), 2, + ACTIONS(5498), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5491), 2, + ACTIONS(5500), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(5497), 2, + ACTIONS(5506), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(5493), 4, + ACTIONS(5502), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5495), 4, + ACTIONS(5504), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5207), 8, + ACTIONS(5216), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -291203,7 +291203,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5205), 24, + ACTIONS(5214), 24, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -291233,7 +291233,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(2519), 1, sym_comment, - ACTIONS(5120), 13, + ACTIONS(5129), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -291247,7 +291247,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5118), 43, + ACTIONS(5127), 43, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -291483,19 +291483,19 @@ static const uint16_t ts_small_parse_table[] = { [63050] = 13, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3810), 1, + ACTIONS(3819), 1, anon_sym_DOLLAR, - ACTIONS(5437), 1, + ACTIONS(5446), 1, anon_sym_LPAREN2, - ACTIONS(5513), 1, + ACTIONS(5522), 1, anon_sym_DOT, - ACTIONS(5515), 1, + ACTIONS(5524), 1, aux_sym__immediate_decimal_token1, - ACTIONS(5517), 1, + ACTIONS(5526), 1, aux_sym__immediate_decimal_token3, - ACTIONS(5519), 1, + ACTIONS(5528), 1, aux_sym__immediate_decimal_token4, - ACTIONS(5521), 1, + ACTIONS(5530), 1, aux_sym__immediate_decimal_token5, STATE(2523), 1, sym_comment, @@ -292061,17 +292061,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(1555), 1, aux_sym__unquoted_in_list_token2, - ACTIONS(5523), 1, + ACTIONS(5532), 1, anon_sym_DOLLAR, - ACTIONS(5525), 1, + ACTIONS(5534), 1, anon_sym_LPAREN2, - ACTIONS(5527), 1, + ACTIONS(5536), 1, aux_sym__immediate_decimal_token1, - ACTIONS(5529), 1, + ACTIONS(5538), 1, aux_sym__immediate_decimal_token3, - ACTIONS(5531), 1, + ACTIONS(5540), 1, aux_sym__immediate_decimal_token4, - ACTIONS(5533), 1, + ACTIONS(5542), 1, aux_sym__immediate_decimal_token5, STATE(2532), 1, sym_comment, @@ -292131,7 +292131,7 @@ static const uint16_t ts_small_parse_table[] = { [63756] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5390), 1, + ACTIONS(5399), 1, aux_sym__immediate_decimal_token2, STATE(2533), 1, sym_comment, @@ -292258,7 +292258,7 @@ static const uint16_t ts_small_parse_table[] = { [63892] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5403), 1, + ACTIONS(5412), 1, anon_sym_DOT2, STATE(2477), 1, aux_sym_cell_path_repeat1, @@ -292513,13 +292513,13 @@ static const uint16_t ts_small_parse_table[] = { [64166] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5373), 1, + ACTIONS(5382), 1, anon_sym_DOLLAR, - ACTIONS(5375), 1, + ACTIONS(5384), 1, anon_sym_LPAREN2, - ACTIONS(5537), 1, + ACTIONS(5546), 1, aux_sym__immediate_decimal_token4, - ACTIONS(5539), 1, + ACTIONS(5548), 1, aux_sym__immediate_decimal_token5, STATE(2539), 1, sym_comment, @@ -292528,7 +292528,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1643), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(5535), 2, + ACTIONS(5544), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, STATE(3041), 2, @@ -292648,17 +292648,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(1631), 1, aux_sym__unquoted_in_list_token2, - ACTIONS(5523), 1, + ACTIONS(5532), 1, anon_sym_DOLLAR, - ACTIONS(5525), 1, + ACTIONS(5534), 1, anon_sym_LPAREN2, - ACTIONS(5527), 1, + ACTIONS(5536), 1, aux_sym__immediate_decimal_token1, - ACTIONS(5529), 1, + ACTIONS(5538), 1, aux_sym__immediate_decimal_token3, - ACTIONS(5531), 1, + ACTIONS(5540), 1, aux_sym__immediate_decimal_token4, - ACTIONS(5533), 1, + ACTIONS(5542), 1, aux_sym__immediate_decimal_token5, STATE(2541), 1, sym_comment, @@ -292909,7 +292909,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(2545), 1, sym_comment, - ACTIONS(5199), 13, + ACTIONS(5208), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -292923,7 +292923,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5197), 43, + ACTIONS(5206), 43, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -292972,13 +292972,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(2546), 1, sym_comment, - ACTIONS(5108), 5, + ACTIONS(5117), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(5112), 8, + ACTIONS(5121), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -292987,7 +292987,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5106), 20, + ACTIONS(5115), 20, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -293008,7 +293008,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - ACTIONS(5110), 23, + ACTIONS(5119), 23, anon_sym_DASH2, anon_sym_in2, anon_sym_and2, @@ -293098,13 +293098,13 @@ static const uint16_t ts_small_parse_table[] = { [64805] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5373), 1, + ACTIONS(5382), 1, anon_sym_DOLLAR, - ACTIONS(5375), 1, + ACTIONS(5384), 1, anon_sym_LPAREN2, - ACTIONS(5537), 1, + ACTIONS(5546), 1, aux_sym__immediate_decimal_token4, - ACTIONS(5539), 1, + ACTIONS(5548), 1, aux_sym__immediate_decimal_token5, STATE(2548), 1, sym_comment, @@ -293113,7 +293113,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1709), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(5535), 2, + ACTIONS(5544), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, STATE(3085), 2, @@ -293168,13 +293168,13 @@ static const uint16_t ts_small_parse_table[] = { [64886] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5373), 1, + ACTIONS(5382), 1, anon_sym_DOLLAR, - ACTIONS(5375), 1, + ACTIONS(5384), 1, anon_sym_LPAREN2, - ACTIONS(5537), 1, + ACTIONS(5546), 1, aux_sym__immediate_decimal_token4, - ACTIONS(5539), 1, + ACTIONS(5548), 1, aux_sym__immediate_decimal_token5, STATE(2549), 1, sym_comment, @@ -293183,7 +293183,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1713), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(5535), 2, + ACTIONS(5544), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, STATE(3089), 2, @@ -293301,13 +293301,13 @@ static const uint16_t ts_small_parse_table[] = { [65034] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5373), 1, + ACTIONS(5382), 1, anon_sym_DOLLAR, - ACTIONS(5375), 1, + ACTIONS(5384), 1, anon_sym_LPAREN2, - ACTIONS(5537), 1, + ACTIONS(5546), 1, aux_sym__immediate_decimal_token4, - ACTIONS(5539), 1, + ACTIONS(5548), 1, aux_sym__immediate_decimal_token5, STATE(2551), 1, sym_comment, @@ -293316,7 +293316,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1665), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(5535), 2, + ACTIONS(5544), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, STATE(3094), 2, @@ -293812,7 +293812,7 @@ static const uint16_t ts_small_parse_table[] = { [65584] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5541), 1, + ACTIONS(5550), 1, anon_sym_QMARK2, STATE(2559), 1, sym_comment, @@ -293937,9 +293937,9 @@ static const uint16_t ts_small_parse_table[] = { [65718] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5543), 1, + ACTIONS(5552), 1, aux_sym__immediate_decimal_token1, - ACTIONS(5545), 1, + ACTIONS(5554), 1, aux_sym__immediate_decimal_token2, STATE(2561), 1, sym_comment, @@ -294001,7 +294001,7 @@ static const uint16_t ts_small_parse_table[] = { [65788] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5547), 1, + ACTIONS(5556), 1, anon_sym_DOT2, STATE(2562), 1, sym_comment, @@ -294129,7 +294129,7 @@ static const uint16_t ts_small_parse_table[] = { [65928] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5549), 1, + ACTIONS(5558), 1, anon_sym_QMARK2, STATE(2564), 1, sym_comment, @@ -294254,9 +294254,9 @@ static const uint16_t ts_small_parse_table[] = { [66062] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5551), 1, + ACTIONS(5560), 1, anon_sym_DOT, - ACTIONS(5553), 1, + ACTIONS(5562), 1, aux_sym__immediate_decimal_token2, STATE(2566), 1, sym_comment, @@ -294322,11 +294322,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1299), 1, sym_raw_string_begin, - ACTIONS(3424), 1, + ACTIONS(3433), 1, anon_sym_COLON2, - ACTIONS(4962), 1, + ACTIONS(4971), 1, aux_sym__val_number_decimal_token3, - ACTIONS(4964), 1, + ACTIONS(4973), 1, aux_sym__val_number_decimal_token4, STATE(2567), 1, sym_comment, @@ -294341,20 +294341,20 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1297), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4960), 2, + ACTIONS(4969), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, STATE(3916), 2, sym__raw_str, sym__str_double_quotes, - ACTIONS(4950), 6, + ACTIONS(4959), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(4952), 34, + ACTIONS(4961), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -294392,17 +294392,17 @@ static const uint16_t ts_small_parse_table[] = { [66222] = 12, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5523), 1, + ACTIONS(5532), 1, anon_sym_DOLLAR, - ACTIONS(5525), 1, + ACTIONS(5534), 1, anon_sym_LPAREN2, - ACTIONS(5555), 1, + ACTIONS(5564), 1, aux_sym__immediate_decimal_token1, - ACTIONS(5557), 1, + ACTIONS(5566), 1, aux_sym__immediate_decimal_token3, - ACTIONS(5559), 1, + ACTIONS(5568), 1, aux_sym__immediate_decimal_token4, - ACTIONS(5561), 1, + ACTIONS(5570), 1, aux_sym__immediate_decimal_token5, STATE(2568), 1, sym_comment, @@ -294524,15 +294524,15 @@ static const uint16_t ts_small_parse_table[] = { [66370] = 16, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3424), 1, + ACTIONS(3433), 1, anon_sym_COLON2, - ACTIONS(4962), 1, + ACTIONS(4971), 1, aux_sym__val_number_decimal_token3, - ACTIONS(4964), 1, + ACTIONS(4973), 1, aux_sym__val_number_decimal_token4, - ACTIONS(5567), 1, + ACTIONS(5576), 1, anon_sym_DQUOTE, - ACTIONS(5571), 1, + ACTIONS(5580), 1, sym_raw_string_begin, STATE(1693), 1, sym__command_name, @@ -294544,23 +294544,23 @@ static const uint16_t ts_small_parse_table[] = { sym_cmd_identifier, STATE(3640), 1, sym__val_number_decimal, - ACTIONS(4960), 2, + ACTIONS(4969), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(5569), 2, + ACTIONS(5578), 2, sym__str_single_quotes, sym__str_back_ticks, STATE(2601), 2, sym__raw_str, sym__str_double_quotes, - ACTIONS(5563), 6, + ACTIONS(5572), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(5565), 34, + ACTIONS(5574), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -294664,11 +294664,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1299), 1, sym_raw_string_begin, - ACTIONS(3424), 1, + ACTIONS(3433), 1, anon_sym_COLON2, - ACTIONS(4962), 1, + ACTIONS(4971), 1, aux_sym__val_number_decimal_token3, - ACTIONS(4964), 1, + ACTIONS(4973), 1, aux_sym__val_number_decimal_token4, STATE(2572), 1, sym_comment, @@ -294683,20 +294683,20 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1297), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4960), 2, + ACTIONS(4969), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, STATE(3916), 2, sym__raw_str, sym__str_double_quotes, - ACTIONS(4950), 6, + ACTIONS(4959), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(4952), 34, + ACTIONS(4961), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -294796,17 +294796,17 @@ static const uint16_t ts_small_parse_table[] = { [66682] = 9, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4596), 1, + ACTIONS(4605), 1, anon_sym_DOT_DOT2, - ACTIONS(5573), 1, + ACTIONS(5582), 1, sym_filesize_unit, - ACTIONS(5575), 1, + ACTIONS(5584), 1, sym_duration_unit, - ACTIONS(5577), 1, + ACTIONS(5586), 1, aux_sym_unquoted_token2, STATE(2574), 1, sym_comment, - ACTIONS(4598), 2, + ACTIONS(4607), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, ACTIONS(1681), 6, @@ -295049,17 +295049,17 @@ static const uint16_t ts_small_parse_table[] = { [66956] = 12, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5523), 1, + ACTIONS(5532), 1, anon_sym_DOLLAR, - ACTIONS(5525), 1, + ACTIONS(5534), 1, anon_sym_LPAREN2, - ACTIONS(5555), 1, + ACTIONS(5564), 1, aux_sym__immediate_decimal_token1, - ACTIONS(5557), 1, + ACTIONS(5566), 1, aux_sym__immediate_decimal_token3, - ACTIONS(5559), 1, + ACTIONS(5568), 1, aux_sym__immediate_decimal_token4, - ACTIONS(5561), 1, + ACTIONS(5570), 1, aux_sym__immediate_decimal_token5, STATE(2578), 1, sym_comment, @@ -295119,13 +295119,13 @@ static const uint16_t ts_small_parse_table[] = { [67038] = 16, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3118), 1, + ACTIONS(3125), 1, anon_sym_DQUOTE, - ACTIONS(3124), 1, + ACTIONS(3131), 1, sym_raw_string_begin, - ACTIONS(4962), 1, + ACTIONS(4971), 1, aux_sym__val_number_decimal_token3, - ACTIONS(4964), 1, + ACTIONS(4973), 1, aux_sym__val_number_decimal_token4, STATE(2579), 1, sym_comment, @@ -295139,23 +295139,23 @@ static const uint16_t ts_small_parse_table[] = { sym_val_string, STATE(7050), 1, sym__command_name, - ACTIONS(3120), 2, + ACTIONS(3127), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4960), 2, + ACTIONS(4969), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, STATE(5129), 2, sym__raw_str, sym__str_double_quotes, - ACTIONS(5235), 6, + ACTIONS(5244), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(5237), 34, + ACTIONS(5246), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -295193,13 +295193,13 @@ static const uint16_t ts_small_parse_table[] = { [67128] = 16, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3118), 1, + ACTIONS(3125), 1, anon_sym_DQUOTE, - ACTIONS(3124), 1, + ACTIONS(3131), 1, sym_raw_string_begin, - ACTIONS(4962), 1, + ACTIONS(4971), 1, aux_sym__val_number_decimal_token3, - ACTIONS(4964), 1, + ACTIONS(4973), 1, aux_sym__val_number_decimal_token4, STATE(2580), 1, sym_comment, @@ -295213,23 +295213,23 @@ static const uint16_t ts_small_parse_table[] = { sym_cmd_identifier, STATE(6932), 1, sym_val_string, - ACTIONS(3120), 2, + ACTIONS(3127), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4960), 2, + ACTIONS(4969), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, STATE(5129), 2, sym__raw_str, sym__str_double_quotes, - ACTIONS(5235), 6, + ACTIONS(5244), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(5237), 34, + ACTIONS(5246), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -295267,9 +295267,9 @@ static const uint16_t ts_small_parse_table[] = { [67218] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5579), 1, + ACTIONS(5588), 1, aux_sym__immediate_decimal_token1, - ACTIONS(5581), 1, + ACTIONS(5590), 1, aux_sym__immediate_decimal_token2, STATE(2581), 1, sym_comment, @@ -295331,17 +295331,17 @@ static const uint16_t ts_small_parse_table[] = { [67288] = 12, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5523), 1, + ACTIONS(5532), 1, anon_sym_DOLLAR, - ACTIONS(5525), 1, + ACTIONS(5534), 1, anon_sym_LPAREN2, - ACTIONS(5555), 1, + ACTIONS(5564), 1, aux_sym__immediate_decimal_token1, - ACTIONS(5557), 1, + ACTIONS(5566), 1, aux_sym__immediate_decimal_token3, - ACTIONS(5559), 1, + ACTIONS(5568), 1, aux_sym__immediate_decimal_token4, - ACTIONS(5561), 1, + ACTIONS(5570), 1, aux_sym__immediate_decimal_token5, STATE(2582), 1, sym_comment, @@ -295463,13 +295463,13 @@ static const uint16_t ts_small_parse_table[] = { [67436] = 15, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5592), 1, + ACTIONS(5601), 1, aux_sym__val_number_decimal_token3, - ACTIONS(5595), 1, + ACTIONS(5604), 1, aux_sym__val_number_decimal_token4, - ACTIONS(5598), 1, + ACTIONS(5607), 1, anon_sym_DQUOTE, - ACTIONS(5604), 1, + ACTIONS(5613), 1, sym_raw_string_begin, STATE(3645), 1, sym__val_number_decimal, @@ -295479,10 +295479,10 @@ static const uint16_t ts_small_parse_table[] = { sym_val_string, STATE(7349), 1, sym__command_name, - ACTIONS(5589), 2, + ACTIONS(5598), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(5601), 2, + ACTIONS(5610), 2, sym__str_single_quotes, sym__str_back_ticks, STATE(2584), 2, @@ -295491,14 +295491,14 @@ static const uint16_t ts_small_parse_table[] = { STATE(5129), 2, sym__raw_str, sym__str_double_quotes, - ACTIONS(5583), 6, + ACTIONS(5592), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(5586), 34, + ACTIONS(5595), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -295598,9 +295598,9 @@ static const uint16_t ts_small_parse_table[] = { [67590] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5607), 1, + ACTIONS(5616), 1, anon_sym_DOT, - ACTIONS(5609), 1, + ACTIONS(5618), 1, aux_sym__immediate_decimal_token2, STATE(2586), 1, sym_comment, @@ -295666,11 +295666,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1299), 1, sym_raw_string_begin, - ACTIONS(3422), 1, + ACTIONS(3431), 1, anon_sym_COLON2, - ACTIONS(4962), 1, + ACTIONS(4971), 1, aux_sym__val_number_decimal_token3, - ACTIONS(4964), 1, + ACTIONS(4973), 1, aux_sym__val_number_decimal_token4, STATE(2587), 1, sym_comment, @@ -295685,20 +295685,20 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1297), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4960), 2, + ACTIONS(4969), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, STATE(3916), 2, sym__raw_str, sym__str_double_quotes, - ACTIONS(4950), 6, + ACTIONS(4959), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(4952), 34, + ACTIONS(4961), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -295740,11 +295740,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1299), 1, sym_raw_string_begin, - ACTIONS(3422), 1, + ACTIONS(3431), 1, anon_sym_COLON2, - ACTIONS(4962), 1, + ACTIONS(4971), 1, aux_sym__val_number_decimal_token3, - ACTIONS(4964), 1, + ACTIONS(4973), 1, aux_sym__val_number_decimal_token4, STATE(2588), 1, sym_comment, @@ -295759,20 +295759,20 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1297), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4960), 2, + ACTIONS(4969), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, STATE(3916), 2, sym__raw_str, sym__str_double_quotes, - ACTIONS(4950), 6, + ACTIONS(4959), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(4952), 34, + ACTIONS(4961), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -295814,11 +295814,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1299), 1, sym_raw_string_begin, - ACTIONS(3422), 1, + ACTIONS(3431), 1, anon_sym_COLON2, - ACTIONS(4962), 1, + ACTIONS(4971), 1, aux_sym__val_number_decimal_token3, - ACTIONS(4964), 1, + ACTIONS(4973), 1, aux_sym__val_number_decimal_token4, STATE(2589), 1, sym_comment, @@ -295833,20 +295833,20 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1297), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4960), 2, + ACTIONS(4969), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, STATE(3916), 2, sym__raw_str, sym__str_double_quotes, - ACTIONS(4950), 6, + ACTIONS(4959), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(4952), 34, + ACTIONS(4961), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -295884,7 +295884,7 @@ static const uint16_t ts_small_parse_table[] = { [67930] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5547), 1, + ACTIONS(5556), 1, anon_sym_DOT2, STATE(2590), 1, sym_comment, @@ -295950,15 +295950,15 @@ static const uint16_t ts_small_parse_table[] = { [68004] = 16, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3422), 1, + ACTIONS(3431), 1, anon_sym_COLON2, - ACTIONS(4962), 1, + ACTIONS(4971), 1, aux_sym__val_number_decimal_token3, - ACTIONS(4964), 1, + ACTIONS(4973), 1, aux_sym__val_number_decimal_token4, - ACTIONS(5567), 1, + ACTIONS(5576), 1, anon_sym_DQUOTE, - ACTIONS(5571), 1, + ACTIONS(5580), 1, sym_raw_string_begin, STATE(1693), 1, sym__command_name, @@ -295970,23 +295970,23 @@ static const uint16_t ts_small_parse_table[] = { sym_cmd_identifier, STATE(3640), 1, sym__val_number_decimal, - ACTIONS(4960), 2, + ACTIONS(4969), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(5569), 2, + ACTIONS(5578), 2, sym__str_single_quotes, sym__str_back_ticks, STATE(2601), 2, sym__raw_str, sym__str_double_quotes, - ACTIONS(5563), 6, + ACTIONS(5572), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(5565), 34, + ACTIONS(5574), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -296024,7 +296024,7 @@ static const uint16_t ts_small_parse_table[] = { [68094] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5547), 1, + ACTIONS(5556), 1, anon_sym_DOT2, STATE(2592), 1, sym_comment, @@ -296214,13 +296214,13 @@ static const uint16_t ts_small_parse_table[] = { [68300] = 16, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3118), 1, + ACTIONS(3125), 1, anon_sym_DQUOTE, - ACTIONS(3124), 1, + ACTIONS(3131), 1, sym_raw_string_begin, - ACTIONS(4962), 1, + ACTIONS(4971), 1, aux_sym__val_number_decimal_token3, - ACTIONS(4964), 1, + ACTIONS(4973), 1, aux_sym__val_number_decimal_token4, STATE(2584), 1, aux_sym_command_list_repeat1, @@ -296234,23 +296234,23 @@ static const uint16_t ts_small_parse_table[] = { sym_cmd_identifier, STATE(6932), 1, sym_val_string, - ACTIONS(3120), 2, + ACTIONS(3127), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4960), 2, + ACTIONS(4969), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, STATE(5129), 2, sym__raw_str, sym__str_double_quotes, - ACTIONS(5235), 6, + ACTIONS(5244), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(5237), 34, + ACTIONS(5246), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -296288,13 +296288,13 @@ static const uint16_t ts_small_parse_table[] = { [68390] = 16, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3118), 1, + ACTIONS(3125), 1, anon_sym_DQUOTE, - ACTIONS(3124), 1, + ACTIONS(3131), 1, sym_raw_string_begin, - ACTIONS(4962), 1, + ACTIONS(4971), 1, aux_sym__val_number_decimal_token3, - ACTIONS(4964), 1, + ACTIONS(4973), 1, aux_sym__val_number_decimal_token4, STATE(2584), 1, aux_sym_command_list_repeat1, @@ -296308,23 +296308,23 @@ static const uint16_t ts_small_parse_table[] = { sym_val_string, STATE(6983), 1, sym__command_name, - ACTIONS(3120), 2, + ACTIONS(3127), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4960), 2, + ACTIONS(4969), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, STATE(5129), 2, sym__raw_str, sym__str_double_quotes, - ACTIONS(5235), 6, + ACTIONS(5244), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(5237), 34, + ACTIONS(5246), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -296366,11 +296366,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1299), 1, sym_raw_string_begin, - ACTIONS(3424), 1, + ACTIONS(3433), 1, anon_sym_COLON2, - ACTIONS(4962), 1, + ACTIONS(4971), 1, aux_sym__val_number_decimal_token3, - ACTIONS(4964), 1, + ACTIONS(4973), 1, aux_sym__val_number_decimal_token4, STATE(2597), 1, sym_comment, @@ -296385,20 +296385,20 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1297), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4960), 2, + ACTIONS(4969), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, STATE(3916), 2, sym__raw_str, sym__str_double_quotes, - ACTIONS(4950), 6, + ACTIONS(4959), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(4952), 34, + ACTIONS(4961), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -296560,17 +296560,17 @@ static const uint16_t ts_small_parse_table[] = { [68702] = 12, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5523), 1, + ACTIONS(5532), 1, anon_sym_DOLLAR, - ACTIONS(5525), 1, + ACTIONS(5534), 1, anon_sym_LPAREN2, - ACTIONS(5555), 1, + ACTIONS(5564), 1, aux_sym__immediate_decimal_token1, - ACTIONS(5557), 1, + ACTIONS(5566), 1, aux_sym__immediate_decimal_token3, - ACTIONS(5559), 1, + ACTIONS(5568), 1, aux_sym__immediate_decimal_token4, - ACTIONS(5561), 1, + ACTIONS(5570), 1, aux_sym__immediate_decimal_token5, STATE(2600), 1, sym_comment, @@ -296691,7 +296691,7 @@ static const uint16_t ts_small_parse_table[] = { [68849] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5611), 1, + ACTIONS(5620), 1, anon_sym_DOT2, STATE(2787), 1, sym_path, @@ -296819,9 +296819,9 @@ static const uint16_t ts_small_parse_table[] = { sym_raw_string_begin, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4962), 1, + ACTIONS(4971), 1, aux_sym__val_number_decimal_token3, - ACTIONS(4964), 1, + ACTIONS(4973), 1, aux_sym__val_number_decimal_token4, STATE(2604), 1, sym_comment, @@ -296836,20 +296836,20 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(111), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4960), 2, + ACTIONS(4969), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, STATE(1720), 2, sym__raw_str, sym__str_double_quotes, - ACTIONS(5004), 6, + ACTIONS(5013), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(5006), 34, + ACTIONS(5015), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -296887,7 +296887,7 @@ static const uint16_t ts_small_parse_table[] = { [69070] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5614), 1, + ACTIONS(5623), 1, anon_sym_DOT2, STATE(2605), 1, sym_comment, @@ -296956,9 +296956,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1299), 1, sym_raw_string_begin, - ACTIONS(4962), 1, + ACTIONS(4971), 1, aux_sym__val_number_decimal_token3, - ACTIONS(4964), 1, + ACTIONS(4973), 1, aux_sym__val_number_decimal_token4, STATE(2606), 1, sym_comment, @@ -296973,20 +296973,20 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1297), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4960), 2, + ACTIONS(4969), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, STATE(3916), 2, sym__raw_str, sym__str_double_quotes, - ACTIONS(4950), 6, + ACTIONS(4959), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(4952), 34, + ACTIONS(4961), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -297024,7 +297024,7 @@ static const uint16_t ts_small_parse_table[] = { [69230] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5614), 1, + ACTIONS(5623), 1, anon_sym_DOT2, STATE(2607), 1, sym_comment, @@ -297152,14 +297152,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(2609), 1, sym_comment, - ACTIONS(5616), 6, + ACTIONS(5625), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(5618), 48, + ACTIONS(5627), 48, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -297215,9 +297215,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1299), 1, sym_raw_string_begin, - ACTIONS(4962), 1, + ACTIONS(4971), 1, aux_sym__val_number_decimal_token3, - ACTIONS(4964), 1, + ACTIONS(4973), 1, aux_sym__val_number_decimal_token4, STATE(2610), 1, sym_comment, @@ -297232,20 +297232,20 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1297), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4960), 2, + ACTIONS(4969), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, STATE(3916), 2, sym__raw_str, sym__str_double_quotes, - ACTIONS(4950), 6, + ACTIONS(4959), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(4952), 34, + ACTIONS(4961), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -297285,14 +297285,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(2611), 1, sym_comment, - ACTIONS(4932), 6, + ACTIONS(4941), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(4930), 48, + ACTIONS(4939), 48, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -297348,9 +297348,9 @@ static const uint16_t ts_small_parse_table[] = { sym_raw_string_begin, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4962), 1, + ACTIONS(4971), 1, aux_sym__val_number_decimal_token3, - ACTIONS(4964), 1, + ACTIONS(4973), 1, aux_sym__val_number_decimal_token4, STATE(2612), 1, sym_comment, @@ -297365,20 +297365,20 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(111), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4960), 2, + ACTIONS(4969), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, STATE(1720), 2, sym__raw_str, sym__str_double_quotes, - ACTIONS(5004), 6, + ACTIONS(5013), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(5006), 34, + ACTIONS(5015), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -297416,7 +297416,7 @@ static const uint16_t ts_small_parse_table[] = { [69672] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5620), 1, + ACTIONS(5629), 1, aux_sym__immediate_decimal_token2, STATE(2613), 1, sym_comment, @@ -297482,9 +297482,9 @@ static const uint16_t ts_small_parse_table[] = { sym_raw_string_begin, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4962), 1, + ACTIONS(4971), 1, aux_sym__val_number_decimal_token3, - ACTIONS(4964), 1, + ACTIONS(4973), 1, aux_sym__val_number_decimal_token4, STATE(2614), 1, sym_comment, @@ -297499,20 +297499,20 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(111), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4960), 2, + ACTIONS(4969), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, STATE(1720), 2, sym__raw_str, sym__str_double_quotes, - ACTIONS(5004), 6, + ACTIONS(5013), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(5006), 34, + ACTIONS(5015), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -297615,9 +297615,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1299), 1, sym_raw_string_begin, - ACTIONS(4962), 1, + ACTIONS(4971), 1, aux_sym__val_number_decimal_token3, - ACTIONS(4964), 1, + ACTIONS(4973), 1, aux_sym__val_number_decimal_token4, STATE(2616), 1, sym_comment, @@ -297632,20 +297632,20 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1297), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4960), 2, + ACTIONS(4969), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, STATE(3916), 2, sym__raw_str, sym__str_double_quotes, - ACTIONS(4950), 6, + ACTIONS(4959), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(4952), 34, + ACTIONS(4961), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -297687,9 +297687,9 @@ static const uint16_t ts_small_parse_table[] = { sym_raw_string_begin, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4962), 1, + ACTIONS(4971), 1, aux_sym__val_number_decimal_token3, - ACTIONS(4964), 1, + ACTIONS(4973), 1, aux_sym__val_number_decimal_token4, STATE(2617), 1, sym_comment, @@ -297704,20 +297704,20 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(111), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4960), 2, + ACTIONS(4969), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, STATE(1720), 2, sym__raw_str, sym__str_double_quotes, - ACTIONS(5004), 6, + ACTIONS(5013), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(5006), 34, + ACTIONS(5015), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -297759,9 +297759,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1299), 1, sym_raw_string_begin, - ACTIONS(4962), 1, + ACTIONS(4971), 1, aux_sym__val_number_decimal_token3, - ACTIONS(4964), 1, + ACTIONS(4973), 1, aux_sym__val_number_decimal_token4, STATE(2618), 1, sym_comment, @@ -297776,20 +297776,20 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1297), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4960), 2, + ACTIONS(4969), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, STATE(3916), 2, sym__raw_str, sym__str_double_quotes, - ACTIONS(4950), 6, + ACTIONS(4959), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(4952), 34, + ACTIONS(4961), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -297827,13 +297827,13 @@ static const uint16_t ts_small_parse_table[] = { [70152] = 15, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4962), 1, + ACTIONS(4971), 1, aux_sym__val_number_decimal_token3, - ACTIONS(4964), 1, + ACTIONS(4973), 1, aux_sym__val_number_decimal_token4, - ACTIONS(5626), 1, + ACTIONS(5635), 1, anon_sym_DQUOTE, - ACTIONS(5630), 1, + ACTIONS(5639), 1, sym_raw_string_begin, STATE(1801), 1, sym__command_name, @@ -297845,23 +297845,23 @@ static const uint16_t ts_small_parse_table[] = { sym_val_string, STATE(3668), 1, sym__val_number_decimal, - ACTIONS(4960), 2, + ACTIONS(4969), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(5628), 2, + ACTIONS(5637), 2, sym__str_single_quotes, sym__str_back_ticks, STATE(2723), 2, sym__raw_str, sym__str_double_quotes, - ACTIONS(5622), 6, + ACTIONS(5631), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(5624), 34, + ACTIONS(5633), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -297960,7 +297960,7 @@ static const uint16_t ts_small_parse_table[] = { [70304] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5614), 1, + ACTIONS(5623), 1, anon_sym_DOT2, STATE(2621), 1, sym_comment, @@ -298029,9 +298029,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1299), 1, sym_raw_string_begin, - ACTIONS(4962), 1, + ACTIONS(4971), 1, aux_sym__val_number_decimal_token3, - ACTIONS(4964), 1, + ACTIONS(4973), 1, aux_sym__val_number_decimal_token4, STATE(2622), 1, sym_comment, @@ -298046,20 +298046,20 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1297), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4960), 2, + ACTIONS(4969), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, STATE(3916), 2, sym__raw_str, sym__str_double_quotes, - ACTIONS(4950), 6, + ACTIONS(4959), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(4952), 34, + ACTIONS(4961), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -298221,14 +298221,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(2625), 1, sym_comment, - ACTIONS(4989), 6, + ACTIONS(4998), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(4987), 48, + ACTIONS(4996), 48, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -298282,14 +298282,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(2626), 1, sym_comment, - ACTIONS(5632), 6, + ACTIONS(5641), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(5634), 48, + ACTIONS(5643), 48, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -298343,14 +298343,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(2627), 1, sym_comment, - ACTIONS(5636), 6, + ACTIONS(5645), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(5638), 48, + ACTIONS(5647), 48, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -298467,9 +298467,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1299), 1, sym_raw_string_begin, - ACTIONS(4962), 1, + ACTIONS(4971), 1, aux_sym__val_number_decimal_token3, - ACTIONS(4964), 1, + ACTIONS(4973), 1, aux_sym__val_number_decimal_token4, STATE(2629), 1, sym_comment, @@ -298484,20 +298484,20 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1297), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4960), 2, + ACTIONS(4969), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, STATE(3916), 2, sym__raw_str, sym__str_double_quotes, - ACTIONS(4950), 6, + ACTIONS(4959), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(4952), 34, + ACTIONS(4961), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -298535,13 +298535,13 @@ static const uint16_t ts_small_parse_table[] = { [70941] = 15, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4962), 1, + ACTIONS(4971), 1, aux_sym__val_number_decimal_token3, - ACTIONS(4964), 1, + ACTIONS(4973), 1, aux_sym__val_number_decimal_token4, - ACTIONS(5567), 1, + ACTIONS(5576), 1, anon_sym_DQUOTE, - ACTIONS(5571), 1, + ACTIONS(5580), 1, sym_raw_string_begin, STATE(1693), 1, sym__command_name, @@ -298553,23 +298553,23 @@ static const uint16_t ts_small_parse_table[] = { sym_cmd_identifier, STATE(3640), 1, sym__val_number_decimal, - ACTIONS(4960), 2, + ACTIONS(4969), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(5569), 2, + ACTIONS(5578), 2, sym__str_single_quotes, sym__str_back_ticks, STATE(2601), 2, sym__raw_str, sym__str_double_quotes, - ACTIONS(5563), 6, + ACTIONS(5572), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(5565), 34, + ACTIONS(5574), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -298611,9 +298611,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1299), 1, sym_raw_string_begin, - ACTIONS(4962), 1, + ACTIONS(4971), 1, aux_sym__val_number_decimal_token3, - ACTIONS(4964), 1, + ACTIONS(4973), 1, aux_sym__val_number_decimal_token4, STATE(2631), 1, sym_comment, @@ -298628,20 +298628,20 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1297), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4960), 2, + ACTIONS(4969), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, STATE(3916), 2, sym__raw_str, sym__str_double_quotes, - ACTIONS(4950), 6, + ACTIONS(4959), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(4952), 34, + ACTIONS(4961), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -298683,9 +298683,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1299), 1, sym_raw_string_begin, - ACTIONS(4962), 1, + ACTIONS(4971), 1, aux_sym__val_number_decimal_token3, - ACTIONS(4964), 1, + ACTIONS(4973), 1, aux_sym__val_number_decimal_token4, STATE(2632), 1, sym_comment, @@ -298700,20 +298700,20 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1297), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4960), 2, + ACTIONS(4969), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, STATE(3916), 2, sym__raw_str, sym__str_double_quotes, - ACTIONS(4950), 6, + ACTIONS(4959), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(4952), 34, + ACTIONS(4961), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -298751,7 +298751,7 @@ static const uint16_t ts_small_parse_table[] = { [71202] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5547), 1, + ACTIONS(5556), 1, anon_sym_DOT2, STATE(2602), 1, aux_sym_cell_path_repeat1, @@ -298819,9 +298819,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1299), 1, sym_raw_string_begin, - ACTIONS(4962), 1, + ACTIONS(4971), 1, aux_sym__val_number_decimal_token3, - ACTIONS(4964), 1, + ACTIONS(4973), 1, aux_sym__val_number_decimal_token4, STATE(2634), 1, sym_comment, @@ -298836,20 +298836,20 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1297), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4960), 2, + ACTIONS(4969), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, STATE(3916), 2, sym__raw_str, sym__str_double_quotes, - ACTIONS(4950), 6, + ACTIONS(4959), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(4952), 34, + ACTIONS(4961), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -298891,9 +298891,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1299), 1, sym_raw_string_begin, - ACTIONS(4962), 1, + ACTIONS(4971), 1, aux_sym__val_number_decimal_token3, - ACTIONS(4964), 1, + ACTIONS(4973), 1, aux_sym__val_number_decimal_token4, STATE(2635), 1, sym_comment, @@ -298908,20 +298908,20 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1297), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4960), 2, + ACTIONS(4969), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, STATE(3916), 2, sym__raw_str, sym__str_double_quotes, - ACTIONS(4950), 6, + ACTIONS(4959), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(4952), 34, + ACTIONS(4961), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -298963,9 +298963,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1299), 1, sym_raw_string_begin, - ACTIONS(4962), 1, + ACTIONS(4971), 1, aux_sym__val_number_decimal_token3, - ACTIONS(4964), 1, + ACTIONS(4973), 1, aux_sym__val_number_decimal_token4, STATE(2636), 1, sym_comment, @@ -298980,20 +298980,20 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1297), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4960), 2, + ACTIONS(4969), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, STATE(3916), 2, sym__raw_str, sym__str_double_quotes, - ACTIONS(4950), 6, + ACTIONS(4959), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(4952), 34, + ACTIONS(4961), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -299031,7 +299031,7 @@ static const uint16_t ts_small_parse_table[] = { [71534] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5553), 1, + ACTIONS(5562), 1, aux_sym__immediate_decimal_token2, STATE(2637), 1, sym_comment, @@ -299097,9 +299097,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1299), 1, sym_raw_string_begin, - ACTIONS(4962), 1, + ACTIONS(4971), 1, aux_sym__val_number_decimal_token3, - ACTIONS(4964), 1, + ACTIONS(4973), 1, aux_sym__val_number_decimal_token4, STATE(2638), 1, sym_comment, @@ -299114,20 +299114,20 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1297), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4960), 2, + ACTIONS(4969), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, STATE(3916), 2, sym__raw_str, sym__str_double_quotes, - ACTIONS(4950), 6, + ACTIONS(4959), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(4952), 34, + ACTIONS(4961), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -299169,9 +299169,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1299), 1, sym_raw_string_begin, - ACTIONS(4962), 1, + ACTIONS(4971), 1, aux_sym__val_number_decimal_token3, - ACTIONS(4964), 1, + ACTIONS(4973), 1, aux_sym__val_number_decimal_token4, STATE(2639), 1, sym_comment, @@ -299186,20 +299186,20 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1297), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4960), 2, + ACTIONS(4969), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, STATE(3916), 2, sym__raw_str, sym__str_double_quotes, - ACTIONS(4950), 6, + ACTIONS(4959), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(4952), 34, + ACTIONS(4961), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -299302,9 +299302,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1299), 1, sym_raw_string_begin, - ACTIONS(4962), 1, + ACTIONS(4971), 1, aux_sym__val_number_decimal_token3, - ACTIONS(4964), 1, + ACTIONS(4973), 1, aux_sym__val_number_decimal_token4, STATE(2641), 1, sym_comment, @@ -299319,20 +299319,20 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1297), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4960), 2, + ACTIONS(4969), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, STATE(3916), 2, sym__raw_str, sym__str_double_quotes, - ACTIONS(4950), 6, + ACTIONS(4959), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(4952), 34, + ACTIONS(4961), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -299374,9 +299374,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1299), 1, sym_raw_string_begin, - ACTIONS(4962), 1, + ACTIONS(4971), 1, aux_sym__val_number_decimal_token3, - ACTIONS(4964), 1, + ACTIONS(4973), 1, aux_sym__val_number_decimal_token4, STATE(2642), 1, sym_comment, @@ -299391,20 +299391,20 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1297), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4960), 2, + ACTIONS(4969), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, STATE(3916), 2, sym__raw_str, sym__str_double_quotes, - ACTIONS(4950), 6, + ACTIONS(4959), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(4952), 34, + ACTIONS(4961), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -299446,9 +299446,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1299), 1, sym_raw_string_begin, - ACTIONS(4962), 1, + ACTIONS(4971), 1, aux_sym__val_number_decimal_token3, - ACTIONS(4964), 1, + ACTIONS(4973), 1, aux_sym__val_number_decimal_token4, STATE(2643), 1, sym_comment, @@ -299463,20 +299463,20 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1297), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4960), 2, + ACTIONS(4969), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, STATE(3916), 2, sym__raw_str, sym__str_double_quotes, - ACTIONS(4950), 6, + ACTIONS(4959), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(4952), 34, + ACTIONS(4961), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -299516,14 +299516,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(2644), 1, sym_comment, - ACTIONS(5640), 6, + ACTIONS(5649), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(5642), 48, + ACTIONS(5651), 48, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -299579,9 +299579,9 @@ static const uint16_t ts_small_parse_table[] = { sym_raw_string_begin, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4962), 1, + ACTIONS(4971), 1, aux_sym__val_number_decimal_token3, - ACTIONS(4964), 1, + ACTIONS(4973), 1, aux_sym__val_number_decimal_token4, STATE(2645), 1, sym_comment, @@ -299596,20 +299596,20 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(111), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4960), 2, + ACTIONS(4969), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, STATE(1720), 2, sym__raw_str, sym__str_double_quotes, - ACTIONS(5004), 6, + ACTIONS(5013), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(5006), 34, + ACTIONS(5015), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -299769,13 +299769,13 @@ static const uint16_t ts_small_parse_table[] = { [72383] = 15, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3118), 1, + ACTIONS(3125), 1, anon_sym_DQUOTE, - ACTIONS(3124), 1, + ACTIONS(3131), 1, sym_raw_string_begin, - ACTIONS(4962), 1, + ACTIONS(4971), 1, aux_sym__val_number_decimal_token3, - ACTIONS(4964), 1, + ACTIONS(4973), 1, aux_sym__val_number_decimal_token4, STATE(2648), 1, sym_comment, @@ -299787,23 +299787,23 @@ static const uint16_t ts_small_parse_table[] = { sym_val_string, STATE(7338), 1, sym__command_name, - ACTIONS(3120), 2, + ACTIONS(3127), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4960), 2, + ACTIONS(4969), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, STATE(5129), 2, sym__raw_str, sym__str_double_quotes, - ACTIONS(5235), 6, + ACTIONS(5244), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(5237), 34, + ACTIONS(5246), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -299906,9 +299906,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1299), 1, sym_raw_string_begin, - ACTIONS(4962), 1, + ACTIONS(4971), 1, aux_sym__val_number_decimal_token3, - ACTIONS(4964), 1, + ACTIONS(4973), 1, aux_sym__val_number_decimal_token4, STATE(2650), 1, sym_comment, @@ -299923,20 +299923,20 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1297), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4960), 2, + ACTIONS(4969), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, STATE(3916), 2, sym__raw_str, sym__str_double_quotes, - ACTIONS(4950), 6, + ACTIONS(4959), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(4952), 34, + ACTIONS(4961), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -299974,7 +299974,7 @@ static const uint16_t ts_small_parse_table[] = { [72622] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5644), 1, + ACTIONS(5653), 1, aux_sym__immediate_decimal_token2, STATE(2651), 1, sym_comment, @@ -300101,9 +300101,9 @@ static const uint16_t ts_small_parse_table[] = { sym_raw_string_begin, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4962), 1, + ACTIONS(4971), 1, aux_sym__val_number_decimal_token3, - ACTIONS(4964), 1, + ACTIONS(4973), 1, aux_sym__val_number_decimal_token4, STATE(2653), 1, sym_comment, @@ -300118,20 +300118,20 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(111), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4960), 2, + ACTIONS(4969), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, STATE(1720), 2, sym__raw_str, sym__str_double_quotes, - ACTIONS(5004), 6, + ACTIONS(5013), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(5006), 34, + ACTIONS(5015), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -300171,14 +300171,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(2654), 1, sym_comment, - ACTIONS(5646), 6, + ACTIONS(5655), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(5648), 48, + ACTIONS(5657), 48, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -300234,9 +300234,9 @@ static const uint16_t ts_small_parse_table[] = { sym_raw_string_begin, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4962), 1, + ACTIONS(4971), 1, aux_sym__val_number_decimal_token3, - ACTIONS(4964), 1, + ACTIONS(4973), 1, aux_sym__val_number_decimal_token4, STATE(2655), 1, sym_comment, @@ -300251,20 +300251,20 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(111), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4960), 2, + ACTIONS(4969), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, STATE(1720), 2, sym__raw_str, sym__str_double_quotes, - ACTIONS(5004), 6, + ACTIONS(5013), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(5006), 34, + ACTIONS(5015), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -300306,9 +300306,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1299), 1, sym_raw_string_begin, - ACTIONS(4962), 1, + ACTIONS(4971), 1, aux_sym__val_number_decimal_token3, - ACTIONS(4964), 1, + ACTIONS(4973), 1, aux_sym__val_number_decimal_token4, STATE(2656), 1, sym_comment, @@ -300323,20 +300323,20 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1297), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4960), 2, + ACTIONS(4969), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, STATE(3916), 2, sym__raw_str, sym__str_double_quotes, - ACTIONS(4950), 6, + ACTIONS(4959), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(4952), 34, + ACTIONS(4961), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -300439,9 +300439,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1299), 1, sym_raw_string_begin, - ACTIONS(4962), 1, + ACTIONS(4971), 1, aux_sym__val_number_decimal_token3, - ACTIONS(4964), 1, + ACTIONS(4973), 1, aux_sym__val_number_decimal_token4, STATE(2658), 1, sym_comment, @@ -300456,20 +300456,20 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1297), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4960), 2, + ACTIONS(4969), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, STATE(3916), 2, sym__raw_str, sym__str_double_quotes, - ACTIONS(4950), 6, + ACTIONS(4959), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(4952), 34, + ACTIONS(4961), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -300511,9 +300511,9 @@ static const uint16_t ts_small_parse_table[] = { sym_raw_string_begin, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4962), 1, + ACTIONS(4971), 1, aux_sym__val_number_decimal_token3, - ACTIONS(4964), 1, + ACTIONS(4973), 1, aux_sym__val_number_decimal_token4, STATE(2659), 1, sym_comment, @@ -300528,20 +300528,20 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(111), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4960), 2, + ACTIONS(4969), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, STATE(1720), 2, sym__raw_str, sym__str_double_quotes, - ACTIONS(5004), 6, + ACTIONS(5013), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(5006), 34, + ACTIONS(5015), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -300579,7 +300579,7 @@ static const uint16_t ts_small_parse_table[] = { [73319] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5609), 1, + ACTIONS(5618), 1, aux_sym__immediate_decimal_token2, STATE(2660), 1, sym_comment, @@ -300645,9 +300645,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1299), 1, sym_raw_string_begin, - ACTIONS(4962), 1, + ACTIONS(4971), 1, aux_sym__val_number_decimal_token3, - ACTIONS(4964), 1, + ACTIONS(4973), 1, aux_sym__val_number_decimal_token4, STATE(2661), 1, sym_comment, @@ -300662,20 +300662,20 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1297), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4960), 2, + ACTIONS(4969), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, STATE(3916), 2, sym__raw_str, sym__str_double_quotes, - ACTIONS(4950), 6, + ACTIONS(4959), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(4952), 34, + ACTIONS(4961), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -300717,9 +300717,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1299), 1, sym_raw_string_begin, - ACTIONS(4962), 1, + ACTIONS(4971), 1, aux_sym__val_number_decimal_token3, - ACTIONS(4964), 1, + ACTIONS(4973), 1, aux_sym__val_number_decimal_token4, STATE(2662), 1, sym_comment, @@ -300734,20 +300734,20 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1297), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4960), 2, + ACTIONS(4969), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, STATE(3916), 2, sym__raw_str, sym__str_double_quotes, - ACTIONS(4950), 6, + ACTIONS(4959), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(4952), 34, + ACTIONS(4961), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -300787,14 +300787,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(2663), 1, sym_comment, - ACTIONS(5650), 6, + ACTIONS(5659), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(5652), 48, + ACTIONS(5661), 48, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -300846,13 +300846,13 @@ static const uint16_t ts_small_parse_table[] = { [73625] = 15, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3612), 1, + ACTIONS(3621), 1, anon_sym_DQUOTE, - ACTIONS(3626), 1, + ACTIONS(3635), 1, sym_raw_string_begin, - ACTIONS(4962), 1, + ACTIONS(4971), 1, aux_sym__val_number_decimal_token3, - ACTIONS(4964), 1, + ACTIONS(4973), 1, aux_sym__val_number_decimal_token4, STATE(2664), 1, sym_comment, @@ -300864,23 +300864,23 @@ static const uint16_t ts_small_parse_table[] = { sym_val_string, STATE(4635), 1, sym__command_name, - ACTIONS(3614), 2, + ACTIONS(3623), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4960), 2, + ACTIONS(4969), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, STATE(4074), 2, sym__raw_str, sym__str_double_quotes, - ACTIONS(4950), 6, + ACTIONS(4959), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(4952), 34, + ACTIONS(4961), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -300983,9 +300983,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1299), 1, sym_raw_string_begin, - ACTIONS(4962), 1, + ACTIONS(4971), 1, aux_sym__val_number_decimal_token3, - ACTIONS(4964), 1, + ACTIONS(4973), 1, aux_sym__val_number_decimal_token4, STATE(2666), 1, sym_comment, @@ -301000,20 +301000,20 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1297), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4960), 2, + ACTIONS(4969), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, STATE(3916), 2, sym__raw_str, sym__str_double_quotes, - ACTIONS(4950), 6, + ACTIONS(4959), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(4952), 34, + ACTIONS(4961), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -301055,9 +301055,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1299), 1, sym_raw_string_begin, - ACTIONS(4962), 1, + ACTIONS(4971), 1, aux_sym__val_number_decimal_token3, - ACTIONS(4964), 1, + ACTIONS(4973), 1, aux_sym__val_number_decimal_token4, STATE(2667), 1, sym_comment, @@ -301072,20 +301072,20 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1297), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4960), 2, + ACTIONS(4969), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, STATE(3916), 2, sym__raw_str, sym__str_double_quotes, - ACTIONS(4950), 6, + ACTIONS(4959), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(4952), 34, + ACTIONS(4961), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -301127,9 +301127,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1299), 1, sym_raw_string_begin, - ACTIONS(4962), 1, + ACTIONS(4971), 1, aux_sym__val_number_decimal_token3, - ACTIONS(4964), 1, + ACTIONS(4973), 1, aux_sym__val_number_decimal_token4, STATE(2668), 1, sym_comment, @@ -301144,20 +301144,20 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1297), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4960), 2, + ACTIONS(4969), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, STATE(3916), 2, sym__raw_str, sym__str_double_quotes, - ACTIONS(4950), 6, + ACTIONS(4959), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(4952), 34, + ACTIONS(4961), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -301199,9 +301199,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1299), 1, sym_raw_string_begin, - ACTIONS(4962), 1, + ACTIONS(4971), 1, aux_sym__val_number_decimal_token3, - ACTIONS(4964), 1, + ACTIONS(4973), 1, aux_sym__val_number_decimal_token4, STATE(2669), 1, sym_comment, @@ -301216,20 +301216,20 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1297), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4960), 2, + ACTIONS(4969), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, STATE(3916), 2, sym__raw_str, sym__str_double_quotes, - ACTIONS(4950), 6, + ACTIONS(4959), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(4952), 34, + ACTIONS(4961), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -301269,14 +301269,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(2670), 1, sym_comment, - ACTIONS(5654), 6, + ACTIONS(5663), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(5656), 48, + ACTIONS(5665), 48, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -301389,7 +301389,7 @@ static const uint16_t ts_small_parse_table[] = { [74255] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5658), 1, + ACTIONS(5667), 1, anon_sym_DOT2, STATE(2672), 1, sym_comment, @@ -301457,14 +301457,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__unquoted_in_list_token2, ACTIONS(1788), 1, anon_sym_LPAREN2, - ACTIONS(5660), 1, + ACTIONS(5669), 1, anon_sym_DOT_DOT2, STATE(2673), 1, sym_comment, ACTIONS(1794), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(5662), 2, + ACTIONS(5671), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, ACTIONS(1786), 46, @@ -301761,14 +301761,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, ACTIONS(1875), 1, aux_sym__unquoted_in_list_token2, - ACTIONS(5664), 1, + ACTIONS(5673), 1, anon_sym_DOT_DOT2, STATE(2678), 1, sym_comment, ACTIONS(1873), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(5666), 2, + ACTIONS(5675), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, ACTIONS(1865), 46, @@ -302065,33 +302065,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, ACTIONS(2583), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(3082), 1, + ACTIONS(3089), 1, anon_sym_LBRACK, - ACTIONS(3086), 1, + ACTIONS(3093), 1, anon_sym_LPAREN, - ACTIONS(3088), 1, + ACTIONS(3095), 1, anon_sym_DOLLAR, - ACTIONS(3100), 1, + ACTIONS(3107), 1, aux_sym__val_number_decimal_token1, - ACTIONS(3102), 1, + ACTIONS(3109), 1, aux_sym__val_number_decimal_token2, - ACTIONS(3104), 1, + ACTIONS(3111), 1, aux_sym__val_number_decimal_token3, - ACTIONS(3106), 1, + ACTIONS(3113), 1, aux_sym__val_number_decimal_token4, - ACTIONS(3112), 1, + ACTIONS(3119), 1, anon_sym_0b, - ACTIONS(3118), 1, + ACTIONS(3125), 1, anon_sym_DQUOTE, - ACTIONS(3124), 1, + ACTIONS(3131), 1, sym_raw_string_begin, - ACTIONS(5668), 1, + ACTIONS(5677), 1, anon_sym_LBRACE, - ACTIONS(5670), 1, + ACTIONS(5679), 1, anon_sym_DOT_DOT, - ACTIONS(5674), 1, + ACTIONS(5683), 1, anon_sym_null, - ACTIONS(5678), 1, + ACTIONS(5687), 1, sym_val_date, STATE(2683), 1, sym_comment, @@ -302109,16 +302109,16 @@ static const uint16_t ts_small_parse_table[] = { sym__val_number, STATE(7365), 1, sym_block, - ACTIONS(3114), 2, + ACTIONS(3121), 2, anon_sym_0o, anon_sym_0x, - ACTIONS(3120), 2, + ACTIONS(3127), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(5672), 2, + ACTIONS(5681), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(5676), 2, + ACTIONS(5685), 2, anon_sym_true, anon_sym_false, STATE(5129), 2, @@ -302127,7 +302127,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(7368), 2, sym_val_range, sym__value, - ACTIONS(3108), 6, + ACTIONS(3115), 6, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -302150,7 +302150,7 @@ static const uint16_t ts_small_parse_table[] = { [75105] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5658), 1, + ACTIONS(5667), 1, anon_sym_DOT2, STATE(2684), 1, sym_comment, @@ -302218,33 +302218,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, ACTIONS(2583), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(3082), 1, + ACTIONS(3089), 1, anon_sym_LBRACK, - ACTIONS(3086), 1, + ACTIONS(3093), 1, anon_sym_LPAREN, - ACTIONS(3088), 1, + ACTIONS(3095), 1, anon_sym_DOLLAR, - ACTIONS(3100), 1, + ACTIONS(3107), 1, aux_sym__val_number_decimal_token1, - ACTIONS(3102), 1, + ACTIONS(3109), 1, aux_sym__val_number_decimal_token2, - ACTIONS(3104), 1, + ACTIONS(3111), 1, aux_sym__val_number_decimal_token3, - ACTIONS(3106), 1, + ACTIONS(3113), 1, aux_sym__val_number_decimal_token4, - ACTIONS(3112), 1, + ACTIONS(3119), 1, anon_sym_0b, - ACTIONS(3118), 1, + ACTIONS(3125), 1, anon_sym_DQUOTE, - ACTIONS(3124), 1, + ACTIONS(3131), 1, sym_raw_string_begin, - ACTIONS(5668), 1, + ACTIONS(5677), 1, anon_sym_LBRACE, - ACTIONS(5670), 1, + ACTIONS(5679), 1, anon_sym_DOT_DOT, - ACTIONS(5674), 1, + ACTIONS(5683), 1, anon_sym_null, - ACTIONS(5678), 1, + ACTIONS(5687), 1, sym_val_date, STATE(2685), 1, sym_comment, @@ -302262,16 +302262,16 @@ static const uint16_t ts_small_parse_table[] = { sym__val_number, STATE(7371), 1, sym_block, - ACTIONS(3114), 2, + ACTIONS(3121), 2, anon_sym_0o, anon_sym_0x, - ACTIONS(3120), 2, + ACTIONS(3127), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(5672), 2, + ACTIONS(5681), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(5676), 2, + ACTIONS(5685), 2, anon_sym_true, anon_sym_false, STATE(5129), 2, @@ -302280,7 +302280,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(7305), 2, sym_val_range, sym__value, - ACTIONS(3108), 6, + ACTIONS(3115), 6, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -302303,7 +302303,7 @@ static const uint16_t ts_small_parse_table[] = { [75299] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5658), 1, + ACTIONS(5667), 1, anon_sym_DOT2, STATE(2686), 1, sym_comment, @@ -302367,7 +302367,7 @@ static const uint16_t ts_small_parse_table[] = { [75371] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5658), 1, + ACTIONS(5667), 1, anon_sym_DOT2, STATE(2687), 1, sym_comment, @@ -302431,9 +302431,9 @@ static const uint16_t ts_small_parse_table[] = { [75443] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5680), 1, + ACTIONS(5689), 1, aux_sym__immediate_decimal_token1, - ACTIONS(5682), 1, + ACTIONS(5691), 1, aux_sym__immediate_decimal_token2, STATE(2688), 1, sym_comment, @@ -302493,7 +302493,7 @@ static const uint16_t ts_small_parse_table[] = { [75511] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5658), 1, + ACTIONS(5667), 1, anon_sym_DOT2, STATE(2689), 1, sym_comment, @@ -302679,14 +302679,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(2692), 1, sym_comment, - ACTIONS(5646), 6, + ACTIONS(5655), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(5648), 47, + ACTIONS(5657), 47, sym_raw_string_begin, ts_builtin_sym_end, aux_sym_cmd_identifier_token2, @@ -302737,7 +302737,7 @@ static const uint16_t ts_small_parse_table[] = { [75775] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5658), 1, + ACTIONS(5667), 1, anon_sym_DOT2, STATE(2693), 1, sym_comment, @@ -302801,9 +302801,9 @@ static const uint16_t ts_small_parse_table[] = { [75847] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5684), 1, + ACTIONS(5693), 1, anon_sym_DOT, - ACTIONS(5686), 1, + ACTIONS(5695), 1, aux_sym__immediate_decimal_token2, STATE(2694), 1, sym_comment, @@ -302923,7 +302923,7 @@ static const uint16_t ts_small_parse_table[] = { [75979] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5658), 1, + ACTIONS(5667), 1, anon_sym_DOT2, STATE(2696), 1, sym_comment, @@ -303297,23 +303297,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1299), 1, sym_raw_string_begin, - ACTIONS(3212), 1, + ACTIONS(3219), 1, aux_sym_unquoted_token1, - ACTIONS(3424), 1, + ACTIONS(3433), 1, anon_sym_COLON2, - ACTIONS(3852), 1, + ACTIONS(3861), 1, anon_sym_DOLLAR, - ACTIONS(3864), 1, + ACTIONS(3873), 1, aux_sym__val_number_decimal_token1, - ACTIONS(3866), 1, + ACTIONS(3875), 1, aux_sym__val_number_decimal_token2, - ACTIONS(3868), 1, + ACTIONS(3877), 1, aux_sym__val_number_decimal_token3, - ACTIONS(3870), 1, + ACTIONS(3879), 1, aux_sym__val_number_decimal_token4, - ACTIONS(4130), 1, + ACTIONS(4139), 1, anon_sym_DOT_DOT, - ACTIONS(5690), 1, + ACTIONS(5699), 1, sym_val_date, STATE(2143), 1, sym__inter_double_quotes, @@ -303334,16 +303334,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1297), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3862), 2, + ACTIONS(3871), 2, anon_sym_true, anon_sym_false, - ACTIONS(4132), 2, + ACTIONS(4141), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, STATE(3916), 2, sym__raw_str, sym__str_double_quotes, - ACTIONS(5688), 3, + ACTIONS(5697), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, @@ -303374,9 +303374,9 @@ static const uint16_t ts_small_parse_table[] = { [76489] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5692), 1, + ACTIONS(5701), 1, aux_sym__immediate_decimal_token1, - ACTIONS(5694), 1, + ACTIONS(5703), 1, aux_sym__immediate_decimal_token2, STATE(2703), 1, sym_comment, @@ -303436,7 +303436,7 @@ static const uint16_t ts_small_parse_table[] = { [76557] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5658), 1, + ACTIONS(5667), 1, anon_sym_DOT2, STATE(2704), 1, sym_comment, @@ -303500,7 +303500,7 @@ static const uint16_t ts_small_parse_table[] = { [76629] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5658), 1, + ACTIONS(5667), 1, anon_sym_DOT2, STATE(2705), 1, sym_comment, @@ -303566,14 +303566,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(2706), 1, sym_comment, - ACTIONS(5650), 6, + ACTIONS(5659), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(5652), 47, + ACTIONS(5661), 47, sym_raw_string_begin, ts_builtin_sym_end, aux_sym_cmd_identifier_token2, @@ -303684,7 +303684,7 @@ static const uint16_t ts_small_parse_table[] = { [76829] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5658), 1, + ACTIONS(5667), 1, anon_sym_DOT2, STATE(2708), 1, sym_comment, @@ -303748,7 +303748,7 @@ static const uint16_t ts_small_parse_table[] = { [76901] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5658), 1, + ACTIONS(5667), 1, anon_sym_DOT2, STATE(2709), 1, sym_comment, @@ -303812,9 +303812,9 @@ static const uint16_t ts_small_parse_table[] = { [76973] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5696), 1, + ACTIONS(5705), 1, anon_sym_DOT, - ACTIONS(5698), 1, + ACTIONS(5707), 1, aux_sym__immediate_decimal_token2, STATE(2710), 1, sym_comment, @@ -303874,7 +303874,7 @@ static const uint16_t ts_small_parse_table[] = { [77041] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5658), 1, + ACTIONS(5667), 1, anon_sym_DOT2, STATE(2711), 1, sym_comment, @@ -304058,7 +304058,7 @@ static const uint16_t ts_small_parse_table[] = { [77241] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5658), 1, + ACTIONS(5667), 1, anon_sym_DOT2, STATE(2714), 1, sym_comment, @@ -304122,7 +304122,7 @@ static const uint16_t ts_small_parse_table[] = { [77313] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5614), 1, + ACTIONS(5623), 1, anon_sym_DOT2, STATE(2715), 1, sym_comment, @@ -304185,7 +304185,7 @@ static const uint16_t ts_small_parse_table[] = { [77383] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5658), 1, + ACTIONS(5667), 1, anon_sym_DOT2, STATE(2716), 1, sym_comment, @@ -304249,7 +304249,7 @@ static const uint16_t ts_small_parse_table[] = { [77455] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5700), 1, + ACTIONS(5709), 1, anon_sym_DOT2, STATE(2841), 1, sym_path, @@ -304313,14 +304313,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(2718), 1, sym_comment, - ACTIONS(4989), 6, + ACTIONS(4998), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(4987), 47, + ACTIONS(4996), 47, sym_raw_string_begin, ts_builtin_sym_end, aux_sym_cmd_identifier_token2, @@ -304371,17 +304371,17 @@ static const uint16_t ts_small_parse_table[] = { [77587] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5705), 1, + ACTIONS(5714), 1, anon_sym_RBRACK, - ACTIONS(5707), 1, + ACTIONS(5716), 1, sym__entry_separator, - ACTIONS(5709), 1, + ACTIONS(5718), 1, sym_raw_string_begin, STATE(2719), 1, sym_comment, STATE(2733), 1, aux_sym__multiple_types_repeat1, - ACTIONS(5703), 49, + ACTIONS(5712), 49, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, @@ -304434,17 +304434,17 @@ static const uint16_t ts_small_parse_table[] = { [77657] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5707), 1, + ACTIONS(5716), 1, sym__entry_separator, - ACTIONS(5709), 1, + ACTIONS(5718), 1, sym_raw_string_begin, - ACTIONS(5711), 1, + ACTIONS(5720), 1, anon_sym_RBRACK, STATE(2720), 1, sym_comment, STATE(2733), 1, aux_sym__multiple_types_repeat1, - ACTIONS(5703), 49, + ACTIONS(5712), 49, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, @@ -304497,11 +304497,11 @@ static const uint16_t ts_small_parse_table[] = { [77727] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5715), 1, + ACTIONS(5724), 1, anon_sym_RBRACK, - ACTIONS(5718), 1, + ACTIONS(5727), 1, anon_sym_DOT2, - ACTIONS(5720), 1, + ACTIONS(5729), 1, sym_raw_string_begin, STATE(2721), 1, sym_comment, @@ -304514,7 +304514,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1925), 2, sym__entry_separator, sym__table_head_separator, - ACTIONS(5713), 45, + ACTIONS(5722), 45, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_COMMA, @@ -304565,14 +304565,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(2722), 1, sym_comment, - ACTIONS(5632), 6, + ACTIONS(5641), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(5634), 47, + ACTIONS(5643), 47, sym_raw_string_begin, ts_builtin_sym_end, aux_sym_cmd_identifier_token2, @@ -304685,14 +304685,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(2724), 1, sym_comment, - ACTIONS(5636), 6, + ACTIONS(5645), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(5638), 47, + ACTIONS(5647), 47, sym_raw_string_begin, ts_builtin_sym_end, aux_sym_cmd_identifier_token2, @@ -304745,14 +304745,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(2725), 1, sym_comment, - ACTIONS(5654), 6, + ACTIONS(5663), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(5656), 47, + ACTIONS(5665), 47, sym_raw_string_begin, ts_builtin_sym_end, aux_sym_cmd_identifier_token2, @@ -304805,14 +304805,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(2726), 1, sym_comment, - ACTIONS(5616), 6, + ACTIONS(5625), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(5618), 47, + ACTIONS(5627), 47, sym_raw_string_begin, ts_builtin_sym_end, aux_sym_cmd_identifier_token2, @@ -305105,14 +305105,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(2731), 1, sym_comment, - ACTIONS(4932), 6, + ACTIONS(4941), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(4930), 47, + ACTIONS(4939), 47, sym_raw_string_begin, ts_builtin_sym_end, aux_sym_cmd_identifier_token2, @@ -305163,7 +305163,7 @@ static const uint16_t ts_small_parse_table[] = { [78443] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5658), 1, + ACTIONS(5667), 1, anon_sym_DOT2, STATE(2732), 1, sym_comment, @@ -305229,7 +305229,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(2292), 1, sym_raw_string_begin, - ACTIONS(5722), 1, + ACTIONS(5731), 1, sym__entry_separator, STATE(2733), 2, sym_comment, @@ -305288,17 +305288,17 @@ static const uint16_t ts_small_parse_table[] = { [78581] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5707), 1, + ACTIONS(5716), 1, sym__entry_separator, - ACTIONS(5709), 1, + ACTIONS(5718), 1, sym_raw_string_begin, - ACTIONS(5725), 1, + ACTIONS(5734), 1, anon_sym_RBRACK, STATE(2733), 1, aux_sym__multiple_types_repeat1, STATE(2734), 1, sym_comment, - ACTIONS(5703), 49, + ACTIONS(5712), 49, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, @@ -305351,17 +305351,17 @@ static const uint16_t ts_small_parse_table[] = { [78651] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5707), 1, + ACTIONS(5716), 1, sym__entry_separator, - ACTIONS(5709), 1, + ACTIONS(5718), 1, sym_raw_string_begin, - ACTIONS(5727), 1, + ACTIONS(5736), 1, anon_sym_RBRACK, STATE(2733), 1, aux_sym__multiple_types_repeat1, STATE(2735), 1, sym_comment, - ACTIONS(5703), 49, + ACTIONS(5712), 49, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, @@ -305414,7 +305414,7 @@ static const uint16_t ts_small_parse_table[] = { [78721] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5658), 1, + ACTIONS(5667), 1, anon_sym_DOT2, STATE(2736), 1, sym_comment, @@ -305478,7 +305478,7 @@ static const uint16_t ts_small_parse_table[] = { [78793] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5658), 1, + ACTIONS(5667), 1, anon_sym_DOT2, STATE(2737), 1, sym_comment, @@ -305542,7 +305542,7 @@ static const uint16_t ts_small_parse_table[] = { [78865] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5658), 1, + ACTIONS(5667), 1, anon_sym_DOT2, STATE(2738), 1, sym_comment, @@ -305606,7 +305606,7 @@ static const uint16_t ts_small_parse_table[] = { [78937] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5658), 1, + ACTIONS(5667), 1, anon_sym_DOT2, STATE(2739), 1, sym_comment, @@ -305670,7 +305670,7 @@ static const uint16_t ts_small_parse_table[] = { [79009] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5658), 1, + ACTIONS(5667), 1, anon_sym_DOT2, STATE(2740), 1, sym_comment, @@ -305734,7 +305734,7 @@ static const uint16_t ts_small_parse_table[] = { [79081] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5729), 1, + ACTIONS(5738), 1, anon_sym_QMARK2, STATE(2741), 1, sym_comment, @@ -305795,7 +305795,7 @@ static const uint16_t ts_small_parse_table[] = { [79147] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5731), 1, + ACTIONS(5740), 1, anon_sym_QMARK2, STATE(2742), 1, sym_comment, @@ -305856,17 +305856,17 @@ static const uint16_t ts_small_parse_table[] = { [79213] = 9, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5733), 1, + ACTIONS(5742), 1, anon_sym_DOT_DOT2, - ACTIONS(5737), 1, + ACTIONS(5746), 1, sym_filesize_unit, - ACTIONS(5739), 1, + ACTIONS(5748), 1, sym_duration_unit, - ACTIONS(5741), 1, + ACTIONS(5750), 1, aux_sym__unquoted_in_list_token2, STATE(2743), 1, sym_comment, - ACTIONS(5735), 2, + ACTIONS(5744), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, ACTIONS(1681), 16, @@ -305921,7 +305921,7 @@ static const uint16_t ts_small_parse_table[] = { [79287] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5658), 1, + ACTIONS(5667), 1, anon_sym_DOT2, STATE(2744), 1, sym_comment, @@ -305985,11 +305985,11 @@ static const uint16_t ts_small_parse_table[] = { [79359] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5743), 1, + ACTIONS(5752), 1, sym__newline, STATE(2745), 1, sym_comment, - ACTIONS(5746), 2, + ACTIONS(5755), 2, anon_sym_RBRACK, anon_sym_COMMA, ACTIONS(1270), 15, @@ -306047,33 +306047,33 @@ static const uint16_t ts_small_parse_table[] = { [79427] = 30, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3422), 1, + ACTIONS(3431), 1, anon_sym_COLON2, - ACTIONS(3864), 1, + ACTIONS(3873), 1, aux_sym__val_number_decimal_token1, - ACTIONS(3866), 1, + ACTIONS(3875), 1, aux_sym__val_number_decimal_token2, - ACTIONS(3868), 1, + ACTIONS(3877), 1, aux_sym__val_number_decimal_token3, - ACTIONS(3870), 1, + ACTIONS(3879), 1, aux_sym__val_number_decimal_token4, - ACTIONS(5567), 1, + ACTIONS(5576), 1, anon_sym_DQUOTE, - ACTIONS(5571), 1, + ACTIONS(5580), 1, sym_raw_string_begin, - ACTIONS(5690), 1, + ACTIONS(5699), 1, sym_val_date, - ACTIONS(5748), 1, + ACTIONS(5757), 1, anon_sym_LPAREN, - ACTIONS(5750), 1, + ACTIONS(5759), 1, anon_sym_DOLLAR, - ACTIONS(5752), 1, + ACTIONS(5761), 1, anon_sym_DOT_DOT, - ACTIONS(5758), 1, + ACTIONS(5767), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(5760), 1, + ACTIONS(5769), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(5762), 1, + ACTIONS(5771), 1, aux_sym_unquoted_token1, STATE(2620), 1, sym__inter_double_quotes, @@ -306089,19 +306089,19 @@ static const uint16_t ts_small_parse_table[] = { sym__unquoted_anonymous_prefix, STATE(7527), 1, sym_val_bool, - ACTIONS(3862), 2, + ACTIONS(3871), 2, anon_sym_true, anon_sym_false, - ACTIONS(5569), 2, + ACTIONS(5578), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(5754), 2, + ACTIONS(5763), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, STATE(2601), 2, sym__raw_str, sym__str_double_quotes, - ACTIONS(5756), 3, + ACTIONS(5765), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, @@ -306143,23 +306143,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1299), 1, sym_raw_string_begin, - ACTIONS(3212), 1, + ACTIONS(3219), 1, aux_sym_unquoted_token1, - ACTIONS(3422), 1, + ACTIONS(3431), 1, anon_sym_COLON2, - ACTIONS(3852), 1, + ACTIONS(3861), 1, anon_sym_DOLLAR, - ACTIONS(3864), 1, + ACTIONS(3873), 1, aux_sym__val_number_decimal_token1, - ACTIONS(3866), 1, + ACTIONS(3875), 1, aux_sym__val_number_decimal_token2, - ACTIONS(3868), 1, + ACTIONS(3877), 1, aux_sym__val_number_decimal_token3, - ACTIONS(3870), 1, + ACTIONS(3879), 1, aux_sym__val_number_decimal_token4, - ACTIONS(4130), 1, + ACTIONS(4139), 1, anon_sym_DOT_DOT, - ACTIONS(5690), 1, + ACTIONS(5699), 1, sym_val_date, STATE(2143), 1, sym__inter_double_quotes, @@ -306180,16 +306180,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1297), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3862), 2, + ACTIONS(3871), 2, anon_sym_true, anon_sym_false, - ACTIONS(4132), 2, + ACTIONS(4141), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, STATE(3916), 2, sym__raw_str, sym__str_double_quotes, - ACTIONS(5688), 3, + ACTIONS(5697), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, @@ -306220,33 +306220,33 @@ static const uint16_t ts_small_parse_table[] = { [79661] = 30, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3424), 1, + ACTIONS(3433), 1, anon_sym_COLON2, - ACTIONS(3864), 1, + ACTIONS(3873), 1, aux_sym__val_number_decimal_token1, - ACTIONS(3866), 1, + ACTIONS(3875), 1, aux_sym__val_number_decimal_token2, - ACTIONS(3868), 1, + ACTIONS(3877), 1, aux_sym__val_number_decimal_token3, - ACTIONS(3870), 1, + ACTIONS(3879), 1, aux_sym__val_number_decimal_token4, - ACTIONS(5567), 1, + ACTIONS(5576), 1, anon_sym_DQUOTE, - ACTIONS(5571), 1, + ACTIONS(5580), 1, sym_raw_string_begin, - ACTIONS(5690), 1, + ACTIONS(5699), 1, sym_val_date, - ACTIONS(5748), 1, + ACTIONS(5757), 1, anon_sym_LPAREN, - ACTIONS(5750), 1, + ACTIONS(5759), 1, anon_sym_DOLLAR, - ACTIONS(5752), 1, + ACTIONS(5761), 1, anon_sym_DOT_DOT, - ACTIONS(5758), 1, + ACTIONS(5767), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(5760), 1, + ACTIONS(5769), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(5762), 1, + ACTIONS(5771), 1, aux_sym_unquoted_token1, STATE(2620), 1, sym__inter_double_quotes, @@ -306262,19 +306262,19 @@ static const uint16_t ts_small_parse_table[] = { sym__unquoted_anonymous_prefix, STATE(7527), 1, sym_val_bool, - ACTIONS(3862), 2, + ACTIONS(3871), 2, anon_sym_true, anon_sym_false, - ACTIONS(5569), 2, + ACTIONS(5578), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(5754), 2, + ACTIONS(5763), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, STATE(2601), 2, sym__raw_str, sym__str_double_quotes, - ACTIONS(5756), 3, + ACTIONS(5765), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, @@ -306308,14 +306308,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(2749), 1, sym_comment, - ACTIONS(5640), 6, + ACTIONS(5649), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(5642), 47, + ACTIONS(5651), 47, sym_raw_string_begin, ts_builtin_sym_end, aux_sym_cmd_identifier_token2, @@ -306366,7 +306366,7 @@ static const uint16_t ts_small_parse_table[] = { [79841] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5658), 1, + ACTIONS(5667), 1, anon_sym_DOT2, STATE(2750), 1, sym_comment, @@ -306430,7 +306430,7 @@ static const uint16_t ts_small_parse_table[] = { [79913] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5658), 1, + ACTIONS(5667), 1, anon_sym_DOT2, STATE(2751), 1, sym_comment, @@ -306613,7 +306613,7 @@ static const uint16_t ts_small_parse_table[] = { [80112] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5764), 1, + ACTIONS(5773), 1, anon_sym_DOT2, STATE(2754), 1, sym_comment, @@ -306676,7 +306676,7 @@ static const uint16_t ts_small_parse_table[] = { [80183] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5764), 1, + ACTIONS(5773), 1, anon_sym_DOT2, STATE(2755), 1, sym_comment, @@ -306739,7 +306739,7 @@ static const uint16_t ts_small_parse_table[] = { [80254] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5658), 1, + ACTIONS(5667), 1, anon_sym_DOT2, STATE(2756), 1, sym_comment, @@ -306803,21 +306803,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(1555), 1, aux_sym_unquoted_token2, - ACTIONS(3538), 1, + ACTIONS(3547), 1, anon_sym_DOLLAR, - ACTIONS(4542), 1, + ACTIONS(4551), 1, anon_sym_LPAREN2, - ACTIONS(5766), 1, + ACTIONS(5775), 1, anon_sym_DOT, - ACTIONS(5770), 1, + ACTIONS(5779), 1, aux_sym__immediate_decimal_token4, - ACTIONS(5772), 1, + ACTIONS(5781), 1, aux_sym__immediate_decimal_token5, STATE(2757), 1, sym_comment, STATE(3197), 1, sym__immediate_decimal, - ACTIONS(5768), 2, + ACTIONS(5777), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, STATE(1820), 2, @@ -306869,7 +306869,7 @@ static const uint16_t ts_small_parse_table[] = { [80404] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5764), 1, + ACTIONS(5773), 1, anon_sym_DOT2, STATE(2758), 1, sym_comment, @@ -306932,31 +306932,31 @@ static const uint16_t ts_small_parse_table[] = { [80475] = 29, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3864), 1, + ACTIONS(3873), 1, aux_sym__val_number_decimal_token1, - ACTIONS(3866), 1, + ACTIONS(3875), 1, aux_sym__val_number_decimal_token2, - ACTIONS(3868), 1, + ACTIONS(3877), 1, aux_sym__val_number_decimal_token3, - ACTIONS(3870), 1, + ACTIONS(3879), 1, aux_sym__val_number_decimal_token4, - ACTIONS(5567), 1, + ACTIONS(5576), 1, anon_sym_DQUOTE, - ACTIONS(5571), 1, + ACTIONS(5580), 1, sym_raw_string_begin, - ACTIONS(5690), 1, + ACTIONS(5699), 1, sym_val_date, - ACTIONS(5748), 1, + ACTIONS(5757), 1, anon_sym_LPAREN, - ACTIONS(5750), 1, + ACTIONS(5759), 1, anon_sym_DOLLAR, - ACTIONS(5752), 1, + ACTIONS(5761), 1, anon_sym_DOT_DOT, - ACTIONS(5758), 1, + ACTIONS(5767), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(5760), 1, + ACTIONS(5769), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(5762), 1, + ACTIONS(5771), 1, aux_sym_unquoted_token1, STATE(2620), 1, sym__inter_double_quotes, @@ -306972,19 +306972,19 @@ static const uint16_t ts_small_parse_table[] = { sym__unquoted_anonymous_prefix, STATE(7527), 1, sym_val_bool, - ACTIONS(3862), 2, + ACTIONS(3871), 2, anon_sym_true, anon_sym_false, - ACTIONS(5569), 2, + ACTIONS(5578), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(5754), 2, + ACTIONS(5763), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, STATE(2601), 2, sym__raw_str, sym__str_double_quotes, - ACTIONS(5756), 3, + ACTIONS(5765), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, @@ -307016,7 +307016,7 @@ static const uint16_t ts_small_parse_table[] = { [80588] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5764), 1, + ACTIONS(5773), 1, anon_sym_DOT2, STATE(2760), 1, sym_comment, @@ -307079,7 +307079,7 @@ static const uint16_t ts_small_parse_table[] = { [80659] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5764), 1, + ACTIONS(5773), 1, anon_sym_DOT2, STATE(2761), 1, sym_comment, @@ -307152,21 +307152,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1299), 1, sym_raw_string_begin, - ACTIONS(3212), 1, + ACTIONS(3219), 1, aux_sym_unquoted_token1, - ACTIONS(3852), 1, + ACTIONS(3861), 1, anon_sym_DOLLAR, - ACTIONS(3864), 1, + ACTIONS(3873), 1, aux_sym__val_number_decimal_token1, - ACTIONS(3866), 1, + ACTIONS(3875), 1, aux_sym__val_number_decimal_token2, - ACTIONS(3868), 1, + ACTIONS(3877), 1, aux_sym__val_number_decimal_token3, - ACTIONS(3870), 1, + ACTIONS(3879), 1, aux_sym__val_number_decimal_token4, - ACTIONS(4130), 1, + ACTIONS(4139), 1, anon_sym_DOT_DOT, - ACTIONS(5690), 1, + ACTIONS(5699), 1, sym_val_date, STATE(2143), 1, sym__inter_double_quotes, @@ -307187,16 +307187,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1297), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3862), 2, + ACTIONS(3871), 2, anon_sym_true, anon_sym_false, - ACTIONS(4132), 2, + ACTIONS(4141), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, STATE(3916), 2, sym__raw_str, sym__str_double_quotes, - ACTIONS(5688), 3, + ACTIONS(5697), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, @@ -307227,31 +307227,31 @@ static const uint16_t ts_small_parse_table[] = { [80845] = 29, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3864), 1, + ACTIONS(3873), 1, aux_sym__val_number_decimal_token1, - ACTIONS(3866), 1, + ACTIONS(3875), 1, aux_sym__val_number_decimal_token2, - ACTIONS(3868), 1, + ACTIONS(3877), 1, aux_sym__val_number_decimal_token3, - ACTIONS(3870), 1, + ACTIONS(3879), 1, aux_sym__val_number_decimal_token4, - ACTIONS(5567), 1, + ACTIONS(5576), 1, anon_sym_DQUOTE, - ACTIONS(5571), 1, + ACTIONS(5580), 1, sym_raw_string_begin, - ACTIONS(5690), 1, + ACTIONS(5699), 1, sym_val_date, - ACTIONS(5748), 1, + ACTIONS(5757), 1, anon_sym_LPAREN, - ACTIONS(5750), 1, + ACTIONS(5759), 1, anon_sym_DOLLAR, - ACTIONS(5752), 1, + ACTIONS(5761), 1, anon_sym_DOT_DOT, - ACTIONS(5758), 1, + ACTIONS(5767), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(5760), 1, + ACTIONS(5769), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(5762), 1, + ACTIONS(5771), 1, aux_sym_unquoted_token1, STATE(2620), 1, sym__inter_double_quotes, @@ -307267,19 +307267,19 @@ static const uint16_t ts_small_parse_table[] = { sym__unquoted_anonymous_prefix, STATE(7527), 1, sym_val_bool, - ACTIONS(3862), 2, + ACTIONS(3871), 2, anon_sym_true, anon_sym_false, - ACTIONS(5569), 2, + ACTIONS(5578), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(5754), 2, + ACTIONS(5763), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, STATE(2601), 2, sym__raw_str, sym__str_double_quotes, - ACTIONS(5756), 3, + ACTIONS(5765), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, @@ -307311,7 +307311,7 @@ static const uint16_t ts_small_parse_table[] = { [80958] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5764), 1, + ACTIONS(5773), 1, anon_sym_DOT2, STATE(2764), 1, sym_comment, @@ -307374,7 +307374,7 @@ static const uint16_t ts_small_parse_table[] = { [81029] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5764), 1, + ACTIONS(5773), 1, anon_sym_DOT2, STATE(2765), 1, sym_comment, @@ -307439,11 +307439,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(1947), 1, sym__entry_separator, - ACTIONS(5764), 1, + ACTIONS(5773), 1, anon_sym_DOT2, - ACTIONS(5776), 1, + ACTIONS(5785), 1, anon_sym_RBRACK, - ACTIONS(5779), 1, + ACTIONS(5788), 1, sym_raw_string_begin, STATE(2766), 1, sym_comment, @@ -307453,7 +307453,7 @@ static const uint16_t ts_small_parse_table[] = { sym_path, STATE(3054), 1, sym_cell_path, - ACTIONS(5774), 45, + ACTIONS(5783), 45, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_COMMA, @@ -307502,7 +307502,7 @@ static const uint16_t ts_small_parse_table[] = { [81175] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5764), 1, + ACTIONS(5773), 1, anon_sym_DOT2, STATE(2767), 1, sym_comment, @@ -307624,9 +307624,9 @@ static const uint16_t ts_small_parse_table[] = { [81309] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5781), 1, + ACTIONS(5790), 1, aux_sym__immediate_decimal_token1, - ACTIONS(5783), 1, + ACTIONS(5792), 1, aux_sym__immediate_decimal_token2, STATE(2769), 1, sym_comment, @@ -307685,15 +307685,15 @@ static const uint16_t ts_small_parse_table[] = { [81376] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5707), 1, + ACTIONS(5716), 1, sym__entry_separator, - ACTIONS(5709), 1, + ACTIONS(5718), 1, sym_raw_string_begin, STATE(2733), 1, aux_sym__multiple_types_repeat1, STATE(2770), 1, sym_comment, - ACTIONS(5703), 49, + ACTIONS(5712), 49, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, @@ -307746,31 +307746,31 @@ static const uint16_t ts_small_parse_table[] = { [81443] = 29, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3864), 1, + ACTIONS(3873), 1, aux_sym__val_number_decimal_token1, - ACTIONS(3866), 1, + ACTIONS(3875), 1, aux_sym__val_number_decimal_token2, - ACTIONS(3868), 1, + ACTIONS(3877), 1, aux_sym__val_number_decimal_token3, - ACTIONS(3870), 1, + ACTIONS(3879), 1, aux_sym__val_number_decimal_token4, - ACTIONS(5626), 1, + ACTIONS(5635), 1, anon_sym_DQUOTE, - ACTIONS(5630), 1, + ACTIONS(5639), 1, sym_raw_string_begin, - ACTIONS(5690), 1, + ACTIONS(5699), 1, sym_val_date, - ACTIONS(5785), 1, + ACTIONS(5794), 1, anon_sym_LPAREN, - ACTIONS(5787), 1, + ACTIONS(5796), 1, anon_sym_DOLLAR, - ACTIONS(5789), 1, + ACTIONS(5798), 1, anon_sym_DOT_DOT, - ACTIONS(5795), 1, + ACTIONS(5804), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(5797), 1, + ACTIONS(5806), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(5799), 1, + ACTIONS(5808), 1, aux_sym_unquoted_token1, STATE(2690), 1, sym__inter_single_quotes, @@ -307786,19 +307786,19 @@ static const uint16_t ts_small_parse_table[] = { sym_val_bool, STATE(7676), 1, sym__val_range, - ACTIONS(3862), 2, + ACTIONS(3871), 2, anon_sym_true, anon_sym_false, - ACTIONS(5628), 2, + ACTIONS(5637), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(5791), 2, + ACTIONS(5800), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, STATE(2723), 2, sym__raw_str, sym__str_double_quotes, - ACTIONS(5793), 3, + ACTIONS(5802), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, @@ -307889,7 +307889,7 @@ static const uint16_t ts_small_parse_table[] = { [81619] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5764), 1, + ACTIONS(5773), 1, anon_sym_DOT2, STATE(2773), 1, sym_comment, @@ -307952,7 +307952,7 @@ static const uint16_t ts_small_parse_table[] = { [81690] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5764), 1, + ACTIONS(5773), 1, anon_sym_DOT2, STATE(2774), 1, sym_comment, @@ -308015,7 +308015,7 @@ static const uint16_t ts_small_parse_table[] = { [81761] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5764), 1, + ACTIONS(5773), 1, anon_sym_DOT2, STATE(2775), 1, sym_comment, @@ -308137,7 +308137,7 @@ static const uint16_t ts_small_parse_table[] = { [81895] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5801), 1, + ACTIONS(5810), 1, anon_sym_DOT2, STATE(2909), 1, sym_path, @@ -308200,7 +308200,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(1927), 1, sym__table_head_separator, - ACTIONS(5804), 1, + ACTIONS(5813), 1, anon_sym_DOT2, STATE(2778), 1, sym_comment, @@ -308210,7 +308210,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cell_path_repeat1, STATE(7245), 1, sym_path, - ACTIONS(5713), 14, + ACTIONS(5722), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -308225,7 +308225,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(5720), 33, + ACTIONS(5729), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -308262,9 +308262,9 @@ static const uint16_t ts_small_parse_table[] = { [82035] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5806), 1, + ACTIONS(5815), 1, aux_sym__immediate_decimal_token1, - ACTIONS(5808), 1, + ACTIONS(5817), 1, aux_sym__immediate_decimal_token2, STATE(2779), 1, sym_comment, @@ -308323,7 +308323,7 @@ static const uint16_t ts_small_parse_table[] = { [82102] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5810), 1, + ACTIONS(5819), 1, anon_sym_QMARK2, STATE(2780), 1, sym_comment, @@ -308383,7 +308383,7 @@ static const uint16_t ts_small_parse_table[] = { [82167] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5812), 1, + ACTIONS(5821), 1, anon_sym_QMARK2, STATE(2781), 1, sym_comment, @@ -308443,7 +308443,7 @@ static const uint16_t ts_small_parse_table[] = { [82232] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5764), 1, + ACTIONS(5773), 1, anon_sym_DOT2, STATE(2782), 1, sym_comment, @@ -308506,7 +308506,7 @@ static const uint16_t ts_small_parse_table[] = { [82303] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5764), 1, + ACTIONS(5773), 1, anon_sym_DOT2, STATE(2783), 1, sym_comment, @@ -308569,9 +308569,9 @@ static const uint16_t ts_small_parse_table[] = { [82374] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5814), 1, + ACTIONS(5823), 1, aux_sym__immediate_decimal_token1, - ACTIONS(5816), 1, + ACTIONS(5825), 1, aux_sym__immediate_decimal_token2, STATE(2784), 1, sym_comment, @@ -308630,31 +308630,31 @@ static const uint16_t ts_small_parse_table[] = { [82441] = 29, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3864), 1, + ACTIONS(3873), 1, aux_sym__val_number_decimal_token1, - ACTIONS(3866), 1, + ACTIONS(3875), 1, aux_sym__val_number_decimal_token2, - ACTIONS(3868), 1, + ACTIONS(3877), 1, aux_sym__val_number_decimal_token3, - ACTIONS(3870), 1, + ACTIONS(3879), 1, aux_sym__val_number_decimal_token4, - ACTIONS(5626), 1, + ACTIONS(5635), 1, anon_sym_DQUOTE, - ACTIONS(5630), 1, + ACTIONS(5639), 1, sym_raw_string_begin, - ACTIONS(5690), 1, + ACTIONS(5699), 1, sym_val_date, - ACTIONS(5785), 1, + ACTIONS(5794), 1, anon_sym_LPAREN, - ACTIONS(5787), 1, + ACTIONS(5796), 1, anon_sym_DOLLAR, - ACTIONS(5789), 1, + ACTIONS(5798), 1, anon_sym_DOT_DOT, - ACTIONS(5795), 1, + ACTIONS(5804), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(5797), 1, + ACTIONS(5806), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(5799), 1, + ACTIONS(5808), 1, aux_sym_unquoted_token1, STATE(2690), 1, sym__inter_single_quotes, @@ -308670,19 +308670,19 @@ static const uint16_t ts_small_parse_table[] = { sym_val_bool, STATE(7676), 1, sym__val_range, - ACTIONS(3862), 2, + ACTIONS(3871), 2, anon_sym_true, anon_sym_false, - ACTIONS(5628), 2, + ACTIONS(5637), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(5791), 2, + ACTIONS(5800), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, STATE(2723), 2, sym__raw_str, sym__str_double_quotes, - ACTIONS(5793), 3, + ACTIONS(5802), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, @@ -308714,7 +308714,7 @@ static const uint16_t ts_small_parse_table[] = { [82554] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5764), 1, + ACTIONS(5773), 1, anon_sym_DOT2, STATE(2786), 1, sym_comment, @@ -308836,7 +308836,7 @@ static const uint16_t ts_small_parse_table[] = { [82688] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5698), 1, + ACTIONS(5707), 1, aux_sym__immediate_decimal_token2, STATE(2788), 1, sym_comment, @@ -308955,7 +308955,7 @@ static const uint16_t ts_small_parse_table[] = { [82816] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5818), 1, + ACTIONS(5827), 1, aux_sym__immediate_decimal_token2, STATE(2790), 1, sym_comment, @@ -309015,7 +309015,7 @@ static const uint16_t ts_small_parse_table[] = { [82881] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5764), 1, + ACTIONS(5773), 1, anon_sym_DOT2, STATE(2791), 1, sym_comment, @@ -309196,9 +309196,9 @@ static const uint16_t ts_small_parse_table[] = { [83078] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5820), 1, + ACTIONS(5829), 1, anon_sym_DOT, - ACTIONS(5822), 1, + ACTIONS(5831), 1, aux_sym__immediate_decimal_token2, STATE(2794), 1, sym_comment, @@ -309265,23 +309265,23 @@ static const uint16_t ts_small_parse_table[] = { sym_raw_string_begin, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3358), 1, + ACTIONS(3367), 1, aux_sym_unquoted_token1, - ACTIONS(3472), 1, + ACTIONS(3481), 1, anon_sym_DOLLAR, - ACTIONS(3864), 1, + ACTIONS(3873), 1, aux_sym__val_number_decimal_token1, - ACTIONS(3866), 1, + ACTIONS(3875), 1, aux_sym__val_number_decimal_token2, - ACTIONS(3868), 1, + ACTIONS(3877), 1, aux_sym__val_number_decimal_token3, - ACTIONS(3870), 1, + ACTIONS(3879), 1, aux_sym__val_number_decimal_token4, - ACTIONS(5690), 1, + ACTIONS(5699), 1, sym_val_date, - ACTIONS(5824), 1, + ACTIONS(5833), 1, anon_sym_LPAREN, - ACTIONS(5826), 1, + ACTIONS(5835), 1, anon_sym_DOT_DOT, STATE(2550), 1, sym__inter_single_quotes, @@ -309302,16 +309302,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(111), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3862), 2, + ACTIONS(3871), 2, anon_sym_true, anon_sym_false, - ACTIONS(5828), 2, + ACTIONS(5837), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, STATE(1720), 2, sym__raw_str, sym__str_double_quotes, - ACTIONS(5830), 3, + ACTIONS(5839), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, @@ -309342,9 +309342,9 @@ static const uint16_t ts_small_parse_table[] = { [83260] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5832), 1, + ACTIONS(5841), 1, anon_sym_DOT, - ACTIONS(5834), 1, + ACTIONS(5843), 1, aux_sym__immediate_decimal_token2, STATE(2796), 1, sym_comment, @@ -309403,7 +309403,7 @@ static const uint16_t ts_small_parse_table[] = { [83327] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5836), 1, + ACTIONS(5845), 1, sym__newline, STATE(2797), 2, sym_comment, @@ -309463,7 +309463,7 @@ static const uint16_t ts_small_parse_table[] = { [83392] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5764), 1, + ACTIONS(5773), 1, anon_sym_DOT2, STATE(2798), 1, sym_comment, @@ -309526,7 +309526,7 @@ static const uint16_t ts_small_parse_table[] = { [83463] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5686), 1, + ACTIONS(5695), 1, aux_sym__immediate_decimal_token2, STATE(2799), 1, sym_comment, @@ -309586,7 +309586,7 @@ static const uint16_t ts_small_parse_table[] = { [83528] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5764), 1, + ACTIONS(5773), 1, anon_sym_DOT2, STATE(2800), 1, sym_comment, @@ -309649,7 +309649,7 @@ static const uint16_t ts_small_parse_table[] = { [83599] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5764), 1, + ACTIONS(5773), 1, anon_sym_DOT2, STATE(2801), 1, sym_comment, @@ -309712,7 +309712,7 @@ static const uint16_t ts_small_parse_table[] = { [83670] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5764), 1, + ACTIONS(5773), 1, anon_sym_DOT2, STATE(2802), 1, sym_comment, @@ -309775,7 +309775,7 @@ static const uint16_t ts_small_parse_table[] = { [83741] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5839), 1, + ACTIONS(5848), 1, aux_sym__immediate_decimal_token2, STATE(2803), 1, sym_comment, @@ -309835,17 +309835,17 @@ static const uint16_t ts_small_parse_table[] = { [83806] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5843), 1, + ACTIONS(5852), 1, anon_sym_RBRACK, - ACTIONS(5845), 1, + ACTIONS(5854), 1, sym__entry_separator, - ACTIONS(5847), 1, + ACTIONS(5856), 1, sym_raw_string_begin, STATE(2804), 1, sym_comment, STATE(2836), 1, aux_sym__multiple_types_repeat1, - ACTIONS(5841), 47, + ACTIONS(5850), 47, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -309896,14 +309896,14 @@ static const uint16_t ts_small_parse_table[] = { [83874] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5849), 1, + ACTIONS(5858), 1, anon_sym_DOT_DOT2, STATE(2805), 1, sym_comment, ACTIONS(2166), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(5851), 2, + ACTIONS(5860), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, ACTIONS(2160), 46, @@ -309956,21 +309956,21 @@ static const uint16_t ts_small_parse_table[] = { [83940] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5857), 1, + ACTIONS(5866), 1, anon_sym_DASH_DASH, STATE(3006), 1, sym_long_flag, STATE(2806), 2, sym_comment, aux_sym_decl_def_repeat1, - ACTIONS(5853), 6, + ACTIONS(5862), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(5855), 42, + ACTIONS(5864), 42, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -310016,7 +310016,7 @@ static const uint16_t ts_small_parse_table[] = { [84006] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5860), 1, + ACTIONS(5869), 1, anon_sym_DOT2, STATE(2807), 1, sym_comment, @@ -310078,7 +310078,7 @@ static const uint16_t ts_small_parse_table[] = { [84076] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5860), 1, + ACTIONS(5869), 1, anon_sym_DOT2, STATE(2808), 1, sym_comment, @@ -310140,7 +310140,7 @@ static const uint16_t ts_small_parse_table[] = { [84146] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5860), 1, + ACTIONS(5869), 1, anon_sym_DOT2, STATE(2809), 1, sym_comment, @@ -310150,7 +310150,7 @@ static const uint16_t ts_small_parse_table[] = { sym_path, STATE(3158), 1, sym_cell_path, - ACTIONS(5774), 14, + ACTIONS(5783), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -310165,7 +310165,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(5779), 33, + ACTIONS(5788), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -310202,7 +310202,7 @@ static const uint16_t ts_small_parse_table[] = { [84216] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5862), 1, + ACTIONS(5871), 1, sym__newline, STATE(2810), 2, sym_comment, @@ -310261,7 +310261,7 @@ static const uint16_t ts_small_parse_table[] = { [84280] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5860), 1, + ACTIONS(5869), 1, anon_sym_DOT2, STATE(2811), 1, sym_comment, @@ -310439,7 +310439,7 @@ static const uint16_t ts_small_parse_table[] = { [84474] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5860), 1, + ACTIONS(5869), 1, anon_sym_DOT2, STATE(2814), 1, sym_comment, @@ -310449,7 +310449,7 @@ static const uint16_t ts_small_parse_table[] = { sym_path, STATE(3172), 1, sym_cell_path, - ACTIONS(5867), 14, + ACTIONS(5876), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -310464,7 +310464,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(5865), 33, + ACTIONS(5874), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -310501,17 +310501,17 @@ static const uint16_t ts_small_parse_table[] = { [84544] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5845), 1, + ACTIONS(5854), 1, sym__entry_separator, - ACTIONS(5847), 1, + ACTIONS(5856), 1, sym_raw_string_begin, - ACTIONS(5869), 1, + ACTIONS(5878), 1, anon_sym_RBRACK, STATE(2815), 1, sym_comment, STATE(2836), 1, aux_sym__multiple_types_repeat1, - ACTIONS(5841), 47, + ACTIONS(5850), 47, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -310562,7 +310562,7 @@ static const uint16_t ts_small_parse_table[] = { [84612] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5860), 1, + ACTIONS(5869), 1, anon_sym_DOT2, STATE(2816), 1, sym_comment, @@ -310624,7 +310624,7 @@ static const uint16_t ts_small_parse_table[] = { [84682] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5871), 1, + ACTIONS(5880), 1, sym__newline, STATE(2817), 2, sym_comment, @@ -310741,7 +310741,7 @@ static const uint16_t ts_small_parse_table[] = { [84808] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5860), 1, + ACTIONS(5869), 1, anon_sym_DOT2, STATE(2819), 1, sym_comment, @@ -310803,7 +310803,7 @@ static const uint16_t ts_small_parse_table[] = { [84878] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5860), 1, + ACTIONS(5869), 1, anon_sym_DOT2, STATE(2820), 1, sym_comment, @@ -310865,7 +310865,7 @@ static const uint16_t ts_small_parse_table[] = { [84948] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5860), 1, + ACTIONS(5869), 1, anon_sym_DOT2, STATE(2821), 1, sym_comment, @@ -310927,7 +310927,7 @@ static const uint16_t ts_small_parse_table[] = { [85018] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5860), 1, + ACTIONS(5869), 1, anon_sym_DOT2, STATE(2822), 1, sym_comment, @@ -310989,7 +310989,7 @@ static const uint16_t ts_small_parse_table[] = { [85088] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5822), 1, + ACTIONS(5831), 1, aux_sym__immediate_decimal_token2, STATE(2823), 1, sym_comment, @@ -311106,7 +311106,7 @@ static const uint16_t ts_small_parse_table[] = { [85214] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5860), 1, + ACTIONS(5869), 1, anon_sym_DOT2, STATE(2825), 1, sym_comment, @@ -311168,20 +311168,20 @@ static const uint16_t ts_small_parse_table[] = { [85284] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5876), 1, + ACTIONS(5885), 1, anon_sym_RBRACK, - ACTIONS(5878), 1, + ACTIONS(5887), 1, anon_sym_DOT_DOT2, - ACTIONS(5882), 1, + ACTIONS(5891), 1, sym__entry_separator, - ACTIONS(5884), 1, + ACTIONS(5893), 1, sym_raw_string_begin, STATE(2826), 1, sym_comment, - ACTIONS(5880), 2, + ACTIONS(5889), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(5874), 45, + ACTIONS(5883), 45, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_COMMA, @@ -311230,7 +311230,7 @@ static const uint16_t ts_small_parse_table[] = { [85354] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5886), 1, + ACTIONS(5895), 1, aux_sym__immediate_decimal_token2, STATE(2827), 1, sym_comment, @@ -311291,11 +311291,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(1555), 1, aux_sym__unquoted_in_list_token2, - ACTIONS(5888), 1, + ACTIONS(5897), 1, anon_sym_DOT_DOT2, STATE(2828), 1, sym_comment, - ACTIONS(5890), 2, + ACTIONS(5899), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, ACTIONS(1786), 16, @@ -311350,7 +311350,7 @@ static const uint16_t ts_small_parse_table[] = { [85486] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5892), 1, + ACTIONS(5901), 1, anon_sym_QMARK2, STATE(2829), 1, sym_comment, @@ -311409,7 +311409,7 @@ static const uint16_t ts_small_parse_table[] = { [85550] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5860), 1, + ACTIONS(5869), 1, anon_sym_DOT2, STATE(2830), 1, sym_comment, @@ -311473,18 +311473,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(1000), 1, sym__entry_separator, - ACTIONS(5878), 1, + ACTIONS(5887), 1, anon_sym_DOT_DOT2, - ACTIONS(5896), 1, + ACTIONS(5905), 1, anon_sym_RBRACK, - ACTIONS(5899), 1, + ACTIONS(5908), 1, sym_raw_string_begin, STATE(2831), 1, sym_comment, - ACTIONS(5880), 2, + ACTIONS(5889), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(5894), 45, + ACTIONS(5903), 45, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_COMMA, @@ -311533,17 +311533,17 @@ static const uint16_t ts_small_parse_table[] = { [85690] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5845), 1, + ACTIONS(5854), 1, sym__entry_separator, - ACTIONS(5847), 1, + ACTIONS(5856), 1, sym_raw_string_begin, - ACTIONS(5901), 1, + ACTIONS(5910), 1, anon_sym_RBRACK, STATE(2832), 1, sym_comment, STATE(2836), 1, aux_sym__multiple_types_repeat1, - ACTIONS(5841), 47, + ACTIONS(5850), 47, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -311594,7 +311594,7 @@ static const uint16_t ts_small_parse_table[] = { [85758] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5903), 1, + ACTIONS(5912), 1, anon_sym_QMARK2, STATE(2833), 1, sym_comment, @@ -311653,7 +311653,7 @@ static const uint16_t ts_small_parse_table[] = { [85822] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5834), 1, + ACTIONS(5843), 1, aux_sym__immediate_decimal_token2, STATE(2834), 1, sym_comment, @@ -311712,14 +311712,14 @@ static const uint16_t ts_small_parse_table[] = { [85886] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5905), 1, + ACTIONS(5914), 1, anon_sym_DOT_DOT2, STATE(2835), 1, sym_comment, ACTIONS(2176), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(5907), 2, + ACTIONS(5916), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, ACTIONS(2170), 46, @@ -311774,7 +311774,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(2292), 1, sym_raw_string_begin, - ACTIONS(5909), 1, + ACTIONS(5918), 1, sym__entry_separator, STATE(2836), 2, sym_comment, @@ -311833,11 +311833,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(1875), 1, aux_sym__unquoted_in_list_token2, - ACTIONS(5912), 1, + ACTIONS(5921), 1, anon_sym_DOT_DOT2, STATE(2837), 1, sym_comment, - ACTIONS(5914), 2, + ACTIONS(5923), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, ACTIONS(1865), 16, @@ -311950,7 +311950,7 @@ static const uint16_t ts_small_parse_table[] = { [86146] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5860), 1, + ACTIONS(5869), 1, anon_sym_DOT2, STATE(2839), 1, sym_comment, @@ -312014,21 +312014,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(1555), 1, aux_sym_unquoted_token2, - ACTIONS(4648), 1, + ACTIONS(4657), 1, anon_sym_DOLLAR, - ACTIONS(4650), 1, + ACTIONS(4659), 1, anon_sym_LPAREN2, - ACTIONS(5916), 1, + ACTIONS(5925), 1, anon_sym_DOT, - ACTIONS(5920), 1, + ACTIONS(5929), 1, aux_sym__immediate_decimal_token4, - ACTIONS(5922), 1, + ACTIONS(5931), 1, aux_sym__immediate_decimal_token5, STATE(2840), 1, sym_comment, STATE(3208), 1, sym__immediate_decimal, - ACTIONS(5918), 2, + ACTIONS(5927), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, STATE(2127), 2, @@ -312137,7 +312137,7 @@ static const uint16_t ts_small_parse_table[] = { [86358] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5924), 1, + ACTIONS(5933), 1, aux_sym__immediate_decimal_token2, STATE(2842), 1, sym_comment, @@ -312256,19 +312256,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(1631), 1, aux_sym_unquoted_token2, - ACTIONS(3538), 1, + ACTIONS(3547), 1, anon_sym_DOLLAR, - ACTIONS(4542), 1, + ACTIONS(4551), 1, anon_sym_LPAREN2, - ACTIONS(5928), 1, + ACTIONS(5937), 1, aux_sym__immediate_decimal_token4, - ACTIONS(5930), 1, + ACTIONS(5939), 1, aux_sym__immediate_decimal_token5, STATE(2844), 1, sym_comment, STATE(3241), 1, sym__immediate_decimal, - ACTIONS(5926), 2, + ACTIONS(5935), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, STATE(2050), 2, @@ -312320,7 +312320,7 @@ static const uint16_t ts_small_parse_table[] = { [86562] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5860), 1, + ACTIONS(5869), 1, anon_sym_DOT2, STATE(2845), 1, sym_comment, @@ -312384,19 +312384,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(1555), 1, aux_sym_unquoted_token2, - ACTIONS(3538), 1, + ACTIONS(3547), 1, anon_sym_DOLLAR, - ACTIONS(4542), 1, + ACTIONS(4551), 1, anon_sym_LPAREN2, - ACTIONS(5928), 1, + ACTIONS(5937), 1, aux_sym__immediate_decimal_token4, - ACTIONS(5930), 1, + ACTIONS(5939), 1, aux_sym__immediate_decimal_token5, STATE(2846), 1, sym_comment, STATE(3239), 1, sym__immediate_decimal, - ACTIONS(5926), 2, + ACTIONS(5935), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, STATE(2035), 2, @@ -312448,7 +312448,7 @@ static const uint16_t ts_small_parse_table[] = { [86710] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5860), 1, + ACTIONS(5869), 1, anon_sym_DOT2, STATE(2847), 1, sym_comment, @@ -312568,7 +312568,7 @@ static const uint16_t ts_small_parse_table[] = { [86842] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5860), 1, + ACTIONS(5869), 1, anon_sym_DOT2, STATE(2849), 1, sym_comment, @@ -312630,7 +312630,7 @@ static const uint16_t ts_small_parse_table[] = { [86912] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5860), 1, + ACTIONS(5869), 1, anon_sym_DOT2, STATE(2850), 1, sym_comment, @@ -312750,13 +312750,13 @@ static const uint16_t ts_small_parse_table[] = { [87044] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5932), 1, + ACTIONS(5941), 1, sym_long_flag_identifier, - ACTIONS(5934), 1, + ACTIONS(5943), 1, anon_sym_EQ2, STATE(2852), 1, sym_comment, - ACTIONS(4879), 9, + ACTIONS(4888), 9, sym_raw_string_begin, aux_sym_cmd_identifier_token39, anon_sym_DASH_DASH, @@ -312766,7 +312766,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4881), 40, + ACTIONS(4890), 40, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -312810,17 +312810,17 @@ static const uint16_t ts_small_parse_table[] = { [87110] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5845), 1, + ACTIONS(5854), 1, sym__entry_separator, - ACTIONS(5847), 1, + ACTIONS(5856), 1, sym_raw_string_begin, - ACTIONS(5936), 1, + ACTIONS(5945), 1, anon_sym_RBRACK, STATE(2836), 1, aux_sym__multiple_types_repeat1, STATE(2853), 1, sym_comment, - ACTIONS(5841), 47, + ACTIONS(5850), 47, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -312987,17 +312987,17 @@ static const uint16_t ts_small_parse_table[] = { [87302] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5845), 1, + ACTIONS(5854), 1, sym__entry_separator, - ACTIONS(5847), 1, + ACTIONS(5856), 1, sym_raw_string_begin, - ACTIONS(5938), 1, + ACTIONS(5947), 1, anon_sym_RBRACK, STATE(2836), 1, aux_sym__multiple_types_repeat1, STATE(2856), 1, sym_comment, - ACTIONS(5841), 47, + ACTIONS(5850), 47, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -313048,7 +313048,7 @@ static const uint16_t ts_small_parse_table[] = { [87370] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5860), 1, + ACTIONS(5869), 1, anon_sym_DOT2, STATE(2857), 1, sym_comment, @@ -313110,17 +313110,17 @@ static const uint16_t ts_small_parse_table[] = { [87440] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5845), 1, + ACTIONS(5854), 1, sym__entry_separator, - ACTIONS(5847), 1, + ACTIONS(5856), 1, sym_raw_string_begin, - ACTIONS(5940), 1, + ACTIONS(5949), 1, anon_sym_RBRACK, STATE(2836), 1, aux_sym__multiple_types_repeat1, STATE(2858), 1, sym_comment, - ACTIONS(5841), 47, + ACTIONS(5850), 47, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -313229,7 +313229,7 @@ static const uint16_t ts_small_parse_table[] = { [87570] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5860), 1, + ACTIONS(5869), 1, anon_sym_DOT2, STATE(2860), 1, sym_comment, @@ -313291,7 +313291,7 @@ static const uint16_t ts_small_parse_table[] = { [87640] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5942), 1, + ACTIONS(5951), 1, aux_sym__immediate_decimal_token2, STATE(2861), 1, sym_comment, @@ -313350,7 +313350,7 @@ static const uint16_t ts_small_parse_table[] = { [87704] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5860), 1, + ACTIONS(5869), 1, anon_sym_DOT2, STATE(2862), 1, sym_comment, @@ -313470,7 +313470,7 @@ static const uint16_t ts_small_parse_table[] = { [87836] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5860), 1, + ACTIONS(5869), 1, anon_sym_DOT2, STATE(2864), 1, sym_comment, @@ -313764,7 +313764,7 @@ static const uint16_t ts_small_parse_table[] = { [88154] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5764), 1, + ACTIONS(5773), 1, anon_sym_DOT2, STATE(2869), 1, sym_comment, @@ -313825,7 +313825,7 @@ static const uint16_t ts_small_parse_table[] = { [88222] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5944), 1, + ACTIONS(5953), 1, anon_sym_DOT2, STATE(3014), 1, sym_path, @@ -313943,14 +313943,14 @@ static const uint16_t ts_small_parse_table[] = { [88350] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5947), 1, + ACTIONS(5956), 1, anon_sym_DOT_DOT2, STATE(2872), 1, sym_comment, ACTIONS(2150), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(5949), 2, + ACTIONS(5958), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, ACTIONS(2144), 46, @@ -314177,7 +314177,7 @@ static const uint16_t ts_small_parse_table[] = { [88602] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5951), 1, + ACTIONS(5960), 1, aux_sym__immediate_decimal_token2, STATE(2876), 1, sym_comment, @@ -314236,17 +314236,17 @@ static const uint16_t ts_small_parse_table[] = { [88666] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5845), 1, + ACTIONS(5854), 1, sym__entry_separator, - ACTIONS(5847), 1, + ACTIONS(5856), 1, sym_raw_string_begin, - ACTIONS(5953), 1, + ACTIONS(5962), 1, anon_sym_RBRACK, STATE(2836), 1, aux_sym__multiple_types_repeat1, STATE(2877), 1, sym_comment, - ACTIONS(5841), 47, + ACTIONS(5850), 47, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -314297,14 +314297,14 @@ static const uint16_t ts_small_parse_table[] = { [88734] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5955), 1, + ACTIONS(5964), 1, anon_sym_DOT_DOT2, STATE(2878), 1, sym_comment, ACTIONS(2158), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(5957), 2, + ACTIONS(5966), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, ACTIONS(2152), 46, @@ -314357,17 +314357,17 @@ static const uint16_t ts_small_parse_table[] = { [88800] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5845), 1, + ACTIONS(5854), 1, sym__entry_separator, - ACTIONS(5847), 1, + ACTIONS(5856), 1, sym_raw_string_begin, - ACTIONS(5959), 1, + ACTIONS(5968), 1, anon_sym_RBRACK, STATE(2836), 1, aux_sym__multiple_types_repeat1, STATE(2879), 1, sym_comment, - ACTIONS(5841), 47, + ACTIONS(5850), 47, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -314420,19 +314420,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(1631), 1, aux_sym_unquoted_token2, - ACTIONS(4648), 1, + ACTIONS(4657), 1, anon_sym_DOLLAR, - ACTIONS(4650), 1, + ACTIONS(4659), 1, anon_sym_LPAREN2, - ACTIONS(5963), 1, + ACTIONS(5972), 1, aux_sym__immediate_decimal_token4, - ACTIONS(5965), 1, + ACTIONS(5974), 1, aux_sym__immediate_decimal_token5, STATE(2880), 1, sym_comment, STATE(3263), 1, sym__immediate_decimal, - ACTIONS(5961), 2, + ACTIONS(5970), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, STATE(2494), 2, @@ -314542,19 +314542,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(1555), 1, aux_sym_unquoted_token2, - ACTIONS(4648), 1, + ACTIONS(4657), 1, anon_sym_DOLLAR, - ACTIONS(4650), 1, + ACTIONS(4659), 1, anon_sym_LPAREN2, - ACTIONS(5963), 1, + ACTIONS(5972), 1, aux_sym__immediate_decimal_token4, - ACTIONS(5965), 1, + ACTIONS(5974), 1, aux_sym__immediate_decimal_token5, STATE(2882), 1, sym_comment, STATE(3254), 1, sym__immediate_decimal, - ACTIONS(5961), 2, + ACTIONS(5970), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, STATE(2527), 2, @@ -314662,11 +314662,11 @@ static const uint16_t ts_small_parse_table[] = { [89144] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5967), 1, + ACTIONS(5976), 1, anon_sym_DOT_DOT2, STATE(2884), 1, sym_comment, - ACTIONS(5969), 2, + ACTIONS(5978), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, ACTIONS(2170), 16, @@ -315063,9 +315063,9 @@ static const uint16_t ts_small_parse_table[] = { [89575] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5971), 1, + ACTIONS(5980), 1, anon_sym_DOT, - ACTIONS(5973), 1, + ACTIONS(5982), 1, aux_sym__immediate_decimal_token2, STATE(2891), 1, sym_comment, @@ -315239,11 +315239,11 @@ static const uint16_t ts_small_parse_table[] = { [89768] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5975), 1, + ACTIONS(5984), 1, anon_sym_DOT_DOT2, STATE(2894), 1, sym_comment, - ACTIONS(5977), 2, + ACTIONS(5986), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, ACTIONS(2152), 16, @@ -315529,9 +315529,9 @@ static const uint16_t ts_small_parse_table[] = { [90083] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5979), 1, + ACTIONS(5988), 1, aux_sym__immediate_decimal_token1, - ACTIONS(5981), 1, + ACTIONS(5990), 1, aux_sym__immediate_decimal_token2, STATE(2899), 1, sym_comment, @@ -315704,14 +315704,14 @@ static const uint16_t ts_small_parse_table[] = { [90274] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5983), 1, + ACTIONS(5992), 1, anon_sym_DOT_DOT2, STATE(2902), 1, sym_comment, - ACTIONS(5985), 2, + ACTIONS(5994), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(5874), 16, + ACTIONS(5883), 16, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -315728,7 +315728,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(5884), 31, + ACTIONS(5893), 31, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -315763,14 +315763,14 @@ static const uint16_t ts_small_parse_table[] = { [90339] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5983), 1, + ACTIONS(5992), 1, anon_sym_DOT_DOT2, STATE(2903), 1, sym_comment, - ACTIONS(5985), 2, + ACTIONS(5994), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(5894), 16, + ACTIONS(5903), 16, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -315787,7 +315787,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(5899), 31, + ACTIONS(5908), 31, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -315879,11 +315879,11 @@ static const uint16_t ts_small_parse_table[] = { [90465] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5987), 1, + ACTIONS(5996), 1, anon_sym_DOT_DOT2, STATE(2905), 1, sym_comment, - ACTIONS(5989), 2, + ACTIONS(5998), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, ACTIONS(2160), 16, @@ -315995,7 +315995,7 @@ static const uint16_t ts_small_parse_table[] = { [90591] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5860), 1, + ACTIONS(5869), 1, anon_sym_DOT2, STATE(2907), 1, sym_comment, @@ -316055,7 +316055,7 @@ static const uint16_t ts_small_parse_table[] = { [90658] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5991), 1, + ACTIONS(6000), 1, anon_sym_LBRACK2, STATE(2908), 1, sym_comment, @@ -316343,9 +316343,9 @@ static const uint16_t ts_small_parse_table[] = { [90969] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5993), 1, + ACTIONS(6002), 1, anon_sym_DOT, - ACTIONS(5995), 1, + ACTIONS(6004), 1, aux_sym__immediate_decimal_token2, STATE(2913), 1, sym_comment, @@ -316402,7 +316402,7 @@ static const uint16_t ts_small_parse_table[] = { [91034] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5997), 1, + ACTIONS(6006), 1, anon_sym_DOT2, STATE(3039), 1, sym_path, @@ -316581,13 +316581,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, ACTIONS(2204), 1, aux_sym__unquoted_in_list_token4, - ACTIONS(5896), 1, + ACTIONS(5905), 1, anon_sym_RBRACK, - ACTIONS(5899), 1, + ACTIONS(5908), 1, sym_raw_string_begin, STATE(2917), 1, sym_comment, - ACTIONS(5894), 45, + ACTIONS(5903), 45, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_COMMA, @@ -316921,21 +316921,21 @@ static const uint16_t ts_small_parse_table[] = { [91595] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5464), 1, + ACTIONS(5473), 1, anon_sym_LPAREN2, - ACTIONS(5876), 1, + ACTIONS(5885), 1, anon_sym_RBRACK, - ACTIONS(5882), 1, + ACTIONS(5891), 1, sym__entry_separator, - ACTIONS(6002), 1, + ACTIONS(6011), 1, anon_sym_COMMA, - ACTIONS(6004), 1, + ACTIONS(6013), 1, sym_raw_string_begin, STATE(2923), 1, sym_comment, STATE(7269), 1, sym__expr_parenthesized_immediate, - ACTIONS(6000), 44, + ACTIONS(6009), 44, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, @@ -317268,7 +317268,7 @@ static const uint16_t ts_small_parse_table[] = { [91971] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6006), 1, + ACTIONS(6015), 1, sym__newline, STATE(2929), 2, sym_comment, @@ -317326,15 +317326,15 @@ static const uint16_t ts_small_parse_table[] = { [92034] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5845), 1, + ACTIONS(5854), 1, sym__entry_separator, - ACTIONS(5847), 1, + ACTIONS(5856), 1, sym_raw_string_begin, STATE(2836), 1, aux_sym__multiple_types_repeat1, STATE(2930), 1, sym_comment, - ACTIONS(5841), 47, + ACTIONS(5850), 47, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -317385,18 +317385,18 @@ static const uint16_t ts_small_parse_table[] = { [92099] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6009), 1, + ACTIONS(6018), 1, anon_sym_EQ2, STATE(2931), 1, sym_comment, - ACTIONS(4918), 6, + ACTIONS(4927), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(4916), 43, + ACTIONS(4925), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -317443,7 +317443,7 @@ static const uint16_t ts_small_parse_table[] = { [92162] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5577), 1, + ACTIONS(5586), 1, aux_sym_unquoted_token2, STATE(2932), 1, sym_comment, @@ -317501,9 +317501,9 @@ static const uint16_t ts_small_parse_table[] = { [92225] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6011), 1, + ACTIONS(6020), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6013), 1, + ACTIONS(6022), 1, aux_sym__immediate_decimal_token2, STATE(2933), 1, sym_comment, @@ -317560,9 +317560,9 @@ static const uint16_t ts_small_parse_table[] = { [92290] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6015), 1, + ACTIONS(6024), 1, anon_sym_DOT, - ACTIONS(6017), 1, + ACTIONS(6026), 1, aux_sym__immediate_decimal_token2, STATE(2934), 1, sym_comment, @@ -317734,7 +317734,7 @@ static const uint16_t ts_small_parse_table[] = { [92479] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6019), 1, + ACTIONS(6028), 1, anon_sym_QMARK2, STATE(2937), 1, sym_comment, @@ -317792,7 +317792,7 @@ static const uint16_t ts_small_parse_table[] = { [92542] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6021), 1, + ACTIONS(6030), 1, anon_sym_QMARK2, STATE(2938), 1, sym_comment, @@ -317909,11 +317909,11 @@ static const uint16_t ts_small_parse_table[] = { [92670] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6023), 1, + ACTIONS(6032), 1, anon_sym_DOT_DOT2, STATE(2940), 1, sym_comment, - ACTIONS(6025), 2, + ACTIONS(6034), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, ACTIONS(2144), 16, @@ -318027,9 +318027,9 @@ static const uint16_t ts_small_parse_table[] = { [92800] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6027), 1, + ACTIONS(6036), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6029), 1, + ACTIONS(6038), 1, aux_sym__immediate_decimal_token2, STATE(2942), 1, sym_comment, @@ -318262,9 +318262,9 @@ static const uint16_t ts_small_parse_table[] = { [93058] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6031), 1, + ACTIONS(6040), 1, anon_sym_DOT, - ACTIONS(6033), 1, + ACTIONS(6042), 1, aux_sym__immediate_decimal_token2, STATE(2946), 1, sym_comment, @@ -318376,9 +318376,9 @@ static const uint16_t ts_small_parse_table[] = { [93182] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5942), 1, + ACTIONS(5951), 1, aux_sym__immediate_decimal_token2, - ACTIONS(6035), 1, + ACTIONS(6044), 1, anon_sym_DOT, STATE(2948), 1, sym_comment, @@ -318436,14 +318436,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(2949), 1, sym_comment, - ACTIONS(4932), 6, + ACTIONS(4941), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(4930), 43, + ACTIONS(4939), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -319218,7 +319218,7 @@ static const uint16_t ts_small_parse_table[] = { [94086] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5474), 1, + ACTIONS(5483), 1, aux_sym__unquoted_in_list_token2, STATE(2963), 1, sym_comment, @@ -319333,11 +319333,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(2965), 1, sym_comment, - ACTIONS(6039), 3, + ACTIONS(6048), 3, sym_raw_string_begin, anon_sym_LPAREN2, sym__entry_separator, - ACTIONS(6037), 46, + ACTIONS(6046), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -319387,7 +319387,7 @@ static const uint16_t ts_small_parse_table[] = { [94268] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5995), 1, + ACTIONS(6004), 1, aux_sym__immediate_decimal_token2, STATE(2966), 1, sym_comment, @@ -319502,14 +319502,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(2968), 1, sym_comment, - ACTIONS(5044), 6, + ACTIONS(5053), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(5042), 43, + ACTIONS(5051), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -319612,7 +319612,7 @@ static const uint16_t ts_small_parse_table[] = { [94510] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6041), 1, + ACTIONS(6050), 1, aux_sym__immediate_decimal_token2, STATE(2970), 1, sym_comment, @@ -319671,14 +319671,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(2971), 1, sym_comment, - ACTIONS(5048), 6, + ACTIONS(5057), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(5046), 43, + ACTIONS(5055), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -319783,11 +319783,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(2973), 1, sym_comment, - ACTIONS(6045), 3, + ACTIONS(6054), 3, sym_raw_string_begin, anon_sym_LPAREN2, sym__entry_separator, - ACTIONS(6043), 46, + ACTIONS(6052), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -319893,17 +319893,17 @@ static const uint16_t ts_small_parse_table[] = { [94812] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6049), 1, + ACTIONS(6058), 1, anon_sym_RBRACE, - ACTIONS(6051), 1, + ACTIONS(6060), 1, sym__entry_separator, - ACTIONS(6053), 1, + ACTIONS(6062), 1, sym_raw_string_begin, STATE(2975), 1, sym_comment, STATE(2979), 1, aux_sym__multiple_types_repeat1, - ACTIONS(6047), 45, + ACTIONS(6056), 45, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, @@ -320008,7 +320008,7 @@ static const uint16_t ts_small_parse_table[] = { [94938] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6055), 1, + ACTIONS(6064), 1, anon_sym_LBRACK2, STATE(2977), 1, sym_comment, @@ -320065,21 +320065,21 @@ static const uint16_t ts_small_parse_table[] = { [95000] = 11, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4403), 1, + ACTIONS(4412), 1, anon_sym_LPAREN2, - ACTIONS(4801), 1, + ACTIONS(4810), 1, aux_sym_unquoted_token2, - ACTIONS(6057), 1, + ACTIONS(6066), 1, anon_sym_DOT_DOT2, - ACTIONS(6061), 1, + ACTIONS(6070), 1, sym_filesize_unit, - ACTIONS(6063), 1, + ACTIONS(6072), 1, sym_duration_unit, STATE(2978), 1, sym_comment, STATE(7276), 1, sym__expr_parenthesized_immediate, - ACTIONS(6059), 2, + ACTIONS(6068), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, ACTIONS(1681), 5, @@ -320130,7 +320130,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(2292), 1, sym_raw_string_begin, - ACTIONS(6065), 1, + ACTIONS(6074), 1, sym__entry_separator, STATE(2979), 2, sym_comment, @@ -320243,14 +320243,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(2981), 1, sym_comment, - ACTIONS(4989), 6, + ACTIONS(4998), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(4987), 43, + ACTIONS(4996), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -320521,17 +320521,17 @@ static const uint16_t ts_small_parse_table[] = { [95496] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6051), 1, + ACTIONS(6060), 1, sym__entry_separator, - ACTIONS(6053), 1, + ACTIONS(6062), 1, sym_raw_string_begin, - ACTIONS(6068), 1, + ACTIONS(6077), 1, anon_sym_RBRACE, STATE(2979), 1, aux_sym__multiple_types_repeat1, STATE(2986), 1, sym_comment, - ACTIONS(6047), 45, + ACTIONS(6056), 45, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, @@ -320580,17 +320580,17 @@ static const uint16_t ts_small_parse_table[] = { [95562] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6051), 1, + ACTIONS(6060), 1, sym__entry_separator, - ACTIONS(6053), 1, + ACTIONS(6062), 1, sym_raw_string_begin, - ACTIONS(6070), 1, + ACTIONS(6079), 1, anon_sym_RBRACE, STATE(2979), 1, aux_sym__multiple_types_repeat1, STATE(2987), 1, sym_comment, - ACTIONS(6047), 45, + ACTIONS(6056), 45, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, @@ -320751,9 +320751,9 @@ static const uint16_t ts_small_parse_table[] = { [95748] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6072), 1, + ACTIONS(6081), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6074), 1, + ACTIONS(6083), 1, aux_sym__immediate_decimal_token2, STATE(2990), 1, sym_comment, @@ -320809,7 +320809,7 @@ static const uint16_t ts_small_parse_table[] = { [95812] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6076), 1, + ACTIONS(6085), 1, anon_sym_QMARK2, STATE(2991), 1, sym_comment, @@ -321034,17 +321034,17 @@ static const uint16_t ts_small_parse_table[] = { [96054] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6051), 1, + ACTIONS(6060), 1, sym__entry_separator, - ACTIONS(6053), 1, + ACTIONS(6062), 1, sym_raw_string_begin, - ACTIONS(6078), 1, + ACTIONS(6087), 1, anon_sym_RBRACE, STATE(2979), 1, aux_sym__multiple_types_repeat1, STATE(2995), 1, sym_comment, - ACTIONS(6047), 45, + ACTIONS(6056), 45, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, @@ -321093,17 +321093,17 @@ static const uint16_t ts_small_parse_table[] = { [96120] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6051), 1, + ACTIONS(6060), 1, sym__entry_separator, - ACTIONS(6053), 1, + ACTIONS(6062), 1, sym_raw_string_begin, - ACTIONS(6080), 1, + ACTIONS(6089), 1, anon_sym_RBRACE, STATE(2979), 1, aux_sym__multiple_types_repeat1, STATE(2996), 1, sym_comment, - ACTIONS(6047), 45, + ACTIONS(6056), 45, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, @@ -321154,14 +321154,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(2997), 1, sym_comment, - ACTIONS(5056), 6, + ACTIONS(5065), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(5054), 43, + ACTIONS(5063), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -321208,7 +321208,7 @@ static const uint16_t ts_small_parse_table[] = { [96246] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6082), 1, + ACTIONS(6091), 1, anon_sym_QMARK2, STATE(2998), 1, sym_comment, @@ -321265,7 +321265,7 @@ static const uint16_t ts_small_parse_table[] = { [96308] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6017), 1, + ACTIONS(6026), 1, aux_sym__immediate_decimal_token2, STATE(2999), 1, sym_comment, @@ -321434,17 +321434,17 @@ static const uint16_t ts_small_parse_table[] = { [96490] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6051), 1, + ACTIONS(6060), 1, sym__entry_separator, - ACTIONS(6053), 1, + ACTIONS(6062), 1, sym_raw_string_begin, - ACTIONS(6084), 1, + ACTIONS(6093), 1, anon_sym_RBRACE, STATE(2979), 1, aux_sym__multiple_types_repeat1, STATE(3002), 1, sym_comment, - ACTIONS(6047), 45, + ACTIONS(6056), 45, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, @@ -321551,14 +321551,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(3004), 1, sym_comment, - ACTIONS(5060), 6, + ACTIONS(5069), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(5058), 43, + ACTIONS(5067), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -321605,7 +321605,7 @@ static const uint16_t ts_small_parse_table[] = { [96676] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6086), 1, + ACTIONS(6095), 1, aux_sym__immediate_decimal_token2, STATE(3005), 1, sym_comment, @@ -321664,14 +321664,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(3006), 1, sym_comment, - ACTIONS(6088), 6, + ACTIONS(6097), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(6090), 43, + ACTIONS(6099), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -321718,17 +321718,17 @@ static const uint16_t ts_small_parse_table[] = { [96798] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6051), 1, + ACTIONS(6060), 1, sym__entry_separator, - ACTIONS(6053), 1, + ACTIONS(6062), 1, sym_raw_string_begin, - ACTIONS(6092), 1, + ACTIONS(6101), 1, anon_sym_RBRACE, STATE(2979), 1, aux_sym__multiple_types_repeat1, STATE(3007), 1, sym_comment, - ACTIONS(6047), 45, + ACTIONS(6056), 45, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, @@ -321889,17 +321889,17 @@ static const uint16_t ts_small_parse_table[] = { [96984] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6051), 1, + ACTIONS(6060), 1, sym__entry_separator, - ACTIONS(6053), 1, + ACTIONS(6062), 1, sym_raw_string_begin, - ACTIONS(6094), 1, + ACTIONS(6103), 1, anon_sym_RBRACE, STATE(2979), 1, aux_sym__multiple_types_repeat1, STATE(3010), 1, sym_comment, - ACTIONS(6047), 45, + ACTIONS(6056), 45, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, @@ -322004,9 +322004,9 @@ static const uint16_t ts_small_parse_table[] = { [97110] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6096), 1, + ACTIONS(6105), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6098), 1, + ACTIONS(6107), 1, aux_sym__immediate_decimal_token2, STATE(3012), 1, sym_comment, @@ -322286,17 +322286,17 @@ static const uint16_t ts_small_parse_table[] = { [97414] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6051), 1, + ACTIONS(6060), 1, sym__entry_separator, - ACTIONS(6053), 1, + ACTIONS(6062), 1, sym_raw_string_begin, - ACTIONS(6100), 1, + ACTIONS(6109), 1, anon_sym_RBRACE, STATE(2979), 1, aux_sym__multiple_types_repeat1, STATE(3017), 1, sym_comment, - ACTIONS(6047), 45, + ACTIONS(6056), 45, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, @@ -322345,17 +322345,17 @@ static const uint16_t ts_small_parse_table[] = { [97480] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6051), 1, + ACTIONS(6060), 1, sym__entry_separator, - ACTIONS(6053), 1, + ACTIONS(6062), 1, sym_raw_string_begin, - ACTIONS(6102), 1, + ACTIONS(6111), 1, anon_sym_RBRACE, STATE(2979), 1, aux_sym__multiple_types_repeat1, STATE(3018), 1, sym_comment, - ACTIONS(6047), 45, + ACTIONS(6056), 45, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, @@ -322460,17 +322460,17 @@ static const uint16_t ts_small_parse_table[] = { [97606] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6051), 1, + ACTIONS(6060), 1, sym__entry_separator, - ACTIONS(6053), 1, + ACTIONS(6062), 1, sym_raw_string_begin, - ACTIONS(6104), 1, + ACTIONS(6113), 1, anon_sym_RBRACE, STATE(2979), 1, aux_sym__multiple_types_repeat1, STATE(3020), 1, sym_comment, - ACTIONS(6047), 45, + ACTIONS(6056), 45, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, @@ -322687,9 +322687,9 @@ static const uint16_t ts_small_parse_table[] = { [97852] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6106), 1, + ACTIONS(6115), 1, anon_sym_DOT, - ACTIONS(6108), 1, + ACTIONS(6117), 1, aux_sym__immediate_decimal_token2, STATE(3024), 1, sym_comment, @@ -322857,7 +322857,7 @@ static const uint16_t ts_small_parse_table[] = { [98036] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5973), 1, + ACTIONS(5982), 1, aux_sym__immediate_decimal_token2, STATE(3027), 1, sym_comment, @@ -322970,17 +322970,17 @@ static const uint16_t ts_small_parse_table[] = { [98158] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6051), 1, + ACTIONS(6060), 1, sym__entry_separator, - ACTIONS(6053), 1, + ACTIONS(6062), 1, sym_raw_string_begin, - ACTIONS(6110), 1, + ACTIONS(6119), 1, anon_sym_RBRACE, STATE(2979), 1, aux_sym__multiple_types_repeat1, STATE(3029), 1, sym_comment, - ACTIONS(6047), 45, + ACTIONS(6056), 45, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, @@ -323085,7 +323085,7 @@ static const uint16_t ts_small_parse_table[] = { [98284] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6112), 1, + ACTIONS(6121), 1, aux_sym__immediate_decimal_token2, STATE(3031), 1, sym_comment, @@ -323254,7 +323254,7 @@ static const uint16_t ts_small_parse_table[] = { [98466] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6114), 1, + ACTIONS(6123), 1, sym__newline, STATE(3034), 2, sym_comment, @@ -323752,9 +323752,9 @@ static const uint16_t ts_small_parse_table[] = { [99001] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6117), 1, + ACTIONS(6126), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6119), 1, + ACTIONS(6128), 1, aux_sym__immediate_decimal_token2, STATE(3043), 1, sym_comment, @@ -323979,7 +323979,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__unquoted_in_list_token4, STATE(3047), 1, sym_comment, - ACTIONS(5899), 9, + ACTIONS(5908), 9, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -323989,7 +323989,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(5894), 38, + ACTIONS(5903), 38, anon_sym_DOLLAR, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, @@ -324031,15 +324031,15 @@ static const uint16_t ts_small_parse_table[] = { [99304] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5876), 1, + ACTIONS(5885), 1, anon_sym_RBRACK, - ACTIONS(5882), 1, + ACTIONS(5891), 1, sym__entry_separator, - ACTIONS(5884), 1, + ACTIONS(5893), 1, sym_raw_string_begin, STATE(3048), 1, sym_comment, - ACTIONS(5874), 45, + ACTIONS(5883), 45, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_COMMA, @@ -324090,13 +324090,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(1000), 1, sym__entry_separator, - ACTIONS(5896), 1, + ACTIONS(5905), 1, anon_sym_RBRACK, - ACTIONS(5899), 1, + ACTIONS(5908), 1, sym_raw_string_begin, STATE(3049), 1, sym_comment, - ACTIONS(5894), 45, + ACTIONS(5903), 45, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_COMMA, @@ -324368,13 +324368,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(1935), 1, sym__entry_separator, - ACTIONS(6123), 1, + ACTIONS(6132), 1, anon_sym_RBRACK, - ACTIONS(6126), 1, + ACTIONS(6135), 1, sym_raw_string_begin, STATE(3054), 1, sym_comment, - ACTIONS(6121), 45, + ACTIONS(6130), 45, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_COMMA, @@ -324479,7 +324479,7 @@ static const uint16_t ts_small_parse_table[] = { [99792] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6128), 1, + ACTIONS(6137), 1, anon_sym_LBRACK2, STATE(3056), 1, sym_comment, @@ -324591,7 +324591,7 @@ static const uint16_t ts_small_parse_table[] = { [99914] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5741), 1, + ACTIONS(5750), 1, aux_sym__unquoted_in_list_token2, STATE(3058), 1, sym_comment, @@ -324702,7 +324702,7 @@ static const uint16_t ts_small_parse_table[] = { [100034] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6033), 1, + ACTIONS(6042), 1, aux_sym__immediate_decimal_token2, STATE(3060), 1, sym_comment, @@ -325146,21 +325146,21 @@ static const uint16_t ts_small_parse_table[] = { [100514] = 11, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4403), 1, + ACTIONS(4412), 1, anon_sym_LPAREN2, - ACTIONS(4904), 1, + ACTIONS(4913), 1, aux_sym_unquoted_token2, - ACTIONS(6130), 1, + ACTIONS(6139), 1, anon_sym_DOT_DOT2, - ACTIONS(6134), 1, + ACTIONS(6143), 1, sym_filesize_unit, - ACTIONS(6136), 1, + ACTIONS(6145), 1, sym_duration_unit, STATE(3068), 1, sym_comment, STATE(7290), 1, sym__expr_parenthesized_immediate, - ACTIONS(6132), 2, + ACTIONS(6141), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, ACTIONS(1681), 5, @@ -325538,9 +325538,9 @@ static const uint16_t ts_small_parse_table[] = { [100941] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6138), 1, + ACTIONS(6147), 1, anon_sym_DOT, - ACTIONS(6140), 1, + ACTIONS(6149), 1, aux_sym__immediate_decimal_token2, STATE(3075), 1, sym_comment, @@ -326036,7 +326036,7 @@ static const uint16_t ts_small_parse_table[] = { [101478] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6108), 1, + ACTIONS(6117), 1, aux_sym__immediate_decimal_token2, STATE(3084), 1, sym_comment, @@ -326257,7 +326257,7 @@ static const uint16_t ts_small_parse_table[] = { [101716] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6142), 1, + ACTIONS(6151), 1, sym__newline, STATE(3088), 2, sym_comment, @@ -326368,15 +326368,15 @@ static const uint16_t ts_small_parse_table[] = { [101836] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6051), 1, + ACTIONS(6060), 1, sym__entry_separator, - ACTIONS(6053), 1, + ACTIONS(6062), 1, sym_raw_string_begin, STATE(2979), 1, aux_sym__multiple_types_repeat1, STATE(3090), 1, sym_comment, - ACTIONS(6047), 45, + ACTIONS(6056), 45, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, @@ -326535,7 +326535,7 @@ static const uint16_t ts_small_parse_table[] = { [102017] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6145), 1, + ACTIONS(6154), 1, aux_sym__immediate_decimal_token2, STATE(3093), 1, sym_comment, @@ -328076,7 +328076,7 @@ static const uint16_t ts_small_parse_table[] = { [103671] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6147), 1, + ACTIONS(6156), 1, aux_sym__immediate_decimal_token2, STATE(3121), 1, sym_comment, @@ -328188,7 +328188,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(3123), 1, sym_comment, - ACTIONS(6151), 14, + ACTIONS(6160), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -328203,7 +328203,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(6149), 33, + ACTIONS(6158), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -328240,15 +328240,15 @@ static const uint16_t ts_small_parse_table[] = { [103848] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3024), 1, + ACTIONS(3031), 1, anon_sym_DOT_DOT2, - ACTIONS(6153), 1, + ACTIONS(6162), 1, sym_filesize_unit, - ACTIONS(6155), 1, + ACTIONS(6164), 1, sym_duration_unit, STATE(3124), 1, sym_comment, - ACTIONS(3026), 2, + ACTIONS(3033), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, ACTIONS(1681), 5, @@ -328460,7 +328460,7 @@ static const uint16_t ts_small_parse_table[] = { [104088] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6157), 1, + ACTIONS(6166), 1, aux_sym__immediate_decimal_token2, STATE(3128), 1, sym_comment, @@ -328569,9 +328569,9 @@ static const uint16_t ts_small_parse_table[] = { [104206] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6159), 1, + ACTIONS(6168), 1, anon_sym_DOT, - ACTIONS(6161), 1, + ACTIONS(6170), 1, aux_sym__immediate_decimal_token2, STATE(3130), 1, sym_comment, @@ -328789,7 +328789,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(3134), 1, sym_comment, - ACTIONS(5874), 14, + ACTIONS(5883), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -328804,7 +328804,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(5884), 33, + ACTIONS(5893), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -329003,11 +329003,11 @@ static const uint16_t ts_small_parse_table[] = { [104674] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6163), 1, + ACTIONS(6172), 1, anon_sym_COMMA, STATE(3138), 1, sym_comment, - ACTIONS(6000), 14, + ACTIONS(6009), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -329022,7 +329022,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(6004), 32, + ACTIONS(6013), 32, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -329060,7 +329060,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(3139), 1, sym_comment, - ACTIONS(6167), 14, + ACTIONS(6176), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -329075,7 +329075,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(6165), 33, + ACTIONS(6174), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -329114,7 +329114,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(3140), 1, sym_comment, - ACTIONS(6171), 14, + ACTIONS(6180), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -329129,7 +329129,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(6169), 33, + ACTIONS(6178), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -329384,7 +329384,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(3145), 1, sym_comment, - ACTIONS(6175), 14, + ACTIONS(6184), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -329399,7 +329399,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(6173), 33, + ACTIONS(6182), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -329438,7 +329438,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(3146), 1, sym_comment, - ACTIONS(5894), 14, + ACTIONS(5903), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -329453,7 +329453,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(5899), 33, + ACTIONS(5908), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -330086,7 +330086,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(3158), 1, sym_comment, - ACTIONS(6121), 14, + ACTIONS(6130), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -330101,7 +330101,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(6126), 33, + ACTIONS(6135), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -330356,7 +330356,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(3163), 1, sym_comment, - ACTIONS(6175), 14, + ACTIONS(6184), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -330371,7 +330371,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(6173), 33, + ACTIONS(6182), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -330410,7 +330410,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(3164), 1, sym_comment, - ACTIONS(5713), 14, + ACTIONS(5722), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -330425,7 +330425,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(5720), 33, + ACTIONS(5729), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -330572,7 +330572,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(3167), 1, sym_comment, - ACTIONS(6037), 14, + ACTIONS(6046), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -330587,7 +330587,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(6039), 33, + ACTIONS(6048), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -330626,7 +330626,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(3168), 1, sym_comment, - ACTIONS(6043), 14, + ACTIONS(6052), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -330641,7 +330641,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(6045), 33, + ACTIONS(6054), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -330786,7 +330786,7 @@ static const uint16_t ts_small_parse_table[] = { [106590] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6140), 1, + ACTIONS(6149), 1, aux_sym__immediate_decimal_token2, STATE(3171), 1, sym_comment, @@ -330843,7 +330843,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(3172), 1, sym_comment, - ACTIONS(6179), 14, + ACTIONS(6188), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -330858,7 +330858,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(6177), 33, + ACTIONS(6186), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -330895,9 +330895,9 @@ static const uint16_t ts_small_parse_table[] = { [106708] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6181), 1, + ACTIONS(6190), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6183), 1, + ACTIONS(6192), 1, aux_sym__immediate_decimal_token2, STATE(3173), 1, sym_comment, @@ -331763,7 +331763,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(3189), 1, sym_comment, - ACTIONS(6187), 14, + ACTIONS(6196), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -331778,7 +331778,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(6185), 33, + ACTIONS(6194), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -332195,11 +332195,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, ACTIONS(1875), 1, aux_sym_unquoted_token2, - ACTIONS(6189), 1, + ACTIONS(6198), 1, anon_sym_DOT_DOT2, STATE(3197), 1, sym_comment, - ACTIONS(6191), 2, + ACTIONS(6200), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, ACTIONS(1865), 5, @@ -332250,7 +332250,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(3198), 1, sym_comment, - ACTIONS(6195), 14, + ACTIONS(6204), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -332265,7 +332265,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(6193), 32, + ACTIONS(6202), 32, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -332305,11 +332305,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_unquoted_token2, ACTIONS(1788), 1, anon_sym_LPAREN2, - ACTIONS(6197), 1, + ACTIONS(6206), 1, anon_sym_DOT_DOT2, STATE(3199), 1, sym_comment, - ACTIONS(6199), 2, + ACTIONS(6208), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, ACTIONS(1786), 5, @@ -332358,7 +332358,7 @@ static const uint16_t ts_small_parse_table[] = { [108289] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6161), 1, + ACTIONS(6170), 1, aux_sym__immediate_decimal_token2, STATE(3200), 1, sym_comment, @@ -332518,7 +332518,7 @@ static const uint16_t ts_small_parse_table[] = { [108462] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6201), 1, + ACTIONS(6210), 1, aux_sym__immediate_decimal_token2, STATE(3203), 1, sym_comment, @@ -332572,9 +332572,9 @@ static const uint16_t ts_small_parse_table[] = { [108521] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6203), 1, + ACTIONS(6212), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6205), 1, + ACTIONS(6214), 1, aux_sym__immediate_decimal_token2, STATE(3204), 1, sym_comment, @@ -332626,13 +332626,13 @@ static const uint16_t ts_small_parse_table[] = { [108581] = 14, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6207), 1, + ACTIONS(6216), 1, anon_sym_COLON, - ACTIONS(6209), 1, + ACTIONS(6218), 1, anon_sym_LBRACK, - ACTIONS(6215), 1, + ACTIONS(6224), 1, anon_sym_list, - ACTIONS(6217), 1, + ACTIONS(6226), 1, anon_sym_LBRACE, STATE(3205), 1, sym_comment, @@ -332646,14 +332646,14 @@ static const uint16_t ts_small_parse_table[] = { sym__type_annotation, STATE(7643), 1, sym__one_type, - ACTIONS(6213), 2, + ACTIONS(6222), 2, anon_sym_table, anon_sym_record, STATE(6414), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6211), 31, + ACTIONS(6220), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -332744,11 +332744,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_unquoted_token2, ACTIONS(1788), 1, anon_sym_LPAREN2, - ACTIONS(6219), 1, + ACTIONS(6228), 1, anon_sym_DOT_DOT2, STATE(3207), 1, sym_comment, - ACTIONS(6221), 2, + ACTIONS(6230), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, ACTIONS(1786), 5, @@ -332800,11 +332800,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, ACTIONS(1875), 1, aux_sym_unquoted_token2, - ACTIONS(6223), 1, + ACTIONS(6232), 1, anon_sym_DOT_DOT2, STATE(3208), 1, sym_comment, - ACTIONS(6225), 2, + ACTIONS(6234), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, ACTIONS(1865), 5, @@ -332852,13 +332852,13 @@ static const uint16_t ts_small_parse_table[] = { [108841] = 14, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6207), 1, + ACTIONS(6216), 1, anon_sym_COLON, - ACTIONS(6209), 1, + ACTIONS(6218), 1, anon_sym_LBRACK, - ACTIONS(6215), 1, + ACTIONS(6224), 1, anon_sym_list, - ACTIONS(6217), 1, + ACTIONS(6226), 1, anon_sym_LBRACE, STATE(3209), 1, sym_comment, @@ -332872,14 +332872,14 @@ static const uint16_t ts_small_parse_table[] = { sym__type_annotation, STATE(7643), 1, sym__one_type, - ACTIONS(6213), 2, + ACTIONS(6222), 2, anon_sym_table, anon_sym_record, STATE(6414), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6211), 31, + ACTIONS(6220), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -332914,13 +332914,13 @@ static const uint16_t ts_small_parse_table[] = { [108917] = 14, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6207), 1, + ACTIONS(6216), 1, anon_sym_COLON, - ACTIONS(6209), 1, + ACTIONS(6218), 1, anon_sym_LBRACK, - ACTIONS(6215), 1, + ACTIONS(6224), 1, anon_sym_list, - ACTIONS(6217), 1, + ACTIONS(6226), 1, anon_sym_LBRACE, STATE(3210), 1, sym_comment, @@ -332934,14 +332934,14 @@ static const uint16_t ts_small_parse_table[] = { sym__type_annotation, STATE(7643), 1, sym__one_type, - ACTIONS(6213), 2, + ACTIONS(6222), 2, anon_sym_table, anon_sym_record, STATE(6414), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6211), 31, + ACTIONS(6220), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -333132,13 +333132,13 @@ static const uint16_t ts_small_parse_table[] = { [109161] = 14, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6207), 1, + ACTIONS(6216), 1, anon_sym_COLON, - ACTIONS(6209), 1, + ACTIONS(6218), 1, anon_sym_LBRACK, - ACTIONS(6215), 1, + ACTIONS(6224), 1, anon_sym_list, - ACTIONS(6217), 1, + ACTIONS(6226), 1, anon_sym_LBRACE, STATE(3214), 1, sym_comment, @@ -333152,14 +333152,14 @@ static const uint16_t ts_small_parse_table[] = { sym__type_annotation, STATE(7643), 1, sym__one_type, - ACTIONS(6213), 2, + ACTIONS(6222), 2, anon_sym_table, anon_sym_record, STATE(6414), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6211), 31, + ACTIONS(6220), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -333194,13 +333194,13 @@ static const uint16_t ts_small_parse_table[] = { [109237] = 14, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6207), 1, + ACTIONS(6216), 1, anon_sym_COLON, - ACTIONS(6209), 1, + ACTIONS(6218), 1, anon_sym_LBRACK, - ACTIONS(6215), 1, + ACTIONS(6224), 1, anon_sym_list, - ACTIONS(6217), 1, + ACTIONS(6226), 1, anon_sym_LBRACE, STATE(3215), 1, sym_comment, @@ -333214,14 +333214,14 @@ static const uint16_t ts_small_parse_table[] = { sym__type_annotation, STATE(7643), 1, sym__one_type, - ACTIONS(6213), 2, + ACTIONS(6222), 2, anon_sym_table, anon_sym_record, STATE(6414), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6211), 31, + ACTIONS(6220), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -333256,13 +333256,13 @@ static const uint16_t ts_small_parse_table[] = { [109313] = 14, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6207), 1, + ACTIONS(6216), 1, anon_sym_COLON, - ACTIONS(6209), 1, + ACTIONS(6218), 1, anon_sym_LBRACK, - ACTIONS(6215), 1, + ACTIONS(6224), 1, anon_sym_list, - ACTIONS(6217), 1, + ACTIONS(6226), 1, anon_sym_LBRACE, STATE(3216), 1, sym_comment, @@ -333276,14 +333276,14 @@ static const uint16_t ts_small_parse_table[] = { sym__type_annotation, STATE(7643), 1, sym__one_type, - ACTIONS(6213), 2, + ACTIONS(6222), 2, anon_sym_table, anon_sym_record, STATE(6414), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6211), 31, + ACTIONS(6220), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -333318,9 +333318,9 @@ static const uint16_t ts_small_parse_table[] = { [109389] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6227), 1, + ACTIONS(6236), 1, anon_sym_DOT, - ACTIONS(6229), 1, + ACTIONS(6238), 1, aux_sym__immediate_decimal_token2, STATE(3217), 1, sym_comment, @@ -333372,15 +333372,15 @@ static const uint16_t ts_small_parse_table[] = { [109449] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3048), 1, + ACTIONS(3055), 1, anon_sym_DOT_DOT2, - ACTIONS(6231), 1, + ACTIONS(6240), 1, sym_filesize_unit, - ACTIONS(6233), 1, + ACTIONS(6242), 1, sym_duration_unit, STATE(3218), 1, sym_comment, - ACTIONS(3050), 2, + ACTIONS(3057), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, ACTIONS(1681), 5, @@ -333428,13 +333428,13 @@ static const uint16_t ts_small_parse_table[] = { [109513] = 14, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6207), 1, + ACTIONS(6216), 1, anon_sym_COLON, - ACTIONS(6209), 1, + ACTIONS(6218), 1, anon_sym_LBRACK, - ACTIONS(6215), 1, + ACTIONS(6224), 1, anon_sym_list, - ACTIONS(6235), 1, + ACTIONS(6244), 1, anon_sym_LBRACE, STATE(3219), 1, sym_comment, @@ -333448,14 +333448,14 @@ static const uint16_t ts_small_parse_table[] = { sym__type_annotation, STATE(7643), 1, sym__one_type, - ACTIONS(6213), 2, + ACTIONS(6222), 2, anon_sym_table, anon_sym_record, STATE(6414), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6211), 31, + ACTIONS(6220), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -333490,13 +333490,13 @@ static const uint16_t ts_small_parse_table[] = { [109589] = 14, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6207), 1, + ACTIONS(6216), 1, anon_sym_COLON, - ACTIONS(6209), 1, + ACTIONS(6218), 1, anon_sym_LBRACK, - ACTIONS(6215), 1, + ACTIONS(6224), 1, anon_sym_list, - ACTIONS(6235), 1, + ACTIONS(6244), 1, anon_sym_LBRACE, STATE(3220), 1, sym_comment, @@ -333510,14 +333510,14 @@ static const uint16_t ts_small_parse_table[] = { sym__type_annotation, STATE(7643), 1, sym__one_type, - ACTIONS(6213), 2, + ACTIONS(6222), 2, anon_sym_table, anon_sym_record, STATE(6414), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6211), 31, + ACTIONS(6220), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -333552,13 +333552,13 @@ static const uint16_t ts_small_parse_table[] = { [109665] = 14, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6207), 1, + ACTIONS(6216), 1, anon_sym_COLON, - ACTIONS(6209), 1, + ACTIONS(6218), 1, anon_sym_LBRACK, - ACTIONS(6215), 1, + ACTIONS(6224), 1, anon_sym_list, - ACTIONS(6235), 1, + ACTIONS(6244), 1, anon_sym_LBRACE, STATE(3221), 1, sym_comment, @@ -333572,14 +333572,14 @@ static const uint16_t ts_small_parse_table[] = { sym__type_annotation, STATE(7643), 1, sym__one_type, - ACTIONS(6213), 2, + ACTIONS(6222), 2, anon_sym_table, anon_sym_record, STATE(6414), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6211), 31, + ACTIONS(6220), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -333614,13 +333614,13 @@ static const uint16_t ts_small_parse_table[] = { [109741] = 14, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6207), 1, + ACTIONS(6216), 1, anon_sym_COLON, - ACTIONS(6209), 1, + ACTIONS(6218), 1, anon_sym_LBRACK, - ACTIONS(6215), 1, + ACTIONS(6224), 1, anon_sym_list, - ACTIONS(6235), 1, + ACTIONS(6244), 1, anon_sym_LBRACE, STATE(3222), 1, sym_comment, @@ -333634,14 +333634,14 @@ static const uint16_t ts_small_parse_table[] = { sym__type_annotation, STATE(7643), 1, sym__one_type, - ACTIONS(6213), 2, + ACTIONS(6222), 2, anon_sym_table, anon_sym_record, STATE(6414), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6211), 31, + ACTIONS(6220), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -333676,13 +333676,13 @@ static const uint16_t ts_small_parse_table[] = { [109817] = 14, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6207), 1, + ACTIONS(6216), 1, anon_sym_COLON, - ACTIONS(6209), 1, + ACTIONS(6218), 1, anon_sym_LBRACK, - ACTIONS(6215), 1, + ACTIONS(6224), 1, anon_sym_list, - ACTIONS(6235), 1, + ACTIONS(6244), 1, anon_sym_LBRACE, STATE(3223), 1, sym_comment, @@ -333696,14 +333696,14 @@ static const uint16_t ts_small_parse_table[] = { sym__type_annotation, STATE(7643), 1, sym__one_type, - ACTIONS(6213), 2, + ACTIONS(6222), 2, anon_sym_table, anon_sym_record, STATE(6414), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6211), 31, + ACTIONS(6220), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -333738,13 +333738,13 @@ static const uint16_t ts_small_parse_table[] = { [109893] = 14, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6207), 1, + ACTIONS(6216), 1, anon_sym_COLON, - ACTIONS(6209), 1, + ACTIONS(6218), 1, anon_sym_LBRACK, - ACTIONS(6215), 1, + ACTIONS(6224), 1, anon_sym_list, - ACTIONS(6235), 1, + ACTIONS(6244), 1, anon_sym_LBRACE, STATE(3224), 1, sym_comment, @@ -333758,14 +333758,14 @@ static const uint16_t ts_small_parse_table[] = { sym__type_annotation, STATE(7643), 1, sym__one_type, - ACTIONS(6213), 2, + ACTIONS(6222), 2, anon_sym_table, anon_sym_record, STATE(6414), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6211), 31, + ACTIONS(6220), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -333800,13 +333800,13 @@ static const uint16_t ts_small_parse_table[] = { [109969] = 14, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6207), 1, + ACTIONS(6216), 1, anon_sym_COLON, - ACTIONS(6209), 1, + ACTIONS(6218), 1, anon_sym_LBRACK, - ACTIONS(6215), 1, + ACTIONS(6224), 1, anon_sym_list, - ACTIONS(6235), 1, + ACTIONS(6244), 1, anon_sym_LBRACE, STATE(3225), 1, sym_comment, @@ -333820,14 +333820,14 @@ static const uint16_t ts_small_parse_table[] = { sym__type_annotation, STATE(7643), 1, sym__one_type, - ACTIONS(6213), 2, + ACTIONS(6222), 2, anon_sym_table, anon_sym_record, STATE(6414), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6211), 31, + ACTIONS(6220), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -333862,13 +333862,13 @@ static const uint16_t ts_small_parse_table[] = { [110045] = 14, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6207), 1, + ACTIONS(6216), 1, anon_sym_COLON, - ACTIONS(6209), 1, + ACTIONS(6218), 1, anon_sym_LBRACK, - ACTIONS(6215), 1, + ACTIONS(6224), 1, anon_sym_list, - ACTIONS(6235), 1, + ACTIONS(6244), 1, anon_sym_LBRACE, STATE(3226), 1, sym_comment, @@ -333882,14 +333882,14 @@ static const uint16_t ts_small_parse_table[] = { sym__type_annotation, STATE(7643), 1, sym__one_type, - ACTIONS(6213), 2, + ACTIONS(6222), 2, anon_sym_table, anon_sym_record, STATE(6414), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6211), 31, + ACTIONS(6220), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -333924,7 +333924,7 @@ static const uint16_t ts_small_parse_table[] = { [110121] = 9, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4807), 1, + ACTIONS(4816), 1, anon_sym_DOT2, STATE(1414), 1, aux_sym_cell_path_repeat1, @@ -333940,7 +333940,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(6237), 13, + ACTIONS(6246), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -333981,13 +333981,13 @@ static const uint16_t ts_small_parse_table[] = { [110187] = 14, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6207), 1, + ACTIONS(6216), 1, anon_sym_COLON, - ACTIONS(6209), 1, + ACTIONS(6218), 1, anon_sym_LBRACK, - ACTIONS(6215), 1, + ACTIONS(6224), 1, anon_sym_list, - ACTIONS(6217), 1, + ACTIONS(6226), 1, anon_sym_LBRACE, STATE(3228), 1, sym_comment, @@ -334001,14 +334001,14 @@ static const uint16_t ts_small_parse_table[] = { sym__type_annotation, STATE(7643), 1, sym__one_type, - ACTIONS(6213), 2, + ACTIONS(6222), 2, anon_sym_table, anon_sym_record, STATE(6414), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6211), 31, + ACTIONS(6220), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -334043,13 +334043,13 @@ static const uint16_t ts_small_parse_table[] = { [110263] = 14, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6207), 1, + ACTIONS(6216), 1, anon_sym_COLON, - ACTIONS(6209), 1, + ACTIONS(6218), 1, anon_sym_LBRACK, - ACTIONS(6215), 1, + ACTIONS(6224), 1, anon_sym_list, - ACTIONS(6217), 1, + ACTIONS(6226), 1, anon_sym_LBRACE, STATE(3229), 1, sym_comment, @@ -334063,14 +334063,14 @@ static const uint16_t ts_small_parse_table[] = { sym__type_annotation, STATE(7643), 1, sym__one_type, - ACTIONS(6213), 2, + ACTIONS(6222), 2, anon_sym_table, anon_sym_record, STATE(6414), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6211), 31, + ACTIONS(6220), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -334105,7 +334105,7 @@ static const uint16_t ts_small_parse_table[] = { [110339] = 9, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5169), 1, + ACTIONS(5178), 1, anon_sym_DOT2, STATE(1684), 1, aux_sym_cell_path_repeat1, @@ -334121,7 +334121,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(6237), 12, + ACTIONS(6246), 12, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -334161,9 +334161,9 @@ static const uint16_t ts_small_parse_table[] = { [110404] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6240), 1, + ACTIONS(6249), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6242), 1, + ACTIONS(6251), 1, aux_sym__immediate_decimal_token2, STATE(3231), 1, sym_comment, @@ -334214,9 +334214,9 @@ static const uint16_t ts_small_parse_table[] = { [110463] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6244), 1, + ACTIONS(6253), 1, anon_sym_DOT, - ACTIONS(6246), 1, + ACTIONS(6255), 1, aux_sym__immediate_decimal_token2, STATE(3232), 1, sym_comment, @@ -334267,7 +334267,7 @@ static const uint16_t ts_small_parse_table[] = { [110522] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6229), 1, + ACTIONS(6238), 1, aux_sym__immediate_decimal_token2, STATE(3233), 1, sym_comment, @@ -334319,7 +334319,7 @@ static const uint16_t ts_small_parse_table[] = { [110579] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6248), 1, + ACTIONS(6257), 1, aux_sym__immediate_decimal_token2, STATE(3234), 1, sym_comment, @@ -334733,7 +334733,7 @@ static const uint16_t ts_small_parse_table[] = { [111038] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6246), 1, + ACTIONS(6255), 1, aux_sym__immediate_decimal_token2, STATE(3242), 1, sym_comment, @@ -334784,7 +334784,7 @@ static const uint16_t ts_small_parse_table[] = { [111094] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6250), 1, + ACTIONS(6259), 1, aux_sym__immediate_decimal_token2, STATE(3243), 1, sym_comment, @@ -335035,11 +335035,11 @@ static const uint16_t ts_small_parse_table[] = { [111366] = 12, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6215), 1, + ACTIONS(6224), 1, anon_sym_list, - ACTIONS(6252), 1, + ACTIONS(6261), 1, sym__newline, - ACTIONS(6254), 1, + ACTIONS(6263), 1, anon_sym_RBRACK, STATE(3248), 1, sym_comment, @@ -335051,14 +335051,14 @@ static const uint16_t ts_small_parse_table[] = { sym__one_type, STATE(7418), 1, sym__type_annotation, - ACTIONS(6213), 2, + ACTIONS(6222), 2, anon_sym_table, anon_sym_record, STATE(6414), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6211), 31, + ACTIONS(6220), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -335400,9 +335400,9 @@ static const uint16_t ts_small_parse_table[] = { [111775] = 11, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6215), 1, + ACTIONS(6224), 1, anon_sym_list, - ACTIONS(6252), 1, + ACTIONS(6261), 1, sym__newline, STATE(3255), 1, sym_comment, @@ -335414,14 +335414,14 @@ static const uint16_t ts_small_parse_table[] = { sym__one_type, STATE(7418), 1, sym__type_annotation, - ACTIONS(6213), 2, + ACTIONS(6222), 2, anon_sym_table, anon_sym_record, STATE(6414), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6211), 31, + ACTIONS(6220), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -336011,7 +336011,7 @@ static const uint16_t ts_small_parse_table[] = { [112457] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4801), 1, + ACTIONS(4810), 1, aux_sym_unquoted_token2, STATE(3267), 1, sym_comment, @@ -336159,38 +336159,38 @@ static const uint16_t ts_small_parse_table[] = { [112618] = 12, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6258), 1, + ACTIONS(6267), 1, anon_sym_DASH2, - ACTIONS(6270), 1, + ACTIONS(6279), 1, anon_sym_PLUS2, STATE(3270), 1, sym_comment, - ACTIONS(6256), 2, + ACTIONS(6265), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6262), 2, + ACTIONS(6271), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6266), 2, + ACTIONS(6275), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6268), 2, + ACTIONS(6277), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6272), 2, + ACTIONS(6281), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6260), 4, + ACTIONS(6269), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6264), 4, + ACTIONS(6273), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5205), 21, + ACTIONS(5214), 21, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -336215,45 +336215,45 @@ static const uint16_t ts_small_parse_table[] = { [112686] = 15, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6258), 1, + ACTIONS(6267), 1, anon_sym_DASH2, - ACTIONS(6270), 1, + ACTIONS(6279), 1, anon_sym_PLUS2, - ACTIONS(6276), 1, + ACTIONS(6285), 1, anon_sym_bit_DASHand2, - ACTIONS(6278), 1, + ACTIONS(6287), 1, anon_sym_bit_DASHxor2, STATE(3271), 1, sym_comment, - ACTIONS(6256), 2, + ACTIONS(6265), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6262), 2, + ACTIONS(6271), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6266), 2, + ACTIONS(6275), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6268), 2, + ACTIONS(6277), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6272), 2, + ACTIONS(6281), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6274), 2, + ACTIONS(6283), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6260), 4, + ACTIONS(6269), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6264), 4, + ACTIONS(6273), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5205), 17, + ACTIONS(5214), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -336274,11 +336274,11 @@ static const uint16_t ts_small_parse_table[] = { [112760] = 10, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6215), 1, + ACTIONS(6224), 1, anon_sym_list, - ACTIONS(6280), 1, + ACTIONS(6289), 1, anon_sym_GT2, - ACTIONS(6282), 1, + ACTIONS(6291), 1, anon_sym_AT, STATE(3272), 1, sym_comment, @@ -336286,14 +336286,14 @@ static const uint16_t ts_small_parse_table[] = { sym__all_type, STATE(7631), 1, sym_param_cmd, - ACTIONS(6213), 2, + ACTIONS(6222), 2, anon_sym_table, anon_sym_record, STATE(7256), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6211), 31, + ACTIONS(6220), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -336330,7 +336330,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(3273), 1, sym_comment, - ACTIONS(6284), 41, + ACTIONS(6293), 41, sym__newline, anon_sym_SEMI, anon_sym_COLON, @@ -336375,7 +336375,7 @@ static const uint16_t ts_small_parse_table[] = { [112874] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4904), 1, + ACTIONS(4913), 1, aux_sym_unquoted_token2, STATE(3274), 1, sym_comment, @@ -336424,11 +336424,11 @@ static const uint16_t ts_small_parse_table[] = { [112928] = 10, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6215), 1, + ACTIONS(6224), 1, anon_sym_list, - ACTIONS(6282), 1, + ACTIONS(6291), 1, anon_sym_AT, - ACTIONS(6286), 1, + ACTIONS(6295), 1, anon_sym_GT2, STATE(3275), 1, sym_comment, @@ -336436,14 +336436,14 @@ static const uint16_t ts_small_parse_table[] = { sym__all_type, STATE(7623), 1, sym_param_cmd, - ACTIONS(6213), 2, + ACTIONS(6222), 2, anon_sym_table, anon_sym_record, STATE(7256), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6211), 31, + ACTIONS(6220), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -336480,7 +336480,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(3276), 1, sym_comment, - ACTIONS(6288), 41, + ACTIONS(6297), 41, sym__newline, anon_sym_SEMI, anon_sym_COLON, @@ -336527,7 +336527,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(3277), 1, sym_comment, - ACTIONS(6290), 41, + ACTIONS(6299), 41, sym__newline, anon_sym_SEMI, anon_sym_COLON, @@ -336574,7 +336574,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(3278), 1, sym_comment, - ACTIONS(6292), 41, + ACTIONS(6301), 41, sym__newline, anon_sym_SEMI, anon_sym_COLON, @@ -336619,32 +336619,32 @@ static const uint16_t ts_small_parse_table[] = { [113142] = 12, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5305), 1, + ACTIONS(5314), 1, sym__newline, - ACTIONS(6294), 1, + ACTIONS(6303), 1, anon_sym_DASH2, - ACTIONS(6302), 1, + ACTIONS(6311), 1, anon_sym_PLUS2, STATE(3279), 1, sym_comment, STATE(3293), 1, aux_sym_shebang_repeat1, - ACTIONS(5253), 2, + ACTIONS(5262), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6296), 2, + ACTIONS(6305), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6298), 2, + ACTIONS(6307), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6300), 2, + ACTIONS(6309), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6304), 2, + ACTIONS(6313), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5251), 27, + ACTIONS(5260), 27, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -336675,26 +336675,26 @@ static const uint16_t ts_small_parse_table[] = { [113210] = 9, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5305), 1, + ACTIONS(5314), 1, sym__newline, STATE(3280), 1, sym_comment, STATE(3295), 1, aux_sym_shebang_repeat1, - ACTIONS(6296), 2, + ACTIONS(6305), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6298), 2, + ACTIONS(6307), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6300), 2, + ACTIONS(6309), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5253), 3, + ACTIONS(5262), 3, anon_sym_GT2, anon_sym_LT2, anon_sym_PLUS2, - ACTIONS(5251), 30, + ACTIONS(5260), 30, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -336728,37 +336728,37 @@ static const uint16_t ts_small_parse_table[] = { [113272] = 13, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5305), 1, + ACTIONS(5314), 1, sym__newline, - ACTIONS(6294), 1, + ACTIONS(6303), 1, anon_sym_DASH2, - ACTIONS(6302), 1, + ACTIONS(6311), 1, anon_sym_PLUS2, STATE(3281), 1, sym_comment, STATE(3297), 1, aux_sym_shebang_repeat1, - ACTIONS(6296), 2, + ACTIONS(6305), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6298), 2, + ACTIONS(6307), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6300), 2, + ACTIONS(6309), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6304), 2, + ACTIONS(6313), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6306), 2, + ACTIONS(6315), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6308), 4, + ACTIONS(6317), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5251), 23, + ACTIONS(5260), 23, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -336785,22 +336785,22 @@ static const uint16_t ts_small_parse_table[] = { [113342] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5305), 1, + ACTIONS(5314), 1, sym__newline, STATE(3282), 1, sym_comment, STATE(3299), 1, aux_sym_shebang_repeat1, - ACTIONS(6298), 2, + ACTIONS(6307), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5253), 5, + ACTIONS(5262), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(5251), 32, + ACTIONS(5260), 32, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -336836,51 +336836,51 @@ static const uint16_t ts_small_parse_table[] = { [113400] = 18, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5305), 1, + ACTIONS(5314), 1, sym__newline, - ACTIONS(6294), 1, + ACTIONS(6303), 1, anon_sym_DASH2, - ACTIONS(6302), 1, + ACTIONS(6311), 1, anon_sym_PLUS2, - ACTIONS(6314), 1, + ACTIONS(6323), 1, anon_sym_bit_DASHand2, - ACTIONS(6316), 1, + ACTIONS(6325), 1, anon_sym_bit_DASHxor2, - ACTIONS(6318), 1, + ACTIONS(6327), 1, anon_sym_bit_DASHor2, STATE(3283), 1, sym_comment, STATE(3301), 1, aux_sym_shebang_repeat1, - ACTIONS(6296), 2, + ACTIONS(6305), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6298), 2, + ACTIONS(6307), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6300), 2, + ACTIONS(6309), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6304), 2, + ACTIONS(6313), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6306), 2, + ACTIONS(6315), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6312), 2, + ACTIONS(6321), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6308), 4, + ACTIONS(6317), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6310), 4, + ACTIONS(6319), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5251), 14, + ACTIONS(5260), 14, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -336898,53 +336898,53 @@ static const uint16_t ts_small_parse_table[] = { [113480] = 19, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5305), 1, + ACTIONS(5314), 1, sym__newline, - ACTIONS(6294), 1, + ACTIONS(6303), 1, anon_sym_DASH2, - ACTIONS(6302), 1, + ACTIONS(6311), 1, anon_sym_PLUS2, - ACTIONS(6314), 1, + ACTIONS(6323), 1, anon_sym_bit_DASHand2, - ACTIONS(6316), 1, + ACTIONS(6325), 1, anon_sym_bit_DASHxor2, - ACTIONS(6318), 1, + ACTIONS(6327), 1, anon_sym_bit_DASHor2, - ACTIONS(6320), 1, + ACTIONS(6329), 1, anon_sym_and2, STATE(3284), 1, sym_comment, STATE(3303), 1, aux_sym_shebang_repeat1, - ACTIONS(6296), 2, + ACTIONS(6305), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6298), 2, + ACTIONS(6307), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6300), 2, + ACTIONS(6309), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6304), 2, + ACTIONS(6313), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6306), 2, + ACTIONS(6315), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6312), 2, + ACTIONS(6321), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6308), 4, + ACTIONS(6317), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6310), 4, + ACTIONS(6319), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5251), 13, + ACTIONS(5260), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -336961,55 +336961,55 @@ static const uint16_t ts_small_parse_table[] = { [113562] = 20, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3802), 1, + ACTIONS(3811), 1, sym__newline, - ACTIONS(6294), 1, + ACTIONS(6303), 1, anon_sym_DASH2, - ACTIONS(6302), 1, + ACTIONS(6311), 1, anon_sym_PLUS2, - ACTIONS(6314), 1, + ACTIONS(6323), 1, anon_sym_bit_DASHand2, - ACTIONS(6316), 1, + ACTIONS(6325), 1, anon_sym_bit_DASHxor2, - ACTIONS(6318), 1, + ACTIONS(6327), 1, anon_sym_bit_DASHor2, - ACTIONS(6320), 1, + ACTIONS(6329), 1, anon_sym_and2, - ACTIONS(6322), 1, + ACTIONS(6331), 1, anon_sym_xor2, STATE(3285), 1, sym_comment, STATE(3305), 1, aux_sym_shebang_repeat1, - ACTIONS(6296), 2, + ACTIONS(6305), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6298), 2, + ACTIONS(6307), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6300), 2, + ACTIONS(6309), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6304), 2, + ACTIONS(6313), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6306), 2, + ACTIONS(6315), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6312), 2, + ACTIONS(6321), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6308), 4, + ACTIONS(6317), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6310), 4, + ACTIONS(6319), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5251), 12, + ACTIONS(5260), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -337025,42 +337025,42 @@ static const uint16_t ts_small_parse_table[] = { [113646] = 14, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5305), 1, + ACTIONS(5314), 1, sym__newline, - ACTIONS(6294), 1, + ACTIONS(6303), 1, anon_sym_DASH2, - ACTIONS(6302), 1, + ACTIONS(6311), 1, anon_sym_PLUS2, STATE(3286), 1, sym_comment, STATE(3307), 1, aux_sym_shebang_repeat1, - ACTIONS(6296), 2, + ACTIONS(6305), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6298), 2, + ACTIONS(6307), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6300), 2, + ACTIONS(6309), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6304), 2, + ACTIONS(6313), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6306), 2, + ACTIONS(6315), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6308), 4, + ACTIONS(6317), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6310), 4, + ACTIONS(6319), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5251), 19, + ACTIONS(5260), 19, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -337083,29 +337083,29 @@ static const uint16_t ts_small_parse_table[] = { [113718] = 11, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5305), 1, + ACTIONS(5314), 1, sym__newline, - ACTIONS(6294), 1, + ACTIONS(6303), 1, anon_sym_DASH2, - ACTIONS(6302), 1, + ACTIONS(6311), 1, anon_sym_PLUS2, STATE(3287), 1, sym_comment, STATE(3309), 1, aux_sym_shebang_repeat1, - ACTIONS(5253), 2, + ACTIONS(5262), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6296), 2, + ACTIONS(6305), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6298), 2, + ACTIONS(6307), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6300), 2, + ACTIONS(6309), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5251), 29, + ACTIONS(5260), 29, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -337138,45 +337138,45 @@ static const uint16_t ts_small_parse_table[] = { [113784] = 15, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5305), 1, + ACTIONS(5314), 1, sym__newline, - ACTIONS(6294), 1, + ACTIONS(6303), 1, anon_sym_DASH2, - ACTIONS(6302), 1, + ACTIONS(6311), 1, anon_sym_PLUS2, STATE(3288), 1, sym_comment, STATE(3311), 1, aux_sym_shebang_repeat1, - ACTIONS(6296), 2, + ACTIONS(6305), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6298), 2, + ACTIONS(6307), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6300), 2, + ACTIONS(6309), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6304), 2, + ACTIONS(6313), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6306), 2, + ACTIONS(6315), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6312), 2, + ACTIONS(6321), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6308), 4, + ACTIONS(6317), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6310), 4, + ACTIONS(6319), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5251), 17, + ACTIONS(5260), 17, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -337197,47 +337197,47 @@ static const uint16_t ts_small_parse_table[] = { [113858] = 16, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5305), 1, + ACTIONS(5314), 1, sym__newline, - ACTIONS(6294), 1, + ACTIONS(6303), 1, anon_sym_DASH2, - ACTIONS(6302), 1, + ACTIONS(6311), 1, anon_sym_PLUS2, - ACTIONS(6314), 1, + ACTIONS(6323), 1, anon_sym_bit_DASHand2, STATE(3289), 1, sym_comment, STATE(3313), 1, aux_sym_shebang_repeat1, - ACTIONS(6296), 2, + ACTIONS(6305), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6298), 2, + ACTIONS(6307), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6300), 2, + ACTIONS(6309), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6304), 2, + ACTIONS(6313), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6306), 2, + ACTIONS(6315), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6312), 2, + ACTIONS(6321), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6308), 4, + ACTIONS(6317), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6310), 4, + ACTIONS(6319), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5251), 16, + ACTIONS(5260), 16, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -337257,49 +337257,49 @@ static const uint16_t ts_small_parse_table[] = { [113934] = 17, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5305), 1, + ACTIONS(5314), 1, sym__newline, - ACTIONS(6294), 1, + ACTIONS(6303), 1, anon_sym_DASH2, - ACTIONS(6302), 1, + ACTIONS(6311), 1, anon_sym_PLUS2, - ACTIONS(6314), 1, + ACTIONS(6323), 1, anon_sym_bit_DASHand2, - ACTIONS(6316), 1, + ACTIONS(6325), 1, anon_sym_bit_DASHxor2, STATE(3290), 1, sym_comment, STATE(3315), 1, aux_sym_shebang_repeat1, - ACTIONS(6296), 2, + ACTIONS(6305), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6298), 2, + ACTIONS(6307), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6300), 2, + ACTIONS(6309), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6304), 2, + ACTIONS(6313), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6306), 2, + ACTIONS(6315), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6312), 2, + ACTIONS(6321), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6308), 4, + ACTIONS(6317), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6310), 4, + ACTIONS(6319), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5251), 15, + ACTIONS(5260), 15, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -337326,7 +337326,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(5076), 13, + ACTIONS(5085), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -337367,11 +337367,11 @@ static const uint16_t ts_small_parse_table[] = { [114066] = 10, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6215), 1, + ACTIONS(6224), 1, anon_sym_list, - ACTIONS(6282), 1, + ACTIONS(6291), 1, anon_sym_AT, - ACTIONS(6324), 1, + ACTIONS(6333), 1, anon_sym_GT2, STATE(3292), 1, sym_comment, @@ -337379,14 +337379,14 @@ static const uint16_t ts_small_parse_table[] = { sym__all_type, STATE(7675), 1, sym_param_cmd, - ACTIONS(6213), 2, + ACTIONS(6222), 2, anon_sym_table, anon_sym_record, STATE(7256), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6211), 31, + ACTIONS(6220), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -337421,30 +337421,30 @@ static const uint16_t ts_small_parse_table[] = { [114130] = 11, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6326), 1, + ACTIONS(6335), 1, anon_sym_DASH2, - ACTIONS(6334), 1, + ACTIONS(6343), 1, anon_sym_PLUS2, STATE(1706), 1, aux_sym_shebang_repeat1, STATE(3293), 1, sym_comment, - ACTIONS(5285), 2, + ACTIONS(5294), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6328), 2, + ACTIONS(6337), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6330), 2, + ACTIONS(6339), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6332), 2, + ACTIONS(6341), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6336), 2, + ACTIONS(6345), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5283), 28, + ACTIONS(5292), 28, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -337476,32 +337476,32 @@ static const uint16_t ts_small_parse_table[] = { [114196] = 12, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5392), 1, + ACTIONS(5401), 1, sym__newline, - ACTIONS(6294), 1, + ACTIONS(6303), 1, anon_sym_DASH2, - ACTIONS(6302), 1, + ACTIONS(6311), 1, anon_sym_PLUS2, STATE(3294), 1, sym_comment, STATE(3390), 1, aux_sym_shebang_repeat1, - ACTIONS(5289), 2, + ACTIONS(5298), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6296), 2, + ACTIONS(6305), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6298), 2, + ACTIONS(6307), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6300), 2, + ACTIONS(6309), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6304), 2, + ACTIONS(6313), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5287), 27, + ACTIONS(5296), 27, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -337536,20 +337536,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_shebang_repeat1, STATE(3295), 1, sym_comment, - ACTIONS(6328), 2, + ACTIONS(6337), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6330), 2, + ACTIONS(6339), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6332), 2, + ACTIONS(6341), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5285), 3, + ACTIONS(5294), 3, anon_sym_GT2, anon_sym_LT2, anon_sym_PLUS2, - ACTIONS(5283), 31, + ACTIONS(5292), 31, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -337584,26 +337584,26 @@ static const uint16_t ts_small_parse_table[] = { [114324] = 9, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5392), 1, + ACTIONS(5401), 1, sym__newline, STATE(3296), 1, sym_comment, STATE(3330), 1, aux_sym_shebang_repeat1, - ACTIONS(6296), 2, + ACTIONS(6305), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6298), 2, + ACTIONS(6307), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6300), 2, + ACTIONS(6309), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5289), 3, + ACTIONS(5298), 3, anon_sym_GT2, anon_sym_LT2, anon_sym_PLUS2, - ACTIONS(5287), 30, + ACTIONS(5296), 30, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -337637,35 +337637,35 @@ static const uint16_t ts_small_parse_table[] = { [114386] = 12, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6326), 1, + ACTIONS(6335), 1, anon_sym_DASH2, - ACTIONS(6334), 1, + ACTIONS(6343), 1, anon_sym_PLUS2, STATE(1706), 1, aux_sym_shebang_repeat1, STATE(3297), 1, sym_comment, - ACTIONS(6328), 2, + ACTIONS(6337), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6330), 2, + ACTIONS(6339), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6332), 2, + ACTIONS(6341), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6336), 2, + ACTIONS(6345), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6338), 2, + ACTIONS(6347), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6340), 4, + ACTIONS(6349), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5283), 24, + ACTIONS(5292), 24, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -337693,37 +337693,37 @@ static const uint16_t ts_small_parse_table[] = { [114454] = 13, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5392), 1, + ACTIONS(5401), 1, sym__newline, - ACTIONS(6294), 1, + ACTIONS(6303), 1, anon_sym_DASH2, - ACTIONS(6302), 1, + ACTIONS(6311), 1, anon_sym_PLUS2, STATE(3298), 1, sym_comment, STATE(3331), 1, aux_sym_shebang_repeat1, - ACTIONS(6296), 2, + ACTIONS(6305), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6298), 2, + ACTIONS(6307), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6300), 2, + ACTIONS(6309), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6304), 2, + ACTIONS(6313), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6306), 2, + ACTIONS(6315), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6308), 4, + ACTIONS(6317), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5287), 23, + ACTIONS(5296), 23, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -337754,16 +337754,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_shebang_repeat1, STATE(3299), 1, sym_comment, - ACTIONS(6330), 2, + ACTIONS(6339), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5285), 5, + ACTIONS(5294), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(5283), 33, + ACTIONS(5292), 33, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -337800,22 +337800,22 @@ static const uint16_t ts_small_parse_table[] = { [114580] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5392), 1, + ACTIONS(5401), 1, sym__newline, STATE(3300), 1, sym_comment, STATE(3332), 1, aux_sym_shebang_repeat1, - ACTIONS(6298), 2, + ACTIONS(6307), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5289), 5, + ACTIONS(5298), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(5287), 32, + ACTIONS(5296), 32, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -337851,49 +337851,49 @@ static const uint16_t ts_small_parse_table[] = { [114638] = 17, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6326), 1, + ACTIONS(6335), 1, anon_sym_DASH2, - ACTIONS(6334), 1, + ACTIONS(6343), 1, anon_sym_PLUS2, - ACTIONS(6346), 1, + ACTIONS(6355), 1, anon_sym_bit_DASHand2, - ACTIONS(6348), 1, + ACTIONS(6357), 1, anon_sym_bit_DASHxor2, - ACTIONS(6350), 1, + ACTIONS(6359), 1, anon_sym_bit_DASHor2, STATE(1706), 1, aux_sym_shebang_repeat1, STATE(3301), 1, sym_comment, - ACTIONS(6328), 2, + ACTIONS(6337), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6330), 2, + ACTIONS(6339), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6332), 2, + ACTIONS(6341), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6336), 2, + ACTIONS(6345), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6338), 2, + ACTIONS(6347), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6344), 2, + ACTIONS(6353), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6340), 4, + ACTIONS(6349), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6342), 4, + ACTIONS(6351), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5283), 15, + ACTIONS(5292), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -337912,51 +337912,51 @@ static const uint16_t ts_small_parse_table[] = { [114716] = 18, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5392), 1, + ACTIONS(5401), 1, sym__newline, - ACTIONS(6294), 1, + ACTIONS(6303), 1, anon_sym_DASH2, - ACTIONS(6302), 1, + ACTIONS(6311), 1, anon_sym_PLUS2, - ACTIONS(6314), 1, + ACTIONS(6323), 1, anon_sym_bit_DASHand2, - ACTIONS(6316), 1, + ACTIONS(6325), 1, anon_sym_bit_DASHxor2, - ACTIONS(6318), 1, + ACTIONS(6327), 1, anon_sym_bit_DASHor2, STATE(3302), 1, sym_comment, STATE(3333), 1, aux_sym_shebang_repeat1, - ACTIONS(6296), 2, + ACTIONS(6305), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6298), 2, + ACTIONS(6307), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6300), 2, + ACTIONS(6309), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6304), 2, + ACTIONS(6313), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6306), 2, + ACTIONS(6315), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6312), 2, + ACTIONS(6321), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6308), 4, + ACTIONS(6317), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6310), 4, + ACTIONS(6319), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5287), 14, + ACTIONS(5296), 14, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -337974,51 +337974,51 @@ static const uint16_t ts_small_parse_table[] = { [114796] = 18, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6326), 1, + ACTIONS(6335), 1, anon_sym_DASH2, - ACTIONS(6334), 1, + ACTIONS(6343), 1, anon_sym_PLUS2, - ACTIONS(6346), 1, + ACTIONS(6355), 1, anon_sym_bit_DASHand2, - ACTIONS(6348), 1, + ACTIONS(6357), 1, anon_sym_bit_DASHxor2, - ACTIONS(6350), 1, + ACTIONS(6359), 1, anon_sym_bit_DASHor2, - ACTIONS(6352), 1, + ACTIONS(6361), 1, anon_sym_and2, STATE(1706), 1, aux_sym_shebang_repeat1, STATE(3303), 1, sym_comment, - ACTIONS(6328), 2, + ACTIONS(6337), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6330), 2, + ACTIONS(6339), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6332), 2, + ACTIONS(6341), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6336), 2, + ACTIONS(6345), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6338), 2, + ACTIONS(6347), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6344), 2, + ACTIONS(6353), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6340), 4, + ACTIONS(6349), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6342), 4, + ACTIONS(6351), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5283), 14, + ACTIONS(5292), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -338036,53 +338036,53 @@ static const uint16_t ts_small_parse_table[] = { [114876] = 19, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5392), 1, + ACTIONS(5401), 1, sym__newline, - ACTIONS(6294), 1, + ACTIONS(6303), 1, anon_sym_DASH2, - ACTIONS(6302), 1, + ACTIONS(6311), 1, anon_sym_PLUS2, - ACTIONS(6314), 1, + ACTIONS(6323), 1, anon_sym_bit_DASHand2, - ACTIONS(6316), 1, + ACTIONS(6325), 1, anon_sym_bit_DASHxor2, - ACTIONS(6318), 1, + ACTIONS(6327), 1, anon_sym_bit_DASHor2, - ACTIONS(6320), 1, + ACTIONS(6329), 1, anon_sym_and2, STATE(3304), 1, sym_comment, STATE(3334), 1, aux_sym_shebang_repeat1, - ACTIONS(6296), 2, + ACTIONS(6305), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6298), 2, + ACTIONS(6307), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6300), 2, + ACTIONS(6309), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6304), 2, + ACTIONS(6313), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6306), 2, + ACTIONS(6315), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6312), 2, + ACTIONS(6321), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6308), 4, + ACTIONS(6317), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6310), 4, + ACTIONS(6319), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5287), 13, + ACTIONS(5296), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -338099,53 +338099,53 @@ static const uint16_t ts_small_parse_table[] = { [114958] = 19, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6326), 1, + ACTIONS(6335), 1, anon_sym_DASH2, - ACTIONS(6334), 1, + ACTIONS(6343), 1, anon_sym_PLUS2, - ACTIONS(6346), 1, + ACTIONS(6355), 1, anon_sym_bit_DASHand2, - ACTIONS(6348), 1, + ACTIONS(6357), 1, anon_sym_bit_DASHxor2, - ACTIONS(6350), 1, + ACTIONS(6359), 1, anon_sym_bit_DASHor2, - ACTIONS(6352), 1, + ACTIONS(6361), 1, anon_sym_and2, - ACTIONS(6354), 1, + ACTIONS(6363), 1, anon_sym_xor2, STATE(1706), 1, aux_sym_shebang_repeat1, STATE(3305), 1, sym_comment, - ACTIONS(6328), 2, + ACTIONS(6337), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6330), 2, + ACTIONS(6339), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6332), 2, + ACTIONS(6341), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6336), 2, + ACTIONS(6345), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6338), 2, + ACTIONS(6347), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6344), 2, + ACTIONS(6353), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6340), 4, + ACTIONS(6349), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6342), 4, + ACTIONS(6351), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5283), 13, + ACTIONS(5292), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -338162,55 +338162,55 @@ static const uint16_t ts_small_parse_table[] = { [115040] = 20, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3802), 1, + ACTIONS(3811), 1, sym__newline, - ACTIONS(6294), 1, + ACTIONS(6303), 1, anon_sym_DASH2, - ACTIONS(6302), 1, + ACTIONS(6311), 1, anon_sym_PLUS2, - ACTIONS(6314), 1, + ACTIONS(6323), 1, anon_sym_bit_DASHand2, - ACTIONS(6316), 1, + ACTIONS(6325), 1, anon_sym_bit_DASHxor2, - ACTIONS(6318), 1, + ACTIONS(6327), 1, anon_sym_bit_DASHor2, - ACTIONS(6320), 1, + ACTIONS(6329), 1, anon_sym_and2, - ACTIONS(6322), 1, + ACTIONS(6331), 1, anon_sym_xor2, STATE(3306), 1, sym_comment, STATE(3335), 1, aux_sym_shebang_repeat1, - ACTIONS(6296), 2, + ACTIONS(6305), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6298), 2, + ACTIONS(6307), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6300), 2, + ACTIONS(6309), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6304), 2, + ACTIONS(6313), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6306), 2, + ACTIONS(6315), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6312), 2, + ACTIONS(6321), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6308), 4, + ACTIONS(6317), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6310), 4, + ACTIONS(6319), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5287), 12, + ACTIONS(5296), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -338226,40 +338226,40 @@ static const uint16_t ts_small_parse_table[] = { [115124] = 13, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6326), 1, + ACTIONS(6335), 1, anon_sym_DASH2, - ACTIONS(6334), 1, + ACTIONS(6343), 1, anon_sym_PLUS2, STATE(1706), 1, aux_sym_shebang_repeat1, STATE(3307), 1, sym_comment, - ACTIONS(6328), 2, + ACTIONS(6337), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6330), 2, + ACTIONS(6339), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6332), 2, + ACTIONS(6341), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6336), 2, + ACTIONS(6345), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6338), 2, + ACTIONS(6347), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6340), 4, + ACTIONS(6349), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6342), 4, + ACTIONS(6351), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5283), 20, + ACTIONS(5292), 20, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -338283,42 +338283,42 @@ static const uint16_t ts_small_parse_table[] = { [115194] = 14, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5392), 1, + ACTIONS(5401), 1, sym__newline, - ACTIONS(6294), 1, + ACTIONS(6303), 1, anon_sym_DASH2, - ACTIONS(6302), 1, + ACTIONS(6311), 1, anon_sym_PLUS2, STATE(3308), 1, sym_comment, STATE(3336), 1, aux_sym_shebang_repeat1, - ACTIONS(6296), 2, + ACTIONS(6305), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6298), 2, + ACTIONS(6307), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6300), 2, + ACTIONS(6309), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6304), 2, + ACTIONS(6313), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6306), 2, + ACTIONS(6315), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6308), 4, + ACTIONS(6317), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6310), 4, + ACTIONS(6319), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5287), 19, + ACTIONS(5296), 19, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -338341,27 +338341,27 @@ static const uint16_t ts_small_parse_table[] = { [115266] = 10, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6326), 1, + ACTIONS(6335), 1, anon_sym_DASH2, - ACTIONS(6334), 1, + ACTIONS(6343), 1, anon_sym_PLUS2, STATE(1706), 1, aux_sym_shebang_repeat1, STATE(3309), 1, sym_comment, - ACTIONS(5285), 2, + ACTIONS(5294), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6328), 2, + ACTIONS(6337), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6330), 2, + ACTIONS(6339), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6332), 2, + ACTIONS(6341), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5283), 30, + ACTIONS(5292), 30, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -338395,29 +338395,29 @@ static const uint16_t ts_small_parse_table[] = { [115330] = 11, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5392), 1, + ACTIONS(5401), 1, sym__newline, - ACTIONS(6294), 1, + ACTIONS(6303), 1, anon_sym_DASH2, - ACTIONS(6302), 1, + ACTIONS(6311), 1, anon_sym_PLUS2, STATE(3310), 1, sym_comment, STATE(3337), 1, aux_sym_shebang_repeat1, - ACTIONS(5289), 2, + ACTIONS(5298), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6296), 2, + ACTIONS(6305), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6298), 2, + ACTIONS(6307), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6300), 2, + ACTIONS(6309), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5287), 29, + ACTIONS(5296), 29, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -338450,43 +338450,43 @@ static const uint16_t ts_small_parse_table[] = { [115396] = 14, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6326), 1, + ACTIONS(6335), 1, anon_sym_DASH2, - ACTIONS(6334), 1, + ACTIONS(6343), 1, anon_sym_PLUS2, STATE(1706), 1, aux_sym_shebang_repeat1, STATE(3311), 1, sym_comment, - ACTIONS(6328), 2, + ACTIONS(6337), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6330), 2, + ACTIONS(6339), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6332), 2, + ACTIONS(6341), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6336), 2, + ACTIONS(6345), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6338), 2, + ACTIONS(6347), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6344), 2, + ACTIONS(6353), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6340), 4, + ACTIONS(6349), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6342), 4, + ACTIONS(6351), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5283), 18, + ACTIONS(5292), 18, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -338508,45 +338508,45 @@ static const uint16_t ts_small_parse_table[] = { [115468] = 15, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5392), 1, + ACTIONS(5401), 1, sym__newline, - ACTIONS(6294), 1, + ACTIONS(6303), 1, anon_sym_DASH2, - ACTIONS(6302), 1, + ACTIONS(6311), 1, anon_sym_PLUS2, STATE(3312), 1, sym_comment, STATE(3338), 1, aux_sym_shebang_repeat1, - ACTIONS(6296), 2, + ACTIONS(6305), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6298), 2, + ACTIONS(6307), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6300), 2, + ACTIONS(6309), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6304), 2, + ACTIONS(6313), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6306), 2, + ACTIONS(6315), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6312), 2, + ACTIONS(6321), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6308), 4, + ACTIONS(6317), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6310), 4, + ACTIONS(6319), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5287), 17, + ACTIONS(5296), 17, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -338567,45 +338567,45 @@ static const uint16_t ts_small_parse_table[] = { [115542] = 15, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6326), 1, + ACTIONS(6335), 1, anon_sym_DASH2, - ACTIONS(6334), 1, + ACTIONS(6343), 1, anon_sym_PLUS2, - ACTIONS(6346), 1, + ACTIONS(6355), 1, anon_sym_bit_DASHand2, STATE(1706), 1, aux_sym_shebang_repeat1, STATE(3313), 1, sym_comment, - ACTIONS(6328), 2, + ACTIONS(6337), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6330), 2, + ACTIONS(6339), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6332), 2, + ACTIONS(6341), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6336), 2, + ACTIONS(6345), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6338), 2, + ACTIONS(6347), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6344), 2, + ACTIONS(6353), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6340), 4, + ACTIONS(6349), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6342), 4, + ACTIONS(6351), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5283), 17, + ACTIONS(5292), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -338626,47 +338626,47 @@ static const uint16_t ts_small_parse_table[] = { [115616] = 16, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5392), 1, + ACTIONS(5401), 1, sym__newline, - ACTIONS(6294), 1, + ACTIONS(6303), 1, anon_sym_DASH2, - ACTIONS(6302), 1, + ACTIONS(6311), 1, anon_sym_PLUS2, - ACTIONS(6314), 1, + ACTIONS(6323), 1, anon_sym_bit_DASHand2, STATE(3314), 1, sym_comment, STATE(3339), 1, aux_sym_shebang_repeat1, - ACTIONS(6296), 2, + ACTIONS(6305), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6298), 2, + ACTIONS(6307), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6300), 2, + ACTIONS(6309), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6304), 2, + ACTIONS(6313), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6306), 2, + ACTIONS(6315), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6312), 2, + ACTIONS(6321), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6308), 4, + ACTIONS(6317), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6310), 4, + ACTIONS(6319), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5287), 16, + ACTIONS(5296), 16, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -338686,47 +338686,47 @@ static const uint16_t ts_small_parse_table[] = { [115692] = 16, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6326), 1, + ACTIONS(6335), 1, anon_sym_DASH2, - ACTIONS(6334), 1, + ACTIONS(6343), 1, anon_sym_PLUS2, - ACTIONS(6346), 1, + ACTIONS(6355), 1, anon_sym_bit_DASHand2, - ACTIONS(6348), 1, + ACTIONS(6357), 1, anon_sym_bit_DASHxor2, STATE(1706), 1, aux_sym_shebang_repeat1, STATE(3315), 1, sym_comment, - ACTIONS(6328), 2, + ACTIONS(6337), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6330), 2, + ACTIONS(6339), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6332), 2, + ACTIONS(6341), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6336), 2, + ACTIONS(6345), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6338), 2, + ACTIONS(6347), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6344), 2, + ACTIONS(6353), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6340), 4, + ACTIONS(6349), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6342), 4, + ACTIONS(6351), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5283), 16, + ACTIONS(5292), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -338746,49 +338746,49 @@ static const uint16_t ts_small_parse_table[] = { [115768] = 17, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5392), 1, + ACTIONS(5401), 1, sym__newline, - ACTIONS(6294), 1, + ACTIONS(6303), 1, anon_sym_DASH2, - ACTIONS(6302), 1, + ACTIONS(6311), 1, anon_sym_PLUS2, - ACTIONS(6314), 1, + ACTIONS(6323), 1, anon_sym_bit_DASHand2, - ACTIONS(6316), 1, + ACTIONS(6325), 1, anon_sym_bit_DASHxor2, STATE(3316), 1, sym_comment, STATE(3340), 1, aux_sym_shebang_repeat1, - ACTIONS(6296), 2, + ACTIONS(6305), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6298), 2, + ACTIONS(6307), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6300), 2, + ACTIONS(6309), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6304), 2, + ACTIONS(6313), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6306), 2, + ACTIONS(6315), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6312), 2, + ACTIONS(6321), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6308), 4, + ACTIONS(6317), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6310), 4, + ACTIONS(6319), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5287), 15, + ACTIONS(5296), 15, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -338807,32 +338807,32 @@ static const uint16_t ts_small_parse_table[] = { [115846] = 12, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5338), 1, + ACTIONS(5347), 1, sym__newline, - ACTIONS(6294), 1, + ACTIONS(6303), 1, anon_sym_DASH2, - ACTIONS(6302), 1, + ACTIONS(6311), 1, anon_sym_PLUS2, STATE(3317), 1, sym_comment, STATE(3341), 1, aux_sym_shebang_repeat1, - ACTIONS(5299), 2, + ACTIONS(5308), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6296), 2, + ACTIONS(6305), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6298), 2, + ACTIONS(6307), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6300), 2, + ACTIONS(6309), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6304), 2, + ACTIONS(6313), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5297), 27, + ACTIONS(5306), 27, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -338863,26 +338863,26 @@ static const uint16_t ts_small_parse_table[] = { [115914] = 9, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5338), 1, + ACTIONS(5347), 1, sym__newline, STATE(3318), 1, sym_comment, STATE(3343), 1, aux_sym_shebang_repeat1, - ACTIONS(6296), 2, + ACTIONS(6305), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6298), 2, + ACTIONS(6307), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6300), 2, + ACTIONS(6309), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5299), 3, + ACTIONS(5308), 3, anon_sym_GT2, anon_sym_LT2, anon_sym_PLUS2, - ACTIONS(5297), 30, + ACTIONS(5306), 30, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -338916,37 +338916,37 @@ static const uint16_t ts_small_parse_table[] = { [115976] = 13, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5338), 1, + ACTIONS(5347), 1, sym__newline, - ACTIONS(6294), 1, + ACTIONS(6303), 1, anon_sym_DASH2, - ACTIONS(6302), 1, + ACTIONS(6311), 1, anon_sym_PLUS2, STATE(3319), 1, sym_comment, STATE(3345), 1, aux_sym_shebang_repeat1, - ACTIONS(6296), 2, + ACTIONS(6305), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6298), 2, + ACTIONS(6307), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6300), 2, + ACTIONS(6309), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6304), 2, + ACTIONS(6313), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6306), 2, + ACTIONS(6315), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6308), 4, + ACTIONS(6317), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5297), 23, + ACTIONS(5306), 23, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -338973,22 +338973,22 @@ static const uint16_t ts_small_parse_table[] = { [116046] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5338), 1, + ACTIONS(5347), 1, sym__newline, STATE(3320), 1, sym_comment, STATE(3347), 1, aux_sym_shebang_repeat1, - ACTIONS(6298), 2, + ACTIONS(6307), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5299), 5, + ACTIONS(5308), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(5297), 32, + ACTIONS(5306), 32, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -339024,51 +339024,51 @@ static const uint16_t ts_small_parse_table[] = { [116104] = 18, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5338), 1, + ACTIONS(5347), 1, sym__newline, - ACTIONS(6294), 1, + ACTIONS(6303), 1, anon_sym_DASH2, - ACTIONS(6302), 1, + ACTIONS(6311), 1, anon_sym_PLUS2, - ACTIONS(6314), 1, + ACTIONS(6323), 1, anon_sym_bit_DASHand2, - ACTIONS(6316), 1, + ACTIONS(6325), 1, anon_sym_bit_DASHxor2, - ACTIONS(6318), 1, + ACTIONS(6327), 1, anon_sym_bit_DASHor2, STATE(3321), 1, sym_comment, STATE(3349), 1, aux_sym_shebang_repeat1, - ACTIONS(6296), 2, + ACTIONS(6305), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6298), 2, + ACTIONS(6307), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6300), 2, + ACTIONS(6309), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6304), 2, + ACTIONS(6313), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6306), 2, + ACTIONS(6315), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6312), 2, + ACTIONS(6321), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6308), 4, + ACTIONS(6317), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6310), 4, + ACTIONS(6319), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5297), 14, + ACTIONS(5306), 14, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -339086,53 +339086,53 @@ static const uint16_t ts_small_parse_table[] = { [116184] = 19, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5338), 1, + ACTIONS(5347), 1, sym__newline, - ACTIONS(6294), 1, + ACTIONS(6303), 1, anon_sym_DASH2, - ACTIONS(6302), 1, + ACTIONS(6311), 1, anon_sym_PLUS2, - ACTIONS(6314), 1, + ACTIONS(6323), 1, anon_sym_bit_DASHand2, - ACTIONS(6316), 1, + ACTIONS(6325), 1, anon_sym_bit_DASHxor2, - ACTIONS(6318), 1, + ACTIONS(6327), 1, anon_sym_bit_DASHor2, - ACTIONS(6320), 1, + ACTIONS(6329), 1, anon_sym_and2, STATE(3322), 1, sym_comment, STATE(3351), 1, aux_sym_shebang_repeat1, - ACTIONS(6296), 2, + ACTIONS(6305), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6298), 2, + ACTIONS(6307), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6300), 2, + ACTIONS(6309), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6304), 2, + ACTIONS(6313), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6306), 2, + ACTIONS(6315), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6312), 2, + ACTIONS(6321), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6308), 4, + ACTIONS(6317), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6310), 4, + ACTIONS(6319), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5297), 13, + ACTIONS(5306), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -339149,55 +339149,55 @@ static const uint16_t ts_small_parse_table[] = { [116266] = 20, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3802), 1, + ACTIONS(3811), 1, sym__newline, - ACTIONS(6294), 1, + ACTIONS(6303), 1, anon_sym_DASH2, - ACTIONS(6302), 1, + ACTIONS(6311), 1, anon_sym_PLUS2, - ACTIONS(6314), 1, + ACTIONS(6323), 1, anon_sym_bit_DASHand2, - ACTIONS(6316), 1, + ACTIONS(6325), 1, anon_sym_bit_DASHxor2, - ACTIONS(6318), 1, + ACTIONS(6327), 1, anon_sym_bit_DASHor2, - ACTIONS(6320), 1, + ACTIONS(6329), 1, anon_sym_and2, - ACTIONS(6322), 1, + ACTIONS(6331), 1, anon_sym_xor2, STATE(3323), 1, sym_comment, STATE(3353), 1, aux_sym_shebang_repeat1, - ACTIONS(6296), 2, + ACTIONS(6305), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6298), 2, + ACTIONS(6307), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6300), 2, + ACTIONS(6309), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6304), 2, + ACTIONS(6313), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6306), 2, + ACTIONS(6315), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6312), 2, + ACTIONS(6321), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6308), 4, + ACTIONS(6317), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6310), 4, + ACTIONS(6319), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5297), 12, + ACTIONS(5306), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -339213,42 +339213,42 @@ static const uint16_t ts_small_parse_table[] = { [116350] = 14, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5338), 1, + ACTIONS(5347), 1, sym__newline, - ACTIONS(6294), 1, + ACTIONS(6303), 1, anon_sym_DASH2, - ACTIONS(6302), 1, + ACTIONS(6311), 1, anon_sym_PLUS2, STATE(3324), 1, sym_comment, STATE(3355), 1, aux_sym_shebang_repeat1, - ACTIONS(6296), 2, + ACTIONS(6305), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6298), 2, + ACTIONS(6307), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6300), 2, + ACTIONS(6309), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6304), 2, + ACTIONS(6313), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6306), 2, + ACTIONS(6315), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6308), 4, + ACTIONS(6317), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6310), 4, + ACTIONS(6319), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5297), 19, + ACTIONS(5306), 19, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -339271,29 +339271,29 @@ static const uint16_t ts_small_parse_table[] = { [116422] = 11, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5338), 1, + ACTIONS(5347), 1, sym__newline, - ACTIONS(6294), 1, + ACTIONS(6303), 1, anon_sym_DASH2, - ACTIONS(6302), 1, + ACTIONS(6311), 1, anon_sym_PLUS2, STATE(3325), 1, sym_comment, STATE(3357), 1, aux_sym_shebang_repeat1, - ACTIONS(5299), 2, + ACTIONS(5308), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6296), 2, + ACTIONS(6305), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6298), 2, + ACTIONS(6307), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6300), 2, + ACTIONS(6309), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5297), 29, + ACTIONS(5306), 29, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -339326,45 +339326,45 @@ static const uint16_t ts_small_parse_table[] = { [116488] = 15, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5338), 1, + ACTIONS(5347), 1, sym__newline, - ACTIONS(6294), 1, + ACTIONS(6303), 1, anon_sym_DASH2, - ACTIONS(6302), 1, + ACTIONS(6311), 1, anon_sym_PLUS2, STATE(3326), 1, sym_comment, STATE(3359), 1, aux_sym_shebang_repeat1, - ACTIONS(6296), 2, + ACTIONS(6305), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6298), 2, + ACTIONS(6307), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6300), 2, + ACTIONS(6309), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6304), 2, + ACTIONS(6313), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6306), 2, + ACTIONS(6315), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6312), 2, + ACTIONS(6321), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6308), 4, + ACTIONS(6317), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6310), 4, + ACTIONS(6319), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5297), 17, + ACTIONS(5306), 17, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -339385,47 +339385,47 @@ static const uint16_t ts_small_parse_table[] = { [116562] = 16, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5338), 1, + ACTIONS(5347), 1, sym__newline, - ACTIONS(6294), 1, + ACTIONS(6303), 1, anon_sym_DASH2, - ACTIONS(6302), 1, + ACTIONS(6311), 1, anon_sym_PLUS2, - ACTIONS(6314), 1, + ACTIONS(6323), 1, anon_sym_bit_DASHand2, STATE(3327), 1, sym_comment, STATE(3361), 1, aux_sym_shebang_repeat1, - ACTIONS(6296), 2, + ACTIONS(6305), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6298), 2, + ACTIONS(6307), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6300), 2, + ACTIONS(6309), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6304), 2, + ACTIONS(6313), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6306), 2, + ACTIONS(6315), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6312), 2, + ACTIONS(6321), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6308), 4, + ACTIONS(6317), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6310), 4, + ACTIONS(6319), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5297), 16, + ACTIONS(5306), 16, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -339445,49 +339445,49 @@ static const uint16_t ts_small_parse_table[] = { [116638] = 17, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5338), 1, + ACTIONS(5347), 1, sym__newline, - ACTIONS(6294), 1, + ACTIONS(6303), 1, anon_sym_DASH2, - ACTIONS(6302), 1, + ACTIONS(6311), 1, anon_sym_PLUS2, - ACTIONS(6314), 1, + ACTIONS(6323), 1, anon_sym_bit_DASHand2, - ACTIONS(6316), 1, + ACTIONS(6325), 1, anon_sym_bit_DASHxor2, STATE(3328), 1, sym_comment, STATE(3363), 1, aux_sym_shebang_repeat1, - ACTIONS(6296), 2, + ACTIONS(6305), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6298), 2, + ACTIONS(6307), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6300), 2, + ACTIONS(6309), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6304), 2, + ACTIONS(6313), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6306), 2, + ACTIONS(6315), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6312), 2, + ACTIONS(6321), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6308), 4, + ACTIONS(6317), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6310), 4, + ACTIONS(6319), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5297), 15, + ACTIONS(5306), 15, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -339508,7 +339508,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(3329), 1, sym_comment, - ACTIONS(6356), 41, + ACTIONS(6365), 41, sym__newline, anon_sym_SEMI, anon_sym_COLON, @@ -339557,20 +339557,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_shebang_repeat1, STATE(3330), 1, sym_comment, - ACTIONS(6328), 2, + ACTIONS(6337), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6330), 2, + ACTIONS(6339), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6332), 2, + ACTIONS(6341), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5293), 3, + ACTIONS(5302), 3, anon_sym_GT2, anon_sym_LT2, anon_sym_PLUS2, - ACTIONS(5291), 31, + ACTIONS(5300), 31, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -339605,35 +339605,35 @@ static const uint16_t ts_small_parse_table[] = { [116826] = 12, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6326), 1, + ACTIONS(6335), 1, anon_sym_DASH2, - ACTIONS(6334), 1, + ACTIONS(6343), 1, anon_sym_PLUS2, STATE(1706), 1, aux_sym_shebang_repeat1, STATE(3331), 1, sym_comment, - ACTIONS(6328), 2, + ACTIONS(6337), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6330), 2, + ACTIONS(6339), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6332), 2, + ACTIONS(6341), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6336), 2, + ACTIONS(6345), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6338), 2, + ACTIONS(6347), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6340), 4, + ACTIONS(6349), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5291), 24, + ACTIONS(5300), 24, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -339665,16 +339665,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_shebang_repeat1, STATE(3332), 1, sym_comment, - ACTIONS(6330), 2, + ACTIONS(6339), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5293), 5, + ACTIONS(5302), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(5291), 33, + ACTIONS(5300), 33, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -339711,49 +339711,49 @@ static const uint16_t ts_small_parse_table[] = { [116950] = 17, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6326), 1, + ACTIONS(6335), 1, anon_sym_DASH2, - ACTIONS(6334), 1, + ACTIONS(6343), 1, anon_sym_PLUS2, - ACTIONS(6346), 1, + ACTIONS(6355), 1, anon_sym_bit_DASHand2, - ACTIONS(6348), 1, + ACTIONS(6357), 1, anon_sym_bit_DASHxor2, - ACTIONS(6350), 1, + ACTIONS(6359), 1, anon_sym_bit_DASHor2, STATE(1706), 1, aux_sym_shebang_repeat1, STATE(3333), 1, sym_comment, - ACTIONS(6328), 2, + ACTIONS(6337), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6330), 2, + ACTIONS(6339), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6332), 2, + ACTIONS(6341), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6336), 2, + ACTIONS(6345), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6338), 2, + ACTIONS(6347), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6344), 2, + ACTIONS(6353), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6340), 4, + ACTIONS(6349), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6342), 4, + ACTIONS(6351), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5291), 15, + ACTIONS(5300), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -339772,51 +339772,51 @@ static const uint16_t ts_small_parse_table[] = { [117028] = 18, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6326), 1, + ACTIONS(6335), 1, anon_sym_DASH2, - ACTIONS(6334), 1, + ACTIONS(6343), 1, anon_sym_PLUS2, - ACTIONS(6346), 1, + ACTIONS(6355), 1, anon_sym_bit_DASHand2, - ACTIONS(6348), 1, + ACTIONS(6357), 1, anon_sym_bit_DASHxor2, - ACTIONS(6350), 1, + ACTIONS(6359), 1, anon_sym_bit_DASHor2, - ACTIONS(6352), 1, + ACTIONS(6361), 1, anon_sym_and2, STATE(1706), 1, aux_sym_shebang_repeat1, STATE(3334), 1, sym_comment, - ACTIONS(6328), 2, + ACTIONS(6337), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6330), 2, + ACTIONS(6339), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6332), 2, + ACTIONS(6341), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6336), 2, + ACTIONS(6345), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6338), 2, + ACTIONS(6347), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6344), 2, + ACTIONS(6353), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6340), 4, + ACTIONS(6349), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6342), 4, + ACTIONS(6351), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5291), 14, + ACTIONS(5300), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -339834,53 +339834,53 @@ static const uint16_t ts_small_parse_table[] = { [117108] = 19, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6326), 1, + ACTIONS(6335), 1, anon_sym_DASH2, - ACTIONS(6334), 1, + ACTIONS(6343), 1, anon_sym_PLUS2, - ACTIONS(6346), 1, + ACTIONS(6355), 1, anon_sym_bit_DASHand2, - ACTIONS(6348), 1, + ACTIONS(6357), 1, anon_sym_bit_DASHxor2, - ACTIONS(6350), 1, + ACTIONS(6359), 1, anon_sym_bit_DASHor2, - ACTIONS(6352), 1, + ACTIONS(6361), 1, anon_sym_and2, - ACTIONS(6354), 1, + ACTIONS(6363), 1, anon_sym_xor2, STATE(1706), 1, aux_sym_shebang_repeat1, STATE(3335), 1, sym_comment, - ACTIONS(6328), 2, + ACTIONS(6337), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6330), 2, + ACTIONS(6339), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6332), 2, + ACTIONS(6341), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6336), 2, + ACTIONS(6345), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6338), 2, + ACTIONS(6347), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6344), 2, + ACTIONS(6353), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6340), 4, + ACTIONS(6349), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6342), 4, + ACTIONS(6351), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5291), 13, + ACTIONS(5300), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -339897,40 +339897,40 @@ static const uint16_t ts_small_parse_table[] = { [117190] = 13, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6326), 1, + ACTIONS(6335), 1, anon_sym_DASH2, - ACTIONS(6334), 1, + ACTIONS(6343), 1, anon_sym_PLUS2, STATE(1706), 1, aux_sym_shebang_repeat1, STATE(3336), 1, sym_comment, - ACTIONS(6328), 2, + ACTIONS(6337), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6330), 2, + ACTIONS(6339), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6332), 2, + ACTIONS(6341), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6336), 2, + ACTIONS(6345), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6338), 2, + ACTIONS(6347), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6340), 4, + ACTIONS(6349), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6342), 4, + ACTIONS(6351), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5291), 20, + ACTIONS(5300), 20, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -339954,27 +339954,27 @@ static const uint16_t ts_small_parse_table[] = { [117260] = 10, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6326), 1, + ACTIONS(6335), 1, anon_sym_DASH2, - ACTIONS(6334), 1, + ACTIONS(6343), 1, anon_sym_PLUS2, STATE(1706), 1, aux_sym_shebang_repeat1, STATE(3337), 1, sym_comment, - ACTIONS(5293), 2, + ACTIONS(5302), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6328), 2, + ACTIONS(6337), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6330), 2, + ACTIONS(6339), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6332), 2, + ACTIONS(6341), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5291), 30, + ACTIONS(5300), 30, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -340008,43 +340008,43 @@ static const uint16_t ts_small_parse_table[] = { [117324] = 14, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6326), 1, + ACTIONS(6335), 1, anon_sym_DASH2, - ACTIONS(6334), 1, + ACTIONS(6343), 1, anon_sym_PLUS2, STATE(1706), 1, aux_sym_shebang_repeat1, STATE(3338), 1, sym_comment, - ACTIONS(6328), 2, + ACTIONS(6337), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6330), 2, + ACTIONS(6339), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6332), 2, + ACTIONS(6341), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6336), 2, + ACTIONS(6345), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6338), 2, + ACTIONS(6347), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6344), 2, + ACTIONS(6353), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6340), 4, + ACTIONS(6349), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6342), 4, + ACTIONS(6351), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5291), 18, + ACTIONS(5300), 18, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -340066,45 +340066,45 @@ static const uint16_t ts_small_parse_table[] = { [117396] = 15, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6326), 1, + ACTIONS(6335), 1, anon_sym_DASH2, - ACTIONS(6334), 1, + ACTIONS(6343), 1, anon_sym_PLUS2, - ACTIONS(6346), 1, + ACTIONS(6355), 1, anon_sym_bit_DASHand2, STATE(1706), 1, aux_sym_shebang_repeat1, STATE(3339), 1, sym_comment, - ACTIONS(6328), 2, + ACTIONS(6337), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6330), 2, + ACTIONS(6339), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6332), 2, + ACTIONS(6341), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6336), 2, + ACTIONS(6345), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6338), 2, + ACTIONS(6347), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6344), 2, + ACTIONS(6353), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6340), 4, + ACTIONS(6349), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6342), 4, + ACTIONS(6351), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5291), 17, + ACTIONS(5300), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -340125,47 +340125,47 @@ static const uint16_t ts_small_parse_table[] = { [117470] = 16, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6326), 1, + ACTIONS(6335), 1, anon_sym_DASH2, - ACTIONS(6334), 1, + ACTIONS(6343), 1, anon_sym_PLUS2, - ACTIONS(6346), 1, + ACTIONS(6355), 1, anon_sym_bit_DASHand2, - ACTIONS(6348), 1, + ACTIONS(6357), 1, anon_sym_bit_DASHxor2, STATE(1706), 1, aux_sym_shebang_repeat1, STATE(3340), 1, sym_comment, - ACTIONS(6328), 2, + ACTIONS(6337), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6330), 2, + ACTIONS(6339), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6332), 2, + ACTIONS(6341), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6336), 2, + ACTIONS(6345), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6338), 2, + ACTIONS(6347), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6344), 2, + ACTIONS(6353), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6340), 4, + ACTIONS(6349), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6342), 4, + ACTIONS(6351), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5291), 16, + ACTIONS(5300), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -340185,30 +340185,30 @@ static const uint16_t ts_small_parse_table[] = { [117546] = 11, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6326), 1, + ACTIONS(6335), 1, anon_sym_DASH2, - ACTIONS(6334), 1, + ACTIONS(6343), 1, anon_sym_PLUS2, STATE(1706), 1, aux_sym_shebang_repeat1, STATE(3341), 1, sym_comment, - ACTIONS(5303), 2, + ACTIONS(5312), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6328), 2, + ACTIONS(6337), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6330), 2, + ACTIONS(6339), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6332), 2, + ACTIONS(6341), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6336), 2, + ACTIONS(6345), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5301), 28, + ACTIONS(5310), 28, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -340240,32 +340240,32 @@ static const uint16_t ts_small_parse_table[] = { [117612] = 12, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5385), 1, + ACTIONS(5394), 1, sym__newline, - ACTIONS(6294), 1, + ACTIONS(6303), 1, anon_sym_DASH2, - ACTIONS(6302), 1, + ACTIONS(6311), 1, anon_sym_PLUS2, STATE(3342), 1, sym_comment, STATE(3366), 1, aux_sym_shebang_repeat1, - ACTIONS(5233), 2, + ACTIONS(5242), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6296), 2, + ACTIONS(6305), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6298), 2, + ACTIONS(6307), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6300), 2, + ACTIONS(6309), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6304), 2, + ACTIONS(6313), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5231), 27, + ACTIONS(5240), 27, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -340300,20 +340300,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_shebang_repeat1, STATE(3343), 1, sym_comment, - ACTIONS(6328), 2, + ACTIONS(6337), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6330), 2, + ACTIONS(6339), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6332), 2, + ACTIONS(6341), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5303), 3, + ACTIONS(5312), 3, anon_sym_GT2, anon_sym_LT2, anon_sym_PLUS2, - ACTIONS(5301), 31, + ACTIONS(5310), 31, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -340348,26 +340348,26 @@ static const uint16_t ts_small_parse_table[] = { [117740] = 9, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5385), 1, + ACTIONS(5394), 1, sym__newline, STATE(3344), 1, sym_comment, STATE(3367), 1, aux_sym_shebang_repeat1, - ACTIONS(6296), 2, + ACTIONS(6305), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6298), 2, + ACTIONS(6307), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6300), 2, + ACTIONS(6309), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5233), 3, + ACTIONS(5242), 3, anon_sym_GT2, anon_sym_LT2, anon_sym_PLUS2, - ACTIONS(5231), 30, + ACTIONS(5240), 30, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -340401,35 +340401,35 @@ static const uint16_t ts_small_parse_table[] = { [117802] = 12, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6326), 1, + ACTIONS(6335), 1, anon_sym_DASH2, - ACTIONS(6334), 1, + ACTIONS(6343), 1, anon_sym_PLUS2, STATE(1706), 1, aux_sym_shebang_repeat1, STATE(3345), 1, sym_comment, - ACTIONS(6328), 2, + ACTIONS(6337), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6330), 2, + ACTIONS(6339), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6332), 2, + ACTIONS(6341), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6336), 2, + ACTIONS(6345), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6338), 2, + ACTIONS(6347), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6340), 4, + ACTIONS(6349), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5301), 24, + ACTIONS(5310), 24, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -340457,37 +340457,37 @@ static const uint16_t ts_small_parse_table[] = { [117870] = 13, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5385), 1, + ACTIONS(5394), 1, sym__newline, - ACTIONS(6294), 1, + ACTIONS(6303), 1, anon_sym_DASH2, - ACTIONS(6302), 1, + ACTIONS(6311), 1, anon_sym_PLUS2, STATE(3346), 1, sym_comment, STATE(3368), 1, aux_sym_shebang_repeat1, - ACTIONS(6296), 2, + ACTIONS(6305), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6298), 2, + ACTIONS(6307), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6300), 2, + ACTIONS(6309), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6304), 2, + ACTIONS(6313), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6306), 2, + ACTIONS(6315), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6308), 4, + ACTIONS(6317), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5231), 23, + ACTIONS(5240), 23, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -340518,16 +340518,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_shebang_repeat1, STATE(3347), 1, sym_comment, - ACTIONS(6330), 2, + ACTIONS(6339), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5303), 5, + ACTIONS(5312), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(5301), 33, + ACTIONS(5310), 33, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -340564,22 +340564,22 @@ static const uint16_t ts_small_parse_table[] = { [117996] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5385), 1, + ACTIONS(5394), 1, sym__newline, STATE(3348), 1, sym_comment, STATE(3369), 1, aux_sym_shebang_repeat1, - ACTIONS(6298), 2, + ACTIONS(6307), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5233), 5, + ACTIONS(5242), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(5231), 32, + ACTIONS(5240), 32, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -340615,49 +340615,49 @@ static const uint16_t ts_small_parse_table[] = { [118054] = 17, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6326), 1, + ACTIONS(6335), 1, anon_sym_DASH2, - ACTIONS(6334), 1, + ACTIONS(6343), 1, anon_sym_PLUS2, - ACTIONS(6346), 1, + ACTIONS(6355), 1, anon_sym_bit_DASHand2, - ACTIONS(6348), 1, + ACTIONS(6357), 1, anon_sym_bit_DASHxor2, - ACTIONS(6350), 1, + ACTIONS(6359), 1, anon_sym_bit_DASHor2, STATE(1706), 1, aux_sym_shebang_repeat1, STATE(3349), 1, sym_comment, - ACTIONS(6328), 2, + ACTIONS(6337), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6330), 2, + ACTIONS(6339), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6332), 2, + ACTIONS(6341), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6336), 2, + ACTIONS(6345), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6338), 2, + ACTIONS(6347), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6344), 2, + ACTIONS(6353), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6340), 4, + ACTIONS(6349), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6342), 4, + ACTIONS(6351), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5301), 15, + ACTIONS(5310), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -340676,51 +340676,51 @@ static const uint16_t ts_small_parse_table[] = { [118132] = 18, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5385), 1, + ACTIONS(5394), 1, sym__newline, - ACTIONS(6294), 1, + ACTIONS(6303), 1, anon_sym_DASH2, - ACTIONS(6302), 1, + ACTIONS(6311), 1, anon_sym_PLUS2, - ACTIONS(6314), 1, + ACTIONS(6323), 1, anon_sym_bit_DASHand2, - ACTIONS(6316), 1, + ACTIONS(6325), 1, anon_sym_bit_DASHxor2, - ACTIONS(6318), 1, + ACTIONS(6327), 1, anon_sym_bit_DASHor2, STATE(3350), 1, sym_comment, STATE(3370), 1, aux_sym_shebang_repeat1, - ACTIONS(6296), 2, + ACTIONS(6305), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6298), 2, + ACTIONS(6307), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6300), 2, + ACTIONS(6309), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6304), 2, + ACTIONS(6313), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6306), 2, + ACTIONS(6315), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6312), 2, + ACTIONS(6321), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6308), 4, + ACTIONS(6317), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6310), 4, + ACTIONS(6319), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5231), 14, + ACTIONS(5240), 14, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -340738,51 +340738,51 @@ static const uint16_t ts_small_parse_table[] = { [118212] = 18, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6326), 1, + ACTIONS(6335), 1, anon_sym_DASH2, - ACTIONS(6334), 1, + ACTIONS(6343), 1, anon_sym_PLUS2, - ACTIONS(6346), 1, + ACTIONS(6355), 1, anon_sym_bit_DASHand2, - ACTIONS(6348), 1, + ACTIONS(6357), 1, anon_sym_bit_DASHxor2, - ACTIONS(6350), 1, + ACTIONS(6359), 1, anon_sym_bit_DASHor2, - ACTIONS(6352), 1, + ACTIONS(6361), 1, anon_sym_and2, STATE(1706), 1, aux_sym_shebang_repeat1, STATE(3351), 1, sym_comment, - ACTIONS(6328), 2, + ACTIONS(6337), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6330), 2, + ACTIONS(6339), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6332), 2, + ACTIONS(6341), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6336), 2, + ACTIONS(6345), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6338), 2, + ACTIONS(6347), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6344), 2, + ACTIONS(6353), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6340), 4, + ACTIONS(6349), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6342), 4, + ACTIONS(6351), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5301), 14, + ACTIONS(5310), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -340800,53 +340800,53 @@ static const uint16_t ts_small_parse_table[] = { [118292] = 19, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5385), 1, + ACTIONS(5394), 1, sym__newline, - ACTIONS(6294), 1, + ACTIONS(6303), 1, anon_sym_DASH2, - ACTIONS(6302), 1, + ACTIONS(6311), 1, anon_sym_PLUS2, - ACTIONS(6314), 1, + ACTIONS(6323), 1, anon_sym_bit_DASHand2, - ACTIONS(6316), 1, + ACTIONS(6325), 1, anon_sym_bit_DASHxor2, - ACTIONS(6318), 1, + ACTIONS(6327), 1, anon_sym_bit_DASHor2, - ACTIONS(6320), 1, + ACTIONS(6329), 1, anon_sym_and2, STATE(3352), 1, sym_comment, STATE(3371), 1, aux_sym_shebang_repeat1, - ACTIONS(6296), 2, + ACTIONS(6305), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6298), 2, + ACTIONS(6307), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6300), 2, + ACTIONS(6309), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6304), 2, + ACTIONS(6313), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6306), 2, + ACTIONS(6315), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6312), 2, + ACTIONS(6321), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6308), 4, + ACTIONS(6317), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6310), 4, + ACTIONS(6319), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5231), 13, + ACTIONS(5240), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -340863,53 +340863,53 @@ static const uint16_t ts_small_parse_table[] = { [118374] = 19, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6326), 1, + ACTIONS(6335), 1, anon_sym_DASH2, - ACTIONS(6334), 1, + ACTIONS(6343), 1, anon_sym_PLUS2, - ACTIONS(6346), 1, + ACTIONS(6355), 1, anon_sym_bit_DASHand2, - ACTIONS(6348), 1, + ACTIONS(6357), 1, anon_sym_bit_DASHxor2, - ACTIONS(6350), 1, + ACTIONS(6359), 1, anon_sym_bit_DASHor2, - ACTIONS(6352), 1, + ACTIONS(6361), 1, anon_sym_and2, - ACTIONS(6354), 1, + ACTIONS(6363), 1, anon_sym_xor2, STATE(1706), 1, aux_sym_shebang_repeat1, STATE(3353), 1, sym_comment, - ACTIONS(6328), 2, + ACTIONS(6337), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6330), 2, + ACTIONS(6339), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6332), 2, + ACTIONS(6341), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6336), 2, + ACTIONS(6345), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6338), 2, + ACTIONS(6347), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6344), 2, + ACTIONS(6353), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6340), 4, + ACTIONS(6349), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6342), 4, + ACTIONS(6351), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5301), 13, + ACTIONS(5310), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -340926,55 +340926,55 @@ static const uint16_t ts_small_parse_table[] = { [118456] = 20, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3802), 1, + ACTIONS(3811), 1, sym__newline, - ACTIONS(6294), 1, + ACTIONS(6303), 1, anon_sym_DASH2, - ACTIONS(6302), 1, + ACTIONS(6311), 1, anon_sym_PLUS2, - ACTIONS(6314), 1, + ACTIONS(6323), 1, anon_sym_bit_DASHand2, - ACTIONS(6316), 1, + ACTIONS(6325), 1, anon_sym_bit_DASHxor2, - ACTIONS(6318), 1, + ACTIONS(6327), 1, anon_sym_bit_DASHor2, - ACTIONS(6320), 1, + ACTIONS(6329), 1, anon_sym_and2, - ACTIONS(6322), 1, + ACTIONS(6331), 1, anon_sym_xor2, STATE(3354), 1, sym_comment, STATE(3372), 1, aux_sym_shebang_repeat1, - ACTIONS(6296), 2, + ACTIONS(6305), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6298), 2, + ACTIONS(6307), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6300), 2, + ACTIONS(6309), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6304), 2, + ACTIONS(6313), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6306), 2, + ACTIONS(6315), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6312), 2, + ACTIONS(6321), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6308), 4, + ACTIONS(6317), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6310), 4, + ACTIONS(6319), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5231), 12, + ACTIONS(5240), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -340990,40 +340990,40 @@ static const uint16_t ts_small_parse_table[] = { [118540] = 13, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6326), 1, + ACTIONS(6335), 1, anon_sym_DASH2, - ACTIONS(6334), 1, + ACTIONS(6343), 1, anon_sym_PLUS2, STATE(1706), 1, aux_sym_shebang_repeat1, STATE(3355), 1, sym_comment, - ACTIONS(6328), 2, + ACTIONS(6337), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6330), 2, + ACTIONS(6339), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6332), 2, + ACTIONS(6341), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6336), 2, + ACTIONS(6345), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6338), 2, + ACTIONS(6347), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6340), 4, + ACTIONS(6349), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6342), 4, + ACTIONS(6351), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5301), 20, + ACTIONS(5310), 20, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -341047,42 +341047,42 @@ static const uint16_t ts_small_parse_table[] = { [118610] = 14, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5385), 1, + ACTIONS(5394), 1, sym__newline, - ACTIONS(6294), 1, + ACTIONS(6303), 1, anon_sym_DASH2, - ACTIONS(6302), 1, + ACTIONS(6311), 1, anon_sym_PLUS2, STATE(3356), 1, sym_comment, STATE(3373), 1, aux_sym_shebang_repeat1, - ACTIONS(6296), 2, + ACTIONS(6305), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6298), 2, + ACTIONS(6307), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6300), 2, + ACTIONS(6309), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6304), 2, + ACTIONS(6313), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6306), 2, + ACTIONS(6315), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6308), 4, + ACTIONS(6317), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6310), 4, + ACTIONS(6319), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5231), 19, + ACTIONS(5240), 19, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -341105,27 +341105,27 @@ static const uint16_t ts_small_parse_table[] = { [118682] = 10, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6326), 1, + ACTIONS(6335), 1, anon_sym_DASH2, - ACTIONS(6334), 1, + ACTIONS(6343), 1, anon_sym_PLUS2, STATE(1706), 1, aux_sym_shebang_repeat1, STATE(3357), 1, sym_comment, - ACTIONS(5303), 2, + ACTIONS(5312), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6328), 2, + ACTIONS(6337), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6330), 2, + ACTIONS(6339), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6332), 2, + ACTIONS(6341), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5301), 30, + ACTIONS(5310), 30, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -341159,29 +341159,29 @@ static const uint16_t ts_small_parse_table[] = { [118746] = 11, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5385), 1, + ACTIONS(5394), 1, sym__newline, - ACTIONS(6294), 1, + ACTIONS(6303), 1, anon_sym_DASH2, - ACTIONS(6302), 1, + ACTIONS(6311), 1, anon_sym_PLUS2, STATE(3358), 1, sym_comment, STATE(3374), 1, aux_sym_shebang_repeat1, - ACTIONS(5233), 2, + ACTIONS(5242), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6296), 2, + ACTIONS(6305), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6298), 2, + ACTIONS(6307), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6300), 2, + ACTIONS(6309), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5231), 29, + ACTIONS(5240), 29, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -341214,43 +341214,43 @@ static const uint16_t ts_small_parse_table[] = { [118812] = 14, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6326), 1, + ACTIONS(6335), 1, anon_sym_DASH2, - ACTIONS(6334), 1, + ACTIONS(6343), 1, anon_sym_PLUS2, STATE(1706), 1, aux_sym_shebang_repeat1, STATE(3359), 1, sym_comment, - ACTIONS(6328), 2, + ACTIONS(6337), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6330), 2, + ACTIONS(6339), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6332), 2, + ACTIONS(6341), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6336), 2, + ACTIONS(6345), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6338), 2, + ACTIONS(6347), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6344), 2, + ACTIONS(6353), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6340), 4, + ACTIONS(6349), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6342), 4, + ACTIONS(6351), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5301), 18, + ACTIONS(5310), 18, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -341272,45 +341272,45 @@ static const uint16_t ts_small_parse_table[] = { [118884] = 15, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5385), 1, + ACTIONS(5394), 1, sym__newline, - ACTIONS(6294), 1, + ACTIONS(6303), 1, anon_sym_DASH2, - ACTIONS(6302), 1, + ACTIONS(6311), 1, anon_sym_PLUS2, STATE(3360), 1, sym_comment, STATE(3375), 1, aux_sym_shebang_repeat1, - ACTIONS(6296), 2, + ACTIONS(6305), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6298), 2, + ACTIONS(6307), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6300), 2, + ACTIONS(6309), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6304), 2, + ACTIONS(6313), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6306), 2, + ACTIONS(6315), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6312), 2, + ACTIONS(6321), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6308), 4, + ACTIONS(6317), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6310), 4, + ACTIONS(6319), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5231), 17, + ACTIONS(5240), 17, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -341331,45 +341331,45 @@ static const uint16_t ts_small_parse_table[] = { [118958] = 15, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6326), 1, + ACTIONS(6335), 1, anon_sym_DASH2, - ACTIONS(6334), 1, + ACTIONS(6343), 1, anon_sym_PLUS2, - ACTIONS(6346), 1, + ACTIONS(6355), 1, anon_sym_bit_DASHand2, STATE(1706), 1, aux_sym_shebang_repeat1, STATE(3361), 1, sym_comment, - ACTIONS(6328), 2, + ACTIONS(6337), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6330), 2, + ACTIONS(6339), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6332), 2, + ACTIONS(6341), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6336), 2, + ACTIONS(6345), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6338), 2, + ACTIONS(6347), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6344), 2, + ACTIONS(6353), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6340), 4, + ACTIONS(6349), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6342), 4, + ACTIONS(6351), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5301), 17, + ACTIONS(5310), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -341390,47 +341390,47 @@ static const uint16_t ts_small_parse_table[] = { [119032] = 16, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5385), 1, + ACTIONS(5394), 1, sym__newline, - ACTIONS(6294), 1, + ACTIONS(6303), 1, anon_sym_DASH2, - ACTIONS(6302), 1, + ACTIONS(6311), 1, anon_sym_PLUS2, - ACTIONS(6314), 1, + ACTIONS(6323), 1, anon_sym_bit_DASHand2, STATE(3362), 1, sym_comment, STATE(3376), 1, aux_sym_shebang_repeat1, - ACTIONS(6296), 2, + ACTIONS(6305), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6298), 2, + ACTIONS(6307), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6300), 2, + ACTIONS(6309), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6304), 2, + ACTIONS(6313), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6306), 2, + ACTIONS(6315), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6312), 2, + ACTIONS(6321), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6308), 4, + ACTIONS(6317), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6310), 4, + ACTIONS(6319), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5231), 16, + ACTIONS(5240), 16, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -341450,47 +341450,47 @@ static const uint16_t ts_small_parse_table[] = { [119108] = 16, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6326), 1, + ACTIONS(6335), 1, anon_sym_DASH2, - ACTIONS(6334), 1, + ACTIONS(6343), 1, anon_sym_PLUS2, - ACTIONS(6346), 1, + ACTIONS(6355), 1, anon_sym_bit_DASHand2, - ACTIONS(6348), 1, + ACTIONS(6357), 1, anon_sym_bit_DASHxor2, STATE(1706), 1, aux_sym_shebang_repeat1, STATE(3363), 1, sym_comment, - ACTIONS(6328), 2, + ACTIONS(6337), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6330), 2, + ACTIONS(6339), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6332), 2, + ACTIONS(6341), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6336), 2, + ACTIONS(6345), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6338), 2, + ACTIONS(6347), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6344), 2, + ACTIONS(6353), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6340), 4, + ACTIONS(6349), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6342), 4, + ACTIONS(6351), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5301), 16, + ACTIONS(5310), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -341510,49 +341510,49 @@ static const uint16_t ts_small_parse_table[] = { [119184] = 17, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5385), 1, + ACTIONS(5394), 1, sym__newline, - ACTIONS(6294), 1, + ACTIONS(6303), 1, anon_sym_DASH2, - ACTIONS(6302), 1, + ACTIONS(6311), 1, anon_sym_PLUS2, - ACTIONS(6314), 1, + ACTIONS(6323), 1, anon_sym_bit_DASHand2, - ACTIONS(6316), 1, + ACTIONS(6325), 1, anon_sym_bit_DASHxor2, STATE(3364), 1, sym_comment, STATE(3377), 1, aux_sym_shebang_repeat1, - ACTIONS(6296), 2, + ACTIONS(6305), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6298), 2, + ACTIONS(6307), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6300), 2, + ACTIONS(6309), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6304), 2, + ACTIONS(6313), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6306), 2, + ACTIONS(6315), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6312), 2, + ACTIONS(6321), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6308), 4, + ACTIONS(6317), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6310), 4, + ACTIONS(6319), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5231), 15, + ACTIONS(5240), 15, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -341573,7 +341573,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(3365), 1, sym_comment, - ACTIONS(6358), 41, + ACTIONS(6367), 41, sym__newline, anon_sym_SEMI, anon_sym_COLON, @@ -341618,30 +341618,30 @@ static const uint16_t ts_small_parse_table[] = { [119312] = 11, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6326), 1, + ACTIONS(6335), 1, anon_sym_DASH2, - ACTIONS(6334), 1, + ACTIONS(6343), 1, anon_sym_PLUS2, STATE(1706), 1, aux_sym_shebang_repeat1, STATE(3366), 1, sym_comment, - ACTIONS(5263), 2, + ACTIONS(5272), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6328), 2, + ACTIONS(6337), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6330), 2, + ACTIONS(6339), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6332), 2, + ACTIONS(6341), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6336), 2, + ACTIONS(6345), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5261), 28, + ACTIONS(5270), 28, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -341677,20 +341677,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_shebang_repeat1, STATE(3367), 1, sym_comment, - ACTIONS(6328), 2, + ACTIONS(6337), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6330), 2, + ACTIONS(6339), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6332), 2, + ACTIONS(6341), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5263), 3, + ACTIONS(5272), 3, anon_sym_GT2, anon_sym_LT2, anon_sym_PLUS2, - ACTIONS(5261), 31, + ACTIONS(5270), 31, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -341725,35 +341725,35 @@ static const uint16_t ts_small_parse_table[] = { [119438] = 12, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6326), 1, + ACTIONS(6335), 1, anon_sym_DASH2, - ACTIONS(6334), 1, + ACTIONS(6343), 1, anon_sym_PLUS2, STATE(1706), 1, aux_sym_shebang_repeat1, STATE(3368), 1, sym_comment, - ACTIONS(6328), 2, + ACTIONS(6337), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6330), 2, + ACTIONS(6339), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6332), 2, + ACTIONS(6341), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6336), 2, + ACTIONS(6345), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6338), 2, + ACTIONS(6347), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6340), 4, + ACTIONS(6349), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5261), 24, + ACTIONS(5270), 24, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -341785,16 +341785,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_shebang_repeat1, STATE(3369), 1, sym_comment, - ACTIONS(6330), 2, + ACTIONS(6339), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5263), 5, + ACTIONS(5272), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(5261), 33, + ACTIONS(5270), 33, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -341831,49 +341831,49 @@ static const uint16_t ts_small_parse_table[] = { [119562] = 17, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6326), 1, + ACTIONS(6335), 1, anon_sym_DASH2, - ACTIONS(6334), 1, + ACTIONS(6343), 1, anon_sym_PLUS2, - ACTIONS(6346), 1, + ACTIONS(6355), 1, anon_sym_bit_DASHand2, - ACTIONS(6348), 1, + ACTIONS(6357), 1, anon_sym_bit_DASHxor2, - ACTIONS(6350), 1, + ACTIONS(6359), 1, anon_sym_bit_DASHor2, STATE(1706), 1, aux_sym_shebang_repeat1, STATE(3370), 1, sym_comment, - ACTIONS(6328), 2, + ACTIONS(6337), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6330), 2, + ACTIONS(6339), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6332), 2, + ACTIONS(6341), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6336), 2, + ACTIONS(6345), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6338), 2, + ACTIONS(6347), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6344), 2, + ACTIONS(6353), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6340), 4, + ACTIONS(6349), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6342), 4, + ACTIONS(6351), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5261), 15, + ACTIONS(5270), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -341892,51 +341892,51 @@ static const uint16_t ts_small_parse_table[] = { [119640] = 18, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6326), 1, + ACTIONS(6335), 1, anon_sym_DASH2, - ACTIONS(6334), 1, + ACTIONS(6343), 1, anon_sym_PLUS2, - ACTIONS(6346), 1, + ACTIONS(6355), 1, anon_sym_bit_DASHand2, - ACTIONS(6348), 1, + ACTIONS(6357), 1, anon_sym_bit_DASHxor2, - ACTIONS(6350), 1, + ACTIONS(6359), 1, anon_sym_bit_DASHor2, - ACTIONS(6352), 1, + ACTIONS(6361), 1, anon_sym_and2, STATE(1706), 1, aux_sym_shebang_repeat1, STATE(3371), 1, sym_comment, - ACTIONS(6328), 2, + ACTIONS(6337), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6330), 2, + ACTIONS(6339), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6332), 2, + ACTIONS(6341), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6336), 2, + ACTIONS(6345), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6338), 2, + ACTIONS(6347), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6344), 2, + ACTIONS(6353), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6340), 4, + ACTIONS(6349), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6342), 4, + ACTIONS(6351), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5261), 14, + ACTIONS(5270), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -341954,53 +341954,53 @@ static const uint16_t ts_small_parse_table[] = { [119720] = 19, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6326), 1, + ACTIONS(6335), 1, anon_sym_DASH2, - ACTIONS(6334), 1, + ACTIONS(6343), 1, anon_sym_PLUS2, - ACTIONS(6346), 1, + ACTIONS(6355), 1, anon_sym_bit_DASHand2, - ACTIONS(6348), 1, + ACTIONS(6357), 1, anon_sym_bit_DASHxor2, - ACTIONS(6350), 1, + ACTIONS(6359), 1, anon_sym_bit_DASHor2, - ACTIONS(6352), 1, + ACTIONS(6361), 1, anon_sym_and2, - ACTIONS(6354), 1, + ACTIONS(6363), 1, anon_sym_xor2, STATE(1706), 1, aux_sym_shebang_repeat1, STATE(3372), 1, sym_comment, - ACTIONS(6328), 2, + ACTIONS(6337), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6330), 2, + ACTIONS(6339), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6332), 2, + ACTIONS(6341), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6336), 2, + ACTIONS(6345), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6338), 2, + ACTIONS(6347), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6344), 2, + ACTIONS(6353), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6340), 4, + ACTIONS(6349), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6342), 4, + ACTIONS(6351), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5261), 13, + ACTIONS(5270), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -342017,40 +342017,40 @@ static const uint16_t ts_small_parse_table[] = { [119802] = 13, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6326), 1, + ACTIONS(6335), 1, anon_sym_DASH2, - ACTIONS(6334), 1, + ACTIONS(6343), 1, anon_sym_PLUS2, STATE(1706), 1, aux_sym_shebang_repeat1, STATE(3373), 1, sym_comment, - ACTIONS(6328), 2, + ACTIONS(6337), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6330), 2, + ACTIONS(6339), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6332), 2, + ACTIONS(6341), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6336), 2, + ACTIONS(6345), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6338), 2, + ACTIONS(6347), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6340), 4, + ACTIONS(6349), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6342), 4, + ACTIONS(6351), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5261), 20, + ACTIONS(5270), 20, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -342074,27 +342074,27 @@ static const uint16_t ts_small_parse_table[] = { [119872] = 10, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6326), 1, + ACTIONS(6335), 1, anon_sym_DASH2, - ACTIONS(6334), 1, + ACTIONS(6343), 1, anon_sym_PLUS2, STATE(1706), 1, aux_sym_shebang_repeat1, STATE(3374), 1, sym_comment, - ACTIONS(5263), 2, + ACTIONS(5272), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6328), 2, + ACTIONS(6337), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6330), 2, + ACTIONS(6339), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6332), 2, + ACTIONS(6341), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5261), 30, + ACTIONS(5270), 30, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -342128,43 +342128,43 @@ static const uint16_t ts_small_parse_table[] = { [119936] = 14, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6326), 1, + ACTIONS(6335), 1, anon_sym_DASH2, - ACTIONS(6334), 1, + ACTIONS(6343), 1, anon_sym_PLUS2, STATE(1706), 1, aux_sym_shebang_repeat1, STATE(3375), 1, sym_comment, - ACTIONS(6328), 2, + ACTIONS(6337), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6330), 2, + ACTIONS(6339), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6332), 2, + ACTIONS(6341), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6336), 2, + ACTIONS(6345), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6338), 2, + ACTIONS(6347), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6344), 2, + ACTIONS(6353), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6340), 4, + ACTIONS(6349), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6342), 4, + ACTIONS(6351), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5261), 18, + ACTIONS(5270), 18, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -342186,45 +342186,45 @@ static const uint16_t ts_small_parse_table[] = { [120008] = 15, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6326), 1, + ACTIONS(6335), 1, anon_sym_DASH2, - ACTIONS(6334), 1, + ACTIONS(6343), 1, anon_sym_PLUS2, - ACTIONS(6346), 1, + ACTIONS(6355), 1, anon_sym_bit_DASHand2, STATE(1706), 1, aux_sym_shebang_repeat1, STATE(3376), 1, sym_comment, - ACTIONS(6328), 2, + ACTIONS(6337), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6330), 2, + ACTIONS(6339), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6332), 2, + ACTIONS(6341), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6336), 2, + ACTIONS(6345), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6338), 2, + ACTIONS(6347), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6344), 2, + ACTIONS(6353), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6340), 4, + ACTIONS(6349), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6342), 4, + ACTIONS(6351), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5261), 17, + ACTIONS(5270), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -342245,47 +342245,47 @@ static const uint16_t ts_small_parse_table[] = { [120082] = 16, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6326), 1, + ACTIONS(6335), 1, anon_sym_DASH2, - ACTIONS(6334), 1, + ACTIONS(6343), 1, anon_sym_PLUS2, - ACTIONS(6346), 1, + ACTIONS(6355), 1, anon_sym_bit_DASHand2, - ACTIONS(6348), 1, + ACTIONS(6357), 1, anon_sym_bit_DASHxor2, STATE(1706), 1, aux_sym_shebang_repeat1, STATE(3377), 1, sym_comment, - ACTIONS(6328), 2, + ACTIONS(6337), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6330), 2, + ACTIONS(6339), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6332), 2, + ACTIONS(6341), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6336), 2, + ACTIONS(6345), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6338), 2, + ACTIONS(6347), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6344), 2, + ACTIONS(6353), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6340), 4, + ACTIONS(6349), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6342), 4, + ACTIONS(6351), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5261), 16, + ACTIONS(5270), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -342305,9 +342305,9 @@ static const uint16_t ts_small_parse_table[] = { [120158] = 10, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6209), 1, + ACTIONS(6218), 1, anon_sym_LBRACK, - ACTIONS(6215), 1, + ACTIONS(6224), 1, anon_sym_list, STATE(3378), 1, sym_comment, @@ -342317,14 +342317,14 @@ static const uint16_t ts_small_parse_table[] = { sym__multiple_types, STATE(7642), 1, sym__type_annotation, - ACTIONS(6213), 2, + ACTIONS(6222), 2, anon_sym_table, anon_sym_record, STATE(6414), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6211), 31, + ACTIONS(6220), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -342361,21 +342361,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(1555), 1, aux_sym_unquoted_token2, - ACTIONS(3538), 1, + ACTIONS(3547), 1, anon_sym_DOLLAR, - ACTIONS(4542), 1, + ACTIONS(4551), 1, anon_sym_LPAREN2, - ACTIONS(6360), 1, + ACTIONS(6369), 1, anon_sym_DOT, - ACTIONS(6364), 1, + ACTIONS(6373), 1, aux_sym__immediate_decimal_token4, - ACTIONS(6366), 1, + ACTIONS(6375), 1, aux_sym__immediate_decimal_token5, STATE(3379), 1, sym_comment, STATE(3502), 1, sym__immediate_decimal, - ACTIONS(6362), 2, + ACTIONS(6371), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, STATE(1820), 2, @@ -342416,28 +342416,28 @@ static const uint16_t ts_small_parse_table[] = { [120292] = 10, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6258), 1, + ACTIONS(6267), 1, anon_sym_DASH2, - ACTIONS(6270), 1, + ACTIONS(6279), 1, anon_sym_PLUS2, STATE(3380), 1, sym_comment, - ACTIONS(5207), 2, + ACTIONS(5216), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6262), 2, + ACTIONS(6271), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6266), 2, + ACTIONS(6275), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6268), 2, + ACTIONS(6277), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6272), 2, + ACTIONS(6281), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5205), 29, + ACTIONS(5214), 29, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -342472,20 +342472,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(3381), 1, sym_comment, - ACTIONS(6262), 2, + ACTIONS(6271), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6266), 2, + ACTIONS(6275), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6268), 2, + ACTIONS(6277), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5207), 3, + ACTIONS(5216), 3, anon_sym_GT2, anon_sym_LT2, anon_sym_PLUS2, - ACTIONS(5205), 32, + ACTIONS(5214), 32, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -342521,33 +342521,33 @@ static const uint16_t ts_small_parse_table[] = { [120414] = 11, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6258), 1, + ACTIONS(6267), 1, anon_sym_DASH2, - ACTIONS(6270), 1, + ACTIONS(6279), 1, anon_sym_PLUS2, STATE(3382), 1, sym_comment, - ACTIONS(6256), 2, + ACTIONS(6265), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6262), 2, + ACTIONS(6271), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6266), 2, + ACTIONS(6275), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6268), 2, + ACTIONS(6277), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6272), 2, + ACTIONS(6281), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6264), 4, + ACTIONS(6273), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5205), 25, + ACTIONS(5214), 25, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -342578,16 +342578,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(3383), 1, sym_comment, - ACTIONS(6266), 2, + ACTIONS(6275), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5207), 5, + ACTIONS(5216), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(5205), 34, + ACTIONS(5214), 34, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -342625,47 +342625,47 @@ static const uint16_t ts_small_parse_table[] = { [120534] = 16, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6258), 1, + ACTIONS(6267), 1, anon_sym_DASH2, - ACTIONS(6270), 1, + ACTIONS(6279), 1, anon_sym_PLUS2, - ACTIONS(6276), 1, + ACTIONS(6285), 1, anon_sym_bit_DASHand2, - ACTIONS(6278), 1, + ACTIONS(6287), 1, anon_sym_bit_DASHxor2, - ACTIONS(6368), 1, + ACTIONS(6377), 1, anon_sym_bit_DASHor2, STATE(3384), 1, sym_comment, - ACTIONS(6256), 2, + ACTIONS(6265), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6262), 2, + ACTIONS(6271), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6266), 2, + ACTIONS(6275), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6268), 2, + ACTIONS(6277), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6272), 2, + ACTIONS(6281), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6274), 2, + ACTIONS(6283), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6260), 4, + ACTIONS(6269), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6264), 4, + ACTIONS(6273), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5205), 16, + ACTIONS(5214), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -342685,49 +342685,49 @@ static const uint16_t ts_small_parse_table[] = { [120610] = 17, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6258), 1, + ACTIONS(6267), 1, anon_sym_DASH2, - ACTIONS(6270), 1, + ACTIONS(6279), 1, anon_sym_PLUS2, - ACTIONS(6276), 1, + ACTIONS(6285), 1, anon_sym_bit_DASHand2, - ACTIONS(6278), 1, + ACTIONS(6287), 1, anon_sym_bit_DASHxor2, - ACTIONS(6368), 1, + ACTIONS(6377), 1, anon_sym_bit_DASHor2, - ACTIONS(6370), 1, + ACTIONS(6379), 1, anon_sym_and2, STATE(3385), 1, sym_comment, - ACTIONS(6256), 2, + ACTIONS(6265), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6262), 2, + ACTIONS(6271), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6266), 2, + ACTIONS(6275), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6268), 2, + ACTIONS(6277), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6272), 2, + ACTIONS(6281), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6274), 2, + ACTIONS(6283), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6260), 4, + ACTIONS(6269), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6264), 4, + ACTIONS(6273), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5205), 15, + ACTIONS(5214), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -342746,51 +342746,51 @@ static const uint16_t ts_small_parse_table[] = { [120688] = 18, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6258), 1, + ACTIONS(6267), 1, anon_sym_DASH2, - ACTIONS(6270), 1, + ACTIONS(6279), 1, anon_sym_PLUS2, - ACTIONS(6276), 1, + ACTIONS(6285), 1, anon_sym_bit_DASHand2, - ACTIONS(6278), 1, + ACTIONS(6287), 1, anon_sym_bit_DASHxor2, - ACTIONS(6368), 1, + ACTIONS(6377), 1, anon_sym_bit_DASHor2, - ACTIONS(6370), 1, + ACTIONS(6379), 1, anon_sym_and2, - ACTIONS(6372), 1, + ACTIONS(6381), 1, anon_sym_xor2, STATE(3386), 1, sym_comment, - ACTIONS(6256), 2, + ACTIONS(6265), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6262), 2, + ACTIONS(6271), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6266), 2, + ACTIONS(6275), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6268), 2, + ACTIONS(6277), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6272), 2, + ACTIONS(6281), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6274), 2, + ACTIONS(6283), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6260), 4, + ACTIONS(6269), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6264), 4, + ACTIONS(6273), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5205), 14, + ACTIONS(5214), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -342808,25 +342808,25 @@ static const uint16_t ts_small_parse_table[] = { [120768] = 9, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6258), 1, + ACTIONS(6267), 1, anon_sym_DASH2, - ACTIONS(6270), 1, + ACTIONS(6279), 1, anon_sym_PLUS2, STATE(3387), 1, sym_comment, - ACTIONS(5207), 2, + ACTIONS(5216), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6262), 2, + ACTIONS(6271), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6266), 2, + ACTIONS(6275), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6268), 2, + ACTIONS(6277), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5205), 31, + ACTIONS(5214), 31, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -342861,41 +342861,41 @@ static const uint16_t ts_small_parse_table[] = { [120830] = 13, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6258), 1, + ACTIONS(6267), 1, anon_sym_DASH2, - ACTIONS(6270), 1, + ACTIONS(6279), 1, anon_sym_PLUS2, STATE(3388), 1, sym_comment, - ACTIONS(6256), 2, + ACTIONS(6265), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6262), 2, + ACTIONS(6271), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6266), 2, + ACTIONS(6275), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6268), 2, + ACTIONS(6277), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6272), 2, + ACTIONS(6281), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6274), 2, + ACTIONS(6283), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6260), 4, + ACTIONS(6269), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6264), 4, + ACTIONS(6273), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5205), 19, + ACTIONS(5214), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -342918,43 +342918,43 @@ static const uint16_t ts_small_parse_table[] = { [120900] = 14, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6258), 1, + ACTIONS(6267), 1, anon_sym_DASH2, - ACTIONS(6270), 1, + ACTIONS(6279), 1, anon_sym_PLUS2, - ACTIONS(6276), 1, + ACTIONS(6285), 1, anon_sym_bit_DASHand2, STATE(3389), 1, sym_comment, - ACTIONS(6256), 2, + ACTIONS(6265), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6262), 2, + ACTIONS(6271), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6266), 2, + ACTIONS(6275), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6268), 2, + ACTIONS(6277), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6272), 2, + ACTIONS(6281), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6274), 2, + ACTIONS(6283), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6260), 4, + ACTIONS(6269), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6264), 4, + ACTIONS(6273), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5205), 18, + ACTIONS(5214), 18, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -342976,30 +342976,30 @@ static const uint16_t ts_small_parse_table[] = { [120972] = 11, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6326), 1, + ACTIONS(6335), 1, anon_sym_DASH2, - ACTIONS(6334), 1, + ACTIONS(6343), 1, anon_sym_PLUS2, STATE(1706), 1, aux_sym_shebang_repeat1, STATE(3390), 1, sym_comment, - ACTIONS(5293), 2, + ACTIONS(5302), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6328), 2, + ACTIONS(6337), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6330), 2, + ACTIONS(6339), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6332), 2, + ACTIONS(6341), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6336), 2, + ACTIONS(6345), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5291), 28, + ACTIONS(5300), 28, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -343031,47 +343031,47 @@ static const uint16_t ts_small_parse_table[] = { [121038] = 16, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6376), 1, + ACTIONS(6385), 1, anon_sym_DASH2, - ACTIONS(6390), 1, + ACTIONS(6399), 1, anon_sym_PLUS2, - ACTIONS(6394), 1, + ACTIONS(6403), 1, anon_sym_bit_DASHand2, - ACTIONS(6396), 1, + ACTIONS(6405), 1, anon_sym_bit_DASHxor2, - ACTIONS(6398), 1, + ACTIONS(6407), 1, anon_sym_bit_DASHor2, STATE(3391), 1, sym_comment, - ACTIONS(6374), 2, + ACTIONS(6383), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6380), 2, + ACTIONS(6389), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6384), 2, + ACTIONS(6393), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6386), 2, + ACTIONS(6395), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6388), 2, + ACTIONS(6397), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6392), 2, + ACTIONS(6401), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6378), 4, + ACTIONS(6387), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6382), 4, + ACTIONS(6391), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5205), 15, + ACTIONS(5214), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -343092,16 +343092,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(3392), 1, sym_comment, - ACTIONS(6386), 2, + ACTIONS(6395), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5207), 5, + ACTIONS(5216), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(5205), 33, + ACTIONS(5214), 33, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -343138,45 +343138,45 @@ static const uint16_t ts_small_parse_table[] = { [121166] = 15, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6376), 1, + ACTIONS(6385), 1, anon_sym_DASH2, - ACTIONS(6390), 1, + ACTIONS(6399), 1, anon_sym_PLUS2, - ACTIONS(6394), 1, + ACTIONS(6403), 1, anon_sym_bit_DASHand2, - ACTIONS(6396), 1, + ACTIONS(6405), 1, anon_sym_bit_DASHxor2, STATE(3393), 1, sym_comment, - ACTIONS(6374), 2, + ACTIONS(6383), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6380), 2, + ACTIONS(6389), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6384), 2, + ACTIONS(6393), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6386), 2, + ACTIONS(6395), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6388), 2, + ACTIONS(6397), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6392), 2, + ACTIONS(6401), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6378), 4, + ACTIONS(6387), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6382), 4, + ACTIONS(6391), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5205), 16, + ACTIONS(5214), 16, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -343198,19 +343198,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(1631), 1, aux_sym_unquoted_token2, - ACTIONS(3538), 1, + ACTIONS(3547), 1, anon_sym_DOLLAR, - ACTIONS(4542), 1, + ACTIONS(4551), 1, anon_sym_LPAREN2, - ACTIONS(6402), 1, + ACTIONS(6411), 1, aux_sym__immediate_decimal_token4, - ACTIONS(6404), 1, + ACTIONS(6413), 1, aux_sym__immediate_decimal_token5, STATE(3394), 1, sym_comment, STATE(3527), 1, sym__immediate_decimal, - ACTIONS(6400), 2, + ACTIONS(6409), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, STATE(2050), 2, @@ -343251,49 +343251,49 @@ static const uint16_t ts_small_parse_table[] = { [121306] = 17, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6376), 1, + ACTIONS(6385), 1, anon_sym_DASH2, - ACTIONS(6390), 1, + ACTIONS(6399), 1, anon_sym_PLUS2, - ACTIONS(6394), 1, + ACTIONS(6403), 1, anon_sym_bit_DASHand2, - ACTIONS(6396), 1, + ACTIONS(6405), 1, anon_sym_bit_DASHxor2, - ACTIONS(6398), 1, + ACTIONS(6407), 1, anon_sym_bit_DASHor2, - ACTIONS(6406), 1, + ACTIONS(6415), 1, anon_sym_and2, STATE(3395), 1, sym_comment, - ACTIONS(6374), 2, + ACTIONS(6383), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6380), 2, + ACTIONS(6389), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6384), 2, + ACTIONS(6393), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6386), 2, + ACTIONS(6395), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6388), 2, + ACTIONS(6397), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6392), 2, + ACTIONS(6401), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6378), 4, + ACTIONS(6387), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6382), 4, + ACTIONS(6391), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5205), 14, + ACTIONS(5214), 14, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -343311,51 +343311,51 @@ static const uint16_t ts_small_parse_table[] = { [121383] = 18, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6376), 1, + ACTIONS(6385), 1, anon_sym_DASH2, - ACTIONS(6390), 1, + ACTIONS(6399), 1, anon_sym_PLUS2, - ACTIONS(6394), 1, + ACTIONS(6403), 1, anon_sym_bit_DASHand2, - ACTIONS(6396), 1, + ACTIONS(6405), 1, anon_sym_bit_DASHxor2, - ACTIONS(6398), 1, + ACTIONS(6407), 1, anon_sym_bit_DASHor2, - ACTIONS(6406), 1, + ACTIONS(6415), 1, anon_sym_and2, - ACTIONS(6408), 1, + ACTIONS(6417), 1, anon_sym_xor2, STATE(3396), 1, sym_comment, - ACTIONS(6374), 2, + ACTIONS(6383), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6380), 2, + ACTIONS(6389), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6384), 2, + ACTIONS(6393), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6386), 2, + ACTIONS(6395), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6388), 2, + ACTIONS(6397), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6392), 2, + ACTIONS(6401), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6378), 4, + ACTIONS(6387), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6382), 4, + ACTIONS(6391), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5205), 13, + ACTIONS(5214), 13, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -343372,9 +343372,9 @@ static const uint16_t ts_small_parse_table[] = { [121462] = 9, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6215), 1, + ACTIONS(6224), 1, anon_sym_list, - ACTIONS(6252), 1, + ACTIONS(6261), 1, sym__newline, STATE(3397), 1, sym_comment, @@ -343382,14 +343382,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_shebang_repeat1, STATE(6843), 1, sym__type_annotation, - ACTIONS(6213), 2, + ACTIONS(6222), 2, anon_sym_table, anon_sym_record, STATE(6414), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6211), 31, + ACTIONS(6220), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -343424,7 +343424,7 @@ static const uint16_t ts_small_parse_table[] = { [121523] = 9, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6215), 1, + ACTIONS(6224), 1, anon_sym_list, STATE(3398), 1, sym_comment, @@ -343434,14 +343434,14 @@ static const uint16_t ts_small_parse_table[] = { sym__one_type, STATE(7418), 1, sym__type_annotation, - ACTIONS(6213), 2, + ACTIONS(6222), 2, anon_sym_table, anon_sym_record, STATE(6414), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6211), 31, + ACTIONS(6220), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -343476,9 +343476,9 @@ static const uint16_t ts_small_parse_table[] = { [121584] = 9, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6252), 1, + ACTIONS(6261), 1, sym__newline, - ACTIONS(6414), 1, + ACTIONS(6423), 1, anon_sym_list, STATE(3399), 1, sym_comment, @@ -343486,14 +343486,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_shebang_repeat1, STATE(4451), 1, sym__type_annotation, - ACTIONS(6412), 2, + ACTIONS(6421), 2, anon_sym_table, anon_sym_record, STATE(4606), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6410), 31, + ACTIONS(6419), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -343528,9 +343528,9 @@ static const uint16_t ts_small_parse_table[] = { [121645] = 9, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6252), 1, + ACTIONS(6261), 1, sym__newline, - ACTIONS(6414), 1, + ACTIONS(6423), 1, anon_sym_list, STATE(3400), 1, sym_comment, @@ -343538,14 +343538,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_shebang_repeat1, STATE(4452), 1, sym__type_annotation, - ACTIONS(6412), 2, + ACTIONS(6421), 2, anon_sym_table, anon_sym_record, STATE(4606), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6410), 31, + ACTIONS(6419), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -343580,38 +343580,38 @@ static const uint16_t ts_small_parse_table[] = { [121706] = 12, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6376), 1, + ACTIONS(6385), 1, anon_sym_DASH2, - ACTIONS(6390), 1, + ACTIONS(6399), 1, anon_sym_PLUS2, STATE(3401), 1, sym_comment, - ACTIONS(6374), 2, + ACTIONS(6383), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6380), 2, + ACTIONS(6389), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6386), 2, + ACTIONS(6395), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6388), 2, + ACTIONS(6397), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6392), 2, + ACTIONS(6401), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6378), 4, + ACTIONS(6387), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6382), 4, + ACTIONS(6391), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5205), 20, + ACTIONS(5214), 20, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -343635,25 +343635,25 @@ static const uint16_t ts_small_parse_table[] = { [121773] = 9, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6376), 1, + ACTIONS(6385), 1, anon_sym_DASH2, - ACTIONS(6390), 1, + ACTIONS(6399), 1, anon_sym_PLUS2, STATE(3402), 1, sym_comment, - ACTIONS(5207), 2, + ACTIONS(5216), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6380), 2, + ACTIONS(6389), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6386), 2, + ACTIONS(6395), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6388), 2, + ACTIONS(6397), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5205), 30, + ACTIONS(5214), 30, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -343689,21 +343689,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(1555), 1, aux_sym_unquoted_token2, - ACTIONS(3538), 1, + ACTIONS(3547), 1, anon_sym_DOLLAR, - ACTIONS(4542), 1, + ACTIONS(4551), 1, anon_sym_LPAREN2, - ACTIONS(6416), 1, + ACTIONS(6425), 1, anon_sym_DOT, - ACTIONS(6420), 1, + ACTIONS(6429), 1, aux_sym__immediate_decimal_token4, - ACTIONS(6422), 1, + ACTIONS(6431), 1, aux_sym__immediate_decimal_token5, STATE(3403), 1, sym_comment, STATE(3513), 1, sym__immediate_decimal, - ACTIONS(6418), 2, + ACTIONS(6427), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, STATE(3553), 2, @@ -343743,9 +343743,9 @@ static const uint16_t ts_small_parse_table[] = { [121903] = 9, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6252), 1, + ACTIONS(6261), 1, sym__newline, - ACTIONS(6414), 1, + ACTIONS(6423), 1, anon_sym_list, STATE(3399), 1, aux_sym_shebang_repeat1, @@ -343753,14 +343753,14 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(4515), 1, sym__type_annotation, - ACTIONS(6412), 2, + ACTIONS(6421), 2, anon_sym_table, anon_sym_record, STATE(4606), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6410), 31, + ACTIONS(6419), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -343797,19 +343797,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(1555), 1, aux_sym_unquoted_token2, - ACTIONS(3538), 1, + ACTIONS(3547), 1, anon_sym_DOLLAR, - ACTIONS(4542), 1, + ACTIONS(4551), 1, anon_sym_LPAREN2, - ACTIONS(6402), 1, + ACTIONS(6411), 1, aux_sym__immediate_decimal_token4, - ACTIONS(6404), 1, + ACTIONS(6413), 1, aux_sym__immediate_decimal_token5, STATE(3405), 1, sym_comment, STATE(3536), 1, sym__immediate_decimal, - ACTIONS(6400), 2, + ACTIONS(6409), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, STATE(2035), 2, @@ -343850,41 +343850,41 @@ static const uint16_t ts_small_parse_table[] = { [122031] = 13, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6376), 1, + ACTIONS(6385), 1, anon_sym_DASH2, - ACTIONS(6390), 1, + ACTIONS(6399), 1, anon_sym_PLUS2, STATE(3406), 1, sym_comment, - ACTIONS(6374), 2, + ACTIONS(6383), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6380), 2, + ACTIONS(6389), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6384), 2, + ACTIONS(6393), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6386), 2, + ACTIONS(6395), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6388), 2, + ACTIONS(6397), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6392), 2, + ACTIONS(6401), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6378), 4, + ACTIONS(6387), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6382), 4, + ACTIONS(6391), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5205), 18, + ACTIONS(5214), 18, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -343906,43 +343906,43 @@ static const uint16_t ts_small_parse_table[] = { [122100] = 14, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6376), 1, + ACTIONS(6385), 1, anon_sym_DASH2, - ACTIONS(6390), 1, + ACTIONS(6399), 1, anon_sym_PLUS2, - ACTIONS(6394), 1, + ACTIONS(6403), 1, anon_sym_bit_DASHand2, STATE(3407), 1, sym_comment, - ACTIONS(6374), 2, + ACTIONS(6383), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6380), 2, + ACTIONS(6389), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6384), 2, + ACTIONS(6393), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6386), 2, + ACTIONS(6395), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6388), 2, + ACTIONS(6397), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6392), 2, + ACTIONS(6401), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6378), 4, + ACTIONS(6387), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6382), 4, + ACTIONS(6391), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5205), 17, + ACTIONS(5214), 17, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -343963,7 +343963,7 @@ static const uint16_t ts_small_parse_table[] = { [122171] = 9, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6215), 1, + ACTIONS(6224), 1, anon_sym_list, STATE(3408), 1, sym_comment, @@ -343973,14 +343973,14 @@ static const uint16_t ts_small_parse_table[] = { sym__one_type, STATE(7418), 1, sym__type_annotation, - ACTIONS(6213), 2, + ACTIONS(6222), 2, anon_sym_table, anon_sym_record, STATE(6414), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6211), 31, + ACTIONS(6220), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -344015,9 +344015,9 @@ static const uint16_t ts_small_parse_table[] = { [122232] = 9, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6215), 1, + ACTIONS(6224), 1, anon_sym_list, - ACTIONS(6252), 1, + ACTIONS(6261), 1, sym__newline, STATE(3409), 1, sym_comment, @@ -344025,14 +344025,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_shebang_repeat1, STATE(6676), 1, sym__type_annotation, - ACTIONS(6213), 2, + ACTIONS(6222), 2, anon_sym_table, anon_sym_record, STATE(6414), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6211), 31, + ACTIONS(6220), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -344067,13 +344067,13 @@ static const uint16_t ts_small_parse_table[] = { [122293] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6430), 1, + ACTIONS(6439), 1, anon_sym_list, STATE(7359), 1, sym__one_type, STATE(7418), 1, sym__type_annotation, - ACTIONS(6427), 2, + ACTIONS(6436), 2, anon_sym_table, anon_sym_record, STATE(3410), 2, @@ -344083,7 +344083,7 @@ static const uint16_t ts_small_parse_table[] = { sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6424), 31, + ACTIONS(6433), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -344212,9 +344212,9 @@ static const uint16_t ts_small_parse_table[] = { [122454] = 9, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6215), 1, + ACTIONS(6224), 1, anon_sym_list, - ACTIONS(6252), 1, + ACTIONS(6261), 1, sym__newline, STATE(3413), 1, sym_comment, @@ -344222,14 +344222,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_shebang_repeat1, STATE(7058), 1, sym__type_annotation, - ACTIONS(6213), 2, + ACTIONS(6222), 2, anon_sym_table, anon_sym_record, STATE(6414), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6211), 31, + ACTIONS(6220), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -344264,9 +344264,9 @@ static const uint16_t ts_small_parse_table[] = { [122515] = 9, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6215), 1, + ACTIONS(6224), 1, anon_sym_list, - ACTIONS(6252), 1, + ACTIONS(6261), 1, sym__newline, STATE(3414), 1, sym_comment, @@ -344274,14 +344274,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_shebang_repeat1, STATE(6829), 1, sym__type_annotation, - ACTIONS(6213), 2, + ACTIONS(6222), 2, anon_sym_table, anon_sym_record, STATE(6414), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6211), 31, + ACTIONS(6220), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -344324,7 +344324,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(5076), 12, + ACTIONS(5085), 12, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -344364,28 +344364,28 @@ static const uint16_t ts_small_parse_table[] = { [122629] = 10, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6376), 1, + ACTIONS(6385), 1, anon_sym_DASH2, - ACTIONS(6390), 1, + ACTIONS(6399), 1, anon_sym_PLUS2, STATE(3416), 1, sym_comment, - ACTIONS(5207), 2, + ACTIONS(5216), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6380), 2, + ACTIONS(6389), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6386), 2, + ACTIONS(6395), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6388), 2, + ACTIONS(6397), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6392), 2, + ACTIONS(6401), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5205), 28, + ACTIONS(5214), 28, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -344419,20 +344419,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(3417), 1, sym_comment, - ACTIONS(6380), 2, + ACTIONS(6389), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6386), 2, + ACTIONS(6395), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6388), 2, + ACTIONS(6397), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5207), 3, + ACTIONS(5216), 3, anon_sym_GT2, anon_sym_LT2, anon_sym_PLUS2, - ACTIONS(5205), 31, + ACTIONS(5214), 31, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -344467,33 +344467,33 @@ static const uint16_t ts_small_parse_table[] = { [122749] = 11, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6376), 1, + ACTIONS(6385), 1, anon_sym_DASH2, - ACTIONS(6390), 1, + ACTIONS(6399), 1, anon_sym_PLUS2, STATE(3418), 1, sym_comment, - ACTIONS(6374), 2, + ACTIONS(6383), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6380), 2, + ACTIONS(6389), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6386), 2, + ACTIONS(6395), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6388), 2, + ACTIONS(6397), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6392), 2, + ACTIONS(6401), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6382), 4, + ACTIONS(6391), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5205), 24, + ACTIONS(5214), 24, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -344521,9 +344521,9 @@ static const uint16_t ts_small_parse_table[] = { [122814] = 9, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6252), 1, + ACTIONS(6261), 1, sym__newline, - ACTIONS(6414), 1, + ACTIONS(6423), 1, anon_sym_list, STATE(3419), 1, sym_comment, @@ -344531,14 +344531,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_shebang_repeat1, STATE(4517), 1, sym__type_annotation, - ACTIONS(6412), 2, + ACTIONS(6421), 2, anon_sym_table, anon_sym_record, STATE(4606), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6410), 31, + ACTIONS(6419), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -344575,19 +344575,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(1555), 1, aux_sym_unquoted_token2, - ACTIONS(3538), 1, + ACTIONS(3547), 1, anon_sym_DOLLAR, - ACTIONS(4542), 1, + ACTIONS(4551), 1, anon_sym_LPAREN2, - ACTIONS(6435), 1, + ACTIONS(6444), 1, aux_sym__immediate_decimal_token4, - ACTIONS(6437), 1, + ACTIONS(6446), 1, aux_sym__immediate_decimal_token5, STATE(3420), 1, sym_comment, STATE(3608), 1, sym__immediate_decimal, - ACTIONS(6433), 2, + ACTIONS(6442), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, STATE(2035), 2, @@ -344627,9 +344627,9 @@ static const uint16_t ts_small_parse_table[] = { [122941] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6439), 1, + ACTIONS(6448), 1, anon_sym_DOT, - ACTIONS(6441), 1, + ACTIONS(6450), 1, aux_sym__immediate_decimal_token2, STATE(3421), 1, sym_comment, @@ -344677,19 +344677,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(1631), 1, aux_sym_unquoted_token2, - ACTIONS(3538), 1, + ACTIONS(3547), 1, anon_sym_DOLLAR, - ACTIONS(4542), 1, + ACTIONS(4551), 1, anon_sym_LPAREN2, - ACTIONS(6435), 1, + ACTIONS(6444), 1, aux_sym__immediate_decimal_token4, - ACTIONS(6437), 1, + ACTIONS(6446), 1, aux_sym__immediate_decimal_token5, STATE(3422), 1, sym_comment, STATE(3621), 1, sym__immediate_decimal, - ACTIONS(6433), 2, + ACTIONS(6442), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, STATE(2050), 2, @@ -344729,23 +344729,23 @@ static const uint16_t ts_small_parse_table[] = { [123061] = 22, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3212), 1, + ACTIONS(3219), 1, aux_sym_unquoted_token1, - ACTIONS(3424), 1, + ACTIONS(3433), 1, anon_sym_COLON2, - ACTIONS(3864), 1, + ACTIONS(3873), 1, aux_sym__val_number_decimal_token1, - ACTIONS(3866), 1, + ACTIONS(3875), 1, aux_sym__val_number_decimal_token2, - ACTIONS(3868), 1, + ACTIONS(3877), 1, aux_sym__val_number_decimal_token3, - ACTIONS(3870), 1, + ACTIONS(3879), 1, aux_sym__val_number_decimal_token4, - ACTIONS(4130), 1, + ACTIONS(4139), 1, anon_sym_DOT_DOT, - ACTIONS(5690), 1, + ACTIONS(5699), 1, sym_val_date, - ACTIONS(6443), 1, + ACTIONS(6452), 1, anon_sym_DOLLAR, STATE(3423), 1, sym_comment, @@ -344761,13 +344761,13 @@ static const uint16_t ts_small_parse_table[] = { sym__unquoted_anonymous_prefix, STATE(7527), 1, sym_val_bool, - ACTIONS(3862), 2, + ACTIONS(3871), 2, anon_sym_true, anon_sym_false, - ACTIONS(4132), 2, + ACTIONS(4141), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(5688), 3, + ACTIONS(5697), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, @@ -344793,23 +344793,23 @@ static const uint16_t ts_small_parse_table[] = { [123147] = 22, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3212), 1, + ACTIONS(3219), 1, aux_sym_unquoted_token1, - ACTIONS(3422), 1, + ACTIONS(3431), 1, anon_sym_COLON2, - ACTIONS(3864), 1, + ACTIONS(3873), 1, aux_sym__val_number_decimal_token1, - ACTIONS(3866), 1, + ACTIONS(3875), 1, aux_sym__val_number_decimal_token2, - ACTIONS(3868), 1, + ACTIONS(3877), 1, aux_sym__val_number_decimal_token3, - ACTIONS(3870), 1, + ACTIONS(3879), 1, aux_sym__val_number_decimal_token4, - ACTIONS(4130), 1, + ACTIONS(4139), 1, anon_sym_DOT_DOT, - ACTIONS(5690), 1, + ACTIONS(5699), 1, sym_val_date, - ACTIONS(6443), 1, + ACTIONS(6452), 1, anon_sym_DOLLAR, STATE(3424), 1, sym_comment, @@ -344825,13 +344825,13 @@ static const uint16_t ts_small_parse_table[] = { sym__unquoted_anonymous_prefix, STATE(7527), 1, sym_val_bool, - ACTIONS(3862), 2, + ACTIONS(3871), 2, anon_sym_true, anon_sym_false, - ACTIONS(4132), 2, + ACTIONS(4141), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(5688), 3, + ACTIONS(5697), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, @@ -344857,21 +344857,21 @@ static const uint16_t ts_small_parse_table[] = { [123233] = 12, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3538), 1, + ACTIONS(3547), 1, anon_sym_DOLLAR, - ACTIONS(4542), 1, + ACTIONS(4551), 1, anon_sym_LPAREN2, - ACTIONS(4565), 1, + ACTIONS(4574), 1, anon_sym_DOT, - ACTIONS(6420), 1, + ACTIONS(6429), 1, aux_sym__immediate_decimal_token4, - ACTIONS(6422), 1, + ACTIONS(6431), 1, aux_sym__immediate_decimal_token5, STATE(3425), 1, sym_comment, STATE(3541), 1, sym__immediate_decimal, - ACTIONS(6418), 2, + ACTIONS(6427), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, STATE(3553), 2, @@ -344911,9 +344911,9 @@ static const uint16_t ts_small_parse_table[] = { [123299] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6445), 1, + ACTIONS(6454), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6447), 1, + ACTIONS(6456), 1, aux_sym__immediate_decimal_token2, STATE(3426), 1, sym_comment, @@ -344959,21 +344959,21 @@ static const uint16_t ts_small_parse_table[] = { [123353] = 12, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3538), 1, + ACTIONS(3547), 1, anon_sym_DOLLAR, - ACTIONS(4542), 1, + ACTIONS(4551), 1, anon_sym_LPAREN2, - ACTIONS(4544), 1, + ACTIONS(4553), 1, anon_sym_DOT, - ACTIONS(6420), 1, + ACTIONS(6429), 1, aux_sym__immediate_decimal_token4, - ACTIONS(6422), 1, + ACTIONS(6431), 1, aux_sym__immediate_decimal_token5, STATE(3427), 1, sym_comment, STATE(3552), 1, sym__immediate_decimal, - ACTIONS(6418), 2, + ACTIONS(6427), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, STATE(3551), 2, @@ -345013,20 +345013,20 @@ static const uint16_t ts_small_parse_table[] = { [123419] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6453), 1, + ACTIONS(6462), 1, anon_sym_list, STATE(3428), 1, sym_comment, STATE(5832), 1, sym__all_type, - ACTIONS(6451), 2, + ACTIONS(6460), 2, anon_sym_table, anon_sym_record, STATE(6865), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6449), 31, + ACTIONS(6458), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -345061,7 +345061,7 @@ static const uint16_t ts_small_parse_table[] = { [123474] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6455), 1, + ACTIONS(6464), 1, sym__entry_separator, STATE(3429), 2, sym_comment, @@ -345106,21 +345106,21 @@ static const uint16_t ts_small_parse_table[] = { [123523] = 11, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4403), 1, + ACTIONS(4412), 1, anon_sym_LPAREN2, - ACTIONS(4801), 1, + ACTIONS(4810), 1, aux_sym_unquoted_token2, - ACTIONS(6458), 1, + ACTIONS(6467), 1, anon_sym_DOT_DOT2, - ACTIONS(6462), 1, + ACTIONS(6471), 1, sym_filesize_unit, - ACTIONS(6464), 1, + ACTIONS(6473), 1, sym_duration_unit, STATE(3430), 1, sym_comment, STATE(7276), 1, sym__expr_parenthesized_immediate, - ACTIONS(6460), 2, + ACTIONS(6469), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, ACTIONS(1681), 5, @@ -345158,20 +345158,20 @@ static const uint16_t ts_small_parse_table[] = { [123586] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6453), 1, + ACTIONS(6462), 1, anon_sym_list, STATE(3431), 1, sym_comment, STATE(6069), 1, sym__all_type, - ACTIONS(6451), 2, + ACTIONS(6460), 2, anon_sym_table, anon_sym_record, STATE(6865), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6449), 31, + ACTIONS(6458), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -345206,19 +345206,19 @@ static const uint16_t ts_small_parse_table[] = { [123641] = 11, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3538), 1, + ACTIONS(3547), 1, anon_sym_DOLLAR, - ACTIONS(4542), 1, + ACTIONS(4551), 1, anon_sym_LPAREN2, - ACTIONS(6420), 1, + ACTIONS(6429), 1, aux_sym__immediate_decimal_token4, - ACTIONS(6422), 1, + ACTIONS(6431), 1, aux_sym__immediate_decimal_token5, STATE(2120), 1, sym__immediate_decimal, STATE(3432), 1, sym_comment, - ACTIONS(6466), 2, + ACTIONS(6475), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, STATE(2035), 2, @@ -345258,20 +345258,20 @@ static const uint16_t ts_small_parse_table[] = { [123704] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6453), 1, + ACTIONS(6462), 1, anon_sym_list, STATE(3433), 1, sym_comment, STATE(6618), 1, sym__all_type, - ACTIONS(6451), 2, + ACTIONS(6460), 2, anon_sym_table, anon_sym_record, STATE(6865), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6449), 31, + ACTIONS(6458), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -345306,20 +345306,20 @@ static const uint16_t ts_small_parse_table[] = { [123759] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6453), 1, + ACTIONS(6462), 1, anon_sym_list, STATE(3434), 1, sym_comment, STATE(6620), 1, sym__all_type, - ACTIONS(6451), 2, + ACTIONS(6460), 2, anon_sym_table, anon_sym_record, STATE(6865), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6449), 31, + ACTIONS(6458), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -345354,20 +345354,20 @@ static const uint16_t ts_small_parse_table[] = { [123814] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6453), 1, + ACTIONS(6462), 1, anon_sym_list, STATE(3435), 1, sym_comment, STATE(7213), 1, sym__type_annotation, - ACTIONS(6451), 2, + ACTIONS(6460), 2, anon_sym_table, anon_sym_record, STATE(7233), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6449), 31, + ACTIONS(6458), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -345402,19 +345402,19 @@ static const uint16_t ts_small_parse_table[] = { [123869] = 11, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3538), 1, + ACTIONS(3547), 1, anon_sym_DOLLAR, - ACTIONS(4542), 1, + ACTIONS(4551), 1, anon_sym_LPAREN2, - ACTIONS(6420), 1, + ACTIONS(6429), 1, aux_sym__immediate_decimal_token4, - ACTIONS(6422), 1, + ACTIONS(6431), 1, aux_sym__immediate_decimal_token5, STATE(2130), 1, sym__immediate_decimal, STATE(3436), 1, sym_comment, - ACTIONS(6466), 2, + ACTIONS(6475), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, STATE(2050), 2, @@ -345454,20 +345454,20 @@ static const uint16_t ts_small_parse_table[] = { [123932] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6453), 1, + ACTIONS(6462), 1, anon_sym_list, STATE(3437), 1, sym_comment, STATE(5849), 1, sym__all_type, - ACTIONS(6451), 2, + ACTIONS(6460), 2, anon_sym_table, anon_sym_record, STATE(6865), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6449), 31, + ACTIONS(6458), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -345502,20 +345502,20 @@ static const uint16_t ts_small_parse_table[] = { [123987] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6215), 1, + ACTIONS(6224), 1, anon_sym_list, STATE(3438), 1, sym_comment, STATE(7605), 1, sym__type_annotation, - ACTIONS(6213), 2, + ACTIONS(6222), 2, anon_sym_table, anon_sym_record, STATE(6414), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6211), 31, + ACTIONS(6220), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -345550,7 +345550,7 @@ static const uint16_t ts_small_parse_table[] = { [124042] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6441), 1, + ACTIONS(6450), 1, aux_sym__immediate_decimal_token2, STATE(3439), 1, sym_comment, @@ -345596,7 +345596,7 @@ static const uint16_t ts_small_parse_table[] = { [124093] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6468), 1, + ACTIONS(6477), 1, aux_sym__immediate_decimal_token2, STATE(3440), 1, sym_comment, @@ -345642,9 +345642,9 @@ static const uint16_t ts_small_parse_table[] = { [124144] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6470), 1, + ACTIONS(6479), 1, anon_sym_DOT, - ACTIONS(6472), 1, + ACTIONS(6481), 1, aux_sym__immediate_decimal_token2, STATE(3441), 1, sym_comment, @@ -345689,9 +345689,9 @@ static const uint16_t ts_small_parse_table[] = { [124197] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6474), 1, + ACTIONS(6483), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6476), 1, + ACTIONS(6485), 1, aux_sym__immediate_decimal_token2, STATE(3442), 1, sym_comment, @@ -345736,20 +345736,20 @@ static const uint16_t ts_small_parse_table[] = { [124250] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6453), 1, + ACTIONS(6462), 1, anon_sym_list, STATE(3443), 1, sym_comment, STATE(5851), 1, sym__all_type, - ACTIONS(6451), 2, + ACTIONS(6460), 2, anon_sym_table, anon_sym_record, STATE(6865), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6449), 31, + ACTIONS(6458), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -345784,21 +345784,21 @@ static const uint16_t ts_small_parse_table[] = { [124305] = 21, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3212), 1, + ACTIONS(3219), 1, aux_sym_unquoted_token1, - ACTIONS(3864), 1, + ACTIONS(3873), 1, aux_sym__val_number_decimal_token1, - ACTIONS(3866), 1, + ACTIONS(3875), 1, aux_sym__val_number_decimal_token2, - ACTIONS(3868), 1, + ACTIONS(3877), 1, aux_sym__val_number_decimal_token3, - ACTIONS(3870), 1, + ACTIONS(3879), 1, aux_sym__val_number_decimal_token4, - ACTIONS(4130), 1, + ACTIONS(4139), 1, anon_sym_DOT_DOT, - ACTIONS(5690), 1, + ACTIONS(5699), 1, sym_val_date, - ACTIONS(6443), 1, + ACTIONS(6452), 1, anon_sym_DOLLAR, STATE(3444), 1, sym_comment, @@ -345814,13 +345814,13 @@ static const uint16_t ts_small_parse_table[] = { sym__unquoted_anonymous_prefix, STATE(7527), 1, sym_val_bool, - ACTIONS(3862), 2, + ACTIONS(3871), 2, anon_sym_true, anon_sym_false, - ACTIONS(4132), 2, + ACTIONS(4141), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(5688), 3, + ACTIONS(5697), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, @@ -345846,20 +345846,20 @@ static const uint16_t ts_small_parse_table[] = { [124388] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6453), 1, + ACTIONS(6462), 1, anon_sym_list, STATE(3445), 1, sym_comment, STATE(5959), 1, sym__all_type, - ACTIONS(6451), 2, + ACTIONS(6460), 2, anon_sym_table, anon_sym_record, STATE(6865), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6449), 31, + ACTIONS(6458), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -345894,20 +345894,20 @@ static const uint16_t ts_small_parse_table[] = { [124443] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6453), 1, + ACTIONS(6462), 1, anon_sym_list, STATE(3446), 1, sym_comment, STATE(5961), 1, sym__all_type, - ACTIONS(6451), 2, + ACTIONS(6460), 2, anon_sym_table, anon_sym_record, STATE(6865), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6449), 31, + ACTIONS(6458), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -345942,20 +345942,20 @@ static const uint16_t ts_small_parse_table[] = { [124498] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6453), 1, + ACTIONS(6462), 1, anon_sym_list, STATE(3447), 1, sym_comment, STATE(5971), 1, sym__all_type, - ACTIONS(6451), 2, + ACTIONS(6460), 2, anon_sym_table, anon_sym_record, STATE(6865), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6449), 31, + ACTIONS(6458), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -345990,20 +345990,20 @@ static const uint16_t ts_small_parse_table[] = { [124553] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6453), 1, + ACTIONS(6462), 1, anon_sym_list, STATE(3448), 1, sym_comment, STATE(5975), 1, sym__all_type, - ACTIONS(6451), 2, + ACTIONS(6460), 2, anon_sym_table, anon_sym_record, STATE(6865), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6449), 31, + ACTIONS(6458), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -346038,21 +346038,21 @@ static const uint16_t ts_small_parse_table[] = { [124608] = 21, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3358), 1, + ACTIONS(3367), 1, aux_sym_unquoted_token1, - ACTIONS(3864), 1, + ACTIONS(3873), 1, aux_sym__val_number_decimal_token1, - ACTIONS(3866), 1, + ACTIONS(3875), 1, aux_sym__val_number_decimal_token2, - ACTIONS(3868), 1, + ACTIONS(3877), 1, aux_sym__val_number_decimal_token3, - ACTIONS(3870), 1, + ACTIONS(3879), 1, aux_sym__val_number_decimal_token4, - ACTIONS(5690), 1, + ACTIONS(5699), 1, sym_val_date, - ACTIONS(5826), 1, + ACTIONS(5835), 1, anon_sym_DOT_DOT, - ACTIONS(6478), 1, + ACTIONS(6487), 1, anon_sym_DOLLAR, STATE(3449), 1, sym_comment, @@ -346068,13 +346068,13 @@ static const uint16_t ts_small_parse_table[] = { sym__val_range, STATE(7587), 1, sym__unquoted_anonymous_prefix, - ACTIONS(3862), 2, + ACTIONS(3871), 2, anon_sym_true, anon_sym_false, - ACTIONS(5828), 2, + ACTIONS(5837), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(5830), 3, + ACTIONS(5839), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, @@ -346100,19 +346100,19 @@ static const uint16_t ts_small_parse_table[] = { [124691] = 11, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3538), 1, + ACTIONS(3547), 1, anon_sym_DOLLAR, - ACTIONS(4542), 1, + ACTIONS(4551), 1, anon_sym_LPAREN2, - ACTIONS(6420), 1, + ACTIONS(6429), 1, aux_sym__immediate_decimal_token4, - ACTIONS(6422), 1, + ACTIONS(6431), 1, aux_sym__immediate_decimal_token5, STATE(2034), 1, sym__immediate_decimal, STATE(3450), 1, sym_comment, - ACTIONS(6466), 2, + ACTIONS(6475), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, STATE(2033), 2, @@ -346152,19 +346152,19 @@ static const uint16_t ts_small_parse_table[] = { [124754] = 11, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3538), 1, + ACTIONS(3547), 1, anon_sym_DOLLAR, - ACTIONS(4542), 1, + ACTIONS(4551), 1, anon_sym_LPAREN2, - ACTIONS(6420), 1, + ACTIONS(6429), 1, aux_sym__immediate_decimal_token4, - ACTIONS(6422), 1, + ACTIONS(6431), 1, aux_sym__immediate_decimal_token5, STATE(2045), 1, sym__immediate_decimal, STATE(3451), 1, sym_comment, - ACTIONS(6466), 2, + ACTIONS(6475), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, STATE(2044), 2, @@ -346204,19 +346204,19 @@ static const uint16_t ts_small_parse_table[] = { [124817] = 11, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3538), 1, + ACTIONS(3547), 1, anon_sym_DOLLAR, - ACTIONS(4542), 1, + ACTIONS(4551), 1, anon_sym_LPAREN2, - ACTIONS(6420), 1, + ACTIONS(6429), 1, aux_sym__immediate_decimal_token4, - ACTIONS(6422), 1, + ACTIONS(6431), 1, aux_sym__immediate_decimal_token5, STATE(2047), 1, sym__immediate_decimal, STATE(3452), 1, sym_comment, - ACTIONS(6466), 2, + ACTIONS(6475), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, STATE(2046), 2, @@ -346256,19 +346256,19 @@ static const uint16_t ts_small_parse_table[] = { [124880] = 11, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3538), 1, + ACTIONS(3547), 1, anon_sym_DOLLAR, - ACTIONS(4542), 1, + ACTIONS(4551), 1, anon_sym_LPAREN2, - ACTIONS(6420), 1, + ACTIONS(6429), 1, aux_sym__immediate_decimal_token4, - ACTIONS(6422), 1, + ACTIONS(6431), 1, aux_sym__immediate_decimal_token5, STATE(2049), 1, sym__immediate_decimal, STATE(3453), 1, sym_comment, - ACTIONS(6466), 2, + ACTIONS(6475), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, STATE(2048), 2, @@ -346308,20 +346308,20 @@ static const uint16_t ts_small_parse_table[] = { [124943] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6453), 1, + ACTIONS(6462), 1, anon_sym_list, STATE(3454), 1, sym_comment, STATE(5879), 1, sym__all_type, - ACTIONS(6451), 2, + ACTIONS(6460), 2, anon_sym_table, anon_sym_record, STATE(6865), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6449), 31, + ACTIONS(6458), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -346356,20 +346356,20 @@ static const uint16_t ts_small_parse_table[] = { [124998] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6453), 1, + ACTIONS(6462), 1, anon_sym_list, STATE(3455), 1, sym_comment, STATE(5880), 1, sym__all_type, - ACTIONS(6451), 2, + ACTIONS(6460), 2, anon_sym_table, anon_sym_record, STATE(6865), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6449), 31, + ACTIONS(6458), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -346404,20 +346404,20 @@ static const uint16_t ts_small_parse_table[] = { [125053] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6453), 1, + ACTIONS(6462), 1, anon_sym_list, STATE(3456), 1, sym_comment, STATE(5888), 1, sym__all_type, - ACTIONS(6451), 2, + ACTIONS(6460), 2, anon_sym_table, anon_sym_record, STATE(6865), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6449), 31, + ACTIONS(6458), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -346452,20 +346452,20 @@ static const uint16_t ts_small_parse_table[] = { [125108] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6453), 1, + ACTIONS(6462), 1, anon_sym_list, STATE(3457), 1, sym_comment, STATE(5889), 1, sym__all_type, - ACTIONS(6451), 2, + ACTIONS(6460), 2, anon_sym_table, anon_sym_record, STATE(6865), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6449), 31, + ACTIONS(6458), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -346500,20 +346500,20 @@ static const uint16_t ts_small_parse_table[] = { [125163] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6453), 1, + ACTIONS(6462), 1, anon_sym_list, STATE(3458), 1, sym_comment, STATE(5891), 1, sym__all_type, - ACTIONS(6451), 2, + ACTIONS(6460), 2, anon_sym_table, anon_sym_record, STATE(6865), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6449), 31, + ACTIONS(6458), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -346548,20 +346548,20 @@ static const uint16_t ts_small_parse_table[] = { [125218] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6453), 1, + ACTIONS(6462), 1, anon_sym_list, STATE(3459), 1, sym_comment, STATE(5892), 1, sym__all_type, - ACTIONS(6451), 2, + ACTIONS(6460), 2, anon_sym_table, anon_sym_record, STATE(6865), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6449), 31, + ACTIONS(6458), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -346596,20 +346596,20 @@ static const uint16_t ts_small_parse_table[] = { [125273] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6453), 1, + ACTIONS(6462), 1, anon_sym_list, STATE(3460), 1, sym_comment, STATE(5898), 1, sym__all_type, - ACTIONS(6451), 2, + ACTIONS(6460), 2, anon_sym_table, anon_sym_record, STATE(6865), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6449), 31, + ACTIONS(6458), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -346644,20 +346644,20 @@ static const uint16_t ts_small_parse_table[] = { [125328] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6453), 1, + ACTIONS(6462), 1, anon_sym_list, STATE(3461), 1, sym_comment, STATE(5899), 1, sym__all_type, - ACTIONS(6451), 2, + ACTIONS(6460), 2, anon_sym_table, anon_sym_record, STATE(6865), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6449), 31, + ACTIONS(6458), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -346692,20 +346692,20 @@ static const uint16_t ts_small_parse_table[] = { [125383] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6453), 1, + ACTIONS(6462), 1, anon_sym_list, STATE(3462), 1, sym_comment, STATE(5822), 1, sym__all_type, - ACTIONS(6451), 2, + ACTIONS(6460), 2, anon_sym_table, anon_sym_record, STATE(6865), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6449), 31, + ACTIONS(6458), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -346740,20 +346740,20 @@ static const uint16_t ts_small_parse_table[] = { [125438] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6453), 1, + ACTIONS(6462), 1, anon_sym_list, STATE(3463), 1, sym_comment, STATE(5823), 1, sym__all_type, - ACTIONS(6451), 2, + ACTIONS(6460), 2, anon_sym_table, anon_sym_record, STATE(6865), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6449), 31, + ACTIONS(6458), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -346788,20 +346788,20 @@ static const uint16_t ts_small_parse_table[] = { [125493] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6453), 1, + ACTIONS(6462), 1, anon_sym_list, STATE(3464), 1, sym_comment, STATE(5833), 1, sym__all_type, - ACTIONS(6451), 2, + ACTIONS(6460), 2, anon_sym_table, anon_sym_record, STATE(6865), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6449), 31, + ACTIONS(6458), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -346836,20 +346836,20 @@ static const uint16_t ts_small_parse_table[] = { [125548] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6453), 1, + ACTIONS(6462), 1, anon_sym_list, STATE(3465), 1, sym_comment, STATE(5834), 1, sym__all_type, - ACTIONS(6451), 2, + ACTIONS(6460), 2, anon_sym_table, anon_sym_record, STATE(6865), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6449), 31, + ACTIONS(6458), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -346884,20 +346884,20 @@ static const uint16_t ts_small_parse_table[] = { [125603] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6453), 1, + ACTIONS(6462), 1, anon_sym_list, STATE(3466), 1, sym_comment, STATE(5835), 1, sym__all_type, - ACTIONS(6451), 2, + ACTIONS(6460), 2, anon_sym_table, anon_sym_record, STATE(6865), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6449), 31, + ACTIONS(6458), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -346932,20 +346932,20 @@ static const uint16_t ts_small_parse_table[] = { [125658] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6453), 1, + ACTIONS(6462), 1, anon_sym_list, STATE(3467), 1, sym_comment, STATE(5838), 1, sym__all_type, - ACTIONS(6451), 2, + ACTIONS(6460), 2, anon_sym_table, anon_sym_record, STATE(6865), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6449), 31, + ACTIONS(6458), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -346980,20 +346980,20 @@ static const uint16_t ts_small_parse_table[] = { [125713] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6453), 1, + ACTIONS(6462), 1, anon_sym_list, STATE(3468), 1, sym_comment, STATE(5839), 1, sym__all_type, - ACTIONS(6451), 2, + ACTIONS(6460), 2, anon_sym_table, anon_sym_record, STATE(6865), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6449), 31, + ACTIONS(6458), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -347028,20 +347028,20 @@ static const uint16_t ts_small_parse_table[] = { [125768] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6453), 1, + ACTIONS(6462), 1, anon_sym_list, STATE(3469), 1, sym_comment, STATE(6066), 1, sym__all_type, - ACTIONS(6451), 2, + ACTIONS(6460), 2, anon_sym_table, anon_sym_record, STATE(6865), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6449), 31, + ACTIONS(6458), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -347076,15 +347076,15 @@ static const uint16_t ts_small_parse_table[] = { [125823] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6480), 1, + ACTIONS(6489), 1, anon_sym_RBRACK, - ACTIONS(6484), 1, + ACTIONS(6493), 1, sym__entry_separator, STATE(3429), 1, aux_sym__multiple_types_repeat1, STATE(3470), 1, sym_comment, - ACTIONS(6482), 34, + ACTIONS(6491), 34, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -347166,15 +347166,15 @@ static const uint16_t ts_small_parse_table[] = { [125923] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6484), 1, + ACTIONS(6493), 1, sym__entry_separator, - ACTIONS(6486), 1, + ACTIONS(6495), 1, anon_sym_RBRACK, STATE(3429), 1, aux_sym__multiple_types_repeat1, STATE(3472), 1, sym_comment, - ACTIONS(6482), 34, + ACTIONS(6491), 34, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -347256,21 +347256,21 @@ static const uint16_t ts_small_parse_table[] = { [126023] = 11, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4403), 1, + ACTIONS(4412), 1, anon_sym_LPAREN2, - ACTIONS(4801), 1, + ACTIONS(4810), 1, aux_sym_unquoted_token2, - ACTIONS(6488), 1, + ACTIONS(6497), 1, anon_sym_DOT_DOT2, - ACTIONS(6492), 1, + ACTIONS(6501), 1, sym_filesize_unit, - ACTIONS(6494), 1, + ACTIONS(6503), 1, sym_duration_unit, STATE(3474), 1, sym_comment, STATE(7276), 1, sym__expr_parenthesized_immediate, - ACTIONS(6490), 2, + ACTIONS(6499), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, ACTIONS(1681), 5, @@ -347307,7 +347307,7 @@ static const uint16_t ts_small_parse_table[] = { [126085] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6472), 1, + ACTIONS(6481), 1, aux_sym__immediate_decimal_token2, STATE(3475), 1, sym_comment, @@ -347352,9 +347352,9 @@ static const uint16_t ts_small_parse_table[] = { [126135] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6496), 1, + ACTIONS(6505), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6498), 1, + ACTIONS(6507), 1, aux_sym__immediate_decimal_token2, STATE(3476), 1, sym_comment, @@ -347486,7 +347486,7 @@ static const uint16_t ts_small_parse_table[] = { [126283] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6500), 1, + ACTIONS(6509), 1, aux_sym__immediate_decimal_token2, STATE(3479), 1, sym_comment, @@ -347531,9 +347531,9 @@ static const uint16_t ts_small_parse_table[] = { [126333] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6502), 1, + ACTIONS(6511), 1, anon_sym_DOT, - ACTIONS(6504), 1, + ACTIONS(6513), 1, aux_sym__immediate_decimal_token2, STATE(3480), 1, sym_comment, @@ -347577,15 +347577,15 @@ static const uint16_t ts_small_parse_table[] = { [126385] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6484), 1, + ACTIONS(6493), 1, sym__entry_separator, - ACTIONS(6506), 1, + ACTIONS(6515), 1, anon_sym_RBRACK, STATE(3429), 1, aux_sym__multiple_types_repeat1, STATE(3481), 1, sym_comment, - ACTIONS(6482), 34, + ACTIONS(6491), 34, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -347623,15 +347623,15 @@ static const uint16_t ts_small_parse_table[] = { [126437] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6484), 1, + ACTIONS(6493), 1, sym__entry_separator, - ACTIONS(6508), 1, + ACTIONS(6517), 1, anon_sym_RBRACK, STATE(3429), 1, aux_sym__multiple_types_repeat1, STATE(3482), 1, sym_comment, - ACTIONS(6482), 34, + ACTIONS(6491), 34, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -347713,7 +347713,7 @@ static const uint16_t ts_small_parse_table[] = { [126537] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6510), 1, + ACTIONS(6519), 1, aux_sym__immediate_decimal_token2, STATE(3484), 1, sym_comment, @@ -347800,7 +347800,7 @@ static const uint16_t ts_small_parse_table[] = { [126633] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6512), 1, + ACTIONS(6521), 1, sym__newline, STATE(3486), 2, sym_comment, @@ -347929,13 +347929,13 @@ static const uint16_t ts_small_parse_table[] = { [126774] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6484), 1, + ACTIONS(6493), 1, sym__entry_separator, STATE(3429), 1, aux_sym__multiple_types_repeat1, STATE(3489), 1, sym_comment, - ACTIONS(6482), 34, + ACTIONS(6491), 34, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -348016,9 +348016,9 @@ static const uint16_t ts_small_parse_table[] = { [126870] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5942), 1, + ACTIONS(5951), 1, aux_sym__immediate_decimal_token2, - ACTIONS(6035), 1, + ACTIONS(6044), 1, anon_sym_DOT, STATE(3491), 1, sym_comment, @@ -348061,7 +348061,7 @@ static const uint16_t ts_small_parse_table[] = { [126921] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6504), 1, + ACTIONS(6513), 1, aux_sym__immediate_decimal_token2, STATE(3492), 1, sym_comment, @@ -348105,9 +348105,9 @@ static const uint16_t ts_small_parse_table[] = { [126970] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6515), 1, + ACTIONS(6524), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6517), 1, + ACTIONS(6526), 1, aux_sym__immediate_decimal_token2, STATE(3493), 1, sym_comment, @@ -348150,9 +348150,9 @@ static const uint16_t ts_small_parse_table[] = { [127021] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6519), 1, + ACTIONS(6528), 1, anon_sym_DOT, - ACTIONS(6521), 1, + ACTIONS(6530), 1, aux_sym__immediate_decimal_token2, STATE(3494), 1, sym_comment, @@ -348321,7 +348321,7 @@ static const uint16_t ts_small_parse_table[] = { [127210] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6521), 1, + ACTIONS(6530), 1, aux_sym__immediate_decimal_token2, STATE(3498), 1, sym_comment, @@ -348406,7 +348406,7 @@ static const uint16_t ts_small_parse_table[] = { [127304] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6523), 1, + ACTIONS(6532), 1, aux_sym__immediate_decimal_token2, STATE(3500), 1, sym_comment, @@ -348494,11 +348494,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, ACTIONS(1875), 1, aux_sym_unquoted_token2, - ACTIONS(6525), 1, + ACTIONS(6534), 1, anon_sym_DOT_DOT2, STATE(3502), 1, sym_comment, - ACTIONS(6527), 2, + ACTIONS(6536), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, ACTIONS(1865), 5, @@ -348540,11 +348540,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_unquoted_token2, ACTIONS(1788), 1, anon_sym_LPAREN2, - ACTIONS(6529), 1, + ACTIONS(6538), 1, anon_sym_DOT_DOT2, STATE(3503), 1, sym_comment, - ACTIONS(6531), 2, + ACTIONS(6540), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, ACTIONS(1786), 5, @@ -348582,9 +348582,9 @@ static const uint16_t ts_small_parse_table[] = { [127504] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6533), 1, + ACTIONS(6542), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6535), 1, + ACTIONS(6544), 1, aux_sym__immediate_decimal_token2, STATE(3504), 1, sym_comment, @@ -348666,9 +348666,9 @@ static const uint16_t ts_small_parse_table[] = { [127598] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6537), 1, + ACTIONS(6546), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6539), 1, + ACTIONS(6548), 1, aux_sym__immediate_decimal_token2, STATE(3506), 1, sym_comment, @@ -348713,11 +348713,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_unquoted_token2, ACTIONS(1788), 1, anon_sym_LPAREN2, - ACTIONS(6541), 1, + ACTIONS(6550), 1, anon_sym_DOT_DOT2, STATE(3507), 1, sym_comment, - ACTIONS(6543), 2, + ACTIONS(6552), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, ACTIONS(1786), 5, @@ -348795,15 +348795,15 @@ static const uint16_t ts_small_parse_table[] = { [127745] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6153), 1, + ACTIONS(6162), 1, sym_filesize_unit, - ACTIONS(6155), 1, + ACTIONS(6164), 1, sym_duration_unit, - ACTIONS(6545), 1, + ACTIONS(6554), 1, anon_sym_DOT_DOT2, STATE(3509), 1, sym_comment, - ACTIONS(6547), 2, + ACTIONS(6556), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, ACTIONS(1681), 5, @@ -348922,9 +348922,9 @@ static const uint16_t ts_small_parse_table[] = { [127888] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6549), 1, + ACTIONS(6558), 1, anon_sym_DOT, - ACTIONS(6551), 1, + ACTIONS(6560), 1, aux_sym__immediate_decimal_token2, STATE(3512), 1, sym_comment, @@ -348969,11 +348969,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, ACTIONS(1875), 1, aux_sym_unquoted_token2, - ACTIONS(6553), 1, + ACTIONS(6562), 1, anon_sym_DOT_DOT2, STATE(3513), 1, sym_comment, - ACTIONS(6555), 2, + ACTIONS(6564), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, ACTIONS(1865), 5, @@ -349010,9 +349010,9 @@ static const uint16_t ts_small_parse_table[] = { [127990] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6557), 1, + ACTIONS(6566), 1, anon_sym_DOT, - ACTIONS(6559), 1, + ACTIONS(6568), 1, aux_sym__immediate_decimal_token2, STATE(3514), 1, sym_comment, @@ -349053,9 +349053,9 @@ static const uint16_t ts_small_parse_table[] = { [128039] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6561), 1, + ACTIONS(6570), 1, anon_sym_DOT, - ACTIONS(6563), 1, + ACTIONS(6572), 1, aux_sym__immediate_decimal_token2, STATE(3515), 1, sym_comment, @@ -349095,7 +349095,7 @@ static const uint16_t ts_small_parse_table[] = { [128087] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6551), 1, + ACTIONS(6560), 1, aux_sym__immediate_decimal_token2, STATE(3516), 1, sym_comment, @@ -349136,9 +349136,9 @@ static const uint16_t ts_small_parse_table[] = { [128133] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6565), 1, + ACTIONS(6574), 1, anon_sym_DOT, - ACTIONS(6567), 1, + ACTIONS(6576), 1, aux_sym__immediate_decimal_token2, STATE(3517), 1, sym_comment, @@ -349178,7 +349178,7 @@ static const uint16_t ts_small_parse_table[] = { [128181] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6569), 1, + ACTIONS(6578), 1, aux_sym__immediate_decimal_token2, STATE(3518), 1, sym_comment, @@ -349219,7 +349219,7 @@ static const uint16_t ts_small_parse_table[] = { [128227] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6571), 1, + ACTIONS(6580), 1, aux_sym__immediate_decimal_token2, STATE(3519), 1, sym_comment, @@ -349260,9 +349260,9 @@ static const uint16_t ts_small_parse_table[] = { [128273] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6573), 1, + ACTIONS(6582), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6575), 1, + ACTIONS(6584), 1, aux_sym__immediate_decimal_token2, STATE(3520), 1, sym_comment, @@ -349302,9 +349302,9 @@ static const uint16_t ts_small_parse_table[] = { [128321] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6577), 1, + ACTIONS(6586), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6579), 1, + ACTIONS(6588), 1, aux_sym__immediate_decimal_token2, STATE(3521), 1, sym_comment, @@ -349344,7 +349344,7 @@ static const uint16_t ts_small_parse_table[] = { [128369] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6559), 1, + ACTIONS(6568), 1, aux_sym__immediate_decimal_token2, STATE(3522), 1, sym_comment, @@ -349469,25 +349469,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(381), 1, anon_sym_DASH2, - ACTIONS(3418), 1, + ACTIONS(3427), 1, aux_sym__val_number_decimal_token3, - ACTIONS(3420), 1, + ACTIONS(3429), 1, aux_sym__val_number_decimal_token4, - ACTIONS(3444), 1, + ACTIONS(3453), 1, aux_sym_expr_unary_token1, - ACTIONS(6581), 1, + ACTIONS(6590), 1, sym_identifier, - ACTIONS(6583), 1, + ACTIONS(6592), 1, sym__newline, - ACTIONS(6585), 1, + ACTIONS(6594), 1, anon_sym_LPAREN, - ACTIONS(6587), 1, + ACTIONS(6596), 1, anon_sym_DOLLAR, - ACTIONS(6589), 1, + ACTIONS(6598), 1, anon_sym_LBRACE, - ACTIONS(6591), 1, + ACTIONS(6600), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6593), 1, + ACTIONS(6602), 1, aux_sym__val_number_decimal_token2, STATE(1638), 1, sym__val_number, @@ -349529,21 +349529,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(1681), 1, anon_sym_COLON2, - ACTIONS(3022), 1, + ACTIONS(3029), 1, aux_sym_cmd_identifier_token41, - ACTIONS(6595), 1, + ACTIONS(6604), 1, sym_filesize_unit, - ACTIONS(6597), 1, + ACTIONS(6606), 1, sym_duration_unit, STATE(3526), 1, sym_comment, - ACTIONS(3020), 5, + ACTIONS(3027), 5, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, - ACTIONS(3018), 23, + ACTIONS(3025), 23, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -349650,7 +349650,7 @@ static const uint16_t ts_small_parse_table[] = { [128735] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6563), 1, + ACTIONS(6572), 1, aux_sym__immediate_decimal_token2, STATE(3529), 1, sym_comment, @@ -349729,7 +349729,7 @@ static const uint16_t ts_small_parse_table[] = { [128823] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6599), 1, + ACTIONS(6608), 1, aux_sym__immediate_decimal_token2, STATE(3531), 1, sym_comment, @@ -349890,7 +349890,7 @@ static const uint16_t ts_small_parse_table[] = { [129005] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6601), 1, + ACTIONS(6610), 1, aux_sym__immediate_decimal_token2, STATE(3535), 1, sym_comment, @@ -349971,22 +349971,22 @@ static const uint16_t ts_small_parse_table[] = { [129097] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5106), 1, + ACTIONS(5115), 1, anon_sym_EQ_GT, - ACTIONS(6603), 1, + ACTIONS(6612), 1, anon_sym_DOT_DOT2, STATE(3537), 1, sym_comment, - ACTIONS(6605), 2, + ACTIONS(6614), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(5108), 5, + ACTIONS(5117), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(5110), 23, + ACTIONS(5119), 23, anon_sym_DASH2, anon_sym_in2, anon_sym_and2, @@ -350013,11 +350013,11 @@ static const uint16_t ts_small_parse_table[] = { [129146] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6603), 1, + ACTIONS(6612), 1, anon_sym_DOT_DOT2, STATE(3538), 1, sym_comment, - ACTIONS(6605), 2, + ACTIONS(6614), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, ACTIONS(1004), 5, @@ -350095,20 +350095,20 @@ static const uint16_t ts_small_parse_table[] = { [129240] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6603), 1, + ACTIONS(6612), 1, anon_sym_DOT_DOT2, STATE(3540), 1, sym_comment, - ACTIONS(6605), 2, + ACTIONS(6614), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(5108), 5, + ACTIONS(5117), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(5110), 24, + ACTIONS(5119), 24, anon_sym_DASH2, anon_sym_in2, anon_sym_EQ_GT, @@ -350136,11 +350136,11 @@ static const uint16_t ts_small_parse_table[] = { [129287] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6607), 1, + ACTIONS(6616), 1, anon_sym_DOT_DOT2, STATE(3541), 1, sym_comment, - ACTIONS(6609), 2, + ACTIONS(6618), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, ACTIONS(1865), 5, @@ -350376,7 +350376,7 @@ static const uint16_t ts_small_parse_table[] = { [129557] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6567), 1, + ACTIONS(6576), 1, aux_sym__immediate_decimal_token2, STATE(3547), 1, sym_comment, @@ -350459,25 +350459,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(381), 1, anon_sym_DASH2, - ACTIONS(3418), 1, + ACTIONS(3427), 1, aux_sym__val_number_decimal_token3, - ACTIONS(3420), 1, + ACTIONS(3429), 1, aux_sym__val_number_decimal_token4, - ACTIONS(3444), 1, + ACTIONS(3453), 1, aux_sym_expr_unary_token1, - ACTIONS(6581), 1, + ACTIONS(6590), 1, sym_identifier, - ACTIONS(6583), 1, + ACTIONS(6592), 1, sym__newline, - ACTIONS(6585), 1, + ACTIONS(6594), 1, anon_sym_LPAREN, - ACTIONS(6587), 1, + ACTIONS(6596), 1, anon_sym_DOLLAR, - ACTIONS(6589), 1, + ACTIONS(6598), 1, anon_sym_LBRACE, - ACTIONS(6591), 1, + ACTIONS(6600), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6593), 1, + ACTIONS(6602), 1, aux_sym__val_number_decimal_token2, STATE(1638), 1, sym__val_number, @@ -350517,11 +350517,11 @@ static const uint16_t ts_small_parse_table[] = { [129734] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6611), 1, + ACTIONS(6620), 1, anon_sym_DOT_DOT2, STATE(3550), 1, sym_comment, - ACTIONS(6613), 2, + ACTIONS(6622), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, ACTIONS(2170), 5, @@ -350558,11 +350558,11 @@ static const uint16_t ts_small_parse_table[] = { [129781] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6615), 1, + ACTIONS(6624), 1, anon_sym_DOT_DOT2, STATE(3551), 1, sym_comment, - ACTIONS(6617), 2, + ACTIONS(6626), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, ACTIONS(2144), 5, @@ -350599,11 +350599,11 @@ static const uint16_t ts_small_parse_table[] = { [129828] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6619), 1, + ACTIONS(6628), 1, anon_sym_DOT_DOT2, STATE(3552), 1, sym_comment, - ACTIONS(6621), 2, + ACTIONS(6630), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, ACTIONS(2152), 5, @@ -350640,11 +350640,11 @@ static const uint16_t ts_small_parse_table[] = { [129875] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6623), 1, + ACTIONS(6632), 1, anon_sym_DOT_DOT2, STATE(3553), 1, sym_comment, - ACTIONS(6625), 2, + ACTIONS(6634), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, ACTIONS(2160), 5, @@ -350761,11 +350761,11 @@ static const uint16_t ts_small_parse_table[] = { [130012] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6627), 1, + ACTIONS(6636), 1, anon_sym_DOT_DOT2, STATE(3556), 1, sym_comment, - ACTIONS(6629), 2, + ACTIONS(6638), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, ACTIONS(1786), 5, @@ -350802,21 +350802,21 @@ static const uint16_t ts_small_parse_table[] = { [130059] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6635), 1, + ACTIONS(6644), 1, aux_sym_cmd_identifier_token41, - ACTIONS(6637), 1, + ACTIONS(6646), 1, sym_filesize_unit, - ACTIONS(6639), 1, + ACTIONS(6648), 1, sym_duration_unit, STATE(3557), 1, sym_comment, - ACTIONS(6633), 5, + ACTIONS(6642), 5, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, - ACTIONS(6631), 23, + ACTIONS(6640), 23, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -350843,51 +350843,51 @@ static const uint16_t ts_small_parse_table[] = { [130107] = 18, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5392), 1, + ACTIONS(5401), 1, sym__newline, - ACTIONS(6643), 1, + ACTIONS(6652), 1, anon_sym_DASH2, - ACTIONS(6657), 1, + ACTIONS(6666), 1, anon_sym_PLUS2, - ACTIONS(6661), 1, + ACTIONS(6670), 1, anon_sym_bit_DASHand2, - ACTIONS(6663), 1, + ACTIONS(6672), 1, anon_sym_bit_DASHxor2, - ACTIONS(6665), 1, + ACTIONS(6674), 1, anon_sym_bit_DASHor2, STATE(3558), 1, sym_comment, STATE(3595), 1, aux_sym_shebang_repeat1, - ACTIONS(6641), 2, + ACTIONS(6650), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6647), 2, + ACTIONS(6656), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6651), 2, + ACTIONS(6660), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6653), 2, + ACTIONS(6662), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6655), 2, + ACTIONS(6664), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6659), 2, + ACTIONS(6668), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5287), 4, + ACTIONS(5296), 4, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - ACTIONS(6645), 4, + ACTIONS(6654), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6649), 4, + ACTIONS(6658), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, @@ -350895,51 +350895,51 @@ static const uint16_t ts_small_parse_table[] = { [130177] = 18, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6669), 1, + ACTIONS(6678), 1, anon_sym_DASH2, - ACTIONS(6675), 1, + ACTIONS(6684), 1, anon_sym_and2, - ACTIONS(6685), 1, + ACTIONS(6694), 1, anon_sym_PLUS2, - ACTIONS(6689), 1, + ACTIONS(6698), 1, anon_sym_bit_DASHand2, - ACTIONS(6691), 1, + ACTIONS(6700), 1, anon_sym_bit_DASHxor2, - ACTIONS(6693), 1, + ACTIONS(6702), 1, anon_sym_bit_DASHor2, STATE(1706), 1, aux_sym_shebang_repeat1, STATE(3559), 1, sym_comment, - ACTIONS(6667), 2, + ACTIONS(6676), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6673), 2, + ACTIONS(6682), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6679), 2, + ACTIONS(6688), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6681), 2, + ACTIONS(6690), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6683), 2, + ACTIONS(6692), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6687), 2, + ACTIONS(6696), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5283), 4, + ACTIONS(5292), 4, sym__newline, anon_sym_LBRACE, anon_sym_xor2, anon_sym_or2, - ACTIONS(6671), 4, + ACTIONS(6680), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6677), 4, + ACTIONS(6686), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, @@ -350947,52 +350947,52 @@ static const uint16_t ts_small_parse_table[] = { [130247] = 19, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5392), 1, + ACTIONS(5401), 1, sym__newline, - ACTIONS(6643), 1, + ACTIONS(6652), 1, anon_sym_DASH2, - ACTIONS(6657), 1, + ACTIONS(6666), 1, anon_sym_PLUS2, - ACTIONS(6661), 1, + ACTIONS(6670), 1, anon_sym_bit_DASHand2, - ACTIONS(6663), 1, + ACTIONS(6672), 1, anon_sym_bit_DASHxor2, - ACTIONS(6665), 1, + ACTIONS(6674), 1, anon_sym_bit_DASHor2, - ACTIONS(6695), 1, + ACTIONS(6704), 1, anon_sym_and2, STATE(3560), 1, sym_comment, STATE(3596), 1, aux_sym_shebang_repeat1, - ACTIONS(6641), 2, + ACTIONS(6650), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6647), 2, + ACTIONS(6656), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6651), 2, + ACTIONS(6660), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6653), 2, + ACTIONS(6662), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6655), 2, + ACTIONS(6664), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6659), 2, + ACTIONS(6668), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5287), 3, + ACTIONS(5296), 3, anon_sym_LBRACE, anon_sym_xor2, anon_sym_or2, - ACTIONS(6645), 4, + ACTIONS(6654), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6649), 4, + ACTIONS(6658), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, @@ -351000,52 +351000,52 @@ static const uint16_t ts_small_parse_table[] = { [130319] = 19, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6669), 1, + ACTIONS(6678), 1, anon_sym_DASH2, - ACTIONS(6675), 1, + ACTIONS(6684), 1, anon_sym_and2, - ACTIONS(6685), 1, + ACTIONS(6694), 1, anon_sym_PLUS2, - ACTIONS(6689), 1, + ACTIONS(6698), 1, anon_sym_bit_DASHand2, - ACTIONS(6691), 1, + ACTIONS(6700), 1, anon_sym_bit_DASHxor2, - ACTIONS(6693), 1, + ACTIONS(6702), 1, anon_sym_bit_DASHor2, - ACTIONS(6697), 1, + ACTIONS(6706), 1, anon_sym_xor2, STATE(1706), 1, aux_sym_shebang_repeat1, STATE(3561), 1, sym_comment, - ACTIONS(6667), 2, + ACTIONS(6676), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6673), 2, + ACTIONS(6682), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6679), 2, + ACTIONS(6688), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6681), 2, + ACTIONS(6690), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6683), 2, + ACTIONS(6692), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6687), 2, + ACTIONS(6696), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5283), 3, + ACTIONS(5292), 3, sym__newline, anon_sym_LBRACE, anon_sym_or2, - ACTIONS(6671), 4, + ACTIONS(6680), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6677), 4, + ACTIONS(6686), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, @@ -351053,53 +351053,53 @@ static const uint16_t ts_small_parse_table[] = { [130391] = 20, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3802), 1, + ACTIONS(3811), 1, sym__newline, - ACTIONS(6643), 1, + ACTIONS(6652), 1, anon_sym_DASH2, - ACTIONS(6657), 1, + ACTIONS(6666), 1, anon_sym_PLUS2, - ACTIONS(6661), 1, + ACTIONS(6670), 1, anon_sym_bit_DASHand2, - ACTIONS(6663), 1, + ACTIONS(6672), 1, anon_sym_bit_DASHxor2, - ACTIONS(6665), 1, + ACTIONS(6674), 1, anon_sym_bit_DASHor2, - ACTIONS(6695), 1, + ACTIONS(6704), 1, anon_sym_and2, - ACTIONS(6699), 1, + ACTIONS(6708), 1, anon_sym_xor2, STATE(3562), 1, sym_comment, STATE(3597), 1, aux_sym_shebang_repeat1, - ACTIONS(5287), 2, + ACTIONS(5296), 2, anon_sym_LBRACE, anon_sym_or2, - ACTIONS(6641), 2, + ACTIONS(6650), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6647), 2, + ACTIONS(6656), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6651), 2, + ACTIONS(6660), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6653), 2, + ACTIONS(6662), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6655), 2, + ACTIONS(6664), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6659), 2, + ACTIONS(6668), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6645), 4, + ACTIONS(6654), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6649), 4, + ACTIONS(6658), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, @@ -351145,40 +351145,40 @@ static const uint16_t ts_small_parse_table[] = { [130507] = 13, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6669), 1, + ACTIONS(6678), 1, anon_sym_DASH2, - ACTIONS(6685), 1, + ACTIONS(6694), 1, anon_sym_PLUS2, STATE(1706), 1, aux_sym_shebang_repeat1, STATE(3564), 1, sym_comment, - ACTIONS(6667), 2, + ACTIONS(6676), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6673), 2, + ACTIONS(6682), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6681), 2, + ACTIONS(6690), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6683), 2, + ACTIONS(6692), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6687), 2, + ACTIONS(6696), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6671), 4, + ACTIONS(6680), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6677), 4, + ACTIONS(6686), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5283), 10, + ACTIONS(5292), 10, sym__newline, anon_sym_LBRACE, anon_sym_and2, @@ -351192,42 +351192,42 @@ static const uint16_t ts_small_parse_table[] = { [130567] = 14, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5392), 1, + ACTIONS(5401), 1, sym__newline, - ACTIONS(6643), 1, + ACTIONS(6652), 1, anon_sym_DASH2, - ACTIONS(6657), 1, + ACTIONS(6666), 1, anon_sym_PLUS2, STATE(3565), 1, sym_comment, STATE(3599), 1, aux_sym_shebang_repeat1, - ACTIONS(6641), 2, + ACTIONS(6650), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6647), 2, + ACTIONS(6656), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6653), 2, + ACTIONS(6662), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6655), 2, + ACTIONS(6664), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6659), 2, + ACTIONS(6668), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6645), 4, + ACTIONS(6654), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6649), 4, + ACTIONS(6658), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5287), 9, + ACTIONS(5296), 9, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, @@ -351240,27 +351240,27 @@ static const uint16_t ts_small_parse_table[] = { [130629] = 10, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6669), 1, + ACTIONS(6678), 1, anon_sym_DASH2, - ACTIONS(6685), 1, + ACTIONS(6694), 1, anon_sym_PLUS2, STATE(1706), 1, aux_sym_shebang_repeat1, STATE(3566), 1, sym_comment, - ACTIONS(5285), 2, + ACTIONS(5294), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6673), 2, + ACTIONS(6682), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6681), 2, + ACTIONS(6690), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6683), 2, + ACTIONS(6692), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5283), 20, + ACTIONS(5292), 20, sym__newline, anon_sym_in2, anon_sym_LBRACE, @@ -351284,7 +351284,7 @@ static const uint16_t ts_small_parse_table[] = { [130683] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4801), 1, + ACTIONS(4810), 1, aux_sym_unquoted_token2, STATE(3567), 1, sym_comment, @@ -351323,29 +351323,29 @@ static const uint16_t ts_small_parse_table[] = { [130727] = 11, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5392), 1, + ACTIONS(5401), 1, sym__newline, - ACTIONS(6643), 1, + ACTIONS(6652), 1, anon_sym_DASH2, - ACTIONS(6657), 1, + ACTIONS(6666), 1, anon_sym_PLUS2, STATE(3568), 1, sym_comment, STATE(3600), 1, aux_sym_shebang_repeat1, - ACTIONS(5289), 2, + ACTIONS(5298), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6647), 2, + ACTIONS(6656), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6653), 2, + ACTIONS(6662), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6655), 2, + ACTIONS(6664), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5287), 19, + ACTIONS(5296), 19, anon_sym_in2, anon_sym_LBRACE, anon_sym_and2, @@ -351368,43 +351368,43 @@ static const uint16_t ts_small_parse_table[] = { [130783] = 14, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6669), 1, + ACTIONS(6678), 1, anon_sym_DASH2, - ACTIONS(6685), 1, + ACTIONS(6694), 1, anon_sym_PLUS2, STATE(1706), 1, aux_sym_shebang_repeat1, STATE(3569), 1, sym_comment, - ACTIONS(6667), 2, + ACTIONS(6676), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6673), 2, + ACTIONS(6682), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6679), 2, + ACTIONS(6688), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6681), 2, + ACTIONS(6690), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6683), 2, + ACTIONS(6692), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6687), 2, + ACTIONS(6696), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6671), 4, + ACTIONS(6680), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6677), 4, + ACTIONS(6686), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5283), 8, + ACTIONS(5292), 8, sym__newline, anon_sym_LBRACE, anon_sym_and2, @@ -351416,45 +351416,45 @@ static const uint16_t ts_small_parse_table[] = { [130845] = 15, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5392), 1, + ACTIONS(5401), 1, sym__newline, - ACTIONS(6643), 1, + ACTIONS(6652), 1, anon_sym_DASH2, - ACTIONS(6657), 1, + ACTIONS(6666), 1, anon_sym_PLUS2, STATE(3570), 1, sym_comment, STATE(3602), 1, aux_sym_shebang_repeat1, - ACTIONS(6641), 2, + ACTIONS(6650), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6647), 2, + ACTIONS(6656), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6651), 2, + ACTIONS(6660), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6653), 2, + ACTIONS(6662), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6655), 2, + ACTIONS(6664), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6659), 2, + ACTIONS(6668), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6645), 4, + ACTIONS(6654), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6649), 4, + ACTIONS(6658), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5287), 7, + ACTIONS(5296), 7, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, @@ -351465,45 +351465,45 @@ static const uint16_t ts_small_parse_table[] = { [130909] = 15, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6669), 1, + ACTIONS(6678), 1, anon_sym_DASH2, - ACTIONS(6685), 1, + ACTIONS(6694), 1, anon_sym_PLUS2, - ACTIONS(6689), 1, + ACTIONS(6698), 1, anon_sym_bit_DASHand2, STATE(1706), 1, aux_sym_shebang_repeat1, STATE(3571), 1, sym_comment, - ACTIONS(6667), 2, + ACTIONS(6676), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6673), 2, + ACTIONS(6682), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6679), 2, + ACTIONS(6688), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6681), 2, + ACTIONS(6690), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6683), 2, + ACTIONS(6692), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6687), 2, + ACTIONS(6696), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6671), 4, + ACTIONS(6680), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6677), 4, + ACTIONS(6686), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5283), 7, + ACTIONS(5292), 7, sym__newline, anon_sym_LBRACE, anon_sym_and2, @@ -351514,47 +351514,47 @@ static const uint16_t ts_small_parse_table[] = { [130973] = 16, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5392), 1, + ACTIONS(5401), 1, sym__newline, - ACTIONS(6643), 1, + ACTIONS(6652), 1, anon_sym_DASH2, - ACTIONS(6657), 1, + ACTIONS(6666), 1, anon_sym_PLUS2, - ACTIONS(6661), 1, + ACTIONS(6670), 1, anon_sym_bit_DASHand2, STATE(3572), 1, sym_comment, STATE(3605), 1, aux_sym_shebang_repeat1, - ACTIONS(6641), 2, + ACTIONS(6650), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6647), 2, + ACTIONS(6656), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6651), 2, + ACTIONS(6660), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6653), 2, + ACTIONS(6662), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6655), 2, + ACTIONS(6664), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6659), 2, + ACTIONS(6668), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6645), 4, + ACTIONS(6654), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6649), 4, + ACTIONS(6658), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5287), 6, + ACTIONS(5296), 6, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, @@ -351564,47 +351564,47 @@ static const uint16_t ts_small_parse_table[] = { [131039] = 16, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6669), 1, + ACTIONS(6678), 1, anon_sym_DASH2, - ACTIONS(6685), 1, + ACTIONS(6694), 1, anon_sym_PLUS2, - ACTIONS(6689), 1, + ACTIONS(6698), 1, anon_sym_bit_DASHand2, - ACTIONS(6691), 1, + ACTIONS(6700), 1, anon_sym_bit_DASHxor2, STATE(1706), 1, aux_sym_shebang_repeat1, STATE(3573), 1, sym_comment, - ACTIONS(6667), 2, + ACTIONS(6676), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6673), 2, + ACTIONS(6682), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6679), 2, + ACTIONS(6688), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6681), 2, + ACTIONS(6690), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6683), 2, + ACTIONS(6692), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6687), 2, + ACTIONS(6696), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6671), 4, + ACTIONS(6680), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6677), 4, + ACTIONS(6686), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5283), 6, + ACTIONS(5292), 6, sym__newline, anon_sym_LBRACE, anon_sym_and2, @@ -351614,49 +351614,49 @@ static const uint16_t ts_small_parse_table[] = { [131105] = 17, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5392), 1, + ACTIONS(5401), 1, sym__newline, - ACTIONS(6643), 1, + ACTIONS(6652), 1, anon_sym_DASH2, - ACTIONS(6657), 1, + ACTIONS(6666), 1, anon_sym_PLUS2, - ACTIONS(6661), 1, + ACTIONS(6670), 1, anon_sym_bit_DASHand2, - ACTIONS(6663), 1, + ACTIONS(6672), 1, anon_sym_bit_DASHxor2, STATE(3574), 1, sym_comment, STATE(3606), 1, aux_sym_shebang_repeat1, - ACTIONS(6641), 2, + ACTIONS(6650), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6647), 2, + ACTIONS(6656), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6651), 2, + ACTIONS(6660), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6653), 2, + ACTIONS(6662), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6655), 2, + ACTIONS(6664), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6659), 2, + ACTIONS(6668), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6645), 4, + ACTIONS(6654), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6649), 4, + ACTIONS(6658), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5287), 5, + ACTIONS(5296), 5, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, @@ -351665,32 +351665,32 @@ static const uint16_t ts_small_parse_table[] = { [131173] = 12, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5338), 1, + ACTIONS(5347), 1, sym__newline, - ACTIONS(6643), 1, + ACTIONS(6652), 1, anon_sym_DASH2, - ACTIONS(6657), 1, + ACTIONS(6666), 1, anon_sym_PLUS2, STATE(3575), 1, sym_comment, STATE(3607), 1, aux_sym_shebang_repeat1, - ACTIONS(5299), 2, + ACTIONS(5308), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6647), 2, + ACTIONS(6656), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6653), 2, + ACTIONS(6662), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6655), 2, + ACTIONS(6664), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6659), 2, + ACTIONS(6668), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5297), 17, + ACTIONS(5306), 17, anon_sym_in2, anon_sym_LBRACE, anon_sym_and2, @@ -351711,26 +351711,26 @@ static const uint16_t ts_small_parse_table[] = { [131231] = 9, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5338), 1, + ACTIONS(5347), 1, sym__newline, STATE(3576), 1, sym_comment, STATE(3611), 1, aux_sym_shebang_repeat1, - ACTIONS(6647), 2, + ACTIONS(6656), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6653), 2, + ACTIONS(6662), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6655), 2, + ACTIONS(6664), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5299), 3, + ACTIONS(5308), 3, anon_sym_GT2, anon_sym_LT2, anon_sym_PLUS2, - ACTIONS(5297), 20, + ACTIONS(5306), 20, anon_sym_DASH2, anon_sym_in2, anon_sym_LBRACE, @@ -351754,37 +351754,37 @@ static const uint16_t ts_small_parse_table[] = { [131283] = 13, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5338), 1, + ACTIONS(5347), 1, sym__newline, - ACTIONS(6643), 1, + ACTIONS(6652), 1, anon_sym_DASH2, - ACTIONS(6657), 1, + ACTIONS(6666), 1, anon_sym_PLUS2, STATE(3577), 1, sym_comment, STATE(3613), 1, aux_sym_shebang_repeat1, - ACTIONS(6641), 2, + ACTIONS(6650), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6647), 2, + ACTIONS(6656), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6653), 2, + ACTIONS(6662), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6655), 2, + ACTIONS(6664), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6659), 2, + ACTIONS(6668), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6649), 4, + ACTIONS(6658), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5297), 13, + ACTIONS(5306), 13, anon_sym_in2, anon_sym_LBRACE, anon_sym_and2, @@ -351801,22 +351801,22 @@ static const uint16_t ts_small_parse_table[] = { [131343] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5338), 1, + ACTIONS(5347), 1, sym__newline, STATE(3578), 1, sym_comment, STATE(3615), 1, aux_sym_shebang_repeat1, - ACTIONS(6653), 2, + ACTIONS(6662), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5299), 5, + ACTIONS(5308), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(5297), 22, + ACTIONS(5306), 22, anon_sym_DASH2, anon_sym_in2, anon_sym_LBRACE, @@ -351842,51 +351842,51 @@ static const uint16_t ts_small_parse_table[] = { [131391] = 18, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5338), 1, + ACTIONS(5347), 1, sym__newline, - ACTIONS(6643), 1, + ACTIONS(6652), 1, anon_sym_DASH2, - ACTIONS(6657), 1, + ACTIONS(6666), 1, anon_sym_PLUS2, - ACTIONS(6661), 1, + ACTIONS(6670), 1, anon_sym_bit_DASHand2, - ACTIONS(6663), 1, + ACTIONS(6672), 1, anon_sym_bit_DASHxor2, - ACTIONS(6665), 1, + ACTIONS(6674), 1, anon_sym_bit_DASHor2, STATE(3579), 1, sym_comment, STATE(3618), 1, aux_sym_shebang_repeat1, - ACTIONS(6641), 2, + ACTIONS(6650), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6647), 2, + ACTIONS(6656), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6651), 2, + ACTIONS(6660), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6653), 2, + ACTIONS(6662), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6655), 2, + ACTIONS(6664), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6659), 2, + ACTIONS(6668), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5297), 4, + ACTIONS(5306), 4, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - ACTIONS(6645), 4, + ACTIONS(6654), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6649), 4, + ACTIONS(6658), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, @@ -351894,52 +351894,52 @@ static const uint16_t ts_small_parse_table[] = { [131461] = 19, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5338), 1, + ACTIONS(5347), 1, sym__newline, - ACTIONS(6643), 1, + ACTIONS(6652), 1, anon_sym_DASH2, - ACTIONS(6657), 1, + ACTIONS(6666), 1, anon_sym_PLUS2, - ACTIONS(6661), 1, + ACTIONS(6670), 1, anon_sym_bit_DASHand2, - ACTIONS(6663), 1, + ACTIONS(6672), 1, anon_sym_bit_DASHxor2, - ACTIONS(6665), 1, + ACTIONS(6674), 1, anon_sym_bit_DASHor2, - ACTIONS(6695), 1, + ACTIONS(6704), 1, anon_sym_and2, STATE(3580), 1, sym_comment, STATE(3620), 1, aux_sym_shebang_repeat1, - ACTIONS(6641), 2, + ACTIONS(6650), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6647), 2, + ACTIONS(6656), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6651), 2, + ACTIONS(6660), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6653), 2, + ACTIONS(6662), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6655), 2, + ACTIONS(6664), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6659), 2, + ACTIONS(6668), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5297), 3, + ACTIONS(5306), 3, anon_sym_LBRACE, anon_sym_xor2, anon_sym_or2, - ACTIONS(6645), 4, + ACTIONS(6654), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6649), 4, + ACTIONS(6658), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, @@ -351947,53 +351947,53 @@ static const uint16_t ts_small_parse_table[] = { [131533] = 20, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3802), 1, + ACTIONS(3811), 1, sym__newline, - ACTIONS(6643), 1, + ACTIONS(6652), 1, anon_sym_DASH2, - ACTIONS(6657), 1, + ACTIONS(6666), 1, anon_sym_PLUS2, - ACTIONS(6661), 1, + ACTIONS(6670), 1, anon_sym_bit_DASHand2, - ACTIONS(6663), 1, + ACTIONS(6672), 1, anon_sym_bit_DASHxor2, - ACTIONS(6665), 1, + ACTIONS(6674), 1, anon_sym_bit_DASHor2, - ACTIONS(6695), 1, + ACTIONS(6704), 1, anon_sym_and2, - ACTIONS(6699), 1, + ACTIONS(6708), 1, anon_sym_xor2, STATE(3581), 1, sym_comment, STATE(3623), 1, aux_sym_shebang_repeat1, - ACTIONS(5297), 2, + ACTIONS(5306), 2, anon_sym_LBRACE, anon_sym_or2, - ACTIONS(6641), 2, + ACTIONS(6650), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6647), 2, + ACTIONS(6656), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6651), 2, + ACTIONS(6660), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6653), 2, + ACTIONS(6662), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6655), 2, + ACTIONS(6664), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6659), 2, + ACTIONS(6668), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6645), 4, + ACTIONS(6654), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6649), 4, + ACTIONS(6658), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, @@ -352001,42 +352001,42 @@ static const uint16_t ts_small_parse_table[] = { [131607] = 14, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5338), 1, + ACTIONS(5347), 1, sym__newline, - ACTIONS(6643), 1, + ACTIONS(6652), 1, anon_sym_DASH2, - ACTIONS(6657), 1, + ACTIONS(6666), 1, anon_sym_PLUS2, STATE(3582), 1, sym_comment, STATE(3625), 1, aux_sym_shebang_repeat1, - ACTIONS(6641), 2, + ACTIONS(6650), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6647), 2, + ACTIONS(6656), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6653), 2, + ACTIONS(6662), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6655), 2, + ACTIONS(6664), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6659), 2, + ACTIONS(6668), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6645), 4, + ACTIONS(6654), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6649), 4, + ACTIONS(6658), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5297), 9, + ACTIONS(5306), 9, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, @@ -352049,29 +352049,29 @@ static const uint16_t ts_small_parse_table[] = { [131669] = 11, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5338), 1, + ACTIONS(5347), 1, sym__newline, - ACTIONS(6643), 1, + ACTIONS(6652), 1, anon_sym_DASH2, - ACTIONS(6657), 1, + ACTIONS(6666), 1, anon_sym_PLUS2, STATE(3583), 1, sym_comment, STATE(3627), 1, aux_sym_shebang_repeat1, - ACTIONS(5299), 2, + ACTIONS(5308), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6647), 2, + ACTIONS(6656), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6653), 2, + ACTIONS(6662), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6655), 2, + ACTIONS(6664), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5297), 19, + ACTIONS(5306), 19, anon_sym_in2, anon_sym_LBRACE, anon_sym_and2, @@ -352094,45 +352094,45 @@ static const uint16_t ts_small_parse_table[] = { [131725] = 15, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5338), 1, + ACTIONS(5347), 1, sym__newline, - ACTIONS(6643), 1, + ACTIONS(6652), 1, anon_sym_DASH2, - ACTIONS(6657), 1, + ACTIONS(6666), 1, anon_sym_PLUS2, STATE(3584), 1, sym_comment, STATE(3629), 1, aux_sym_shebang_repeat1, - ACTIONS(6641), 2, + ACTIONS(6650), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6647), 2, + ACTIONS(6656), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6651), 2, + ACTIONS(6660), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6653), 2, + ACTIONS(6662), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6655), 2, + ACTIONS(6664), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6659), 2, + ACTIONS(6668), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6645), 4, + ACTIONS(6654), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6649), 4, + ACTIONS(6658), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5297), 7, + ACTIONS(5306), 7, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, @@ -352143,47 +352143,47 @@ static const uint16_t ts_small_parse_table[] = { [131789] = 16, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5338), 1, + ACTIONS(5347), 1, sym__newline, - ACTIONS(6643), 1, + ACTIONS(6652), 1, anon_sym_DASH2, - ACTIONS(6657), 1, + ACTIONS(6666), 1, anon_sym_PLUS2, - ACTIONS(6661), 1, + ACTIONS(6670), 1, anon_sym_bit_DASHand2, STATE(3585), 1, sym_comment, STATE(3634), 1, aux_sym_shebang_repeat1, - ACTIONS(6641), 2, + ACTIONS(6650), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6647), 2, + ACTIONS(6656), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6651), 2, + ACTIONS(6660), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6653), 2, + ACTIONS(6662), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6655), 2, + ACTIONS(6664), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6659), 2, + ACTIONS(6668), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6645), 4, + ACTIONS(6654), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6649), 4, + ACTIONS(6658), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5297), 6, + ACTIONS(5306), 6, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, @@ -352193,49 +352193,49 @@ static const uint16_t ts_small_parse_table[] = { [131855] = 17, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5338), 1, + ACTIONS(5347), 1, sym__newline, - ACTIONS(6643), 1, + ACTIONS(6652), 1, anon_sym_DASH2, - ACTIONS(6657), 1, + ACTIONS(6666), 1, anon_sym_PLUS2, - ACTIONS(6661), 1, + ACTIONS(6670), 1, anon_sym_bit_DASHand2, - ACTIONS(6663), 1, + ACTIONS(6672), 1, anon_sym_bit_DASHxor2, STATE(3586), 1, sym_comment, STATE(3636), 1, aux_sym_shebang_repeat1, - ACTIONS(6641), 2, + ACTIONS(6650), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6647), 2, + ACTIONS(6656), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6651), 2, + ACTIONS(6660), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6653), 2, + ACTIONS(6662), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6655), 2, + ACTIONS(6664), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6659), 2, + ACTIONS(6668), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6645), 4, + ACTIONS(6654), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6649), 4, + ACTIONS(6658), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5297), 5, + ACTIONS(5306), 5, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, @@ -352244,49 +352244,49 @@ static const uint16_t ts_small_parse_table[] = { [131923] = 17, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5305), 1, + ACTIONS(5314), 1, sym__newline, - ACTIONS(6643), 1, + ACTIONS(6652), 1, anon_sym_DASH2, - ACTIONS(6657), 1, + ACTIONS(6666), 1, anon_sym_PLUS2, - ACTIONS(6661), 1, + ACTIONS(6670), 1, anon_sym_bit_DASHand2, - ACTIONS(6663), 1, + ACTIONS(6672), 1, anon_sym_bit_DASHxor2, STATE(3573), 1, aux_sym_shebang_repeat1, STATE(3587), 1, sym_comment, - ACTIONS(6641), 2, + ACTIONS(6650), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6647), 2, + ACTIONS(6656), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6651), 2, + ACTIONS(6660), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6653), 2, + ACTIONS(6662), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6655), 2, + ACTIONS(6664), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6659), 2, + ACTIONS(6668), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6645), 4, + ACTIONS(6654), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6649), 4, + ACTIONS(6658), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5251), 5, + ACTIONS(5260), 5, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, @@ -352373,9 +352373,9 @@ static const uint16_t ts_small_parse_table[] = { [132079] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6521), 1, + ACTIONS(6530), 1, aux_sym__immediate_decimal_token2, - ACTIONS(6701), 1, + ACTIONS(6710), 1, anon_sym_DOT, STATE(3590), 1, sym_comment, @@ -352413,30 +352413,30 @@ static const uint16_t ts_small_parse_table[] = { [132125] = 11, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6669), 1, + ACTIONS(6678), 1, anon_sym_DASH2, - ACTIONS(6685), 1, + ACTIONS(6694), 1, anon_sym_PLUS2, STATE(1706), 1, aux_sym_shebang_repeat1, STATE(3591), 1, sym_comment, - ACTIONS(5293), 2, + ACTIONS(5302), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6673), 2, + ACTIONS(6682), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6681), 2, + ACTIONS(6690), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6683), 2, + ACTIONS(6692), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6687), 2, + ACTIONS(6696), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5291), 18, + ACTIONS(5300), 18, sym__newline, anon_sym_in2, anon_sym_LBRACE, @@ -352462,20 +352462,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_shebang_repeat1, STATE(3592), 1, sym_comment, - ACTIONS(6673), 2, + ACTIONS(6682), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6681), 2, + ACTIONS(6690), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6683), 2, + ACTIONS(6692), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5293), 3, + ACTIONS(5302), 3, anon_sym_GT2, anon_sym_LT2, anon_sym_PLUS2, - ACTIONS(5291), 21, + ACTIONS(5300), 21, sym__newline, anon_sym_DASH2, anon_sym_in2, @@ -352500,35 +352500,35 @@ static const uint16_t ts_small_parse_table[] = { [132231] = 12, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6669), 1, + ACTIONS(6678), 1, anon_sym_DASH2, - ACTIONS(6685), 1, + ACTIONS(6694), 1, anon_sym_PLUS2, STATE(1706), 1, aux_sym_shebang_repeat1, STATE(3593), 1, sym_comment, - ACTIONS(6667), 2, + ACTIONS(6676), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6673), 2, + ACTIONS(6682), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6681), 2, + ACTIONS(6690), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6683), 2, + ACTIONS(6692), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6687), 2, + ACTIONS(6696), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6677), 4, + ACTIONS(6686), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5291), 14, + ACTIONS(5300), 14, sym__newline, anon_sym_in2, anon_sym_LBRACE, @@ -352550,16 +352550,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_shebang_repeat1, STATE(3594), 1, sym_comment, - ACTIONS(6681), 2, + ACTIONS(6690), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5293), 5, + ACTIONS(5302), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(5291), 23, + ACTIONS(5300), 23, sym__newline, anon_sym_DASH2, anon_sym_in2, @@ -352586,49 +352586,49 @@ static const uint16_t ts_small_parse_table[] = { [132335] = 17, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6669), 1, + ACTIONS(6678), 1, anon_sym_DASH2, - ACTIONS(6685), 1, + ACTIONS(6694), 1, anon_sym_PLUS2, - ACTIONS(6689), 1, + ACTIONS(6698), 1, anon_sym_bit_DASHand2, - ACTIONS(6691), 1, + ACTIONS(6700), 1, anon_sym_bit_DASHxor2, - ACTIONS(6693), 1, + ACTIONS(6702), 1, anon_sym_bit_DASHor2, STATE(1706), 1, aux_sym_shebang_repeat1, STATE(3595), 1, sym_comment, - ACTIONS(6667), 2, + ACTIONS(6676), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6673), 2, + ACTIONS(6682), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6679), 2, + ACTIONS(6688), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6681), 2, + ACTIONS(6690), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6683), 2, + ACTIONS(6692), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6687), 2, + ACTIONS(6696), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6671), 4, + ACTIONS(6680), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6677), 4, + ACTIONS(6686), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5291), 5, + ACTIONS(5300), 5, sym__newline, anon_sym_LBRACE, anon_sym_and2, @@ -352637,51 +352637,51 @@ static const uint16_t ts_small_parse_table[] = { [132403] = 18, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6669), 1, + ACTIONS(6678), 1, anon_sym_DASH2, - ACTIONS(6675), 1, + ACTIONS(6684), 1, anon_sym_and2, - ACTIONS(6685), 1, + ACTIONS(6694), 1, anon_sym_PLUS2, - ACTIONS(6689), 1, + ACTIONS(6698), 1, anon_sym_bit_DASHand2, - ACTIONS(6691), 1, + ACTIONS(6700), 1, anon_sym_bit_DASHxor2, - ACTIONS(6693), 1, + ACTIONS(6702), 1, anon_sym_bit_DASHor2, STATE(1706), 1, aux_sym_shebang_repeat1, STATE(3596), 1, sym_comment, - ACTIONS(6667), 2, + ACTIONS(6676), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6673), 2, + ACTIONS(6682), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6679), 2, + ACTIONS(6688), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6681), 2, + ACTIONS(6690), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6683), 2, + ACTIONS(6692), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6687), 2, + ACTIONS(6696), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5291), 4, + ACTIONS(5300), 4, sym__newline, anon_sym_LBRACE, anon_sym_xor2, anon_sym_or2, - ACTIONS(6671), 4, + ACTIONS(6680), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6677), 4, + ACTIONS(6686), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, @@ -352689,52 +352689,52 @@ static const uint16_t ts_small_parse_table[] = { [132473] = 19, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6669), 1, + ACTIONS(6678), 1, anon_sym_DASH2, - ACTIONS(6675), 1, + ACTIONS(6684), 1, anon_sym_and2, - ACTIONS(6685), 1, + ACTIONS(6694), 1, anon_sym_PLUS2, - ACTIONS(6689), 1, + ACTIONS(6698), 1, anon_sym_bit_DASHand2, - ACTIONS(6691), 1, + ACTIONS(6700), 1, anon_sym_bit_DASHxor2, - ACTIONS(6693), 1, + ACTIONS(6702), 1, anon_sym_bit_DASHor2, - ACTIONS(6697), 1, + ACTIONS(6706), 1, anon_sym_xor2, STATE(1706), 1, aux_sym_shebang_repeat1, STATE(3597), 1, sym_comment, - ACTIONS(6667), 2, + ACTIONS(6676), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6673), 2, + ACTIONS(6682), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6679), 2, + ACTIONS(6688), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6681), 2, + ACTIONS(6690), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6683), 2, + ACTIONS(6692), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6687), 2, + ACTIONS(6696), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5291), 3, + ACTIONS(5300), 3, sym__newline, anon_sym_LBRACE, anon_sym_or2, - ACTIONS(6671), 4, + ACTIONS(6680), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6677), 4, + ACTIONS(6686), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, @@ -352780,40 +352780,40 @@ static const uint16_t ts_small_parse_table[] = { [132587] = 13, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6669), 1, + ACTIONS(6678), 1, anon_sym_DASH2, - ACTIONS(6685), 1, + ACTIONS(6694), 1, anon_sym_PLUS2, STATE(1706), 1, aux_sym_shebang_repeat1, STATE(3599), 1, sym_comment, - ACTIONS(6667), 2, + ACTIONS(6676), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6673), 2, + ACTIONS(6682), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6681), 2, + ACTIONS(6690), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6683), 2, + ACTIONS(6692), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6687), 2, + ACTIONS(6696), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6671), 4, + ACTIONS(6680), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6677), 4, + ACTIONS(6686), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5291), 10, + ACTIONS(5300), 10, sym__newline, anon_sym_LBRACE, anon_sym_and2, @@ -352827,27 +352827,27 @@ static const uint16_t ts_small_parse_table[] = { [132647] = 10, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6669), 1, + ACTIONS(6678), 1, anon_sym_DASH2, - ACTIONS(6685), 1, + ACTIONS(6694), 1, anon_sym_PLUS2, STATE(1706), 1, aux_sym_shebang_repeat1, STATE(3600), 1, sym_comment, - ACTIONS(5293), 2, + ACTIONS(5302), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6673), 2, + ACTIONS(6682), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6681), 2, + ACTIONS(6690), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6683), 2, + ACTIONS(6692), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5291), 20, + ACTIONS(5300), 20, sym__newline, anon_sym_in2, anon_sym_LBRACE, @@ -352909,43 +352909,43 @@ static const uint16_t ts_small_parse_table[] = { [132743] = 14, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6669), 1, + ACTIONS(6678), 1, anon_sym_DASH2, - ACTIONS(6685), 1, + ACTIONS(6694), 1, anon_sym_PLUS2, STATE(1706), 1, aux_sym_shebang_repeat1, STATE(3602), 1, sym_comment, - ACTIONS(6667), 2, + ACTIONS(6676), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6673), 2, + ACTIONS(6682), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6679), 2, + ACTIONS(6688), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6681), 2, + ACTIONS(6690), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6683), 2, + ACTIONS(6692), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6687), 2, + ACTIONS(6696), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6671), 4, + ACTIONS(6680), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6677), 4, + ACTIONS(6686), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5291), 8, + ACTIONS(5300), 8, sym__newline, anon_sym_LBRACE, anon_sym_and2, @@ -353033,45 +353033,45 @@ static const uint16_t ts_small_parse_table[] = { [132889] = 15, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6669), 1, + ACTIONS(6678), 1, anon_sym_DASH2, - ACTIONS(6685), 1, + ACTIONS(6694), 1, anon_sym_PLUS2, - ACTIONS(6689), 1, + ACTIONS(6698), 1, anon_sym_bit_DASHand2, STATE(1706), 1, aux_sym_shebang_repeat1, STATE(3605), 1, sym_comment, - ACTIONS(6667), 2, + ACTIONS(6676), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6673), 2, + ACTIONS(6682), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6679), 2, + ACTIONS(6688), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6681), 2, + ACTIONS(6690), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6683), 2, + ACTIONS(6692), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6687), 2, + ACTIONS(6696), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6671), 4, + ACTIONS(6680), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6677), 4, + ACTIONS(6686), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5291), 7, + ACTIONS(5300), 7, sym__newline, anon_sym_LBRACE, anon_sym_and2, @@ -353082,47 +353082,47 @@ static const uint16_t ts_small_parse_table[] = { [132953] = 16, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6669), 1, + ACTIONS(6678), 1, anon_sym_DASH2, - ACTIONS(6685), 1, + ACTIONS(6694), 1, anon_sym_PLUS2, - ACTIONS(6689), 1, + ACTIONS(6698), 1, anon_sym_bit_DASHand2, - ACTIONS(6691), 1, + ACTIONS(6700), 1, anon_sym_bit_DASHxor2, STATE(1706), 1, aux_sym_shebang_repeat1, STATE(3606), 1, sym_comment, - ACTIONS(6667), 2, + ACTIONS(6676), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6673), 2, + ACTIONS(6682), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6679), 2, + ACTIONS(6688), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6681), 2, + ACTIONS(6690), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6683), 2, + ACTIONS(6692), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6687), 2, + ACTIONS(6696), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6671), 4, + ACTIONS(6680), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6677), 4, + ACTIONS(6686), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5291), 6, + ACTIONS(5300), 6, sym__newline, anon_sym_LBRACE, anon_sym_and2, @@ -353132,30 +353132,30 @@ static const uint16_t ts_small_parse_table[] = { [133019] = 11, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6669), 1, + ACTIONS(6678), 1, anon_sym_DASH2, - ACTIONS(6685), 1, + ACTIONS(6694), 1, anon_sym_PLUS2, STATE(1706), 1, aux_sym_shebang_repeat1, STATE(3607), 1, sym_comment, - ACTIONS(5303), 2, + ACTIONS(5312), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6673), 2, + ACTIONS(6682), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6681), 2, + ACTIONS(6690), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6683), 2, + ACTIONS(6692), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6687), 2, + ACTIONS(6696), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5301), 18, + ACTIONS(5310), 18, sym__newline, anon_sym_in2, anon_sym_LBRACE, @@ -353217,32 +353217,32 @@ static const uint16_t ts_small_parse_table[] = { [133121] = 12, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5385), 1, + ACTIONS(5394), 1, sym__newline, - ACTIONS(6643), 1, + ACTIONS(6652), 1, anon_sym_DASH2, - ACTIONS(6657), 1, + ACTIONS(6666), 1, anon_sym_PLUS2, STATE(3609), 1, sym_comment, STATE(3642), 1, aux_sym_shebang_repeat1, - ACTIONS(5233), 2, + ACTIONS(5242), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6647), 2, + ACTIONS(6656), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6653), 2, + ACTIONS(6662), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6655), 2, + ACTIONS(6664), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6659), 2, + ACTIONS(6668), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5231), 17, + ACTIONS(5240), 17, anon_sym_in2, anon_sym_LBRACE, anon_sym_and2, @@ -353305,20 +353305,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_shebang_repeat1, STATE(3611), 1, sym_comment, - ACTIONS(6673), 2, + ACTIONS(6682), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6681), 2, + ACTIONS(6690), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6683), 2, + ACTIONS(6692), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5303), 3, + ACTIONS(5312), 3, anon_sym_GT2, anon_sym_LT2, anon_sym_PLUS2, - ACTIONS(5301), 21, + ACTIONS(5310), 21, sym__newline, anon_sym_DASH2, anon_sym_in2, @@ -353343,26 +353343,26 @@ static const uint16_t ts_small_parse_table[] = { [133271] = 9, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5385), 1, + ACTIONS(5394), 1, sym__newline, STATE(3612), 1, sym_comment, STATE(3643), 1, aux_sym_shebang_repeat1, - ACTIONS(6647), 2, + ACTIONS(6656), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6653), 2, + ACTIONS(6662), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6655), 2, + ACTIONS(6664), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5233), 3, + ACTIONS(5242), 3, anon_sym_GT2, anon_sym_LT2, anon_sym_PLUS2, - ACTIONS(5231), 20, + ACTIONS(5240), 20, anon_sym_DASH2, anon_sym_in2, anon_sym_LBRACE, @@ -353386,35 +353386,35 @@ static const uint16_t ts_small_parse_table[] = { [133323] = 12, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6669), 1, + ACTIONS(6678), 1, anon_sym_DASH2, - ACTIONS(6685), 1, + ACTIONS(6694), 1, anon_sym_PLUS2, STATE(1706), 1, aux_sym_shebang_repeat1, STATE(3613), 1, sym_comment, - ACTIONS(6667), 2, + ACTIONS(6676), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6673), 2, + ACTIONS(6682), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6681), 2, + ACTIONS(6690), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6683), 2, + ACTIONS(6692), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6687), 2, + ACTIONS(6696), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6677), 4, + ACTIONS(6686), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5301), 14, + ACTIONS(5310), 14, sym__newline, anon_sym_in2, anon_sym_LBRACE, @@ -353432,37 +353432,37 @@ static const uint16_t ts_small_parse_table[] = { [133381] = 13, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5385), 1, + ACTIONS(5394), 1, sym__newline, - ACTIONS(6643), 1, + ACTIONS(6652), 1, anon_sym_DASH2, - ACTIONS(6657), 1, + ACTIONS(6666), 1, anon_sym_PLUS2, STATE(3614), 1, sym_comment, STATE(3646), 1, aux_sym_shebang_repeat1, - ACTIONS(6641), 2, + ACTIONS(6650), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6647), 2, + ACTIONS(6656), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6653), 2, + ACTIONS(6662), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6655), 2, + ACTIONS(6664), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6659), 2, + ACTIONS(6668), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6649), 4, + ACTIONS(6658), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5231), 13, + ACTIONS(5240), 13, anon_sym_in2, anon_sym_LBRACE, anon_sym_and2, @@ -353483,16 +353483,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_shebang_repeat1, STATE(3615), 1, sym_comment, - ACTIONS(6681), 2, + ACTIONS(6690), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5303), 5, + ACTIONS(5312), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(5301), 23, + ACTIONS(5310), 23, sym__newline, anon_sym_DASH2, anon_sym_in2, @@ -353559,22 +353559,22 @@ static const uint16_t ts_small_parse_table[] = { [133533] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5385), 1, + ACTIONS(5394), 1, sym__newline, STATE(3617), 1, sym_comment, STATE(3647), 1, aux_sym_shebang_repeat1, - ACTIONS(6653), 2, + ACTIONS(6662), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5233), 5, + ACTIONS(5242), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(5231), 22, + ACTIONS(5240), 22, anon_sym_DASH2, anon_sym_in2, anon_sym_LBRACE, @@ -353600,49 +353600,49 @@ static const uint16_t ts_small_parse_table[] = { [133581] = 17, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6669), 1, + ACTIONS(6678), 1, anon_sym_DASH2, - ACTIONS(6685), 1, + ACTIONS(6694), 1, anon_sym_PLUS2, - ACTIONS(6689), 1, + ACTIONS(6698), 1, anon_sym_bit_DASHand2, - ACTIONS(6691), 1, + ACTIONS(6700), 1, anon_sym_bit_DASHxor2, - ACTIONS(6693), 1, + ACTIONS(6702), 1, anon_sym_bit_DASHor2, STATE(1706), 1, aux_sym_shebang_repeat1, STATE(3618), 1, sym_comment, - ACTIONS(6667), 2, + ACTIONS(6676), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6673), 2, + ACTIONS(6682), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6679), 2, + ACTIONS(6688), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6681), 2, + ACTIONS(6690), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6683), 2, + ACTIONS(6692), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6687), 2, + ACTIONS(6696), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6671), 4, + ACTIONS(6680), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6677), 4, + ACTIONS(6686), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5301), 5, + ACTIONS(5310), 5, sym__newline, anon_sym_LBRACE, anon_sym_and2, @@ -353651,51 +353651,51 @@ static const uint16_t ts_small_parse_table[] = { [133649] = 18, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5385), 1, + ACTIONS(5394), 1, sym__newline, - ACTIONS(6643), 1, + ACTIONS(6652), 1, anon_sym_DASH2, - ACTIONS(6657), 1, + ACTIONS(6666), 1, anon_sym_PLUS2, - ACTIONS(6661), 1, + ACTIONS(6670), 1, anon_sym_bit_DASHand2, - ACTIONS(6663), 1, + ACTIONS(6672), 1, anon_sym_bit_DASHxor2, - ACTIONS(6665), 1, + ACTIONS(6674), 1, anon_sym_bit_DASHor2, STATE(3619), 1, sym_comment, STATE(3648), 1, aux_sym_shebang_repeat1, - ACTIONS(6641), 2, + ACTIONS(6650), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6647), 2, + ACTIONS(6656), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6651), 2, + ACTIONS(6660), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6653), 2, + ACTIONS(6662), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6655), 2, + ACTIONS(6664), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6659), 2, + ACTIONS(6668), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5231), 4, + ACTIONS(5240), 4, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - ACTIONS(6645), 4, + ACTIONS(6654), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6649), 4, + ACTIONS(6658), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, @@ -353703,51 +353703,51 @@ static const uint16_t ts_small_parse_table[] = { [133719] = 18, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6669), 1, + ACTIONS(6678), 1, anon_sym_DASH2, - ACTIONS(6675), 1, + ACTIONS(6684), 1, anon_sym_and2, - ACTIONS(6685), 1, + ACTIONS(6694), 1, anon_sym_PLUS2, - ACTIONS(6689), 1, + ACTIONS(6698), 1, anon_sym_bit_DASHand2, - ACTIONS(6691), 1, + ACTIONS(6700), 1, anon_sym_bit_DASHxor2, - ACTIONS(6693), 1, + ACTIONS(6702), 1, anon_sym_bit_DASHor2, STATE(1706), 1, aux_sym_shebang_repeat1, STATE(3620), 1, sym_comment, - ACTIONS(6667), 2, + ACTIONS(6676), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6673), 2, + ACTIONS(6682), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6679), 2, + ACTIONS(6688), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6681), 2, + ACTIONS(6690), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6683), 2, + ACTIONS(6692), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6687), 2, + ACTIONS(6696), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5301), 4, + ACTIONS(5310), 4, sym__newline, anon_sym_LBRACE, anon_sym_xor2, anon_sym_or2, - ACTIONS(6671), 4, + ACTIONS(6680), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6677), 4, + ACTIONS(6686), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, @@ -353795,52 +353795,52 @@ static const uint16_t ts_small_parse_table[] = { [133835] = 19, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5385), 1, + ACTIONS(5394), 1, sym__newline, - ACTIONS(6643), 1, + ACTIONS(6652), 1, anon_sym_DASH2, - ACTIONS(6657), 1, + ACTIONS(6666), 1, anon_sym_PLUS2, - ACTIONS(6661), 1, + ACTIONS(6670), 1, anon_sym_bit_DASHand2, - ACTIONS(6663), 1, + ACTIONS(6672), 1, anon_sym_bit_DASHxor2, - ACTIONS(6665), 1, + ACTIONS(6674), 1, anon_sym_bit_DASHor2, - ACTIONS(6695), 1, + ACTIONS(6704), 1, anon_sym_and2, STATE(3622), 1, sym_comment, STATE(3650), 1, aux_sym_shebang_repeat1, - ACTIONS(6641), 2, + ACTIONS(6650), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6647), 2, + ACTIONS(6656), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6651), 2, + ACTIONS(6660), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6653), 2, + ACTIONS(6662), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6655), 2, + ACTIONS(6664), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6659), 2, + ACTIONS(6668), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5231), 3, + ACTIONS(5240), 3, anon_sym_LBRACE, anon_sym_xor2, anon_sym_or2, - ACTIONS(6645), 4, + ACTIONS(6654), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6649), 4, + ACTIONS(6658), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, @@ -353848,52 +353848,52 @@ static const uint16_t ts_small_parse_table[] = { [133907] = 19, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6669), 1, + ACTIONS(6678), 1, anon_sym_DASH2, - ACTIONS(6675), 1, + ACTIONS(6684), 1, anon_sym_and2, - ACTIONS(6685), 1, + ACTIONS(6694), 1, anon_sym_PLUS2, - ACTIONS(6689), 1, + ACTIONS(6698), 1, anon_sym_bit_DASHand2, - ACTIONS(6691), 1, + ACTIONS(6700), 1, anon_sym_bit_DASHxor2, - ACTIONS(6693), 1, + ACTIONS(6702), 1, anon_sym_bit_DASHor2, - ACTIONS(6697), 1, + ACTIONS(6706), 1, anon_sym_xor2, STATE(1706), 1, aux_sym_shebang_repeat1, STATE(3623), 1, sym_comment, - ACTIONS(6667), 2, + ACTIONS(6676), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6673), 2, + ACTIONS(6682), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6679), 2, + ACTIONS(6688), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6681), 2, + ACTIONS(6690), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6683), 2, + ACTIONS(6692), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6687), 2, + ACTIONS(6696), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5301), 3, + ACTIONS(5310), 3, sym__newline, anon_sym_LBRACE, anon_sym_or2, - ACTIONS(6671), 4, + ACTIONS(6680), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6677), 4, + ACTIONS(6686), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, @@ -353901,53 +353901,53 @@ static const uint16_t ts_small_parse_table[] = { [133979] = 20, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3802), 1, + ACTIONS(3811), 1, sym__newline, - ACTIONS(6643), 1, + ACTIONS(6652), 1, anon_sym_DASH2, - ACTIONS(6657), 1, + ACTIONS(6666), 1, anon_sym_PLUS2, - ACTIONS(6661), 1, + ACTIONS(6670), 1, anon_sym_bit_DASHand2, - ACTIONS(6663), 1, + ACTIONS(6672), 1, anon_sym_bit_DASHxor2, - ACTIONS(6665), 1, + ACTIONS(6674), 1, anon_sym_bit_DASHor2, - ACTIONS(6695), 1, + ACTIONS(6704), 1, anon_sym_and2, - ACTIONS(6699), 1, + ACTIONS(6708), 1, anon_sym_xor2, STATE(3624), 1, sym_comment, STATE(3651), 1, aux_sym_shebang_repeat1, - ACTIONS(5231), 2, + ACTIONS(5240), 2, anon_sym_LBRACE, anon_sym_or2, - ACTIONS(6641), 2, + ACTIONS(6650), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6647), 2, + ACTIONS(6656), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6651), 2, + ACTIONS(6660), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6653), 2, + ACTIONS(6662), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6655), 2, + ACTIONS(6664), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6659), 2, + ACTIONS(6668), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6645), 4, + ACTIONS(6654), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6649), 4, + ACTIONS(6658), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, @@ -353955,40 +353955,40 @@ static const uint16_t ts_small_parse_table[] = { [134053] = 13, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6669), 1, + ACTIONS(6678), 1, anon_sym_DASH2, - ACTIONS(6685), 1, + ACTIONS(6694), 1, anon_sym_PLUS2, STATE(1706), 1, aux_sym_shebang_repeat1, STATE(3625), 1, sym_comment, - ACTIONS(6667), 2, + ACTIONS(6676), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6673), 2, + ACTIONS(6682), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6681), 2, + ACTIONS(6690), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6683), 2, + ACTIONS(6692), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6687), 2, + ACTIONS(6696), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6671), 4, + ACTIONS(6680), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6677), 4, + ACTIONS(6686), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5301), 10, + ACTIONS(5310), 10, sym__newline, anon_sym_LBRACE, anon_sym_and2, @@ -354002,42 +354002,42 @@ static const uint16_t ts_small_parse_table[] = { [134113] = 14, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5385), 1, + ACTIONS(5394), 1, sym__newline, - ACTIONS(6643), 1, + ACTIONS(6652), 1, anon_sym_DASH2, - ACTIONS(6657), 1, + ACTIONS(6666), 1, anon_sym_PLUS2, STATE(3626), 1, sym_comment, STATE(3652), 1, aux_sym_shebang_repeat1, - ACTIONS(6641), 2, + ACTIONS(6650), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6647), 2, + ACTIONS(6656), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6653), 2, + ACTIONS(6662), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6655), 2, + ACTIONS(6664), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6659), 2, + ACTIONS(6668), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6645), 4, + ACTIONS(6654), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6649), 4, + ACTIONS(6658), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5231), 9, + ACTIONS(5240), 9, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, @@ -354050,27 +354050,27 @@ static const uint16_t ts_small_parse_table[] = { [134175] = 10, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6669), 1, + ACTIONS(6678), 1, anon_sym_DASH2, - ACTIONS(6685), 1, + ACTIONS(6694), 1, anon_sym_PLUS2, STATE(1706), 1, aux_sym_shebang_repeat1, STATE(3627), 1, sym_comment, - ACTIONS(5303), 2, + ACTIONS(5312), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6673), 2, + ACTIONS(6682), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6681), 2, + ACTIONS(6690), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6683), 2, + ACTIONS(6692), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5301), 20, + ACTIONS(5310), 20, sym__newline, anon_sym_in2, anon_sym_LBRACE, @@ -354094,29 +354094,29 @@ static const uint16_t ts_small_parse_table[] = { [134229] = 11, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5305), 1, + ACTIONS(5314), 1, sym__newline, - ACTIONS(6643), 1, + ACTIONS(6652), 1, anon_sym_DASH2, - ACTIONS(6657), 1, + ACTIONS(6666), 1, anon_sym_PLUS2, STATE(3566), 1, aux_sym_shebang_repeat1, STATE(3628), 1, sym_comment, - ACTIONS(5253), 2, + ACTIONS(5262), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6647), 2, + ACTIONS(6656), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6653), 2, + ACTIONS(6662), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6655), 2, + ACTIONS(6664), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5251), 19, + ACTIONS(5260), 19, anon_sym_in2, anon_sym_LBRACE, anon_sym_and2, @@ -354139,43 +354139,43 @@ static const uint16_t ts_small_parse_table[] = { [134285] = 14, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6669), 1, + ACTIONS(6678), 1, anon_sym_DASH2, - ACTIONS(6685), 1, + ACTIONS(6694), 1, anon_sym_PLUS2, STATE(1706), 1, aux_sym_shebang_repeat1, STATE(3629), 1, sym_comment, - ACTIONS(6667), 2, + ACTIONS(6676), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6673), 2, + ACTIONS(6682), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6679), 2, + ACTIONS(6688), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6681), 2, + ACTIONS(6690), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6683), 2, + ACTIONS(6692), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6687), 2, + ACTIONS(6696), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6671), 4, + ACTIONS(6680), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6677), 4, + ACTIONS(6686), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5301), 8, + ACTIONS(5310), 8, sym__newline, anon_sym_LBRACE, anon_sym_and2, @@ -354226,32 +354226,32 @@ static const uint16_t ts_small_parse_table[] = { [134391] = 12, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5305), 1, + ACTIONS(5314), 1, sym__newline, - ACTIONS(6643), 1, + ACTIONS(6652), 1, anon_sym_DASH2, - ACTIONS(6657), 1, + ACTIONS(6666), 1, anon_sym_PLUS2, STATE(3631), 1, sym_comment, STATE(3663), 1, aux_sym_shebang_repeat1, - ACTIONS(5253), 2, + ACTIONS(5262), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6647), 2, + ACTIONS(6656), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6653), 2, + ACTIONS(6662), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6655), 2, + ACTIONS(6664), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6659), 2, + ACTIONS(6668), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5251), 17, + ACTIONS(5260), 17, anon_sym_in2, anon_sym_LBRACE, anon_sym_and2, @@ -354272,26 +354272,26 @@ static const uint16_t ts_small_parse_table[] = { [134449] = 9, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5305), 1, + ACTIONS(5314), 1, sym__newline, STATE(3632), 1, sym_comment, STATE(3665), 1, aux_sym_shebang_repeat1, - ACTIONS(6647), 2, + ACTIONS(6656), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6653), 2, + ACTIONS(6662), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6655), 2, + ACTIONS(6664), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5253), 3, + ACTIONS(5262), 3, anon_sym_GT2, anon_sym_LT2, anon_sym_PLUS2, - ACTIONS(5251), 20, + ACTIONS(5260), 20, anon_sym_DASH2, anon_sym_in2, anon_sym_LBRACE, @@ -354315,45 +354315,45 @@ static const uint16_t ts_small_parse_table[] = { [134501] = 15, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5385), 1, + ACTIONS(5394), 1, sym__newline, - ACTIONS(6643), 1, + ACTIONS(6652), 1, anon_sym_DASH2, - ACTIONS(6657), 1, + ACTIONS(6666), 1, anon_sym_PLUS2, STATE(3633), 1, sym_comment, STATE(3654), 1, aux_sym_shebang_repeat1, - ACTIONS(6641), 2, + ACTIONS(6650), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6647), 2, + ACTIONS(6656), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6651), 2, + ACTIONS(6660), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6653), 2, + ACTIONS(6662), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6655), 2, + ACTIONS(6664), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6659), 2, + ACTIONS(6668), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6645), 4, + ACTIONS(6654), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6649), 4, + ACTIONS(6658), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5231), 7, + ACTIONS(5240), 7, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, @@ -354364,45 +354364,45 @@ static const uint16_t ts_small_parse_table[] = { [134565] = 15, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6669), 1, + ACTIONS(6678), 1, anon_sym_DASH2, - ACTIONS(6685), 1, + ACTIONS(6694), 1, anon_sym_PLUS2, - ACTIONS(6689), 1, + ACTIONS(6698), 1, anon_sym_bit_DASHand2, STATE(1706), 1, aux_sym_shebang_repeat1, STATE(3634), 1, sym_comment, - ACTIONS(6667), 2, + ACTIONS(6676), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6673), 2, + ACTIONS(6682), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6679), 2, + ACTIONS(6688), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6681), 2, + ACTIONS(6690), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6683), 2, + ACTIONS(6692), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6687), 2, + ACTIONS(6696), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6671), 4, + ACTIONS(6680), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6677), 4, + ACTIONS(6686), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5301), 7, + ACTIONS(5310), 7, sym__newline, anon_sym_LBRACE, anon_sym_and2, @@ -354413,47 +354413,47 @@ static const uint16_t ts_small_parse_table[] = { [134629] = 16, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5385), 1, + ACTIONS(5394), 1, sym__newline, - ACTIONS(6643), 1, + ACTIONS(6652), 1, anon_sym_DASH2, - ACTIONS(6657), 1, + ACTIONS(6666), 1, anon_sym_PLUS2, - ACTIONS(6661), 1, + ACTIONS(6670), 1, anon_sym_bit_DASHand2, STATE(3635), 1, sym_comment, STATE(3657), 1, aux_sym_shebang_repeat1, - ACTIONS(6641), 2, + ACTIONS(6650), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6647), 2, + ACTIONS(6656), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6651), 2, + ACTIONS(6660), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6653), 2, + ACTIONS(6662), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6655), 2, + ACTIONS(6664), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6659), 2, + ACTIONS(6668), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6645), 4, + ACTIONS(6654), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6649), 4, + ACTIONS(6658), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5231), 6, + ACTIONS(5240), 6, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, @@ -354463,47 +354463,47 @@ static const uint16_t ts_small_parse_table[] = { [134695] = 16, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6669), 1, + ACTIONS(6678), 1, anon_sym_DASH2, - ACTIONS(6685), 1, + ACTIONS(6694), 1, anon_sym_PLUS2, - ACTIONS(6689), 1, + ACTIONS(6698), 1, anon_sym_bit_DASHand2, - ACTIONS(6691), 1, + ACTIONS(6700), 1, anon_sym_bit_DASHxor2, STATE(1706), 1, aux_sym_shebang_repeat1, STATE(3636), 1, sym_comment, - ACTIONS(6667), 2, + ACTIONS(6676), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6673), 2, + ACTIONS(6682), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6679), 2, + ACTIONS(6688), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6681), 2, + ACTIONS(6690), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6683), 2, + ACTIONS(6692), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6687), 2, + ACTIONS(6696), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6671), 4, + ACTIONS(6680), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6677), 4, + ACTIONS(6686), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5301), 6, + ACTIONS(5310), 6, sym__newline, anon_sym_LBRACE, anon_sym_and2, @@ -354513,21 +354513,21 @@ static const uint16_t ts_small_parse_table[] = { [134761] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3046), 1, + ACTIONS(3053), 1, aux_sym_cmd_identifier_token41, - ACTIONS(6703), 1, + ACTIONS(6712), 1, sym_filesize_unit, - ACTIONS(6705), 1, + ACTIONS(6714), 1, sym_duration_unit, STATE(3637), 1, sym_comment, - ACTIONS(3044), 5, + ACTIONS(3051), 5, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, - ACTIONS(3042), 23, + ACTIONS(3049), 23, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -354554,37 +354554,37 @@ static const uint16_t ts_small_parse_table[] = { [134809] = 13, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5305), 1, + ACTIONS(5314), 1, sym__newline, - ACTIONS(6643), 1, + ACTIONS(6652), 1, anon_sym_DASH2, - ACTIONS(6657), 1, + ACTIONS(6666), 1, anon_sym_PLUS2, STATE(3638), 1, sym_comment, STATE(3669), 1, aux_sym_shebang_repeat1, - ACTIONS(6641), 2, + ACTIONS(6650), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6647), 2, + ACTIONS(6656), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6653), 2, + ACTIONS(6662), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6655), 2, + ACTIONS(6664), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6659), 2, + ACTIONS(6668), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6649), 4, + ACTIONS(6658), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5251), 13, + ACTIONS(5260), 13, anon_sym_in2, anon_sym_LBRACE, anon_sym_and2, @@ -354601,49 +354601,49 @@ static const uint16_t ts_small_parse_table[] = { [134869] = 17, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5385), 1, + ACTIONS(5394), 1, sym__newline, - ACTIONS(6643), 1, + ACTIONS(6652), 1, anon_sym_DASH2, - ACTIONS(6657), 1, + ACTIONS(6666), 1, anon_sym_PLUS2, - ACTIONS(6661), 1, + ACTIONS(6670), 1, anon_sym_bit_DASHand2, - ACTIONS(6663), 1, + ACTIONS(6672), 1, anon_sym_bit_DASHxor2, STATE(3639), 1, sym_comment, STATE(3658), 1, aux_sym_shebang_repeat1, - ACTIONS(6641), 2, + ACTIONS(6650), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6647), 2, + ACTIONS(6656), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6651), 2, + ACTIONS(6660), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6653), 2, + ACTIONS(6662), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6655), 2, + ACTIONS(6664), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6659), 2, + ACTIONS(6668), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6645), 4, + ACTIONS(6654), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6649), 4, + ACTIONS(6658), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5231), 5, + ACTIONS(5240), 5, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, @@ -354652,21 +354652,21 @@ static const uint16_t ts_small_parse_table[] = { [134937] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6711), 1, + ACTIONS(6720), 1, aux_sym_cmd_identifier_token41, - ACTIONS(6713), 1, + ACTIONS(6722), 1, sym_filesize_unit, - ACTIONS(6715), 1, + ACTIONS(6724), 1, sym_duration_unit, STATE(3640), 1, sym_comment, - ACTIONS(6709), 5, + ACTIONS(6718), 5, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, - ACTIONS(6707), 23, + ACTIONS(6716), 23, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -354693,22 +354693,22 @@ static const uint16_t ts_small_parse_table[] = { [134985] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5305), 1, + ACTIONS(5314), 1, sym__newline, STATE(3641), 1, sym_comment, STATE(3674), 1, aux_sym_shebang_repeat1, - ACTIONS(6653), 2, + ACTIONS(6662), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5253), 5, + ACTIONS(5262), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(5251), 22, + ACTIONS(5260), 22, anon_sym_DASH2, anon_sym_in2, anon_sym_LBRACE, @@ -354734,30 +354734,30 @@ static const uint16_t ts_small_parse_table[] = { [135033] = 11, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6669), 1, + ACTIONS(6678), 1, anon_sym_DASH2, - ACTIONS(6685), 1, + ACTIONS(6694), 1, anon_sym_PLUS2, STATE(1706), 1, aux_sym_shebang_repeat1, STATE(3642), 1, sym_comment, - ACTIONS(5263), 2, + ACTIONS(5272), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6673), 2, + ACTIONS(6682), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6681), 2, + ACTIONS(6690), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6683), 2, + ACTIONS(6692), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6687), 2, + ACTIONS(6696), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5261), 18, + ACTIONS(5270), 18, sym__newline, anon_sym_in2, anon_sym_LBRACE, @@ -354783,20 +354783,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_shebang_repeat1, STATE(3643), 1, sym_comment, - ACTIONS(6673), 2, + ACTIONS(6682), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6681), 2, + ACTIONS(6690), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6683), 2, + ACTIONS(6692), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5263), 3, + ACTIONS(5272), 3, anon_sym_GT2, anon_sym_LT2, anon_sym_PLUS2, - ACTIONS(5261), 21, + ACTIONS(5270), 21, sym__newline, anon_sym_DASH2, anon_sym_in2, @@ -354821,21 +354821,21 @@ static const uint16_t ts_small_parse_table[] = { [135139] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3062), 1, + ACTIONS(3069), 1, aux_sym_cmd_identifier_token41, - ACTIONS(6717), 1, + ACTIONS(6726), 1, sym_filesize_unit, - ACTIONS(6719), 1, + ACTIONS(6728), 1, sym_duration_unit, STATE(3644), 1, sym_comment, - ACTIONS(3060), 5, + ACTIONS(3067), 5, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, - ACTIONS(3058), 23, + ACTIONS(3065), 23, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -354862,21 +354862,21 @@ static const uint16_t ts_small_parse_table[] = { [135187] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6725), 1, + ACTIONS(6734), 1, aux_sym_cmd_identifier_token41, - ACTIONS(6727), 1, + ACTIONS(6736), 1, sym_filesize_unit, - ACTIONS(6729), 1, + ACTIONS(6738), 1, sym_duration_unit, STATE(3645), 1, sym_comment, - ACTIONS(6723), 5, + ACTIONS(6732), 5, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, - ACTIONS(6721), 23, + ACTIONS(6730), 23, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -354903,35 +354903,35 @@ static const uint16_t ts_small_parse_table[] = { [135235] = 12, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6669), 1, + ACTIONS(6678), 1, anon_sym_DASH2, - ACTIONS(6685), 1, + ACTIONS(6694), 1, anon_sym_PLUS2, STATE(1706), 1, aux_sym_shebang_repeat1, STATE(3646), 1, sym_comment, - ACTIONS(6667), 2, + ACTIONS(6676), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6673), 2, + ACTIONS(6682), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6681), 2, + ACTIONS(6690), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6683), 2, + ACTIONS(6692), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6687), 2, + ACTIONS(6696), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6677), 4, + ACTIONS(6686), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5261), 14, + ACTIONS(5270), 14, sym__newline, anon_sym_in2, anon_sym_LBRACE, @@ -354953,16 +354953,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_shebang_repeat1, STATE(3647), 1, sym_comment, - ACTIONS(6681), 2, + ACTIONS(6690), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5263), 5, + ACTIONS(5272), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(5261), 23, + ACTIONS(5270), 23, sym__newline, anon_sym_DASH2, anon_sym_in2, @@ -354989,49 +354989,49 @@ static const uint16_t ts_small_parse_table[] = { [135339] = 17, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6669), 1, + ACTIONS(6678), 1, anon_sym_DASH2, - ACTIONS(6685), 1, + ACTIONS(6694), 1, anon_sym_PLUS2, - ACTIONS(6689), 1, + ACTIONS(6698), 1, anon_sym_bit_DASHand2, - ACTIONS(6691), 1, + ACTIONS(6700), 1, anon_sym_bit_DASHxor2, - ACTIONS(6693), 1, + ACTIONS(6702), 1, anon_sym_bit_DASHor2, STATE(1706), 1, aux_sym_shebang_repeat1, STATE(3648), 1, sym_comment, - ACTIONS(6667), 2, + ACTIONS(6676), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6673), 2, + ACTIONS(6682), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6679), 2, + ACTIONS(6688), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6681), 2, + ACTIONS(6690), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6683), 2, + ACTIONS(6692), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6687), 2, + ACTIONS(6696), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6671), 4, + ACTIONS(6680), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6677), 4, + ACTIONS(6686), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5261), 5, + ACTIONS(5270), 5, sym__newline, anon_sym_LBRACE, anon_sym_and2, @@ -355040,21 +355040,21 @@ static const uint16_t ts_small_parse_table[] = { [135407] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6735), 1, + ACTIONS(6744), 1, aux_sym_cmd_identifier_token41, - ACTIONS(6737), 1, + ACTIONS(6746), 1, sym_filesize_unit, - ACTIONS(6739), 1, + ACTIONS(6748), 1, sym_duration_unit, STATE(3649), 1, sym_comment, - ACTIONS(6733), 5, + ACTIONS(6742), 5, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, - ACTIONS(6731), 23, + ACTIONS(6740), 23, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -355081,51 +355081,51 @@ static const uint16_t ts_small_parse_table[] = { [135455] = 18, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6669), 1, + ACTIONS(6678), 1, anon_sym_DASH2, - ACTIONS(6675), 1, + ACTIONS(6684), 1, anon_sym_and2, - ACTIONS(6685), 1, + ACTIONS(6694), 1, anon_sym_PLUS2, - ACTIONS(6689), 1, + ACTIONS(6698), 1, anon_sym_bit_DASHand2, - ACTIONS(6691), 1, + ACTIONS(6700), 1, anon_sym_bit_DASHxor2, - ACTIONS(6693), 1, + ACTIONS(6702), 1, anon_sym_bit_DASHor2, STATE(1706), 1, aux_sym_shebang_repeat1, STATE(3650), 1, sym_comment, - ACTIONS(6667), 2, + ACTIONS(6676), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6673), 2, + ACTIONS(6682), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6679), 2, + ACTIONS(6688), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6681), 2, + ACTIONS(6690), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6683), 2, + ACTIONS(6692), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6687), 2, + ACTIONS(6696), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5261), 4, + ACTIONS(5270), 4, sym__newline, anon_sym_LBRACE, anon_sym_xor2, anon_sym_or2, - ACTIONS(6671), 4, + ACTIONS(6680), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6677), 4, + ACTIONS(6686), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, @@ -355133,52 +355133,52 @@ static const uint16_t ts_small_parse_table[] = { [135525] = 19, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6669), 1, + ACTIONS(6678), 1, anon_sym_DASH2, - ACTIONS(6675), 1, + ACTIONS(6684), 1, anon_sym_and2, - ACTIONS(6685), 1, + ACTIONS(6694), 1, anon_sym_PLUS2, - ACTIONS(6689), 1, + ACTIONS(6698), 1, anon_sym_bit_DASHand2, - ACTIONS(6691), 1, + ACTIONS(6700), 1, anon_sym_bit_DASHxor2, - ACTIONS(6693), 1, + ACTIONS(6702), 1, anon_sym_bit_DASHor2, - ACTIONS(6697), 1, + ACTIONS(6706), 1, anon_sym_xor2, STATE(1706), 1, aux_sym_shebang_repeat1, STATE(3651), 1, sym_comment, - ACTIONS(6667), 2, + ACTIONS(6676), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6673), 2, + ACTIONS(6682), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6679), 2, + ACTIONS(6688), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6681), 2, + ACTIONS(6690), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6683), 2, + ACTIONS(6692), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6687), 2, + ACTIONS(6696), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5261), 3, + ACTIONS(5270), 3, sym__newline, anon_sym_LBRACE, anon_sym_or2, - ACTIONS(6671), 4, + ACTIONS(6680), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6677), 4, + ACTIONS(6686), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, @@ -355186,40 +355186,40 @@ static const uint16_t ts_small_parse_table[] = { [135597] = 13, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6669), 1, + ACTIONS(6678), 1, anon_sym_DASH2, - ACTIONS(6685), 1, + ACTIONS(6694), 1, anon_sym_PLUS2, STATE(1706), 1, aux_sym_shebang_repeat1, STATE(3652), 1, sym_comment, - ACTIONS(6667), 2, + ACTIONS(6676), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6673), 2, + ACTIONS(6682), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6681), 2, + ACTIONS(6690), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6683), 2, + ACTIONS(6692), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6687), 2, + ACTIONS(6696), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6671), 4, + ACTIONS(6680), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6677), 4, + ACTIONS(6686), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5261), 10, + ACTIONS(5270), 10, sym__newline, anon_sym_LBRACE, anon_sym_and2, @@ -355233,27 +355233,27 @@ static const uint16_t ts_small_parse_table[] = { [135657] = 10, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6669), 1, + ACTIONS(6678), 1, anon_sym_DASH2, - ACTIONS(6685), 1, + ACTIONS(6694), 1, anon_sym_PLUS2, STATE(1706), 1, aux_sym_shebang_repeat1, STATE(3653), 1, sym_comment, - ACTIONS(5263), 2, + ACTIONS(5272), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6673), 2, + ACTIONS(6682), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6681), 2, + ACTIONS(6690), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6683), 2, + ACTIONS(6692), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5261), 20, + ACTIONS(5270), 20, sym__newline, anon_sym_in2, anon_sym_LBRACE, @@ -355277,43 +355277,43 @@ static const uint16_t ts_small_parse_table[] = { [135711] = 14, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6669), 1, + ACTIONS(6678), 1, anon_sym_DASH2, - ACTIONS(6685), 1, + ACTIONS(6694), 1, anon_sym_PLUS2, STATE(1706), 1, aux_sym_shebang_repeat1, STATE(3654), 1, sym_comment, - ACTIONS(6667), 2, + ACTIONS(6676), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6673), 2, + ACTIONS(6682), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6679), 2, + ACTIONS(6688), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6681), 2, + ACTIONS(6690), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6683), 2, + ACTIONS(6692), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6687), 2, + ACTIONS(6696), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6671), 4, + ACTIONS(6680), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6677), 4, + ACTIONS(6686), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5261), 8, + ACTIONS(5270), 8, sym__newline, anon_sym_LBRACE, anon_sym_and2, @@ -355325,51 +355325,51 @@ static const uint16_t ts_small_parse_table[] = { [135773] = 18, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5305), 1, + ACTIONS(5314), 1, sym__newline, - ACTIONS(6643), 1, + ACTIONS(6652), 1, anon_sym_DASH2, - ACTIONS(6657), 1, + ACTIONS(6666), 1, anon_sym_PLUS2, - ACTIONS(6661), 1, + ACTIONS(6670), 1, anon_sym_bit_DASHand2, - ACTIONS(6663), 1, + ACTIONS(6672), 1, anon_sym_bit_DASHxor2, - ACTIONS(6665), 1, + ACTIONS(6674), 1, anon_sym_bit_DASHor2, STATE(3655), 1, sym_comment, STATE(3677), 1, aux_sym_shebang_repeat1, - ACTIONS(6641), 2, + ACTIONS(6650), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6647), 2, + ACTIONS(6656), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6651), 2, + ACTIONS(6660), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6653), 2, + ACTIONS(6662), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6655), 2, + ACTIONS(6664), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6659), 2, + ACTIONS(6668), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5251), 4, + ACTIONS(5260), 4, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - ACTIONS(6645), 4, + ACTIONS(6654), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6649), 4, + ACTIONS(6658), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, @@ -355377,52 +355377,52 @@ static const uint16_t ts_small_parse_table[] = { [135843] = 19, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5305), 1, + ACTIONS(5314), 1, sym__newline, - ACTIONS(6643), 1, + ACTIONS(6652), 1, anon_sym_DASH2, - ACTIONS(6657), 1, + ACTIONS(6666), 1, anon_sym_PLUS2, - ACTIONS(6661), 1, + ACTIONS(6670), 1, anon_sym_bit_DASHand2, - ACTIONS(6663), 1, + ACTIONS(6672), 1, anon_sym_bit_DASHxor2, - ACTIONS(6665), 1, + ACTIONS(6674), 1, anon_sym_bit_DASHor2, - ACTIONS(6695), 1, + ACTIONS(6704), 1, anon_sym_and2, STATE(3559), 1, aux_sym_shebang_repeat1, STATE(3656), 1, sym_comment, - ACTIONS(6641), 2, + ACTIONS(6650), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6647), 2, + ACTIONS(6656), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6651), 2, + ACTIONS(6660), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6653), 2, + ACTIONS(6662), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6655), 2, + ACTIONS(6664), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6659), 2, + ACTIONS(6668), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5251), 3, + ACTIONS(5260), 3, anon_sym_LBRACE, anon_sym_xor2, anon_sym_or2, - ACTIONS(6645), 4, + ACTIONS(6654), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6649), 4, + ACTIONS(6658), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, @@ -355430,45 +355430,45 @@ static const uint16_t ts_small_parse_table[] = { [135915] = 15, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6669), 1, + ACTIONS(6678), 1, anon_sym_DASH2, - ACTIONS(6685), 1, + ACTIONS(6694), 1, anon_sym_PLUS2, - ACTIONS(6689), 1, + ACTIONS(6698), 1, anon_sym_bit_DASHand2, STATE(1706), 1, aux_sym_shebang_repeat1, STATE(3657), 1, sym_comment, - ACTIONS(6667), 2, + ACTIONS(6676), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6673), 2, + ACTIONS(6682), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6679), 2, + ACTIONS(6688), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6681), 2, + ACTIONS(6690), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6683), 2, + ACTIONS(6692), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6687), 2, + ACTIONS(6696), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6671), 4, + ACTIONS(6680), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6677), 4, + ACTIONS(6686), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5261), 7, + ACTIONS(5270), 7, sym__newline, anon_sym_LBRACE, anon_sym_and2, @@ -355479,47 +355479,47 @@ static const uint16_t ts_small_parse_table[] = { [135979] = 16, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6669), 1, + ACTIONS(6678), 1, anon_sym_DASH2, - ACTIONS(6685), 1, + ACTIONS(6694), 1, anon_sym_PLUS2, - ACTIONS(6689), 1, + ACTIONS(6698), 1, anon_sym_bit_DASHand2, - ACTIONS(6691), 1, + ACTIONS(6700), 1, anon_sym_bit_DASHxor2, STATE(1706), 1, aux_sym_shebang_repeat1, STATE(3658), 1, sym_comment, - ACTIONS(6667), 2, + ACTIONS(6676), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6673), 2, + ACTIONS(6682), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6679), 2, + ACTIONS(6688), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6681), 2, + ACTIONS(6690), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6683), 2, + ACTIONS(6692), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6687), 2, + ACTIONS(6696), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6671), 4, + ACTIONS(6680), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6677), 4, + ACTIONS(6686), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5261), 6, + ACTIONS(5270), 6, sym__newline, anon_sym_LBRACE, anon_sym_and2, @@ -355529,45 +355529,45 @@ static const uint16_t ts_small_parse_table[] = { [136045] = 15, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5305), 1, + ACTIONS(5314), 1, sym__newline, - ACTIONS(6643), 1, + ACTIONS(6652), 1, anon_sym_DASH2, - ACTIONS(6657), 1, + ACTIONS(6666), 1, anon_sym_PLUS2, STATE(3569), 1, aux_sym_shebang_repeat1, STATE(3659), 1, sym_comment, - ACTIONS(6641), 2, + ACTIONS(6650), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6647), 2, + ACTIONS(6656), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6651), 2, + ACTIONS(6660), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6653), 2, + ACTIONS(6662), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6655), 2, + ACTIONS(6664), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6659), 2, + ACTIONS(6668), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6645), 4, + ACTIONS(6654), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6649), 4, + ACTIONS(6658), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5251), 7, + ACTIONS(5260), 7, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, @@ -355656,47 +355656,47 @@ static const uint16_t ts_small_parse_table[] = { [136197] = 16, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5305), 1, + ACTIONS(5314), 1, sym__newline, - ACTIONS(6643), 1, + ACTIONS(6652), 1, anon_sym_DASH2, - ACTIONS(6657), 1, + ACTIONS(6666), 1, anon_sym_PLUS2, - ACTIONS(6661), 1, + ACTIONS(6670), 1, anon_sym_bit_DASHand2, STATE(3571), 1, aux_sym_shebang_repeat1, STATE(3662), 1, sym_comment, - ACTIONS(6641), 2, + ACTIONS(6650), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6647), 2, + ACTIONS(6656), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6651), 2, + ACTIONS(6660), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6653), 2, + ACTIONS(6662), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6655), 2, + ACTIONS(6664), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6659), 2, + ACTIONS(6668), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6645), 4, + ACTIONS(6654), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6649), 4, + ACTIONS(6658), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5251), 6, + ACTIONS(5260), 6, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, @@ -355706,30 +355706,30 @@ static const uint16_t ts_small_parse_table[] = { [136263] = 11, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6669), 1, + ACTIONS(6678), 1, anon_sym_DASH2, - ACTIONS(6685), 1, + ACTIONS(6694), 1, anon_sym_PLUS2, STATE(1706), 1, aux_sym_shebang_repeat1, STATE(3663), 1, sym_comment, - ACTIONS(5285), 2, + ACTIONS(5294), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6673), 2, + ACTIONS(6682), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6681), 2, + ACTIONS(6690), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6683), 2, + ACTIONS(6692), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6687), 2, + ACTIONS(6696), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5283), 18, + ACTIONS(5292), 18, sym__newline, anon_sym_in2, anon_sym_LBRACE, @@ -355751,32 +355751,32 @@ static const uint16_t ts_small_parse_table[] = { [136319] = 12, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5392), 1, + ACTIONS(5401), 1, sym__newline, - ACTIONS(6643), 1, + ACTIONS(6652), 1, anon_sym_DASH2, - ACTIONS(6657), 1, + ACTIONS(6666), 1, anon_sym_PLUS2, STATE(3591), 1, aux_sym_shebang_repeat1, STATE(3664), 1, sym_comment, - ACTIONS(5289), 2, + ACTIONS(5298), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6647), 2, + ACTIONS(6656), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6653), 2, + ACTIONS(6662), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6655), 2, + ACTIONS(6664), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6659), 2, + ACTIONS(6668), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5287), 17, + ACTIONS(5296), 17, anon_sym_in2, anon_sym_LBRACE, anon_sym_and2, @@ -355801,20 +355801,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_shebang_repeat1, STATE(3665), 1, sym_comment, - ACTIONS(6673), 2, + ACTIONS(6682), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6681), 2, + ACTIONS(6690), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6683), 2, + ACTIONS(6692), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5285), 3, + ACTIONS(5294), 3, anon_sym_GT2, anon_sym_LT2, anon_sym_PLUS2, - ACTIONS(5283), 21, + ACTIONS(5292), 21, sym__newline, anon_sym_DASH2, anon_sym_in2, @@ -355839,26 +355839,26 @@ static const uint16_t ts_small_parse_table[] = { [136427] = 9, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5392), 1, + ACTIONS(5401), 1, sym__newline, STATE(3592), 1, aux_sym_shebang_repeat1, STATE(3666), 1, sym_comment, - ACTIONS(6647), 2, + ACTIONS(6656), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6653), 2, + ACTIONS(6662), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6655), 2, + ACTIONS(6664), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5289), 3, + ACTIONS(5298), 3, anon_sym_GT2, anon_sym_LT2, anon_sym_PLUS2, - ACTIONS(5287), 20, + ACTIONS(5296), 20, anon_sym_DASH2, anon_sym_in2, anon_sym_LBRACE, @@ -355882,53 +355882,53 @@ static const uint16_t ts_small_parse_table[] = { [136479] = 20, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3802), 1, + ACTIONS(3811), 1, sym__newline, - ACTIONS(6643), 1, + ACTIONS(6652), 1, anon_sym_DASH2, - ACTIONS(6657), 1, + ACTIONS(6666), 1, anon_sym_PLUS2, - ACTIONS(6661), 1, + ACTIONS(6670), 1, anon_sym_bit_DASHand2, - ACTIONS(6663), 1, + ACTIONS(6672), 1, anon_sym_bit_DASHxor2, - ACTIONS(6665), 1, + ACTIONS(6674), 1, anon_sym_bit_DASHor2, - ACTIONS(6695), 1, + ACTIONS(6704), 1, anon_sym_and2, - ACTIONS(6699), 1, + ACTIONS(6708), 1, anon_sym_xor2, STATE(3561), 1, aux_sym_shebang_repeat1, STATE(3667), 1, sym_comment, - ACTIONS(5251), 2, + ACTIONS(5260), 2, anon_sym_LBRACE, anon_sym_or2, - ACTIONS(6641), 2, + ACTIONS(6650), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6647), 2, + ACTIONS(6656), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6651), 2, + ACTIONS(6660), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6653), 2, + ACTIONS(6662), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6655), 2, + ACTIONS(6664), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6659), 2, + ACTIONS(6668), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6645), 4, + ACTIONS(6654), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6649), 4, + ACTIONS(6658), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, @@ -355936,21 +355936,21 @@ static const uint16_t ts_small_parse_table[] = { [136553] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6745), 1, + ACTIONS(6754), 1, aux_sym_cmd_identifier_token41, - ACTIONS(6747), 1, + ACTIONS(6756), 1, sym_filesize_unit, - ACTIONS(6749), 1, + ACTIONS(6758), 1, sym_duration_unit, STATE(3668), 1, sym_comment, - ACTIONS(6743), 5, + ACTIONS(6752), 5, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, - ACTIONS(6741), 23, + ACTIONS(6750), 23, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -355977,35 +355977,35 @@ static const uint16_t ts_small_parse_table[] = { [136601] = 12, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6669), 1, + ACTIONS(6678), 1, anon_sym_DASH2, - ACTIONS(6685), 1, + ACTIONS(6694), 1, anon_sym_PLUS2, STATE(1706), 1, aux_sym_shebang_repeat1, STATE(3669), 1, sym_comment, - ACTIONS(6667), 2, + ACTIONS(6676), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6673), 2, + ACTIONS(6682), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6681), 2, + ACTIONS(6690), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6683), 2, + ACTIONS(6692), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6687), 2, + ACTIONS(6696), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6677), 4, + ACTIONS(6686), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5283), 14, + ACTIONS(5292), 14, sym__newline, anon_sym_in2, anon_sym_LBRACE, @@ -356140,37 +356140,37 @@ static const uint16_t ts_small_parse_table[] = { [136791] = 13, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5392), 1, + ACTIONS(5401), 1, sym__newline, - ACTIONS(6643), 1, + ACTIONS(6652), 1, anon_sym_DASH2, - ACTIONS(6657), 1, + ACTIONS(6666), 1, anon_sym_PLUS2, STATE(3593), 1, aux_sym_shebang_repeat1, STATE(3673), 1, sym_comment, - ACTIONS(6641), 2, + ACTIONS(6650), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6647), 2, + ACTIONS(6656), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6653), 2, + ACTIONS(6662), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6655), 2, + ACTIONS(6664), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6659), 2, + ACTIONS(6668), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6649), 4, + ACTIONS(6658), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5287), 13, + ACTIONS(5296), 13, anon_sym_in2, anon_sym_LBRACE, anon_sym_and2, @@ -356191,16 +356191,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_shebang_repeat1, STATE(3674), 1, sym_comment, - ACTIONS(6681), 2, + ACTIONS(6690), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5285), 5, + ACTIONS(5294), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(5283), 23, + ACTIONS(5292), 23, sym__newline, anon_sym_DASH2, anon_sym_in2, @@ -356265,22 +356265,22 @@ static const uint16_t ts_small_parse_table[] = { [136939] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5392), 1, + ACTIONS(5401), 1, sym__newline, STATE(3594), 1, aux_sym_shebang_repeat1, STATE(3676), 1, sym_comment, - ACTIONS(6653), 2, + ACTIONS(6662), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5289), 5, + ACTIONS(5298), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(5287), 22, + ACTIONS(5296), 22, anon_sym_DASH2, anon_sym_in2, anon_sym_LBRACE, @@ -356306,49 +356306,49 @@ static const uint16_t ts_small_parse_table[] = { [136987] = 17, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6669), 1, + ACTIONS(6678), 1, anon_sym_DASH2, - ACTIONS(6685), 1, + ACTIONS(6694), 1, anon_sym_PLUS2, - ACTIONS(6689), 1, + ACTIONS(6698), 1, anon_sym_bit_DASHand2, - ACTIONS(6691), 1, + ACTIONS(6700), 1, anon_sym_bit_DASHxor2, - ACTIONS(6693), 1, + ACTIONS(6702), 1, anon_sym_bit_DASHor2, STATE(1706), 1, aux_sym_shebang_repeat1, STATE(3677), 1, sym_comment, - ACTIONS(6667), 2, + ACTIONS(6676), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6673), 2, + ACTIONS(6682), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6679), 2, + ACTIONS(6688), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6681), 2, + ACTIONS(6690), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6683), 2, + ACTIONS(6692), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6687), 2, + ACTIONS(6696), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6671), 4, + ACTIONS(6680), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6677), 4, + ACTIONS(6686), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5283), 5, + ACTIONS(5292), 5, sym__newline, anon_sym_LBRACE, anon_sym_and2, @@ -356357,42 +356357,42 @@ static const uint16_t ts_small_parse_table[] = { [137055] = 14, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5305), 1, + ACTIONS(5314), 1, sym__newline, - ACTIONS(6643), 1, + ACTIONS(6652), 1, anon_sym_DASH2, - ACTIONS(6657), 1, + ACTIONS(6666), 1, anon_sym_PLUS2, STATE(3564), 1, aux_sym_shebang_repeat1, STATE(3678), 1, sym_comment, - ACTIONS(6641), 2, + ACTIONS(6650), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6647), 2, + ACTIONS(6656), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6653), 2, + ACTIONS(6662), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6655), 2, + ACTIONS(6664), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6659), 2, + ACTIONS(6668), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6645), 4, + ACTIONS(6654), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6649), 4, + ACTIONS(6658), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5251), 9, + ACTIONS(5260), 9, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, @@ -356405,29 +356405,29 @@ static const uint16_t ts_small_parse_table[] = { [137117] = 11, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5385), 1, + ACTIONS(5394), 1, sym__newline, - ACTIONS(6643), 1, + ACTIONS(6652), 1, anon_sym_DASH2, - ACTIONS(6657), 1, + ACTIONS(6666), 1, anon_sym_PLUS2, STATE(3653), 1, aux_sym_shebang_repeat1, STATE(3679), 1, sym_comment, - ACTIONS(5233), 2, + ACTIONS(5242), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6647), 2, + ACTIONS(6656), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6653), 2, + ACTIONS(6662), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6655), 2, + ACTIONS(6664), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5231), 19, + ACTIONS(5240), 19, anon_sym_in2, anon_sym_LBRACE, anon_sym_and2, @@ -356454,23 +356454,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(381), 1, anon_sym_DASH2, - ACTIONS(3418), 1, + ACTIONS(3427), 1, aux_sym__val_number_decimal_token3, - ACTIONS(3420), 1, + ACTIONS(3429), 1, aux_sym__val_number_decimal_token4, - ACTIONS(3444), 1, + ACTIONS(3453), 1, aux_sym_expr_unary_token1, - ACTIONS(6581), 1, + ACTIONS(6590), 1, sym_identifier, - ACTIONS(6583), 1, + ACTIONS(6592), 1, sym__newline, - ACTIONS(6585), 1, + ACTIONS(6594), 1, anon_sym_LPAREN, - ACTIONS(6587), 1, + ACTIONS(6596), 1, anon_sym_DOLLAR, - ACTIONS(6591), 1, + ACTIONS(6600), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6593), 1, + ACTIONS(6602), 1, aux_sym__val_number_decimal_token2, STATE(1638), 1, sym__val_number, @@ -356512,23 +356512,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(381), 1, anon_sym_DASH2, - ACTIONS(3418), 1, + ACTIONS(3427), 1, aux_sym__val_number_decimal_token3, - ACTIONS(3420), 1, + ACTIONS(3429), 1, aux_sym__val_number_decimal_token4, - ACTIONS(3444), 1, + ACTIONS(3453), 1, aux_sym_expr_unary_token1, - ACTIONS(6581), 1, + ACTIONS(6590), 1, sym_identifier, - ACTIONS(6583), 1, + ACTIONS(6592), 1, sym__newline, - ACTIONS(6585), 1, + ACTIONS(6594), 1, anon_sym_LPAREN, - ACTIONS(6587), 1, + ACTIONS(6596), 1, anon_sym_DOLLAR, - ACTIONS(6591), 1, + ACTIONS(6600), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6593), 1, + ACTIONS(6602), 1, aux_sym__val_number_decimal_token2, STATE(1638), 1, sym__val_number, @@ -356566,52 +356566,52 @@ static const uint16_t ts_small_parse_table[] = { [137339] = 20, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3802), 1, + ACTIONS(3811), 1, sym__newline, - ACTIONS(5316), 1, + ACTIONS(5325), 1, anon_sym_DASH2, - ACTIONS(5320), 1, + ACTIONS(5329), 1, anon_sym_and2, - ACTIONS(5322), 1, + ACTIONS(5331), 1, anon_sym_xor2, - ACTIONS(5328), 1, + ACTIONS(5337), 1, anon_sym_PLUS2, - ACTIONS(5332), 1, + ACTIONS(5341), 1, anon_sym_bit_DASHand2, - ACTIONS(5334), 1, + ACTIONS(5343), 1, anon_sym_bit_DASHxor2, - ACTIONS(5336), 1, + ACTIONS(5345), 1, anon_sym_bit_DASHor2, - ACTIONS(6751), 1, + ACTIONS(6760), 1, anon_sym_or2, STATE(3682), 1, sym_comment, STATE(3700), 1, aux_sym_shebang_repeat1, - ACTIONS(5308), 2, + ACTIONS(5317), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5310), 2, + ACTIONS(5319), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5312), 2, + ACTIONS(5321), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5314), 2, + ACTIONS(5323), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(5326), 2, + ACTIONS(5335), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(5330), 2, + ACTIONS(5339), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5318), 4, + ACTIONS(5327), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5324), 4, + ACTIONS(5333), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, @@ -356623,23 +356623,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(381), 1, anon_sym_DASH2, - ACTIONS(3418), 1, + ACTIONS(3427), 1, aux_sym__val_number_decimal_token3, - ACTIONS(3420), 1, + ACTIONS(3429), 1, aux_sym__val_number_decimal_token4, - ACTIONS(3444), 1, + ACTIONS(3453), 1, aux_sym_expr_unary_token1, - ACTIONS(6581), 1, + ACTIONS(6590), 1, sym_identifier, - ACTIONS(6583), 1, + ACTIONS(6592), 1, sym__newline, - ACTIONS(6585), 1, + ACTIONS(6594), 1, anon_sym_LPAREN, - ACTIONS(6587), 1, + ACTIONS(6596), 1, anon_sym_DOLLAR, - ACTIONS(6591), 1, + ACTIONS(6600), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6593), 1, + ACTIONS(6602), 1, aux_sym__val_number_decimal_token2, STATE(1638), 1, sym__val_number, @@ -356681,23 +356681,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(381), 1, anon_sym_DASH2, - ACTIONS(3418), 1, + ACTIONS(3427), 1, aux_sym__val_number_decimal_token3, - ACTIONS(3420), 1, + ACTIONS(3429), 1, aux_sym__val_number_decimal_token4, - ACTIONS(3444), 1, + ACTIONS(3453), 1, aux_sym_expr_unary_token1, - ACTIONS(6581), 1, + ACTIONS(6590), 1, sym_identifier, - ACTIONS(6583), 1, + ACTIONS(6592), 1, sym__newline, - ACTIONS(6585), 1, + ACTIONS(6594), 1, anon_sym_LPAREN, - ACTIONS(6587), 1, + ACTIONS(6596), 1, anon_sym_DOLLAR, - ACTIONS(6591), 1, + ACTIONS(6600), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6593), 1, + ACTIONS(6602), 1, aux_sym__val_number_decimal_token2, STATE(1638), 1, sym__val_number, @@ -356739,23 +356739,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(381), 1, anon_sym_DASH2, - ACTIONS(3418), 1, + ACTIONS(3427), 1, aux_sym__val_number_decimal_token3, - ACTIONS(3420), 1, + ACTIONS(3429), 1, aux_sym__val_number_decimal_token4, - ACTIONS(3444), 1, + ACTIONS(3453), 1, aux_sym_expr_unary_token1, - ACTIONS(6581), 1, + ACTIONS(6590), 1, sym_identifier, - ACTIONS(6583), 1, + ACTIONS(6592), 1, sym__newline, - ACTIONS(6585), 1, + ACTIONS(6594), 1, anon_sym_LPAREN, - ACTIONS(6587), 1, + ACTIONS(6596), 1, anon_sym_DOLLAR, - ACTIONS(6591), 1, + ACTIONS(6600), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6593), 1, + ACTIONS(6602), 1, aux_sym__val_number_decimal_token2, STATE(1638), 1, sym__val_number, @@ -356797,23 +356797,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(381), 1, anon_sym_DASH2, - ACTIONS(3418), 1, + ACTIONS(3427), 1, aux_sym__val_number_decimal_token3, - ACTIONS(3420), 1, + ACTIONS(3429), 1, aux_sym__val_number_decimal_token4, - ACTIONS(3444), 1, + ACTIONS(3453), 1, aux_sym_expr_unary_token1, - ACTIONS(6581), 1, + ACTIONS(6590), 1, sym_identifier, - ACTIONS(6583), 1, + ACTIONS(6592), 1, sym__newline, - ACTIONS(6585), 1, + ACTIONS(6594), 1, anon_sym_LPAREN, - ACTIONS(6587), 1, + ACTIONS(6596), 1, anon_sym_DOLLAR, - ACTIONS(6591), 1, + ACTIONS(6600), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6593), 1, + ACTIONS(6602), 1, aux_sym__val_number_decimal_token2, STATE(1638), 1, sym__val_number, @@ -356855,23 +356855,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(381), 1, anon_sym_DASH2, - ACTIONS(3418), 1, + ACTIONS(3427), 1, aux_sym__val_number_decimal_token3, - ACTIONS(3420), 1, + ACTIONS(3429), 1, aux_sym__val_number_decimal_token4, - ACTIONS(3444), 1, + ACTIONS(3453), 1, aux_sym_expr_unary_token1, - ACTIONS(6581), 1, + ACTIONS(6590), 1, sym_identifier, - ACTIONS(6583), 1, + ACTIONS(6592), 1, sym__newline, - ACTIONS(6585), 1, + ACTIONS(6594), 1, anon_sym_LPAREN, - ACTIONS(6587), 1, + ACTIONS(6596), 1, anon_sym_DOLLAR, - ACTIONS(6591), 1, + ACTIONS(6600), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6593), 1, + ACTIONS(6602), 1, aux_sym__val_number_decimal_token2, STATE(1638), 1, sym__val_number, @@ -356913,7 +356913,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(4628), 1, sym_redirection, - ACTIONS(6755), 8, + ACTIONS(6764), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -356922,7 +356922,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(6757), 8, + ACTIONS(6766), 8, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -356931,7 +356931,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - ACTIONS(6753), 13, + ACTIONS(6762), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -356952,23 +356952,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(381), 1, anon_sym_DASH2, - ACTIONS(3418), 1, + ACTIONS(3427), 1, aux_sym__val_number_decimal_token3, - ACTIONS(3420), 1, + ACTIONS(3429), 1, aux_sym__val_number_decimal_token4, - ACTIONS(3444), 1, + ACTIONS(3453), 1, aux_sym_expr_unary_token1, - ACTIONS(6581), 1, + ACTIONS(6590), 1, sym_identifier, - ACTIONS(6583), 1, + ACTIONS(6592), 1, sym__newline, - ACTIONS(6585), 1, + ACTIONS(6594), 1, anon_sym_LPAREN, - ACTIONS(6587), 1, + ACTIONS(6596), 1, anon_sym_DOLLAR, - ACTIONS(6591), 1, + ACTIONS(6600), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6593), 1, + ACTIONS(6602), 1, aux_sym__val_number_decimal_token2, STATE(1638), 1, sym__val_number, @@ -357010,23 +357010,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(381), 1, anon_sym_DASH2, - ACTIONS(3418), 1, + ACTIONS(3427), 1, aux_sym__val_number_decimal_token3, - ACTIONS(3420), 1, + ACTIONS(3429), 1, aux_sym__val_number_decimal_token4, - ACTIONS(3444), 1, + ACTIONS(3453), 1, aux_sym_expr_unary_token1, - ACTIONS(6581), 1, + ACTIONS(6590), 1, sym_identifier, - ACTIONS(6583), 1, + ACTIONS(6592), 1, sym__newline, - ACTIONS(6585), 1, + ACTIONS(6594), 1, anon_sym_LPAREN, - ACTIONS(6587), 1, + ACTIONS(6596), 1, anon_sym_DOLLAR, - ACTIONS(6591), 1, + ACTIONS(6600), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6593), 1, + ACTIONS(6602), 1, aux_sym__val_number_decimal_token2, STATE(1638), 1, sym__val_number, @@ -357068,23 +357068,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(381), 1, anon_sym_DASH2, - ACTIONS(3418), 1, + ACTIONS(3427), 1, aux_sym__val_number_decimal_token3, - ACTIONS(3420), 1, + ACTIONS(3429), 1, aux_sym__val_number_decimal_token4, - ACTIONS(3444), 1, + ACTIONS(3453), 1, aux_sym_expr_unary_token1, - ACTIONS(6581), 1, + ACTIONS(6590), 1, sym_identifier, - ACTIONS(6583), 1, + ACTIONS(6592), 1, sym__newline, - ACTIONS(6585), 1, + ACTIONS(6594), 1, anon_sym_LPAREN, - ACTIONS(6587), 1, + ACTIONS(6596), 1, anon_sym_DOLLAR, - ACTIONS(6591), 1, + ACTIONS(6600), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6593), 1, + ACTIONS(6602), 1, aux_sym__val_number_decimal_token2, STATE(1638), 1, sym__val_number, @@ -357126,23 +357126,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(381), 1, anon_sym_DASH2, - ACTIONS(3418), 1, + ACTIONS(3427), 1, aux_sym__val_number_decimal_token3, - ACTIONS(3420), 1, + ACTIONS(3429), 1, aux_sym__val_number_decimal_token4, - ACTIONS(3444), 1, + ACTIONS(3453), 1, aux_sym_expr_unary_token1, - ACTIONS(6581), 1, + ACTIONS(6590), 1, sym_identifier, - ACTIONS(6583), 1, + ACTIONS(6592), 1, sym__newline, - ACTIONS(6585), 1, + ACTIONS(6594), 1, anon_sym_LPAREN, - ACTIONS(6587), 1, + ACTIONS(6596), 1, anon_sym_DOLLAR, - ACTIONS(6591), 1, + ACTIONS(6600), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6593), 1, + ACTIONS(6602), 1, aux_sym__val_number_decimal_token2, STATE(1638), 1, sym__val_number, @@ -357184,23 +357184,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(381), 1, anon_sym_DASH2, - ACTIONS(3418), 1, + ACTIONS(3427), 1, aux_sym__val_number_decimal_token3, - ACTIONS(3420), 1, + ACTIONS(3429), 1, aux_sym__val_number_decimal_token4, - ACTIONS(3444), 1, + ACTIONS(3453), 1, aux_sym_expr_unary_token1, - ACTIONS(6581), 1, + ACTIONS(6590), 1, sym_identifier, - ACTIONS(6583), 1, + ACTIONS(6592), 1, sym__newline, - ACTIONS(6585), 1, + ACTIONS(6594), 1, anon_sym_LPAREN, - ACTIONS(6587), 1, + ACTIONS(6596), 1, anon_sym_DOLLAR, - ACTIONS(6591), 1, + ACTIONS(6600), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6593), 1, + ACTIONS(6602), 1, aux_sym__val_number_decimal_token2, STATE(1638), 1, sym__val_number, @@ -357242,23 +357242,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(381), 1, anon_sym_DASH2, - ACTIONS(3418), 1, + ACTIONS(3427), 1, aux_sym__val_number_decimal_token3, - ACTIONS(3420), 1, + ACTIONS(3429), 1, aux_sym__val_number_decimal_token4, - ACTIONS(3444), 1, + ACTIONS(3453), 1, aux_sym_expr_unary_token1, - ACTIONS(6581), 1, + ACTIONS(6590), 1, sym_identifier, - ACTIONS(6583), 1, + ACTIONS(6592), 1, sym__newline, - ACTIONS(6585), 1, + ACTIONS(6594), 1, anon_sym_LPAREN, - ACTIONS(6587), 1, + ACTIONS(6596), 1, anon_sym_DOLLAR, - ACTIONS(6591), 1, + ACTIONS(6600), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6593), 1, + ACTIONS(6602), 1, aux_sym__val_number_decimal_token2, STATE(1638), 1, sym__val_number, @@ -357300,23 +357300,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(381), 1, anon_sym_DASH2, - ACTIONS(3418), 1, + ACTIONS(3427), 1, aux_sym__val_number_decimal_token3, - ACTIONS(3420), 1, + ACTIONS(3429), 1, aux_sym__val_number_decimal_token4, - ACTIONS(3444), 1, + ACTIONS(3453), 1, aux_sym_expr_unary_token1, - ACTIONS(6581), 1, + ACTIONS(6590), 1, sym_identifier, - ACTIONS(6583), 1, + ACTIONS(6592), 1, sym__newline, - ACTIONS(6585), 1, + ACTIONS(6594), 1, anon_sym_LPAREN, - ACTIONS(6587), 1, + ACTIONS(6596), 1, anon_sym_DOLLAR, - ACTIONS(6591), 1, + ACTIONS(6600), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6593), 1, + ACTIONS(6602), 1, aux_sym__val_number_decimal_token2, STATE(1638), 1, sym__val_number, @@ -357358,23 +357358,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(381), 1, anon_sym_DASH2, - ACTIONS(3418), 1, + ACTIONS(3427), 1, aux_sym__val_number_decimal_token3, - ACTIONS(3420), 1, + ACTIONS(3429), 1, aux_sym__val_number_decimal_token4, - ACTIONS(3444), 1, + ACTIONS(3453), 1, aux_sym_expr_unary_token1, - ACTIONS(6581), 1, + ACTIONS(6590), 1, sym_identifier, - ACTIONS(6583), 1, + ACTIONS(6592), 1, sym__newline, - ACTIONS(6585), 1, + ACTIONS(6594), 1, anon_sym_LPAREN, - ACTIONS(6587), 1, + ACTIONS(6596), 1, anon_sym_DOLLAR, - ACTIONS(6591), 1, + ACTIONS(6600), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6593), 1, + ACTIONS(6602), 1, aux_sym__val_number_decimal_token2, STATE(1638), 1, sym__val_number, @@ -357416,23 +357416,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3418), 1, + ACTIONS(3427), 1, aux_sym__val_number_decimal_token3, - ACTIONS(3420), 1, + ACTIONS(3429), 1, aux_sym__val_number_decimal_token4, - ACTIONS(3476), 1, + ACTIONS(3485), 1, aux_sym_expr_unary_token1, - ACTIONS(5824), 1, + ACTIONS(5833), 1, anon_sym_LPAREN, - ACTIONS(6581), 1, + ACTIONS(6590), 1, sym_identifier, - ACTIONS(6587), 1, + ACTIONS(6596), 1, anon_sym_DOLLAR, - ACTIONS(6591), 1, + ACTIONS(6600), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6593), 1, + ACTIONS(6602), 1, aux_sym__val_number_decimal_token2, - ACTIONS(6759), 1, + ACTIONS(6768), 1, anon_sym_LBRACE, STATE(1638), 1, sym__val_number, @@ -357474,23 +357474,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(381), 1, anon_sym_DASH2, - ACTIONS(3418), 1, + ACTIONS(3427), 1, aux_sym__val_number_decimal_token3, - ACTIONS(3420), 1, + ACTIONS(3429), 1, aux_sym__val_number_decimal_token4, - ACTIONS(3444), 1, + ACTIONS(3453), 1, aux_sym_expr_unary_token1, - ACTIONS(6581), 1, + ACTIONS(6590), 1, sym_identifier, - ACTIONS(6583), 1, + ACTIONS(6592), 1, sym__newline, - ACTIONS(6585), 1, + ACTIONS(6594), 1, anon_sym_LPAREN, - ACTIONS(6587), 1, + ACTIONS(6596), 1, anon_sym_DOLLAR, - ACTIONS(6591), 1, + ACTIONS(6600), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6593), 1, + ACTIONS(6602), 1, aux_sym__val_number_decimal_token2, STATE(1638), 1, sym__val_number, @@ -357532,23 +357532,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(381), 1, anon_sym_DASH2, - ACTIONS(3418), 1, + ACTIONS(3427), 1, aux_sym__val_number_decimal_token3, - ACTIONS(3420), 1, + ACTIONS(3429), 1, aux_sym__val_number_decimal_token4, - ACTIONS(3444), 1, + ACTIONS(3453), 1, aux_sym_expr_unary_token1, - ACTIONS(6581), 1, + ACTIONS(6590), 1, sym_identifier, - ACTIONS(6583), 1, + ACTIONS(6592), 1, sym__newline, - ACTIONS(6585), 1, + ACTIONS(6594), 1, anon_sym_LPAREN, - ACTIONS(6587), 1, + ACTIONS(6596), 1, anon_sym_DOLLAR, - ACTIONS(6591), 1, + ACTIONS(6600), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6593), 1, + ACTIONS(6602), 1, aux_sym__val_number_decimal_token2, STATE(1638), 1, sym__val_number, @@ -357586,52 +357586,52 @@ static const uint16_t ts_small_parse_table[] = { [138785] = 20, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3802), 1, + ACTIONS(3811), 1, sym__newline, - ACTIONS(5341), 1, + ACTIONS(5350), 1, anon_sym_DASH2, - ACTIONS(5349), 1, + ACTIONS(5358), 1, anon_sym_PLUS2, - ACTIONS(5365), 1, + ACTIONS(5374), 1, anon_sym_bit_DASHand2, - ACTIONS(5367), 1, + ACTIONS(5376), 1, anon_sym_bit_DASHxor2, - ACTIONS(5369), 1, + ACTIONS(5378), 1, anon_sym_bit_DASHor2, - ACTIONS(5371), 1, + ACTIONS(5380), 1, anon_sym_and2, - ACTIONS(5383), 1, + ACTIONS(5392), 1, anon_sym_xor2, - ACTIONS(6761), 1, + ACTIONS(6770), 1, anon_sym_or2, STATE(1706), 1, aux_sym_shebang_repeat1, STATE(3700), 1, sym_comment, - ACTIONS(5343), 2, + ACTIONS(5352), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5345), 2, + ACTIONS(5354), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5347), 2, + ACTIONS(5356), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5351), 2, + ACTIONS(5360), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5353), 2, + ACTIONS(5362), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(5363), 2, + ACTIONS(5372), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(5355), 4, + ACTIONS(5364), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5361), 4, + ACTIONS(5370), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, @@ -357643,23 +357643,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(381), 1, anon_sym_DASH2, - ACTIONS(3418), 1, + ACTIONS(3427), 1, aux_sym__val_number_decimal_token3, - ACTIONS(3420), 1, + ACTIONS(3429), 1, aux_sym__val_number_decimal_token4, - ACTIONS(3444), 1, + ACTIONS(3453), 1, aux_sym_expr_unary_token1, - ACTIONS(6581), 1, + ACTIONS(6590), 1, sym_identifier, - ACTIONS(6583), 1, + ACTIONS(6592), 1, sym__newline, - ACTIONS(6585), 1, + ACTIONS(6594), 1, anon_sym_LPAREN, - ACTIONS(6587), 1, + ACTIONS(6596), 1, anon_sym_DOLLAR, - ACTIONS(6591), 1, + ACTIONS(6600), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6593), 1, + ACTIONS(6602), 1, aux_sym__val_number_decimal_token2, STATE(1638), 1, sym__val_number, @@ -357697,52 +357697,52 @@ static const uint16_t ts_small_parse_table[] = { [138941] = 20, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3802), 1, + ACTIONS(3811), 1, sym__newline, - ACTIONS(6643), 1, + ACTIONS(6652), 1, anon_sym_DASH2, - ACTIONS(6657), 1, + ACTIONS(6666), 1, anon_sym_PLUS2, - ACTIONS(6661), 1, + ACTIONS(6670), 1, anon_sym_bit_DASHand2, - ACTIONS(6663), 1, + ACTIONS(6672), 1, anon_sym_bit_DASHxor2, - ACTIONS(6665), 1, + ACTIONS(6674), 1, anon_sym_bit_DASHor2, - ACTIONS(6695), 1, + ACTIONS(6704), 1, anon_sym_and2, - ACTIONS(6699), 1, + ACTIONS(6708), 1, anon_sym_xor2, - ACTIONS(6763), 1, + ACTIONS(6772), 1, anon_sym_or2, STATE(3702), 1, sym_comment, STATE(3703), 1, aux_sym_shebang_repeat1, - ACTIONS(6641), 2, + ACTIONS(6650), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6647), 2, + ACTIONS(6656), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6651), 2, + ACTIONS(6660), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6653), 2, + ACTIONS(6662), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6655), 2, + ACTIONS(6664), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6659), 2, + ACTIONS(6668), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6645), 4, + ACTIONS(6654), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6649), 4, + ACTIONS(6658), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, @@ -357750,52 +357750,52 @@ static const uint16_t ts_small_parse_table[] = { [139014] = 20, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3802), 1, + ACTIONS(3811), 1, sym__newline, - ACTIONS(6669), 1, + ACTIONS(6678), 1, anon_sym_DASH2, - ACTIONS(6675), 1, + ACTIONS(6684), 1, anon_sym_and2, - ACTIONS(6685), 1, + ACTIONS(6694), 1, anon_sym_PLUS2, - ACTIONS(6689), 1, + ACTIONS(6698), 1, anon_sym_bit_DASHand2, - ACTIONS(6691), 1, + ACTIONS(6700), 1, anon_sym_bit_DASHxor2, - ACTIONS(6693), 1, + ACTIONS(6702), 1, anon_sym_bit_DASHor2, - ACTIONS(6697), 1, + ACTIONS(6706), 1, anon_sym_xor2, - ACTIONS(6765), 1, + ACTIONS(6774), 1, anon_sym_or2, STATE(1706), 1, aux_sym_shebang_repeat1, STATE(3703), 1, sym_comment, - ACTIONS(6667), 2, + ACTIONS(6676), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6673), 2, + ACTIONS(6682), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6679), 2, + ACTIONS(6688), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6681), 2, + ACTIONS(6690), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6683), 2, + ACTIONS(6692), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6687), 2, + ACTIONS(6696), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6671), 4, + ACTIONS(6680), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6677), 4, + ACTIONS(6686), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, @@ -357807,23 +357807,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(381), 1, anon_sym_DASH2, - ACTIONS(3418), 1, + ACTIONS(3427), 1, aux_sym__val_number_decimal_token3, - ACTIONS(3420), 1, + ACTIONS(3429), 1, aux_sym__val_number_decimal_token4, - ACTIONS(3444), 1, + ACTIONS(3453), 1, aux_sym_expr_unary_token1, - ACTIONS(6581), 1, + ACTIONS(6590), 1, sym_identifier, - ACTIONS(6583), 1, + ACTIONS(6592), 1, sym__newline, - ACTIONS(6585), 1, + ACTIONS(6594), 1, anon_sym_LPAREN, - ACTIONS(6587), 1, + ACTIONS(6596), 1, anon_sym_DOLLAR, - ACTIONS(6591), 1, + ACTIONS(6600), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6593), 1, + ACTIONS(6602), 1, aux_sym__val_number_decimal_token2, STATE(1638), 1, sym__val_number, @@ -357861,7 +357861,7 @@ static const uint16_t ts_small_parse_table[] = { [139170] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4801), 1, + ACTIONS(4810), 1, aux_sym_unquoted_token2, STATE(3705), 1, sym_comment, @@ -357899,52 +357899,52 @@ static const uint16_t ts_small_parse_table[] = { [139213] = 20, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3802), 1, + ACTIONS(3811), 1, sym__newline, - ACTIONS(6294), 1, + ACTIONS(6303), 1, anon_sym_DASH2, - ACTIONS(6302), 1, + ACTIONS(6311), 1, anon_sym_PLUS2, - ACTIONS(6314), 1, + ACTIONS(6323), 1, anon_sym_bit_DASHand2, - ACTIONS(6316), 1, + ACTIONS(6325), 1, anon_sym_bit_DASHxor2, - ACTIONS(6318), 1, + ACTIONS(6327), 1, anon_sym_bit_DASHor2, - ACTIONS(6320), 1, + ACTIONS(6329), 1, anon_sym_and2, - ACTIONS(6322), 1, + ACTIONS(6331), 1, anon_sym_xor2, - ACTIONS(6767), 1, + ACTIONS(6776), 1, anon_sym_or2, STATE(3706), 1, sym_comment, STATE(3707), 1, aux_sym_shebang_repeat1, - ACTIONS(6296), 2, + ACTIONS(6305), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6298), 2, + ACTIONS(6307), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6300), 2, + ACTIONS(6309), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6304), 2, + ACTIONS(6313), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6306), 2, + ACTIONS(6315), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6312), 2, + ACTIONS(6321), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6308), 4, + ACTIONS(6317), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6310), 4, + ACTIONS(6319), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, @@ -357952,52 +357952,52 @@ static const uint16_t ts_small_parse_table[] = { [139286] = 20, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3802), 1, + ACTIONS(3811), 1, sym__newline, - ACTIONS(6326), 1, + ACTIONS(6335), 1, anon_sym_DASH2, - ACTIONS(6334), 1, + ACTIONS(6343), 1, anon_sym_PLUS2, - ACTIONS(6346), 1, + ACTIONS(6355), 1, anon_sym_bit_DASHand2, - ACTIONS(6348), 1, + ACTIONS(6357), 1, anon_sym_bit_DASHxor2, - ACTIONS(6350), 1, + ACTIONS(6359), 1, anon_sym_bit_DASHor2, - ACTIONS(6352), 1, + ACTIONS(6361), 1, anon_sym_and2, - ACTIONS(6354), 1, + ACTIONS(6363), 1, anon_sym_xor2, - ACTIONS(6769), 1, + ACTIONS(6778), 1, anon_sym_or2, STATE(1706), 1, aux_sym_shebang_repeat1, STATE(3707), 1, sym_comment, - ACTIONS(6328), 2, + ACTIONS(6337), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6330), 2, + ACTIONS(6339), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6332), 2, + ACTIONS(6341), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6336), 2, + ACTIONS(6345), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6338), 2, + ACTIONS(6347), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6344), 2, + ACTIONS(6353), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6340), 4, + ACTIONS(6349), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6342), 4, + ACTIONS(6351), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, @@ -358009,23 +358009,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(381), 1, anon_sym_DASH2, - ACTIONS(3418), 1, + ACTIONS(3427), 1, aux_sym__val_number_decimal_token3, - ACTIONS(3420), 1, + ACTIONS(3429), 1, aux_sym__val_number_decimal_token4, - ACTIONS(3444), 1, + ACTIONS(3453), 1, aux_sym_expr_unary_token1, - ACTIONS(6581), 1, + ACTIONS(6590), 1, sym_identifier, - ACTIONS(6583), 1, + ACTIONS(6592), 1, sym__newline, - ACTIONS(6585), 1, + ACTIONS(6594), 1, anon_sym_LPAREN, - ACTIONS(6587), 1, + ACTIONS(6596), 1, anon_sym_DOLLAR, - ACTIONS(6591), 1, + ACTIONS(6600), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6593), 1, + ACTIONS(6602), 1, aux_sym__val_number_decimal_token2, STATE(1638), 1, sym__val_number, @@ -358067,23 +358067,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(381), 1, anon_sym_DASH2, - ACTIONS(3418), 1, + ACTIONS(3427), 1, aux_sym__val_number_decimal_token3, - ACTIONS(3420), 1, + ACTIONS(3429), 1, aux_sym__val_number_decimal_token4, - ACTIONS(3444), 1, + ACTIONS(3453), 1, aux_sym_expr_unary_token1, - ACTIONS(6581), 1, + ACTIONS(6590), 1, sym_identifier, - ACTIONS(6583), 1, + ACTIONS(6592), 1, sym__newline, - ACTIONS(6585), 1, + ACTIONS(6594), 1, anon_sym_LPAREN, - ACTIONS(6587), 1, + ACTIONS(6596), 1, anon_sym_DOLLAR, - ACTIONS(6591), 1, + ACTIONS(6600), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6593), 1, + ACTIONS(6602), 1, aux_sym__val_number_decimal_token2, STATE(1638), 1, sym__val_number, @@ -358125,23 +358125,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(381), 1, anon_sym_DASH2, - ACTIONS(3418), 1, + ACTIONS(3427), 1, aux_sym__val_number_decimal_token3, - ACTIONS(3420), 1, + ACTIONS(3429), 1, aux_sym__val_number_decimal_token4, - ACTIONS(3444), 1, + ACTIONS(3453), 1, aux_sym_expr_unary_token1, - ACTIONS(6581), 1, + ACTIONS(6590), 1, sym_identifier, - ACTIONS(6585), 1, + ACTIONS(6594), 1, anon_sym_LPAREN, - ACTIONS(6587), 1, + ACTIONS(6596), 1, anon_sym_DOLLAR, - ACTIONS(6589), 1, + ACTIONS(6598), 1, anon_sym_LBRACE, - ACTIONS(6591), 1, + ACTIONS(6600), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6593), 1, + ACTIONS(6602), 1, aux_sym__val_number_decimal_token2, STATE(1638), 1, sym__val_number, @@ -358183,23 +358183,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(381), 1, anon_sym_DASH2, - ACTIONS(3418), 1, + ACTIONS(3427), 1, aux_sym__val_number_decimal_token3, - ACTIONS(3420), 1, + ACTIONS(3429), 1, aux_sym__val_number_decimal_token4, - ACTIONS(3444), 1, + ACTIONS(3453), 1, aux_sym_expr_unary_token1, - ACTIONS(6581), 1, + ACTIONS(6590), 1, sym_identifier, - ACTIONS(6583), 1, + ACTIONS(6592), 1, sym__newline, - ACTIONS(6585), 1, + ACTIONS(6594), 1, anon_sym_LPAREN, - ACTIONS(6587), 1, + ACTIONS(6596), 1, anon_sym_DOLLAR, - ACTIONS(6591), 1, + ACTIONS(6600), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6593), 1, + ACTIONS(6602), 1, aux_sym__val_number_decimal_token2, STATE(1638), 1, sym__val_number, @@ -358241,7 +358241,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(4733), 1, sym_redirection, - ACTIONS(6755), 8, + ACTIONS(6764), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -358250,7 +358250,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(6757), 8, + ACTIONS(6766), 8, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -358259,7 +358259,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - ACTIONS(6771), 13, + ACTIONS(6780), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -358280,23 +358280,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(381), 1, anon_sym_DASH2, - ACTIONS(3418), 1, + ACTIONS(3427), 1, aux_sym__val_number_decimal_token3, - ACTIONS(3420), 1, + ACTIONS(3429), 1, aux_sym__val_number_decimal_token4, - ACTIONS(3444), 1, + ACTIONS(3453), 1, aux_sym_expr_unary_token1, - ACTIONS(6581), 1, + ACTIONS(6590), 1, sym_identifier, - ACTIONS(6583), 1, + ACTIONS(6592), 1, sym__newline, - ACTIONS(6585), 1, + ACTIONS(6594), 1, anon_sym_LPAREN, - ACTIONS(6587), 1, + ACTIONS(6596), 1, anon_sym_DOLLAR, - ACTIONS(6591), 1, + ACTIONS(6600), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6593), 1, + ACTIONS(6602), 1, aux_sym__val_number_decimal_token2, STATE(1638), 1, sym__val_number, @@ -358338,23 +358338,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(381), 1, anon_sym_DASH2, - ACTIONS(3418), 1, + ACTIONS(3427), 1, aux_sym__val_number_decimal_token3, - ACTIONS(3420), 1, + ACTIONS(3429), 1, aux_sym__val_number_decimal_token4, - ACTIONS(3444), 1, + ACTIONS(3453), 1, aux_sym_expr_unary_token1, - ACTIONS(6581), 1, + ACTIONS(6590), 1, sym_identifier, - ACTIONS(6583), 1, + ACTIONS(6592), 1, sym__newline, - ACTIONS(6585), 1, + ACTIONS(6594), 1, anon_sym_LPAREN, - ACTIONS(6587), 1, + ACTIONS(6596), 1, anon_sym_DOLLAR, - ACTIONS(6591), 1, + ACTIONS(6600), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6593), 1, + ACTIONS(6602), 1, aux_sym__val_number_decimal_token2, STATE(1638), 1, sym__val_number, @@ -358392,17 +358392,17 @@ static const uint16_t ts_small_parse_table[] = { [139902] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3180), 1, + ACTIONS(3187), 1, aux_sym_cmd_identifier_token41, STATE(3715), 1, sym_comment, - ACTIONS(3178), 5, + ACTIONS(3185), 5, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, - ACTIONS(3176), 23, + ACTIONS(3183), 23, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -358431,16 +358431,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(3716), 1, sym_comment, - ACTIONS(6773), 2, + ACTIONS(6782), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5207), 5, + ACTIONS(5216), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(5205), 22, + ACTIONS(5214), 22, anon_sym_DASH2, anon_sym_in2, anon_sym_EQ_GT, @@ -358466,17 +358466,17 @@ static const uint16_t ts_small_parse_table[] = { [139986] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6779), 1, + ACTIONS(6788), 1, aux_sym_cmd_identifier_token41, STATE(3717), 1, sym_comment, - ACTIONS(6777), 5, + ACTIONS(6786), 5, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, - ACTIONS(6775), 23, + ACTIONS(6784), 23, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -358503,47 +358503,47 @@ static const uint16_t ts_small_parse_table[] = { [140028] = 16, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6783), 1, + ACTIONS(6792), 1, anon_sym_DASH2, - ACTIONS(6795), 1, + ACTIONS(6804), 1, anon_sym_PLUS2, - ACTIONS(6799), 1, + ACTIONS(6808), 1, anon_sym_bit_DASHand2, - ACTIONS(6801), 1, + ACTIONS(6810), 1, anon_sym_bit_DASHxor2, - ACTIONS(6803), 1, + ACTIONS(6812), 1, anon_sym_bit_DASHor2, STATE(3718), 1, sym_comment, - ACTIONS(6773), 2, + ACTIONS(6782), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6781), 2, + ACTIONS(6790), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6787), 2, + ACTIONS(6796), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6791), 2, + ACTIONS(6800), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6793), 2, + ACTIONS(6802), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6797), 2, + ACTIONS(6806), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5205), 4, + ACTIONS(5214), 4, anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - ACTIONS(6785), 4, + ACTIONS(6794), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6789), 4, + ACTIONS(6798), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, @@ -358551,48 +358551,48 @@ static const uint16_t ts_small_parse_table[] = { [140092] = 17, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6783), 1, + ACTIONS(6792), 1, anon_sym_DASH2, - ACTIONS(6795), 1, + ACTIONS(6804), 1, anon_sym_PLUS2, - ACTIONS(6799), 1, + ACTIONS(6808), 1, anon_sym_bit_DASHand2, - ACTIONS(6801), 1, + ACTIONS(6810), 1, anon_sym_bit_DASHxor2, - ACTIONS(6803), 1, + ACTIONS(6812), 1, anon_sym_bit_DASHor2, - ACTIONS(6805), 1, + ACTIONS(6814), 1, anon_sym_and2, STATE(3719), 1, sym_comment, - ACTIONS(6773), 2, + ACTIONS(6782), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6781), 2, + ACTIONS(6790), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6787), 2, + ACTIONS(6796), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6791), 2, + ACTIONS(6800), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6793), 2, + ACTIONS(6802), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6797), 2, + ACTIONS(6806), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5205), 3, + ACTIONS(5214), 3, anon_sym_EQ_GT, anon_sym_xor2, anon_sym_or2, - ACTIONS(6785), 4, + ACTIONS(6794), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6789), 4, + ACTIONS(6798), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, @@ -358600,49 +358600,49 @@ static const uint16_t ts_small_parse_table[] = { [140158] = 18, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6783), 1, + ACTIONS(6792), 1, anon_sym_DASH2, - ACTIONS(6795), 1, + ACTIONS(6804), 1, anon_sym_PLUS2, - ACTIONS(6799), 1, + ACTIONS(6808), 1, anon_sym_bit_DASHand2, - ACTIONS(6801), 1, + ACTIONS(6810), 1, anon_sym_bit_DASHxor2, - ACTIONS(6803), 1, + ACTIONS(6812), 1, anon_sym_bit_DASHor2, - ACTIONS(6805), 1, + ACTIONS(6814), 1, anon_sym_and2, - ACTIONS(6807), 1, + ACTIONS(6816), 1, anon_sym_xor2, STATE(3720), 1, sym_comment, - ACTIONS(5205), 2, + ACTIONS(5214), 2, anon_sym_EQ_GT, anon_sym_or2, - ACTIONS(6773), 2, + ACTIONS(6782), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6781), 2, + ACTIONS(6790), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6787), 2, + ACTIONS(6796), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6791), 2, + ACTIONS(6800), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6793), 2, + ACTIONS(6802), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6797), 2, + ACTIONS(6806), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6785), 4, + ACTIONS(6794), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6789), 4, + ACTIONS(6798), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, @@ -358650,38 +358650,38 @@ static const uint16_t ts_small_parse_table[] = { [140226] = 12, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6783), 1, + ACTIONS(6792), 1, anon_sym_DASH2, - ACTIONS(6795), 1, + ACTIONS(6804), 1, anon_sym_PLUS2, STATE(3721), 1, sym_comment, - ACTIONS(6773), 2, + ACTIONS(6782), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6781), 2, + ACTIONS(6790), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6787), 2, + ACTIONS(6796), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6793), 2, + ACTIONS(6802), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6797), 2, + ACTIONS(6806), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6785), 4, + ACTIONS(6794), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6789), 4, + ACTIONS(6798), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5205), 9, + ACTIONS(5214), 9, anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, @@ -358694,25 +358694,25 @@ static const uint16_t ts_small_parse_table[] = { [140282] = 9, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6783), 1, + ACTIONS(6792), 1, anon_sym_DASH2, - ACTIONS(6795), 1, + ACTIONS(6804), 1, anon_sym_PLUS2, STATE(3722), 1, sym_comment, - ACTIONS(5207), 2, + ACTIONS(5216), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6773), 2, + ACTIONS(6782), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6787), 2, + ACTIONS(6796), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6793), 2, + ACTIONS(6802), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5205), 19, + ACTIONS(5214), 19, anon_sym_in2, anon_sym_EQ_GT, anon_sym_and2, @@ -358735,48 +358735,48 @@ static const uint16_t ts_small_parse_table[] = { [140332] = 17, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6811), 1, + ACTIONS(6820), 1, anon_sym_DASH2, - ACTIONS(6817), 1, + ACTIONS(6826), 1, anon_sym_and2, - ACTIONS(6827), 1, + ACTIONS(6836), 1, anon_sym_PLUS2, - ACTIONS(6831), 1, + ACTIONS(6840), 1, anon_sym_bit_DASHand2, - ACTIONS(6833), 1, + ACTIONS(6842), 1, anon_sym_bit_DASHxor2, - ACTIONS(6835), 1, + ACTIONS(6844), 1, anon_sym_bit_DASHor2, STATE(3723), 1, sym_comment, - ACTIONS(6809), 2, + ACTIONS(6818), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6815), 2, + ACTIONS(6824), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6821), 2, + ACTIONS(6830), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6823), 2, + ACTIONS(6832), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6825), 2, + ACTIONS(6834), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6829), 2, + ACTIONS(6838), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5205), 3, + ACTIONS(5214), 3, anon_sym_LBRACE, anon_sym_xor2, anon_sym_or2, - ACTIONS(6813), 4, + ACTIONS(6822), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6819), 4, + ACTIONS(6828), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, @@ -358784,41 +358784,41 @@ static const uint16_t ts_small_parse_table[] = { [140398] = 13, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6783), 1, + ACTIONS(6792), 1, anon_sym_DASH2, - ACTIONS(6795), 1, + ACTIONS(6804), 1, anon_sym_PLUS2, STATE(3724), 1, sym_comment, - ACTIONS(6773), 2, + ACTIONS(6782), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6781), 2, + ACTIONS(6790), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6787), 2, + ACTIONS(6796), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6791), 2, + ACTIONS(6800), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6793), 2, + ACTIONS(6802), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6797), 2, + ACTIONS(6806), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6785), 4, + ACTIONS(6794), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6789), 4, + ACTIONS(6798), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5205), 7, + ACTIONS(5214), 7, anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, @@ -358829,43 +358829,43 @@ static const uint16_t ts_small_parse_table[] = { [140456] = 14, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6783), 1, + ACTIONS(6792), 1, anon_sym_DASH2, - ACTIONS(6795), 1, + ACTIONS(6804), 1, anon_sym_PLUS2, - ACTIONS(6799), 1, + ACTIONS(6808), 1, anon_sym_bit_DASHand2, STATE(3725), 1, sym_comment, - ACTIONS(6773), 2, + ACTIONS(6782), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6781), 2, + ACTIONS(6790), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6787), 2, + ACTIONS(6796), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6791), 2, + ACTIONS(6800), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6793), 2, + ACTIONS(6802), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6797), 2, + ACTIONS(6806), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6785), 4, + ACTIONS(6794), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6789), 4, + ACTIONS(6798), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5205), 6, + ACTIONS(5214), 6, anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, @@ -358875,45 +358875,45 @@ static const uint16_t ts_small_parse_table[] = { [140516] = 15, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6783), 1, + ACTIONS(6792), 1, anon_sym_DASH2, - ACTIONS(6795), 1, + ACTIONS(6804), 1, anon_sym_PLUS2, - ACTIONS(6799), 1, + ACTIONS(6808), 1, anon_sym_bit_DASHand2, - ACTIONS(6801), 1, + ACTIONS(6810), 1, anon_sym_bit_DASHxor2, STATE(3726), 1, sym_comment, - ACTIONS(6773), 2, + ACTIONS(6782), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6781), 2, + ACTIONS(6790), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6787), 2, + ACTIONS(6796), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6791), 2, + ACTIONS(6800), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6793), 2, + ACTIONS(6802), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6797), 2, + ACTIONS(6806), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6785), 4, + ACTIONS(6794), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6789), 4, + ACTIONS(6798), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5205), 5, + ACTIONS(5214), 5, anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, @@ -358924,20 +358924,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(3727), 1, sym_comment, - ACTIONS(6815), 2, + ACTIONS(6824), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6823), 2, + ACTIONS(6832), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6825), 2, + ACTIONS(6834), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5207), 3, + ACTIONS(5216), 3, anon_sym_GT2, anon_sym_LT2, anon_sym_PLUS2, - ACTIONS(5205), 20, + ACTIONS(5214), 20, anon_sym_DASH2, anon_sym_in2, anon_sym_LBRACE, @@ -358961,49 +358961,49 @@ static const uint16_t ts_small_parse_table[] = { [140624] = 18, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6811), 1, + ACTIONS(6820), 1, anon_sym_DASH2, - ACTIONS(6817), 1, + ACTIONS(6826), 1, anon_sym_and2, - ACTIONS(6827), 1, + ACTIONS(6836), 1, anon_sym_PLUS2, - ACTIONS(6831), 1, + ACTIONS(6840), 1, anon_sym_bit_DASHand2, - ACTIONS(6833), 1, + ACTIONS(6842), 1, anon_sym_bit_DASHxor2, - ACTIONS(6835), 1, + ACTIONS(6844), 1, anon_sym_bit_DASHor2, - ACTIONS(6837), 1, + ACTIONS(6846), 1, anon_sym_xor2, STATE(3728), 1, sym_comment, - ACTIONS(5205), 2, + ACTIONS(5214), 2, anon_sym_LBRACE, anon_sym_or2, - ACTIONS(6809), 2, + ACTIONS(6818), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6815), 2, + ACTIONS(6824), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6821), 2, + ACTIONS(6830), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6823), 2, + ACTIONS(6832), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6825), 2, + ACTIONS(6834), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6829), 2, + ACTIONS(6838), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6813), 4, + ACTIONS(6822), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6819), 4, + ACTIONS(6828), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, @@ -359011,38 +359011,38 @@ static const uint16_t ts_small_parse_table[] = { [140692] = 12, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6811), 1, + ACTIONS(6820), 1, anon_sym_DASH2, - ACTIONS(6827), 1, + ACTIONS(6836), 1, anon_sym_PLUS2, STATE(3729), 1, sym_comment, - ACTIONS(6809), 2, + ACTIONS(6818), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6815), 2, + ACTIONS(6824), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6823), 2, + ACTIONS(6832), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6825), 2, + ACTIONS(6834), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6829), 2, + ACTIONS(6838), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6813), 4, + ACTIONS(6822), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6819), 4, + ACTIONS(6828), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5205), 9, + ACTIONS(5214), 9, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, @@ -359055,33 +359055,33 @@ static const uint16_t ts_small_parse_table[] = { [140748] = 11, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6783), 1, + ACTIONS(6792), 1, anon_sym_DASH2, - ACTIONS(6795), 1, + ACTIONS(6804), 1, anon_sym_PLUS2, STATE(3730), 1, sym_comment, - ACTIONS(6773), 2, + ACTIONS(6782), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6781), 2, + ACTIONS(6790), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6787), 2, + ACTIONS(6796), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6793), 2, + ACTIONS(6802), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6797), 2, + ACTIONS(6806), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6789), 4, + ACTIONS(6798), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5205), 13, + ACTIONS(5214), 13, anon_sym_in2, anon_sym_EQ_GT, anon_sym_and2, @@ -359098,17 +359098,17 @@ static const uint16_t ts_small_parse_table[] = { [140802] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3186), 1, + ACTIONS(3193), 1, aux_sym_cmd_identifier_token41, STATE(3731), 1, sym_comment, - ACTIONS(3184), 5, + ACTIONS(3191), 5, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, - ACTIONS(3182), 23, + ACTIONS(3189), 23, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -359135,33 +359135,33 @@ static const uint16_t ts_small_parse_table[] = { [140844] = 11, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6811), 1, + ACTIONS(6820), 1, anon_sym_DASH2, - ACTIONS(6827), 1, + ACTIONS(6836), 1, anon_sym_PLUS2, STATE(3732), 1, sym_comment, - ACTIONS(6809), 2, + ACTIONS(6818), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6815), 2, + ACTIONS(6824), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6823), 2, + ACTIONS(6832), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6825), 2, + ACTIONS(6834), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6829), 2, + ACTIONS(6838), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6819), 4, + ACTIONS(6828), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5205), 13, + ACTIONS(5214), 13, anon_sym_in2, anon_sym_LBRACE, anon_sym_and2, @@ -359182,7 +359182,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(4893), 1, sym_redirection, - ACTIONS(6839), 8, + ACTIONS(6848), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -359191,7 +359191,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(6841), 8, + ACTIONS(6850), 8, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -359200,7 +359200,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - ACTIONS(6771), 12, + ACTIONS(6780), 12, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -359218,20 +359218,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(3734), 1, sym_comment, - ACTIONS(6773), 2, + ACTIONS(6782), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6787), 2, + ACTIONS(6796), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6793), 2, + ACTIONS(6802), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5207), 3, + ACTIONS(5216), 3, anon_sym_GT2, anon_sym_LT2, anon_sym_PLUS2, - ACTIONS(5205), 20, + ACTIONS(5214), 20, anon_sym_DASH2, anon_sym_in2, anon_sym_EQ_GT, @@ -359255,17 +359255,17 @@ static const uint16_t ts_small_parse_table[] = { [140988] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6847), 1, + ACTIONS(6856), 1, aux_sym_cmd_identifier_token41, STATE(3735), 1, sym_comment, - ACTIONS(6845), 5, + ACTIONS(6854), 5, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, - ACTIONS(6843), 23, + ACTIONS(6852), 23, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -359296,7 +359296,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(4820), 1, sym_redirection, - ACTIONS(6755), 8, + ACTIONS(6764), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -359305,7 +359305,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(6757), 8, + ACTIONS(6766), 8, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -359314,7 +359314,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - ACTIONS(6849), 12, + ACTIONS(6858), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -359334,7 +359334,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(4937), 1, sym_redirection, - ACTIONS(6839), 8, + ACTIONS(6848), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -359343,7 +359343,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(6841), 8, + ACTIONS(6850), 8, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -359352,7 +359352,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - ACTIONS(6753), 12, + ACTIONS(6762), 12, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -359372,7 +359372,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(4808), 1, sym_redirection, - ACTIONS(6755), 8, + ACTIONS(6764), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -359381,7 +359381,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(6757), 8, + ACTIONS(6766), 8, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -359390,7 +359390,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - ACTIONS(6851), 12, + ACTIONS(6860), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -359406,45 +359406,45 @@ static const uint16_t ts_small_parse_table[] = { [141162] = 15, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6811), 1, + ACTIONS(6820), 1, anon_sym_DASH2, - ACTIONS(6827), 1, + ACTIONS(6836), 1, anon_sym_PLUS2, - ACTIONS(6831), 1, + ACTIONS(6840), 1, anon_sym_bit_DASHand2, - ACTIONS(6833), 1, + ACTIONS(6842), 1, anon_sym_bit_DASHxor2, STATE(3739), 1, sym_comment, - ACTIONS(6809), 2, + ACTIONS(6818), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6815), 2, + ACTIONS(6824), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6821), 2, + ACTIONS(6830), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6823), 2, + ACTIONS(6832), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6825), 2, + ACTIONS(6834), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6829), 2, + ACTIONS(6838), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6813), 4, + ACTIONS(6822), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6819), 4, + ACTIONS(6828), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5205), 5, + ACTIONS(5214), 5, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, @@ -359453,17 +359453,17 @@ static const uint16_t ts_small_parse_table[] = { [141224] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6857), 1, + ACTIONS(6866), 1, aux_sym_cmd_identifier_token41, STATE(3740), 1, sym_comment, - ACTIONS(6855), 5, + ACTIONS(6864), 5, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, - ACTIONS(6853), 23, + ACTIONS(6862), 23, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -359490,17 +359490,17 @@ static const uint16_t ts_small_parse_table[] = { [141266] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6863), 1, + ACTIONS(6872), 1, aux_sym_cmd_identifier_token41, STATE(3741), 1, sym_comment, - ACTIONS(6861), 5, + ACTIONS(6870), 5, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, - ACTIONS(6859), 23, + ACTIONS(6868), 23, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -359527,41 +359527,41 @@ static const uint16_t ts_small_parse_table[] = { [141308] = 13, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6811), 1, + ACTIONS(6820), 1, anon_sym_DASH2, - ACTIONS(6827), 1, + ACTIONS(6836), 1, anon_sym_PLUS2, STATE(3742), 1, sym_comment, - ACTIONS(6809), 2, + ACTIONS(6818), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6815), 2, + ACTIONS(6824), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6821), 2, + ACTIONS(6830), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6823), 2, + ACTIONS(6832), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6825), 2, + ACTIONS(6834), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6829), 2, + ACTIONS(6838), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6813), 4, + ACTIONS(6822), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6819), 4, + ACTIONS(6828), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5205), 7, + ACTIONS(5214), 7, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, @@ -359572,17 +359572,17 @@ static const uint16_t ts_small_parse_table[] = { [141366] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6869), 1, + ACTIONS(6878), 1, aux_sym_cmd_identifier_token41, STATE(3743), 1, sym_comment, - ACTIONS(6867), 5, + ACTIONS(6876), 5, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, - ACTIONS(6865), 23, + ACTIONS(6874), 23, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -359609,43 +359609,43 @@ static const uint16_t ts_small_parse_table[] = { [141408] = 14, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6811), 1, + ACTIONS(6820), 1, anon_sym_DASH2, - ACTIONS(6827), 1, + ACTIONS(6836), 1, anon_sym_PLUS2, - ACTIONS(6831), 1, + ACTIONS(6840), 1, anon_sym_bit_DASHand2, STATE(3744), 1, sym_comment, - ACTIONS(6809), 2, + ACTIONS(6818), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6815), 2, + ACTIONS(6824), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6821), 2, + ACTIONS(6830), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6823), 2, + ACTIONS(6832), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6825), 2, + ACTIONS(6834), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6829), 2, + ACTIONS(6838), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6813), 4, + ACTIONS(6822), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6819), 4, + ACTIONS(6828), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5205), 6, + ACTIONS(5214), 6, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, @@ -359657,16 +359657,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(3745), 1, sym_comment, - ACTIONS(6823), 2, + ACTIONS(6832), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5207), 5, + ACTIONS(5216), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(5205), 22, + ACTIONS(5214), 22, anon_sym_DASH2, anon_sym_in2, anon_sym_LBRACE, @@ -359692,28 +359692,28 @@ static const uint16_t ts_small_parse_table[] = { [141510] = 10, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6783), 1, + ACTIONS(6792), 1, anon_sym_DASH2, - ACTIONS(6795), 1, + ACTIONS(6804), 1, anon_sym_PLUS2, STATE(3746), 1, sym_comment, - ACTIONS(5207), 2, + ACTIONS(5216), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6773), 2, + ACTIONS(6782), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6787), 2, + ACTIONS(6796), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6793), 2, + ACTIONS(6802), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6797), 2, + ACTIONS(6806), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5205), 17, + ACTIONS(5214), 17, anon_sym_in2, anon_sym_EQ_GT, anon_sym_and2, @@ -359734,17 +359734,17 @@ static const uint16_t ts_small_parse_table[] = { [141562] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3174), 1, + ACTIONS(3181), 1, aux_sym_cmd_identifier_token41, STATE(3747), 1, sym_comment, - ACTIONS(3172), 5, + ACTIONS(3179), 5, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, - ACTIONS(3170), 23, + ACTIONS(3177), 23, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -359771,47 +359771,47 @@ static const uint16_t ts_small_parse_table[] = { [141604] = 16, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6811), 1, + ACTIONS(6820), 1, anon_sym_DASH2, - ACTIONS(6827), 1, + ACTIONS(6836), 1, anon_sym_PLUS2, - ACTIONS(6831), 1, + ACTIONS(6840), 1, anon_sym_bit_DASHand2, - ACTIONS(6833), 1, + ACTIONS(6842), 1, anon_sym_bit_DASHxor2, - ACTIONS(6835), 1, + ACTIONS(6844), 1, anon_sym_bit_DASHor2, STATE(3748), 1, sym_comment, - ACTIONS(6809), 2, + ACTIONS(6818), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6815), 2, + ACTIONS(6824), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6821), 2, + ACTIONS(6830), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6823), 2, + ACTIONS(6832), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6825), 2, + ACTIONS(6834), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6829), 2, + ACTIONS(6838), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5205), 4, + ACTIONS(5214), 4, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - ACTIONS(6813), 4, + ACTIONS(6822), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6819), 4, + ACTIONS(6828), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, @@ -359819,28 +359819,28 @@ static const uint16_t ts_small_parse_table[] = { [141668] = 10, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6811), 1, + ACTIONS(6820), 1, anon_sym_DASH2, - ACTIONS(6827), 1, + ACTIONS(6836), 1, anon_sym_PLUS2, STATE(3749), 1, sym_comment, - ACTIONS(5207), 2, + ACTIONS(5216), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6815), 2, + ACTIONS(6824), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6823), 2, + ACTIONS(6832), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6825), 2, + ACTIONS(6834), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6829), 2, + ACTIONS(6838), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5205), 17, + ACTIONS(5214), 17, anon_sym_in2, anon_sym_LBRACE, anon_sym_and2, @@ -359861,25 +359861,25 @@ static const uint16_t ts_small_parse_table[] = { [141720] = 9, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6811), 1, + ACTIONS(6820), 1, anon_sym_DASH2, - ACTIONS(6827), 1, + ACTIONS(6836), 1, anon_sym_PLUS2, STATE(3750), 1, sym_comment, - ACTIONS(5207), 2, + ACTIONS(5216), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6815), 2, + ACTIONS(6824), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6823), 2, + ACTIONS(6832), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6825), 2, + ACTIONS(6834), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5205), 19, + ACTIONS(5214), 19, anon_sym_in2, anon_sym_LBRACE, anon_sym_and2, @@ -359906,21 +359906,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3418), 1, + ACTIONS(3427), 1, aux_sym__val_number_decimal_token3, - ACTIONS(3420), 1, + ACTIONS(3429), 1, aux_sym__val_number_decimal_token4, - ACTIONS(3476), 1, + ACTIONS(3485), 1, aux_sym_expr_unary_token1, - ACTIONS(5824), 1, + ACTIONS(5833), 1, anon_sym_LPAREN, - ACTIONS(6581), 1, + ACTIONS(6590), 1, sym_identifier, - ACTIONS(6587), 1, + ACTIONS(6596), 1, anon_sym_DOLLAR, - ACTIONS(6591), 1, + ACTIONS(6600), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6593), 1, + ACTIONS(6602), 1, aux_sym__val_number_decimal_token2, STATE(1638), 1, sym__val_number, @@ -359960,21 +359960,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(381), 1, anon_sym_DASH2, - ACTIONS(3418), 1, + ACTIONS(3427), 1, aux_sym__val_number_decimal_token3, - ACTIONS(3420), 1, + ACTIONS(3429), 1, aux_sym__val_number_decimal_token4, - ACTIONS(3444), 1, + ACTIONS(3453), 1, aux_sym_expr_unary_token1, - ACTIONS(6581), 1, + ACTIONS(6590), 1, sym_identifier, - ACTIONS(6585), 1, + ACTIONS(6594), 1, anon_sym_LPAREN, - ACTIONS(6587), 1, + ACTIONS(6596), 1, anon_sym_DOLLAR, - ACTIONS(6591), 1, + ACTIONS(6600), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6593), 1, + ACTIONS(6602), 1, aux_sym__val_number_decimal_token2, STATE(1638), 1, sym__val_number, @@ -360014,21 +360014,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(381), 1, anon_sym_DASH2, - ACTIONS(3418), 1, + ACTIONS(3427), 1, aux_sym__val_number_decimal_token3, - ACTIONS(3420), 1, + ACTIONS(3429), 1, aux_sym__val_number_decimal_token4, - ACTIONS(3444), 1, + ACTIONS(3453), 1, aux_sym_expr_unary_token1, - ACTIONS(6581), 1, + ACTIONS(6590), 1, sym_identifier, - ACTIONS(6585), 1, + ACTIONS(6594), 1, anon_sym_LPAREN, - ACTIONS(6587), 1, + ACTIONS(6596), 1, anon_sym_DOLLAR, - ACTIONS(6591), 1, + ACTIONS(6600), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6593), 1, + ACTIONS(6602), 1, aux_sym__val_number_decimal_token2, STATE(1638), 1, sym__val_number, @@ -360068,21 +360068,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(381), 1, anon_sym_DASH2, - ACTIONS(3418), 1, + ACTIONS(3427), 1, aux_sym__val_number_decimal_token3, - ACTIONS(3420), 1, + ACTIONS(3429), 1, aux_sym__val_number_decimal_token4, - ACTIONS(3444), 1, + ACTIONS(3453), 1, aux_sym_expr_unary_token1, - ACTIONS(6581), 1, + ACTIONS(6590), 1, sym_identifier, - ACTIONS(6585), 1, + ACTIONS(6594), 1, anon_sym_LPAREN, - ACTIONS(6587), 1, + ACTIONS(6596), 1, anon_sym_DOLLAR, - ACTIONS(6591), 1, + ACTIONS(6600), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6593), 1, + ACTIONS(6602), 1, aux_sym__val_number_decimal_token2, STATE(1638), 1, sym__val_number, @@ -360118,48 +360118,48 @@ static const uint16_t ts_small_parse_table[] = { [142078] = 18, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6376), 1, + ACTIONS(6385), 1, anon_sym_DASH2, - ACTIONS(6390), 1, + ACTIONS(6399), 1, anon_sym_PLUS2, - ACTIONS(6394), 1, + ACTIONS(6403), 1, anon_sym_bit_DASHand2, - ACTIONS(6396), 1, + ACTIONS(6405), 1, anon_sym_bit_DASHxor2, - ACTIONS(6398), 1, + ACTIONS(6407), 1, anon_sym_bit_DASHor2, - ACTIONS(6406), 1, + ACTIONS(6415), 1, anon_sym_and2, - ACTIONS(6408), 1, + ACTIONS(6417), 1, anon_sym_xor2, - ACTIONS(6871), 1, + ACTIONS(6880), 1, anon_sym_or2, STATE(3755), 1, sym_comment, - ACTIONS(6374), 2, + ACTIONS(6383), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6380), 2, + ACTIONS(6389), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6384), 2, + ACTIONS(6393), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6386), 2, + ACTIONS(6395), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6388), 2, + ACTIONS(6397), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6392), 2, + ACTIONS(6401), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6378), 4, + ACTIONS(6387), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6382), 4, + ACTIONS(6391), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, @@ -360167,48 +360167,48 @@ static const uint16_t ts_small_parse_table[] = { [142145] = 18, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5407), 1, + ACTIONS(5416), 1, anon_sym_DASH2, - ACTIONS(5415), 1, + ACTIONS(5424), 1, anon_sym_PLUS2, - ACTIONS(5427), 1, + ACTIONS(5436), 1, anon_sym_bit_DASHand2, - ACTIONS(5429), 1, + ACTIONS(5438), 1, anon_sym_bit_DASHxor2, - ACTIONS(5431), 1, + ACTIONS(5440), 1, anon_sym_bit_DASHor2, - ACTIONS(5433), 1, + ACTIONS(5442), 1, anon_sym_and2, - ACTIONS(5435), 1, + ACTIONS(5444), 1, anon_sym_xor2, - ACTIONS(6873), 1, + ACTIONS(6882), 1, anon_sym_or2, STATE(3756), 1, sym_comment, - ACTIONS(5409), 2, + ACTIONS(5418), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5411), 2, + ACTIONS(5420), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5413), 2, + ACTIONS(5422), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5417), 2, + ACTIONS(5426), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5419), 2, + ACTIONS(5428), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(5425), 2, + ACTIONS(5434), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(5421), 4, + ACTIONS(5430), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5423), 4, + ACTIONS(5432), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, @@ -360220,21 +360220,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(381), 1, anon_sym_DASH2, - ACTIONS(3418), 1, + ACTIONS(3427), 1, aux_sym__val_number_decimal_token3, - ACTIONS(3420), 1, + ACTIONS(3429), 1, aux_sym__val_number_decimal_token4, - ACTIONS(3444), 1, + ACTIONS(3453), 1, aux_sym_expr_unary_token1, - ACTIONS(6581), 1, + ACTIONS(6590), 1, sym_identifier, - ACTIONS(6585), 1, + ACTIONS(6594), 1, anon_sym_LPAREN, - ACTIONS(6587), 1, + ACTIONS(6596), 1, anon_sym_DOLLAR, - ACTIONS(6591), 1, + ACTIONS(6600), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6593), 1, + ACTIONS(6602), 1, aux_sym__val_number_decimal_token2, STATE(1638), 1, sym__val_number, @@ -360270,48 +360270,48 @@ static const uint16_t ts_small_parse_table[] = { [142289] = 18, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6258), 1, + ACTIONS(6267), 1, anon_sym_DASH2, - ACTIONS(6270), 1, + ACTIONS(6279), 1, anon_sym_PLUS2, - ACTIONS(6276), 1, + ACTIONS(6285), 1, anon_sym_bit_DASHand2, - ACTIONS(6278), 1, + ACTIONS(6287), 1, anon_sym_bit_DASHxor2, - ACTIONS(6368), 1, + ACTIONS(6377), 1, anon_sym_bit_DASHor2, - ACTIONS(6370), 1, + ACTIONS(6379), 1, anon_sym_and2, - ACTIONS(6372), 1, + ACTIONS(6381), 1, anon_sym_xor2, - ACTIONS(6875), 1, + ACTIONS(6884), 1, anon_sym_or2, STATE(3758), 1, sym_comment, - ACTIONS(6256), 2, + ACTIONS(6265), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6262), 2, + ACTIONS(6271), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6266), 2, + ACTIONS(6275), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6268), 2, + ACTIONS(6277), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6272), 2, + ACTIONS(6281), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6274), 2, + ACTIONS(6283), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6260), 4, + ACTIONS(6269), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6264), 4, + ACTIONS(6273), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, @@ -360323,21 +360323,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3418), 1, + ACTIONS(3427), 1, aux_sym__val_number_decimal_token3, - ACTIONS(3420), 1, + ACTIONS(3429), 1, aux_sym__val_number_decimal_token4, - ACTIONS(3476), 1, + ACTIONS(3485), 1, aux_sym_expr_unary_token1, - ACTIONS(5824), 1, + ACTIONS(5833), 1, anon_sym_LPAREN, - ACTIONS(6581), 1, + ACTIONS(6590), 1, sym_identifier, - ACTIONS(6587), 1, + ACTIONS(6596), 1, anon_sym_DOLLAR, - ACTIONS(6591), 1, + ACTIONS(6600), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6593), 1, + ACTIONS(6602), 1, aux_sym__val_number_decimal_token2, STATE(1638), 1, sym__val_number, @@ -360377,21 +360377,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3418), 1, + ACTIONS(3427), 1, aux_sym__val_number_decimal_token3, - ACTIONS(3420), 1, + ACTIONS(3429), 1, aux_sym__val_number_decimal_token4, - ACTIONS(3476), 1, + ACTIONS(3485), 1, aux_sym_expr_unary_token1, - ACTIONS(5824), 1, + ACTIONS(5833), 1, anon_sym_LPAREN, - ACTIONS(6581), 1, + ACTIONS(6590), 1, sym_identifier, - ACTIONS(6587), 1, + ACTIONS(6596), 1, anon_sym_DOLLAR, - ACTIONS(6591), 1, + ACTIONS(6600), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6593), 1, + ACTIONS(6602), 1, aux_sym__val_number_decimal_token2, STATE(1638), 1, sym__val_number, @@ -360431,21 +360431,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3418), 1, + ACTIONS(3427), 1, aux_sym__val_number_decimal_token3, - ACTIONS(3420), 1, + ACTIONS(3429), 1, aux_sym__val_number_decimal_token4, - ACTIONS(3476), 1, + ACTIONS(3485), 1, aux_sym_expr_unary_token1, - ACTIONS(5824), 1, + ACTIONS(5833), 1, anon_sym_LPAREN, - ACTIONS(6581), 1, + ACTIONS(6590), 1, sym_identifier, - ACTIONS(6587), 1, + ACTIONS(6596), 1, anon_sym_DOLLAR, - ACTIONS(6591), 1, + ACTIONS(6600), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6593), 1, + ACTIONS(6602), 1, aux_sym__val_number_decimal_token2, STATE(1638), 1, sym__val_number, @@ -360485,21 +360485,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(381), 1, anon_sym_DASH2, - ACTIONS(3418), 1, + ACTIONS(3427), 1, aux_sym__val_number_decimal_token3, - ACTIONS(3420), 1, + ACTIONS(3429), 1, aux_sym__val_number_decimal_token4, - ACTIONS(3444), 1, + ACTIONS(3453), 1, aux_sym_expr_unary_token1, - ACTIONS(6581), 1, + ACTIONS(6590), 1, sym_identifier, - ACTIONS(6585), 1, + ACTIONS(6594), 1, anon_sym_LPAREN, - ACTIONS(6587), 1, + ACTIONS(6596), 1, anon_sym_DOLLAR, - ACTIONS(6591), 1, + ACTIONS(6600), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6593), 1, + ACTIONS(6602), 1, aux_sym__val_number_decimal_token2, STATE(1638), 1, sym__val_number, @@ -360539,21 +360539,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3418), 1, + ACTIONS(3427), 1, aux_sym__val_number_decimal_token3, - ACTIONS(3420), 1, + ACTIONS(3429), 1, aux_sym__val_number_decimal_token4, - ACTIONS(3476), 1, + ACTIONS(3485), 1, aux_sym_expr_unary_token1, - ACTIONS(5824), 1, + ACTIONS(5833), 1, anon_sym_LPAREN, - ACTIONS(6581), 1, + ACTIONS(6590), 1, sym_identifier, - ACTIONS(6587), 1, + ACTIONS(6596), 1, anon_sym_DOLLAR, - ACTIONS(6591), 1, + ACTIONS(6600), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6593), 1, + ACTIONS(6602), 1, aux_sym__val_number_decimal_token2, STATE(1638), 1, sym__val_number, @@ -360591,23 +360591,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(3764), 1, sym_comment, - ACTIONS(6879), 2, + ACTIONS(6888), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6885), 2, + ACTIONS(6894), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6881), 4, + ACTIONS(6890), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6883), 4, + ACTIONS(6892), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6877), 16, + ACTIONS(6886), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -360627,48 +360627,48 @@ static const uint16_t ts_small_parse_table[] = { [142786] = 18, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6811), 1, + ACTIONS(6820), 1, anon_sym_DASH2, - ACTIONS(6817), 1, + ACTIONS(6826), 1, anon_sym_and2, - ACTIONS(6827), 1, + ACTIONS(6836), 1, anon_sym_PLUS2, - ACTIONS(6831), 1, + ACTIONS(6840), 1, anon_sym_bit_DASHand2, - ACTIONS(6833), 1, + ACTIONS(6842), 1, anon_sym_bit_DASHxor2, - ACTIONS(6835), 1, + ACTIONS(6844), 1, anon_sym_bit_DASHor2, - ACTIONS(6837), 1, + ACTIONS(6846), 1, anon_sym_xor2, - ACTIONS(6887), 1, + ACTIONS(6896), 1, anon_sym_or2, STATE(3765), 1, sym_comment, - ACTIONS(6809), 2, + ACTIONS(6818), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6815), 2, + ACTIONS(6824), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6821), 2, + ACTIONS(6830), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6823), 2, + ACTIONS(6832), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6825), 2, + ACTIONS(6834), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6829), 2, + ACTIONS(6838), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6813), 4, + ACTIONS(6822), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6819), 4, + ACTIONS(6828), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, @@ -360680,21 +360680,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(381), 1, anon_sym_DASH2, - ACTIONS(3418), 1, + ACTIONS(3427), 1, aux_sym__val_number_decimal_token3, - ACTIONS(3420), 1, + ACTIONS(3429), 1, aux_sym__val_number_decimal_token4, - ACTIONS(3444), 1, + ACTIONS(3453), 1, aux_sym_expr_unary_token1, - ACTIONS(6581), 1, + ACTIONS(6590), 1, sym_identifier, - ACTIONS(6585), 1, + ACTIONS(6594), 1, anon_sym_LPAREN, - ACTIONS(6587), 1, + ACTIONS(6596), 1, anon_sym_DOLLAR, - ACTIONS(6591), 1, + ACTIONS(6600), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6593), 1, + ACTIONS(6602), 1, aux_sym__val_number_decimal_token2, STATE(1638), 1, sym__val_number, @@ -360734,21 +360734,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3418), 1, + ACTIONS(3427), 1, aux_sym__val_number_decimal_token3, - ACTIONS(3420), 1, + ACTIONS(3429), 1, aux_sym__val_number_decimal_token4, - ACTIONS(3476), 1, + ACTIONS(3485), 1, aux_sym_expr_unary_token1, - ACTIONS(5824), 1, + ACTIONS(5833), 1, anon_sym_LPAREN, - ACTIONS(6581), 1, + ACTIONS(6590), 1, sym_identifier, - ACTIONS(6587), 1, + ACTIONS(6596), 1, anon_sym_DOLLAR, - ACTIONS(6591), 1, + ACTIONS(6600), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6593), 1, + ACTIONS(6602), 1, aux_sym__val_number_decimal_token2, STATE(1638), 1, sym__val_number, @@ -360784,48 +360784,48 @@ static const uint16_t ts_small_parse_table[] = { [143007] = 18, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5479), 1, + ACTIONS(5488), 1, anon_sym_DASH2, - ACTIONS(5487), 1, + ACTIONS(5496), 1, anon_sym_PLUS2, - ACTIONS(5499), 1, + ACTIONS(5508), 1, anon_sym_bit_DASHand2, - ACTIONS(5501), 1, + ACTIONS(5510), 1, anon_sym_bit_DASHxor2, - ACTIONS(5503), 1, + ACTIONS(5512), 1, anon_sym_bit_DASHor2, - ACTIONS(5505), 1, + ACTIONS(5514), 1, anon_sym_and2, - ACTIONS(5511), 1, + ACTIONS(5520), 1, anon_sym_xor2, - ACTIONS(6889), 1, + ACTIONS(6898), 1, anon_sym_or2, STATE(3768), 1, sym_comment, - ACTIONS(5481), 2, + ACTIONS(5490), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5483), 2, + ACTIONS(5492), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5485), 2, + ACTIONS(5494), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5489), 2, + ACTIONS(5498), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5491), 2, + ACTIONS(5500), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(5497), 2, + ACTIONS(5506), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(5493), 4, + ACTIONS(5502), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5495), 4, + ACTIONS(5504), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, @@ -360833,48 +360833,48 @@ static const uint16_t ts_small_parse_table[] = { [143074] = 18, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6783), 1, + ACTIONS(6792), 1, anon_sym_DASH2, - ACTIONS(6795), 1, + ACTIONS(6804), 1, anon_sym_PLUS2, - ACTIONS(6799), 1, + ACTIONS(6808), 1, anon_sym_bit_DASHand2, - ACTIONS(6801), 1, + ACTIONS(6810), 1, anon_sym_bit_DASHxor2, - ACTIONS(6803), 1, + ACTIONS(6812), 1, anon_sym_bit_DASHor2, - ACTIONS(6805), 1, + ACTIONS(6814), 1, anon_sym_and2, - ACTIONS(6807), 1, + ACTIONS(6816), 1, anon_sym_xor2, - ACTIONS(6891), 1, + ACTIONS(6900), 1, anon_sym_or2, STATE(3769), 1, sym_comment, - ACTIONS(6773), 2, + ACTIONS(6782), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6781), 2, + ACTIONS(6790), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6787), 2, + ACTIONS(6796), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6791), 2, + ACTIONS(6800), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6793), 2, + ACTIONS(6802), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6797), 2, + ACTIONS(6806), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6785), 4, + ACTIONS(6794), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6789), 4, + ACTIONS(6798), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, @@ -360918,23 +360918,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(3771), 1, sym_comment, - ACTIONS(6893), 2, + ACTIONS(6902), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6899), 2, + ACTIONS(6908), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6895), 4, + ACTIONS(6904), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6897), 4, + ACTIONS(6906), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6877), 15, + ACTIONS(6886), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -360955,21 +360955,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(1555), 1, aux_sym_unquoted_token2, - ACTIONS(4542), 1, + ACTIONS(4551), 1, anon_sym_LPAREN2, - ACTIONS(6901), 1, + ACTIONS(6910), 1, anon_sym_DOLLAR, - ACTIONS(6903), 1, + ACTIONS(6912), 1, anon_sym_DOT, - ACTIONS(6907), 1, + ACTIONS(6916), 1, aux_sym__immediate_decimal_token4, - ACTIONS(6909), 1, + ACTIONS(6918), 1, aux_sym__immediate_decimal_token5, STATE(3772), 1, sym_comment, STATE(3859), 1, sym__immediate_decimal, - ACTIONS(6905), 2, + ACTIONS(6914), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, STATE(3935), 2, @@ -360995,21 +360995,21 @@ static const uint16_t ts_small_parse_table[] = { [143277] = 11, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4542), 1, + ACTIONS(4551), 1, anon_sym_LPAREN2, - ACTIONS(4544), 1, + ACTIONS(4553), 1, anon_sym_DOT, - ACTIONS(4548), 1, + ACTIONS(4557), 1, aux_sym__immediate_decimal_token4, - ACTIONS(4550), 1, + ACTIONS(4559), 1, aux_sym__immediate_decimal_token5, - ACTIONS(6901), 1, + ACTIONS(6910), 1, anon_sym_DOLLAR, STATE(3773), 1, sym_comment, STATE(3934), 1, sym__immediate_decimal, - ACTIONS(4546), 2, + ACTIONS(4555), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, STATE(3933), 2, @@ -361037,19 +361037,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(1631), 1, aux_sym_unquoted_token2, - ACTIONS(4542), 1, + ACTIONS(4551), 1, anon_sym_LPAREN2, - ACTIONS(6901), 1, + ACTIONS(6910), 1, anon_sym_DOLLAR, - ACTIONS(6913), 1, + ACTIONS(6922), 1, aux_sym__immediate_decimal_token4, - ACTIONS(6915), 1, + ACTIONS(6924), 1, aux_sym__immediate_decimal_token5, STATE(3774), 1, sym_comment, STATE(3979), 1, sym__immediate_decimal, - ACTIONS(6911), 2, + ACTIONS(6920), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, STATE(2050), 2, @@ -361077,19 +361077,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(1555), 1, aux_sym_unquoted_token2, - ACTIONS(4542), 1, + ACTIONS(4551), 1, anon_sym_LPAREN2, - ACTIONS(6901), 1, + ACTIONS(6910), 1, anon_sym_DOLLAR, - ACTIONS(6913), 1, + ACTIONS(6922), 1, aux_sym__immediate_decimal_token4, - ACTIONS(6915), 1, + ACTIONS(6924), 1, aux_sym__immediate_decimal_token5, STATE(3775), 1, sym_comment, STATE(3977), 1, sym__immediate_decimal, - ACTIONS(6911), 2, + ACTIONS(6920), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, STATE(2035), 2, @@ -361117,21 +361117,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(1555), 1, aux_sym_unquoted_token2, - ACTIONS(4650), 1, + ACTIONS(4659), 1, anon_sym_LPAREN2, - ACTIONS(6478), 1, + ACTIONS(6487), 1, anon_sym_DOLLAR, - ACTIONS(6917), 1, + ACTIONS(6926), 1, anon_sym_DOT, - ACTIONS(6921), 1, + ACTIONS(6930), 1, aux_sym__immediate_decimal_token4, - ACTIONS(6923), 1, + ACTIONS(6932), 1, aux_sym__immediate_decimal_token5, STATE(3776), 1, sym_comment, STATE(3869), 1, sym__immediate_decimal, - ACTIONS(6919), 2, + ACTIONS(6928), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, STATE(3993), 2, @@ -361156,19 +361156,19 @@ static const uint16_t ts_small_parse_table[] = { [143483] = 10, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4542), 1, + ACTIONS(4551), 1, anon_sym_LPAREN2, - ACTIONS(4548), 1, + ACTIONS(4557), 1, aux_sym__immediate_decimal_token4, - ACTIONS(4550), 1, + ACTIONS(4559), 1, aux_sym__immediate_decimal_token5, - ACTIONS(6901), 1, + ACTIONS(6910), 1, anon_sym_DOLLAR, STATE(2034), 1, sym__immediate_decimal, STATE(3777), 1, sym_comment, - ACTIONS(4621), 2, + ACTIONS(4630), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, STATE(2033), 2, @@ -361194,19 +361194,19 @@ static const uint16_t ts_small_parse_table[] = { [143531] = 10, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4542), 1, + ACTIONS(4551), 1, anon_sym_LPAREN2, - ACTIONS(4548), 1, + ACTIONS(4557), 1, aux_sym__immediate_decimal_token4, - ACTIONS(4550), 1, + ACTIONS(4559), 1, aux_sym__immediate_decimal_token5, - ACTIONS(6901), 1, + ACTIONS(6910), 1, anon_sym_DOLLAR, STATE(2049), 1, sym__immediate_decimal, STATE(3778), 1, sym_comment, - ACTIONS(4621), 2, + ACTIONS(4630), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, STATE(2048), 2, @@ -361232,21 +361232,21 @@ static const uint16_t ts_small_parse_table[] = { [143579] = 11, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4650), 1, + ACTIONS(4659), 1, anon_sym_LPAREN2, - ACTIONS(4656), 1, + ACTIONS(4665), 1, aux_sym__immediate_decimal_token4, - ACTIONS(4658), 1, + ACTIONS(4667), 1, aux_sym__immediate_decimal_token5, - ACTIONS(4718), 1, + ACTIONS(4727), 1, anon_sym_DOT, - ACTIONS(6478), 1, + ACTIONS(6487), 1, anon_sym_DOLLAR, STATE(3779), 1, sym_comment, STATE(3992), 1, sym__immediate_decimal, - ACTIONS(4654), 2, + ACTIONS(4663), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, STATE(3991), 2, @@ -361277,17 +361277,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_unquoted_token2, ACTIONS(1807), 1, anon_sym_DOLLAR, - ACTIONS(6925), 1, + ACTIONS(6934), 1, anon_sym_LPAREN2, - ACTIONS(6927), 1, + ACTIONS(6936), 1, anon_sym_DOT, - ACTIONS(6929), 1, + ACTIONS(6938), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6931), 1, + ACTIONS(6940), 1, aux_sym__immediate_decimal_token3, - ACTIONS(6933), 1, + ACTIONS(6942), 1, aux_sym__immediate_decimal_token4, - ACTIONS(6935), 1, + ACTIONS(6944), 1, aux_sym__immediate_decimal_token5, STATE(3780), 1, sym_comment, @@ -361313,9 +361313,9 @@ static const uint16_t ts_small_parse_table[] = { [143685] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6937), 1, + ACTIONS(6946), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6939), 1, + ACTIONS(6948), 1, aux_sym__immediate_decimal_token2, STATE(3781), 1, sym_comment, @@ -361347,9 +361347,9 @@ static const uint16_t ts_small_parse_table[] = { [143725] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6941), 1, + ACTIONS(6950), 1, anon_sym_DOT, - ACTIONS(6943), 1, + ACTIONS(6952), 1, aux_sym__immediate_decimal_token2, STATE(3782), 1, sym_comment, @@ -361383,19 +361383,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(1555), 1, aux_sym_unquoted_token2, - ACTIONS(4650), 1, + ACTIONS(4659), 1, anon_sym_LPAREN2, - ACTIONS(6478), 1, + ACTIONS(6487), 1, anon_sym_DOLLAR, - ACTIONS(6947), 1, + ACTIONS(6956), 1, aux_sym__immediate_decimal_token4, - ACTIONS(6949), 1, + ACTIONS(6958), 1, aux_sym__immediate_decimal_token5, STATE(3783), 1, sym_comment, STATE(4050), 1, sym__immediate_decimal, - ACTIONS(6945), 2, + ACTIONS(6954), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, STATE(2527), 2, @@ -361422,19 +361422,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(1631), 1, aux_sym_unquoted_token2, - ACTIONS(4650), 1, + ACTIONS(4659), 1, anon_sym_LPAREN2, - ACTIONS(6478), 1, + ACTIONS(6487), 1, anon_sym_DOLLAR, - ACTIONS(6947), 1, + ACTIONS(6956), 1, aux_sym__immediate_decimal_token4, - ACTIONS(6949), 1, + ACTIONS(6958), 1, aux_sym__immediate_decimal_token5, STATE(3784), 1, sym_comment, STATE(4066), 1, sym__immediate_decimal, - ACTIONS(6945), 2, + ACTIONS(6954), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, STATE(2494), 2, @@ -361459,19 +361459,19 @@ static const uint16_t ts_small_parse_table[] = { [143865] = 10, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4542), 1, + ACTIONS(4551), 1, anon_sym_LPAREN2, - ACTIONS(4548), 1, + ACTIONS(4557), 1, aux_sym__immediate_decimal_token4, - ACTIONS(4550), 1, + ACTIONS(4559), 1, aux_sym__immediate_decimal_token5, - ACTIONS(6901), 1, + ACTIONS(6910), 1, anon_sym_DOLLAR, STATE(2045), 1, sym__immediate_decimal, STATE(3785), 1, sym_comment, - ACTIONS(4621), 2, + ACTIONS(4630), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, STATE(2044), 2, @@ -361497,19 +361497,19 @@ static const uint16_t ts_small_parse_table[] = { [143913] = 10, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4542), 1, + ACTIONS(4551), 1, anon_sym_LPAREN2, - ACTIONS(4548), 1, + ACTIONS(4557), 1, aux_sym__immediate_decimal_token4, - ACTIONS(4550), 1, + ACTIONS(4559), 1, aux_sym__immediate_decimal_token5, - ACTIONS(6901), 1, + ACTIONS(6910), 1, anon_sym_DOLLAR, STATE(2047), 1, sym__immediate_decimal, STATE(3786), 1, sym_comment, - ACTIONS(4621), 2, + ACTIONS(4630), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, STATE(2046), 2, @@ -361541,15 +361541,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_unquoted_token2, ACTIONS(1807), 1, anon_sym_DOLLAR, - ACTIONS(6925), 1, + ACTIONS(6934), 1, anon_sym_LPAREN2, - ACTIONS(6951), 1, + ACTIONS(6960), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6953), 1, + ACTIONS(6962), 1, aux_sym__immediate_decimal_token3, - ACTIONS(6955), 1, + ACTIONS(6964), 1, aux_sym__immediate_decimal_token4, - ACTIONS(6957), 1, + ACTIONS(6966), 1, aux_sym__immediate_decimal_token5, STATE(3787), 1, sym_comment, @@ -361579,17 +361579,17 @@ static const uint16_t ts_small_parse_table[] = { sym__space, ACTIONS(1807), 1, anon_sym_DOLLAR, - ACTIONS(6925), 1, + ACTIONS(6934), 1, anon_sym_LPAREN2, - ACTIONS(6929), 1, + ACTIONS(6938), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6931), 1, + ACTIONS(6940), 1, aux_sym__immediate_decimal_token3, - ACTIONS(6933), 1, + ACTIONS(6942), 1, aux_sym__immediate_decimal_token4, - ACTIONS(6935), 1, + ACTIONS(6944), 1, aux_sym__immediate_decimal_token5, - ACTIONS(6959), 1, + ACTIONS(6968), 1, anon_sym_DOT, STATE(3788), 1, sym_comment, @@ -361621,15 +361621,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_unquoted_token2, ACTIONS(1807), 1, anon_sym_DOLLAR, - ACTIONS(6925), 1, + ACTIONS(6934), 1, anon_sym_LPAREN2, - ACTIONS(6951), 1, + ACTIONS(6960), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6953), 1, + ACTIONS(6962), 1, aux_sym__immediate_decimal_token3, - ACTIONS(6955), 1, + ACTIONS(6964), 1, aux_sym__immediate_decimal_token4, - ACTIONS(6957), 1, + ACTIONS(6966), 1, aux_sym__immediate_decimal_token5, STATE(3789), 1, sym_comment, @@ -361655,9 +361655,9 @@ static const uint16_t ts_small_parse_table[] = { [144120] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6961), 1, + ACTIONS(6970), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6963), 1, + ACTIONS(6972), 1, aux_sym__immediate_decimal_token2, STATE(3790), 1, sym_comment, @@ -361688,19 +361688,19 @@ static const uint16_t ts_small_parse_table[] = { [144159] = 10, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4650), 1, + ACTIONS(4659), 1, anon_sym_LPAREN2, - ACTIONS(4656), 1, + ACTIONS(4665), 1, aux_sym__immediate_decimal_token4, - ACTIONS(4658), 1, + ACTIONS(4667), 1, aux_sym__immediate_decimal_token5, - ACTIONS(6478), 1, + ACTIONS(6487), 1, anon_sym_DOLLAR, STATE(2522), 1, sym__immediate_decimal, STATE(3791), 1, sym_comment, - ACTIONS(4720), 2, + ACTIONS(4729), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, STATE(2521), 2, @@ -361725,9 +361725,9 @@ static const uint16_t ts_small_parse_table[] = { [144206] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6965), 1, + ACTIONS(6974), 1, anon_sym_DOT, - ACTIONS(6967), 1, + ACTIONS(6976), 1, aux_sym__immediate_decimal_token2, STATE(3792), 1, sym_comment, @@ -361758,7 +361758,7 @@ static const uint16_t ts_small_parse_table[] = { [144245] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6943), 1, + ACTIONS(6952), 1, aux_sym__immediate_decimal_token2, STATE(3793), 1, sym_comment, @@ -361790,7 +361790,7 @@ static const uint16_t ts_small_parse_table[] = { [144282] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6969), 1, + ACTIONS(6978), 1, aux_sym__immediate_decimal_token2, STATE(3794), 1, sym_comment, @@ -361822,19 +361822,19 @@ static const uint16_t ts_small_parse_table[] = { [144319] = 10, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4650), 1, + ACTIONS(4659), 1, anon_sym_LPAREN2, - ACTIONS(4656), 1, + ACTIONS(4665), 1, aux_sym__immediate_decimal_token4, - ACTIONS(4658), 1, + ACTIONS(4667), 1, aux_sym__immediate_decimal_token5, - ACTIONS(6478), 1, + ACTIONS(6487), 1, anon_sym_DOLLAR, STATE(2476), 1, sym__immediate_decimal, STATE(3795), 1, sym_comment, - ACTIONS(4720), 2, + ACTIONS(4729), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, STATE(2474), 2, @@ -361859,19 +361859,19 @@ static const uint16_t ts_small_parse_table[] = { [144366] = 10, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4650), 1, + ACTIONS(4659), 1, anon_sym_LPAREN2, - ACTIONS(4656), 1, + ACTIONS(4665), 1, aux_sym__immediate_decimal_token4, - ACTIONS(4658), 1, + ACTIONS(4667), 1, aux_sym__immediate_decimal_token5, - ACTIONS(6478), 1, + ACTIONS(6487), 1, anon_sym_DOLLAR, STATE(2471), 1, sym__immediate_decimal, STATE(3796), 1, sym_comment, - ACTIONS(4720), 2, + ACTIONS(4729), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, STATE(2467), 2, @@ -361896,19 +361896,19 @@ static const uint16_t ts_small_parse_table[] = { [144413] = 10, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4650), 1, + ACTIONS(4659), 1, anon_sym_LPAREN2, - ACTIONS(4656), 1, + ACTIONS(4665), 1, aux_sym__immediate_decimal_token4, - ACTIONS(4658), 1, + ACTIONS(4667), 1, aux_sym__immediate_decimal_token5, - ACTIONS(6478), 1, + ACTIONS(6487), 1, anon_sym_DOLLAR, STATE(2492), 1, sym__immediate_decimal, STATE(3797), 1, sym_comment, - ACTIONS(4720), 2, + ACTIONS(4729), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, STATE(2478), 2, @@ -361935,7 +361935,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(935), 1, anon_sym_DOT_DOT2, - ACTIONS(4563), 1, + ACTIONS(4572), 1, anon_sym_DOT2, STATE(1414), 1, aux_sym_cell_path_repeat1, @@ -361968,21 +361968,21 @@ static const uint16_t ts_small_parse_table[] = { [144503] = 10, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4403), 1, + ACTIONS(4412), 1, anon_sym_LPAREN2, - ACTIONS(4801), 1, + ACTIONS(4810), 1, aux_sym_unquoted_token2, - ACTIONS(6971), 1, + ACTIONS(6980), 1, anon_sym_DOT_DOT2, - ACTIONS(6975), 1, + ACTIONS(6984), 1, sym_filesize_unit, - ACTIONS(6977), 1, + ACTIONS(6986), 1, sym_duration_unit, STATE(3799), 1, sym_comment, STATE(7276), 1, sym__expr_parenthesized_immediate, - ACTIONS(6973), 2, + ACTIONS(6982), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, ACTIONS(1693), 16, @@ -362009,17 +362009,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_unquoted_token2, ACTIONS(2033), 1, anon_sym_DOLLAR, - ACTIONS(6979), 1, + ACTIONS(6988), 1, anon_sym_LPAREN2, - ACTIONS(6981), 1, + ACTIONS(6990), 1, anon_sym_DOT, - ACTIONS(6983), 1, + ACTIONS(6992), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6985), 1, + ACTIONS(6994), 1, aux_sym__immediate_decimal_token3, - ACTIONS(6987), 1, + ACTIONS(6996), 1, aux_sym__immediate_decimal_token4, - ACTIONS(6989), 1, + ACTIONS(6998), 1, aux_sym__immediate_decimal_token5, STATE(3800), 1, sym_comment, @@ -362076,9 +362076,9 @@ static const uint16_t ts_small_parse_table[] = { [144639] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6991), 1, + ACTIONS(7000), 1, anon_sym_DOT, - ACTIONS(6993), 1, + ACTIONS(7002), 1, aux_sym__immediate_decimal_token2, STATE(3802), 1, sym_comment, @@ -362110,7 +362110,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(935), 1, anon_sym_DOT_DOT2, - ACTIONS(4910), 1, + ACTIONS(4919), 1, anon_sym_DOT2, STATE(1421), 1, sym_cell_path, @@ -362146,15 +362146,15 @@ static const uint16_t ts_small_parse_table[] = { sym__space, ACTIONS(1807), 1, anon_sym_DOLLAR, - ACTIONS(6925), 1, + ACTIONS(6934), 1, anon_sym_LPAREN2, - ACTIONS(6933), 1, + ACTIONS(6942), 1, aux_sym__immediate_decimal_token4, - ACTIONS(6935), 1, + ACTIONS(6944), 1, aux_sym__immediate_decimal_token5, - ACTIONS(6995), 1, + ACTIONS(7004), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6997), 1, + ACTIONS(7006), 1, aux_sym__immediate_decimal_token3, STATE(3804), 1, sym_comment, @@ -362184,15 +362184,15 @@ static const uint16_t ts_small_parse_table[] = { sym__space, ACTIONS(1807), 1, anon_sym_DOLLAR, - ACTIONS(6925), 1, + ACTIONS(6934), 1, anon_sym_LPAREN2, - ACTIONS(6933), 1, + ACTIONS(6942), 1, aux_sym__immediate_decimal_token4, - ACTIONS(6935), 1, + ACTIONS(6944), 1, aux_sym__immediate_decimal_token5, - ACTIONS(6995), 1, + ACTIONS(7004), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6997), 1, + ACTIONS(7006), 1, aux_sym__immediate_decimal_token3, STATE(3805), 1, sym_comment, @@ -362222,15 +362222,15 @@ static const uint16_t ts_small_parse_table[] = { sym__space, ACTIONS(1807), 1, anon_sym_DOLLAR, - ACTIONS(6925), 1, + ACTIONS(6934), 1, anon_sym_LPAREN2, - ACTIONS(6933), 1, + ACTIONS(6942), 1, aux_sym__immediate_decimal_token4, - ACTIONS(6935), 1, + ACTIONS(6944), 1, aux_sym__immediate_decimal_token5, - ACTIONS(6995), 1, + ACTIONS(7004), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6997), 1, + ACTIONS(7006), 1, aux_sym__immediate_decimal_token3, STATE(3806), 1, sym_comment, @@ -362256,7 +362256,7 @@ static const uint16_t ts_small_parse_table[] = { [144869] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6999), 1, + ACTIONS(7008), 1, aux_sym__immediate_decimal_token2, STATE(3807), 1, sym_comment, @@ -362321,15 +362321,15 @@ static const uint16_t ts_small_parse_table[] = { sym__space, ACTIONS(1807), 1, anon_sym_DOLLAR, - ACTIONS(6925), 1, + ACTIONS(6934), 1, anon_sym_LPAREN2, - ACTIONS(6933), 1, + ACTIONS(6942), 1, aux_sym__immediate_decimal_token4, - ACTIONS(6935), 1, + ACTIONS(6944), 1, aux_sym__immediate_decimal_token5, - ACTIONS(6995), 1, + ACTIONS(7004), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6997), 1, + ACTIONS(7006), 1, aux_sym__immediate_decimal_token3, STATE(3809), 1, sym_comment, @@ -362355,9 +362355,9 @@ static const uint16_t ts_small_parse_table[] = { [144989] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7001), 1, + ACTIONS(7010), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7003), 1, + ACTIONS(7012), 1, aux_sym__immediate_decimal_token2, STATE(3810), 1, sym_comment, @@ -362387,9 +362387,9 @@ static const uint16_t ts_small_parse_table[] = { [145027] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7005), 1, + ACTIONS(7014), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7007), 1, + ACTIONS(7016), 1, aux_sym__immediate_decimal_token2, STATE(3811), 1, sym_comment, @@ -362423,15 +362423,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_unquoted_token2, ACTIONS(2033), 1, anon_sym_DOLLAR, - ACTIONS(6979), 1, + ACTIONS(6988), 1, anon_sym_LPAREN2, - ACTIONS(7009), 1, + ACTIONS(7018), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7011), 1, + ACTIONS(7020), 1, aux_sym__immediate_decimal_token3, - ACTIONS(7013), 1, + ACTIONS(7022), 1, aux_sym__immediate_decimal_token4, - ACTIONS(7015), 1, + ACTIONS(7024), 1, aux_sym__immediate_decimal_token5, STATE(3812), 1, sym_comment, @@ -362488,9 +362488,9 @@ static const uint16_t ts_small_parse_table[] = { [145151] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7017), 1, + ACTIONS(7026), 1, anon_sym_DOT, - ACTIONS(7019), 1, + ACTIONS(7028), 1, aux_sym__immediate_decimal_token2, STATE(3814), 1, sym_comment, @@ -362524,15 +362524,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_unquoted_token2, ACTIONS(2033), 1, anon_sym_DOLLAR, - ACTIONS(6979), 1, + ACTIONS(6988), 1, anon_sym_LPAREN2, - ACTIONS(7009), 1, + ACTIONS(7018), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7011), 1, + ACTIONS(7020), 1, aux_sym__immediate_decimal_token3, - ACTIONS(7013), 1, + ACTIONS(7022), 1, aux_sym__immediate_decimal_token4, - ACTIONS(7015), 1, + ACTIONS(7024), 1, aux_sym__immediate_decimal_token5, STATE(3815), 1, sym_comment, @@ -362559,21 +362559,21 @@ static const uint16_t ts_small_parse_table[] = { [145241] = 10, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4403), 1, + ACTIONS(4412), 1, anon_sym_LPAREN2, - ACTIONS(4904), 1, + ACTIONS(4913), 1, aux_sym_unquoted_token2, - ACTIONS(7021), 1, + ACTIONS(7030), 1, anon_sym_DOT_DOT2, - ACTIONS(7025), 1, + ACTIONS(7034), 1, sym_filesize_unit, - ACTIONS(7027), 1, + ACTIONS(7036), 1, sym_duration_unit, STATE(3816), 1, sym_comment, STATE(7290), 1, sym__expr_parenthesized_immediate, - ACTIONS(7023), 2, + ACTIONS(7032), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, ACTIONS(1693), 15, @@ -362595,7 +362595,7 @@ static const uint16_t ts_small_parse_table[] = { [145287] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6967), 1, + ACTIONS(6976), 1, aux_sym__immediate_decimal_token2, STATE(3817), 1, sym_comment, @@ -362628,17 +362628,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(2033), 1, anon_sym_DOLLAR, - ACTIONS(6979), 1, + ACTIONS(6988), 1, anon_sym_LPAREN2, - ACTIONS(6983), 1, + ACTIONS(6992), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6985), 1, + ACTIONS(6994), 1, aux_sym__immediate_decimal_token3, - ACTIONS(6987), 1, + ACTIONS(6996), 1, aux_sym__immediate_decimal_token4, - ACTIONS(6989), 1, + ACTIONS(6998), 1, aux_sym__immediate_decimal_token5, - ACTIONS(7029), 1, + ACTIONS(7038), 1, anon_sym_DOT, STATE(3818), 1, sym_comment, @@ -362697,15 +362697,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(2033), 1, anon_sym_DOLLAR, - ACTIONS(6979), 1, + ACTIONS(6988), 1, anon_sym_LPAREN2, - ACTIONS(6987), 1, + ACTIONS(6996), 1, aux_sym__immediate_decimal_token4, - ACTIONS(6989), 1, + ACTIONS(6998), 1, aux_sym__immediate_decimal_token5, - ACTIONS(7031), 1, + ACTIONS(7040), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7033), 1, + ACTIONS(7042), 1, aux_sym__immediate_decimal_token3, STATE(3820), 1, sym_comment, @@ -362732,9 +362732,9 @@ static const uint16_t ts_small_parse_table[] = { [145458] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7035), 1, + ACTIONS(7044), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7037), 1, + ACTIONS(7046), 1, aux_sym__immediate_decimal_token2, STATE(3821), 1, sym_comment, @@ -362821,9 +362821,9 @@ static const uint16_t ts_small_parse_table[] = { [145561] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7039), 1, + ACTIONS(7048), 1, anon_sym_DOT, - ACTIONS(7041), 1, + ACTIONS(7050), 1, aux_sym__immediate_decimal_token2, STATE(3824), 1, sym_comment, @@ -362852,7 +362852,7 @@ static const uint16_t ts_small_parse_table[] = { [145598] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7019), 1, + ACTIONS(7028), 1, aux_sym__immediate_decimal_token2, STATE(3825), 1, sym_comment, @@ -362884,21 +362884,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(1693), 1, sym__space, - ACTIONS(4403), 1, + ACTIONS(4412), 1, anon_sym_LPAREN2, - ACTIONS(7043), 1, + ACTIONS(7052), 1, anon_sym_DOT_DOT2, - ACTIONS(7047), 1, + ACTIONS(7056), 1, sym_filesize_unit, - ACTIONS(7049), 1, + ACTIONS(7058), 1, sym_duration_unit, - ACTIONS(7051), 1, + ACTIONS(7060), 1, aux_sym_unquoted_token2, STATE(3826), 1, sym_comment, STATE(7307), 1, sym__expr_parenthesized_immediate, - ACTIONS(7045), 2, + ACTIONS(7054), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, ACTIONS(1681), 13, @@ -362918,7 +362918,7 @@ static const uint16_t ts_small_parse_table[] = { [145680] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7053), 1, + ACTIONS(7062), 1, aux_sym__immediate_decimal_token2, STATE(3827), 1, sym_comment, @@ -362948,9 +362948,9 @@ static const uint16_t ts_small_parse_table[] = { [145715] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7055), 1, + ACTIONS(7064), 1, anon_sym_DOT, - ACTIONS(7057), 1, + ACTIONS(7066), 1, aux_sym__immediate_decimal_token2, STATE(3828), 1, sym_comment, @@ -363010,15 +363010,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(2033), 1, anon_sym_DOLLAR, - ACTIONS(6979), 1, + ACTIONS(6988), 1, anon_sym_LPAREN2, - ACTIONS(6987), 1, + ACTIONS(6996), 1, aux_sym__immediate_decimal_token4, - ACTIONS(6989), 1, + ACTIONS(6998), 1, aux_sym__immediate_decimal_token5, - ACTIONS(7031), 1, + ACTIONS(7040), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7033), 1, + ACTIONS(7042), 1, aux_sym__immediate_decimal_token3, STATE(3830), 1, sym_comment, @@ -363047,15 +363047,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(2033), 1, anon_sym_DOLLAR, - ACTIONS(6979), 1, + ACTIONS(6988), 1, anon_sym_LPAREN2, - ACTIONS(6987), 1, + ACTIONS(6996), 1, aux_sym__immediate_decimal_token4, - ACTIONS(6989), 1, + ACTIONS(6998), 1, aux_sym__immediate_decimal_token5, - ACTIONS(7031), 1, + ACTIONS(7040), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7033), 1, + ACTIONS(7042), 1, aux_sym__immediate_decimal_token3, STATE(3831), 1, sym_comment, @@ -363111,7 +363111,7 @@ static const uint16_t ts_small_parse_table[] = { [145916] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7059), 1, + ACTIONS(7068), 1, aux_sym__immediate_decimal_token2, STATE(3833), 1, sym_comment, @@ -363141,7 +363141,7 @@ static const uint16_t ts_small_parse_table[] = { [145951] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6993), 1, + ACTIONS(7002), 1, aux_sym__immediate_decimal_token2, STATE(3834), 1, sym_comment, @@ -363173,15 +363173,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(2033), 1, anon_sym_DOLLAR, - ACTIONS(6979), 1, + ACTIONS(6988), 1, anon_sym_LPAREN2, - ACTIONS(6987), 1, + ACTIONS(6996), 1, aux_sym__immediate_decimal_token4, - ACTIONS(6989), 1, + ACTIONS(6998), 1, aux_sym__immediate_decimal_token5, - ACTIONS(7031), 1, + ACTIONS(7040), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7033), 1, + ACTIONS(7042), 1, aux_sym__immediate_decimal_token3, STATE(3835), 1, sym_comment, @@ -363208,9 +363208,9 @@ static const uint16_t ts_small_parse_table[] = { [146035] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7061), 1, + ACTIONS(7070), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7063), 1, + ACTIONS(7072), 1, aux_sym__immediate_decimal_token2, STATE(3836), 1, sym_comment, @@ -363239,7 +363239,7 @@ static const uint16_t ts_small_parse_table[] = { [146072] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7065), 1, + ACTIONS(7074), 1, sym__newline, STATE(3837), 2, sym_comment, @@ -363271,19 +363271,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(1555), 1, aux_sym__unquoted_in_record_token2, - ACTIONS(7068), 1, + ACTIONS(7077), 1, anon_sym_DOLLAR, - ACTIONS(7070), 1, + ACTIONS(7079), 1, anon_sym_LPAREN2, - ACTIONS(7072), 1, + ACTIONS(7081), 1, anon_sym_DOT, - ACTIONS(7074), 1, + ACTIONS(7083), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7076), 1, + ACTIONS(7085), 1, aux_sym__immediate_decimal_token3, - ACTIONS(7078), 1, + ACTIONS(7087), 1, aux_sym__immediate_decimal_token4, - ACTIONS(7080), 1, + ACTIONS(7089), 1, aux_sym__immediate_decimal_token5, STATE(3838), 1, sym_comment, @@ -363364,7 +363364,7 @@ static const uint16_t ts_small_parse_table[] = { [146224] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7041), 1, + ACTIONS(7050), 1, aux_sym__immediate_decimal_token2, STATE(3841), 1, sym_comment, @@ -363393,9 +363393,9 @@ static const uint16_t ts_small_parse_table[] = { [146258] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7082), 1, + ACTIONS(7091), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7084), 1, + ACTIONS(7093), 1, aux_sym__immediate_decimal_token2, STATE(3842), 1, sym_comment, @@ -363423,7 +363423,7 @@ static const uint16_t ts_small_parse_table[] = { [146294] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7086), 1, + ACTIONS(7095), 1, aux_sym__immediate_decimal_token2, STATE(3843), 1, sym_comment, @@ -363452,9 +363452,9 @@ static const uint16_t ts_small_parse_table[] = { [146328] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7088), 1, + ACTIONS(7097), 1, anon_sym_DOT, - ACTIONS(7090), 1, + ACTIONS(7099), 1, aux_sym__immediate_decimal_token2, STATE(3844), 1, sym_comment, @@ -363482,7 +363482,7 @@ static const uint16_t ts_small_parse_table[] = { [146364] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7092), 1, + ACTIONS(7101), 1, anon_sym_DOT2, STATE(3845), 1, sym_comment, @@ -363516,17 +363516,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(1555), 1, aux_sym__unquoted_in_record_token2, - ACTIONS(7068), 1, + ACTIONS(7077), 1, anon_sym_DOLLAR, - ACTIONS(7070), 1, + ACTIONS(7079), 1, anon_sym_LPAREN2, - ACTIONS(7094), 1, + ACTIONS(7103), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7096), 1, + ACTIONS(7105), 1, aux_sym__immediate_decimal_token3, - ACTIONS(7098), 1, + ACTIONS(7107), 1, aux_sym__immediate_decimal_token4, - ACTIONS(7100), 1, + ACTIONS(7109), 1, aux_sym__immediate_decimal_token5, STATE(3846), 1, sym_comment, @@ -363551,19 +363551,19 @@ static const uint16_t ts_small_parse_table[] = { [146454] = 13, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7068), 1, + ACTIONS(7077), 1, anon_sym_DOLLAR, - ACTIONS(7070), 1, + ACTIONS(7079), 1, anon_sym_LPAREN2, - ACTIONS(7074), 1, + ACTIONS(7083), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7076), 1, + ACTIONS(7085), 1, aux_sym__immediate_decimal_token3, - ACTIONS(7078), 1, + ACTIONS(7087), 1, aux_sym__immediate_decimal_token4, - ACTIONS(7080), 1, + ACTIONS(7089), 1, aux_sym__immediate_decimal_token5, - ACTIONS(7102), 1, + ACTIONS(7111), 1, anon_sym_DOT, STATE(3847), 1, sym_comment, @@ -363704,11 +363704,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_unquoted_token2, ACTIONS(1788), 1, anon_sym_LPAREN2, - ACTIONS(7104), 1, + ACTIONS(7113), 1, anon_sym_DOT_DOT2, STATE(3852), 1, sym_comment, - ACTIONS(7106), 2, + ACTIONS(7115), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, ACTIONS(1794), 16, @@ -363731,7 +363731,7 @@ static const uint16_t ts_small_parse_table[] = { [146670] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7092), 1, + ACTIONS(7101), 1, anon_sym_DOT2, STATE(3853), 1, sym_comment, @@ -363765,17 +363765,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(1631), 1, aux_sym__unquoted_in_record_token2, - ACTIONS(7068), 1, + ACTIONS(7077), 1, anon_sym_DOLLAR, - ACTIONS(7070), 1, + ACTIONS(7079), 1, anon_sym_LPAREN2, - ACTIONS(7094), 1, + ACTIONS(7103), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7096), 1, + ACTIONS(7105), 1, aux_sym__immediate_decimal_token3, - ACTIONS(7098), 1, + ACTIONS(7107), 1, aux_sym__immediate_decimal_token4, - ACTIONS(7100), 1, + ACTIONS(7109), 1, aux_sym__immediate_decimal_token5, STATE(3854), 1, sym_comment, @@ -363800,9 +363800,9 @@ static const uint16_t ts_small_parse_table[] = { [146760] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7108), 1, + ACTIONS(7117), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7110), 1, + ACTIONS(7119), 1, aux_sym__immediate_decimal_token2, STATE(3855), 1, sym_comment, @@ -363858,7 +363858,7 @@ static const uint16_t ts_small_parse_table[] = { [146828] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7112), 1, + ACTIONS(7121), 1, aux_sym__immediate_decimal_token2, STATE(3857), 1, sym_comment, @@ -363919,11 +363919,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, ACTIONS(1875), 1, aux_sym_unquoted_token2, - ACTIONS(7114), 1, + ACTIONS(7123), 1, anon_sym_DOT_DOT2, STATE(3859), 1, sym_comment, - ACTIONS(7116), 2, + ACTIONS(7125), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, ACTIONS(1873), 16, @@ -363946,7 +363946,7 @@ static const uint16_t ts_small_parse_table[] = { [146932] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7092), 1, + ACTIONS(7101), 1, anon_sym_DOT2, STATE(3860), 1, sym_comment, @@ -363978,9 +363978,9 @@ static const uint16_t ts_small_parse_table[] = { [146972] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7118), 1, + ACTIONS(7127), 1, anon_sym_DOT, - ACTIONS(7120), 1, + ACTIONS(7129), 1, aux_sym__immediate_decimal_token2, STATE(3861), 1, sym_comment, @@ -364008,7 +364008,7 @@ static const uint16_t ts_small_parse_table[] = { [147008] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7057), 1, + ACTIONS(7066), 1, aux_sym__immediate_decimal_token2, STATE(3862), 1, sym_comment, @@ -364065,15 +364065,15 @@ static const uint16_t ts_small_parse_table[] = { [147074] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4403), 1, + ACTIONS(4412), 1, anon_sym_LPAREN2, - ACTIONS(7122), 1, + ACTIONS(7131), 1, anon_sym_DOT_DOT2, - ACTIONS(7126), 1, + ACTIONS(7135), 1, sym_filesize_unit, - ACTIONS(7128), 1, + ACTIONS(7137), 1, sym_duration_unit, - ACTIONS(7130), 1, + ACTIONS(7139), 1, aux_sym_unquoted_token2, STATE(3864), 1, sym_comment, @@ -364082,7 +364082,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1693), 2, ts_builtin_sym_end, sym__space, - ACTIONS(7124), 2, + ACTIONS(7133), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, ACTIONS(1681), 11, @@ -364100,17 +364100,17 @@ static const uint16_t ts_small_parse_table[] = { [147120] = 12, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7068), 1, + ACTIONS(7077), 1, anon_sym_DOLLAR, - ACTIONS(7070), 1, + ACTIONS(7079), 1, anon_sym_LPAREN2, - ACTIONS(7078), 1, + ACTIONS(7087), 1, aux_sym__immediate_decimal_token4, - ACTIONS(7080), 1, + ACTIONS(7089), 1, aux_sym__immediate_decimal_token5, - ACTIONS(7132), 1, + ACTIONS(7141), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7134), 1, + ACTIONS(7143), 1, aux_sym__immediate_decimal_token3, STATE(3865), 1, sym_comment, @@ -364135,7 +364135,7 @@ static const uint16_t ts_small_parse_table[] = { [147167] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7136), 1, + ACTIONS(7145), 1, anon_sym_DOT2, STATE(3866), 1, sym_comment, @@ -364197,11 +364197,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_unquoted_token2, ACTIONS(1788), 1, anon_sym_LPAREN2, - ACTIONS(7138), 1, + ACTIONS(7147), 1, anon_sym_DOT_DOT2, STATE(3868), 1, sym_comment, - ACTIONS(7140), 2, + ACTIONS(7149), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, ACTIONS(1794), 15, @@ -364227,11 +364227,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, ACTIONS(1875), 1, aux_sym_unquoted_token2, - ACTIONS(7142), 1, + ACTIONS(7151), 1, anon_sym_DOT_DOT2, STATE(3869), 1, sym_comment, - ACTIONS(7144), 2, + ACTIONS(7153), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, ACTIONS(1873), 15, @@ -364255,9 +364255,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(1757), 1, aux_sym_unquoted_token2, - ACTIONS(7146), 1, + ACTIONS(7155), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7148), 1, + ACTIONS(7157), 1, aux_sym__immediate_decimal_token2, STATE(3870), 1, sym_comment, @@ -364309,7 +364309,7 @@ static const uint16_t ts_small_parse_table[] = { [147377] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7092), 1, + ACTIONS(7101), 1, anon_sym_DOT2, STATE(3872), 1, sym_comment, @@ -364366,9 +364366,9 @@ static const uint16_t ts_small_parse_table[] = { [147445] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7150), 1, + ACTIONS(7159), 1, anon_sym_DOT, - ACTIONS(7152), 1, + ACTIONS(7161), 1, aux_sym__immediate_decimal_token2, STATE(3874), 1, sym_comment, @@ -364422,7 +364422,7 @@ static const uint16_t ts_small_parse_table[] = { [147511] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7136), 1, + ACTIONS(7145), 1, anon_sym_DOT2, STATE(3876), 1, sym_comment, @@ -364455,9 +364455,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(1725), 1, aux_sym_unquoted_token2, - ACTIONS(7154), 1, + ACTIONS(7163), 1, anon_sym_DOT, - ACTIONS(7156), 1, + ACTIONS(7165), 1, aux_sym__immediate_decimal_token2, STATE(3877), 1, sym_comment, @@ -364482,7 +364482,7 @@ static const uint16_t ts_small_parse_table[] = { [147585] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7158), 1, + ACTIONS(7167), 1, aux_sym__immediate_decimal_token2, STATE(3878), 1, sym_comment, @@ -364537,9 +364537,9 @@ static const uint16_t ts_small_parse_table[] = { [147649] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7160), 1, + ACTIONS(7169), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7162), 1, + ACTIONS(7171), 1, aux_sym__immediate_decimal_token2, STATE(3880), 1, sym_comment, @@ -364568,17 +364568,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(1693), 1, sym__space, - ACTIONS(4596), 1, + ACTIONS(4605), 1, anon_sym_DOT_DOT2, - ACTIONS(7047), 1, + ACTIONS(7056), 1, sym_filesize_unit, - ACTIONS(7049), 1, + ACTIONS(7058), 1, sym_duration_unit, - ACTIONS(7051), 1, + ACTIONS(7060), 1, aux_sym_unquoted_token2, STATE(3881), 1, sym_comment, - ACTIONS(4598), 2, + ACTIONS(4607), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, ACTIONS(1681), 13, @@ -364598,7 +364598,7 @@ static const uint16_t ts_small_parse_table[] = { [147725] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7164), 1, + ACTIONS(7173), 1, aux_sym__immediate_decimal_token2, STATE(3882), 1, sym_comment, @@ -364626,17 +364626,17 @@ static const uint16_t ts_small_parse_table[] = { [147758] = 12, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7068), 1, + ACTIONS(7077), 1, anon_sym_DOLLAR, - ACTIONS(7070), 1, + ACTIONS(7079), 1, anon_sym_LPAREN2, - ACTIONS(7078), 1, + ACTIONS(7087), 1, aux_sym__immediate_decimal_token4, - ACTIONS(7080), 1, + ACTIONS(7089), 1, aux_sym__immediate_decimal_token5, - ACTIONS(7132), 1, + ACTIONS(7141), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7134), 1, + ACTIONS(7143), 1, aux_sym__immediate_decimal_token3, STATE(3883), 1, sym_comment, @@ -364661,17 +364661,17 @@ static const uint16_t ts_small_parse_table[] = { [147805] = 12, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7068), 1, + ACTIONS(7077), 1, anon_sym_DOLLAR, - ACTIONS(7070), 1, + ACTIONS(7079), 1, anon_sym_LPAREN2, - ACTIONS(7078), 1, + ACTIONS(7087), 1, aux_sym__immediate_decimal_token4, - ACTIONS(7080), 1, + ACTIONS(7089), 1, aux_sym__immediate_decimal_token5, - ACTIONS(7132), 1, + ACTIONS(7141), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7134), 1, + ACTIONS(7143), 1, aux_sym__immediate_decimal_token3, STATE(3884), 1, sym_comment, @@ -364750,7 +364750,7 @@ static const uint16_t ts_small_parse_table[] = { [147914] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7166), 1, + ACTIONS(7175), 1, anon_sym_DOT2, STATE(3975), 1, sym_path, @@ -364806,17 +364806,17 @@ static const uint16_t ts_small_parse_table[] = { [147980] = 12, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7068), 1, + ACTIONS(7077), 1, anon_sym_DOLLAR, - ACTIONS(7070), 1, + ACTIONS(7079), 1, anon_sym_LPAREN2, - ACTIONS(7078), 1, + ACTIONS(7087), 1, aux_sym__immediate_decimal_token4, - ACTIONS(7080), 1, + ACTIONS(7089), 1, aux_sym__immediate_decimal_token5, - ACTIONS(7132), 1, + ACTIONS(7141), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7134), 1, + ACTIONS(7143), 1, aux_sym__immediate_decimal_token3, STATE(3889), 1, sym_comment, @@ -364841,7 +364841,7 @@ static const uint16_t ts_small_parse_table[] = { [148027] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7120), 1, + ACTIONS(7129), 1, aux_sym__immediate_decimal_token2, STATE(3890), 1, sym_comment, @@ -364871,13 +364871,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(1683), 1, anon_sym_LPAREN2, - ACTIONS(7169), 1, + ACTIONS(7178), 1, anon_sym_DOT_DOT2, - ACTIONS(7173), 1, + ACTIONS(7182), 1, sym_filesize_unit, - ACTIONS(7175), 1, + ACTIONS(7184), 1, sym_duration_unit, - ACTIONS(7177), 1, + ACTIONS(7186), 1, aux_sym__unquoted_in_record_token2, STATE(3891), 1, sym_comment, @@ -364886,7 +364886,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1681), 2, sym_identifier, anon_sym_DASH2, - ACTIONS(7171), 2, + ACTIONS(7180), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, ACTIONS(1693), 10, @@ -364903,7 +364903,7 @@ static const uint16_t ts_small_parse_table[] = { [148105] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7136), 1, + ACTIONS(7145), 1, anon_sym_DOT2, STATE(3892), 1, sym_comment, @@ -364934,7 +364934,7 @@ static const uint16_t ts_small_parse_table[] = { [148144] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7090), 1, + ACTIONS(7099), 1, aux_sym__immediate_decimal_token2, STATE(3893), 1, sym_comment, @@ -364988,9 +364988,9 @@ static const uint16_t ts_small_parse_table[] = { [148207] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7179), 1, + ACTIONS(7188), 1, anon_sym_DOT, - ACTIONS(7181), 1, + ACTIONS(7190), 1, aux_sym__immediate_decimal_token2, STATE(3895), 1, sym_comment, @@ -365016,7 +365016,7 @@ static const uint16_t ts_small_parse_table[] = { [148241] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7183), 1, + ACTIONS(7192), 1, anon_sym_DOT2, STATE(3896), 1, sym_comment, @@ -365098,14 +365098,14 @@ static const uint16_t ts_small_parse_table[] = { [148339] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7187), 1, + ACTIONS(7196), 1, anon_sym_DOT_DOT2, STATE(3899), 1, sym_comment, - ACTIONS(7189), 2, + ACTIONS(7198), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(7185), 16, + ACTIONS(7194), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -365125,14 +365125,14 @@ static const uint16_t ts_small_parse_table[] = { [148371] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7187), 1, + ACTIONS(7196), 1, anon_sym_DOT_DOT2, STATE(3900), 1, sym_comment, - ACTIONS(7189), 2, + ACTIONS(7198), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(7185), 16, + ACTIONS(7194), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -365152,14 +365152,14 @@ static const uint16_t ts_small_parse_table[] = { [148403] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7187), 1, + ACTIONS(7196), 1, anon_sym_DOT_DOT2, STATE(3901), 1, sym_comment, - ACTIONS(7189), 2, + ACTIONS(7198), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(7185), 16, + ACTIONS(7194), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -365233,15 +365233,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(2545), 1, anon_sym_COMMA, - ACTIONS(7193), 1, + ACTIONS(7202), 1, anon_sym_EQ, - ACTIONS(7195), 1, + ACTIONS(7204), 1, sym__newline, - ACTIONS(7197), 1, + ACTIONS(7206), 1, anon_sym_COLON, - ACTIONS(7199), 1, + ACTIONS(7208), 1, anon_sym_LPAREN, - ACTIONS(7201), 1, + ACTIONS(7210), 1, anon_sym_DASH2, STATE(3904), 1, sym_comment, @@ -365256,7 +365256,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(4839), 2, sym_param_type, sym_param_value, - ACTIONS(7191), 7, + ACTIONS(7200), 7, sym_identifier, anon_sym_PIPE, anon_sym_RBRACK, @@ -365267,7 +365267,7 @@ static const uint16_t ts_small_parse_table[] = { [148545] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7183), 1, + ACTIONS(7192), 1, anon_sym_DOT2, STATE(3905), 1, sym_comment, @@ -365299,9 +365299,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(1757), 1, aux_sym_unquoted_token2, - ACTIONS(7203), 1, + ACTIONS(7212), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7205), 1, + ACTIONS(7214), 1, aux_sym__immediate_decimal_token2, STATE(3906), 1, sym_comment, @@ -365325,7 +365325,7 @@ static const uint16_t ts_small_parse_table[] = { [148617] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7207), 1, + ACTIONS(7216), 1, anon_sym_DOT2, STATE(4073), 1, sym_path, @@ -365379,7 +365379,7 @@ static const uint16_t ts_small_parse_table[] = { [148681] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7210), 1, + ACTIONS(7219), 1, anon_sym_QMARK2, STATE(3909), 1, sym_comment, @@ -365406,7 +365406,7 @@ static const uint16_t ts_small_parse_table[] = { [148713] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7212), 1, + ACTIONS(7221), 1, anon_sym_QMARK2, STATE(3910), 1, sym_comment, @@ -365433,20 +365433,20 @@ static const uint16_t ts_small_parse_table[] = { [148745] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4596), 1, + ACTIONS(4605), 1, anon_sym_DOT_DOT2, - ACTIONS(7126), 1, + ACTIONS(7135), 1, sym_filesize_unit, - ACTIONS(7128), 1, + ACTIONS(7137), 1, sym_duration_unit, - ACTIONS(7130), 1, + ACTIONS(7139), 1, aux_sym_unquoted_token2, STATE(3911), 1, sym_comment, ACTIONS(1693), 2, ts_builtin_sym_end, sym__space, - ACTIONS(4598), 2, + ACTIONS(4607), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, ACTIONS(1681), 11, @@ -365464,7 +365464,7 @@ static const uint16_t ts_small_parse_table[] = { [148785] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7136), 1, + ACTIONS(7145), 1, anon_sym_DOT2, STATE(3907), 1, aux_sym_cell_path_repeat1, @@ -365495,9 +365495,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(1725), 1, aux_sym_unquoted_token2, - ACTIONS(7214), 1, + ACTIONS(7223), 1, anon_sym_DOT, - ACTIONS(7216), 1, + ACTIONS(7225), 1, aux_sym__immediate_decimal_token2, STATE(3913), 1, sym_comment, @@ -365523,7 +365523,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(1725), 1, aux_sym_unquoted_token2, - ACTIONS(7156), 1, + ACTIONS(7165), 1, aux_sym__immediate_decimal_token2, STATE(3914), 1, sym_comment, @@ -365550,7 +365550,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(1765), 1, aux_sym_unquoted_token2, - ACTIONS(7218), 1, + ACTIONS(7227), 1, aux_sym__immediate_decimal_token2, STATE(3915), 1, sym_comment, @@ -365607,11 +365607,11 @@ static const uint16_t ts_small_parse_table[] = { sym__space, ACTIONS(1875), 1, aux_sym_unquoted_token2, - ACTIONS(7220), 1, + ACTIONS(7229), 1, anon_sym_DOT_DOT2, STATE(3917), 1, sym_comment, - ACTIONS(7222), 2, + ACTIONS(7231), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, ACTIONS(1865), 13, @@ -365631,9 +365631,9 @@ static const uint16_t ts_small_parse_table[] = { [148987] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7224), 1, + ACTIONS(7233), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7226), 1, + ACTIONS(7235), 1, aux_sym__immediate_decimal_token2, STATE(3918), 1, sym_comment, @@ -365665,11 +365665,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, ACTIONS(1794), 1, sym__space, - ACTIONS(7228), 1, + ACTIONS(7237), 1, anon_sym_DOT_DOT2, STATE(3919), 1, sym_comment, - ACTIONS(7230), 2, + ACTIONS(7239), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, ACTIONS(1786), 13, @@ -365689,7 +365689,7 @@ static const uint16_t ts_small_parse_table[] = { [149059] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7152), 1, + ACTIONS(7161), 1, aux_sym__immediate_decimal_token2, STATE(3920), 1, sym_comment, @@ -365846,7 +365846,7 @@ static const uint16_t ts_small_parse_table[] = { [149241] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7183), 1, + ACTIONS(7192), 1, anon_sym_DOT2, STATE(3926), 1, sym_comment, @@ -365954,7 +365954,7 @@ static const uint16_t ts_small_parse_table[] = { [149369] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7232), 1, + ACTIONS(7241), 1, aux_sym__immediate_decimal_token2, STATE(3930), 1, sym_comment, @@ -365981,11 +365981,11 @@ static const uint16_t ts_small_parse_table[] = { [149401] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7187), 1, + ACTIONS(7196), 1, anon_sym_DOT_DOT2, STATE(3931), 1, sym_comment, - ACTIONS(7189), 2, + ACTIONS(7198), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, ACTIONS(1000), 16, @@ -366008,11 +366008,11 @@ static const uint16_t ts_small_parse_table[] = { [149433] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7234), 1, + ACTIONS(7243), 1, anon_sym_DOT_DOT2, STATE(3932), 1, sym_comment, - ACTIONS(7236), 2, + ACTIONS(7245), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, ACTIONS(2176), 16, @@ -366035,11 +366035,11 @@ static const uint16_t ts_small_parse_table[] = { [149465] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7238), 1, + ACTIONS(7247), 1, anon_sym_DOT_DOT2, STATE(3933), 1, sym_comment, - ACTIONS(7240), 2, + ACTIONS(7249), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, ACTIONS(2150), 16, @@ -366062,11 +366062,11 @@ static const uint16_t ts_small_parse_table[] = { [149497] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7242), 1, + ACTIONS(7251), 1, anon_sym_DOT_DOT2, STATE(3934), 1, sym_comment, - ACTIONS(7244), 2, + ACTIONS(7253), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, ACTIONS(2158), 16, @@ -366089,11 +366089,11 @@ static const uint16_t ts_small_parse_table[] = { [149529] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7246), 1, + ACTIONS(7255), 1, anon_sym_DOT_DOT2, STATE(3935), 1, sym_comment, - ACTIONS(7248), 2, + ACTIONS(7257), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, ACTIONS(2166), 16, @@ -366144,7 +366144,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(1983), 1, sym__space, - ACTIONS(7092), 1, + ACTIONS(7101), 1, anon_sym_DOT2, STATE(3872), 1, aux_sym_cell_path_repeat1, @@ -366198,7 +366198,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(1967), 1, sym__space, - ACTIONS(7092), 1, + ACTIONS(7101), 1, anon_sym_DOT2, STATE(3872), 1, aux_sym_cell_path_repeat1, @@ -366225,13 +366225,13 @@ static const uint16_t ts_small_parse_table[] = { [149694] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4403), 1, + ACTIONS(4412), 1, anon_sym_LPAREN2, STATE(3940), 1, sym_comment, STATE(7336), 1, sym__expr_parenthesized_immediate, - ACTIONS(7250), 16, + ACTIONS(7259), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -366253,7 +366253,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(1951), 1, sym__space, - ACTIONS(7092), 1, + ACTIONS(7101), 1, anon_sym_DOT2, STATE(3872), 1, aux_sym_cell_path_repeat1, @@ -366282,7 +366282,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(2095), 1, sym__space, - ACTIONS(7092), 1, + ACTIONS(7101), 1, anon_sym_DOT2, STATE(3872), 1, aux_sym_cell_path_repeat1, @@ -366309,7 +366309,7 @@ static const uint16_t ts_small_parse_table[] = { [149799] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7252), 1, + ACTIONS(7261), 1, anon_sym_QMARK2, STATE(3943), 1, sym_comment, @@ -366337,7 +366337,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(1971), 1, sym__space, - ACTIONS(7092), 1, + ACTIONS(7101), 1, anon_sym_DOT2, STATE(3872), 1, aux_sym_cell_path_repeat1, @@ -366366,7 +366366,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(1955), 1, sym__space, - ACTIONS(7092), 1, + ACTIONS(7101), 1, anon_sym_DOT2, STATE(3872), 1, aux_sym_cell_path_repeat1, @@ -366422,7 +366422,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(1999), 1, sym__space, - ACTIONS(7092), 1, + ACTIONS(7101), 1, anon_sym_DOT2, STATE(3872), 1, aux_sym_cell_path_repeat1, @@ -366476,7 +366476,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(2003), 1, sym__space, - ACTIONS(7092), 1, + ACTIONS(7101), 1, anon_sym_DOT2, STATE(3872), 1, aux_sym_cell_path_repeat1, @@ -366555,11 +366555,11 @@ static const uint16_t ts_small_parse_table[] = { [150102] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5640), 1, + ACTIONS(5649), 1, anon_sym_DASH2, STATE(3952), 1, sym_comment, - ACTIONS(5642), 17, + ACTIONS(5651), 17, anon_sym_EQ, sym_identifier, sym__newline, @@ -366630,11 +366630,11 @@ static const uint16_t ts_small_parse_table[] = { [150189] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5646), 1, + ACTIONS(5655), 1, anon_sym_DASH2, STATE(3955), 1, sym_comment, - ACTIONS(5648), 17, + ACTIONS(5657), 17, anon_sym_EQ, sym_identifier, sym__newline, @@ -366655,14 +366655,14 @@ static const uint16_t ts_small_parse_table[] = { [150218] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7254), 1, + ACTIONS(7263), 1, anon_sym_DOT_DOT2, STATE(3956), 1, sym_comment, - ACTIONS(7256), 2, + ACTIONS(7265), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(7185), 15, + ACTIONS(7194), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -366683,7 +366683,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(2007), 1, sym__space, - ACTIONS(7092), 1, + ACTIONS(7101), 1, anon_sym_DOT2, STATE(3872), 1, aux_sym_cell_path_repeat1, @@ -366739,14 +366739,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_unquoted_token2, ACTIONS(1788), 1, anon_sym_LPAREN2, - ACTIONS(7258), 1, + ACTIONS(7267), 1, anon_sym_DOT_DOT2, STATE(3959), 1, sym_comment, ACTIONS(1794), 2, ts_builtin_sym_end, sym__space, - ACTIONS(7260), 2, + ACTIONS(7269), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, ACTIONS(1786), 11, @@ -366766,7 +366766,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(2019), 1, sym__space, - ACTIONS(7092), 1, + ACTIONS(7101), 1, anon_sym_DOT2, STATE(3872), 1, aux_sym_cell_path_repeat1, @@ -366795,7 +366795,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(2023), 1, sym__space, - ACTIONS(7092), 1, + ACTIONS(7101), 1, anon_sym_DOT2, STATE(3872), 1, aux_sym_cell_path_repeat1, @@ -366822,9 +366822,9 @@ static const uint16_t ts_small_parse_table[] = { [150426] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7092), 1, + ACTIONS(7101), 1, anon_sym_DOT2, - ACTIONS(7264), 1, + ACTIONS(7273), 1, sym__space, STATE(3872), 1, aux_sym_cell_path_repeat1, @@ -366834,7 +366834,7 @@ static const uint16_t ts_small_parse_table[] = { sym_path, STATE(4456), 1, sym_cell_path, - ACTIONS(7262), 13, + ACTIONS(7271), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -366853,7 +366853,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(1975), 1, sym__space, - ACTIONS(7092), 1, + ACTIONS(7101), 1, anon_sym_DOT2, STATE(3872), 1, aux_sym_cell_path_repeat1, @@ -366882,7 +366882,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(2011), 1, sym__space, - ACTIONS(7092), 1, + ACTIONS(7101), 1, anon_sym_DOT2, STATE(3872), 1, aux_sym_cell_path_repeat1, @@ -366936,7 +366936,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(1979), 1, sym__space, - ACTIONS(7092), 1, + ACTIONS(7101), 1, anon_sym_DOT2, STATE(3872), 1, aux_sym_cell_path_repeat1, @@ -366989,7 +366989,7 @@ static const uint16_t ts_small_parse_table[] = { [150634] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7181), 1, + ACTIONS(7190), 1, aux_sym__immediate_decimal_token2, STATE(3968), 1, sym_comment, @@ -367015,11 +367015,11 @@ static const uint16_t ts_small_parse_table[] = { [150665] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5632), 1, + ACTIONS(5641), 1, anon_sym_DASH2, STATE(3969), 1, sym_comment, - ACTIONS(5634), 17, + ACTIONS(5643), 17, anon_sym_EQ, sym_identifier, sym__newline, @@ -367042,7 +367042,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(2027), 1, sym__space, - ACTIONS(7092), 1, + ACTIONS(7101), 1, anon_sym_DOT2, STATE(3872), 1, aux_sym_cell_path_repeat1, @@ -367069,9 +367069,9 @@ static const uint16_t ts_small_parse_table[] = { [150731] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7092), 1, + ACTIONS(7101), 1, anon_sym_DOT2, - ACTIONS(7268), 1, + ACTIONS(7277), 1, sym__space, STATE(3872), 1, aux_sym_cell_path_repeat1, @@ -367081,7 +367081,7 @@ static const uint16_t ts_small_parse_table[] = { sym_path, STATE(4492), 1, sym_cell_path, - ACTIONS(7266), 13, + ACTIONS(7275), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -367102,14 +367102,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, ACTIONS(1875), 1, aux_sym_unquoted_token2, - ACTIONS(7270), 1, + ACTIONS(7279), 1, anon_sym_DOT_DOT2, STATE(3972), 1, sym_comment, ACTIONS(1873), 2, ts_builtin_sym_end, sym__space, - ACTIONS(7272), 2, + ACTIONS(7281), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, ACTIONS(1865), 11, @@ -367127,7 +367127,7 @@ static const uint16_t ts_small_parse_table[] = { [150805] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7274), 1, + ACTIONS(7283), 1, aux_sym__immediate_decimal_token2, STATE(3973), 1, sym_comment, @@ -367155,7 +367155,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(1927), 1, sym__space, - ACTIONS(7092), 1, + ACTIONS(7101), 1, anon_sym_DOT2, STATE(3872), 1, aux_sym_cell_path_repeat1, @@ -367309,9 +367309,9 @@ static const uint16_t ts_small_parse_table[] = { [151022] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7276), 1, + ACTIONS(7285), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7278), 1, + ACTIONS(7287), 1, aux_sym__immediate_decimal_token2, STATE(3980), 1, sym_comment, @@ -367338,7 +367338,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(1947), 1, sym__space, - ACTIONS(7092), 1, + ACTIONS(7101), 1, anon_sym_DOT2, STATE(3872), 1, aux_sym_cell_path_repeat1, @@ -367390,11 +367390,11 @@ static const uint16_t ts_small_parse_table[] = { [151121] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5654), 1, + ACTIONS(5663), 1, anon_sym_DASH2, STATE(3983), 1, sym_comment, - ACTIONS(5656), 17, + ACTIONS(5665), 17, anon_sym_EQ, sym_identifier, sym__newline, @@ -367415,11 +367415,11 @@ static const uint16_t ts_small_parse_table[] = { [151150] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5616), 1, + ACTIONS(5625), 1, anon_sym_DASH2, STATE(3984), 1, sym_comment, - ACTIONS(5618), 17, + ACTIONS(5627), 17, anon_sym_EQ, sym_identifier, sym__newline, @@ -367442,7 +367442,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(1939), 1, sym__space, - ACTIONS(7092), 1, + ACTIONS(7101), 1, anon_sym_DOT2, STATE(3872), 1, aux_sym_cell_path_repeat1, @@ -367469,11 +367469,11 @@ static const uint16_t ts_small_parse_table[] = { [151216] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5650), 1, + ACTIONS(5659), 1, anon_sym_DASH2, STATE(3986), 1, sym_comment, - ACTIONS(5652), 17, + ACTIONS(5661), 17, anon_sym_EQ, sym_identifier, sym__newline, @@ -367494,14 +367494,14 @@ static const uint16_t ts_small_parse_table[] = { [151245] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7254), 1, + ACTIONS(7263), 1, anon_sym_DOT_DOT2, STATE(3987), 1, sym_comment, - ACTIONS(7256), 2, + ACTIONS(7265), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(7185), 15, + ACTIONS(7194), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -367545,11 +367545,11 @@ static const uint16_t ts_small_parse_table[] = { [151305] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7280), 1, + ACTIONS(7289), 1, anon_sym_DOT_DOT2, STATE(3989), 1, sym_comment, - ACTIONS(7282), 2, + ACTIONS(7291), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, ACTIONS(2176), 15, @@ -367571,11 +367571,11 @@ static const uint16_t ts_small_parse_table[] = { [151336] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7254), 1, + ACTIONS(7263), 1, anon_sym_DOT_DOT2, STATE(3990), 1, sym_comment, - ACTIONS(7256), 2, + ACTIONS(7265), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, ACTIONS(1000), 15, @@ -367597,11 +367597,11 @@ static const uint16_t ts_small_parse_table[] = { [151367] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7284), 1, + ACTIONS(7293), 1, anon_sym_DOT_DOT2, STATE(3991), 1, sym_comment, - ACTIONS(7286), 2, + ACTIONS(7295), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, ACTIONS(2150), 15, @@ -367623,11 +367623,11 @@ static const uint16_t ts_small_parse_table[] = { [151398] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7288), 1, + ACTIONS(7297), 1, anon_sym_DOT_DOT2, STATE(3992), 1, sym_comment, - ACTIONS(7290), 2, + ACTIONS(7299), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, ACTIONS(2158), 15, @@ -367649,11 +367649,11 @@ static const uint16_t ts_small_parse_table[] = { [151429] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7292), 1, + ACTIONS(7301), 1, anon_sym_DOT_DOT2, STATE(3993), 1, sym_comment, - ACTIONS(7294), 2, + ACTIONS(7303), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, ACTIONS(2166), 15, @@ -367675,7 +367675,7 @@ static const uint16_t ts_small_parse_table[] = { [151460] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7296), 1, + ACTIONS(7305), 1, anon_sym_QMARK2, STATE(3994), 1, sym_comment, @@ -367701,7 +367701,7 @@ static const uint16_t ts_small_parse_table[] = { [151491] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7298), 1, + ACTIONS(7307), 1, anon_sym_QMARK2, STATE(3995), 1, sym_comment, @@ -367727,7 +367727,7 @@ static const uint16_t ts_small_parse_table[] = { [151522] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7300), 1, + ACTIONS(7309), 1, anon_sym_DOT2, STATE(4101), 1, sym_path, @@ -367779,11 +367779,11 @@ static const uint16_t ts_small_parse_table[] = { [151584] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5636), 1, + ACTIONS(5645), 1, anon_sym_DASH2, STATE(3998), 1, sym_comment, - ACTIONS(5638), 17, + ACTIONS(5647), 17, anon_sym_EQ, sym_identifier, sym__newline, @@ -367804,13 +367804,13 @@ static const uint16_t ts_small_parse_table[] = { [151613] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4403), 1, + ACTIONS(4412), 1, anon_sym_LPAREN2, STATE(3999), 1, sym_comment, STATE(7336), 1, sym__expr_parenthesized_immediate, - ACTIONS(7250), 16, + ACTIONS(7259), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -367832,7 +367832,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(1725), 1, aux_sym_unquoted_token2, - ACTIONS(7216), 1, + ACTIONS(7225), 1, aux_sym__immediate_decimal_token2, STATE(4000), 1, sym_comment, @@ -367858,7 +367858,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(2091), 1, sym__space, - ACTIONS(7092), 1, + ACTIONS(7101), 1, anon_sym_DOT2, STATE(3872), 1, aux_sym_cell_path_repeat1, @@ -367937,9 +367937,9 @@ static const uint16_t ts_small_parse_table[] = { [151774] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7303), 1, + ACTIONS(7312), 1, anon_sym_DOT, - ACTIONS(7305), 1, + ACTIONS(7314), 1, aux_sym__immediate_decimal_token2, STATE(4004), 1, sym_comment, @@ -367966,7 +367966,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(1765), 1, aux_sym_unquoted_token2, - ACTIONS(7307), 1, + ACTIONS(7316), 1, aux_sym__immediate_decimal_token2, STATE(4005), 1, sym_comment, @@ -367990,13 +367990,13 @@ static const uint16_t ts_small_parse_table[] = { [151838] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4403), 1, + ACTIONS(4412), 1, anon_sym_LPAREN2, STATE(4006), 1, sym_comment, STATE(7336), 1, sym__expr_parenthesized_immediate, - ACTIONS(7250), 16, + ACTIONS(7259), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -368044,7 +368044,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(1987), 1, sym__space, - ACTIONS(7092), 1, + ACTIONS(7101), 1, anon_sym_DOT2, STATE(3872), 1, aux_sym_cell_path_repeat1, @@ -368073,7 +368073,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(1991), 1, sym__space, - ACTIONS(7092), 1, + ACTIONS(7101), 1, anon_sym_DOT2, STATE(3872), 1, aux_sym_cell_path_repeat1, @@ -368102,7 +368102,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(1995), 1, sym__space, - ACTIONS(7092), 1, + ACTIONS(7101), 1, anon_sym_DOT2, STATE(3872), 1, aux_sym_cell_path_repeat1, @@ -368181,7 +368181,7 @@ static const uint16_t ts_small_parse_table[] = { [152073] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7183), 1, + ACTIONS(7192), 1, anon_sym_DOT2, STATE(3996), 1, aux_sym_cell_path_repeat1, @@ -368209,14 +368209,14 @@ static const uint16_t ts_small_parse_table[] = { [152108] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7254), 1, + ACTIONS(7263), 1, anon_sym_DOT_DOT2, STATE(4014), 1, sym_comment, - ACTIONS(7256), 2, + ACTIONS(7265), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(7185), 15, + ACTIONS(7194), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -368237,7 +368237,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(1935), 1, sym__space, - ACTIONS(7092), 1, + ACTIONS(7101), 1, anon_sym_DOT2, STATE(3872), 1, aux_sym_cell_path_repeat1, @@ -368266,7 +368266,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(1959), 1, sym__space, - ACTIONS(7092), 1, + ACTIONS(7101), 1, anon_sym_DOT2, STATE(3872), 1, aux_sym_cell_path_repeat1, @@ -368295,7 +368295,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(1963), 1, sym__space, - ACTIONS(7092), 1, + ACTIONS(7101), 1, anon_sym_DOT2, STATE(3872), 1, aux_sym_cell_path_repeat1, @@ -368373,7 +368373,7 @@ static const uint16_t ts_small_parse_table[] = { [152310] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7309), 1, + ACTIONS(7318), 1, anon_sym_QMARK2, STATE(4020), 1, sym_comment, @@ -368399,7 +368399,7 @@ static const uint16_t ts_small_parse_table[] = { [152341] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4801), 1, + ACTIONS(4810), 1, aux_sym_unquoted_token2, STATE(4021), 1, sym_comment, @@ -368423,7 +368423,7 @@ static const uint16_t ts_small_parse_table[] = { [152369] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7136), 1, + ACTIONS(7145), 1, anon_sym_DOT2, STATE(3912), 1, aux_sym_cell_path_repeat1, @@ -368451,7 +368451,7 @@ static const uint16_t ts_small_parse_table[] = { [152405] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7136), 1, + ACTIONS(7145), 1, anon_sym_DOT2, STATE(3912), 1, aux_sym_cell_path_repeat1, @@ -368479,7 +368479,7 @@ static const uint16_t ts_small_parse_table[] = { [152441] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7136), 1, + ACTIONS(7145), 1, anon_sym_DOT2, STATE(3912), 1, aux_sym_cell_path_repeat1, @@ -368507,7 +368507,7 @@ static const uint16_t ts_small_parse_table[] = { [152477] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7136), 1, + ACTIONS(7145), 1, anon_sym_DOT2, STATE(3912), 1, aux_sym_cell_path_repeat1, @@ -368535,7 +368535,7 @@ static const uint16_t ts_small_parse_table[] = { [152513] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7136), 1, + ACTIONS(7145), 1, anon_sym_DOT2, STATE(3912), 1, aux_sym_cell_path_repeat1, @@ -368563,7 +368563,7 @@ static const uint16_t ts_small_parse_table[] = { [152549] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7136), 1, + ACTIONS(7145), 1, anon_sym_DOT2, STATE(3912), 1, aux_sym_cell_path_repeat1, @@ -368591,7 +368591,7 @@ static const uint16_t ts_small_parse_table[] = { [152585] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7305), 1, + ACTIONS(7314), 1, aux_sym__immediate_decimal_token2, STATE(4028), 1, sym_comment, @@ -368618,11 +368618,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(1000), 1, sym__space, - ACTIONS(7311), 1, + ACTIONS(7320), 1, anon_sym_DOT_DOT2, STATE(4029), 1, sym_comment, - ACTIONS(7313), 2, + ACTIONS(7322), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, ACTIONS(1004), 13, @@ -368642,7 +368642,7 @@ static const uint16_t ts_small_parse_table[] = { [152647] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7136), 1, + ACTIONS(7145), 1, anon_sym_DOT2, STATE(3912), 1, aux_sym_cell_path_repeat1, @@ -368670,7 +368670,7 @@ static const uint16_t ts_small_parse_table[] = { [152683] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7136), 1, + ACTIONS(7145), 1, anon_sym_DOT2, STATE(3912), 1, aux_sym_cell_path_repeat1, @@ -368680,10 +368680,10 @@ static const uint16_t ts_small_parse_table[] = { sym_path, STATE(4791), 1, sym_cell_path, - ACTIONS(7264), 2, + ACTIONS(7273), 2, ts_builtin_sym_end, sym__space, - ACTIONS(7262), 11, + ACTIONS(7271), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -368702,15 +368702,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, ACTIONS(2083), 1, sym_raw_string_begin, - ACTIONS(4042), 1, + ACTIONS(4051), 1, anon_sym_DQUOTE, - ACTIONS(4046), 1, + ACTIONS(4055), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(4048), 1, + ACTIONS(4057), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(5026), 1, + ACTIONS(5035), 1, anon_sym_LPAREN, - ACTIONS(7315), 1, + ACTIONS(7324), 1, sym__unquoted_naive, STATE(4032), 1, sym_comment, @@ -368718,7 +368718,7 @@ static const uint16_t ts_small_parse_table[] = { sym__inter_single_quotes, STATE(4658), 1, sym__inter_double_quotes, - ACTIONS(4044), 2, + ACTIONS(4053), 2, sym__str_single_quotes, sym__str_back_ticks, STATE(3997), 2, @@ -368758,13 +368758,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(2545), 1, anon_sym_COMMA, - ACTIONS(7193), 1, + ACTIONS(7202), 1, anon_sym_EQ, - ACTIONS(7195), 1, + ACTIONS(7204), 1, sym__newline, - ACTIONS(7197), 1, + ACTIONS(7206), 1, anon_sym_COLON, - ACTIONS(7319), 1, + ACTIONS(7328), 1, anon_sym_DASH2, STATE(4034), 1, sym_comment, @@ -368777,7 +368777,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(4839), 2, sym_param_type, sym_param_value, - ACTIONS(7317), 7, + ACTIONS(7326), 7, sym_identifier, anon_sym_PIPE, anon_sym_RBRACK, @@ -368839,9 +368839,9 @@ static const uint16_t ts_small_parse_table[] = { [152901] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7321), 1, + ACTIONS(7330), 1, anon_sym_DOT, - ACTIONS(7323), 1, + ACTIONS(7332), 1, aux_sym__immediate_decimal_token2, STATE(4037), 1, sym_comment, @@ -368919,11 +368919,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH2, ACTIONS(1788), 1, anon_sym_LPAREN2, - ACTIONS(7325), 1, + ACTIONS(7334), 1, anon_sym_DOT_DOT2, STATE(4040), 1, sym_comment, - ACTIONS(7327), 2, + ACTIONS(7336), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, ACTIONS(1794), 11, @@ -368989,7 +368989,7 @@ static const uint16_t ts_small_parse_table[] = { [153081] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7136), 1, + ACTIONS(7145), 1, anon_sym_DOT2, STATE(3912), 1, aux_sym_cell_path_repeat1, @@ -369041,7 +369041,7 @@ static const uint16_t ts_small_parse_table[] = { [153145] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7136), 1, + ACTIONS(7145), 1, anon_sym_DOT2, STATE(3912), 1, aux_sym_cell_path_repeat1, @@ -369069,13 +369069,13 @@ static const uint16_t ts_small_parse_table[] = { [153181] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4403), 1, + ACTIONS(4412), 1, anon_sym_LPAREN2, STATE(4046), 1, sym_comment, STATE(7291), 1, sym__expr_parenthesized_immediate, - ACTIONS(7250), 15, + ACTIONS(7259), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -369096,13 +369096,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(2545), 1, anon_sym_COMMA, - ACTIONS(7193), 1, + ACTIONS(7202), 1, anon_sym_EQ, - ACTIONS(7195), 1, + ACTIONS(7204), 1, sym__newline, - ACTIONS(7197), 1, + ACTIONS(7206), 1, anon_sym_COLON, - ACTIONS(7331), 1, + ACTIONS(7340), 1, anon_sym_DASH2, STATE(4047), 1, sym_comment, @@ -369115,7 +369115,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(4839), 2, sym_param_type, sym_param_value, - ACTIONS(7329), 7, + ACTIONS(7338), 7, sym_identifier, anon_sym_PIPE, anon_sym_RBRACK, @@ -369132,11 +369132,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, ACTIONS(1875), 1, aux_sym__unquoted_in_record_token2, - ACTIONS(7333), 1, + ACTIONS(7342), 1, anon_sym_DOT_DOT2, STATE(4048), 1, sym_comment, - ACTIONS(7335), 2, + ACTIONS(7344), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, ACTIONS(1873), 11, @@ -369204,7 +369204,7 @@ static const uint16_t ts_small_parse_table[] = { [153351] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7136), 1, + ACTIONS(7145), 1, anon_sym_DOT2, STATE(3912), 1, aux_sym_cell_path_repeat1, @@ -369232,9 +369232,9 @@ static const uint16_t ts_small_parse_table[] = { [153387] = 9, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4807), 1, + ACTIONS(4816), 1, anon_sym_DOT2, - ACTIONS(7341), 1, + ACTIONS(7350), 1, anon_sym_QMARK2, STATE(1414), 1, aux_sym_cell_path_repeat1, @@ -369244,10 +369244,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(4866), 1, sym_cell_path, - ACTIONS(7337), 2, + ACTIONS(7346), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(7339), 10, + ACTIONS(7348), 10, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, @@ -369261,13 +369261,13 @@ static const uint16_t ts_small_parse_table[] = { [153425] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4403), 1, + ACTIONS(4412), 1, anon_sym_LPAREN2, STATE(4053), 1, sym_comment, STATE(7291), 1, sym__expr_parenthesized_immediate, - ACTIONS(7250), 15, + ACTIONS(7259), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -369286,7 +369286,7 @@ static const uint16_t ts_small_parse_table[] = { [153455] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7136), 1, + ACTIONS(7145), 1, anon_sym_DOT2, STATE(3912), 1, aux_sym_cell_path_repeat1, @@ -369314,7 +369314,7 @@ static const uint16_t ts_small_parse_table[] = { [153491] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7136), 1, + ACTIONS(7145), 1, anon_sym_DOT2, STATE(3912), 1, aux_sym_cell_path_repeat1, @@ -369324,10 +369324,10 @@ static const uint16_t ts_small_parse_table[] = { sym_path, STATE(4553), 1, sym_cell_path, - ACTIONS(7268), 2, + ACTIONS(7277), 2, ts_builtin_sym_end, sym__space, - ACTIONS(7266), 11, + ACTIONS(7275), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -369342,7 +369342,7 @@ static const uint16_t ts_small_parse_table[] = { [153527] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7136), 1, + ACTIONS(7145), 1, anon_sym_DOT2, STATE(3912), 1, aux_sym_cell_path_repeat1, @@ -369423,15 +369423,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, ACTIONS(1859), 1, sym_raw_string_begin, - ACTIONS(4203), 1, + ACTIONS(4212), 1, anon_sym_DQUOTE, - ACTIONS(4207), 1, + ACTIONS(4216), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(4209), 1, + ACTIONS(4218), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(5016), 1, + ACTIONS(5025), 1, anon_sym_LPAREN, - ACTIONS(7343), 1, + ACTIONS(7352), 1, sym__unquoted_naive, STATE(4059), 1, sym_comment, @@ -369439,7 +369439,7 @@ static const uint16_t ts_small_parse_table[] = { sym__inter_single_quotes, STATE(4526), 1, sym__inter_double_quotes, - ACTIONS(4205), 2, + ACTIONS(4214), 2, sym__str_single_quotes, sym__str_back_ticks, STATE(3922), 2, @@ -369549,7 +369549,7 @@ static const uint16_t ts_small_parse_table[] = { [153781] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7136), 1, + ACTIONS(7145), 1, anon_sym_DOT2, STATE(3912), 1, aux_sym_cell_path_repeat1, @@ -369577,7 +369577,7 @@ static const uint16_t ts_small_parse_table[] = { [153817] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7136), 1, + ACTIONS(7145), 1, anon_sym_DOT2, STATE(3912), 1, aux_sym_cell_path_repeat1, @@ -369656,11 +369656,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(2150), 1, sym__space, - ACTIONS(7345), 1, + ACTIONS(7354), 1, anon_sym_DOT_DOT2, STATE(4068), 1, sym_comment, - ACTIONS(7347), 2, + ACTIONS(7356), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, ACTIONS(2144), 13, @@ -369682,11 +369682,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(2158), 1, sym__space, - ACTIONS(7349), 1, + ACTIONS(7358), 1, anon_sym_DOT_DOT2, STATE(4069), 1, sym_comment, - ACTIONS(7351), 2, + ACTIONS(7360), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, ACTIONS(2152), 13, @@ -369706,9 +369706,9 @@ static const uint16_t ts_small_parse_table[] = { [153975] = 9, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4807), 1, + ACTIONS(4816), 1, anon_sym_DOT2, - ACTIONS(7357), 1, + ACTIONS(7366), 1, anon_sym_QMARK2, STATE(1414), 1, aux_sym_cell_path_repeat1, @@ -369718,10 +369718,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(4878), 1, sym_cell_path, - ACTIONS(7353), 2, + ACTIONS(7362), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(7355), 10, + ACTIONS(7364), 10, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, @@ -369835,9 +369835,9 @@ static const uint16_t ts_small_parse_table[] = { [154133] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7359), 1, + ACTIONS(7368), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7361), 1, + ACTIONS(7370), 1, aux_sym__immediate_decimal_token2, STATE(4075), 1, sym_comment, @@ -369909,7 +369909,7 @@ static const uint16_t ts_small_parse_table[] = { [154221] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7136), 1, + ACTIONS(7145), 1, anon_sym_DOT2, STATE(3912), 1, aux_sym_cell_path_repeat1, @@ -369963,11 +369963,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(2166), 1, sym__space, - ACTIONS(7363), 1, + ACTIONS(7372), 1, anon_sym_DOT_DOT2, STATE(4080), 1, sym_comment, - ACTIONS(7365), 2, + ACTIONS(7374), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, ACTIONS(2160), 13, @@ -370011,7 +370011,7 @@ static const uint16_t ts_small_parse_table[] = { [154345] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7136), 1, + ACTIONS(7145), 1, anon_sym_DOT2, STATE(3912), 1, aux_sym_cell_path_repeat1, @@ -370041,11 +370041,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(2176), 1, sym__space, - ACTIONS(7367), 1, + ACTIONS(7376), 1, anon_sym_DOT_DOT2, STATE(4083), 1, sym_comment, - ACTIONS(7369), 2, + ACTIONS(7378), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, ACTIONS(2170), 13, @@ -370089,7 +370089,7 @@ static const uint16_t ts_small_parse_table[] = { [154441] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7136), 1, + ACTIONS(7145), 1, anon_sym_DOT2, STATE(3912), 1, aux_sym_cell_path_repeat1, @@ -370117,16 +370117,16 @@ static const uint16_t ts_small_parse_table[] = { [154477] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7311), 1, + ACTIONS(7320), 1, anon_sym_DOT_DOT2, - ACTIONS(7373), 1, + ACTIONS(7382), 1, sym__space, STATE(4086), 1, sym_comment, - ACTIONS(7313), 2, + ACTIONS(7322), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(7371), 13, + ACTIONS(7380), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -370143,7 +370143,7 @@ static const uint16_t ts_small_parse_table[] = { [154509] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7136), 1, + ACTIONS(7145), 1, anon_sym_DOT2, STATE(3912), 1, aux_sym_cell_path_repeat1, @@ -370171,7 +370171,7 @@ static const uint16_t ts_small_parse_table[] = { [154545] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7136), 1, + ACTIONS(7145), 1, anon_sym_DOT2, STATE(3912), 1, aux_sym_cell_path_repeat1, @@ -370199,7 +370199,7 @@ static const uint16_t ts_small_parse_table[] = { [154581] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7136), 1, + ACTIONS(7145), 1, anon_sym_DOT2, STATE(3912), 1, aux_sym_cell_path_repeat1, @@ -370251,7 +370251,7 @@ static const uint16_t ts_small_parse_table[] = { [154645] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7375), 1, + ACTIONS(7384), 1, aux_sym__immediate_decimal_token2, STATE(4091), 1, sym_comment, @@ -370278,13 +370278,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(2545), 1, anon_sym_COMMA, - ACTIONS(7193), 1, + ACTIONS(7202), 1, anon_sym_EQ, - ACTIONS(7195), 1, + ACTIONS(7204), 1, sym__newline, - ACTIONS(7197), 1, + ACTIONS(7206), 1, anon_sym_COLON, - ACTIONS(7379), 1, + ACTIONS(7388), 1, anon_sym_DASH2, STATE(4092), 1, sym_comment, @@ -370297,7 +370297,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(4839), 2, sym_param_type, sym_param_value, - ACTIONS(7377), 7, + ACTIONS(7386), 7, sym_identifier, anon_sym_PIPE, anon_sym_RBRACK, @@ -370308,7 +370308,7 @@ static const uint16_t ts_small_parse_table[] = { [154719] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7136), 1, + ACTIONS(7145), 1, anon_sym_DOT2, STATE(3912), 1, aux_sym_cell_path_repeat1, @@ -370338,13 +370338,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(2545), 1, anon_sym_COMMA, - ACTIONS(7193), 1, + ACTIONS(7202), 1, anon_sym_EQ, - ACTIONS(7195), 1, + ACTIONS(7204), 1, sym__newline, - ACTIONS(7197), 1, + ACTIONS(7206), 1, anon_sym_COLON, - ACTIONS(7383), 1, + ACTIONS(7392), 1, anon_sym_DASH2, STATE(4047), 1, aux_sym_parameter_repeat1, @@ -370357,7 +370357,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(4839), 2, sym_param_type, sym_param_value, - ACTIONS(7381), 7, + ACTIONS(7390), 7, sym_identifier, anon_sym_PIPE, anon_sym_RBRACK, @@ -370370,13 +370370,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(2545), 1, anon_sym_COMMA, - ACTIONS(7193), 1, + ACTIONS(7202), 1, anon_sym_EQ, - ACTIONS(7195), 1, + ACTIONS(7204), 1, sym__newline, - ACTIONS(7197), 1, + ACTIONS(7206), 1, anon_sym_COLON, - ACTIONS(7387), 1, + ACTIONS(7396), 1, anon_sym_DASH2, STATE(4095), 1, sym_comment, @@ -370389,7 +370389,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(4839), 2, sym_param_type, sym_param_value, - ACTIONS(7385), 7, + ACTIONS(7394), 7, sym_identifier, anon_sym_PIPE, anon_sym_RBRACK, @@ -370408,11 +370408,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(253), 1, sym_raw_string_begin, - ACTIONS(3440), 1, + ACTIONS(3449), 1, anon_sym_DOLLAR, - ACTIONS(6585), 1, + ACTIONS(6594), 1, anon_sym_LPAREN, - ACTIONS(7389), 1, + ACTIONS(7398), 1, sym__unquoted_naive, STATE(2143), 1, sym__inter_double_quotes, @@ -370442,11 +370442,11 @@ static const uint16_t ts_small_parse_table[] = { sym_raw_string_begin, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3472), 1, + ACTIONS(3481), 1, anon_sym_DOLLAR, - ACTIONS(5824), 1, + ACTIONS(5833), 1, anon_sym_LPAREN, - ACTIONS(7391), 1, + ACTIONS(7400), 1, sym__unquoted_naive, STATE(2550), 1, sym__inter_single_quotes, @@ -370492,7 +370492,7 @@ static const uint16_t ts_small_parse_table[] = { [154967] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7136), 1, + ACTIONS(7145), 1, anon_sym_DOT2, STATE(3912), 1, aux_sym_cell_path_repeat1, @@ -370520,7 +370520,7 @@ static const uint16_t ts_small_parse_table[] = { [155003] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7136), 1, + ACTIONS(7145), 1, anon_sym_DOT2, STATE(3912), 1, aux_sym_cell_path_repeat1, @@ -370572,7 +370572,7 @@ static const uint16_t ts_small_parse_table[] = { [155067] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7136), 1, + ACTIONS(7145), 1, anon_sym_DOT2, STATE(3912), 1, aux_sym_cell_path_repeat1, @@ -370648,13 +370648,13 @@ static const uint16_t ts_small_parse_table[] = { [155159] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4403), 1, + ACTIONS(4412), 1, anon_sym_LPAREN2, STATE(4105), 1, sym_comment, STATE(7291), 1, sym__expr_parenthesized_immediate, - ACTIONS(7250), 15, + ACTIONS(7259), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -370673,7 +370673,7 @@ static const uint16_t ts_small_parse_table[] = { [155189] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7136), 1, + ACTIONS(7145), 1, anon_sym_DOT2, STATE(3912), 1, aux_sym_cell_path_repeat1, @@ -370727,14 +370727,14 @@ static const uint16_t ts_small_parse_table[] = { [155257] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7393), 1, + ACTIONS(7402), 1, anon_sym_DOT_DOT2, STATE(4108), 1, sym_comment, ACTIONS(2176), 2, ts_builtin_sym_end, sym__space, - ACTIONS(7395), 2, + ACTIONS(7404), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, ACTIONS(2170), 11, @@ -370752,17 +370752,17 @@ static const uint16_t ts_small_parse_table[] = { [155288] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3802), 1, + ACTIONS(3811), 1, sym__newline, - ACTIONS(7399), 1, + ACTIONS(7408), 1, anon_sym_and2, - ACTIONS(7401), 1, + ACTIONS(7410), 1, anon_sym_xor2, STATE(4109), 1, sym_comment, STATE(4239), 1, aux_sym_shebang_repeat1, - ACTIONS(7397), 12, + ACTIONS(7406), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -370782,7 +370782,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(4241), 1, aux_sym_shebang_repeat1, - ACTIONS(7403), 15, + ACTIONS(7412), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -370805,7 +370805,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(4245), 1, aux_sym_shebang_repeat1, - ACTIONS(7403), 15, + ACTIONS(7412), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -370824,7 +370824,7 @@ static const uint16_t ts_small_parse_table[] = { [155375] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7323), 1, + ACTIONS(7332), 1, aux_sym__immediate_decimal_token2, STATE(4112), 1, sym_comment, @@ -370852,7 +370852,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_shebang_repeat1, STATE(4113), 1, sym_comment, - ACTIONS(7405), 15, + ACTIONS(7414), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -370875,7 +370875,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_shebang_repeat1, STATE(4114), 1, sym_comment, - ACTIONS(7405), 15, + ACTIONS(7414), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -370894,15 +370894,15 @@ static const uint16_t ts_small_parse_table[] = { [155458] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7407), 1, + ACTIONS(7416), 1, sym__newline, - ACTIONS(7412), 1, + ACTIONS(7421), 1, anon_sym_and2, STATE(4115), 1, sym_comment, STATE(4116), 1, aux_sym_shebang_repeat1, - ACTIONS(7410), 13, + ACTIONS(7419), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -370919,13 +370919,13 @@ static const uint16_t ts_small_parse_table[] = { [155489] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7414), 1, + ACTIONS(7423), 1, anon_sym_and2, STATE(1706), 1, aux_sym_shebang_repeat1, STATE(4116), 1, sym_comment, - ACTIONS(7405), 14, + ACTIONS(7414), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -370943,13 +370943,13 @@ static const uint16_t ts_small_parse_table[] = { [155518] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7416), 1, + ACTIONS(7425), 1, anon_sym_and2, STATE(1706), 1, aux_sym_shebang_repeat1, STATE(4117), 1, sym_comment, - ACTIONS(7405), 14, + ACTIONS(7414), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -370992,13 +370992,13 @@ static const uint16_t ts_small_parse_table[] = { [155578] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7414), 1, + ACTIONS(7423), 1, anon_sym_and2, STATE(1706), 1, aux_sym_shebang_repeat1, STATE(4119), 1, sym_comment, - ACTIONS(7418), 14, + ACTIONS(7427), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -371016,13 +371016,13 @@ static const uint16_t ts_small_parse_table[] = { [155607] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7416), 1, + ACTIONS(7425), 1, anon_sym_and2, STATE(1706), 1, aux_sym_shebang_repeat1, STATE(4120), 1, sym_comment, - ACTIONS(7418), 14, + ACTIONS(7427), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -371040,15 +371040,15 @@ static const uint16_t ts_small_parse_table[] = { [155636] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7399), 1, + ACTIONS(7408), 1, anon_sym_and2, - ACTIONS(7407), 1, + ACTIONS(7416), 1, sym__newline, STATE(4117), 1, aux_sym_shebang_repeat1, STATE(4121), 1, sym_comment, - ACTIONS(7410), 13, + ACTIONS(7419), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -371065,15 +371065,15 @@ static const uint16_t ts_small_parse_table[] = { [155667] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7414), 1, + ACTIONS(7423), 1, anon_sym_and2, - ACTIONS(7422), 1, + ACTIONS(7431), 1, anon_sym_xor2, STATE(1706), 1, aux_sym_shebang_repeat1, STATE(4122), 1, sym_comment, - ACTIONS(7420), 13, + ACTIONS(7429), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -371090,15 +371090,15 @@ static const uint16_t ts_small_parse_table[] = { [155698] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7414), 1, + ACTIONS(7423), 1, anon_sym_and2, - ACTIONS(7422), 1, + ACTIONS(7431), 1, anon_sym_xor2, STATE(1706), 1, aux_sym_shebang_repeat1, STATE(4123), 1, sym_comment, - ACTIONS(7405), 13, + ACTIONS(7414), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -371115,15 +371115,15 @@ static const uint16_t ts_small_parse_table[] = { [155729] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7412), 1, + ACTIONS(7421), 1, anon_sym_and2, - ACTIONS(7424), 1, + ACTIONS(7433), 1, sym__newline, STATE(4124), 1, sym_comment, STATE(4269), 1, aux_sym_shebang_repeat1, - ACTIONS(7403), 13, + ACTIONS(7412), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -371140,15 +371140,15 @@ static const uint16_t ts_small_parse_table[] = { [155760] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7399), 1, + ACTIONS(7408), 1, anon_sym_and2, - ACTIONS(7424), 1, + ACTIONS(7433), 1, sym__newline, STATE(4125), 1, sym_comment, STATE(4278), 1, aux_sym_shebang_repeat1, - ACTIONS(7403), 13, + ACTIONS(7412), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -371165,13 +371165,13 @@ static const uint16_t ts_small_parse_table[] = { [155791] = 9, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7429), 1, + ACTIONS(7438), 1, anon_sym_EQ, - ACTIONS(7432), 1, + ACTIONS(7441), 1, sym__newline, - ACTIONS(7435), 1, + ACTIONS(7444), 1, anon_sym_COLON, - ACTIONS(7438), 1, + ACTIONS(7447), 1, anon_sym_DASH2, STATE(6402), 1, aux_sym_shebang_repeat1, @@ -371181,7 +371181,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(4839), 2, sym_param_type, sym_param_value, - ACTIONS(7427), 8, + ACTIONS(7436), 8, sym_identifier, anon_sym_PIPE, anon_sym_RBRACK, @@ -371193,15 +371193,15 @@ static const uint16_t ts_small_parse_table[] = { [155828] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7416), 1, + ACTIONS(7425), 1, anon_sym_and2, - ACTIONS(7440), 1, + ACTIONS(7449), 1, anon_sym_xor2, STATE(1706), 1, aux_sym_shebang_repeat1, STATE(4127), 1, sym_comment, - ACTIONS(7405), 13, + ACTIONS(7414), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -371245,7 +371245,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_shebang_repeat1, STATE(4129), 1, sym_comment, - ACTIONS(7405), 15, + ACTIONS(7414), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -371264,9 +371264,9 @@ static const uint16_t ts_small_parse_table[] = { [155913] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5942), 1, + ACTIONS(5951), 1, aux_sym__immediate_decimal_token2, - ACTIONS(7442), 1, + ACTIONS(7451), 1, anon_sym_DOT, STATE(4130), 1, sym_comment, @@ -371293,7 +371293,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_shebang_repeat1, STATE(4131), 1, sym_comment, - ACTIONS(7405), 15, + ACTIONS(7414), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -371337,13 +371337,13 @@ static const uint16_t ts_small_parse_table[] = { [156002] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7414), 1, + ACTIONS(7423), 1, anon_sym_and2, STATE(1706), 1, aux_sym_shebang_repeat1, STATE(4133), 1, sym_comment, - ACTIONS(7405), 14, + ACTIONS(7414), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -371361,13 +371361,13 @@ static const uint16_t ts_small_parse_table[] = { [156031] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7416), 1, + ACTIONS(7425), 1, anon_sym_and2, STATE(1706), 1, aux_sym_shebang_repeat1, STATE(4134), 1, sym_comment, - ACTIONS(7405), 14, + ACTIONS(7414), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -371385,15 +371385,15 @@ static const uint16_t ts_small_parse_table[] = { [156060] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7414), 1, + ACTIONS(7423), 1, anon_sym_and2, - ACTIONS(7422), 1, + ACTIONS(7431), 1, anon_sym_xor2, STATE(1706), 1, aux_sym_shebang_repeat1, STATE(4135), 1, sym_comment, - ACTIONS(7405), 13, + ACTIONS(7414), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -371410,15 +371410,15 @@ static const uint16_t ts_small_parse_table[] = { [156091] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7416), 1, + ACTIONS(7425), 1, anon_sym_and2, - ACTIONS(7440), 1, + ACTIONS(7449), 1, anon_sym_xor2, STATE(1706), 1, aux_sym_shebang_repeat1, STATE(4136), 1, sym_comment, - ACTIONS(7405), 13, + ACTIONS(7414), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -371435,15 +371435,15 @@ static const uint16_t ts_small_parse_table[] = { [156122] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7416), 1, + ACTIONS(7425), 1, anon_sym_and2, - ACTIONS(7440), 1, + ACTIONS(7449), 1, anon_sym_xor2, STATE(1706), 1, aux_sym_shebang_repeat1, STATE(4137), 1, sym_comment, - ACTIONS(7420), 13, + ACTIONS(7429), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -371460,17 +371460,17 @@ static const uint16_t ts_small_parse_table[] = { [156153] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3802), 1, + ACTIONS(3811), 1, sym__newline, - ACTIONS(7412), 1, + ACTIONS(7421), 1, anon_sym_and2, - ACTIONS(7444), 1, + ACTIONS(7453), 1, anon_sym_xor2, STATE(4123), 1, aux_sym_shebang_repeat1, STATE(4138), 1, sym_comment, - ACTIONS(7410), 12, + ACTIONS(7419), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -371511,7 +371511,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(4140), 1, sym_comment, - ACTIONS(7185), 16, + ACTIONS(7194), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -371531,15 +371531,15 @@ static const uint16_t ts_small_parse_table[] = { [156238] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7412), 1, + ACTIONS(7421), 1, anon_sym_and2, - ACTIONS(7446), 1, + ACTIONS(7455), 1, sym__newline, STATE(4141), 1, sym_comment, STATE(4270), 1, aux_sym_shebang_repeat1, - ACTIONS(7449), 13, + ACTIONS(7458), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -371556,17 +371556,17 @@ static const uint16_t ts_small_parse_table[] = { [156269] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3802), 1, + ACTIONS(3811), 1, sym__newline, - ACTIONS(7412), 1, + ACTIONS(7421), 1, anon_sym_and2, - ACTIONS(7444), 1, + ACTIONS(7453), 1, anon_sym_xor2, STATE(4122), 1, aux_sym_shebang_repeat1, STATE(4142), 1, sym_comment, - ACTIONS(7403), 12, + ACTIONS(7412), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -371582,17 +371582,17 @@ static const uint16_t ts_small_parse_table[] = { [156302] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3802), 1, + ACTIONS(3811), 1, sym__newline, - ACTIONS(7399), 1, + ACTIONS(7408), 1, anon_sym_and2, - ACTIONS(7401), 1, + ACTIONS(7410), 1, anon_sym_xor2, STATE(4137), 1, aux_sym_shebang_repeat1, STATE(4143), 1, sym_comment, - ACTIONS(7403), 12, + ACTIONS(7412), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -371612,7 +371612,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_shebang_repeat1, STATE(4144), 1, sym_comment, - ACTIONS(7451), 15, + ACTIONS(7460), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -371635,7 +371635,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_shebang_repeat1, STATE(4145), 1, sym_comment, - ACTIONS(7451), 15, + ACTIONS(7460), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -371654,15 +371654,15 @@ static const uint16_t ts_small_parse_table[] = { [156389] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7399), 1, + ACTIONS(7408), 1, anon_sym_and2, - ACTIONS(7446), 1, + ACTIONS(7455), 1, sym__newline, STATE(4146), 1, sym_comment, STATE(4280), 1, aux_sym_shebang_repeat1, - ACTIONS(7449), 13, + ACTIONS(7458), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -371679,17 +371679,17 @@ static const uint16_t ts_small_parse_table[] = { [156420] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3802), 1, + ACTIONS(3811), 1, sym__newline, - ACTIONS(7399), 1, + ACTIONS(7408), 1, anon_sym_and2, - ACTIONS(7401), 1, + ACTIONS(7410), 1, anon_sym_xor2, STATE(4127), 1, aux_sym_shebang_repeat1, STATE(4147), 1, sym_comment, - ACTIONS(7410), 12, + ACTIONS(7419), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -371709,7 +371709,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(4149), 1, aux_sym_shebang_repeat1, - ACTIONS(7397), 15, + ACTIONS(7406), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -371732,7 +371732,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_shebang_repeat1, STATE(4149), 1, sym_comment, - ACTIONS(7418), 15, + ACTIONS(7427), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -371755,7 +371755,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_shebang_repeat1, STATE(4150), 1, sym_comment, - ACTIONS(7418), 15, + ACTIONS(7427), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -371774,13 +371774,13 @@ static const uint16_t ts_small_parse_table[] = { [156534] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7414), 1, + ACTIONS(7423), 1, anon_sym_and2, STATE(1706), 1, aux_sym_shebang_repeat1, STATE(4151), 1, sym_comment, - ACTIONS(7418), 14, + ACTIONS(7427), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -371798,13 +371798,13 @@ static const uint16_t ts_small_parse_table[] = { [156563] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7416), 1, + ACTIONS(7425), 1, anon_sym_and2, STATE(1706), 1, aux_sym_shebang_repeat1, STATE(4152), 1, sym_comment, - ACTIONS(7418), 14, + ACTIONS(7427), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -371822,15 +371822,15 @@ static const uint16_t ts_small_parse_table[] = { [156592] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7414), 1, + ACTIONS(7423), 1, anon_sym_and2, - ACTIONS(7422), 1, + ACTIONS(7431), 1, anon_sym_xor2, STATE(1706), 1, aux_sym_shebang_repeat1, STATE(4153), 1, sym_comment, - ACTIONS(7418), 13, + ACTIONS(7427), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -371849,7 +371849,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(4154), 1, sym_comment, - ACTIONS(7250), 16, + ACTIONS(7259), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -371869,15 +371869,15 @@ static const uint16_t ts_small_parse_table[] = { [156648] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7416), 1, + ACTIONS(7425), 1, anon_sym_and2, - ACTIONS(7440), 1, + ACTIONS(7449), 1, anon_sym_xor2, STATE(1706), 1, aux_sym_shebang_repeat1, STATE(4155), 1, sym_comment, - ACTIONS(7418), 13, + ACTIONS(7427), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -371898,7 +371898,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_shebang_repeat1, STATE(4156), 1, sym_comment, - ACTIONS(7420), 15, + ACTIONS(7429), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -371919,7 +371919,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(4157), 1, sym_comment, - ACTIONS(7185), 16, + ACTIONS(7194), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -371943,7 +371943,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_shebang_repeat1, STATE(4158), 1, sym_comment, - ACTIONS(7420), 15, + ACTIONS(7429), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -371966,7 +371966,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_shebang_repeat1, STATE(4159), 1, sym_comment, - ACTIONS(7410), 15, + ACTIONS(7419), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -371987,7 +371987,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(2093), 1, anon_sym_DASH2, - ACTIONS(7183), 1, + ACTIONS(7192), 1, anon_sym_DOT2, STATE(4013), 1, aux_sym_cell_path_repeat1, @@ -372016,7 +372016,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_shebang_repeat1, STATE(4161), 1, sym_comment, - ACTIONS(7410), 15, + ACTIONS(7419), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -372035,13 +372035,13 @@ static const uint16_t ts_small_parse_table[] = { [156847] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7414), 1, + ACTIONS(7423), 1, anon_sym_and2, STATE(1706), 1, aux_sym_shebang_repeat1, STATE(4162), 1, sym_comment, - ACTIONS(7420), 14, + ACTIONS(7429), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -372059,13 +372059,13 @@ static const uint16_t ts_small_parse_table[] = { [156876] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7416), 1, + ACTIONS(7425), 1, anon_sym_and2, STATE(1706), 1, aux_sym_shebang_repeat1, STATE(4163), 1, sym_comment, - ACTIONS(7420), 14, + ACTIONS(7429), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -372083,9 +372083,9 @@ static const uint16_t ts_small_parse_table[] = { [156905] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7453), 1, + ACTIONS(7462), 1, anon_sym_DOT, - ACTIONS(7455), 1, + ACTIONS(7464), 1, aux_sym__immediate_decimal_token2, STATE(4164), 1, sym_comment, @@ -372112,7 +372112,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_shebang_repeat1, STATE(4165), 1, sym_comment, - ACTIONS(7397), 15, + ACTIONS(7406), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -372131,15 +372131,15 @@ static const uint16_t ts_small_parse_table[] = { [156963] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7407), 1, + ACTIONS(7416), 1, sym__newline, - ACTIONS(7412), 1, + ACTIONS(7421), 1, anon_sym_and2, STATE(4133), 1, aux_sym_shebang_repeat1, STATE(4166), 1, sym_comment, - ACTIONS(7410), 13, + ACTIONS(7419), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -372156,19 +372156,19 @@ static const uint16_t ts_small_parse_table[] = { [156994] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3802), 1, + ACTIONS(3811), 1, sym__newline, - ACTIONS(7412), 1, + ACTIONS(7421), 1, anon_sym_and2, - ACTIONS(7444), 1, + ACTIONS(7453), 1, anon_sym_xor2, - ACTIONS(7459), 1, + ACTIONS(7468), 1, anon_sym_or2, STATE(4167), 1, sym_comment, STATE(4224), 1, aux_sym_shebang_repeat1, - ACTIONS(7457), 11, + ACTIONS(7466), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -372185,7 +372185,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(4168), 1, sym_comment, - ACTIONS(7250), 16, + ACTIONS(7259), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -372205,15 +372205,15 @@ static const uint16_t ts_small_parse_table[] = { [157054] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7399), 1, + ACTIONS(7408), 1, anon_sym_and2, - ACTIONS(7407), 1, + ACTIONS(7416), 1, sym__newline, STATE(4134), 1, aux_sym_shebang_repeat1, STATE(4169), 1, sym_comment, - ACTIONS(7410), 13, + ACTIONS(7419), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -372232,7 +372232,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(4170), 1, sym_comment, - ACTIONS(7185), 16, + ACTIONS(7194), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -372252,15 +372252,15 @@ static const uint16_t ts_small_parse_table[] = { [157110] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7414), 1, + ACTIONS(7423), 1, anon_sym_and2, - ACTIONS(7422), 1, + ACTIONS(7431), 1, anon_sym_xor2, STATE(1706), 1, aux_sym_shebang_repeat1, STATE(4171), 1, sym_comment, - ACTIONS(7420), 13, + ACTIONS(7429), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -372302,7 +372302,7 @@ static const uint16_t ts_small_parse_table[] = { [157172] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7461), 1, + ACTIONS(7470), 1, aux_sym__immediate_decimal_token2, STATE(4173), 1, sym_comment, @@ -372328,7 +372328,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(4174), 1, sym_comment, - ACTIONS(7250), 16, + ACTIONS(7259), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -372348,15 +372348,15 @@ static const uint16_t ts_small_parse_table[] = { [157226] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7416), 1, + ACTIONS(7425), 1, anon_sym_and2, - ACTIONS(7440), 1, + ACTIONS(7449), 1, anon_sym_xor2, STATE(1706), 1, aux_sym_shebang_repeat1, STATE(4175), 1, sym_comment, - ACTIONS(7420), 13, + ACTIONS(7429), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -372373,15 +372373,15 @@ static const uint16_t ts_small_parse_table[] = { [157257] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7414), 1, + ACTIONS(7423), 1, anon_sym_and2, - ACTIONS(7422), 1, + ACTIONS(7431), 1, anon_sym_xor2, STATE(1706), 1, aux_sym_shebang_repeat1, STATE(4176), 1, sym_comment, - ACTIONS(7418), 13, + ACTIONS(7427), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -372398,13 +372398,13 @@ static const uint16_t ts_small_parse_table[] = { [157288] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7414), 1, + ACTIONS(7423), 1, anon_sym_and2, STATE(1706), 1, aux_sym_shebang_repeat1, STATE(4177), 1, sym_comment, - ACTIONS(7451), 14, + ACTIONS(7460), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -372422,13 +372422,13 @@ static const uint16_t ts_small_parse_table[] = { [157317] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7416), 1, + ACTIONS(7425), 1, anon_sym_and2, STATE(1706), 1, aux_sym_shebang_repeat1, STATE(4178), 1, sym_comment, - ACTIONS(7451), 14, + ACTIONS(7460), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -372446,17 +372446,17 @@ static const uint16_t ts_small_parse_table[] = { [157346] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3802), 1, + ACTIONS(3811), 1, sym__newline, - ACTIONS(7412), 1, + ACTIONS(7421), 1, anon_sym_and2, - ACTIONS(7444), 1, + ACTIONS(7453), 1, anon_sym_xor2, STATE(4135), 1, aux_sym_shebang_repeat1, STATE(4179), 1, sym_comment, - ACTIONS(7410), 12, + ACTIONS(7419), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -372472,17 +372472,17 @@ static const uint16_t ts_small_parse_table[] = { [157379] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3802), 1, + ACTIONS(3811), 1, sym__newline, - ACTIONS(7412), 1, + ACTIONS(7421), 1, anon_sym_and2, - ACTIONS(7444), 1, + ACTIONS(7453), 1, anon_sym_xor2, STATE(4180), 1, sym_comment, STATE(4293), 1, aux_sym_shebang_repeat1, - ACTIONS(7449), 12, + ACTIONS(7458), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -372498,17 +372498,17 @@ static const uint16_t ts_small_parse_table[] = { [157412] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3802), 1, + ACTIONS(3811), 1, sym__newline, - ACTIONS(7399), 1, + ACTIONS(7408), 1, anon_sym_and2, - ACTIONS(7401), 1, + ACTIONS(7410), 1, anon_sym_xor2, STATE(4136), 1, aux_sym_shebang_repeat1, STATE(4181), 1, sym_comment, - ACTIONS(7410), 12, + ACTIONS(7419), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -372524,15 +372524,15 @@ static const uint16_t ts_small_parse_table[] = { [157445] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7412), 1, + ACTIONS(7421), 1, anon_sym_and2, - ACTIONS(7463), 1, + ACTIONS(7472), 1, sym__newline, STATE(4151), 1, aux_sym_shebang_repeat1, STATE(4182), 1, sym_comment, - ACTIONS(7397), 13, + ACTIONS(7406), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -372549,15 +372549,15 @@ static const uint16_t ts_small_parse_table[] = { [157476] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7399), 1, + ACTIONS(7408), 1, anon_sym_and2, - ACTIONS(7463), 1, + ACTIONS(7472), 1, sym__newline, STATE(4152), 1, aux_sym_shebang_repeat1, STATE(4183), 1, sym_comment, - ACTIONS(7397), 13, + ACTIONS(7406), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -372574,15 +372574,15 @@ static const uint16_t ts_small_parse_table[] = { [157507] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7414), 1, + ACTIONS(7423), 1, anon_sym_and2, - ACTIONS(7422), 1, + ACTIONS(7431), 1, anon_sym_xor2, STATE(1706), 1, aux_sym_shebang_repeat1, STATE(4184), 1, sym_comment, - ACTIONS(7451), 13, + ACTIONS(7460), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -372599,15 +372599,15 @@ static const uint16_t ts_small_parse_table[] = { [157538] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7416), 1, + ACTIONS(7425), 1, anon_sym_and2, - ACTIONS(7440), 1, + ACTIONS(7449), 1, anon_sym_xor2, STATE(1706), 1, aux_sym_shebang_repeat1, STATE(4185), 1, sym_comment, - ACTIONS(7451), 13, + ACTIONS(7460), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -372624,17 +372624,17 @@ static const uint16_t ts_small_parse_table[] = { [157569] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3802), 1, + ACTIONS(3811), 1, sym__newline, - ACTIONS(7412), 1, + ACTIONS(7421), 1, anon_sym_and2, - ACTIONS(7444), 1, + ACTIONS(7453), 1, anon_sym_xor2, STATE(4153), 1, aux_sym_shebang_repeat1, STATE(4186), 1, sym_comment, - ACTIONS(7397), 12, + ACTIONS(7406), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -372650,17 +372650,17 @@ static const uint16_t ts_small_parse_table[] = { [157602] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3802), 1, + ACTIONS(3811), 1, sym__newline, - ACTIONS(7399), 1, + ACTIONS(7408), 1, anon_sym_and2, - ACTIONS(7401), 1, + ACTIONS(7410), 1, anon_sym_xor2, STATE(4155), 1, aux_sym_shebang_repeat1, STATE(4187), 1, sym_comment, - ACTIONS(7397), 12, + ACTIONS(7406), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -372680,7 +372680,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_shebang_repeat1, STATE(4188), 1, sym_comment, - ACTIONS(7403), 15, + ACTIONS(7412), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -372703,7 +372703,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_shebang_repeat1, STATE(4189), 1, sym_comment, - ACTIONS(7403), 15, + ACTIONS(7412), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -372724,7 +372724,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(4190), 1, sym_comment, - ACTIONS(7466), 16, + ACTIONS(7475), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -372746,7 +372746,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(1949), 1, anon_sym_DASH2, - ACTIONS(7183), 1, + ACTIONS(7192), 1, anon_sym_DOT2, STATE(4013), 1, aux_sym_cell_path_repeat1, @@ -372773,7 +372773,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(1953), 1, anon_sym_DASH2, - ACTIONS(7183), 1, + ACTIONS(7192), 1, anon_sym_DOT2, STATE(4013), 1, aux_sym_cell_path_repeat1, @@ -372798,19 +372798,19 @@ static const uint16_t ts_small_parse_table[] = { [157784] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3802), 1, + ACTIONS(3811), 1, sym__newline, - ACTIONS(7399), 1, + ACTIONS(7408), 1, anon_sym_and2, - ACTIONS(7401), 1, + ACTIONS(7410), 1, anon_sym_xor2, - ACTIONS(7468), 1, + ACTIONS(7477), 1, anon_sym_or2, STATE(4193), 1, sym_comment, STATE(4230), 1, aux_sym_shebang_repeat1, - ACTIONS(7457), 11, + ACTIONS(7466), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -372827,7 +372827,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(4194), 1, sym_comment, - ACTIONS(7466), 16, + ACTIONS(7475), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -372847,17 +372847,17 @@ static const uint16_t ts_small_parse_table[] = { [157844] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7470), 1, + ACTIONS(7479), 1, anon_sym_DOT_DOT2, STATE(4195), 1, sym_comment, - ACTIONS(7373), 2, + ACTIONS(7382), 2, ts_builtin_sym_end, sym__space, - ACTIONS(7472), 2, + ACTIONS(7481), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(7371), 11, + ACTIONS(7380), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -372872,15 +372872,15 @@ static const uint16_t ts_small_parse_table[] = { [157875] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7412), 1, + ACTIONS(7421), 1, anon_sym_and2, - ACTIONS(7424), 1, + ACTIONS(7433), 1, sym__newline, STATE(4162), 1, aux_sym_shebang_repeat1, STATE(4196), 1, sym_comment, - ACTIONS(7403), 13, + ACTIONS(7412), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -372897,15 +372897,15 @@ static const uint16_t ts_small_parse_table[] = { [157906] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7399), 1, + ACTIONS(7408), 1, anon_sym_and2, - ACTIONS(7424), 1, + ACTIONS(7433), 1, sym__newline, STATE(4163), 1, aux_sym_shebang_repeat1, STATE(4197), 1, sym_comment, - ACTIONS(7403), 13, + ACTIONS(7412), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -372947,17 +372947,17 @@ static const uint16_t ts_small_parse_table[] = { [157968] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3802), 1, + ACTIONS(3811), 1, sym__newline, - ACTIONS(7412), 1, + ACTIONS(7421), 1, anon_sym_and2, - ACTIONS(7444), 1, + ACTIONS(7453), 1, anon_sym_xor2, STATE(4171), 1, aux_sym_shebang_repeat1, STATE(4199), 1, sym_comment, - ACTIONS(7403), 12, + ACTIONS(7412), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -372973,17 +372973,17 @@ static const uint16_t ts_small_parse_table[] = { [158001] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3802), 1, + ACTIONS(3811), 1, sym__newline, - ACTIONS(7399), 1, + ACTIONS(7408), 1, anon_sym_and2, - ACTIONS(7401), 1, + ACTIONS(7410), 1, anon_sym_xor2, STATE(4175), 1, aux_sym_shebang_repeat1, STATE(4200), 1, sym_comment, - ACTIONS(7403), 12, + ACTIONS(7412), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -372999,11 +372999,11 @@ static const uint16_t ts_small_parse_table[] = { [158034] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7474), 1, + ACTIONS(7483), 1, anon_sym_and2, STATE(4201), 1, sym_comment, - ACTIONS(7466), 15, + ACTIONS(7475), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -373068,17 +373068,17 @@ static const uint16_t ts_small_parse_table[] = { [158115] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3802), 1, + ACTIONS(3811), 1, sym__newline, - ACTIONS(7399), 1, + ACTIONS(7408), 1, anon_sym_and2, - ACTIONS(7401), 1, + ACTIONS(7410), 1, anon_sym_xor2, STATE(4204), 1, sym_comment, STATE(4296), 1, aux_sym_shebang_repeat1, - ACTIONS(7449), 12, + ACTIONS(7458), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -373094,11 +373094,11 @@ static const uint16_t ts_small_parse_table[] = { [158148] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7476), 1, + ACTIONS(7485), 1, anon_sym_and2, STATE(4205), 1, sym_comment, - ACTIONS(7466), 15, + ACTIONS(7475), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -373117,14 +373117,14 @@ static const uint16_t ts_small_parse_table[] = { [158175] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7470), 1, + ACTIONS(7479), 1, anon_sym_DOT_DOT2, STATE(4206), 1, sym_comment, ACTIONS(1000), 2, ts_builtin_sym_end, sym__space, - ACTIONS(7472), 2, + ACTIONS(7481), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, ACTIONS(1004), 11, @@ -373142,13 +373142,13 @@ static const uint16_t ts_small_parse_table[] = { [158206] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7474), 1, + ACTIONS(7483), 1, anon_sym_and2, - ACTIONS(7478), 1, + ACTIONS(7487), 1, anon_sym_xor2, STATE(4207), 1, sym_comment, - ACTIONS(7466), 14, + ACTIONS(7475), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -373166,17 +373166,17 @@ static const uint16_t ts_small_parse_table[] = { [158235] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3802), 1, + ACTIONS(3811), 1, sym__newline, - ACTIONS(7412), 1, + ACTIONS(7421), 1, anon_sym_and2, - ACTIONS(7444), 1, + ACTIONS(7453), 1, anon_sym_xor2, STATE(4176), 1, aux_sym_shebang_repeat1, STATE(4208), 1, sym_comment, - ACTIONS(7397), 12, + ACTIONS(7406), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -373192,7 +373192,7 @@ static const uint16_t ts_small_parse_table[] = { [158268] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4807), 1, + ACTIONS(4816), 1, anon_sym_DOT2, STATE(1414), 1, aux_sym_cell_path_repeat1, @@ -373202,10 +373202,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(4863), 1, sym_cell_path, - ACTIONS(7480), 2, + ACTIONS(7489), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(7482), 10, + ACTIONS(7491), 10, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, @@ -373219,9 +373219,9 @@ static const uint16_t ts_small_parse_table[] = { [158303] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7484), 1, + ACTIONS(7493), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7486), 1, + ACTIONS(7495), 1, aux_sym__immediate_decimal_token2, STATE(4210), 1, sym_comment, @@ -373244,13 +373244,13 @@ static const uint16_t ts_small_parse_table[] = { [158334] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7476), 1, + ACTIONS(7485), 1, anon_sym_and2, - ACTIONS(7488), 1, + ACTIONS(7497), 1, anon_sym_xor2, STATE(4211), 1, sym_comment, - ACTIONS(7466), 14, + ACTIONS(7475), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -373270,7 +373270,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(4212), 1, sym_comment, - ACTIONS(7466), 16, + ACTIONS(7475), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -373292,7 +373292,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(4213), 1, sym_comment, - ACTIONS(7466), 16, + ACTIONS(7475), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -373337,11 +373337,11 @@ static const uint16_t ts_small_parse_table[] = { [158444] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7474), 1, + ACTIONS(7483), 1, anon_sym_and2, STATE(4215), 1, sym_comment, - ACTIONS(7466), 15, + ACTIONS(7475), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -373364,7 +373364,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_shebang_repeat1, STATE(4216), 1, sym_comment, - ACTIONS(7449), 15, + ACTIONS(7458), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -373387,7 +373387,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_shebang_repeat1, STATE(4217), 1, sym_comment, - ACTIONS(7449), 15, + ACTIONS(7458), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -373408,7 +373408,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(1957), 1, anon_sym_DASH2, - ACTIONS(7183), 1, + ACTIONS(7192), 1, anon_sym_DOT2, STATE(4013), 1, aux_sym_cell_path_repeat1, @@ -373435,7 +373435,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(1961), 1, anon_sym_DASH2, - ACTIONS(7183), 1, + ACTIONS(7192), 1, anon_sym_DOT2, STATE(4013), 1, aux_sym_cell_path_repeat1, @@ -373462,7 +373462,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(1965), 1, anon_sym_DASH2, - ACTIONS(7183), 1, + ACTIONS(7192), 1, anon_sym_DOT2, STATE(4013), 1, aux_sym_cell_path_repeat1, @@ -373491,7 +373491,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_shebang_repeat1, STATE(4221), 1, sym_comment, - ACTIONS(7418), 15, + ACTIONS(7427), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -373510,11 +373510,11 @@ static const uint16_t ts_small_parse_table[] = { [158657] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7476), 1, + ACTIONS(7485), 1, anon_sym_and2, STATE(4222), 1, sym_comment, - ACTIONS(7466), 15, + ACTIONS(7475), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -373535,7 +373535,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(1969), 1, anon_sym_DASH2, - ACTIONS(7183), 1, + ACTIONS(7192), 1, anon_sym_DOT2, STATE(4013), 1, aux_sym_cell_path_repeat1, @@ -373560,17 +373560,17 @@ static const uint16_t ts_small_parse_table[] = { [158719] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7414), 1, + ACTIONS(7423), 1, anon_sym_and2, - ACTIONS(7422), 1, + ACTIONS(7431), 1, anon_sym_xor2, - ACTIONS(7492), 1, + ACTIONS(7501), 1, anon_sym_or2, STATE(1706), 1, aux_sym_shebang_repeat1, STATE(4224), 1, sym_comment, - ACTIONS(7490), 12, + ACTIONS(7499), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -373586,15 +373586,15 @@ static const uint16_t ts_small_parse_table[] = { [158752] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4403), 1, + ACTIONS(4412), 1, anon_sym_LPAREN2, - ACTIONS(4849), 1, + ACTIONS(4858), 1, sym__space, STATE(4225), 1, sym_comment, STATE(7420), 1, sym__expr_parenthesized_immediate, - ACTIONS(4851), 13, + ACTIONS(4860), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -373611,13 +373611,13 @@ static const uint16_t ts_small_parse_table[] = { [158783] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7474), 1, + ACTIONS(7483), 1, anon_sym_and2, - ACTIONS(7478), 1, + ACTIONS(7487), 1, anon_sym_xor2, STATE(4226), 1, sym_comment, - ACTIONS(7466), 14, + ACTIONS(7475), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -373635,15 +373635,15 @@ static const uint16_t ts_small_parse_table[] = { [158812] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7412), 1, + ACTIONS(7421), 1, anon_sym_and2, - ACTIONS(7446), 1, + ACTIONS(7455), 1, sym__newline, STATE(4177), 1, aux_sym_shebang_repeat1, STATE(4227), 1, sym_comment, - ACTIONS(7449), 13, + ACTIONS(7458), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -373660,13 +373660,13 @@ static const uint16_t ts_small_parse_table[] = { [158843] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7476), 1, + ACTIONS(7485), 1, anon_sym_and2, - ACTIONS(7488), 1, + ACTIONS(7497), 1, anon_sym_xor2, STATE(4228), 1, sym_comment, - ACTIONS(7466), 14, + ACTIONS(7475), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -373686,7 +373686,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(1973), 1, anon_sym_DASH2, - ACTIONS(7183), 1, + ACTIONS(7192), 1, anon_sym_DOT2, STATE(4013), 1, aux_sym_cell_path_repeat1, @@ -373711,17 +373711,17 @@ static const uint16_t ts_small_parse_table[] = { [158907] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7416), 1, + ACTIONS(7425), 1, anon_sym_and2, - ACTIONS(7440), 1, + ACTIONS(7449), 1, anon_sym_xor2, - ACTIONS(7494), 1, + ACTIONS(7503), 1, anon_sym_or2, STATE(1706), 1, aux_sym_shebang_repeat1, STATE(4230), 1, sym_comment, - ACTIONS(7490), 12, + ACTIONS(7499), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -373764,7 +373764,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(1937), 1, anon_sym_DASH2, - ACTIONS(7183), 1, + ACTIONS(7192), 1, anon_sym_DOT2, STATE(4013), 1, aux_sym_cell_path_repeat1, @@ -373789,15 +373789,15 @@ static const uint16_t ts_small_parse_table[] = { [159006] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7399), 1, + ACTIONS(7408), 1, anon_sym_and2, - ACTIONS(7446), 1, + ACTIONS(7455), 1, sym__newline, STATE(4178), 1, aux_sym_shebang_repeat1, STATE(4233), 1, sym_comment, - ACTIONS(7449), 13, + ACTIONS(7458), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -373816,7 +373816,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(1977), 1, anon_sym_DASH2, - ACTIONS(7183), 1, + ACTIONS(7192), 1, anon_sym_DOT2, STATE(4013), 1, aux_sym_cell_path_repeat1, @@ -373843,7 +373843,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(1933), 1, anon_sym_DASH2, - ACTIONS(7183), 1, + ACTIONS(7192), 1, anon_sym_DOT2, STATE(4013), 1, aux_sym_cell_path_repeat1, @@ -373868,17 +373868,17 @@ static const uint16_t ts_small_parse_table[] = { [159107] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3802), 1, + ACTIONS(3811), 1, sym__newline, - ACTIONS(7412), 1, + ACTIONS(7421), 1, anon_sym_and2, - ACTIONS(7444), 1, + ACTIONS(7453), 1, anon_sym_xor2, STATE(4184), 1, aux_sym_shebang_repeat1, STATE(4236), 1, sym_comment, - ACTIONS(7449), 12, + ACTIONS(7458), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -373894,19 +373894,19 @@ static const uint16_t ts_small_parse_table[] = { [159140] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3802), 1, + ACTIONS(3811), 1, sym__newline, - ACTIONS(7412), 1, + ACTIONS(7421), 1, anon_sym_and2, - ACTIONS(7444), 1, + ACTIONS(7453), 1, anon_sym_xor2, - ACTIONS(7459), 1, + ACTIONS(7468), 1, anon_sym_or2, STATE(4237), 1, sym_comment, STATE(4248), 1, aux_sym_shebang_repeat1, - ACTIONS(7496), 11, + ACTIONS(7505), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -373921,19 +373921,19 @@ static const uint16_t ts_small_parse_table[] = { [159175] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3802), 1, + ACTIONS(3811), 1, sym__newline, - ACTIONS(7399), 1, + ACTIONS(7408), 1, anon_sym_and2, - ACTIONS(7401), 1, + ACTIONS(7410), 1, anon_sym_xor2, - ACTIONS(7468), 1, + ACTIONS(7477), 1, anon_sym_or2, STATE(4238), 1, sym_comment, STATE(4252), 1, aux_sym_shebang_repeat1, - ACTIONS(7496), 11, + ACTIONS(7505), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -373948,15 +373948,15 @@ static const uint16_t ts_small_parse_table[] = { [159210] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7416), 1, + ACTIONS(7425), 1, anon_sym_and2, - ACTIONS(7440), 1, + ACTIONS(7449), 1, anon_sym_xor2, STATE(1706), 1, aux_sym_shebang_repeat1, STATE(4239), 1, sym_comment, - ACTIONS(7418), 13, + ACTIONS(7427), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -373973,17 +373973,17 @@ static const uint16_t ts_small_parse_table[] = { [159241] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3802), 1, + ACTIONS(3811), 1, sym__newline, - ACTIONS(7399), 1, + ACTIONS(7408), 1, anon_sym_and2, - ACTIONS(7401), 1, + ACTIONS(7410), 1, anon_sym_xor2, STATE(4185), 1, aux_sym_shebang_repeat1, STATE(4240), 1, sym_comment, - ACTIONS(7449), 12, + ACTIONS(7458), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -374003,7 +374003,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_shebang_repeat1, STATE(4241), 1, sym_comment, - ACTIONS(7420), 15, + ACTIONS(7429), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -374024,9 +374024,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(1727), 1, sym__space, - ACTIONS(7120), 1, + ACTIONS(7129), 1, aux_sym__immediate_decimal_token2, - ACTIONS(7498), 1, + ACTIONS(7507), 1, anon_sym_DOT, STATE(4242), 1, sym_comment, @@ -374049,7 +374049,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(1981), 1, anon_sym_DASH2, - ACTIONS(7183), 1, + ACTIONS(7192), 1, anon_sym_DOT2, STATE(4013), 1, aux_sym_cell_path_repeat1, @@ -374103,7 +374103,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_shebang_repeat1, STATE(4245), 1, sym_comment, - ACTIONS(7420), 15, + ACTIONS(7429), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -374126,7 +374126,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_shebang_repeat1, STATE(4246), 1, sym_comment, - ACTIONS(7418), 15, + ACTIONS(7427), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -374149,7 +374149,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(4254), 1, aux_sym_shebang_repeat1, - ACTIONS(7449), 15, + ACTIONS(7458), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -374168,17 +374168,17 @@ static const uint16_t ts_small_parse_table[] = { [159479] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7414), 1, + ACTIONS(7423), 1, anon_sym_and2, - ACTIONS(7422), 1, + ACTIONS(7431), 1, anon_sym_xor2, - ACTIONS(7492), 1, + ACTIONS(7501), 1, anon_sym_or2, STATE(1706), 1, aux_sym_shebang_repeat1, STATE(4248), 1, sym_comment, - ACTIONS(7500), 12, + ACTIONS(7509), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -374217,11 +374217,11 @@ static const uint16_t ts_small_parse_table[] = { [159539] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7502), 1, + ACTIONS(7511), 1, sym__newline, - ACTIONS(7504), 1, + ACTIONS(7513), 1, sym__space, - ACTIONS(7508), 1, + ACTIONS(7517), 1, anon_sym_COLON2, STATE(4250), 1, sym_comment, @@ -374229,7 +374229,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_command_repeat1, STATE(6583), 1, aux_sym_ctrl_do_parenthesized_repeat2, - ACTIONS(7506), 11, + ACTIONS(7515), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -374267,17 +374267,17 @@ static const uint16_t ts_small_parse_table[] = { [159601] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7416), 1, + ACTIONS(7425), 1, anon_sym_and2, - ACTIONS(7440), 1, + ACTIONS(7449), 1, anon_sym_xor2, - ACTIONS(7494), 1, + ACTIONS(7503), 1, anon_sym_or2, STATE(1706), 1, aux_sym_shebang_repeat1, STATE(4252), 1, sym_comment, - ACTIONS(7500), 12, + ACTIONS(7509), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -374295,7 +374295,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(1985), 1, anon_sym_DASH2, - ACTIONS(7183), 1, + ACTIONS(7192), 1, anon_sym_DOT2, STATE(4013), 1, aux_sym_cell_path_repeat1, @@ -374324,7 +374324,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_shebang_repeat1, STATE(4254), 1, sym_comment, - ACTIONS(7451), 15, + ACTIONS(7460), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -374345,7 +374345,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(1989), 1, anon_sym_DASH2, - ACTIONS(7183), 1, + ACTIONS(7192), 1, anon_sym_DOT2, STATE(4013), 1, aux_sym_cell_path_repeat1, @@ -374372,7 +374372,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(1993), 1, anon_sym_DASH2, - ACTIONS(7183), 1, + ACTIONS(7192), 1, anon_sym_DOT2, STATE(4013), 1, aux_sym_cell_path_repeat1, @@ -374401,7 +374401,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_shebang_repeat1, STATE(4257), 1, sym_comment, - ACTIONS(7451), 15, + ACTIONS(7460), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -374424,7 +374424,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_shebang_repeat1, STATE(4258), 1, sym_comment, - ACTIONS(7397), 15, + ACTIONS(7406), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -374466,14 +374466,14 @@ static const uint16_t ts_small_parse_table[] = { [159847] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7510), 1, + ACTIONS(7519), 1, anon_sym_DOT_DOT2, STATE(4260), 1, sym_comment, ACTIONS(2150), 2, ts_builtin_sym_end, sym__space, - ACTIONS(7512), 2, + ACTIONS(7521), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, ACTIONS(2144), 11, @@ -374491,11 +374491,11 @@ static const uint16_t ts_small_parse_table[] = { [159878] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7502), 1, + ACTIONS(7511), 1, sym__newline, - ACTIONS(7504), 1, + ACTIONS(7513), 1, sym__space, - ACTIONS(7514), 1, + ACTIONS(7523), 1, anon_sym_COLON2, STATE(4261), 1, sym_comment, @@ -374503,7 +374503,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_command_repeat1, STATE(6336), 1, aux_sym_ctrl_do_parenthesized_repeat2, - ACTIONS(7506), 11, + ACTIONS(7515), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -374541,15 +374541,15 @@ static const uint16_t ts_small_parse_table[] = { [159940] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7474), 1, + ACTIONS(7483), 1, anon_sym_and2, - ACTIONS(7478), 1, + ACTIONS(7487), 1, anon_sym_xor2, - ACTIONS(7518), 1, + ACTIONS(7527), 1, anon_sym_or2, STATE(4263), 1, sym_comment, - ACTIONS(7516), 13, + ACTIONS(7525), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -374570,7 +374570,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_shebang_repeat1, STATE(4264), 1, sym_comment, - ACTIONS(7410), 15, + ACTIONS(7419), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -374618,7 +374618,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_shebang_repeat1, STATE(4266), 1, sym_comment, - ACTIONS(7397), 15, + ACTIONS(7406), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -374641,7 +374641,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_shebang_repeat1, STATE(4267), 1, sym_comment, - ACTIONS(7410), 15, + ACTIONS(7419), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -374660,14 +374660,14 @@ static const uint16_t ts_small_parse_table[] = { [160083] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7520), 1, + ACTIONS(7529), 1, anon_sym_DOT_DOT2, STATE(4268), 1, sym_comment, ACTIONS(2158), 2, ts_builtin_sym_end, sym__space, - ACTIONS(7522), 2, + ACTIONS(7531), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, ACTIONS(2152), 11, @@ -374685,13 +374685,13 @@ static const uint16_t ts_small_parse_table[] = { [160114] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7414), 1, + ACTIONS(7423), 1, anon_sym_and2, STATE(1706), 1, aux_sym_shebang_repeat1, STATE(4269), 1, sym_comment, - ACTIONS(7420), 14, + ACTIONS(7429), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -374709,13 +374709,13 @@ static const uint16_t ts_small_parse_table[] = { [160143] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7414), 1, + ACTIONS(7423), 1, anon_sym_and2, STATE(1706), 1, aux_sym_shebang_repeat1, STATE(4270), 1, sym_comment, - ACTIONS(7451), 14, + ACTIONS(7460), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -374733,7 +374733,7 @@ static const uint16_t ts_small_parse_table[] = { [160172] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4807), 1, + ACTIONS(4816), 1, anon_sym_DOT2, STATE(1400), 1, sym_cell_path, @@ -374760,15 +374760,15 @@ static const uint16_t ts_small_parse_table[] = { [160207] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7476), 1, + ACTIONS(7485), 1, anon_sym_and2, - ACTIONS(7488), 1, + ACTIONS(7497), 1, anon_sym_xor2, - ACTIONS(7524), 1, + ACTIONS(7533), 1, anon_sym_or2, STATE(4272), 1, sym_comment, - ACTIONS(7516), 13, + ACTIONS(7525), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -374787,7 +374787,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(4273), 1, sym_comment, - ACTIONS(6877), 16, + ACTIONS(6886), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -374809,7 +374809,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(1997), 1, anon_sym_DASH2, - ACTIONS(7183), 1, + ACTIONS(7192), 1, anon_sym_DOT2, STATE(4013), 1, aux_sym_cell_path_repeat1, @@ -374834,15 +374834,15 @@ static const uint16_t ts_small_parse_table[] = { [160298] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4403), 1, + ACTIONS(4412), 1, anon_sym_LPAREN2, - ACTIONS(7528), 1, + ACTIONS(7537), 1, sym__space, STATE(4275), 1, sym_comment, STATE(7308), 1, sym__expr_parenthesized_immediate, - ACTIONS(7526), 13, + ACTIONS(7535), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -374861,7 +374861,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(2001), 1, anon_sym_DASH2, - ACTIONS(7183), 1, + ACTIONS(7192), 1, anon_sym_DOT2, STATE(4013), 1, aux_sym_cell_path_repeat1, @@ -374888,7 +374888,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(2005), 1, anon_sym_DASH2, - ACTIONS(7183), 1, + ACTIONS(7192), 1, anon_sym_DOT2, STATE(4013), 1, aux_sym_cell_path_repeat1, @@ -374913,13 +374913,13 @@ static const uint16_t ts_small_parse_table[] = { [160399] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7416), 1, + ACTIONS(7425), 1, anon_sym_and2, STATE(1706), 1, aux_sym_shebang_repeat1, STATE(4278), 1, sym_comment, - ACTIONS(7420), 14, + ACTIONS(7429), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -374960,13 +374960,13 @@ static const uint16_t ts_small_parse_table[] = { [160455] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7416), 1, + ACTIONS(7425), 1, anon_sym_and2, STATE(1706), 1, aux_sym_shebang_repeat1, STATE(4280), 1, sym_comment, - ACTIONS(7451), 14, + ACTIONS(7460), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -374986,7 +374986,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(2009), 1, anon_sym_DASH2, - ACTIONS(7183), 1, + ACTIONS(7192), 1, anon_sym_DOT2, STATE(4013), 1, aux_sym_cell_path_repeat1, @@ -375011,15 +375011,15 @@ static const uint16_t ts_small_parse_table[] = { [160519] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7412), 1, + ACTIONS(7421), 1, anon_sym_and2, - ACTIONS(7463), 1, + ACTIONS(7472), 1, sym__newline, STATE(4119), 1, aux_sym_shebang_repeat1, STATE(4282), 1, sym_comment, - ACTIONS(7397), 13, + ACTIONS(7406), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -375038,7 +375038,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(1925), 1, anon_sym_DASH2, - ACTIONS(7183), 1, + ACTIONS(7192), 1, anon_sym_DOT2, STATE(4013), 1, aux_sym_cell_path_repeat1, @@ -375063,15 +375063,15 @@ static const uint16_t ts_small_parse_table[] = { [160585] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4879), 1, + ACTIONS(4888), 1, sym__space, - ACTIONS(7530), 1, + ACTIONS(7539), 1, sym_long_flag_identifier, - ACTIONS(7532), 1, + ACTIONS(7541), 1, anon_sym_EQ2, STATE(4284), 1, sym_comment, - ACTIONS(4881), 13, + ACTIONS(4890), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -375090,7 +375090,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(2089), 1, anon_sym_DASH2, - ACTIONS(7183), 1, + ACTIONS(7192), 1, anon_sym_DOT2, STATE(4013), 1, aux_sym_cell_path_repeat1, @@ -375115,15 +375115,15 @@ static const uint16_t ts_small_parse_table[] = { [160651] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4403), 1, + ACTIONS(4412), 1, anon_sym_LPAREN2, - ACTIONS(4837), 1, + ACTIONS(4846), 1, sym__space, STATE(4286), 1, sym_comment, STATE(7420), 1, sym__expr_parenthesized_immediate, - ACTIONS(4839), 13, + ACTIONS(4848), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -375144,7 +375144,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_shebang_repeat1, STATE(4287), 1, sym_comment, - ACTIONS(7449), 15, + ACTIONS(7458), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -375163,15 +375163,15 @@ static const uint16_t ts_small_parse_table[] = { [160709] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4403), 1, + ACTIONS(4412), 1, anon_sym_LPAREN2, - ACTIONS(4841), 1, + ACTIONS(4850), 1, sym__space, STATE(4288), 1, sym_comment, STATE(7420), 1, sym__expr_parenthesized_immediate, - ACTIONS(4843), 13, + ACTIONS(4852), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -375188,15 +375188,15 @@ static const uint16_t ts_small_parse_table[] = { [160740] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7399), 1, + ACTIONS(7408), 1, anon_sym_and2, - ACTIONS(7463), 1, + ACTIONS(7472), 1, sym__newline, STATE(4120), 1, aux_sym_shebang_repeat1, STATE(4289), 1, sym_comment, - ACTIONS(7397), 13, + ACTIONS(7406), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -375213,14 +375213,14 @@ static const uint16_t ts_small_parse_table[] = { [160771] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7534), 1, + ACTIONS(7543), 1, anon_sym_DOT_DOT2, STATE(4290), 1, sym_comment, ACTIONS(2166), 2, ts_builtin_sym_end, sym__space, - ACTIONS(7536), 2, + ACTIONS(7545), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, ACTIONS(2160), 11, @@ -375238,15 +375238,15 @@ static const uint16_t ts_small_parse_table[] = { [160802] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4403), 1, + ACTIONS(4412), 1, anon_sym_LPAREN2, - ACTIONS(4853), 1, + ACTIONS(4862), 1, sym__space, STATE(4291), 1, sym_comment, STATE(7420), 1, sym__expr_parenthesized_immediate, - ACTIONS(4855), 13, + ACTIONS(4864), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -375265,7 +375265,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(1945), 1, anon_sym_DASH2, - ACTIONS(7183), 1, + ACTIONS(7192), 1, anon_sym_DOT2, STATE(4013), 1, aux_sym_cell_path_repeat1, @@ -375290,15 +375290,15 @@ static const uint16_t ts_small_parse_table[] = { [160868] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7414), 1, + ACTIONS(7423), 1, anon_sym_and2, - ACTIONS(7422), 1, + ACTIONS(7431), 1, anon_sym_xor2, STATE(1706), 1, aux_sym_shebang_repeat1, STATE(4293), 1, sym_comment, - ACTIONS(7451), 13, + ACTIONS(7460), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -375338,7 +375338,7 @@ static const uint16_t ts_small_parse_table[] = { [160926] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4904), 1, + ACTIONS(4913), 1, aux_sym_unquoted_token2, STATE(4295), 1, sym_comment, @@ -375361,15 +375361,15 @@ static const uint16_t ts_small_parse_table[] = { [160953] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7416), 1, + ACTIONS(7425), 1, anon_sym_and2, - ACTIONS(7440), 1, + ACTIONS(7449), 1, anon_sym_xor2, STATE(1706), 1, aux_sym_shebang_repeat1, STATE(4296), 1, sym_comment, - ACTIONS(7451), 13, + ACTIONS(7460), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -375386,15 +375386,15 @@ static const uint16_t ts_small_parse_table[] = { [160984] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4869), 1, + ACTIONS(4878), 1, sym__space, - ACTIONS(7538), 1, + ACTIONS(7547), 1, anon_sym_EQ2, - ACTIONS(7540), 1, + ACTIONS(7549), 1, sym_short_flag_identifier, STATE(4297), 1, sym_comment, - ACTIONS(4871), 13, + ACTIONS(4880), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -375411,7 +375411,7 @@ static const uint16_t ts_small_parse_table[] = { [161015] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4807), 1, + ACTIONS(4816), 1, anon_sym_DOT2, STATE(1414), 1, aux_sym_cell_path_repeat1, @@ -375421,10 +375421,10 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(4867), 1, sym_cell_path, - ACTIONS(7542), 2, + ACTIONS(7551), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(7544), 10, + ACTIONS(7553), 10, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, @@ -375463,13 +375463,13 @@ static const uint16_t ts_small_parse_table[] = { [161081] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7546), 1, + ACTIONS(7555), 1, anon_sym_and2, - ACTIONS(7548), 1, + ACTIONS(7557), 1, anon_sym_xor2, STATE(4300), 1, sym_comment, - ACTIONS(7466), 13, + ACTIONS(7475), 13, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -375486,11 +375486,11 @@ static const uint16_t ts_small_parse_table[] = { [161109] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7546), 1, + ACTIONS(7555), 1, anon_sym_and2, STATE(4301), 1, sym_comment, - ACTIONS(7466), 14, + ACTIONS(7475), 14, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -375508,13 +375508,13 @@ static const uint16_t ts_small_parse_table[] = { [161135] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7552), 1, + ACTIONS(7561), 1, sym__space, STATE(4302), 1, sym_comment, STATE(4361), 1, aux_sym_command_repeat1, - ACTIONS(7550), 13, + ACTIONS(7559), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -375531,19 +375531,19 @@ static const uint16_t ts_small_parse_table[] = { [161163] = 17, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7554), 1, + ACTIONS(7563), 1, sym_identifier, - ACTIONS(7556), 1, + ACTIONS(7565), 1, sym__newline, - ACTIONS(7558), 1, + ACTIONS(7567), 1, anon_sym_RBRACK, - ACTIONS(7560), 1, + ACTIONS(7569), 1, anon_sym_DOLLAR, - ACTIONS(7562), 1, + ACTIONS(7571), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7564), 1, + ACTIONS(7573), 1, anon_sym_DASH_DASH, - ACTIONS(7566), 1, + ACTIONS(7575), 1, anon_sym_DASH2, STATE(3904), 1, sym_param_long_flag, @@ -375588,16 +375588,16 @@ static const uint16_t ts_small_parse_table[] = { [161241] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7568), 1, + ACTIONS(7577), 1, sym_long_flag_identifier, - ACTIONS(7570), 1, + ACTIONS(7579), 1, anon_sym_EQ2, STATE(4305), 1, sym_comment, - ACTIONS(4879), 2, + ACTIONS(4888), 2, ts_builtin_sym_end, sym__space, - ACTIONS(4881), 11, + ACTIONS(4890), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -375614,7 +375614,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(4306), 1, sym_comment, - ACTIONS(7185), 15, + ACTIONS(7194), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -375633,11 +375633,11 @@ static const uint16_t ts_small_parse_table[] = { [161295] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7572), 1, + ACTIONS(7581), 1, anon_sym_and2, STATE(4307), 1, sym_comment, - ACTIONS(7466), 14, + ACTIONS(7475), 14, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -375655,15 +375655,15 @@ static const uint16_t ts_small_parse_table[] = { [161321] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7572), 1, + ACTIONS(7581), 1, anon_sym_and2, - ACTIONS(7574), 1, + ACTIONS(7583), 1, anon_sym_xor2, - ACTIONS(7576), 1, + ACTIONS(7585), 1, anon_sym_or2, STATE(4308), 1, sym_comment, - ACTIONS(7516), 12, + ACTIONS(7525), 12, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -375681,11 +375681,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(2170), 1, anon_sym_DASH2, - ACTIONS(7578), 1, + ACTIONS(7587), 1, anon_sym_DOT_DOT2, STATE(4309), 1, sym_comment, - ACTIONS(7580), 2, + ACTIONS(7589), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, ACTIONS(2176), 11, @@ -375749,7 +375749,7 @@ static const uint16_t ts_small_parse_table[] = { [161437] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7455), 1, + ACTIONS(7464), 1, aux_sym__immediate_decimal_token2, STATE(4312), 1, sym_comment, @@ -375772,9 +375772,9 @@ static const uint16_t ts_small_parse_table[] = { [161465] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7582), 1, + ACTIONS(7591), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7584), 1, + ACTIONS(7593), 1, aux_sym__immediate_decimal_token2, STATE(4313), 1, sym_comment, @@ -375798,7 +375798,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(4314), 1, sym_comment, - ACTIONS(7250), 15, + ACTIONS(7259), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -375819,10 +375819,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(4315), 1, sym_comment, - ACTIONS(4987), 2, + ACTIONS(4996), 2, sym__space, anon_sym_LPAREN2, - ACTIONS(4989), 13, + ACTIONS(4998), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -375841,7 +375841,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(4316), 1, sym_comment, - ACTIONS(7185), 15, + ACTIONS(7194), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -375862,7 +375862,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(4317), 1, sym_comment, - ACTIONS(6877), 15, + ACTIONS(6886), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -375881,7 +375881,7 @@ static const uint16_t ts_small_parse_table[] = { [161593] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7586), 1, + ACTIONS(7595), 1, aux_sym__immediate_decimal_token2, STATE(4318), 1, sym_comment, @@ -375926,16 +375926,16 @@ static const uint16_t ts_small_parse_table[] = { [161647] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4403), 1, + ACTIONS(4412), 1, anon_sym_LPAREN2, STATE(4320), 1, sym_comment, STATE(7344), 1, sym__expr_parenthesized_immediate, - ACTIONS(7528), 2, + ACTIONS(7537), 2, ts_builtin_sym_end, sym__space, - ACTIONS(7526), 11, + ACTIONS(7535), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -375950,9 +375950,9 @@ static const uint16_t ts_small_parse_table[] = { [161677] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7588), 1, + ACTIONS(7597), 1, anon_sym_DOT, - ACTIONS(7590), 1, + ACTIONS(7599), 1, aux_sym__immediate_decimal_token2, STATE(4321), 1, sym_comment, @@ -375974,7 +375974,7 @@ static const uint16_t ts_small_parse_table[] = { [161707] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7592), 1, + ACTIONS(7601), 1, sym__newline, STATE(743), 1, aux_sym__pipe_separator, @@ -375982,7 +375982,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(5022), 1, aux_sym_shebang_repeat1, - ACTIONS(7595), 3, + ACTIONS(7604), 3, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -376001,11 +376001,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(2144), 1, anon_sym_DASH2, - ACTIONS(7597), 1, + ACTIONS(7606), 1, anon_sym_DOT_DOT2, STATE(4323), 1, sym_comment, - ACTIONS(7599), 2, + ACTIONS(7608), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, ACTIONS(2150), 11, @@ -376025,11 +376025,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(2152), 1, anon_sym_DASH2, - ACTIONS(7601), 1, + ACTIONS(7610), 1, anon_sym_DOT_DOT2, STATE(4324), 1, sym_comment, - ACTIONS(7603), 2, + ACTIONS(7612), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, ACTIONS(2158), 11, @@ -376069,19 +376069,19 @@ static const uint16_t ts_small_parse_table[] = { [161825] = 17, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7554), 1, + ACTIONS(7563), 1, sym_identifier, - ACTIONS(7556), 1, + ACTIONS(7565), 1, sym__newline, - ACTIONS(7560), 1, + ACTIONS(7569), 1, anon_sym_DOLLAR, - ACTIONS(7562), 1, + ACTIONS(7571), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7564), 1, + ACTIONS(7573), 1, anon_sym_DASH_DASH, - ACTIONS(7566), 1, + ACTIONS(7575), 1, anon_sym_DASH2, - ACTIONS(7605), 1, + ACTIONS(7614), 1, anon_sym_RPAREN, STATE(3904), 1, sym_param_long_flag, @@ -376106,11 +376106,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(2160), 1, anon_sym_DASH2, - ACTIONS(7607), 1, + ACTIONS(7616), 1, anon_sym_DOT_DOT2, STATE(4327), 1, sym_comment, - ACTIONS(7609), 2, + ACTIONS(7618), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, ACTIONS(2166), 11, @@ -376128,11 +376128,11 @@ static const uint16_t ts_small_parse_table[] = { [161907] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7546), 1, + ACTIONS(7555), 1, anon_sym_and2, STATE(4328), 1, sym_comment, - ACTIONS(7466), 14, + ACTIONS(7475), 14, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -376150,13 +376150,13 @@ static const uint16_t ts_small_parse_table[] = { [161933] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7552), 1, + ACTIONS(7561), 1, sym__space, STATE(4329), 1, sym_comment, STATE(4359), 1, aux_sym_command_repeat1, - ACTIONS(7506), 13, + ACTIONS(7515), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -376173,19 +376173,19 @@ static const uint16_t ts_small_parse_table[] = { [161961] = 17, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7554), 1, + ACTIONS(7563), 1, sym_identifier, - ACTIONS(7556), 1, + ACTIONS(7565), 1, sym__newline, - ACTIONS(7560), 1, + ACTIONS(7569), 1, anon_sym_DOLLAR, - ACTIONS(7562), 1, + ACTIONS(7571), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7564), 1, + ACTIONS(7573), 1, anon_sym_DASH_DASH, - ACTIONS(7566), 1, + ACTIONS(7575), 1, anon_sym_DASH2, - ACTIONS(7611), 1, + ACTIONS(7620), 1, anon_sym_RPAREN, STATE(3904), 1, sym_param_long_flag, @@ -376234,7 +376234,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(1693), 1, sym__space, - ACTIONS(7051), 1, + ACTIONS(7060), 1, aux_sym_unquoted_token2, STATE(4332), 1, sym_comment, @@ -376255,11 +376255,11 @@ static const uint16_t ts_small_parse_table[] = { [162071] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7572), 1, + ACTIONS(7581), 1, anon_sym_and2, STATE(4333), 1, sym_comment, - ACTIONS(7466), 14, + ACTIONS(7475), 14, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -376277,19 +376277,19 @@ static const uint16_t ts_small_parse_table[] = { [162097] = 17, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7554), 1, + ACTIONS(7563), 1, sym_identifier, - ACTIONS(7556), 1, + ACTIONS(7565), 1, sym__newline, - ACTIONS(7560), 1, + ACTIONS(7569), 1, anon_sym_DOLLAR, - ACTIONS(7562), 1, + ACTIONS(7571), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7564), 1, + ACTIONS(7573), 1, anon_sym_DASH_DASH, - ACTIONS(7566), 1, + ACTIONS(7575), 1, anon_sym_DASH2, - ACTIONS(7613), 1, + ACTIONS(7622), 1, anon_sym_PIPE, STATE(3904), 1, sym_param_long_flag, @@ -376314,7 +376314,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(4335), 1, sym_comment, - ACTIONS(7615), 15, + ACTIONS(7624), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -376333,9 +376333,9 @@ static const uint16_t ts_small_parse_table[] = { [162173] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7152), 1, + ACTIONS(7161), 1, aux_sym__immediate_decimal_token2, - ACTIONS(7617), 1, + ACTIONS(7626), 1, anon_sym_DOT, STATE(4336), 1, sym_comment, @@ -376381,15 +376381,15 @@ static const uint16_t ts_small_parse_table[] = { [162233] = 14, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7619), 1, + ACTIONS(7628), 1, sym_identifier, - ACTIONS(7624), 1, + ACTIONS(7633), 1, anon_sym_DOLLAR, - ACTIONS(7627), 1, + ACTIONS(7636), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7630), 1, + ACTIONS(7639), 1, anon_sym_DASH_DASH, - ACTIONS(7633), 1, + ACTIONS(7642), 1, anon_sym_DASH2, STATE(3904), 1, sym_param_long_flag, @@ -376406,23 +376406,23 @@ static const uint16_t ts_small_parse_table[] = { STATE(4338), 2, sym_comment, aux_sym_parameter_parens_repeat1, - ACTIONS(7622), 3, + ACTIONS(7631), 3, anon_sym_PIPE, anon_sym_RBRACK, anon_sym_RPAREN, [162279] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7638), 1, + ACTIONS(7647), 1, anon_sym_DASH2, - ACTIONS(7640), 1, + ACTIONS(7649), 1, anon_sym_DOT_DOT2, STATE(4339), 1, sym_comment, - ACTIONS(7642), 2, + ACTIONS(7651), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(7636), 11, + ACTIONS(7645), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -376437,19 +376437,19 @@ static const uint16_t ts_small_parse_table[] = { [162309] = 17, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7554), 1, + ACTIONS(7563), 1, sym_identifier, - ACTIONS(7556), 1, + ACTIONS(7565), 1, sym__newline, - ACTIONS(7560), 1, + ACTIONS(7569), 1, anon_sym_DOLLAR, - ACTIONS(7562), 1, + ACTIONS(7571), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7564), 1, + ACTIONS(7573), 1, anon_sym_DASH_DASH, - ACTIONS(7566), 1, + ACTIONS(7575), 1, anon_sym_DASH2, - ACTIONS(7644), 1, + ACTIONS(7653), 1, anon_sym_RBRACK, STATE(3904), 1, sym_param_long_flag, @@ -376472,7 +376472,7 @@ static const uint16_t ts_small_parse_table[] = { [162361] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7646), 1, + ACTIONS(7655), 1, sym__newline, STATE(743), 1, aux_sym__pipe_separator, @@ -376480,7 +376480,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(5022), 1, aux_sym_shebang_repeat1, - ACTIONS(7649), 3, + ACTIONS(7658), 3, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -376499,7 +376499,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(4342), 1, sym_comment, - ACTIONS(5000), 15, + ACTIONS(5009), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -376518,19 +376518,19 @@ static const uint16_t ts_small_parse_table[] = { [162417] = 17, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7554), 1, + ACTIONS(7563), 1, sym_identifier, - ACTIONS(7556), 1, + ACTIONS(7565), 1, sym__newline, - ACTIONS(7560), 1, + ACTIONS(7569), 1, anon_sym_DOLLAR, - ACTIONS(7562), 1, + ACTIONS(7571), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7564), 1, + ACTIONS(7573), 1, anon_sym_DASH_DASH, - ACTIONS(7566), 1, + ACTIONS(7575), 1, anon_sym_DASH2, - ACTIONS(7651), 1, + ACTIONS(7660), 1, anon_sym_RBRACK, STATE(3904), 1, sym_param_long_flag, @@ -376575,13 +376575,13 @@ static const uint16_t ts_small_parse_table[] = { [162495] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7572), 1, + ACTIONS(7581), 1, anon_sym_and2, - ACTIONS(7574), 1, + ACTIONS(7583), 1, anon_sym_xor2, STATE(4345), 1, sym_comment, - ACTIONS(7466), 13, + ACTIONS(7475), 13, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -376598,15 +376598,15 @@ static const uint16_t ts_small_parse_table[] = { [162523] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7546), 1, + ACTIONS(7555), 1, anon_sym_and2, - ACTIONS(7548), 1, + ACTIONS(7557), 1, anon_sym_xor2, - ACTIONS(7653), 1, + ACTIONS(7662), 1, anon_sym_or2, STATE(4346), 1, sym_comment, - ACTIONS(7516), 12, + ACTIONS(7525), 12, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -376622,13 +376622,13 @@ static const uint16_t ts_small_parse_table[] = { [162553] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4934), 1, + ACTIONS(4943), 1, sym__space, - ACTIONS(7655), 1, + ACTIONS(7664), 1, anon_sym_EQ2, STATE(4347), 1, sym_comment, - ACTIONS(4936), 13, + ACTIONS(4945), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -376645,13 +376645,13 @@ static const uint16_t ts_small_parse_table[] = { [162581] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4916), 1, + ACTIONS(4925), 1, sym__space, - ACTIONS(7657), 1, + ACTIONS(7666), 1, anon_sym_EQ2, STATE(4348), 1, sym_comment, - ACTIONS(4918), 13, + ACTIONS(4927), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -376670,7 +376670,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(2322), 1, sym__space, - ACTIONS(7659), 1, + ACTIONS(7668), 1, anon_sym_LBRACK2, STATE(4349), 1, sym_comment, @@ -376691,19 +376691,19 @@ static const uint16_t ts_small_parse_table[] = { [162637] = 17, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7554), 1, + ACTIONS(7563), 1, sym_identifier, - ACTIONS(7556), 1, + ACTIONS(7565), 1, sym__newline, - ACTIONS(7560), 1, + ACTIONS(7569), 1, anon_sym_DOLLAR, - ACTIONS(7562), 1, + ACTIONS(7571), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7564), 1, + ACTIONS(7573), 1, anon_sym_DASH_DASH, - ACTIONS(7566), 1, + ACTIONS(7575), 1, anon_sym_DASH2, - ACTIONS(7661), 1, + ACTIONS(7670), 1, anon_sym_RPAREN, STATE(3904), 1, sym_param_long_flag, @@ -376748,19 +376748,19 @@ static const uint16_t ts_small_parse_table[] = { [162715] = 17, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7554), 1, + ACTIONS(7563), 1, sym_identifier, - ACTIONS(7556), 1, + ACTIONS(7565), 1, sym__newline, - ACTIONS(7560), 1, + ACTIONS(7569), 1, anon_sym_DOLLAR, - ACTIONS(7562), 1, + ACTIONS(7571), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7564), 1, + ACTIONS(7573), 1, anon_sym_DASH_DASH, - ACTIONS(7566), 1, + ACTIONS(7575), 1, anon_sym_DASH2, - ACTIONS(7663), 1, + ACTIONS(7672), 1, anon_sym_PIPE, STATE(3904), 1, sym_param_long_flag, @@ -376785,7 +376785,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(4353), 1, sym_comment, - ACTIONS(7250), 15, + ACTIONS(7259), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -376804,16 +376804,16 @@ static const uint16_t ts_small_parse_table[] = { [162791] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7640), 1, + ACTIONS(7649), 1, anon_sym_DOT_DOT2, - ACTIONS(7667), 1, + ACTIONS(7676), 1, anon_sym_DASH2, STATE(4354), 1, sym_comment, - ACTIONS(7642), 2, + ACTIONS(7651), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(7665), 11, + ACTIONS(7674), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -376828,13 +376828,13 @@ static const uint16_t ts_small_parse_table[] = { [162821] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7546), 1, + ACTIONS(7555), 1, anon_sym_and2, - ACTIONS(7548), 1, + ACTIONS(7557), 1, anon_sym_xor2, STATE(4355), 1, sym_comment, - ACTIONS(7466), 13, + ACTIONS(7475), 13, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -376851,13 +376851,13 @@ static const uint16_t ts_small_parse_table[] = { [162849] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7572), 1, + ACTIONS(7581), 1, anon_sym_and2, - ACTIONS(7574), 1, + ACTIONS(7583), 1, anon_sym_xor2, STATE(4356), 1, sym_comment, - ACTIONS(7466), 13, + ACTIONS(7475), 13, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -376874,13 +376874,13 @@ static const uint16_t ts_small_parse_table[] = { [162877] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7552), 1, + ACTIONS(7561), 1, sym__space, STATE(4302), 1, aux_sym_command_repeat1, STATE(4357), 1, sym_comment, - ACTIONS(7669), 13, + ACTIONS(7678), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -376899,10 +376899,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(4358), 1, sym_comment, - ACTIONS(4930), 2, + ACTIONS(4939), 2, sym__space, anon_sym_LPAREN2, - ACTIONS(4932), 13, + ACTIONS(4941), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -376919,13 +376919,13 @@ static const uint16_t ts_small_parse_table[] = { [162931] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7552), 1, + ACTIONS(7561), 1, sym__space, STATE(4359), 1, sym_comment, STATE(4361), 1, aux_sym_command_repeat1, - ACTIONS(7671), 13, + ACTIONS(7680), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -376964,12 +376964,12 @@ static const uint16_t ts_small_parse_table[] = { [162985] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7675), 1, + ACTIONS(7684), 1, sym__space, STATE(4361), 2, sym_comment, aux_sym_command_repeat1, - ACTIONS(7673), 13, + ACTIONS(7682), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -376986,19 +376986,19 @@ static const uint16_t ts_small_parse_table[] = { [163011] = 17, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7554), 1, + ACTIONS(7563), 1, sym_identifier, - ACTIONS(7556), 1, + ACTIONS(7565), 1, sym__newline, - ACTIONS(7560), 1, + ACTIONS(7569), 1, anon_sym_DOLLAR, - ACTIONS(7562), 1, + ACTIONS(7571), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7564), 1, + ACTIONS(7573), 1, anon_sym_DASH_DASH, - ACTIONS(7566), 1, + ACTIONS(7575), 1, anon_sym_DASH2, - ACTIONS(7678), 1, + ACTIONS(7687), 1, anon_sym_RBRACK, STATE(3904), 1, sym_param_long_flag, @@ -377021,16 +377021,16 @@ static const uint16_t ts_small_parse_table[] = { [163063] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4403), 1, + ACTIONS(4412), 1, anon_sym_LPAREN2, STATE(4363), 1, sym_comment, STATE(7420), 1, sym__expr_parenthesized_immediate, - ACTIONS(4837), 2, + ACTIONS(4846), 2, ts_builtin_sym_end, sym__space, - ACTIONS(4839), 11, + ACTIONS(4848), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -377045,16 +377045,16 @@ static const uint16_t ts_small_parse_table[] = { [163093] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4403), 1, + ACTIONS(4412), 1, anon_sym_LPAREN2, STATE(4364), 1, sym_comment, STATE(7420), 1, sym__expr_parenthesized_immediate, - ACTIONS(4841), 2, + ACTIONS(4850), 2, ts_builtin_sym_end, sym__space, - ACTIONS(4843), 11, + ACTIONS(4852), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -377071,7 +377071,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(4365), 1, sym_comment, - ACTIONS(7466), 15, + ACTIONS(7475), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -377092,7 +377092,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(4366), 1, sym_comment, - ACTIONS(7466), 15, + ACTIONS(7475), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -377159,7 +377159,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(4369), 1, sym_comment, - ACTIONS(7250), 15, + ACTIONS(7259), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -377178,16 +377178,16 @@ static const uint16_t ts_small_parse_table[] = { [163251] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7640), 1, + ACTIONS(7649), 1, anon_sym_DOT_DOT2, - ACTIONS(7682), 1, + ACTIONS(7691), 1, anon_sym_DASH2, STATE(4370), 1, sym_comment, - ACTIONS(7642), 2, + ACTIONS(7651), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(7680), 11, + ACTIONS(7689), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -377226,7 +377226,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(4372), 1, sym_comment, - ACTIONS(7185), 15, + ACTIONS(7194), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -377245,16 +377245,16 @@ static const uint16_t ts_small_parse_table[] = { [163331] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7684), 1, + ACTIONS(7693), 1, anon_sym_EQ2, - ACTIONS(7686), 1, + ACTIONS(7695), 1, sym_short_flag_identifier, STATE(4373), 1, sym_comment, - ACTIONS(4869), 2, + ACTIONS(4878), 2, ts_builtin_sym_end, sym__space, - ACTIONS(4871), 11, + ACTIONS(4880), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -377269,16 +377269,16 @@ static const uint16_t ts_small_parse_table[] = { [163361] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4403), 1, + ACTIONS(4412), 1, anon_sym_LPAREN2, STATE(4374), 1, sym_comment, STATE(7420), 1, sym__expr_parenthesized_immediate, - ACTIONS(4853), 2, + ACTIONS(4862), 2, ts_builtin_sym_end, sym__space, - ACTIONS(4855), 11, + ACTIONS(4864), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -377319,7 +377319,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(4376), 1, sym_comment, - ACTIONS(7466), 15, + ACTIONS(7475), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -377410,11 +377410,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(1004), 1, anon_sym_DASH2, - ACTIONS(7640), 1, + ACTIONS(7649), 1, anon_sym_DOT_DOT2, STATE(4380), 1, sym_comment, - ACTIONS(7642), 2, + ACTIONS(7651), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, ACTIONS(1000), 11, @@ -377458,7 +377458,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(4382), 1, sym_comment, - ACTIONS(7466), 15, + ACTIONS(7475), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -377477,19 +377477,19 @@ static const uint16_t ts_small_parse_table[] = { [163615] = 17, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7554), 1, + ACTIONS(7563), 1, sym_identifier, - ACTIONS(7556), 1, + ACTIONS(7565), 1, sym__newline, - ACTIONS(7560), 1, + ACTIONS(7569), 1, anon_sym_DOLLAR, - ACTIONS(7562), 1, + ACTIONS(7571), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7564), 1, + ACTIONS(7573), 1, anon_sym_DASH_DASH, - ACTIONS(7566), 1, + ACTIONS(7575), 1, anon_sym_DASH2, - ACTIONS(7688), 1, + ACTIONS(7697), 1, anon_sym_RPAREN, STATE(3904), 1, sym_param_long_flag, @@ -377512,16 +377512,16 @@ static const uint16_t ts_small_parse_table[] = { [163667] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4403), 1, + ACTIONS(4412), 1, anon_sym_LPAREN2, STATE(4384), 1, sym_comment, STATE(7420), 1, sym__expr_parenthesized_immediate, - ACTIONS(4849), 2, + ACTIONS(4858), 2, ts_builtin_sym_end, sym__space, - ACTIONS(4851), 11, + ACTIONS(4860), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -377625,17 +377625,17 @@ static const uint16_t ts_small_parse_table[] = { [163806] = 14, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3986), 1, + ACTIONS(3995), 1, anon_sym_DOLLAR, - ACTIONS(7690), 1, + ACTIONS(7699), 1, sym__newline, - ACTIONS(7692), 1, + ACTIONS(7701), 1, sym__space, - ACTIONS(7694), 1, + ACTIONS(7703), 1, anon_sym_DASH_DASH, - ACTIONS(7696), 1, + ACTIONS(7705), 1, anon_sym_DASH2, - ACTIONS(7698), 1, + ACTIONS(7707), 1, anon_sym_LBRACE, STATE(1803), 1, sym_block, @@ -377679,7 +377679,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(4391), 1, sym_comment, - ACTIONS(5000), 14, + ACTIONS(5009), 14, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -377697,14 +377697,14 @@ static const uint16_t ts_small_parse_table[] = { [163899] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7700), 1, + ACTIONS(7709), 1, ts_builtin_sym_end, - ACTIONS(7702), 1, + ACTIONS(7711), 1, sym__space, STATE(4392), 2, sym_comment, aux_sym_command_repeat1, - ACTIONS(7673), 11, + ACTIONS(7682), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -377719,14 +377719,14 @@ static const uint16_t ts_small_parse_table[] = { [163926] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7705), 1, + ACTIONS(7714), 1, anon_sym_EQ2, STATE(4393), 1, sym_comment, - ACTIONS(4916), 2, + ACTIONS(4925), 2, ts_builtin_sym_end, sym__space, - ACTIONS(4918), 11, + ACTIONS(4927), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -377741,7 +377741,7 @@ static const uint16_t ts_small_parse_table[] = { [163953] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7707), 1, + ACTIONS(7716), 1, anon_sym_LBRACK2, STATE(4394), 1, sym_comment, @@ -377784,15 +377784,15 @@ static const uint16_t ts_small_parse_table[] = { [164005] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7709), 1, + ACTIONS(7718), 1, sym__newline, - ACTIONS(7714), 1, + ACTIONS(7723), 1, anon_sym_else, STATE(4396), 1, sym_comment, STATE(4503), 1, aux_sym_shebang_repeat1, - ACTIONS(7712), 11, + ACTIONS(7721), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -377851,11 +377851,11 @@ static const uint16_t ts_small_parse_table[] = { [164088] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5012), 1, + ACTIONS(5021), 1, sym__space, STATE(4399), 1, sym_comment, - ACTIONS(5014), 13, + ACTIONS(5023), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -377872,11 +377872,11 @@ static const uint16_t ts_small_parse_table[] = { [164113] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5634), 1, + ACTIONS(5643), 1, sym__space, STATE(4400), 1, sym_comment, - ACTIONS(5632), 13, + ACTIONS(5641), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -377914,15 +377914,15 @@ static const uint16_t ts_small_parse_table[] = { [164163] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7716), 1, + ACTIONS(7725), 1, sym__newline, - ACTIONS(7721), 1, + ACTIONS(7730), 1, anon_sym_else, STATE(4402), 1, sym_comment, STATE(4458), 1, aux_sym_shebang_repeat1, - ACTIONS(7719), 11, + ACTIONS(7728), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -377979,13 +377979,13 @@ static const uint16_t ts_small_parse_table[] = { [164242] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7552), 1, + ACTIONS(7561), 1, sym__space, STATE(4361), 1, aux_sym_command_repeat1, STATE(4405), 1, sym_comment, - ACTIONS(7671), 12, + ACTIONS(7680), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -378001,15 +378001,15 @@ static const uint16_t ts_small_parse_table[] = { [164269] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7723), 1, + ACTIONS(7732), 1, sym__newline, - ACTIONS(7728), 1, + ACTIONS(7737), 1, anon_sym_catch, STATE(4406), 1, sym_comment, STATE(4486), 1, aux_sym_shebang_repeat1, - ACTIONS(7726), 11, + ACTIONS(7735), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -378045,15 +378045,15 @@ static const uint16_t ts_small_parse_table[] = { [164323] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7730), 1, + ACTIONS(7739), 1, sym__newline, - ACTIONS(7732), 1, + ACTIONS(7741), 1, sym__space, STATE(4408), 1, sym_comment, STATE(4499), 1, aux_sym__command_parenthesized_repeat1, - ACTIONS(7734), 11, + ACTIONS(7743), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -378110,15 +378110,15 @@ static const uint16_t ts_small_parse_table[] = { [164402] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7736), 1, + ACTIONS(7745), 1, ts_builtin_sym_end, - ACTIONS(7738), 1, + ACTIONS(7747), 1, sym__space, STATE(4392), 1, aux_sym_command_repeat1, STATE(4411), 1, sym_comment, - ACTIONS(7550), 11, + ACTIONS(7559), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -378154,7 +378154,7 @@ static const uint16_t ts_small_parse_table[] = { [164456] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7740), 1, + ACTIONS(7749), 1, sym__newline, STATE(725), 1, aux_sym__pipe_separator, @@ -378162,7 +378162,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(5022), 1, aux_sym_shebang_repeat1, - ACTIONS(7743), 2, + ACTIONS(7752), 2, anon_sym_SEMI, anon_sym_RPAREN, ACTIONS(2519), 9, @@ -378178,7 +378178,7 @@ static const uint16_t ts_small_parse_table[] = { [164487] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7592), 1, + ACTIONS(7601), 1, sym__newline, STATE(743), 1, aux_sym__pipe_separator, @@ -378186,7 +378186,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(5022), 1, aux_sym_shebang_repeat1, - ACTIONS(7595), 2, + ACTIONS(7604), 2, ts_builtin_sym_end, anon_sym_SEMI, ACTIONS(2519), 9, @@ -378330,7 +378330,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(4421), 1, sym_comment, - ACTIONS(5640), 14, + ACTIONS(5649), 14, sym__newline, sym__space, anon_sym_SEMI, @@ -378348,7 +378348,7 @@ static const uint16_t ts_small_parse_table[] = { [164691] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7745), 1, + ACTIONS(7754), 1, sym__newline, STATE(725), 1, aux_sym__pipe_separator, @@ -378356,7 +378356,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(5022), 1, aux_sym_shebang_repeat1, - ACTIONS(7748), 2, + ACTIONS(7757), 2, anon_sym_SEMI, anon_sym_RPAREN, ACTIONS(2519), 9, @@ -378372,15 +378372,15 @@ static const uint16_t ts_small_parse_table[] = { [164722] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7730), 1, + ACTIONS(7739), 1, sym__newline, - ACTIONS(7732), 1, + ACTIONS(7741), 1, sym__space, STATE(4423), 1, sym_comment, STATE(4501), 1, aux_sym__command_parenthesized_repeat1, - ACTIONS(7750), 11, + ACTIONS(7759), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -378395,11 +378395,11 @@ static const uint16_t ts_small_parse_table[] = { [164751] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7754), 1, + ACTIONS(7763), 1, sym__space, STATE(4424), 1, sym_comment, - ACTIONS(7752), 13, + ACTIONS(7761), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -378416,11 +378416,11 @@ static const uint16_t ts_small_parse_table[] = { [164776] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7373), 1, + ACTIONS(7382), 1, sym__space, STATE(4425), 1, sym_comment, - ACTIONS(7371), 13, + ACTIONS(7380), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -378437,11 +378437,11 @@ static const uint16_t ts_small_parse_table[] = { [164801] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7758), 1, + ACTIONS(7767), 1, sym__space, STATE(4426), 1, sym_comment, - ACTIONS(7756), 13, + ACTIONS(7765), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -378458,11 +378458,11 @@ static const uint16_t ts_small_parse_table[] = { [164826] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7762), 1, + ACTIONS(7771), 1, sym__space, STATE(4427), 1, sym_comment, - ACTIONS(7760), 13, + ACTIONS(7769), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -378479,14 +378479,14 @@ static const uint16_t ts_small_parse_table[] = { [164851] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7764), 1, + ACTIONS(7773), 1, anon_sym_EQ2, STATE(4428), 1, sym_comment, - ACTIONS(4934), 2, + ACTIONS(4943), 2, ts_builtin_sym_end, sym__space, - ACTIONS(4936), 11, + ACTIONS(4945), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -378501,11 +378501,11 @@ static const uint16_t ts_small_parse_table[] = { [164878] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7768), 1, + ACTIONS(7777), 1, sym__space, STATE(4429), 1, sym_comment, - ACTIONS(7766), 13, + ACTIONS(7775), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -378524,13 +378524,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(1683), 1, anon_sym_LPAREN2, - ACTIONS(7682), 1, + ACTIONS(7691), 1, anon_sym_DASH2, STATE(4430), 1, sym_comment, STATE(7241), 1, sym__expr_parenthesized_immediate, - ACTIONS(7680), 11, + ACTIONS(7689), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -378568,11 +378568,11 @@ static const uint16_t ts_small_parse_table[] = { [164961] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7772), 1, + ACTIONS(7781), 1, sym__space, STATE(4432), 1, sym_comment, - ACTIONS(7770), 13, + ACTIONS(7779), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -378610,11 +378610,11 @@ static const uint16_t ts_small_parse_table[] = { [165011] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7528), 1, + ACTIONS(7537), 1, sym__space, STATE(4434), 1, sym_comment, - ACTIONS(7526), 13, + ACTIONS(7535), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -378633,7 +378633,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(4435), 1, sym_comment, - ACTIONS(7615), 14, + ACTIONS(7624), 14, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -378674,11 +378674,11 @@ static const uint16_t ts_small_parse_table[] = { [165088] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5638), 1, + ACTIONS(5647), 1, sym__space, STATE(4437), 1, sym_comment, - ACTIONS(5636), 13, + ACTIONS(5645), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -378695,7 +378695,7 @@ static const uint16_t ts_small_parse_table[] = { [165113] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7646), 1, + ACTIONS(7655), 1, sym__newline, STATE(743), 1, aux_sym__pipe_separator, @@ -378703,7 +378703,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(5022), 1, aux_sym_shebang_repeat1, - ACTIONS(7649), 2, + ACTIONS(7658), 2, ts_builtin_sym_end, anon_sym_SEMI, ACTIONS(2519), 9, @@ -378719,15 +378719,15 @@ static const uint16_t ts_small_parse_table[] = { [165144] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7774), 1, + ACTIONS(7783), 1, sym__newline, - ACTIONS(7779), 1, + ACTIONS(7788), 1, anon_sym_else, STATE(4439), 1, sym_comment, STATE(4459), 1, aux_sym_shebang_repeat1, - ACTIONS(7777), 11, + ACTIONS(7786), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -378742,15 +378742,15 @@ static const uint16_t ts_small_parse_table[] = { [165173] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7781), 1, + ACTIONS(7790), 1, sym__newline, - ACTIONS(7786), 1, + ACTIONS(7795), 1, anon_sym_else, STATE(4440), 1, sym_comment, STATE(4461), 1, aux_sym_shebang_repeat1, - ACTIONS(7784), 11, + ACTIONS(7793), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -378786,11 +378786,11 @@ static const uint16_t ts_small_parse_table[] = { [165227] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5054), 1, + ACTIONS(5063), 1, sym__space, STATE(4442), 1, sym_comment, - ACTIONS(5056), 13, + ACTIONS(5065), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -378828,11 +378828,11 @@ static const uint16_t ts_small_parse_table[] = { [165277] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5058), 1, + ACTIONS(5067), 1, sym__space, STATE(4444), 1, sym_comment, - ACTIONS(5060), 13, + ACTIONS(5069), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -378870,13 +378870,13 @@ static const uint16_t ts_small_parse_table[] = { [165327] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7790), 1, + ACTIONS(7799), 1, anon_sym_LT, - ACTIONS(7792), 1, + ACTIONS(7801), 1, anon_sym_DASH2, STATE(4446), 1, sym_comment, - ACTIONS(7788), 12, + ACTIONS(7797), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -378892,9 +378892,9 @@ static const uint16_t ts_small_parse_table[] = { [165354] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7794), 1, + ACTIONS(7803), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7796), 1, + ACTIONS(7805), 1, aux_sym__immediate_decimal_token2, STATE(4447), 1, sym_comment, @@ -378915,13 +378915,13 @@ static const uint16_t ts_small_parse_table[] = { [165383] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7792), 1, + ACTIONS(7801), 1, anon_sym_DASH2, - ACTIONS(7798), 1, + ACTIONS(7807), 1, anon_sym_LT, STATE(4448), 1, sym_comment, - ACTIONS(7788), 12, + ACTIONS(7797), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -378979,15 +378979,15 @@ static const uint16_t ts_small_parse_table[] = { [165460] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7802), 1, + ACTIONS(7811), 1, anon_sym_AT, - ACTIONS(7804), 1, + ACTIONS(7813), 1, anon_sym_DASH2, STATE(4451), 1, sym_comment, STATE(4811), 1, sym_param_cmd, - ACTIONS(7800), 11, + ACTIONS(7809), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -379002,15 +379002,15 @@ static const uint16_t ts_small_parse_table[] = { [165489] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7802), 1, + ACTIONS(7811), 1, anon_sym_AT, - ACTIONS(7804), 1, + ACTIONS(7813), 1, anon_sym_DASH2, STATE(4452), 1, sym_comment, STATE(4812), 1, sym_param_cmd, - ACTIONS(7800), 11, + ACTIONS(7809), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -379027,11 +379027,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(4453), 1, sym_comment, - ACTIONS(4930), 3, + ACTIONS(4939), 3, ts_builtin_sym_end, sym__space, anon_sym_LPAREN2, - ACTIONS(4932), 11, + ACTIONS(4941), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -379088,11 +379088,11 @@ static const uint16_t ts_small_parse_table[] = { [165593] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7268), 1, + ACTIONS(7277), 1, sym__space, STATE(4456), 1, sym_comment, - ACTIONS(7266), 13, + ACTIONS(7275), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -379111,7 +379111,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(4457), 1, sym_comment, - ACTIONS(5646), 14, + ACTIONS(5655), 14, sym__newline, sym__space, anon_sym_SEMI, @@ -379129,9 +379129,9 @@ static const uint16_t ts_small_parse_table[] = { [165641] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4995), 1, + ACTIONS(5004), 1, sym__newline, - ACTIONS(7806), 1, + ACTIONS(7815), 1, anon_sym_else, STATE(1706), 1, aux_sym_shebang_repeat1, @@ -379152,15 +379152,15 @@ static const uint16_t ts_small_parse_table[] = { [165670] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7809), 1, + ACTIONS(7818), 1, sym__newline, - ACTIONS(7814), 1, + ACTIONS(7823), 1, anon_sym_else, STATE(4459), 1, sym_comment, STATE(4489), 1, aux_sym_shebang_repeat1, - ACTIONS(7812), 11, + ACTIONS(7821), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -379196,15 +379196,15 @@ static const uint16_t ts_small_parse_table[] = { [165724] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7816), 1, + ACTIONS(7825), 1, sym__newline, - ACTIONS(7821), 1, + ACTIONS(7830), 1, anon_sym_else, STATE(4461), 1, sym_comment, STATE(4513), 1, aux_sym_shebang_repeat1, - ACTIONS(7819), 11, + ACTIONS(7828), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -379219,15 +379219,15 @@ static const uint16_t ts_small_parse_table[] = { [165753] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7823), 1, + ACTIONS(7832), 1, sym__newline, - ACTIONS(7828), 1, + ACTIONS(7837), 1, anon_sym_else, STATE(4396), 1, aux_sym_shebang_repeat1, STATE(4462), 1, sym_comment, - ACTIONS(7826), 11, + ACTIONS(7835), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -379242,9 +379242,9 @@ static const uint16_t ts_small_parse_table[] = { [165782] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4995), 1, + ACTIONS(5004), 1, sym__newline, - ACTIONS(7830), 1, + ACTIONS(7839), 1, anon_sym_catch, STATE(1706), 1, aux_sym_shebang_repeat1, @@ -379265,15 +379265,15 @@ static const uint16_t ts_small_parse_table[] = { [165811] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7738), 1, + ACTIONS(7747), 1, sym__space, - ACTIONS(7833), 1, + ACTIONS(7842), 1, ts_builtin_sym_end, STATE(4392), 1, aux_sym_command_repeat1, STATE(4464), 1, sym_comment, - ACTIONS(7671), 11, + ACTIONS(7680), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -379288,9 +379288,9 @@ static const uint16_t ts_small_parse_table[] = { [165840] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7835), 1, + ACTIONS(7844), 1, anon_sym_DOT, - ACTIONS(7837), 1, + ACTIONS(7846), 1, aux_sym__immediate_decimal_token2, STATE(4465), 1, sym_comment, @@ -379311,7 +379311,7 @@ static const uint16_t ts_small_parse_table[] = { [165869] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7590), 1, + ACTIONS(7599), 1, aux_sym__immediate_decimal_token2, STATE(4466), 1, sym_comment, @@ -379459,7 +379459,7 @@ static const uint16_t ts_small_parse_table[] = { [166046] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7839), 1, + ACTIONS(7848), 1, aux_sym__immediate_decimal_token2, STATE(4473), 1, sym_comment, @@ -379504,9 +379504,9 @@ static const uint16_t ts_small_parse_table[] = { [166102] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4995), 1, + ACTIONS(5004), 1, sym__newline, - ACTIONS(7841), 1, + ACTIONS(7850), 1, anon_sym_catch, STATE(1706), 1, aux_sym_shebang_repeat1, @@ -379590,17 +379590,17 @@ static const uint16_t ts_small_parse_table[] = { [166206] = 14, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3986), 1, + ACTIONS(3995), 1, anon_sym_DOLLAR, - ACTIONS(7690), 1, + ACTIONS(7699), 1, sym__newline, - ACTIONS(7692), 1, + ACTIONS(7701), 1, sym__space, - ACTIONS(7694), 1, + ACTIONS(7703), 1, anon_sym_DASH_DASH, - ACTIONS(7696), 1, + ACTIONS(7705), 1, anon_sym_DASH2, - ACTIONS(7698), 1, + ACTIONS(7707), 1, anon_sym_LBRACE, STATE(1803), 1, sym_block, @@ -379726,15 +379726,15 @@ static const uint16_t ts_small_parse_table[] = { [166376] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7844), 1, + ACTIONS(7853), 1, sym__newline, - ACTIONS(7849), 1, + ACTIONS(7858), 1, anon_sym_else, STATE(4402), 1, aux_sym_shebang_repeat1, STATE(4485), 1, sym_comment, - ACTIONS(7847), 11, + ACTIONS(7856), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -379749,15 +379749,15 @@ static const uint16_t ts_small_parse_table[] = { [166405] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7851), 1, + ACTIONS(7860), 1, sym__newline, - ACTIONS(7856), 1, + ACTIONS(7865), 1, anon_sym_catch, STATE(4475), 1, aux_sym_shebang_repeat1, STATE(4486), 1, sym_comment, - ACTIONS(7854), 11, + ACTIONS(7863), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -379772,15 +379772,15 @@ static const uint16_t ts_small_parse_table[] = { [166434] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7858), 1, + ACTIONS(7867), 1, sym__newline, - ACTIONS(7863), 1, + ACTIONS(7872), 1, anon_sym_catch, STATE(4487), 1, sym_comment, STATE(4497), 1, aux_sym_shebang_repeat1, - ACTIONS(7861), 11, + ACTIONS(7870), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -379816,9 +379816,9 @@ static const uint16_t ts_small_parse_table[] = { [166488] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4995), 1, + ACTIONS(5004), 1, sym__newline, - ACTIONS(7865), 1, + ACTIONS(7874), 1, anon_sym_else, STATE(1706), 1, aux_sym_shebang_repeat1, @@ -379881,11 +379881,11 @@ static const uint16_t ts_small_parse_table[] = { [166567] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7870), 1, + ACTIONS(7879), 1, sym__space, STATE(4492), 1, sym_comment, - ACTIONS(7868), 13, + ACTIONS(7877), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -379902,11 +379902,11 @@ static const uint16_t ts_small_parse_table[] = { [166592] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5042), 1, + ACTIONS(5051), 1, sym__space, STATE(4493), 1, sym_comment, - ACTIONS(5044), 13, + ACTIONS(5053), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -379986,15 +379986,15 @@ static const uint16_t ts_small_parse_table[] = { [166692] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7872), 1, + ACTIONS(7881), 1, sym__newline, - ACTIONS(7877), 1, + ACTIONS(7886), 1, anon_sym_catch, STATE(4463), 1, aux_sym_shebang_repeat1, STATE(4497), 1, sym_comment, - ACTIONS(7875), 11, + ACTIONS(7884), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -380030,15 +380030,15 @@ static const uint16_t ts_small_parse_table[] = { [166746] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7730), 1, + ACTIONS(7739), 1, sym__newline, - ACTIONS(7732), 1, + ACTIONS(7741), 1, sym__space, STATE(4499), 1, sym_comment, STATE(4501), 1, aux_sym__command_parenthesized_repeat1, - ACTIONS(7879), 11, + ACTIONS(7888), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -380053,11 +380053,11 @@ static const uint16_t ts_small_parse_table[] = { [166775] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5028), 1, + ACTIONS(5037), 1, sym__space, STATE(4500), 1, sym_comment, - ACTIONS(5030), 13, + ACTIONS(5039), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -380074,14 +380074,14 @@ static const uint16_t ts_small_parse_table[] = { [166800] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7881), 1, + ACTIONS(7890), 1, sym__newline, - ACTIONS(7884), 1, + ACTIONS(7893), 1, sym__space, STATE(4501), 2, sym_comment, aux_sym__command_parenthesized_repeat1, - ACTIONS(7887), 11, + ACTIONS(7896), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -380096,11 +380096,11 @@ static const uint16_t ts_small_parse_table[] = { [166827] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7891), 1, + ACTIONS(7900), 1, anon_sym_catch, STATE(4502), 1, sym_comment, - ACTIONS(7889), 13, + ACTIONS(7898), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -380117,9 +380117,9 @@ static const uint16_t ts_small_parse_table[] = { [166852] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4995), 1, + ACTIONS(5004), 1, sym__newline, - ACTIONS(7893), 1, + ACTIONS(7902), 1, anon_sym_else, STATE(1706), 1, aux_sym_shebang_repeat1, @@ -380188,7 +380188,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(4506), 1, sym_comment, - ACTIONS(5650), 14, + ACTIONS(5659), 14, sym__newline, sym__space, anon_sym_SEMI, @@ -380206,15 +380206,15 @@ static const uint16_t ts_small_parse_table[] = { [166962] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7730), 1, + ACTIONS(7739), 1, sym__newline, - ACTIONS(7732), 1, + ACTIONS(7741), 1, sym__space, STATE(4423), 1, aux_sym__command_parenthesized_repeat1, STATE(4507), 1, sym_comment, - ACTIONS(7896), 11, + ACTIONS(7905), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -380319,9 +380319,9 @@ static const uint16_t ts_small_parse_table[] = { [167103] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7179), 1, + ACTIONS(7188), 1, anon_sym_DOT, - ACTIONS(7181), 1, + ACTIONS(7190), 1, aux_sym__immediate_decimal_token2, STATE(4512), 1, sym_comment, @@ -380342,9 +380342,9 @@ static const uint16_t ts_small_parse_table[] = { [167132] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4995), 1, + ACTIONS(5004), 1, sym__newline, - ACTIONS(7898), 1, + ACTIONS(7907), 1, anon_sym_else, STATE(1706), 1, aux_sym_shebang_repeat1, @@ -380367,13 +380367,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(1683), 1, anon_sym_LPAREN2, - ACTIONS(7638), 1, + ACTIONS(7647), 1, anon_sym_DASH2, STATE(4514), 1, sym_comment, STATE(7241), 1, sym__expr_parenthesized_immediate, - ACTIONS(7636), 11, + ACTIONS(7645), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -380388,15 +380388,15 @@ static const uint16_t ts_small_parse_table[] = { [167190] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7802), 1, + ACTIONS(7811), 1, anon_sym_AT, - ACTIONS(7903), 1, + ACTIONS(7912), 1, anon_sym_DASH2, STATE(4515), 1, sym_comment, STATE(4880), 1, sym_param_cmd, - ACTIONS(7901), 11, + ACTIONS(7910), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -380432,15 +380432,15 @@ static const uint16_t ts_small_parse_table[] = { [167244] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7802), 1, + ACTIONS(7811), 1, anon_sym_AT, - ACTIONS(7907), 1, + ACTIONS(7916), 1, anon_sym_DASH2, STATE(4517), 1, sym_comment, STATE(4877), 1, sym_param_cmd, - ACTIONS(7905), 11, + ACTIONS(7914), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -380455,15 +380455,15 @@ static const uint16_t ts_small_parse_table[] = { [167273] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7738), 1, + ACTIONS(7747), 1, sym__space, - ACTIONS(7909), 1, + ACTIONS(7918), 1, ts_builtin_sym_end, STATE(4411), 1, aux_sym_command_repeat1, STATE(4518), 1, sym_comment, - ACTIONS(7669), 11, + ACTIONS(7678), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -380503,7 +380503,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(2318), 1, anon_sym_DASH2, - ACTIONS(7911), 1, + ACTIONS(7920), 1, anon_sym_LBRACK2, STATE(4520), 1, sym_comment, @@ -380586,11 +380586,11 @@ static const uint16_t ts_small_parse_table[] = { [167433] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7915), 1, + ACTIONS(7924), 1, sym__space, STATE(4524), 1, sym_comment, - ACTIONS(7913), 13, + ACTIONS(7922), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -380649,11 +380649,11 @@ static const uint16_t ts_small_parse_table[] = { [167508] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5018), 1, + ACTIONS(5027), 1, sym__space, STATE(4527), 1, sym_comment, - ACTIONS(5020), 13, + ACTIONS(5029), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -380670,11 +380670,11 @@ static const uint16_t ts_small_parse_table[] = { [167533] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5642), 1, + ACTIONS(5651), 1, sym__space, STATE(4528), 1, sym_comment, - ACTIONS(5640), 13, + ACTIONS(5649), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -380691,11 +380691,11 @@ static const uint16_t ts_small_parse_table[] = { [167558] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5022), 1, + ACTIONS(5031), 1, sym__space, STATE(4529), 1, sym_comment, - ACTIONS(5024), 13, + ACTIONS(5033), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -380737,13 +380737,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(1683), 1, anon_sym_LPAREN2, - ACTIONS(7667), 1, + ACTIONS(7676), 1, anon_sym_DASH2, STATE(4531), 1, sym_comment, STATE(7241), 1, sym__expr_parenthesized_immediate, - ACTIONS(7665), 11, + ACTIONS(7674), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -380758,11 +380758,11 @@ static const uint16_t ts_small_parse_table[] = { [167641] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5652), 1, + ACTIONS(5661), 1, sym__space, STATE(4532), 1, sym_comment, - ACTIONS(5650), 13, + ACTIONS(5659), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -380779,11 +380779,11 @@ static const uint16_t ts_small_parse_table[] = { [167666] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5046), 1, + ACTIONS(5055), 1, sym__space, STATE(4533), 1, sym_comment, - ACTIONS(5048), 13, + ACTIONS(5057), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -380844,15 +380844,15 @@ static const uint16_t ts_small_parse_table[] = { [167745] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7738), 1, + ACTIONS(7747), 1, sym__space, - ACTIONS(7917), 1, + ACTIONS(7926), 1, ts_builtin_sym_end, STATE(4464), 1, aux_sym_command_repeat1, STATE(4536), 1, sym_comment, - ACTIONS(7506), 11, + ACTIONS(7515), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -380869,7 +380869,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(4537), 1, sym_comment, - ACTIONS(5632), 14, + ACTIONS(5641), 14, sym__newline, sym__space, anon_sym_SEMI, @@ -380910,11 +380910,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(4539), 1, sym_comment, - ACTIONS(4987), 3, + ACTIONS(4996), 3, ts_builtin_sym_end, sym__space, anon_sym_LPAREN2, - ACTIONS(4989), 11, + ACTIONS(4998), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -380929,7 +380929,7 @@ static const uint16_t ts_small_parse_table[] = { [167847] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7130), 1, + ACTIONS(7139), 1, aux_sym_unquoted_token2, STATE(4540), 1, sym_comment, @@ -380974,21 +380974,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(1555), 1, aux_sym_unquoted_token2, - ACTIONS(3538), 1, + ACTIONS(3547), 1, anon_sym_DOLLAR, - ACTIONS(4542), 1, + ACTIONS(4551), 1, anon_sym_LPAREN2, - ACTIONS(7919), 1, + ACTIONS(7928), 1, anon_sym_DOT, - ACTIONS(7923), 1, + ACTIONS(7932), 1, aux_sym__immediate_decimal_token4, - ACTIONS(7925), 1, + ACTIONS(7934), 1, aux_sym__immediate_decimal_token5, STATE(4542), 1, sym_comment, STATE(5535), 1, sym__immediate_decimal, - ACTIONS(7921), 2, + ACTIONS(7930), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, STATE(5740), 2, @@ -381001,11 +381001,11 @@ static const uint16_t ts_small_parse_table[] = { [167940] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5648), 1, + ACTIONS(5657), 1, sym__space, STATE(4543), 1, sym_comment, - ACTIONS(5646), 13, + ACTIONS(5655), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -381087,7 +381087,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(4547), 1, sym_comment, - ACTIONS(5636), 14, + ACTIONS(5645), 14, sym__newline, sym__space, anon_sym_SEMI, @@ -381105,11 +381105,11 @@ static const uint16_t ts_small_parse_table[] = { [168063] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5032), 1, + ACTIONS(5041), 1, sym__space, STATE(4548), 1, sym_comment, - ACTIONS(5034), 13, + ACTIONS(5043), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -381126,11 +381126,11 @@ static const uint16_t ts_small_parse_table[] = { [168088] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7929), 1, + ACTIONS(7938), 1, anon_sym_DASH2, STATE(4549), 1, sym_comment, - ACTIONS(7927), 12, + ACTIONS(7936), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -381208,10 +381208,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(4553), 1, sym_comment, - ACTIONS(7870), 2, + ACTIONS(7879), 2, ts_builtin_sym_end, sym__space, - ACTIONS(7868), 11, + ACTIONS(7877), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -381268,7 +381268,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(4556), 1, sym_comment, - ACTIONS(6771), 13, + ACTIONS(6780), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -381285,11 +381285,11 @@ static const uint16_t ts_small_parse_table[] = { [168278] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7933), 1, + ACTIONS(7942), 1, anon_sym_else, STATE(4557), 1, sym_comment, - ACTIONS(7931), 12, + ACTIONS(7940), 12, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -381305,17 +381305,17 @@ static const uint16_t ts_small_parse_table[] = { [168302] = 15, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7554), 1, + ACTIONS(7563), 1, sym_identifier, - ACTIONS(7560), 1, + ACTIONS(7569), 1, anon_sym_DOLLAR, - ACTIONS(7562), 1, + ACTIONS(7571), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7564), 1, + ACTIONS(7573), 1, anon_sym_DASH_DASH, - ACTIONS(7566), 1, + ACTIONS(7575), 1, anon_sym_DASH2, - ACTIONS(7644), 1, + ACTIONS(7653), 1, anon_sym_RBRACK, STATE(3904), 1, sym_param_long_flag, @@ -381338,10 +381338,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(4559), 1, sym_comment, - ACTIONS(5042), 2, + ACTIONS(5051), 2, ts_builtin_sym_end, sym__space, - ACTIONS(5044), 11, + ACTIONS(5053), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -381356,17 +381356,17 @@ static const uint16_t ts_small_parse_table[] = { [168372] = 15, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7554), 1, + ACTIONS(7563), 1, sym_identifier, - ACTIONS(7560), 1, + ACTIONS(7569), 1, anon_sym_DOLLAR, - ACTIONS(7562), 1, + ACTIONS(7571), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7564), 1, + ACTIONS(7573), 1, anon_sym_DASH_DASH, - ACTIONS(7566), 1, + ACTIONS(7575), 1, anon_sym_DASH2, - ACTIONS(7663), 1, + ACTIONS(7672), 1, anon_sym_PIPE, STATE(3904), 1, sym_param_long_flag, @@ -381389,10 +381389,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(4561), 1, sym_comment, - ACTIONS(7915), 2, + ACTIONS(7924), 2, ts_builtin_sym_end, sym__space, - ACTIONS(7913), 11, + ACTIONS(7922), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -381507,17 +381507,17 @@ static const uint16_t ts_small_parse_table[] = { [168562] = 15, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7554), 1, + ACTIONS(7563), 1, sym_identifier, - ACTIONS(7560), 1, + ACTIONS(7569), 1, anon_sym_DOLLAR, - ACTIONS(7562), 1, + ACTIONS(7571), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7564), 1, + ACTIONS(7573), 1, anon_sym_DASH_DASH, - ACTIONS(7566), 1, + ACTIONS(7575), 1, anon_sym_DASH2, - ACTIONS(7935), 1, + ACTIONS(7944), 1, anon_sym_PIPE, STATE(3904), 1, sym_param_long_flag, @@ -381578,7 +381578,7 @@ static const uint16_t ts_small_parse_table[] = { [168656] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7837), 1, + ACTIONS(7846), 1, aux_sym__immediate_decimal_token2, STATE(4570), 1, sym_comment, @@ -381601,7 +381601,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(4571), 1, sym_comment, - ACTIONS(7937), 13, + ACTIONS(7946), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -381618,11 +381618,11 @@ static const uint16_t ts_small_parse_table[] = { [168704] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7792), 1, + ACTIONS(7801), 1, anon_sym_DASH2, STATE(4572), 1, sym_comment, - ACTIONS(7788), 12, + ACTIONS(7797), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -381660,7 +381660,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(4574), 1, sym_comment, - ACTIONS(7939), 13, + ACTIONS(7948), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -381677,11 +381677,11 @@ static const uint16_t ts_small_parse_table[] = { [168774] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3424), 1, + ACTIONS(3433), 1, anon_sym_COLON2, STATE(4575), 1, sym_comment, - ACTIONS(7941), 12, + ACTIONS(7950), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -381719,7 +381719,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(4577), 1, sym_comment, - ACTIONS(7943), 13, + ACTIONS(7952), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -381738,10 +381738,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(4578), 1, sym_comment, - ACTIONS(5028), 2, + ACTIONS(5037), 2, ts_builtin_sym_end, sym__space, - ACTIONS(5030), 11, + ACTIONS(5039), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -381778,10 +381778,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(4580), 1, sym_comment, - ACTIONS(5032), 2, + ACTIONS(5041), 2, ts_builtin_sym_end, sym__space, - ACTIONS(5034), 11, + ACTIONS(5043), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -381818,19 +381818,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(1631), 1, aux_sym_unquoted_token2, - ACTIONS(3538), 1, + ACTIONS(3547), 1, anon_sym_DOLLAR, - ACTIONS(4542), 1, + ACTIONS(4551), 1, anon_sym_LPAREN2, - ACTIONS(7947), 1, + ACTIONS(7956), 1, aux_sym__immediate_decimal_token4, - ACTIONS(7949), 1, + ACTIONS(7958), 1, aux_sym__immediate_decimal_token5, STATE(4582), 1, sym_comment, STATE(6197), 1, sym__immediate_decimal, - ACTIONS(7945), 2, + ACTIONS(7954), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, STATE(2050), 2, @@ -381843,11 +381843,11 @@ static const uint16_t ts_small_parse_table[] = { [168978] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3424), 1, + ACTIONS(3433), 1, anon_sym_COLON2, STATE(4583), 1, sym_comment, - ACTIONS(7951), 12, + ACTIONS(7960), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -381865,7 +381865,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(4584), 1, sym_comment, - ACTIONS(7953), 13, + ACTIONS(7962), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -381902,17 +381902,17 @@ static const uint16_t ts_small_parse_table[] = { [169048] = 15, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7554), 1, + ACTIONS(7563), 1, sym_identifier, - ACTIONS(7560), 1, + ACTIONS(7569), 1, anon_sym_DOLLAR, - ACTIONS(7562), 1, + ACTIONS(7571), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7564), 1, + ACTIONS(7573), 1, anon_sym_DASH_DASH, - ACTIONS(7566), 1, + ACTIONS(7575), 1, anon_sym_DASH2, - ACTIONS(7955), 1, + ACTIONS(7964), 1, anon_sym_RPAREN, STATE(3904), 1, sym_param_long_flag, @@ -381977,7 +381977,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_shebang_repeat1, STATE(4589), 1, sym_comment, - ACTIONS(7957), 12, + ACTIONS(7966), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -381995,10 +381995,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(4590), 1, sym_comment, - ACTIONS(5638), 2, + ACTIONS(5647), 2, ts_builtin_sym_end, sym__space, - ACTIONS(5636), 11, + ACTIONS(5645), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -382035,10 +382035,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(4592), 1, sym_comment, - ACTIONS(5648), 2, + ACTIONS(5657), 2, ts_builtin_sym_end, sym__space, - ACTIONS(5646), 11, + ACTIONS(5655), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -382153,11 +382153,11 @@ static const uint16_t ts_small_parse_table[] = { [169358] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7961), 1, + ACTIONS(7970), 1, anon_sym_DASH2, STATE(4598), 1, sym_comment, - ACTIONS(7959), 12, + ACTIONS(7968), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -382173,11 +382173,11 @@ static const uint16_t ts_small_parse_table[] = { [169382] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7965), 1, + ACTIONS(7974), 1, anon_sym_DASH2, STATE(4599), 1, sym_comment, - ACTIONS(7963), 12, + ACTIONS(7972), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -382215,15 +382215,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(1555), 1, aux_sym_unquoted_token2, - ACTIONS(3538), 1, + ACTIONS(3547), 1, anon_sym_DOLLAR, - ACTIONS(4542), 1, + ACTIONS(4551), 1, anon_sym_LPAREN2, - ACTIONS(7967), 1, + ACTIONS(7976), 1, anon_sym_DOT, - ACTIONS(7971), 1, + ACTIONS(7980), 1, aux_sym__immediate_decimal_token4, - ACTIONS(7973), 1, + ACTIONS(7982), 1, aux_sym__immediate_decimal_token5, STATE(4601), 1, sym_comment, @@ -382232,7 +382232,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1553), 2, anon_sym_PIPE, anon_sym_EQ_GT, - ACTIONS(7969), 2, + ACTIONS(7978), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, STATE(5740), 2, @@ -382261,15 +382261,15 @@ static const uint16_t ts_small_parse_table[] = { [169494] = 13, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3424), 1, + ACTIONS(3433), 1, anon_sym_COLON2, - ACTIONS(7975), 1, + ACTIONS(7984), 1, anon_sym_DOLLAR, - ACTIONS(7977), 1, + ACTIONS(7986), 1, anon_sym_DASH_DASH, - ACTIONS(7979), 1, + ACTIONS(7988), 1, anon_sym_DASH2, - ACTIONS(7981), 1, + ACTIONS(7990), 1, anon_sym_LBRACE, STATE(1803), 1, sym_block, @@ -382294,7 +382294,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(4641), 1, aux_sym_shebang_repeat1, - ACTIONS(7983), 12, + ACTIONS(7992), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -382330,11 +382330,11 @@ static const uint16_t ts_small_parse_table[] = { [169584] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7987), 1, + ACTIONS(7996), 1, anon_sym_DASH2, STATE(4606), 1, sym_comment, - ACTIONS(7985), 12, + ACTIONS(7994), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -382372,7 +382372,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(4608), 1, sym_comment, - ACTIONS(7915), 13, + ACTIONS(7924), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -382409,11 +382409,11 @@ static const uint16_t ts_small_parse_table[] = { [169678] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7991), 1, + ACTIONS(8000), 1, sym__space, STATE(4610), 1, sym_comment, - ACTIONS(7989), 12, + ACTIONS(7998), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -382431,7 +382431,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(4611), 1, sym_comment, - ACTIONS(5070), 13, + ACTIONS(5079), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -382448,11 +382448,11 @@ static const uint16_t ts_small_parse_table[] = { [169724] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7995), 1, + ACTIONS(8004), 1, anon_sym_DASH2, STATE(4612), 1, sym_comment, - ACTIONS(7993), 12, + ACTIONS(8002), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -382468,11 +382468,11 @@ static const uint16_t ts_small_parse_table[] = { [169748] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7999), 1, + ACTIONS(8008), 1, anon_sym_DASH2, STATE(4613), 1, sym_comment, - ACTIONS(7997), 12, + ACTIONS(8006), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -382488,11 +382488,11 @@ static const uint16_t ts_small_parse_table[] = { [169772] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8003), 1, + ACTIONS(8012), 1, anon_sym_DASH2, STATE(4614), 1, sym_comment, - ACTIONS(8001), 12, + ACTIONS(8010), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -382508,11 +382508,11 @@ static const uint16_t ts_small_parse_table[] = { [169796] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8007), 1, + ACTIONS(8016), 1, anon_sym_DASH2, STATE(4615), 1, sym_comment, - ACTIONS(8005), 12, + ACTIONS(8014), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -382550,7 +382550,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(4617), 1, sym_comment, - ACTIONS(8009), 13, + ACTIONS(8018), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -382567,11 +382567,11 @@ static const uint16_t ts_small_parse_table[] = { [169866] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8011), 1, + ACTIONS(8020), 1, anon_sym_catch, STATE(4618), 1, sym_comment, - ACTIONS(7889), 12, + ACTIONS(7898), 12, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -382589,7 +382589,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(4619), 1, sym_comment, - ACTIONS(8013), 13, + ACTIONS(8022), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -382628,7 +382628,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(4621), 1, sym_comment, - ACTIONS(8015), 13, + ACTIONS(8024), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -382667,7 +382667,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(4623), 1, sym_comment, - ACTIONS(8017), 13, + ACTIONS(8026), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -382690,19 +382690,19 @@ static const uint16_t ts_small_parse_table[] = { sym__entry_separator, ACTIONS(1555), 1, aux_sym__unquoted_in_record_token2, - ACTIONS(3088), 1, + ACTIONS(3095), 1, anon_sym_DOLLAR, - ACTIONS(8019), 1, + ACTIONS(8028), 1, anon_sym_LPAREN2, - ACTIONS(8021), 1, + ACTIONS(8030), 1, anon_sym_DOT, - ACTIONS(8023), 1, + ACTIONS(8032), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8025), 1, + ACTIONS(8034), 1, aux_sym__immediate_decimal_token3, - ACTIONS(8027), 1, + ACTIONS(8036), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8029), 1, + ACTIONS(8038), 1, aux_sym__immediate_decimal_token5, STATE(4624), 1, sym_comment, @@ -382714,17 +382714,17 @@ static const uint16_t ts_small_parse_table[] = { [170048] = 15, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7554), 1, + ACTIONS(7563), 1, sym_identifier, - ACTIONS(7560), 1, + ACTIONS(7569), 1, anon_sym_DOLLAR, - ACTIONS(7562), 1, + ACTIONS(7571), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7564), 1, + ACTIONS(7573), 1, anon_sym_DASH_DASH, - ACTIONS(7566), 1, + ACTIONS(7575), 1, anon_sym_DASH2, - ACTIONS(8031), 1, + ACTIONS(8040), 1, anon_sym_RBRACK, STATE(3904), 1, sym_param_long_flag, @@ -382745,17 +382745,17 @@ static const uint16_t ts_small_parse_table[] = { [170094] = 15, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7554), 1, + ACTIONS(7563), 1, sym_identifier, - ACTIONS(7560), 1, + ACTIONS(7569), 1, anon_sym_DOLLAR, - ACTIONS(7562), 1, + ACTIONS(7571), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7564), 1, + ACTIONS(7573), 1, anon_sym_DASH_DASH, - ACTIONS(7566), 1, + ACTIONS(7575), 1, anon_sym_DASH2, - ACTIONS(8033), 1, + ACTIONS(8042), 1, anon_sym_RPAREN, STATE(3904), 1, sym_param_long_flag, @@ -382798,7 +382798,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(4628), 1, sym_comment, - ACTIONS(8035), 13, + ACTIONS(8044), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -382817,10 +382817,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(4629), 1, sym_comment, - ACTIONS(5046), 2, + ACTIONS(5055), 2, ts_builtin_sym_end, sym__space, - ACTIONS(5048), 11, + ACTIONS(5057), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -382857,7 +382857,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(4631), 1, sym_comment, - ACTIONS(8037), 13, + ACTIONS(8046), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -382874,17 +382874,17 @@ static const uint16_t ts_small_parse_table[] = { [170256] = 15, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7554), 1, + ACTIONS(7563), 1, sym_identifier, - ACTIONS(7560), 1, + ACTIONS(7569), 1, anon_sym_DOLLAR, - ACTIONS(7562), 1, + ACTIONS(7571), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7564), 1, + ACTIONS(7573), 1, anon_sym_DASH_DASH, - ACTIONS(7566), 1, + ACTIONS(7575), 1, anon_sym_DASH2, - ACTIONS(7661), 1, + ACTIONS(7670), 1, anon_sym_RPAREN, STATE(3904), 1, sym_param_long_flag, @@ -382907,10 +382907,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(4633), 1, sym_comment, - ACTIONS(7373), 2, + ACTIONS(7382), 2, ts_builtin_sym_end, sym__space, - ACTIONS(7371), 11, + ACTIONS(7380), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -382927,7 +382927,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(4634), 1, sym_comment, - ACTIONS(8039), 13, + ACTIONS(8048), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -382944,11 +382944,11 @@ static const uint16_t ts_small_parse_table[] = { [170348] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8043), 1, + ACTIONS(8052), 1, anon_sym_DASH2, STATE(4635), 1, sym_comment, - ACTIONS(8041), 12, + ACTIONS(8050), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -382966,10 +382966,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(4636), 1, sym_comment, - ACTIONS(5054), 2, + ACTIONS(5063), 2, ts_builtin_sym_end, sym__space, - ACTIONS(5056), 11, + ACTIONS(5065), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -382986,7 +382986,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(4637), 1, sym_comment, - ACTIONS(8045), 13, + ACTIONS(8054), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -383003,13 +383003,13 @@ static const uint16_t ts_small_parse_table[] = { [170418] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8049), 1, + ACTIONS(8058), 1, anon_sym_QMARK, - ACTIONS(8051), 1, + ACTIONS(8060), 1, anon_sym_DASH2, STATE(4638), 1, sym_comment, - ACTIONS(8047), 11, + ACTIONS(8056), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -383026,7 +383026,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(1717), 1, anon_sym_DOT_DOT2, - ACTIONS(8053), 1, + ACTIONS(8062), 1, anon_sym_DOT2, STATE(1497), 1, sym_path, @@ -383072,7 +383072,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_shebang_repeat1, STATE(4641), 1, sym_comment, - ACTIONS(8055), 12, + ACTIONS(8064), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -383108,11 +383108,11 @@ static const uint16_t ts_small_parse_table[] = { [170548] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3422), 1, + ACTIONS(3431), 1, anon_sym_COLON2, STATE(4643), 1, sym_comment, - ACTIONS(7941), 12, + ACTIONS(7950), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -383128,11 +383128,11 @@ static const uint16_t ts_small_parse_table[] = { [170572] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3422), 1, + ACTIONS(3431), 1, anon_sym_COLON2, STATE(4644), 1, sym_comment, - ACTIONS(7951), 12, + ACTIONS(7960), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -383168,15 +383168,15 @@ static const uint16_t ts_small_parse_table[] = { [170620] = 13, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3422), 1, + ACTIONS(3431), 1, anon_sym_COLON2, - ACTIONS(7975), 1, + ACTIONS(7984), 1, anon_sym_DOLLAR, - ACTIONS(7977), 1, + ACTIONS(7986), 1, anon_sym_DASH_DASH, - ACTIONS(7979), 1, + ACTIONS(7988), 1, anon_sym_DASH2, - ACTIONS(7981), 1, + ACTIONS(7990), 1, anon_sym_LBRACE, STATE(1803), 1, sym_block, @@ -383217,11 +383217,11 @@ static const uint16_t ts_small_parse_table[] = { [170686] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8059), 1, + ACTIONS(8068), 1, anon_sym_DASH2, STATE(4648), 1, sym_comment, - ACTIONS(8057), 12, + ACTIONS(8066), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -383237,11 +383237,11 @@ static const uint16_t ts_small_parse_table[] = { [170710] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8063), 1, + ACTIONS(8072), 1, anon_sym_DASH2, STATE(4649), 1, sym_comment, - ACTIONS(8061), 12, + ACTIONS(8070), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -383279,10 +383279,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(4651), 1, sym_comment, - ACTIONS(7754), 2, + ACTIONS(7763), 2, ts_builtin_sym_end, sym__space, - ACTIONS(7752), 11, + ACTIONS(7761), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -383299,7 +383299,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(4652), 1, sym_comment, - ACTIONS(8065), 13, + ACTIONS(8074), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -383318,7 +383318,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(4653), 1, sym_comment, - ACTIONS(8067), 13, + ACTIONS(8076), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -383335,11 +383335,11 @@ static const uint16_t ts_small_parse_table[] = { [170826] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8071), 1, + ACTIONS(8080), 1, anon_sym_DASH2, STATE(4654), 1, sym_comment, - ACTIONS(8069), 12, + ACTIONS(8078), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -383377,10 +383377,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(4656), 1, sym_comment, - ACTIONS(7758), 2, + ACTIONS(7767), 2, ts_builtin_sym_end, sym__space, - ACTIONS(7756), 11, + ACTIONS(7765), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -383395,11 +383395,11 @@ static const uint16_t ts_small_parse_table[] = { [170898] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8075), 1, + ACTIONS(8084), 1, anon_sym_DASH2, STATE(4657), 1, sym_comment, - ACTIONS(8073), 12, + ACTIONS(8082), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -383435,11 +383435,11 @@ static const uint16_t ts_small_parse_table[] = { [170946] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8079), 1, + ACTIONS(8088), 1, anon_sym_DASH2, STATE(4659), 1, sym_comment, - ACTIONS(8077), 12, + ACTIONS(8086), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -383477,19 +383477,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(1643), 1, sym__entry_separator, - ACTIONS(3088), 1, + ACTIONS(3095), 1, anon_sym_DOLLAR, - ACTIONS(8019), 1, + ACTIONS(8028), 1, anon_sym_LPAREN2, - ACTIONS(8081), 1, + ACTIONS(8090), 1, anon_sym_DOT, - ACTIONS(8083), 1, + ACTIONS(8092), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8085), 1, + ACTIONS(8094), 1, aux_sym__immediate_decimal_token3, - ACTIONS(8087), 1, + ACTIONS(8096), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8089), 1, + ACTIONS(8098), 1, aux_sym__immediate_decimal_token5, STATE(4661), 1, sym_comment, @@ -383504,11 +383504,11 @@ static const uint16_t ts_small_parse_table[] = { [171036] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8093), 1, + ACTIONS(8102), 1, anon_sym_DASH2, STATE(4662), 1, sym_comment, - ACTIONS(8091), 12, + ACTIONS(8100), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -383546,10 +383546,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(4664), 1, sym_comment, - ACTIONS(7762), 2, + ACTIONS(7771), 2, ts_builtin_sym_end, sym__space, - ACTIONS(7760), 11, + ACTIONS(7769), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -383606,17 +383606,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(1681), 1, anon_sym_DASH2, - ACTIONS(4596), 1, + ACTIONS(4605), 1, anon_sym_DOT_DOT2, - ACTIONS(8095), 1, + ACTIONS(8104), 1, sym_filesize_unit, - ACTIONS(8097), 1, + ACTIONS(8106), 1, sym_duration_unit, - ACTIONS(8099), 1, + ACTIONS(8108), 1, aux_sym_unquoted_token2, STATE(4667), 1, sym_comment, - ACTIONS(4598), 2, + ACTIONS(4607), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, ACTIONS(1693), 6, @@ -383631,7 +383631,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(4668), 1, sym_comment, - ACTIONS(8101), 13, + ACTIONS(8110), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -383648,7 +383648,7 @@ static const uint16_t ts_small_parse_table[] = { [171212] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8103), 1, + ACTIONS(8112), 1, aux_sym__immediate_decimal_token2, STATE(4669), 1, sym_comment, @@ -383671,10 +383671,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(4670), 1, sym_comment, - ACTIONS(7768), 2, + ACTIONS(7777), 2, ts_builtin_sym_end, sym__space, - ACTIONS(7766), 11, + ACTIONS(7775), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -383733,7 +383733,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_shebang_repeat1, STATE(4673), 1, sym_comment, - ACTIONS(8105), 12, + ACTIONS(8114), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -383751,10 +383751,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(4674), 1, sym_comment, - ACTIONS(7772), 2, + ACTIONS(7781), 2, ts_builtin_sym_end, sym__space, - ACTIONS(7770), 11, + ACTIONS(7779), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -383769,17 +383769,17 @@ static const uint16_t ts_small_parse_table[] = { [171358] = 15, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7554), 1, + ACTIONS(7563), 1, sym_identifier, - ACTIONS(7560), 1, + ACTIONS(7569), 1, anon_sym_DOLLAR, - ACTIONS(7562), 1, + ACTIONS(7571), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7564), 1, + ACTIONS(7573), 1, anon_sym_DASH_DASH, - ACTIONS(7566), 1, + ACTIONS(7575), 1, anon_sym_DASH2, - ACTIONS(7688), 1, + ACTIONS(7697), 1, anon_sym_RPAREN, STATE(3904), 1, sym_param_long_flag, @@ -383822,10 +383822,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(4677), 1, sym_comment, - ACTIONS(5018), 2, + ACTIONS(5027), 2, ts_builtin_sym_end, sym__space, - ACTIONS(5020), 11, + ACTIONS(5029), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -383842,10 +383842,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(4678), 1, sym_comment, - ACTIONS(5022), 2, + ACTIONS(5031), 2, ts_builtin_sym_end, sym__space, - ACTIONS(5024), 11, + ACTIONS(5033), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -383862,7 +383862,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(1681), 1, anon_sym_DASH2, - ACTIONS(7177), 1, + ACTIONS(7186), 1, aux_sym__unquoted_in_record_token2, STATE(4679), 1, sym_comment, @@ -383903,7 +383903,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(4681), 1, sym_comment, - ACTIONS(8107), 13, + ACTIONS(8116), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -383962,7 +383962,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(4684), 1, sym_comment, - ACTIONS(7941), 13, + ACTIONS(7950), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -383981,7 +383981,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(4685), 1, sym_comment, - ACTIONS(8109), 13, + ACTIONS(8118), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -384058,11 +384058,11 @@ static const uint16_t ts_small_parse_table[] = { [171712] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8111), 1, + ACTIONS(8120), 1, anon_sym_else, STATE(4689), 1, sym_comment, - ACTIONS(7931), 12, + ACTIONS(7940), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -384098,17 +384098,17 @@ static const uint16_t ts_small_parse_table[] = { [171760] = 15, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7554), 1, + ACTIONS(7563), 1, sym_identifier, - ACTIONS(7560), 1, + ACTIONS(7569), 1, anon_sym_DOLLAR, - ACTIONS(7562), 1, + ACTIONS(7571), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7564), 1, + ACTIONS(7573), 1, anon_sym_DASH_DASH, - ACTIONS(7566), 1, + ACTIONS(7575), 1, anon_sym_DASH2, - ACTIONS(7678), 1, + ACTIONS(7687), 1, anon_sym_RBRACK, STATE(3904), 1, sym_param_long_flag, @@ -384251,7 +384251,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(4698), 1, sym_comment, - ACTIONS(8113), 13, + ACTIONS(8122), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -384274,19 +384274,19 @@ static const uint16_t ts_small_parse_table[] = { sym__entry_separator, ACTIONS(1555), 1, aux_sym__unquoted_in_list_token2, - ACTIONS(3088), 1, + ACTIONS(3095), 1, anon_sym_DOLLAR, - ACTIONS(8019), 1, + ACTIONS(8028), 1, anon_sym_LPAREN2, - ACTIONS(8083), 1, + ACTIONS(8092), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8085), 1, + ACTIONS(8094), 1, aux_sym__immediate_decimal_token3, - ACTIONS(8087), 1, + ACTIONS(8096), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8089), 1, + ACTIONS(8098), 1, aux_sym__immediate_decimal_token5, - ACTIONS(8115), 1, + ACTIONS(8124), 1, anon_sym_DOT, STATE(4699), 1, sym_comment, @@ -384400,7 +384400,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(4705), 1, sym_comment, - ACTIONS(7951), 13, + ACTIONS(7960), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -384417,11 +384417,11 @@ static const uint16_t ts_small_parse_table[] = { [172158] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8119), 1, + ACTIONS(8128), 1, anon_sym_DASH2, STATE(4706), 1, sym_comment, - ACTIONS(8117), 12, + ACTIONS(8126), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -384437,11 +384437,11 @@ static const uint16_t ts_small_parse_table[] = { [172182] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8123), 1, + ACTIONS(8132), 1, anon_sym_DASH2, STATE(4707), 1, sym_comment, - ACTIONS(8121), 12, + ACTIONS(8130), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -384457,15 +384457,15 @@ static const uint16_t ts_small_parse_table[] = { [172206] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7844), 1, + ACTIONS(7853), 1, sym__newline, - ACTIONS(8125), 1, + ACTIONS(8134), 1, anon_sym_else, STATE(4708), 1, sym_comment, STATE(4709), 1, aux_sym_shebang_repeat1, - ACTIONS(7847), 10, + ACTIONS(7856), 10, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -384479,15 +384479,15 @@ static const uint16_t ts_small_parse_table[] = { [172234] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7716), 1, + ACTIONS(7725), 1, sym__newline, - ACTIONS(8127), 1, + ACTIONS(8136), 1, anon_sym_else, STATE(4709), 1, sym_comment, STATE(4712), 1, aux_sym_shebang_repeat1, - ACTIONS(7719), 10, + ACTIONS(7728), 10, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -384501,15 +384501,15 @@ static const uint16_t ts_small_parse_table[] = { [172262] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7774), 1, + ACTIONS(7783), 1, sym__newline, - ACTIONS(8129), 1, + ACTIONS(8138), 1, anon_sym_else, STATE(4710), 1, sym_comment, STATE(4713), 1, aux_sym_shebang_repeat1, - ACTIONS(7777), 10, + ACTIONS(7786), 10, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -384523,15 +384523,15 @@ static const uint16_t ts_small_parse_table[] = { [172290] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7781), 1, + ACTIONS(7790), 1, sym__newline, - ACTIONS(8131), 1, + ACTIONS(8140), 1, anon_sym_else, STATE(4711), 1, sym_comment, STATE(4714), 1, aux_sym_shebang_repeat1, - ACTIONS(7784), 10, + ACTIONS(7793), 10, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -384545,9 +384545,9 @@ static const uint16_t ts_small_parse_table[] = { [172318] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4995), 1, + ACTIONS(5004), 1, sym__newline, - ACTIONS(8133), 1, + ACTIONS(8142), 1, anon_sym_else, STATE(1706), 1, aux_sym_shebang_repeat1, @@ -384567,15 +384567,15 @@ static const uint16_t ts_small_parse_table[] = { [172346] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7809), 1, + ACTIONS(7818), 1, sym__newline, - ACTIONS(8136), 1, + ACTIONS(8145), 1, anon_sym_else, STATE(4713), 1, sym_comment, STATE(4718), 1, aux_sym_shebang_repeat1, - ACTIONS(7812), 10, + ACTIONS(7821), 10, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -384589,15 +384589,15 @@ static const uint16_t ts_small_parse_table[] = { [172374] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7816), 1, + ACTIONS(7825), 1, sym__newline, - ACTIONS(8138), 1, + ACTIONS(8147), 1, anon_sym_else, STATE(4714), 1, sym_comment, STATE(4719), 1, aux_sym_shebang_repeat1, - ACTIONS(7819), 10, + ACTIONS(7828), 10, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -384611,15 +384611,15 @@ static const uint16_t ts_small_parse_table[] = { [172402] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7823), 1, + ACTIONS(7832), 1, sym__newline, - ACTIONS(8140), 1, + ACTIONS(8149), 1, anon_sym_else, STATE(4715), 1, sym_comment, STATE(4720), 1, aux_sym_shebang_repeat1, - ACTIONS(7826), 10, + ACTIONS(7835), 10, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -384673,9 +384673,9 @@ static const uint16_t ts_small_parse_table[] = { [172478] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4995), 1, + ACTIONS(5004), 1, sym__newline, - ACTIONS(8142), 1, + ACTIONS(8151), 1, anon_sym_else, STATE(1706), 1, aux_sym_shebang_repeat1, @@ -384695,9 +384695,9 @@ static const uint16_t ts_small_parse_table[] = { [172506] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4995), 1, + ACTIONS(5004), 1, sym__newline, - ACTIONS(8145), 1, + ACTIONS(8154), 1, anon_sym_else, STATE(1706), 1, aux_sym_shebang_repeat1, @@ -384717,15 +384717,15 @@ static const uint16_t ts_small_parse_table[] = { [172534] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7709), 1, + ACTIONS(7718), 1, sym__newline, - ACTIONS(8148), 1, + ACTIONS(8157), 1, anon_sym_else, STATE(4720), 1, sym_comment, STATE(4725), 1, aux_sym_shebang_repeat1, - ACTIONS(7712), 10, + ACTIONS(7721), 10, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -384741,10 +384741,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(4721), 1, sym_comment, - ACTIONS(7528), 2, + ACTIONS(7537), 2, ts_builtin_sym_end, sym__space, - ACTIONS(7526), 11, + ACTIONS(7535), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -384761,10 +384761,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(4722), 1, sym_comment, - ACTIONS(5642), 2, + ACTIONS(5651), 2, ts_builtin_sym_end, sym__space, - ACTIONS(5640), 11, + ACTIONS(5649), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -384819,9 +384819,9 @@ static const uint16_t ts_small_parse_table[] = { [172658] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4995), 1, + ACTIONS(5004), 1, sym__newline, - ACTIONS(8150), 1, + ACTIONS(8159), 1, anon_sym_else, STATE(1706), 1, aux_sym_shebang_repeat1, @@ -384881,11 +384881,11 @@ static const uint16_t ts_small_parse_table[] = { [172734] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8155), 1, + ACTIONS(8164), 1, anon_sym_DASH2, STATE(4728), 1, sym_comment, - ACTIONS(8153), 12, + ACTIONS(8162), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -384983,7 +384983,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(4733), 1, sym_comment, - ACTIONS(6753), 13, + ACTIONS(6762), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -385022,7 +385022,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(4735), 1, sym_comment, - ACTIONS(5066), 13, + ACTIONS(5075), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -385039,11 +385039,11 @@ static const uint16_t ts_small_parse_table[] = { [172922] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8159), 1, + ACTIONS(8168), 1, anon_sym_DASH2, STATE(4736), 1, sym_comment, - ACTIONS(8157), 12, + ACTIONS(8166), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -385059,11 +385059,11 @@ static const uint16_t ts_small_parse_table[] = { [172946] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8163), 1, + ACTIONS(8172), 1, anon_sym_DASH2, STATE(4737), 1, sym_comment, - ACTIONS(8161), 12, + ACTIONS(8170), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -385079,11 +385079,11 @@ static const uint16_t ts_small_parse_table[] = { [172970] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8167), 1, + ACTIONS(8176), 1, anon_sym_DASH2, STATE(4738), 1, sym_comment, - ACTIONS(8165), 12, + ACTIONS(8174), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -385099,11 +385099,11 @@ static const uint16_t ts_small_parse_table[] = { [172994] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8171), 1, + ACTIONS(8180), 1, anon_sym_DASH2, STATE(4739), 1, sym_comment, - ACTIONS(8169), 12, + ACTIONS(8178), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -385139,11 +385139,11 @@ static const uint16_t ts_small_parse_table[] = { [173042] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8175), 1, + ACTIONS(8184), 1, anon_sym_DASH2, STATE(4741), 1, sym_comment, - ACTIONS(8173), 12, + ACTIONS(8182), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -385199,11 +385199,11 @@ static const uint16_t ts_small_parse_table[] = { [173114] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8177), 1, + ACTIONS(8186), 1, anon_sym_else, STATE(4744), 1, sym_comment, - ACTIONS(7931), 12, + ACTIONS(7940), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -385259,11 +385259,11 @@ static const uint16_t ts_small_parse_table[] = { [173186] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8181), 1, + ACTIONS(8190), 1, anon_sym_DASH2, STATE(4747), 1, sym_comment, - ACTIONS(8179), 12, + ACTIONS(8188), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -385279,11 +385279,11 @@ static const uint16_t ts_small_parse_table[] = { [173210] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8185), 1, + ACTIONS(8194), 1, anon_sym_DASH2, STATE(4748), 1, sym_comment, - ACTIONS(8183), 12, + ACTIONS(8192), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -385299,11 +385299,11 @@ static const uint16_t ts_small_parse_table[] = { [173234] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8189), 1, + ACTIONS(8198), 1, anon_sym_DASH2, STATE(4749), 1, sym_comment, - ACTIONS(8187), 12, + ACTIONS(8196), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -385319,11 +385319,11 @@ static const uint16_t ts_small_parse_table[] = { [173258] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8193), 1, + ACTIONS(8202), 1, anon_sym_DASH2, STATE(4750), 1, sym_comment, - ACTIONS(8191), 12, + ACTIONS(8200), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -385339,11 +385339,11 @@ static const uint16_t ts_small_parse_table[] = { [173282] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8197), 1, + ACTIONS(8206), 1, anon_sym_DASH2, STATE(4751), 1, sym_comment, - ACTIONS(8195), 12, + ACTIONS(8204), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -385359,11 +385359,11 @@ static const uint16_t ts_small_parse_table[] = { [173306] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8201), 1, + ACTIONS(8210), 1, anon_sym_DASH2, STATE(4752), 1, sym_comment, - ACTIONS(8199), 12, + ACTIONS(8208), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -385379,11 +385379,11 @@ static const uint16_t ts_small_parse_table[] = { [173330] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8205), 1, + ACTIONS(8214), 1, anon_sym_DASH2, STATE(4753), 1, sym_comment, - ACTIONS(8203), 12, + ACTIONS(8212), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -385399,11 +385399,11 @@ static const uint16_t ts_small_parse_table[] = { [173354] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8209), 1, + ACTIONS(8218), 1, anon_sym_DASH2, STATE(4754), 1, sym_comment, - ACTIONS(8207), 12, + ACTIONS(8216), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -385419,11 +385419,11 @@ static const uint16_t ts_small_parse_table[] = { [173378] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8213), 1, + ACTIONS(8222), 1, anon_sym_DASH2, STATE(4755), 1, sym_comment, - ACTIONS(8211), 12, + ACTIONS(8220), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -385439,11 +385439,11 @@ static const uint16_t ts_small_parse_table[] = { [173402] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8217), 1, + ACTIONS(8226), 1, anon_sym_DASH2, STATE(4756), 1, sym_comment, - ACTIONS(8215), 12, + ACTIONS(8224), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -385461,10 +385461,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(4757), 1, sym_comment, - ACTIONS(5634), 2, + ACTIONS(5643), 2, ts_builtin_sym_end, sym__space, - ACTIONS(5632), 11, + ACTIONS(5641), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -385479,11 +385479,11 @@ static const uint16_t ts_small_parse_table[] = { [173450] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8221), 1, + ACTIONS(8230), 1, anon_sym_DASH2, STATE(4758), 1, sym_comment, - ACTIONS(8219), 12, + ACTIONS(8228), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -385499,11 +385499,11 @@ static const uint16_t ts_small_parse_table[] = { [173474] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8225), 1, + ACTIONS(8234), 1, anon_sym_DASH2, STATE(4759), 1, sym_comment, - ACTIONS(8223), 12, + ACTIONS(8232), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -385519,11 +385519,11 @@ static const uint16_t ts_small_parse_table[] = { [173498] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8229), 1, + ACTIONS(8238), 1, anon_sym_DASH2, STATE(4760), 1, sym_comment, - ACTIONS(8227), 12, + ACTIONS(8236), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -385539,11 +385539,11 @@ static const uint16_t ts_small_parse_table[] = { [173522] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8233), 1, + ACTIONS(8242), 1, anon_sym_DASH2, STATE(4761), 1, sym_comment, - ACTIONS(8231), 12, + ACTIONS(8240), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -385559,11 +385559,11 @@ static const uint16_t ts_small_parse_table[] = { [173546] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8237), 1, + ACTIONS(8246), 1, anon_sym_DASH2, STATE(4762), 1, sym_comment, - ACTIONS(8235), 12, + ACTIONS(8244), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -385579,11 +385579,11 @@ static const uint16_t ts_small_parse_table[] = { [173570] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8241), 1, + ACTIONS(8250), 1, anon_sym_DASH2, STATE(4763), 1, sym_comment, - ACTIONS(8239), 12, + ACTIONS(8248), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -385599,11 +385599,11 @@ static const uint16_t ts_small_parse_table[] = { [173594] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8245), 1, + ACTIONS(8254), 1, anon_sym_DASH2, STATE(4764), 1, sym_comment, - ACTIONS(8243), 12, + ACTIONS(8252), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -385619,11 +385619,11 @@ static const uint16_t ts_small_parse_table[] = { [173618] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8249), 1, + ACTIONS(8258), 1, anon_sym_DASH2, STATE(4765), 1, sym_comment, - ACTIONS(8247), 12, + ACTIONS(8256), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -385639,11 +385639,11 @@ static const uint16_t ts_small_parse_table[] = { [173642] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8253), 1, + ACTIONS(8262), 1, anon_sym_DASH2, STATE(4766), 1, sym_comment, - ACTIONS(8251), 12, + ACTIONS(8260), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -385659,11 +385659,11 @@ static const uint16_t ts_small_parse_table[] = { [173666] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8257), 1, + ACTIONS(8266), 1, anon_sym_DASH2, STATE(4767), 1, sym_comment, - ACTIONS(8255), 12, + ACTIONS(8264), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -385699,11 +385699,11 @@ static const uint16_t ts_small_parse_table[] = { [173714] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8261), 1, + ACTIONS(8270), 1, anon_sym_DASH2, STATE(4769), 1, sym_comment, - ACTIONS(8259), 12, + ACTIONS(8268), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -385759,11 +385759,11 @@ static const uint16_t ts_small_parse_table[] = { [173786] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8265), 1, + ACTIONS(8274), 1, anon_sym_DASH2, STATE(4772), 1, sym_comment, - ACTIONS(8263), 12, + ACTIONS(8272), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -385801,10 +385801,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(4774), 1, sym_comment, - ACTIONS(5012), 2, + ACTIONS(5021), 2, ts_builtin_sym_end, sym__space, - ACTIONS(5014), 11, + ACTIONS(5023), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -385839,11 +385839,11 @@ static const uint16_t ts_small_parse_table[] = { [173882] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8269), 1, + ACTIONS(8278), 1, anon_sym_DASH2, STATE(4776), 1, sym_comment, - ACTIONS(8267), 12, + ACTIONS(8276), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -385881,10 +385881,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(4778), 1, sym_comment, - ACTIONS(5652), 2, + ACTIONS(5661), 2, ts_builtin_sym_end, sym__space, - ACTIONS(5650), 11, + ACTIONS(5659), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -385921,7 +385921,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(1721), 1, anon_sym_DOT_DOT2, - ACTIONS(8053), 1, + ACTIONS(8062), 1, anon_sym_DOT2, STATE(1497), 1, sym_path, @@ -385963,11 +385963,11 @@ static const uint16_t ts_small_parse_table[] = { [174034] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8273), 1, + ACTIONS(8282), 1, anon_sym_DASH2, STATE(4782), 1, sym_comment, - ACTIONS(8271), 12, + ACTIONS(8280), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -385983,11 +385983,11 @@ static const uint16_t ts_small_parse_table[] = { [174058] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8277), 1, + ACTIONS(8286), 1, anon_sym_DASH2, STATE(4783), 1, sym_comment, - ACTIONS(8275), 12, + ACTIONS(8284), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -386003,11 +386003,11 @@ static const uint16_t ts_small_parse_table[] = { [174082] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8281), 1, + ACTIONS(8290), 1, anon_sym_DASH2, STATE(4784), 1, sym_comment, - ACTIONS(8279), 12, + ACTIONS(8288), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -386023,11 +386023,11 @@ static const uint16_t ts_small_parse_table[] = { [174106] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8285), 1, + ACTIONS(8294), 1, anon_sym_DASH2, STATE(4785), 1, sym_comment, - ACTIONS(8283), 12, + ACTIONS(8292), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -386043,11 +386043,11 @@ static const uint16_t ts_small_parse_table[] = { [174130] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8289), 1, + ACTIONS(8298), 1, anon_sym_DASH2, STATE(4786), 1, sym_comment, - ACTIONS(8287), 12, + ACTIONS(8296), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -386063,11 +386063,11 @@ static const uint16_t ts_small_parse_table[] = { [174154] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8293), 1, + ACTIONS(8302), 1, anon_sym_DASH2, STATE(4787), 1, sym_comment, - ACTIONS(8291), 12, + ACTIONS(8300), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -386083,11 +386083,11 @@ static const uint16_t ts_small_parse_table[] = { [174178] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8297), 1, + ACTIONS(8306), 1, anon_sym_DASH2, STATE(4788), 1, sym_comment, - ACTIONS(8295), 12, + ACTIONS(8304), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -386103,11 +386103,11 @@ static const uint16_t ts_small_parse_table[] = { [174202] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8301), 1, + ACTIONS(8310), 1, anon_sym_DASH2, STATE(4789), 1, sym_comment, - ACTIONS(8299), 12, + ACTIONS(8308), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -386123,11 +386123,11 @@ static const uint16_t ts_small_parse_table[] = { [174226] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8305), 1, + ACTIONS(8314), 1, anon_sym_DASH2, STATE(4790), 1, sym_comment, - ACTIONS(8303), 12, + ACTIONS(8312), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -386145,10 +386145,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(4791), 1, sym_comment, - ACTIONS(7268), 2, + ACTIONS(7277), 2, ts_builtin_sym_end, sym__space, - ACTIONS(7266), 11, + ACTIONS(7275), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -386165,19 +386165,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(1555), 1, aux_sym_unquoted_token2, - ACTIONS(3538), 1, + ACTIONS(3547), 1, anon_sym_DOLLAR, - ACTIONS(4542), 1, + ACTIONS(4551), 1, anon_sym_LPAREN2, - ACTIONS(7947), 1, + ACTIONS(7956), 1, aux_sym__immediate_decimal_token4, - ACTIONS(7949), 1, + ACTIONS(7958), 1, aux_sym__immediate_decimal_token5, STATE(4792), 1, sym_comment, STATE(6532), 1, sym__immediate_decimal, - ACTIONS(7945), 2, + ACTIONS(7954), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, STATE(2035), 2, @@ -386210,17 +386210,17 @@ static const uint16_t ts_small_parse_table[] = { [174336] = 15, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7554), 1, + ACTIONS(7563), 1, sym_identifier, - ACTIONS(7560), 1, + ACTIONS(7569), 1, anon_sym_DOLLAR, - ACTIONS(7562), 1, + ACTIONS(7571), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7564), 1, + ACTIONS(7573), 1, anon_sym_DASH_DASH, - ACTIONS(7566), 1, + ACTIONS(7575), 1, anon_sym_DASH2, - ACTIONS(8307), 1, + ACTIONS(8316), 1, anon_sym_RBRACK, STATE(3904), 1, sym_param_long_flag, @@ -386241,21 +386241,21 @@ static const uint16_t ts_small_parse_table[] = { [174382] = 11, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3538), 1, + ACTIONS(3547), 1, anon_sym_DOLLAR, - ACTIONS(4542), 1, + ACTIONS(4551), 1, anon_sym_LPAREN2, - ACTIONS(4544), 1, + ACTIONS(4553), 1, anon_sym_DOT, - ACTIONS(7923), 1, + ACTIONS(7932), 1, aux_sym__immediate_decimal_token4, - ACTIONS(7925), 1, + ACTIONS(7934), 1, aux_sym__immediate_decimal_token5, STATE(4795), 1, sym_comment, STATE(5739), 1, sym__immediate_decimal, - ACTIONS(7921), 2, + ACTIONS(7930), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, STATE(5738), 2, @@ -386348,11 +386348,11 @@ static const uint16_t ts_small_parse_table[] = { [174516] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8311), 1, + ACTIONS(8320), 1, anon_sym_DASH2, STATE(4800), 1, sym_comment, - ACTIONS(8309), 12, + ACTIONS(8318), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -386410,10 +386410,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(4803), 1, sym_comment, - ACTIONS(5058), 2, + ACTIONS(5067), 2, ts_builtin_sym_end, sym__space, - ACTIONS(5060), 11, + ACTIONS(5069), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -386430,7 +386430,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(4804), 1, sym_comment, - ACTIONS(8113), 12, + ACTIONS(8122), 12, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -386446,11 +386446,11 @@ static const uint16_t ts_small_parse_table[] = { [174633] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8315), 1, + ACTIONS(8324), 1, anon_sym_DASH2, STATE(4805), 1, sym_comment, - ACTIONS(8313), 11, + ACTIONS(8322), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -386465,11 +386465,11 @@ static const uint16_t ts_small_parse_table[] = { [174656] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7638), 1, + ACTIONS(7647), 1, anon_sym_DASH2, STATE(4806), 1, sym_comment, - ACTIONS(7636), 11, + ACTIONS(7645), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -386484,13 +386484,13 @@ static const uint16_t ts_small_parse_table[] = { [174679] = 12, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7977), 1, + ACTIONS(7986), 1, anon_sym_DASH_DASH, - ACTIONS(7979), 1, + ACTIONS(7988), 1, anon_sym_DASH2, - ACTIONS(8317), 1, + ACTIONS(8326), 1, anon_sym_DOLLAR, - ACTIONS(8319), 1, + ACTIONS(8328), 1, anon_sym_LBRACE, STATE(1865), 1, sym_block, @@ -386513,7 +386513,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(4808), 1, sym_comment, - ACTIONS(6849), 12, + ACTIONS(6858), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -386529,9 +386529,9 @@ static const uint16_t ts_small_parse_table[] = { [174739] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8321), 1, + ACTIONS(8330), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8323), 1, + ACTIONS(8332), 1, aux_sym__immediate_decimal_token2, STATE(4809), 1, sym_comment, @@ -386550,9 +386550,9 @@ static const uint16_t ts_small_parse_table[] = { [174766] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8325), 1, + ACTIONS(8334), 1, anon_sym_DOT, - ACTIONS(8327), 1, + ACTIONS(8336), 1, aux_sym__immediate_decimal_token2, STATE(4810), 1, sym_comment, @@ -386571,11 +386571,11 @@ static const uint16_t ts_small_parse_table[] = { [174793] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8331), 1, + ACTIONS(8340), 1, anon_sym_DASH2, STATE(4811), 1, sym_comment, - ACTIONS(8329), 11, + ACTIONS(8338), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -386590,11 +386590,11 @@ static const uint16_t ts_small_parse_table[] = { [174816] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8331), 1, + ACTIONS(8340), 1, anon_sym_DASH2, STATE(4812), 1, sym_comment, - ACTIONS(8329), 11, + ACTIONS(8338), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -386611,7 +386611,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(4813), 1, sym_comment, - ACTIONS(8333), 12, + ACTIONS(8342), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -386629,7 +386629,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(4814), 1, sym_comment, - ACTIONS(8335), 12, + ACTIONS(8344), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -386647,7 +386647,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(4815), 1, sym_comment, - ACTIONS(8337), 12, + ACTIONS(8346), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -386665,7 +386665,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(4816), 1, sym_comment, - ACTIONS(8339), 12, + ACTIONS(8348), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -386683,7 +386683,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(4817), 1, sym_comment, - ACTIONS(8341), 12, + ACTIONS(8350), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -386703,21 +386703,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(1555), 1, aux_sym_unquoted_token2, - ACTIONS(4542), 1, + ACTIONS(4551), 1, anon_sym_LPAREN2, - ACTIONS(6443), 1, + ACTIONS(6452), 1, anon_sym_DOLLAR, - ACTIONS(8343), 1, + ACTIONS(8352), 1, anon_sym_DOT, - ACTIONS(8347), 1, + ACTIONS(8356), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8349), 1, + ACTIONS(8358), 1, aux_sym__immediate_decimal_token5, STATE(4818), 1, sym_comment, STATE(5896), 1, sym__immediate_decimal, - ACTIONS(8345), 2, + ACTIONS(8354), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, STATE(6156), 2, @@ -386726,7 +386726,7 @@ static const uint16_t ts_small_parse_table[] = { [174983] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3802), 1, + ACTIONS(3811), 1, sym__newline, STATE(725), 1, aux_sym__pipe_separator, @@ -386749,7 +386749,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(4820), 1, sym_comment, - ACTIONS(8351), 12, + ACTIONS(8360), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -386767,7 +386767,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(4821), 1, sym_comment, - ACTIONS(8017), 12, + ACTIONS(8026), 12, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -386785,17 +386785,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(1709), 1, sym__entry_separator, - ACTIONS(3088), 1, + ACTIONS(3095), 1, anon_sym_DOLLAR, - ACTIONS(8019), 1, + ACTIONS(8028), 1, anon_sym_LPAREN2, - ACTIONS(8087), 1, + ACTIONS(8096), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8089), 1, + ACTIONS(8098), 1, aux_sym__immediate_decimal_token5, - ACTIONS(8353), 1, + ACTIONS(8362), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8355), 1, + ACTIONS(8364), 1, aux_sym__immediate_decimal_token3, STATE(4822), 1, sym_comment, @@ -386812,17 +386812,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(1713), 1, sym__entry_separator, - ACTIONS(3088), 1, + ACTIONS(3095), 1, anon_sym_DOLLAR, - ACTIONS(8019), 1, + ACTIONS(8028), 1, anon_sym_LPAREN2, - ACTIONS(8087), 1, + ACTIONS(8096), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8089), 1, + ACTIONS(8098), 1, aux_sym__immediate_decimal_token5, - ACTIONS(8353), 1, + ACTIONS(8362), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8355), 1, + ACTIONS(8364), 1, aux_sym__immediate_decimal_token3, STATE(4823), 1, sym_comment, @@ -386839,17 +386839,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(1665), 1, sym__entry_separator, - ACTIONS(3088), 1, + ACTIONS(3095), 1, anon_sym_DOLLAR, - ACTIONS(8019), 1, + ACTIONS(8028), 1, anon_sym_LPAREN2, - ACTIONS(8087), 1, + ACTIONS(8096), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8089), 1, + ACTIONS(8098), 1, aux_sym__immediate_decimal_token5, - ACTIONS(8353), 1, + ACTIONS(8362), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8355), 1, + ACTIONS(8364), 1, aux_sym__immediate_decimal_token3, STATE(4824), 1, sym_comment, @@ -386866,7 +386866,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(4825), 1, sym_comment, - ACTIONS(8037), 12, + ACTIONS(8046), 12, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -386888,17 +386888,17 @@ static const uint16_t ts_small_parse_table[] = { sym__entry_separator, ACTIONS(1555), 1, aux_sym__unquoted_in_record_token2, - ACTIONS(3088), 1, + ACTIONS(3095), 1, anon_sym_DOLLAR, - ACTIONS(8019), 1, + ACTIONS(8028), 1, anon_sym_LPAREN2, - ACTIONS(8357), 1, + ACTIONS(8366), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8359), 1, + ACTIONS(8368), 1, aux_sym__immediate_decimal_token3, - ACTIONS(8361), 1, + ACTIONS(8370), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8363), 1, + ACTIONS(8372), 1, aux_sym__immediate_decimal_token5, STATE(4826), 1, sym_comment, @@ -386912,7 +386912,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(4827), 1, sym_comment, - ACTIONS(8101), 12, + ACTIONS(8110), 12, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -386928,11 +386928,11 @@ static const uint16_t ts_small_parse_table[] = { [175252] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8367), 1, + ACTIONS(8376), 1, anon_sym_DASH2, STATE(4828), 1, sym_comment, - ACTIONS(8365), 11, + ACTIONS(8374), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -386953,17 +386953,17 @@ static const uint16_t ts_small_parse_table[] = { sym__entry_separator, ACTIONS(1631), 1, aux_sym__unquoted_in_record_token2, - ACTIONS(3088), 1, + ACTIONS(3095), 1, anon_sym_DOLLAR, - ACTIONS(8019), 1, + ACTIONS(8028), 1, anon_sym_LPAREN2, - ACTIONS(8357), 1, + ACTIONS(8366), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8359), 1, + ACTIONS(8368), 1, aux_sym__immediate_decimal_token3, - ACTIONS(8361), 1, + ACTIONS(8370), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8363), 1, + ACTIONS(8372), 1, aux_sym__immediate_decimal_token5, STATE(4829), 1, sym_comment, @@ -386975,11 +386975,11 @@ static const uint16_t ts_small_parse_table[] = { [175316] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8371), 1, + ACTIONS(8380), 1, anon_sym_DASH2, STATE(4830), 1, sym_comment, - ACTIONS(8369), 11, + ACTIONS(8378), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -386994,11 +386994,11 @@ static const uint16_t ts_small_parse_table[] = { [175339] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8375), 1, + ACTIONS(8384), 1, anon_sym_DASH2, STATE(4831), 1, sym_comment, - ACTIONS(8373), 11, + ACTIONS(8382), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -387013,11 +387013,11 @@ static const uint16_t ts_small_parse_table[] = { [175362] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8379), 1, + ACTIONS(8388), 1, anon_sym_DASH2, STATE(4832), 1, sym_comment, - ACTIONS(8377), 11, + ACTIONS(8386), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -387032,11 +387032,11 @@ static const uint16_t ts_small_parse_table[] = { [175385] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8383), 1, + ACTIONS(8392), 1, anon_sym_DASH2, STATE(4833), 1, sym_comment, - ACTIONS(8381), 11, + ACTIONS(8390), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -387070,11 +387070,11 @@ static const uint16_t ts_small_parse_table[] = { [175431] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8387), 1, + ACTIONS(8396), 1, anon_sym_DASH2, STATE(4835), 1, sym_comment, - ACTIONS(8385), 11, + ACTIONS(8394), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -387146,11 +387146,11 @@ static const uint16_t ts_small_parse_table[] = { [175523] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8391), 1, + ACTIONS(8400), 1, anon_sym_DASH2, STATE(4839), 1, sym_comment, - ACTIONS(8389), 11, + ACTIONS(8398), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -387165,11 +387165,11 @@ static const uint16_t ts_small_parse_table[] = { [175546] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8395), 1, + ACTIONS(8404), 1, anon_sym_DASH2, STATE(4840), 1, sym_comment, - ACTIONS(8393), 11, + ACTIONS(8402), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -387205,7 +387205,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(948), 1, anon_sym_DOT_DOT2, - ACTIONS(8053), 1, + ACTIONS(8062), 1, anon_sym_DOT2, STATE(1497), 1, sym_path, @@ -387303,7 +387303,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(941), 1, anon_sym_DOT_DOT2, - ACTIONS(8397), 1, + ACTIONS(8406), 1, anon_sym_DOT2, STATE(1497), 1, sym_path, @@ -387514,7 +387514,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(4858), 1, sym_comment, - ACTIONS(5066), 12, + ACTIONS(5075), 12, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -387532,7 +387532,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(4859), 1, sym_comment, - ACTIONS(5070), 12, + ACTIONS(5079), 12, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -387550,18 +387550,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(4860), 1, sym_comment, - ACTIONS(6893), 2, + ACTIONS(6902), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6899), 2, + ACTIONS(6908), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6895), 4, + ACTIONS(6904), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6897), 4, + ACTIONS(6906), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, @@ -387571,7 +387571,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(4861), 1, sym_comment, - ACTIONS(8015), 12, + ACTIONS(8024), 12, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -387591,19 +387591,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, ACTIONS(1553), 1, sym__entry_separator, - ACTIONS(3088), 1, + ACTIONS(3095), 1, anon_sym_DOLLAR, - ACTIONS(8019), 1, + ACTIONS(8028), 1, anon_sym_LPAREN2, - ACTIONS(8083), 1, + ACTIONS(8092), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8085), 1, + ACTIONS(8094), 1, aux_sym__immediate_decimal_token3, - ACTIONS(8087), 1, + ACTIONS(8096), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8089), 1, + ACTIONS(8098), 1, aux_sym__immediate_decimal_token5, - ACTIONS(8400), 1, + ACTIONS(8409), 1, anon_sym_DOT, STATE(4862), 1, sym_comment, @@ -387617,10 +387617,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(4863), 1, sym_comment, - ACTIONS(8402), 2, + ACTIONS(8411), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(8404), 10, + ACTIONS(8413), 10, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, @@ -387636,7 +387636,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(4864), 1, sym_comment, - ACTIONS(8107), 12, + ACTIONS(8116), 12, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -387654,21 +387654,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(2547), 1, anon_sym_DOLLAR, - ACTIONS(5273), 1, + ACTIONS(5282), 1, anon_sym_LPAREN2, - ACTIONS(5277), 1, + ACTIONS(5286), 1, aux_sym__immediate_decimal_token3, - ACTIONS(5279), 1, + ACTIONS(5288), 1, aux_sym__immediate_decimal_token4, - ACTIONS(5281), 1, + ACTIONS(5290), 1, aux_sym__immediate_decimal_token5, - ACTIONS(5474), 1, + ACTIONS(5483), 1, aux_sym__unquoted_in_list_token3, - ACTIONS(8406), 1, + ACTIONS(8415), 1, anon_sym_RBRACK, - ACTIONS(8408), 1, + ACTIONS(8417), 1, anon_sym_DOLLAR2, - ACTIONS(8410), 1, + ACTIONS(8419), 1, aux_sym__immediate_decimal_token1, STATE(2673), 1, sym__immediate_decimal, @@ -387682,10 +387682,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(4866), 1, sym_comment, - ACTIONS(7480), 2, + ACTIONS(7489), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(7482), 10, + ACTIONS(7491), 10, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, @@ -387701,10 +387701,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(4867), 1, sym_comment, - ACTIONS(8412), 2, + ACTIONS(8421), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(8414), 10, + ACTIONS(8423), 10, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, @@ -387718,23 +387718,23 @@ static const uint16_t ts_small_parse_table[] = { [176232] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5437), 1, + ACTIONS(5446), 1, anon_sym_LPAREN2, - ACTIONS(5441), 1, + ACTIONS(5450), 1, aux_sym__immediate_decimal_token3, - ACTIONS(5443), 1, + ACTIONS(5452), 1, aux_sym__immediate_decimal_token1, - ACTIONS(5741), 1, + ACTIONS(5750), 1, aux_sym__unquoted_in_list_token3, - ACTIONS(8408), 1, + ACTIONS(8417), 1, anon_sym_DOLLAR2, - ACTIONS(8416), 1, + ACTIONS(8425), 1, anon_sym_RBRACK, - ACTIONS(8418), 1, + ACTIONS(8427), 1, anon_sym_DOLLAR, - ACTIONS(8420), 1, + ACTIONS(8429), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8422), 1, + ACTIONS(8431), 1, aux_sym__immediate_decimal_token5, STATE(2828), 1, sym__immediate_decimal, @@ -387748,7 +387748,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(4869), 1, sym_comment, - ACTIONS(8009), 12, + ACTIONS(8018), 12, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -387764,13 +387764,13 @@ static const uint16_t ts_small_parse_table[] = { [176294] = 12, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7975), 1, + ACTIONS(7984), 1, anon_sym_DOLLAR, - ACTIONS(7977), 1, + ACTIONS(7986), 1, anon_sym_DASH_DASH, - ACTIONS(7979), 1, + ACTIONS(7988), 1, anon_sym_DASH2, - ACTIONS(7981), 1, + ACTIONS(7990), 1, anon_sym_LBRACE, STATE(1803), 1, sym_block, @@ -387793,7 +387793,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(4871), 1, sym_comment, - ACTIONS(8013), 12, + ACTIONS(8022), 12, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -387811,7 +387811,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(4872), 1, sym_comment, - ACTIONS(7915), 12, + ACTIONS(7924), 12, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -387827,11 +387827,11 @@ static const uint16_t ts_small_parse_table[] = { [176375] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7682), 1, + ACTIONS(7691), 1, anon_sym_DASH2, STATE(4873), 1, sym_comment, - ACTIONS(7680), 11, + ACTIONS(7689), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -387846,13 +387846,13 @@ static const uint16_t ts_small_parse_table[] = { [176398] = 12, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7975), 1, + ACTIONS(7984), 1, anon_sym_DOLLAR, - ACTIONS(7977), 1, + ACTIONS(7986), 1, anon_sym_DASH_DASH, - ACTIONS(7979), 1, + ACTIONS(7988), 1, anon_sym_DASH2, - ACTIONS(7981), 1, + ACTIONS(7990), 1, anon_sym_LBRACE, STATE(1803), 1, sym_block, @@ -387875,18 +387875,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(4875), 1, sym_comment, - ACTIONS(6879), 2, + ACTIONS(6888), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6885), 2, + ACTIONS(6894), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6881), 4, + ACTIONS(6890), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6883), 4, + ACTIONS(6892), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, @@ -387894,11 +387894,11 @@ static const uint16_t ts_small_parse_table[] = { [176464] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8426), 1, + ACTIONS(8435), 1, anon_sym_DASH2, STATE(4876), 1, sym_comment, - ACTIONS(8424), 11, + ACTIONS(8433), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -387913,11 +387913,11 @@ static const uint16_t ts_small_parse_table[] = { [176487] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8430), 1, + ACTIONS(8439), 1, anon_sym_DASH2, STATE(4877), 1, sym_comment, - ACTIONS(8428), 11, + ACTIONS(8437), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -387934,10 +387934,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(4878), 1, sym_comment, - ACTIONS(7542), 2, + ACTIONS(7551), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(7544), 10, + ACTIONS(7553), 10, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, @@ -387951,15 +387951,15 @@ static const uint16_t ts_small_parse_table[] = { [176533] = 12, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3118), 1, + ACTIONS(3125), 1, anon_sym_DQUOTE, - ACTIONS(3124), 1, + ACTIONS(3131), 1, sym_raw_string_begin, - ACTIONS(8432), 1, + ACTIONS(8441), 1, sym_identifier, - ACTIONS(8434), 1, + ACTIONS(8443), 1, sym__newline, - ACTIONS(8436), 1, + ACTIONS(8445), 1, anon_sym_GT2, STATE(4879), 1, sym_comment, @@ -387969,7 +387969,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_collection_type_repeat1, STATE(6476), 1, sym_val_string, - ACTIONS(3120), 2, + ACTIONS(3127), 2, sym__str_single_quotes, sym__str_back_ticks, STATE(5129), 2, @@ -387978,11 +387978,11 @@ static const uint16_t ts_small_parse_table[] = { [176572] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8440), 1, + ACTIONS(8449), 1, anon_sym_DASH2, STATE(4880), 1, sym_comment, - ACTIONS(8438), 11, + ACTIONS(8447), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -387999,7 +387999,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(4881), 1, sym_comment, - ACTIONS(8442), 12, + ACTIONS(8451), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -388017,7 +388017,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(4882), 1, sym_comment, - ACTIONS(8444), 12, + ACTIONS(8453), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -388035,7 +388035,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(4883), 1, sym_comment, - ACTIONS(8446), 12, + ACTIONS(8455), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -388053,7 +388053,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(4884), 1, sym_comment, - ACTIONS(8448), 12, + ACTIONS(8457), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -388071,7 +388071,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(4885), 1, sym_comment, - ACTIONS(8450), 12, + ACTIONS(8459), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -388089,7 +388089,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(4886), 1, sym_comment, - ACTIONS(8452), 12, + ACTIONS(8461), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -388107,7 +388107,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(4887), 1, sym_comment, - ACTIONS(8454), 12, + ACTIONS(8463), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -388125,7 +388125,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(4888), 1, sym_comment, - ACTIONS(8456), 12, + ACTIONS(8465), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -388143,17 +388143,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(1681), 1, anon_sym_DASH2, - ACTIONS(4596), 1, + ACTIONS(4605), 1, anon_sym_DOT_DOT2, - ACTIONS(8458), 1, + ACTIONS(8467), 1, sym_filesize_unit, - ACTIONS(8460), 1, + ACTIONS(8469), 1, sym_duration_unit, - ACTIONS(8462), 1, + ACTIONS(8471), 1, aux_sym_unquoted_token2, STATE(4889), 1, sym_comment, - ACTIONS(4598), 2, + ACTIONS(4607), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, ACTIONS(1693), 5, @@ -388165,15 +388165,15 @@ static const uint16_t ts_small_parse_table[] = { [176796] = 12, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3118), 1, + ACTIONS(3125), 1, anon_sym_DQUOTE, - ACTIONS(3124), 1, + ACTIONS(3131), 1, sym_raw_string_begin, - ACTIONS(8434), 1, + ACTIONS(8443), 1, sym__newline, - ACTIONS(8464), 1, + ACTIONS(8473), 1, sym_identifier, - ACTIONS(8466), 1, + ACTIONS(8475), 1, anon_sym_GT2, STATE(4890), 1, sym_comment, @@ -388183,7 +388183,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_collection_type_repeat1, STATE(6471), 1, sym_val_string, - ACTIONS(3120), 2, + ACTIONS(3127), 2, sym__str_single_quotes, sym__str_back_ticks, STATE(5129), 2, @@ -388198,17 +388198,17 @@ static const uint16_t ts_small_parse_table[] = { sym__entry_separator, ACTIONS(1631), 1, aux_sym__unquoted_in_list_token2, - ACTIONS(3088), 1, + ACTIONS(3095), 1, anon_sym_DOLLAR, - ACTIONS(8019), 1, + ACTIONS(8028), 1, anon_sym_LPAREN2, - ACTIONS(8468), 1, + ACTIONS(8477), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8470), 1, + ACTIONS(8479), 1, aux_sym__immediate_decimal_token3, - ACTIONS(8472), 1, + ACTIONS(8481), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8474), 1, + ACTIONS(8483), 1, aux_sym__immediate_decimal_token5, STATE(4891), 1, sym_comment, @@ -388222,7 +388222,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(4892), 1, sym_comment, - ACTIONS(8109), 12, + ACTIONS(8118), 12, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -388240,7 +388240,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(4893), 1, sym_comment, - ACTIONS(6753), 12, + ACTIONS(6762), 12, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -388258,7 +388258,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(4894), 1, sym_comment, - ACTIONS(8476), 12, + ACTIONS(8485), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -388276,7 +388276,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(4895), 1, sym_comment, - ACTIONS(8478), 12, + ACTIONS(8487), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -388294,7 +388294,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(4896), 1, sym_comment, - ACTIONS(7953), 12, + ACTIONS(7962), 12, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -388312,7 +388312,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(4897), 1, sym_comment, - ACTIONS(8480), 12, + ACTIONS(8489), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -388330,7 +388330,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(4898), 1, sym_comment, - ACTIONS(8039), 12, + ACTIONS(8048), 12, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -388348,7 +388348,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(4899), 1, sym_comment, - ACTIONS(8045), 12, + ACTIONS(8054), 12, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -388364,9 +388364,9 @@ static const uint16_t ts_small_parse_table[] = { [177044] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8482), 1, + ACTIONS(8491), 1, anon_sym_DOT, - ACTIONS(8484), 1, + ACTIONS(8493), 1, aux_sym__immediate_decimal_token2, STATE(4900), 1, sym_comment, @@ -388385,23 +388385,23 @@ static const uint16_t ts_small_parse_table[] = { [177071] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5437), 1, + ACTIONS(5446), 1, anon_sym_LPAREN2, - ACTIONS(5441), 1, + ACTIONS(5450), 1, aux_sym__immediate_decimal_token3, - ACTIONS(5443), 1, + ACTIONS(5452), 1, aux_sym__immediate_decimal_token1, - ACTIONS(5741), 1, + ACTIONS(5750), 1, aux_sym__unquoted_in_list_token3, - ACTIONS(8406), 1, + ACTIONS(8415), 1, anon_sym_RBRACK, - ACTIONS(8408), 1, + ACTIONS(8417), 1, anon_sym_DOLLAR2, - ACTIONS(8418), 1, + ACTIONS(8427), 1, anon_sym_DOLLAR, - ACTIONS(8420), 1, + ACTIONS(8429), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8422), 1, + ACTIONS(8431), 1, aux_sym__immediate_decimal_token5, STATE(2828), 1, sym__immediate_decimal, @@ -388413,11 +388413,11 @@ static const uint16_t ts_small_parse_table[] = { [177112] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7667), 1, + ACTIONS(7676), 1, anon_sym_DASH2, STATE(4902), 1, sym_comment, - ACTIONS(7665), 11, + ACTIONS(7674), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -388432,23 +388432,23 @@ static const uint16_t ts_small_parse_table[] = { [177135] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5437), 1, + ACTIONS(5446), 1, anon_sym_LPAREN2, - ACTIONS(5441), 1, + ACTIONS(5450), 1, aux_sym__immediate_decimal_token3, - ACTIONS(5443), 1, + ACTIONS(5452), 1, aux_sym__immediate_decimal_token1, - ACTIONS(5741), 1, + ACTIONS(5750), 1, aux_sym__unquoted_in_list_token3, - ACTIONS(8408), 1, + ACTIONS(8417), 1, anon_sym_DOLLAR2, - ACTIONS(8418), 1, + ACTIONS(8427), 1, anon_sym_DOLLAR, - ACTIONS(8420), 1, + ACTIONS(8429), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8422), 1, + ACTIONS(8431), 1, aux_sym__immediate_decimal_token5, - ACTIONS(8486), 1, + ACTIONS(8495), 1, anon_sym_RBRACK, STATE(2828), 1, sym__immediate_decimal, @@ -388460,9 +388460,9 @@ static const uint16_t ts_small_parse_table[] = { [177176] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8488), 1, + ACTIONS(8497), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8490), 1, + ACTIONS(8499), 1, aux_sym__immediate_decimal_token2, STATE(4904), 1, sym_comment, @@ -388483,7 +388483,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(4905), 1, sym_comment, - ACTIONS(8492), 12, + ACTIONS(8501), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -388501,7 +388501,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(4906), 1, sym_comment, - ACTIONS(8494), 12, + ACTIONS(8503), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -388519,7 +388519,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(4907), 1, sym_comment, - ACTIONS(6851), 12, + ACTIONS(6860), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -388537,7 +388537,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(4908), 1, sym_comment, - ACTIONS(8496), 12, + ACTIONS(8505), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -388555,7 +388555,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(4909), 1, sym_comment, - ACTIONS(8498), 12, + ACTIONS(8507), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -388573,13 +388573,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(1555), 1, aux_sym_unquoted_token2, - ACTIONS(3538), 1, + ACTIONS(3547), 1, anon_sym_DOLLAR, - ACTIONS(4542), 1, + ACTIONS(4551), 1, anon_sym_LPAREN2, - ACTIONS(8502), 1, + ACTIONS(8511), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8504), 1, + ACTIONS(8513), 1, aux_sym__immediate_decimal_token5, STATE(4910), 1, sym_comment, @@ -388588,7 +388588,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1553), 2, anon_sym_PIPE, anon_sym_EQ_GT, - ACTIONS(8500), 2, + ACTIONS(8509), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, STATE(2035), 2, @@ -388599,7 +388599,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(4911), 1, sym_comment, - ACTIONS(8506), 12, + ACTIONS(8515), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -388617,7 +388617,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(4912), 1, sym_comment, - ACTIONS(8508), 12, + ACTIONS(8517), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -388635,7 +388635,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(4913), 1, sym_comment, - ACTIONS(8510), 12, + ACTIONS(8519), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -388653,7 +388653,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(4914), 1, sym_comment, - ACTIONS(8512), 12, + ACTIONS(8521), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -388671,7 +388671,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(4915), 1, sym_comment, - ACTIONS(8514), 12, + ACTIONS(8523), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -388689,7 +388689,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(4916), 1, sym_comment, - ACTIONS(8516), 12, + ACTIONS(8525), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -388707,7 +388707,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(4917), 1, sym_comment, - ACTIONS(8518), 12, + ACTIONS(8527), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -388725,7 +388725,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(4918), 1, sym_comment, - ACTIONS(8520), 12, + ACTIONS(8529), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -388743,7 +388743,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(4919), 1, sym_comment, - ACTIONS(8522), 12, + ACTIONS(8531), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -388759,19 +388759,19 @@ static const uint16_t ts_small_parse_table[] = { [177534] = 10, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3538), 1, + ACTIONS(3547), 1, anon_sym_DOLLAR, - ACTIONS(4542), 1, + ACTIONS(4551), 1, anon_sym_LPAREN2, - ACTIONS(7923), 1, + ACTIONS(7932), 1, aux_sym__immediate_decimal_token4, - ACTIONS(7925), 1, + ACTIONS(7934), 1, aux_sym__immediate_decimal_token5, STATE(2034), 1, sym__immediate_decimal, STATE(4920), 1, sym_comment, - ACTIONS(8524), 2, + ACTIONS(8533), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, STATE(2033), 2, @@ -388786,7 +388786,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(4921), 1, sym_comment, - ACTIONS(7941), 12, + ACTIONS(7950), 12, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -388802,19 +388802,19 @@ static const uint16_t ts_small_parse_table[] = { [177590] = 10, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3538), 1, + ACTIONS(3547), 1, anon_sym_DOLLAR, - ACTIONS(4542), 1, + ACTIONS(4551), 1, anon_sym_LPAREN2, - ACTIONS(7923), 1, + ACTIONS(7932), 1, aux_sym__immediate_decimal_token4, - ACTIONS(7925), 1, + ACTIONS(7934), 1, aux_sym__immediate_decimal_token5, STATE(2045), 1, sym__immediate_decimal, STATE(4922), 1, sym_comment, - ACTIONS(8524), 2, + ACTIONS(8533), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, STATE(2044), 2, @@ -388827,19 +388827,19 @@ static const uint16_t ts_small_parse_table[] = { [177625] = 10, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3538), 1, + ACTIONS(3547), 1, anon_sym_DOLLAR, - ACTIONS(4542), 1, + ACTIONS(4551), 1, anon_sym_LPAREN2, - ACTIONS(7923), 1, + ACTIONS(7932), 1, aux_sym__immediate_decimal_token4, - ACTIONS(7925), 1, + ACTIONS(7934), 1, aux_sym__immediate_decimal_token5, STATE(2047), 1, sym__immediate_decimal, STATE(4923), 1, sym_comment, - ACTIONS(8524), 2, + ACTIONS(8533), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, STATE(2046), 2, @@ -388852,19 +388852,19 @@ static const uint16_t ts_small_parse_table[] = { [177660] = 10, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3538), 1, + ACTIONS(3547), 1, anon_sym_DOLLAR, - ACTIONS(4542), 1, + ACTIONS(4551), 1, anon_sym_LPAREN2, - ACTIONS(7923), 1, + ACTIONS(7932), 1, aux_sym__immediate_decimal_token4, - ACTIONS(7925), 1, + ACTIONS(7934), 1, aux_sym__immediate_decimal_token5, STATE(2049), 1, sym__immediate_decimal, STATE(4924), 1, sym_comment, - ACTIONS(8524), 2, + ACTIONS(8533), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, STATE(2048), 2, @@ -388879,7 +388879,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(4925), 1, sym_comment, - ACTIONS(7951), 12, + ACTIONS(7960), 12, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -388897,7 +388897,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(4926), 1, sym_comment, - ACTIONS(8065), 12, + ACTIONS(8074), 12, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -388915,7 +388915,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(4927), 1, sym_comment, - ACTIONS(8067), 12, + ACTIONS(8076), 12, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -388933,13 +388933,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(1631), 1, aux_sym_unquoted_token2, - ACTIONS(3538), 1, + ACTIONS(3547), 1, anon_sym_DOLLAR, - ACTIONS(4542), 1, + ACTIONS(4551), 1, anon_sym_LPAREN2, - ACTIONS(8502), 1, + ACTIONS(8511), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8504), 1, + ACTIONS(8513), 1, aux_sym__immediate_decimal_token5, STATE(4928), 1, sym_comment, @@ -388948,7 +388948,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1629), 2, anon_sym_PIPE, anon_sym_EQ_GT, - ACTIONS(8500), 2, + ACTIONS(8509), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, STATE(2050), 2, @@ -388957,7 +388957,7 @@ static const uint16_t ts_small_parse_table[] = { [177795] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3802), 1, + ACTIONS(3811), 1, sym__newline, STATE(743), 1, aux_sym__pipe_separator, @@ -388978,15 +388978,15 @@ static const uint16_t ts_small_parse_table[] = { [177822] = 12, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3118), 1, + ACTIONS(3125), 1, anon_sym_DQUOTE, - ACTIONS(3124), 1, + ACTIONS(3131), 1, sym_raw_string_begin, - ACTIONS(8434), 1, + ACTIONS(8443), 1, sym__newline, - ACTIONS(8526), 1, + ACTIONS(8535), 1, sym_identifier, - ACTIONS(8528), 1, + ACTIONS(8537), 1, anon_sym_GT2, STATE(4930), 1, sym_comment, @@ -388996,7 +388996,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_collection_type_repeat1, STATE(6555), 1, sym_val_string, - ACTIONS(3120), 2, + ACTIONS(3127), 2, sym__str_single_quotes, sym__str_back_ticks, STATE(5129), 2, @@ -389007,7 +389007,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(4931), 1, sym_comment, - ACTIONS(8530), 12, + ACTIONS(8539), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -389025,7 +389025,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(4932), 1, sym_comment, - ACTIONS(8532), 12, + ACTIONS(8541), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -389043,7 +389043,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(4933), 1, sym_comment, - ACTIONS(8534), 12, + ACTIONS(8543), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -389061,7 +389061,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(4934), 1, sym_comment, - ACTIONS(8536), 12, + ACTIONS(8545), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -389079,7 +389079,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(4935), 1, sym_comment, - ACTIONS(8538), 12, + ACTIONS(8547), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -389097,7 +389097,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(4936), 1, sym_comment, - ACTIONS(8540), 12, + ACTIONS(8549), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -389115,7 +389115,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(4937), 1, sym_comment, - ACTIONS(8035), 12, + ACTIONS(8044), 12, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -389133,7 +389133,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(4938), 1, sym_comment, - ACTIONS(8542), 12, + ACTIONS(8551), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -389151,7 +389151,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(4939), 1, sym_comment, - ACTIONS(8544), 12, + ACTIONS(8553), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -389169,7 +389169,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(4940), 1, sym_comment, - ACTIONS(8546), 12, + ACTIONS(8555), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -389187,7 +389187,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(4941), 1, sym_comment, - ACTIONS(8548), 12, + ACTIONS(8557), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -389205,7 +389205,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(4942), 1, sym_comment, - ACTIONS(8550), 12, + ACTIONS(8559), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -389223,7 +389223,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(4943), 1, sym_comment, - ACTIONS(8552), 12, + ACTIONS(8561), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -389241,7 +389241,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(4944), 1, sym_comment, - ACTIONS(8554), 12, + ACTIONS(8563), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -389259,7 +389259,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(4945), 1, sym_comment, - ACTIONS(8556), 12, + ACTIONS(8565), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -389277,7 +389277,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(4946), 1, sym_comment, - ACTIONS(8558), 12, + ACTIONS(8567), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -389295,7 +389295,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(935), 1, anon_sym_DOT_DOT2, - ACTIONS(8053), 1, + ACTIONS(8062), 1, anon_sym_DOT2, STATE(1497), 1, sym_path, @@ -389318,7 +389318,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(4948), 1, sym_comment, - ACTIONS(8560), 12, + ACTIONS(8569), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -389336,7 +389336,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(4949), 1, sym_comment, - ACTIONS(8562), 12, + ACTIONS(8571), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -389390,16 +389390,16 @@ static const uint16_t ts_small_parse_table[] = { [178316] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5743), 1, + ACTIONS(5752), 1, sym__newline, - ACTIONS(8564), 1, + ACTIONS(8573), 1, anon_sym_DASH2, STATE(4952), 1, sym_comment, ACTIONS(1268), 2, anon_sym_EQ, anon_sym_COLON, - ACTIONS(5746), 8, + ACTIONS(5755), 8, sym_identifier, anon_sym_PIPE, anon_sym_RBRACK, @@ -389417,17 +389417,17 @@ static const uint16_t ts_small_parse_table[] = { sym__entry_separator, ACTIONS(1555), 1, aux_sym__unquoted_in_list_token2, - ACTIONS(3088), 1, + ACTIONS(3095), 1, anon_sym_DOLLAR, - ACTIONS(8019), 1, + ACTIONS(8028), 1, anon_sym_LPAREN2, - ACTIONS(8468), 1, + ACTIONS(8477), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8470), 1, + ACTIONS(8479), 1, aux_sym__immediate_decimal_token3, - ACTIONS(8472), 1, + ACTIONS(8481), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8474), 1, + ACTIONS(8483), 1, aux_sym__immediate_decimal_token5, STATE(4953), 1, sym_comment, @@ -389439,13 +389439,13 @@ static const uint16_t ts_small_parse_table[] = { [178384] = 12, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7977), 1, + ACTIONS(7986), 1, anon_sym_DASH_DASH, - ACTIONS(7979), 1, + ACTIONS(7988), 1, anon_sym_DASH2, - ACTIONS(8317), 1, + ACTIONS(8326), 1, anon_sym_DOLLAR, - ACTIONS(8319), 1, + ACTIONS(8328), 1, anon_sym_LBRACE, STATE(1865), 1, sym_block, @@ -389468,17 +389468,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(1643), 1, sym__entry_separator, - ACTIONS(3088), 1, + ACTIONS(3095), 1, anon_sym_DOLLAR, - ACTIONS(8019), 1, + ACTIONS(8028), 1, anon_sym_LPAREN2, - ACTIONS(8087), 1, + ACTIONS(8096), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8089), 1, + ACTIONS(8098), 1, aux_sym__immediate_decimal_token5, - ACTIONS(8353), 1, + ACTIONS(8362), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8355), 1, + ACTIONS(8364), 1, aux_sym__immediate_decimal_token3, STATE(4955), 1, sym_comment, @@ -389493,15 +389493,15 @@ static const uint16_t ts_small_parse_table[] = { [178462] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7844), 1, + ACTIONS(7853), 1, sym__newline, - ACTIONS(8566), 1, + ACTIONS(8575), 1, anon_sym_else, STATE(4956), 1, sym_comment, STATE(4957), 1, aux_sym_shebang_repeat1, - ACTIONS(7847), 9, + ACTIONS(7856), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -389514,15 +389514,15 @@ static const uint16_t ts_small_parse_table[] = { [178489] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7716), 1, + ACTIONS(7725), 1, sym__newline, - ACTIONS(8568), 1, + ACTIONS(8577), 1, anon_sym_else, STATE(4957), 1, sym_comment, STATE(4960), 1, aux_sym_shebang_repeat1, - ACTIONS(7719), 9, + ACTIONS(7728), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -389535,15 +389535,15 @@ static const uint16_t ts_small_parse_table[] = { [178516] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7774), 1, + ACTIONS(7783), 1, sym__newline, - ACTIONS(8570), 1, + ACTIONS(8579), 1, anon_sym_else, STATE(4958), 1, sym_comment, STATE(4961), 1, aux_sym_shebang_repeat1, - ACTIONS(7777), 9, + ACTIONS(7786), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -389556,15 +389556,15 @@ static const uint16_t ts_small_parse_table[] = { [178543] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7781), 1, + ACTIONS(7790), 1, sym__newline, - ACTIONS(8572), 1, + ACTIONS(8581), 1, anon_sym_else, STATE(4959), 1, sym_comment, STATE(4962), 1, aux_sym_shebang_repeat1, - ACTIONS(7784), 9, + ACTIONS(7793), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -389577,9 +389577,9 @@ static const uint16_t ts_small_parse_table[] = { [178570] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4995), 1, + ACTIONS(5004), 1, sym__newline, - ACTIONS(8574), 1, + ACTIONS(8583), 1, anon_sym_else, STATE(1706), 1, aux_sym_shebang_repeat1, @@ -389598,15 +389598,15 @@ static const uint16_t ts_small_parse_table[] = { [178597] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7809), 1, + ACTIONS(7818), 1, sym__newline, - ACTIONS(8577), 1, + ACTIONS(8586), 1, anon_sym_else, STATE(4961), 1, sym_comment, STATE(4964), 1, aux_sym_shebang_repeat1, - ACTIONS(7812), 9, + ACTIONS(7821), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -389619,15 +389619,15 @@ static const uint16_t ts_small_parse_table[] = { [178624] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7816), 1, + ACTIONS(7825), 1, sym__newline, - ACTIONS(8579), 1, + ACTIONS(8588), 1, anon_sym_else, STATE(4962), 1, sym_comment, STATE(4965), 1, aux_sym_shebang_repeat1, - ACTIONS(7819), 9, + ACTIONS(7828), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -389640,15 +389640,15 @@ static const uint16_t ts_small_parse_table[] = { [178651] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7823), 1, + ACTIONS(7832), 1, sym__newline, - ACTIONS(8581), 1, + ACTIONS(8590), 1, anon_sym_else, STATE(4963), 1, sym_comment, STATE(4966), 1, aux_sym_shebang_repeat1, - ACTIONS(7826), 9, + ACTIONS(7835), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -389661,9 +389661,9 @@ static const uint16_t ts_small_parse_table[] = { [178678] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4995), 1, + ACTIONS(5004), 1, sym__newline, - ACTIONS(8583), 1, + ACTIONS(8592), 1, anon_sym_else, STATE(1706), 1, aux_sym_shebang_repeat1, @@ -389682,9 +389682,9 @@ static const uint16_t ts_small_parse_table[] = { [178705] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4995), 1, + ACTIONS(5004), 1, sym__newline, - ACTIONS(8586), 1, + ACTIONS(8595), 1, anon_sym_else, STATE(1706), 1, aux_sym_shebang_repeat1, @@ -389703,15 +389703,15 @@ static const uint16_t ts_small_parse_table[] = { [178732] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7709), 1, + ACTIONS(7718), 1, sym__newline, - ACTIONS(8589), 1, + ACTIONS(8598), 1, anon_sym_else, STATE(4966), 1, sym_comment, STATE(4967), 1, aux_sym_shebang_repeat1, - ACTIONS(7712), 9, + ACTIONS(7721), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -389724,9 +389724,9 @@ static const uint16_t ts_small_parse_table[] = { [178759] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4995), 1, + ACTIONS(5004), 1, sym__newline, - ACTIONS(8591), 1, + ACTIONS(8600), 1, anon_sym_else, STATE(1706), 1, aux_sym_shebang_repeat1, @@ -389745,9 +389745,9 @@ static const uint16_t ts_small_parse_table[] = { [178786] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8594), 1, + ACTIONS(8603), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8596), 1, + ACTIONS(8605), 1, aux_sym__immediate_decimal_token2, STATE(4968), 1, sym_comment, @@ -389768,7 +389768,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(4969), 1, sym_comment, - ACTIONS(7937), 12, + ACTIONS(7946), 12, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -389786,7 +389786,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(4970), 1, sym_comment, - ACTIONS(7939), 12, + ACTIONS(7948), 12, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -389802,23 +389802,23 @@ static const uint16_t ts_small_parse_table[] = { [178855] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5437), 1, + ACTIONS(5446), 1, anon_sym_LPAREN2, - ACTIONS(5441), 1, + ACTIONS(5450), 1, aux_sym__immediate_decimal_token3, - ACTIONS(5443), 1, + ACTIONS(5452), 1, aux_sym__immediate_decimal_token1, - ACTIONS(5741), 1, + ACTIONS(5750), 1, aux_sym__unquoted_in_list_token3, - ACTIONS(8408), 1, + ACTIONS(8417), 1, anon_sym_DOLLAR2, - ACTIONS(8418), 1, + ACTIONS(8427), 1, anon_sym_DOLLAR, - ACTIONS(8420), 1, + ACTIONS(8429), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8422), 1, + ACTIONS(8431), 1, aux_sym__immediate_decimal_token5, - ACTIONS(8598), 1, + ACTIONS(8607), 1, anon_sym_RBRACK, STATE(2828), 1, sym__immediate_decimal, @@ -389830,9 +389830,9 @@ static const uint16_t ts_small_parse_table[] = { [178896] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8600), 1, + ACTIONS(8609), 1, anon_sym_DOT, - ACTIONS(8602), 1, + ACTIONS(8611), 1, aux_sym__immediate_decimal_token2, STATE(4972), 1, sym_comment, @@ -389851,11 +389851,11 @@ static const uint16_t ts_small_parse_table[] = { [178923] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8604), 1, + ACTIONS(8613), 1, anon_sym_else, STATE(4973), 1, sym_comment, - ACTIONS(7931), 11, + ACTIONS(7940), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -389872,7 +389872,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(4974), 1, sym_comment, - ACTIONS(7943), 12, + ACTIONS(7952), 12, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -389890,7 +389890,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(4975), 1, sym_comment, - ACTIONS(6771), 12, + ACTIONS(6780), 12, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -389906,15 +389906,15 @@ static const uint16_t ts_small_parse_table[] = { [178988] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8611), 1, + ACTIONS(8620), 1, anon_sym_DASH2, - ACTIONS(8608), 2, + ACTIONS(8617), 2, sym__newline, anon_sym_COMMA, STATE(4976), 2, sym_comment, aux_sym_parameter_repeat2, - ACTIONS(8606), 7, + ACTIONS(8615), 7, sym_identifier, anon_sym_PIPE, anon_sym_RBRACK, @@ -389927,7 +389927,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(1933), 1, anon_sym_DASH2, - ACTIONS(8613), 1, + ACTIONS(8622), 1, anon_sym_DOT2, STATE(4977), 1, sym_comment, @@ -389949,21 +389949,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(1643), 1, anon_sym_LBRACE, - ACTIONS(4542), 1, + ACTIONS(4551), 1, anon_sym_LPAREN2, - ACTIONS(4544), 1, + ACTIONS(4553), 1, anon_sym_DOT, - ACTIONS(6443), 1, + ACTIONS(6452), 1, anon_sym_DOLLAR, - ACTIONS(8347), 1, + ACTIONS(8356), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8349), 1, + ACTIONS(8358), 1, aux_sym__immediate_decimal_token5, STATE(4978), 1, sym_comment, STATE(6155), 1, sym__immediate_decimal, - ACTIONS(8345), 2, + ACTIONS(8354), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, STATE(6154), 2, @@ -389976,17 +389976,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, ACTIONS(1553), 1, sym__entry_separator, - ACTIONS(3088), 1, + ACTIONS(3095), 1, anon_sym_DOLLAR, - ACTIONS(8019), 1, + ACTIONS(8028), 1, anon_sym_LPAREN2, - ACTIONS(8087), 1, + ACTIONS(8096), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8089), 1, + ACTIONS(8098), 1, aux_sym__immediate_decimal_token5, - ACTIONS(8353), 1, + ACTIONS(8362), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8355), 1, + ACTIONS(8364), 1, aux_sym__immediate_decimal_token3, STATE(4979), 1, sym_comment, @@ -390000,17 +390000,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_unary_token1, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4648), 1, + ACTIONS(4657), 1, anon_sym_DOLLAR, - ACTIONS(5824), 1, + ACTIONS(5833), 1, anon_sym_LPAREN, - ACTIONS(8615), 1, + ACTIONS(8624), 1, anon_sym_DASH2, STATE(2545), 1, sym__expr_unary_minus, STATE(4980), 1, sym_comment, - ACTIONS(3436), 2, + ACTIONS(3445), 2, anon_sym_true, anon_sym_false, STATE(2479), 4, @@ -390021,7 +390021,7 @@ static const uint16_t ts_small_parse_table[] = { [179148] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7331), 1, + ACTIONS(7340), 1, anon_sym_DASH2, STATE(4976), 1, aux_sym_parameter_repeat2, @@ -390030,7 +390030,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2545), 2, sym__newline, anon_sym_COMMA, - ACTIONS(7329), 7, + ACTIONS(7338), 7, sym_identifier, anon_sym_PIPE, anon_sym_RBRACK, @@ -390041,9 +390041,9 @@ static const uint16_t ts_small_parse_table[] = { [179174] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8619), 1, + ACTIONS(8628), 1, anon_sym_DASH_DASH, - ACTIONS(8622), 1, + ACTIONS(8631), 1, anon_sym_DASH2, STATE(5553), 1, sym__flag, @@ -390053,7 +390053,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(5462), 2, sym_short_flag, sym_long_flag, - ACTIONS(8617), 5, + ACTIONS(8626), 5, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, @@ -390062,7 +390062,7 @@ static const uint16_t ts_small_parse_table[] = { [179202] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8625), 1, + ACTIONS(8634), 1, aux_sym__immediate_decimal_token2, STATE(4983), 1, sym_comment, @@ -390081,11 +390081,11 @@ static const uint16_t ts_small_parse_table[] = { [179226] = 9, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8629), 1, + ACTIONS(8638), 1, anon_sym_DASH_DASH, - ACTIONS(8631), 1, + ACTIONS(8640), 1, anon_sym_DASH2, - ACTIONS(8633), 1, + ACTIONS(8642), 1, anon_sym_as, STATE(4982), 1, aux_sym_ctrl_do_repeat1, @@ -390096,7 +390096,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(5462), 2, sym_short_flag, sym_long_flag, - ACTIONS(8627), 4, + ACTIONS(8636), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, @@ -390104,11 +390104,11 @@ static const uint16_t ts_small_parse_table[] = { [179258] = 9, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8629), 1, + ACTIONS(8638), 1, anon_sym_DASH_DASH, - ACTIONS(8631), 1, + ACTIONS(8640), 1, anon_sym_DASH2, - ACTIONS(8637), 1, + ACTIONS(8646), 1, anon_sym_as, STATE(4985), 1, sym_comment, @@ -390119,7 +390119,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(5462), 2, sym_short_flag, sym_long_flag, - ACTIONS(8635), 4, + ACTIONS(8644), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, @@ -390127,7 +390127,7 @@ static const uint16_t ts_small_parse_table[] = { [179290] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8639), 1, + ACTIONS(8648), 1, aux_sym__immediate_decimal_token2, STATE(4986), 1, sym_comment, @@ -390148,17 +390148,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_unary_token1, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3538), 1, + ACTIONS(3547), 1, anon_sym_DOLLAR, - ACTIONS(6585), 1, + ACTIONS(6594), 1, anon_sym_LPAREN, - ACTIONS(8641), 1, + ACTIONS(8650), 1, anon_sym_DASH2, STATE(2090), 1, sym__expr_unary_minus, STATE(4987), 1, sym_comment, - ACTIONS(3412), 2, + ACTIONS(3421), 2, anon_sym_true, anon_sym_false, STATE(2097), 4, @@ -390173,19 +390173,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(1555), 1, aux_sym_unquoted_token2, - ACTIONS(4542), 1, + ACTIONS(4551), 1, anon_sym_LPAREN2, - ACTIONS(6443), 1, + ACTIONS(6452), 1, anon_sym_DOLLAR, - ACTIONS(8645), 1, + ACTIONS(8654), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8647), 1, + ACTIONS(8656), 1, aux_sym__immediate_decimal_token5, STATE(4988), 1, sym_comment, STATE(7330), 1, sym__immediate_decimal, - ACTIONS(8643), 2, + ACTIONS(8652), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, STATE(2035), 2, @@ -390194,19 +390194,19 @@ static const uint16_t ts_small_parse_table[] = { [179382] = 9, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3476), 1, + ACTIONS(3485), 1, aux_sym_expr_unary_token1, - ACTIONS(5824), 1, + ACTIONS(5833), 1, anon_sym_LPAREN, - ACTIONS(6478), 1, + ACTIONS(6487), 1, anon_sym_DOLLAR, - ACTIONS(8615), 1, + ACTIONS(8624), 1, anon_sym_DASH2, STATE(2545), 1, sym__expr_unary_minus, STATE(4989), 1, sym_comment, - ACTIONS(3436), 2, + ACTIONS(3445), 2, anon_sym_true, anon_sym_false, STATE(2479), 4, @@ -390217,7 +390217,7 @@ static const uint16_t ts_small_parse_table[] = { [179414] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7379), 1, + ACTIONS(7388), 1, anon_sym_DASH2, STATE(4976), 1, aux_sym_parameter_repeat2, @@ -390226,7 +390226,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2545), 2, sym__newline, anon_sym_COMMA, - ACTIONS(7377), 7, + ACTIONS(7386), 7, sym_identifier, anon_sym_PIPE, anon_sym_RBRACK, @@ -390237,13 +390237,13 @@ static const uint16_t ts_small_parse_table[] = { [179440] = 11, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3118), 1, + ACTIONS(3125), 1, anon_sym_DQUOTE, - ACTIONS(3124), 1, + ACTIONS(3131), 1, sym_raw_string_begin, - ACTIONS(8434), 1, + ACTIONS(8443), 1, sym__newline, - ACTIONS(8649), 1, + ACTIONS(8658), 1, sym_identifier, STATE(4991), 1, sym_comment, @@ -390253,7 +390253,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_shebang_repeat1, STATE(6345), 1, sym_val_string, - ACTIONS(3120), 2, + ACTIONS(3127), 2, sym__str_single_quotes, sym__str_back_ticks, STATE(5129), 2, @@ -390262,7 +390262,7 @@ static const uint16_t ts_small_parse_table[] = { [179476] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8653), 1, + ACTIONS(8662), 1, anon_sym_DASH2, STATE(4976), 1, aux_sym_parameter_repeat2, @@ -390271,7 +390271,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2545), 2, sym__newline, anon_sym_COMMA, - ACTIONS(8651), 7, + ACTIONS(8660), 7, sym_identifier, anon_sym_PIPE, anon_sym_RBRACK, @@ -390282,7 +390282,7 @@ static const uint16_t ts_small_parse_table[] = { [179502] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7387), 1, + ACTIONS(7396), 1, anon_sym_DASH2, STATE(4976), 1, aux_sym_parameter_repeat2, @@ -390291,7 +390291,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2545), 2, sym__newline, anon_sym_COMMA, - ACTIONS(7385), 7, + ACTIONS(7394), 7, sym_identifier, anon_sym_PIPE, anon_sym_RBRACK, @@ -390306,17 +390306,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, ACTIONS(1629), 1, sym__entry_separator, - ACTIONS(3088), 1, + ACTIONS(3095), 1, anon_sym_DOLLAR, - ACTIONS(8019), 1, + ACTIONS(8028), 1, anon_sym_LPAREN2, - ACTIONS(8087), 1, + ACTIONS(8096), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8089), 1, + ACTIONS(8098), 1, aux_sym__immediate_decimal_token5, - ACTIONS(8353), 1, + ACTIONS(8362), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8355), 1, + ACTIONS(8364), 1, aux_sym__immediate_decimal_token3, STATE(4994), 1, sym_comment, @@ -390328,9 +390328,9 @@ static const uint16_t ts_small_parse_table[] = { [179566] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8655), 1, + ACTIONS(8664), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8657), 1, + ACTIONS(8666), 1, aux_sym__immediate_decimal_token2, STATE(4995), 1, sym_comment, @@ -390348,7 +390348,7 @@ static const uint16_t ts_small_parse_table[] = { [179592] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8661), 1, + ACTIONS(8670), 1, anon_sym_DASH2, STATE(4976), 1, aux_sym_parameter_repeat2, @@ -390357,7 +390357,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2545), 2, sym__newline, anon_sym_COMMA, - ACTIONS(8659), 7, + ACTIONS(8668), 7, sym_identifier, anon_sym_PIPE, anon_sym_RBRACK, @@ -390370,7 +390370,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(1925), 1, anon_sym_DASH2, - ACTIONS(8613), 1, + ACTIONS(8622), 1, anon_sym_DOT2, STATE(4997), 1, sym_comment, @@ -390390,9 +390390,9 @@ static const uint16_t ts_small_parse_table[] = { [179648] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8663), 1, + ACTIONS(8672), 1, anon_sym_DOT, - ACTIONS(8665), 1, + ACTIONS(8674), 1, aux_sym__immediate_decimal_token2, STATE(4998), 1, sym_comment, @@ -390412,7 +390412,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(1937), 1, anon_sym_DASH2, - ACTIONS(8613), 1, + ACTIONS(8622), 1, anon_sym_DOT2, STATE(4999), 1, sym_comment, @@ -390434,7 +390434,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(2093), 1, anon_sym_DASH2, - ACTIONS(8613), 1, + ACTIONS(8622), 1, anon_sym_DOT2, STATE(5000), 1, sym_comment, @@ -390454,15 +390454,15 @@ static const uint16_t ts_small_parse_table[] = { [179734] = 12, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3424), 1, + ACTIONS(3433), 1, anon_sym_COLON2, - ACTIONS(6443), 1, + ACTIONS(6452), 1, anon_sym_DOLLAR, - ACTIONS(8667), 1, + ACTIONS(8676), 1, sym_identifier, - ACTIONS(8669), 1, + ACTIONS(8678), 1, anon_sym_DASH_DASH, - ACTIONS(8671), 1, + ACTIONS(8680), 1, anon_sym_DASH2, STATE(5001), 1, sym_comment, @@ -390482,7 +390482,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(1949), 1, anon_sym_DASH2, - ACTIONS(8613), 1, + ACTIONS(8622), 1, anon_sym_DOT2, STATE(5002), 1, sym_comment, @@ -390504,7 +390504,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(1953), 1, anon_sym_DASH2, - ACTIONS(8613), 1, + ACTIONS(8622), 1, anon_sym_DOT2, STATE(5003), 1, sym_comment, @@ -390524,9 +390524,9 @@ static const uint16_t ts_small_parse_table[] = { [179832] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8673), 1, + ACTIONS(8682), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8675), 1, + ACTIONS(8684), 1, aux_sym__immediate_decimal_token2, STATE(5004), 1, sym_comment, @@ -390546,7 +390546,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(1961), 1, anon_sym_DASH2, - ACTIONS(8613), 1, + ACTIONS(8622), 1, anon_sym_DOT2, STATE(5005), 1, sym_comment, @@ -390568,7 +390568,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(1965), 1, anon_sym_DASH2, - ACTIONS(8613), 1, + ACTIONS(8622), 1, anon_sym_DOT2, STATE(5006), 1, sym_comment, @@ -390590,7 +390590,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(1969), 1, anon_sym_DASH2, - ACTIONS(8613), 1, + ACTIONS(8622), 1, anon_sym_DOT2, STATE(5007), 1, sym_comment, @@ -390612,7 +390612,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(1973), 1, anon_sym_DASH2, - ACTIONS(8613), 1, + ACTIONS(8622), 1, anon_sym_DOT2, STATE(5008), 1, sym_comment, @@ -390634,7 +390634,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(1977), 1, anon_sym_DASH2, - ACTIONS(8613), 1, + ACTIONS(8622), 1, anon_sym_DOT2, STATE(5009), 1, sym_comment, @@ -390656,7 +390656,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(1981), 1, anon_sym_DASH2, - ACTIONS(8613), 1, + ACTIONS(8622), 1, anon_sym_DOT2, STATE(5010), 1, sym_comment, @@ -390678,7 +390678,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(1985), 1, anon_sym_DASH2, - ACTIONS(8613), 1, + ACTIONS(8622), 1, anon_sym_DOT2, STATE(5011), 1, sym_comment, @@ -390700,7 +390700,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(1989), 1, anon_sym_DASH2, - ACTIONS(8613), 1, + ACTIONS(8622), 1, anon_sym_DOT2, STATE(5012), 1, sym_comment, @@ -390722,7 +390722,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(1993), 1, anon_sym_DASH2, - ACTIONS(8613), 1, + ACTIONS(8622), 1, anon_sym_DOT2, STATE(5013), 1, sym_comment, @@ -390744,7 +390744,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(1997), 1, anon_sym_DASH2, - ACTIONS(8613), 1, + ACTIONS(8622), 1, anon_sym_DOT2, STATE(5014), 1, sym_comment, @@ -390766,7 +390766,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(2001), 1, anon_sym_DASH2, - ACTIONS(8613), 1, + ACTIONS(8622), 1, anon_sym_DOT2, STATE(5015), 1, sym_comment, @@ -390788,7 +390788,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(2005), 1, anon_sym_DASH2, - ACTIONS(8613), 1, + ACTIONS(8622), 1, anon_sym_DOT2, STATE(5016), 1, sym_comment, @@ -390810,7 +390810,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(2009), 1, anon_sym_DASH2, - ACTIONS(8613), 1, + ACTIONS(8622), 1, anon_sym_DOT2, STATE(5017), 1, sym_comment, @@ -390832,7 +390832,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(2089), 1, anon_sym_DASH2, - ACTIONS(8613), 1, + ACTIONS(8622), 1, anon_sym_DOT2, STATE(5018), 1, sym_comment, @@ -390854,7 +390854,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(935), 1, anon_sym_DASH2, - ACTIONS(8613), 1, + ACTIONS(8622), 1, anon_sym_DOT2, STATE(3770), 1, sym_cell_path, @@ -390874,15 +390874,15 @@ static const uint16_t ts_small_parse_table[] = { [180308] = 12, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3422), 1, + ACTIONS(3431), 1, anon_sym_COLON2, - ACTIONS(6443), 1, + ACTIONS(6452), 1, anon_sym_DOLLAR, - ACTIONS(8667), 1, + ACTIONS(8676), 1, sym_identifier, - ACTIONS(8669), 1, + ACTIONS(8678), 1, anon_sym_DASH_DASH, - ACTIONS(8671), 1, + ACTIONS(8680), 1, anon_sym_DASH2, STATE(5020), 1, sym_comment, @@ -390900,7 +390900,7 @@ static const uint16_t ts_small_parse_table[] = { [180346] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8327), 1, + ACTIONS(8336), 1, aux_sym__immediate_decimal_token2, STATE(5021), 1, sym_comment, @@ -390919,7 +390919,7 @@ static const uint16_t ts_small_parse_table[] = { [180370] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3802), 1, + ACTIONS(3811), 1, sym__newline, STATE(1706), 1, aux_sym_shebang_repeat1, @@ -390938,7 +390938,7 @@ static const uint16_t ts_small_parse_table[] = { [180394] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8679), 1, + ACTIONS(8688), 1, anon_sym_DASH2, STATE(4976), 1, aux_sym_parameter_repeat2, @@ -390947,7 +390947,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2545), 2, sym__newline, anon_sym_COMMA, - ACTIONS(8677), 7, + ACTIONS(8686), 7, sym_identifier, anon_sym_PIPE, anon_sym_RBRACK, @@ -390958,13 +390958,13 @@ static const uint16_t ts_small_parse_table[] = { [180420] = 11, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3118), 1, + ACTIONS(3125), 1, anon_sym_DQUOTE, - ACTIONS(3124), 1, + ACTIONS(3131), 1, sym_raw_string_begin, - ACTIONS(8434), 1, + ACTIONS(8443), 1, sym__newline, - ACTIONS(8681), 1, + ACTIONS(8690), 1, sym_identifier, STATE(5024), 1, sym_comment, @@ -390974,7 +390974,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_shebang_repeat1, STATE(6279), 1, sym_val_string, - ACTIONS(3120), 2, + ACTIONS(3127), 2, sym__str_single_quotes, sym__str_back_ticks, STATE(5129), 2, @@ -390983,11 +390983,11 @@ static const uint16_t ts_small_parse_table[] = { [180456] = 9, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8629), 1, + ACTIONS(8638), 1, anon_sym_DASH_DASH, - ACTIONS(8631), 1, + ACTIONS(8640), 1, anon_sym_DASH2, - ACTIONS(8685), 1, + ACTIONS(8694), 1, anon_sym_as, STATE(4982), 1, aux_sym_ctrl_do_repeat1, @@ -390998,7 +390998,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(5462), 2, sym_short_flag, sym_long_flag, - ACTIONS(8683), 4, + ACTIONS(8692), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, @@ -391006,7 +391006,7 @@ static const uint16_t ts_small_parse_table[] = { [180488] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8484), 1, + ACTIONS(8493), 1, aux_sym__immediate_decimal_token2, STATE(5026), 1, sym_comment, @@ -391025,7 +391025,7 @@ static const uint16_t ts_small_parse_table[] = { [180512] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8602), 1, + ACTIONS(8611), 1, aux_sym__immediate_decimal_token2, STATE(5027), 1, sym_comment, @@ -391044,19 +391044,19 @@ static const uint16_t ts_small_parse_table[] = { [180536] = 9, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3444), 1, + ACTIONS(3453), 1, aux_sym_expr_unary_token1, - ACTIONS(6585), 1, + ACTIONS(6594), 1, anon_sym_LPAREN, - ACTIONS(6901), 1, + ACTIONS(6910), 1, anon_sym_DOLLAR, - ACTIONS(8641), 1, + ACTIONS(8650), 1, anon_sym_DASH2, STATE(2090), 1, sym__expr_unary_minus, STATE(5028), 1, sym_comment, - ACTIONS(3412), 2, + ACTIONS(3421), 2, anon_sym_true, anon_sym_false, STATE(2097), 4, @@ -391069,7 +391069,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(1945), 1, anon_sym_DASH2, - ACTIONS(8613), 1, + ACTIONS(8622), 1, anon_sym_DOT2, STATE(5029), 1, sym_comment, @@ -391089,7 +391089,7 @@ static const uint16_t ts_small_parse_table[] = { [180598] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8687), 1, + ACTIONS(8696), 1, aux_sym__immediate_decimal_token2, STATE(5030), 1, sym_comment, @@ -391108,13 +391108,13 @@ static const uint16_t ts_small_parse_table[] = { [180622] = 11, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3118), 1, + ACTIONS(3125), 1, anon_sym_DQUOTE, - ACTIONS(3124), 1, + ACTIONS(3131), 1, sym_raw_string_begin, - ACTIONS(8434), 1, + ACTIONS(8443), 1, sym__newline, - ACTIONS(8689), 1, + ACTIONS(8698), 1, sym_identifier, STATE(5031), 1, sym_comment, @@ -391124,7 +391124,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_shebang_repeat1, STATE(6088), 1, sym_val_string, - ACTIONS(3120), 2, + ACTIONS(3127), 2, sym__str_single_quotes, sym__str_back_ticks, STATE(5129), 2, @@ -391133,11 +391133,11 @@ static const uint16_t ts_small_parse_table[] = { [180658] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8691), 1, + ACTIONS(8700), 1, anon_sym_else, STATE(5032), 1, sym_comment, - ACTIONS(7931), 10, + ACTIONS(7940), 10, sym__newline, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -391151,9 +391151,9 @@ static const uint16_t ts_small_parse_table[] = { [180680] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8693), 1, + ACTIONS(8702), 1, anon_sym_DOT, - ACTIONS(8695), 1, + ACTIONS(8704), 1, aux_sym__immediate_decimal_token2, STATE(5033), 1, sym_comment, @@ -391171,9 +391171,9 @@ static const uint16_t ts_small_parse_table[] = { [180706] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8697), 1, + ACTIONS(8706), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8699), 1, + ACTIONS(8708), 1, aux_sym__immediate_decimal_token2, STATE(5034), 1, sym_comment, @@ -391191,11 +391191,11 @@ static const uint16_t ts_small_parse_table[] = { [180732] = 9, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8629), 1, + ACTIONS(8638), 1, anon_sym_DASH_DASH, - ACTIONS(8631), 1, + ACTIONS(8640), 1, anon_sym_DASH2, - ACTIONS(8703), 1, + ACTIONS(8712), 1, anon_sym_as, STATE(4984), 1, aux_sym_ctrl_do_repeat1, @@ -391206,7 +391206,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(5462), 2, sym_short_flag, sym_long_flag, - ACTIONS(8701), 4, + ACTIONS(8710), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, @@ -391218,19 +391218,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(1631), 1, aux_sym_unquoted_token2, - ACTIONS(4542), 1, + ACTIONS(4551), 1, anon_sym_LPAREN2, - ACTIONS(6443), 1, + ACTIONS(6452), 1, anon_sym_DOLLAR, - ACTIONS(8645), 1, + ACTIONS(8654), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8647), 1, + ACTIONS(8656), 1, aux_sym__immediate_decimal_token5, STATE(5036), 1, sym_comment, STATE(7212), 1, sym__immediate_decimal, - ACTIONS(8643), 2, + ACTIONS(8652), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, STATE(2050), 2, @@ -391239,9 +391239,9 @@ static const uint16_t ts_small_parse_table[] = { [180800] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8705), 1, + ACTIONS(8714), 1, anon_sym_DOT, - ACTIONS(8707), 1, + ACTIONS(8716), 1, aux_sym__immediate_decimal_token2, STATE(5037), 1, sym_comment, @@ -391261,7 +391261,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(1957), 1, anon_sym_DASH2, - ACTIONS(8613), 1, + ACTIONS(8622), 1, anon_sym_DOT2, STATE(5038), 1, sym_comment, @@ -391281,7 +391281,7 @@ static const uint16_t ts_small_parse_table[] = { [180856] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8707), 1, + ACTIONS(8716), 1, aux_sym__immediate_decimal_token2, STATE(5039), 1, sym_comment, @@ -391301,7 +391301,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(1957), 1, anon_sym_DASH2, - ACTIONS(8709), 1, + ACTIONS(8718), 1, anon_sym_DOT2, STATE(5040), 1, sym_comment, @@ -391322,7 +391322,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(1961), 1, anon_sym_DASH2, - ACTIONS(8709), 1, + ACTIONS(8718), 1, anon_sym_DOT2, STATE(5041), 1, sym_comment, @@ -391343,7 +391343,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(1965), 1, anon_sym_DASH2, - ACTIONS(8709), 1, + ACTIONS(8718), 1, anon_sym_DOT2, STATE(5042), 1, sym_comment, @@ -391364,7 +391364,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(1969), 1, anon_sym_DASH2, - ACTIONS(8709), 1, + ACTIONS(8718), 1, anon_sym_DOT2, STATE(5043), 1, sym_comment, @@ -391385,7 +391385,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(1973), 1, anon_sym_DASH2, - ACTIONS(8709), 1, + ACTIONS(8718), 1, anon_sym_DOT2, STATE(5044), 1, sym_comment, @@ -391406,7 +391406,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(1977), 1, anon_sym_DASH2, - ACTIONS(8709), 1, + ACTIONS(8718), 1, anon_sym_DOT2, STATE(5045), 1, sym_comment, @@ -391427,7 +391427,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(1981), 1, anon_sym_DASH2, - ACTIONS(8709), 1, + ACTIONS(8718), 1, anon_sym_DOT2, STATE(5046), 1, sym_comment, @@ -391448,7 +391448,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(1985), 1, anon_sym_DASH2, - ACTIONS(8709), 1, + ACTIONS(8718), 1, anon_sym_DOT2, STATE(5047), 1, sym_comment, @@ -391469,7 +391469,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(1989), 1, anon_sym_DASH2, - ACTIONS(8709), 1, + ACTIONS(8718), 1, anon_sym_DOT2, STATE(5048), 1, sym_comment, @@ -391490,7 +391490,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(1993), 1, anon_sym_DASH2, - ACTIONS(8709), 1, + ACTIONS(8718), 1, anon_sym_DOT2, STATE(5049), 1, sym_comment, @@ -391511,7 +391511,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(1997), 1, anon_sym_DASH2, - ACTIONS(8709), 1, + ACTIONS(8718), 1, anon_sym_DOT2, STATE(5050), 1, sym_comment, @@ -391532,7 +391532,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(2001), 1, anon_sym_DASH2, - ACTIONS(8709), 1, + ACTIONS(8718), 1, anon_sym_DOT2, STATE(5051), 1, sym_comment, @@ -391553,7 +391553,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(2005), 1, anon_sym_DASH2, - ACTIONS(8709), 1, + ACTIONS(8718), 1, anon_sym_DOT2, STATE(5052), 1, sym_comment, @@ -391574,7 +391574,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(2009), 1, anon_sym_DASH2, - ACTIONS(8709), 1, + ACTIONS(8718), 1, anon_sym_DOT2, STATE(5053), 1, sym_comment, @@ -391595,7 +391595,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(2089), 1, anon_sym_DASH2, - ACTIONS(8709), 1, + ACTIONS(8718), 1, anon_sym_DOT2, STATE(5054), 1, sym_comment, @@ -391633,7 +391633,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(935), 1, anon_sym_DASH2, - ACTIONS(8709), 1, + ACTIONS(8718), 1, anon_sym_DOT2, STATE(5056), 1, sym_comment, @@ -391652,9 +391652,9 @@ static const uint16_t ts_small_parse_table[] = { [181364] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8711), 1, + ACTIONS(8720), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8713), 1, + ACTIONS(8722), 1, aux_sym__immediate_decimal_token2, STATE(5057), 1, sym_comment, @@ -391673,17 +391673,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(1681), 1, anon_sym_DASH2, - ACTIONS(4596), 1, + ACTIONS(4605), 1, anon_sym_DOT_DOT2, - ACTIONS(8715), 1, + ACTIONS(8724), 1, sym_filesize_unit, - ACTIONS(8717), 1, + ACTIONS(8726), 1, sym_duration_unit, - ACTIONS(8719), 1, + ACTIONS(8728), 1, aux_sym_unquoted_token2, STATE(5058), 1, sym_comment, - ACTIONS(4598), 2, + ACTIONS(4607), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, ACTIONS(1693), 3, @@ -391695,7 +391695,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(1274), 1, anon_sym_DASH2, - ACTIONS(8721), 1, + ACTIONS(8730), 1, sym__newline, STATE(5059), 2, sym_comment, @@ -391713,7 +391713,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(1933), 1, anon_sym_DASH2, - ACTIONS(8709), 1, + ACTIONS(8718), 1, anon_sym_DOT2, STATE(5060), 1, sym_comment, @@ -391732,13 +391732,13 @@ static const uint16_t ts_small_parse_table[] = { [181472] = 11, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6478), 1, + ACTIONS(6487), 1, anon_sym_DOLLAR, - ACTIONS(8669), 1, + ACTIONS(8678), 1, anon_sym_DASH_DASH, - ACTIONS(8671), 1, + ACTIONS(8680), 1, anon_sym_DASH2, - ACTIONS(8724), 1, + ACTIONS(8733), 1, sym_identifier, STATE(5061), 1, sym_comment, @@ -391756,13 +391756,13 @@ static const uint16_t ts_small_parse_table[] = { [181507] = 9, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4596), 1, + ACTIONS(4605), 1, anon_sym_DOT_DOT2, - ACTIONS(8719), 1, + ACTIONS(8728), 1, aux_sym_unquoted_token2, - ACTIONS(8726), 1, + ACTIONS(8735), 1, sym_filesize_unit, - ACTIONS(8728), 1, + ACTIONS(8737), 1, sym_duration_unit, STATE(5062), 1, sym_comment, @@ -391772,15 +391772,15 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1693), 2, anon_sym_DOLLAR, anon_sym_DASH_DASH, - ACTIONS(4598), 2, + ACTIONS(4607), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, [181538] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8730), 1, + ACTIONS(8739), 1, anon_sym_DOT, - ACTIONS(8732), 1, + ACTIONS(8741), 1, aux_sym__immediate_decimal_token2, STATE(5063), 1, sym_comment, @@ -391799,19 +391799,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(1643), 1, anon_sym_LBRACE, - ACTIONS(4542), 1, + ACTIONS(4551), 1, anon_sym_LPAREN2, - ACTIONS(6443), 1, + ACTIONS(6452), 1, anon_sym_DOLLAR, - ACTIONS(8347), 1, + ACTIONS(8356), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8349), 1, + ACTIONS(8358), 1, aux_sym__immediate_decimal_token5, STATE(2034), 1, sym__immediate_decimal, STATE(5064), 1, sym_comment, - ACTIONS(8734), 2, + ACTIONS(8743), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, STATE(2033), 2, @@ -391820,9 +391820,9 @@ static const uint16_t ts_small_parse_table[] = { [181596] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8736), 1, + ACTIONS(8745), 1, anon_sym_DOT, - ACTIONS(8738), 1, + ACTIONS(8747), 1, aux_sym__immediate_decimal_token2, STATE(5065), 1, sym_comment, @@ -391839,13 +391839,13 @@ static const uint16_t ts_small_parse_table[] = { [181621] = 11, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6443), 1, + ACTIONS(6452), 1, anon_sym_DOLLAR, - ACTIONS(8667), 1, + ACTIONS(8676), 1, sym_identifier, - ACTIONS(8669), 1, + ACTIONS(8678), 1, anon_sym_DASH_DASH, - ACTIONS(8671), 1, + ACTIONS(8680), 1, anon_sym_DASH2, STATE(5066), 1, sym_comment, @@ -391867,21 +391867,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, ACTIONS(1693), 1, sym__entry_separator, - ACTIONS(5464), 1, + ACTIONS(5473), 1, anon_sym_LPAREN2, - ACTIONS(8740), 1, + ACTIONS(8749), 1, anon_sym_DOT_DOT2, - ACTIONS(8744), 1, + ACTIONS(8753), 1, sym_filesize_unit, - ACTIONS(8746), 1, + ACTIONS(8755), 1, sym_duration_unit, - ACTIONS(8748), 1, + ACTIONS(8757), 1, aux_sym__unquoted_in_list_token2, STATE(5067), 1, sym_comment, STATE(7254), 1, sym__expr_parenthesized_immediate, - ACTIONS(8742), 2, + ACTIONS(8751), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, [181691] = 4, @@ -391904,11 +391904,11 @@ static const uint16_t ts_small_parse_table[] = { [181712] = 9, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8750), 1, + ACTIONS(8759), 1, anon_sym_DASH_DASH, - ACTIONS(8752), 1, + ACTIONS(8761), 1, anon_sym_DASH2, - ACTIONS(8754), 1, + ACTIONS(8763), 1, anon_sym_as, STATE(5069), 1, sym_comment, @@ -391919,7 +391919,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(5709), 2, sym_short_flag, sym_long_flag, - ACTIONS(8701), 3, + ACTIONS(8710), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -391943,19 +391943,19 @@ static const uint16_t ts_small_parse_table[] = { [181764] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5373), 1, + ACTIONS(5382), 1, anon_sym_DOLLAR, - ACTIONS(5375), 1, + ACTIONS(5384), 1, anon_sym_LPAREN2, - ACTIONS(5377), 1, + ACTIONS(5386), 1, aux_sym__immediate_decimal_token3, - ACTIONS(5379), 1, + ACTIONS(5388), 1, aux_sym__immediate_decimal_token4, - ACTIONS(5381), 1, + ACTIONS(5390), 1, aux_sym__immediate_decimal_token5, - ACTIONS(5474), 1, + ACTIONS(5483), 1, aux_sym__unquoted_in_list_token3, - ACTIONS(8756), 1, + ACTIONS(8765), 1, aux_sym__immediate_decimal_token1, STATE(2892), 1, sym__immediate_decimal, @@ -391967,7 +391967,7 @@ static const uint16_t ts_small_parse_table[] = { [181799] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8758), 1, + ACTIONS(8767), 1, anon_sym_DOT2, STATE(5072), 1, sym_comment, @@ -391988,7 +391988,7 @@ static const uint16_t ts_small_parse_table[] = { [181828] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8665), 1, + ACTIONS(8674), 1, aux_sym__immediate_decimal_token2, STATE(5073), 1, sym_comment, @@ -392025,17 +392025,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(1022), 1, anon_sym_DOLLAR, - ACTIONS(4542), 1, + ACTIONS(4551), 1, anon_sym_LPAREN2, - ACTIONS(4801), 1, + ACTIONS(4810), 1, aux_sym_unquoted_token3, - ACTIONS(7969), 1, + ACTIONS(7978), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8760), 1, + ACTIONS(8769), 1, aux_sym__immediate_decimal_token3, - ACTIONS(8762), 1, + ACTIONS(8771), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8764), 1, + ACTIONS(8773), 1, aux_sym__immediate_decimal_token5, STATE(5075), 1, sym_comment, @@ -392049,17 +392049,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(1022), 1, anon_sym_DOLLAR, - ACTIONS(4542), 1, + ACTIONS(4551), 1, anon_sym_LPAREN2, - ACTIONS(4801), 1, + ACTIONS(4810), 1, aux_sym_unquoted_token3, - ACTIONS(8500), 1, + ACTIONS(8509), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8766), 1, + ACTIONS(8775), 1, aux_sym__immediate_decimal_token3, - ACTIONS(8768), 1, + ACTIONS(8777), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8770), 1, + ACTIONS(8779), 1, aux_sym__immediate_decimal_token5, STATE(5076), 1, sym_comment, @@ -392073,17 +392073,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(1022), 1, anon_sym_DOLLAR, - ACTIONS(4542), 1, + ACTIONS(4551), 1, anon_sym_LPAREN2, - ACTIONS(4801), 1, + ACTIONS(4810), 1, aux_sym_unquoted_token3, - ACTIONS(7921), 1, + ACTIONS(7930), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8772), 1, + ACTIONS(8781), 1, aux_sym__immediate_decimal_token3, - ACTIONS(8774), 1, + ACTIONS(8783), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8776), 1, + ACTIONS(8785), 1, aux_sym__immediate_decimal_token5, STATE(5077), 1, sym_comment, @@ -392097,7 +392097,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(1925), 1, anon_sym_DASH2, - ACTIONS(8709), 1, + ACTIONS(8718), 1, anon_sym_DOT2, STATE(5078), 1, sym_comment, @@ -392118,17 +392118,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(1022), 1, anon_sym_DOLLAR, - ACTIONS(4542), 1, + ACTIONS(4551), 1, anon_sym_LPAREN2, - ACTIONS(4801), 1, + ACTIONS(4810), 1, aux_sym_unquoted_token3, - ACTIONS(7945), 1, + ACTIONS(7954), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8778), 1, + ACTIONS(8787), 1, aux_sym__immediate_decimal_token3, - ACTIONS(8780), 1, + ACTIONS(8789), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8782), 1, + ACTIONS(8791), 1, aux_sym__immediate_decimal_token5, STATE(5079), 1, sym_comment, @@ -392142,17 +392142,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(1807), 1, anon_sym_DOLLAR, - ACTIONS(6925), 1, + ACTIONS(6934), 1, anon_sym_LPAREN2, - ACTIONS(6929), 1, + ACTIONS(6938), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6931), 1, + ACTIONS(6940), 1, aux_sym__immediate_decimal_token3, - ACTIONS(6933), 1, + ACTIONS(6942), 1, aux_sym__immediate_decimal_token4, - ACTIONS(6935), 1, + ACTIONS(6944), 1, aux_sym__immediate_decimal_token5, - ACTIONS(7051), 1, + ACTIONS(7060), 1, aux_sym_unquoted_token3, STATE(3919), 1, sym__immediate_decimal, @@ -392166,17 +392166,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(1024), 1, anon_sym_DOLLAR, - ACTIONS(4650), 1, + ACTIONS(4659), 1, anon_sym_LPAREN2, - ACTIONS(4694), 1, + ACTIONS(4703), 1, aux_sym__immediate_decimal_token1, - ACTIONS(4904), 1, + ACTIONS(4913), 1, aux_sym_unquoted_token3, - ACTIONS(8784), 1, + ACTIONS(8793), 1, aux_sym__immediate_decimal_token3, - ACTIONS(8786), 1, + ACTIONS(8795), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8788), 1, + ACTIONS(8797), 1, aux_sym__immediate_decimal_token5, STATE(2166), 1, sym__immediate_decimal, @@ -392207,19 +392207,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(1709), 1, anon_sym_LBRACE, - ACTIONS(4542), 1, + ACTIONS(4551), 1, anon_sym_LPAREN2, - ACTIONS(6443), 1, + ACTIONS(6452), 1, anon_sym_DOLLAR, - ACTIONS(8347), 1, + ACTIONS(8356), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8349), 1, + ACTIONS(8358), 1, aux_sym__immediate_decimal_token5, STATE(2045), 1, sym__immediate_decimal, STATE(5083), 1, sym_comment, - ACTIONS(8734), 2, + ACTIONS(8743), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, STATE(2044), 2, @@ -392230,19 +392230,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(1713), 1, anon_sym_LBRACE, - ACTIONS(4542), 1, + ACTIONS(4551), 1, anon_sym_LPAREN2, - ACTIONS(6443), 1, + ACTIONS(6452), 1, anon_sym_DOLLAR, - ACTIONS(8347), 1, + ACTIONS(8356), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8349), 1, + ACTIONS(8358), 1, aux_sym__immediate_decimal_token5, STATE(2047), 1, sym__immediate_decimal, STATE(5084), 1, sym_comment, - ACTIONS(8734), 2, + ACTIONS(8743), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, STATE(2046), 2, @@ -392253,17 +392253,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(1022), 1, anon_sym_DOLLAR, - ACTIONS(4542), 1, + ACTIONS(4551), 1, anon_sym_LPAREN2, - ACTIONS(4546), 1, + ACTIONS(4555), 1, aux_sym__immediate_decimal_token1, - ACTIONS(4801), 1, + ACTIONS(4810), 1, aux_sym_unquoted_token3, - ACTIONS(8790), 1, + ACTIONS(8799), 1, aux_sym__immediate_decimal_token3, - ACTIONS(8792), 1, + ACTIONS(8801), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8794), 1, + ACTIONS(8803), 1, aux_sym__immediate_decimal_token5, STATE(1726), 1, sym__immediate_decimal, @@ -392277,17 +392277,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(1807), 1, anon_sym_DOLLAR, - ACTIONS(6925), 1, + ACTIONS(6934), 1, anon_sym_LPAREN2, - ACTIONS(6951), 1, + ACTIONS(6960), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6953), 1, + ACTIONS(6962), 1, aux_sym__immediate_decimal_token3, - ACTIONS(6955), 1, + ACTIONS(6964), 1, aux_sym__immediate_decimal_token4, - ACTIONS(6957), 1, + ACTIONS(6966), 1, aux_sym__immediate_decimal_token5, - ACTIONS(7051), 1, + ACTIONS(7060), 1, aux_sym_unquoted_token3, STATE(4244), 1, sym__immediate_decimal, @@ -392311,7 +392311,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__immediate_decimal_token5, ACTIONS(1695), 1, aux_sym__unquoted_in_record_token3, - ACTIONS(8796), 1, + ACTIONS(8805), 1, aux_sym__immediate_decimal_token1, STATE(367), 1, sym__immediate_decimal, @@ -392335,7 +392335,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__immediate_decimal_token5, ACTIONS(1695), 1, aux_sym__unquoted_in_record_token3, - ACTIONS(8798), 1, + ACTIONS(8807), 1, aux_sym__immediate_decimal_token1, STATE(521), 1, sym__immediate_decimal, @@ -392347,19 +392347,19 @@ static const uint16_t ts_small_parse_table[] = { [182338] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3582), 1, + ACTIONS(3591), 1, anon_sym_DOLLAR, - ACTIONS(7070), 1, + ACTIONS(7079), 1, anon_sym_LPAREN2, - ACTIONS(7074), 1, + ACTIONS(7083), 1, aux_sym__immediate_decimal_token3, - ACTIONS(7076), 1, + ACTIONS(7085), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7177), 1, + ACTIONS(7186), 1, aux_sym__unquoted_in_record_token3, - ACTIONS(8800), 1, + ACTIONS(8809), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8802), 1, + ACTIONS(8811), 1, aux_sym__immediate_decimal_token5, STATE(4040), 1, sym__immediate_decimal, @@ -392373,17 +392373,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(1022), 1, anon_sym_DOLLAR, - ACTIONS(4542), 1, + ACTIONS(4551), 1, anon_sym_LPAREN2, - ACTIONS(4801), 1, + ACTIONS(4810), 1, aux_sym_unquoted_token3, - ACTIONS(6362), 1, + ACTIONS(6371), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8804), 1, + ACTIONS(8813), 1, aux_sym__immediate_decimal_token3, - ACTIONS(8806), 1, + ACTIONS(8815), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8808), 1, + ACTIONS(8817), 1, aux_sym__immediate_decimal_token5, STATE(3503), 1, sym__immediate_decimal, @@ -392397,17 +392397,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(1022), 1, anon_sym_DOLLAR, - ACTIONS(4542), 1, + ACTIONS(4551), 1, anon_sym_LPAREN2, - ACTIONS(4609), 1, + ACTIONS(4618), 1, aux_sym__immediate_decimal_token1, - ACTIONS(4801), 1, + ACTIONS(4810), 1, aux_sym_unquoted_token3, - ACTIONS(8810), 1, + ACTIONS(8819), 1, aux_sym__immediate_decimal_token3, - ACTIONS(8812), 1, + ACTIONS(8821), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8814), 1, + ACTIONS(8823), 1, aux_sym__immediate_decimal_token5, STATE(2079), 1, sym__immediate_decimal, @@ -392421,19 +392421,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(1665), 1, anon_sym_LBRACE, - ACTIONS(4542), 1, + ACTIONS(4551), 1, anon_sym_LPAREN2, - ACTIONS(6443), 1, + ACTIONS(6452), 1, anon_sym_DOLLAR, - ACTIONS(8347), 1, + ACTIONS(8356), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8349), 1, + ACTIONS(8358), 1, aux_sym__immediate_decimal_token5, STATE(2049), 1, sym__immediate_decimal, STATE(5092), 1, sym_comment, - ACTIONS(8734), 2, + ACTIONS(8743), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, STATE(2048), 2, @@ -392444,17 +392444,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(2699), 1, anon_sym_DOLLAR, - ACTIONS(3960), 1, + ACTIONS(3969), 1, anon_sym_LPAREN2, - ACTIONS(3964), 1, + ACTIONS(3973), 1, aux_sym__immediate_decimal_token3, - ACTIONS(3966), 1, + ACTIONS(3975), 1, aux_sym__immediate_decimal_token1, - ACTIONS(4413), 1, + ACTIONS(4422), 1, aux_sym_unquoted_token3, - ACTIONS(8816), 1, + ACTIONS(8825), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8818), 1, + ACTIONS(8827), 1, aux_sym__immediate_decimal_token5, STATE(1382), 1, sym__immediate_decimal, @@ -392468,17 +392468,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(1022), 1, anon_sym_DOLLAR, - ACTIONS(4542), 1, + ACTIONS(4551), 1, anon_sym_LPAREN2, - ACTIONS(4801), 1, + ACTIONS(4810), 1, aux_sym_unquoted_token3, - ACTIONS(6400), 1, + ACTIONS(6409), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8820), 1, + ACTIONS(8829), 1, aux_sym__immediate_decimal_token3, - ACTIONS(8822), 1, + ACTIONS(8831), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8824), 1, + ACTIONS(8833), 1, aux_sym__immediate_decimal_token5, STATE(3555), 1, sym__immediate_decimal, @@ -392490,19 +392490,19 @@ static const uint16_t ts_small_parse_table[] = { [182546] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3582), 1, + ACTIONS(3591), 1, anon_sym_DOLLAR, - ACTIONS(7070), 1, + ACTIONS(7079), 1, anon_sym_LPAREN2, - ACTIONS(7094), 1, + ACTIONS(7103), 1, aux_sym__immediate_decimal_token3, - ACTIONS(7096), 1, + ACTIONS(7105), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7177), 1, + ACTIONS(7186), 1, aux_sym__unquoted_in_record_token3, - ACTIONS(8826), 1, + ACTIONS(8835), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8828), 1, + ACTIONS(8837), 1, aux_sym__immediate_decimal_token5, STATE(4508), 1, sym__immediate_decimal, @@ -392516,17 +392516,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(1024), 1, anon_sym_DOLLAR, - ACTIONS(4650), 1, + ACTIONS(4659), 1, anon_sym_LPAREN2, - ACTIONS(4904), 1, + ACTIONS(4913), 1, aux_sym_unquoted_token3, - ACTIONS(5918), 1, + ACTIONS(5927), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8830), 1, + ACTIONS(8839), 1, aux_sym__immediate_decimal_token3, - ACTIONS(8832), 1, + ACTIONS(8841), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8834), 1, + ACTIONS(8843), 1, aux_sym__immediate_decimal_token5, STATE(3207), 1, sym__immediate_decimal, @@ -392538,19 +392538,19 @@ static const uint16_t ts_small_parse_table[] = { [182616] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3986), 1, + ACTIONS(3995), 1, anon_sym_DOLLAR, - ACTIONS(3988), 1, + ACTIONS(3997), 1, anon_sym_LPAREN2, - ACTIONS(3990), 1, + ACTIONS(3999), 1, aux_sym__immediate_decimal_token3, - ACTIONS(3992), 1, + ACTIONS(4001), 1, aux_sym__immediate_decimal_token1, - ACTIONS(4413), 1, + ACTIONS(4422), 1, aux_sym_unquoted_token3, - ACTIONS(8836), 1, + ACTIONS(8845), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8838), 1, + ACTIONS(8847), 1, aux_sym__immediate_decimal_token5, STATE(1588), 1, sym__immediate_decimal, @@ -392564,7 +392564,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(948), 1, anon_sym_DASH2, - ACTIONS(8613), 1, + ACTIONS(8622), 1, anon_sym_DOT2, STATE(5098), 1, sym_comment, @@ -392601,17 +392601,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(1024), 1, anon_sym_DOLLAR, - ACTIONS(4650), 1, + ACTIONS(4659), 1, anon_sym_LPAREN2, - ACTIONS(4904), 1, + ACTIONS(4913), 1, aux_sym_unquoted_token3, - ACTIONS(5961), 1, + ACTIONS(5970), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8840), 1, + ACTIONS(8849), 1, aux_sym__immediate_decimal_token3, - ACTIONS(8842), 1, + ACTIONS(8851), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8844), 1, + ACTIONS(8853), 1, aux_sym__immediate_decimal_token5, STATE(3264), 1, sym__immediate_decimal, @@ -392625,17 +392625,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(1022), 1, anon_sym_DOLLAR, - ACTIONS(4542), 1, + ACTIONS(4551), 1, anon_sym_LPAREN2, - ACTIONS(4801), 1, + ACTIONS(4810), 1, aux_sym_unquoted_token3, - ACTIONS(5768), 1, + ACTIONS(5777), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8846), 1, + ACTIONS(8855), 1, aux_sym__immediate_decimal_token3, - ACTIONS(8848), 1, + ACTIONS(8857), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8850), 1, + ACTIONS(8859), 1, aux_sym__immediate_decimal_token5, STATE(3199), 1, sym__immediate_decimal, @@ -392647,19 +392647,19 @@ static const uint16_t ts_small_parse_table[] = { [182769] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3472), 1, + ACTIONS(3481), 1, anon_sym_DOLLAR, - ACTIONS(4650), 1, + ACTIONS(4659), 1, anon_sym_LPAREN2, - ACTIONS(4904), 1, + ACTIONS(4913), 1, aux_sym_unquoted_token3, - ACTIONS(6945), 1, + ACTIONS(6954), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8852), 1, + ACTIONS(8861), 1, aux_sym__immediate_decimal_token3, - ACTIONS(8854), 1, + ACTIONS(8863), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8856), 1, + ACTIONS(8865), 1, aux_sym__immediate_decimal_token5, STATE(4036), 1, sym__immediate_decimal, @@ -392671,19 +392671,19 @@ static const uint16_t ts_small_parse_table[] = { [182804] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3440), 1, + ACTIONS(3449), 1, anon_sym_DOLLAR, - ACTIONS(4542), 1, + ACTIONS(4551), 1, anon_sym_LPAREN2, - ACTIONS(4801), 1, + ACTIONS(4810), 1, aux_sym_unquoted_token3, - ACTIONS(6905), 1, + ACTIONS(6914), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8858), 1, + ACTIONS(8867), 1, aux_sym__immediate_decimal_token3, - ACTIONS(8860), 1, + ACTIONS(8869), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8862), 1, + ACTIONS(8871), 1, aux_sym__immediate_decimal_token5, STATE(3852), 1, sym__immediate_decimal, @@ -392697,17 +392697,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(1022), 1, anon_sym_DOLLAR, - ACTIONS(4542), 1, + ACTIONS(4551), 1, anon_sym_LPAREN2, - ACTIONS(4801), 1, + ACTIONS(4810), 1, aux_sym_unquoted_token3, - ACTIONS(5926), 1, + ACTIONS(5935), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8864), 1, + ACTIONS(8873), 1, aux_sym__immediate_decimal_token3, - ACTIONS(8866), 1, + ACTIONS(8875), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8868), 1, + ACTIONS(8877), 1, aux_sym__immediate_decimal_token5, STATE(3237), 1, sym__immediate_decimal, @@ -392721,17 +392721,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(1022), 1, anon_sym_DOLLAR, - ACTIONS(4542), 1, + ACTIONS(4551), 1, anon_sym_LPAREN2, - ACTIONS(4801), 1, + ACTIONS(4810), 1, aux_sym_unquoted_token3, - ACTIONS(6418), 1, + ACTIONS(6427), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8870), 1, + ACTIONS(8879), 1, aux_sym__immediate_decimal_token3, - ACTIONS(8872), 1, + ACTIONS(8881), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8874), 1, + ACTIONS(8883), 1, aux_sym__immediate_decimal_token5, STATE(3507), 1, sym__immediate_decimal, @@ -392743,19 +392743,19 @@ static const uint16_t ts_small_parse_table[] = { [182909] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3440), 1, + ACTIONS(3449), 1, anon_sym_DOLLAR, - ACTIONS(4542), 1, + ACTIONS(4551), 1, anon_sym_LPAREN2, - ACTIONS(4801), 1, + ACTIONS(4810), 1, aux_sym_unquoted_token3, - ACTIONS(6911), 1, + ACTIONS(6920), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8876), 1, + ACTIONS(8885), 1, aux_sym__immediate_decimal_token3, - ACTIONS(8878), 1, + ACTIONS(8887), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8880), 1, + ACTIONS(8889), 1, aux_sym__immediate_decimal_token5, STATE(4007), 1, sym__immediate_decimal, @@ -392769,17 +392769,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(1022), 1, anon_sym_DOLLAR, - ACTIONS(4542), 1, + ACTIONS(4551), 1, anon_sym_LPAREN2, - ACTIONS(4801), 1, + ACTIONS(4810), 1, aux_sym_unquoted_token3, - ACTIONS(6433), 1, + ACTIONS(6442), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8882), 1, + ACTIONS(8891), 1, aux_sym__immediate_decimal_token3, - ACTIONS(8884), 1, + ACTIONS(8893), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8886), 1, + ACTIONS(8895), 1, aux_sym__immediate_decimal_token5, STATE(3661), 1, sym__immediate_decimal, @@ -392791,13 +392791,13 @@ static const uint16_t ts_small_parse_table[] = { [182979] = 11, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6443), 1, + ACTIONS(6452), 1, anon_sym_DOLLAR, - ACTIONS(8667), 1, + ACTIONS(8676), 1, sym_identifier, - ACTIONS(8669), 1, + ACTIONS(8678), 1, anon_sym_DASH_DASH, - ACTIONS(8671), 1, + ACTIONS(8680), 1, anon_sym_DASH2, STATE(5108), 1, sym_comment, @@ -392817,7 +392817,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(941), 1, anon_sym_DASH2, - ACTIONS(8888), 1, + ACTIONS(8897), 1, anon_sym_DOT2, STATE(5426), 1, sym_path, @@ -392836,7 +392836,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(1937), 1, anon_sym_DASH2, - ACTIONS(8709), 1, + ACTIONS(8718), 1, anon_sym_DOT2, STATE(5110), 1, sym_comment, @@ -392855,9 +392855,9 @@ static const uint16_t ts_small_parse_table[] = { [183068] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8891), 1, + ACTIONS(8900), 1, anon_sym_DASH_DASH, - ACTIONS(8894), 1, + ACTIONS(8903), 1, anon_sym_DASH2, STATE(5638), 1, sym__flag, @@ -392867,7 +392867,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(5709), 2, sym_short_flag, sym_long_flag, - ACTIONS(8617), 4, + ACTIONS(8626), 4, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -392875,19 +392875,19 @@ static const uint16_t ts_small_parse_table[] = { [183095] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3852), 1, + ACTIONS(3861), 1, anon_sym_DOLLAR, - ACTIONS(4542), 1, + ACTIONS(4551), 1, anon_sym_LPAREN2, - ACTIONS(4801), 1, + ACTIONS(4810), 1, aux_sym_unquoted_token3, - ACTIONS(8345), 1, + ACTIONS(8354), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8897), 1, + ACTIONS(8906), 1, aux_sym__immediate_decimal_token3, - ACTIONS(8899), 1, + ACTIONS(8908), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8901), 1, + ACTIONS(8910), 1, aux_sym__immediate_decimal_token5, STATE(5112), 1, sym_comment, @@ -392899,9 +392899,9 @@ static const uint16_t ts_small_parse_table[] = { [183130] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8903), 1, + ACTIONS(8912), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8905), 1, + ACTIONS(8914), 1, aux_sym__immediate_decimal_token2, STATE(5113), 1, sym_comment, @@ -392926,11 +392926,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__immediate_decimal_token1, ACTIONS(1745), 1, aux_sym__unquoted_in_record_token3, - ACTIONS(3740), 1, + ACTIONS(3749), 1, anon_sym_DOLLAR, - ACTIONS(8907), 1, + ACTIONS(8916), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8909), 1, + ACTIONS(8918), 1, aux_sym__immediate_decimal_token5, STATE(399), 1, sym__immediate_decimal, @@ -392942,19 +392942,19 @@ static const uint16_t ts_small_parse_table[] = { [183190] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3088), 1, + ACTIONS(3095), 1, anon_sym_DOLLAR, - ACTIONS(8019), 1, + ACTIONS(8028), 1, anon_sym_LPAREN2, - ACTIONS(8023), 1, + ACTIONS(8032), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8025), 1, + ACTIONS(8034), 1, aux_sym__immediate_decimal_token3, - ACTIONS(8027), 1, + ACTIONS(8036), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8029), 1, + ACTIONS(8038), 1, aux_sym__immediate_decimal_token5, - ACTIONS(8911), 1, + ACTIONS(8920), 1, aux_sym__unquoted_in_record_token3, STATE(5115), 1, sym_comment, @@ -392966,7 +392966,7 @@ static const uint16_t ts_small_parse_table[] = { [183225] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8758), 1, + ACTIONS(8767), 1, anon_sym_DOT2, STATE(5116), 1, sym_comment, @@ -392987,19 +392987,19 @@ static const uint16_t ts_small_parse_table[] = { [183254] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3088), 1, + ACTIONS(3095), 1, anon_sym_DOLLAR, - ACTIONS(8019), 1, + ACTIONS(8028), 1, anon_sym_LPAREN2, - ACTIONS(8357), 1, + ACTIONS(8366), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8359), 1, + ACTIONS(8368), 1, aux_sym__immediate_decimal_token3, - ACTIONS(8361), 1, + ACTIONS(8370), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8363), 1, + ACTIONS(8372), 1, aux_sym__immediate_decimal_token5, - ACTIONS(8911), 1, + ACTIONS(8920), 1, aux_sym__unquoted_in_record_token3, STATE(5117), 1, sym_comment, @@ -393019,11 +393019,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__immediate_decimal_token1, ACTIONS(1745), 1, aux_sym__unquoted_in_record_token3, - ACTIONS(8913), 1, + ACTIONS(8922), 1, anon_sym_DOLLAR, - ACTIONS(8915), 1, + ACTIONS(8924), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8917), 1, + ACTIONS(8926), 1, aux_sym__immediate_decimal_token5, STATE(569), 1, sym__immediate_decimal, @@ -393041,37 +393041,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, ACTIONS(1693), 1, sym__entry_separator, - ACTIONS(8911), 1, + ACTIONS(8920), 1, aux_sym__unquoted_in_record_token2, - ACTIONS(8919), 1, + ACTIONS(8928), 1, anon_sym_DOT_DOT2, - ACTIONS(8923), 1, + ACTIONS(8932), 1, sym_filesize_unit, - ACTIONS(8925), 1, + ACTIONS(8934), 1, sym_duration_unit, STATE(5119), 1, sym_comment, STATE(7328), 1, sym__expr_parenthesized_immediate, - ACTIONS(8921), 2, + ACTIONS(8930), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, [183359] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5437), 1, + ACTIONS(5446), 1, anon_sym_LPAREN2, - ACTIONS(5441), 1, + ACTIONS(5450), 1, aux_sym__immediate_decimal_token3, - ACTIONS(5443), 1, + ACTIONS(5452), 1, aux_sym__immediate_decimal_token1, - ACTIONS(5741), 1, + ACTIONS(5750), 1, aux_sym__unquoted_in_list_token3, - ACTIONS(8418), 1, + ACTIONS(8427), 1, anon_sym_DOLLAR, - ACTIONS(8420), 1, + ACTIONS(8429), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8422), 1, + ACTIONS(8431), 1, aux_sym__immediate_decimal_token5, STATE(2828), 1, sym__immediate_decimal, @@ -393083,11 +393083,11 @@ static const uint16_t ts_small_parse_table[] = { [183394] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8564), 1, + ACTIONS(8573), 1, anon_sym_DASH2, STATE(5121), 1, sym_comment, - ACTIONS(5746), 9, + ACTIONS(5755), 9, sym_identifier, sym__newline, anon_sym_PIPE, @@ -393100,19 +393100,19 @@ static const uint16_t ts_small_parse_table[] = { [183415] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3088), 1, + ACTIONS(3095), 1, anon_sym_DOLLAR, - ACTIONS(8019), 1, + ACTIONS(8028), 1, anon_sym_LPAREN2, - ACTIONS(8083), 1, + ACTIONS(8092), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8085), 1, + ACTIONS(8094), 1, aux_sym__immediate_decimal_token3, - ACTIONS(8087), 1, + ACTIONS(8096), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8089), 1, + ACTIONS(8098), 1, aux_sym__immediate_decimal_token5, - ACTIONS(8748), 1, + ACTIONS(8757), 1, aux_sym__unquoted_in_list_token3, STATE(5122), 1, sym_comment, @@ -393124,9 +393124,9 @@ static const uint16_t ts_small_parse_table[] = { [183450] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8927), 1, + ACTIONS(8936), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8929), 1, + ACTIONS(8938), 1, aux_sym__immediate_decimal_token2, STATE(5123), 1, sym_comment, @@ -393211,19 +393211,19 @@ static const uint16_t ts_small_parse_table[] = { [183559] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3088), 1, + ACTIONS(3095), 1, anon_sym_DOLLAR, - ACTIONS(8019), 1, + ACTIONS(8028), 1, anon_sym_LPAREN2, - ACTIONS(8468), 1, + ACTIONS(8477), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8470), 1, + ACTIONS(8479), 1, aux_sym__immediate_decimal_token3, - ACTIONS(8472), 1, + ACTIONS(8481), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8474), 1, + ACTIONS(8483), 1, aux_sym__immediate_decimal_token5, - ACTIONS(8748), 1, + ACTIONS(8757), 1, aux_sym__unquoted_in_list_token3, STATE(5128), 1, sym_comment, @@ -393269,19 +393269,19 @@ static const uint16_t ts_small_parse_table[] = { [183636] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3852), 1, + ACTIONS(3861), 1, anon_sym_DOLLAR, - ACTIONS(4542), 1, + ACTIONS(4551), 1, anon_sym_LPAREN2, - ACTIONS(4801), 1, + ACTIONS(4810), 1, aux_sym_unquoted_token3, - ACTIONS(8643), 1, + ACTIONS(8652), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8931), 1, + ACTIONS(8940), 1, aux_sym__immediate_decimal_token3, - ACTIONS(8933), 1, + ACTIONS(8942), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8935), 1, + ACTIONS(8944), 1, aux_sym__immediate_decimal_token5, STATE(5131), 1, sym_comment, @@ -393293,7 +393293,7 @@ static const uint16_t ts_small_parse_table[] = { [183671] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8937), 1, + ACTIONS(8946), 1, aux_sym__immediate_decimal_token2, STATE(5132), 1, sym_comment, @@ -393311,19 +393311,19 @@ static const uint16_t ts_small_parse_table[] = { [183694] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2938), 1, + ACTIONS(2945), 1, anon_sym_DOLLAR, - ACTIONS(3972), 1, + ACTIONS(3981), 1, anon_sym_LPAREN2, - ACTIONS(3976), 1, + ACTIONS(3985), 1, aux_sym__immediate_decimal_token3, - ACTIONS(3978), 1, + ACTIONS(3987), 1, aux_sym__immediate_decimal_token1, - ACTIONS(4534), 1, + ACTIONS(4543), 1, aux_sym_unquoted_token3, - ACTIONS(8939), 1, + ACTIONS(8948), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8941), 1, + ACTIONS(8950), 1, aux_sym__immediate_decimal_token5, STATE(1431), 1, sym__immediate_decimal, @@ -393335,9 +393335,9 @@ static const uint16_t ts_small_parse_table[] = { [183729] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8943), 1, + ACTIONS(8952), 1, anon_sym_DOT, - ACTIONS(8945), 1, + ACTIONS(8954), 1, aux_sym__immediate_decimal_token2, STATE(5134), 1, sym_comment, @@ -393356,17 +393356,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(2033), 1, anon_sym_DOLLAR, - ACTIONS(6979), 1, + ACTIONS(6988), 1, anon_sym_LPAREN2, - ACTIONS(6983), 1, + ACTIONS(6992), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6985), 1, + ACTIONS(6994), 1, aux_sym__immediate_decimal_token3, - ACTIONS(6987), 1, + ACTIONS(6996), 1, aux_sym__immediate_decimal_token4, - ACTIONS(6989), 1, + ACTIONS(6998), 1, aux_sym__immediate_decimal_token5, - ACTIONS(7130), 1, + ACTIONS(7139), 1, aux_sym_unquoted_token3, STATE(3959), 1, sym__immediate_decimal, @@ -393380,7 +393380,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(2093), 1, anon_sym_DASH2, - ACTIONS(8709), 1, + ACTIONS(8718), 1, anon_sym_DOT2, STATE(5136), 1, sym_comment, @@ -393418,17 +393418,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(2033), 1, anon_sym_DOLLAR, - ACTIONS(6979), 1, + ACTIONS(6988), 1, anon_sym_LPAREN2, - ACTIONS(7009), 1, + ACTIONS(7018), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7011), 1, + ACTIONS(7020), 1, aux_sym__immediate_decimal_token3, - ACTIONS(7013), 1, + ACTIONS(7022), 1, aux_sym__immediate_decimal_token4, - ACTIONS(7015), 1, + ACTIONS(7024), 1, aux_sym__immediate_decimal_token5, - ACTIONS(7130), 1, + ACTIONS(7139), 1, aux_sym_unquoted_token3, STATE(4375), 1, sym__immediate_decimal, @@ -393440,13 +393440,13 @@ static const uint16_t ts_small_parse_table[] = { [183874] = 11, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6478), 1, + ACTIONS(6487), 1, anon_sym_DOLLAR, - ACTIONS(8669), 1, + ACTIONS(8678), 1, anon_sym_DASH_DASH, - ACTIONS(8671), 1, + ACTIONS(8680), 1, anon_sym_DASH2, - ACTIONS(8724), 1, + ACTIONS(8733), 1, sym_identifier, STATE(5061), 1, aux_sym_ctrl_do_repeat1, @@ -393464,19 +393464,19 @@ static const uint16_t ts_small_parse_table[] = { [183909] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5525), 1, + ACTIONS(5534), 1, anon_sym_LPAREN2, - ACTIONS(5527), 1, + ACTIONS(5536), 1, aux_sym__immediate_decimal_token3, - ACTIONS(5529), 1, + ACTIONS(5538), 1, aux_sym__immediate_decimal_token1, - ACTIONS(5741), 1, + ACTIONS(5750), 1, aux_sym__unquoted_in_list_token3, - ACTIONS(8947), 1, + ACTIONS(8956), 1, anon_sym_DOLLAR, - ACTIONS(8949), 1, + ACTIONS(8958), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8951), 1, + ACTIONS(8960), 1, aux_sym__immediate_decimal_token5, STATE(3046), 1, sym__immediate_decimal, @@ -393505,7 +393505,7 @@ static const uint16_t ts_small_parse_table[] = { [183965] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8758), 1, + ACTIONS(8767), 1, anon_sym_DOT2, STATE(5142), 1, sym_comment, @@ -393528,7 +393528,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(1945), 1, anon_sym_DASH2, - ACTIONS(8709), 1, + ACTIONS(8718), 1, anon_sym_DOT2, STATE(5143), 1, sym_comment, @@ -393547,19 +393547,19 @@ static const uint16_t ts_small_parse_table[] = { [184023] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4082), 1, + ACTIONS(4091), 1, anon_sym_DOLLAR, - ACTIONS(4137), 1, + ACTIONS(4146), 1, anon_sym_LPAREN2, - ACTIONS(4139), 1, + ACTIONS(4148), 1, aux_sym__immediate_decimal_token3, - ACTIONS(4141), 1, + ACTIONS(4150), 1, aux_sym__immediate_decimal_token1, - ACTIONS(4534), 1, + ACTIONS(4543), 1, aux_sym_unquoted_token3, - ACTIONS(8953), 1, + ACTIONS(8962), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8955), 1, + ACTIONS(8964), 1, aux_sym__immediate_decimal_token5, STATE(1694), 1, sym__immediate_decimal, @@ -393571,11 +393571,11 @@ static const uint16_t ts_small_parse_table[] = { [184058] = 9, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8750), 1, + ACTIONS(8759), 1, anon_sym_DASH_DASH, - ACTIONS(8752), 1, + ACTIONS(8761), 1, anon_sym_DASH2, - ACTIONS(8957), 1, + ACTIONS(8966), 1, anon_sym_as, STATE(5111), 1, aux_sym_ctrl_do_repeat1, @@ -393586,18 +393586,18 @@ static const uint16_t ts_small_parse_table[] = { STATE(5709), 2, sym_short_flag, sym_long_flag, - ACTIONS(8683), 3, + ACTIONS(8692), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, [184089] = 9, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8750), 1, + ACTIONS(8759), 1, anon_sym_DASH_DASH, - ACTIONS(8752), 1, + ACTIONS(8761), 1, anon_sym_DASH2, - ACTIONS(8959), 1, + ACTIONS(8968), 1, anon_sym_as, STATE(5111), 1, aux_sym_ctrl_do_repeat1, @@ -393608,18 +393608,18 @@ static const uint16_t ts_small_parse_table[] = { STATE(5709), 2, sym_short_flag, sym_long_flag, - ACTIONS(8627), 3, + ACTIONS(8636), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, [184120] = 9, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8750), 1, + ACTIONS(8759), 1, anon_sym_DASH_DASH, - ACTIONS(8752), 1, + ACTIONS(8761), 1, anon_sym_DASH2, - ACTIONS(8961), 1, + ACTIONS(8970), 1, anon_sym_as, STATE(5145), 1, aux_sym_ctrl_do_repeat1, @@ -393630,14 +393630,14 @@ static const uint16_t ts_small_parse_table[] = { STATE(5709), 2, sym_short_flag, sym_long_flag, - ACTIONS(8635), 3, + ACTIONS(8644), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, [184151] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8963), 1, + ACTIONS(8972), 1, aux_sym__immediate_decimal_token2, STATE(5148), 1, sym_comment, @@ -393655,7 +393655,7 @@ static const uint16_t ts_small_parse_table[] = { [184174] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8965), 1, + ACTIONS(8974), 1, aux_sym__immediate_decimal_token2, STATE(5149), 1, sym_comment, @@ -393675,17 +393675,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(1024), 1, anon_sym_DOLLAR, - ACTIONS(4650), 1, + ACTIONS(4659), 1, anon_sym_LPAREN2, - ACTIONS(4654), 1, + ACTIONS(4663), 1, aux_sym__immediate_decimal_token1, - ACTIONS(4904), 1, + ACTIONS(4913), 1, aux_sym_unquoted_token3, - ACTIONS(8967), 1, + ACTIONS(8976), 1, aux_sym__immediate_decimal_token3, - ACTIONS(8969), 1, + ACTIONS(8978), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8971), 1, + ACTIONS(8980), 1, aux_sym__immediate_decimal_token5, STATE(1822), 1, sym__immediate_decimal, @@ -393699,7 +393699,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(1949), 1, anon_sym_DASH2, - ACTIONS(8709), 1, + ACTIONS(8718), 1, anon_sym_DOT2, STATE(5151), 1, sym_comment, @@ -393737,7 +393737,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(1953), 1, anon_sym_DASH2, - ACTIONS(8709), 1, + ACTIONS(8718), 1, anon_sym_DOT2, STATE(5153), 1, sym_comment, @@ -393756,7 +393756,7 @@ static const uint16_t ts_small_parse_table[] = { [184311] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8695), 1, + ACTIONS(8704), 1, aux_sym__immediate_decimal_token2, STATE(5154), 1, sym_comment, @@ -393791,19 +393791,19 @@ static const uint16_t ts_small_parse_table[] = { [184355] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3472), 1, + ACTIONS(3481), 1, anon_sym_DOLLAR, - ACTIONS(4650), 1, + ACTIONS(4659), 1, anon_sym_LPAREN2, - ACTIONS(4904), 1, + ACTIONS(4913), 1, aux_sym_unquoted_token3, - ACTIONS(6919), 1, + ACTIONS(6928), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8973), 1, + ACTIONS(8982), 1, aux_sym__immediate_decimal_token3, - ACTIONS(8975), 1, + ACTIONS(8984), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8977), 1, + ACTIONS(8986), 1, aux_sym__immediate_decimal_token5, STATE(3868), 1, sym__immediate_decimal, @@ -393817,7 +393817,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(948), 1, anon_sym_DASH2, - ACTIONS(8709), 1, + ACTIONS(8718), 1, anon_sym_DOT2, STATE(5157), 1, sym_comment, @@ -393834,19 +393834,19 @@ static const uint16_t ts_small_parse_table[] = { [184416] = 9, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3538), 1, + ACTIONS(3547), 1, anon_sym_DOLLAR, - ACTIONS(4542), 1, + ACTIONS(4551), 1, anon_sym_LPAREN2, - ACTIONS(7947), 1, + ACTIONS(7956), 1, aux_sym__immediate_decimal_token4, - ACTIONS(7949), 1, + ACTIONS(7958), 1, aux_sym__immediate_decimal_token5, STATE(5158), 1, sym_comment, STATE(6540), 1, sym__immediate_decimal, - ACTIONS(7945), 2, + ACTIONS(7954), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, STATE(2040), 2, @@ -393855,7 +393855,7 @@ static const uint16_t ts_small_parse_table[] = { [184446] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8945), 1, + ACTIONS(8954), 1, aux_sym__immediate_decimal_token2, STATE(5159), 1, sym_comment, @@ -393872,9 +393872,9 @@ static const uint16_t ts_small_parse_table[] = { [184468] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8979), 1, + ACTIONS(8988), 1, anon_sym_DOT, - ACTIONS(8981), 1, + ACTIONS(8990), 1, aux_sym__immediate_decimal_token2, STATE(5160), 1, sym_comment, @@ -393890,7 +393890,7 @@ static const uint16_t ts_small_parse_table[] = { [184492] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8983), 1, + ACTIONS(8992), 1, anon_sym_DOT2, STATE(1497), 1, sym_path, @@ -393909,7 +393909,7 @@ static const uint16_t ts_small_parse_table[] = { [184518] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8732), 1, + ACTIONS(8741), 1, aux_sym__immediate_decimal_token2, STATE(5162), 1, sym_comment, @@ -393926,7 +393926,7 @@ static const uint16_t ts_small_parse_table[] = { [184540] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8985), 1, + ACTIONS(8994), 1, aux_sym__immediate_decimal_token2, STATE(5163), 1, sym_comment, @@ -393943,19 +393943,19 @@ static const uint16_t ts_small_parse_table[] = { [184562] = 9, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4648), 1, + ACTIONS(4657), 1, anon_sym_DOLLAR, - ACTIONS(4650), 1, + ACTIONS(4659), 1, anon_sym_LPAREN2, - ACTIONS(4656), 1, + ACTIONS(4665), 1, aux_sym__immediate_decimal_token4, - ACTIONS(4658), 1, + ACTIONS(4667), 1, aux_sym__immediate_decimal_token5, STATE(2484), 1, sym__immediate_decimal, STATE(5164), 1, sym_comment, - ACTIONS(4720), 2, + ACTIONS(4729), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, STATE(2480), 2, @@ -393966,7 +393966,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(941), 1, anon_sym_DASH2, - ACTIONS(8987), 1, + ACTIONS(8996), 1, anon_sym_DOT2, STATE(5539), 1, sym_path, @@ -393982,7 +393982,7 @@ static const uint16_t ts_small_parse_table[] = { [184616] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8758), 1, + ACTIONS(8767), 1, anon_sym_DOT2, STATE(5166), 1, sym_comment, @@ -394001,7 +394001,7 @@ static const uint16_t ts_small_parse_table[] = { [184642] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8983), 1, + ACTIONS(8992), 1, anon_sym_DOT2, STATE(1497), 1, sym_path, @@ -394020,19 +394020,19 @@ static const uint16_t ts_small_parse_table[] = { [184668] = 9, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3538), 1, + ACTIONS(3547), 1, anon_sym_DOLLAR, - ACTIONS(4542), 1, + ACTIONS(4551), 1, anon_sym_LPAREN2, - ACTIONS(4548), 1, + ACTIONS(4557), 1, aux_sym__immediate_decimal_token4, - ACTIONS(4550), 1, + ACTIONS(4559), 1, aux_sym__immediate_decimal_token5, STATE(2039), 1, sym__immediate_decimal, STATE(5168), 1, sym_comment, - ACTIONS(4621), 2, + ACTIONS(4630), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, STATE(2038), 2, @@ -394041,19 +394041,19 @@ static const uint16_t ts_small_parse_table[] = { [184698] = 9, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3538), 1, + ACTIONS(3547), 1, anon_sym_DOLLAR, - ACTIONS(4542), 1, + ACTIONS(4551), 1, anon_sym_LPAREN2, - ACTIONS(6420), 1, + ACTIONS(6429), 1, aux_sym__immediate_decimal_token4, - ACTIONS(6422), 1, + ACTIONS(6431), 1, aux_sym__immediate_decimal_token5, STATE(2126), 1, sym__immediate_decimal, STATE(5169), 1, sym_comment, - ACTIONS(6466), 2, + ACTIONS(6475), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, STATE(2040), 2, @@ -394064,7 +394064,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(1925), 1, anon_sym_DASH2, - ACTIONS(8990), 1, + ACTIONS(8999), 1, anon_sym_DOT2, STATE(4101), 1, sym_path, @@ -394084,7 +394084,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(1945), 1, anon_sym_DASH2, - ACTIONS(8990), 1, + ACTIONS(8999), 1, anon_sym_DOT2, STATE(4101), 1, sym_path, @@ -394104,7 +394104,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(1937), 1, anon_sym_DASH2, - ACTIONS(8990), 1, + ACTIONS(8999), 1, anon_sym_DOT2, STATE(4101), 1, sym_path, @@ -394124,7 +394124,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(1933), 1, anon_sym_DASH2, - ACTIONS(8990), 1, + ACTIONS(8999), 1, anon_sym_DOT2, STATE(4101), 1, sym_path, @@ -394144,7 +394144,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(2093), 1, anon_sym_DASH2, - ACTIONS(8990), 1, + ACTIONS(8999), 1, anon_sym_DOT2, STATE(4101), 1, sym_path, @@ -394164,7 +394164,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(1949), 1, anon_sym_DASH2, - ACTIONS(8990), 1, + ACTIONS(8999), 1, anon_sym_DOT2, STATE(4101), 1, sym_path, @@ -394184,7 +394184,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(1953), 1, anon_sym_DASH2, - ACTIONS(8990), 1, + ACTIONS(8999), 1, anon_sym_DOT2, STATE(4101), 1, sym_path, @@ -394204,7 +394204,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(1957), 1, anon_sym_DASH2, - ACTIONS(8990), 1, + ACTIONS(8999), 1, anon_sym_DOT2, STATE(4101), 1, sym_path, @@ -394224,7 +394224,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(1961), 1, anon_sym_DASH2, - ACTIONS(8990), 1, + ACTIONS(8999), 1, anon_sym_DOT2, STATE(4101), 1, sym_path, @@ -394244,7 +394244,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(1965), 1, anon_sym_DASH2, - ACTIONS(8990), 1, + ACTIONS(8999), 1, anon_sym_DOT2, STATE(4101), 1, sym_path, @@ -394264,7 +394264,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(1969), 1, anon_sym_DASH2, - ACTIONS(8990), 1, + ACTIONS(8999), 1, anon_sym_DOT2, STATE(4101), 1, sym_path, @@ -394284,7 +394284,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(1973), 1, anon_sym_DASH2, - ACTIONS(8990), 1, + ACTIONS(8999), 1, anon_sym_DOT2, STATE(4101), 1, sym_path, @@ -394304,7 +394304,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(1977), 1, anon_sym_DASH2, - ACTIONS(8990), 1, + ACTIONS(8999), 1, anon_sym_DOT2, STATE(4101), 1, sym_path, @@ -394324,7 +394324,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(1981), 1, anon_sym_DASH2, - ACTIONS(8990), 1, + ACTIONS(8999), 1, anon_sym_DOT2, STATE(4101), 1, sym_path, @@ -394344,7 +394344,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(1985), 1, anon_sym_DASH2, - ACTIONS(8990), 1, + ACTIONS(8999), 1, anon_sym_DOT2, STATE(4101), 1, sym_path, @@ -394364,7 +394364,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(1989), 1, anon_sym_DASH2, - ACTIONS(8990), 1, + ACTIONS(8999), 1, anon_sym_DOT2, STATE(4101), 1, sym_path, @@ -394384,7 +394384,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(1993), 1, anon_sym_DASH2, - ACTIONS(8990), 1, + ACTIONS(8999), 1, anon_sym_DOT2, STATE(4101), 1, sym_path, @@ -394404,7 +394404,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(1997), 1, anon_sym_DASH2, - ACTIONS(8990), 1, + ACTIONS(8999), 1, anon_sym_DOT2, STATE(4101), 1, sym_path, @@ -394424,7 +394424,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(2001), 1, anon_sym_DASH2, - ACTIONS(8990), 1, + ACTIONS(8999), 1, anon_sym_DOT2, STATE(4101), 1, sym_path, @@ -394444,7 +394444,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(2005), 1, anon_sym_DASH2, - ACTIONS(8990), 1, + ACTIONS(8999), 1, anon_sym_DOT2, STATE(4101), 1, sym_path, @@ -394464,7 +394464,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(2009), 1, anon_sym_DASH2, - ACTIONS(8990), 1, + ACTIONS(8999), 1, anon_sym_DOT2, STATE(4101), 1, sym_path, @@ -394484,7 +394484,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(2089), 1, anon_sym_DASH2, - ACTIONS(8990), 1, + ACTIONS(8999), 1, anon_sym_DOT2, STATE(4101), 1, sym_path, @@ -394502,19 +394502,19 @@ static const uint16_t ts_small_parse_table[] = { [185344] = 9, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3538), 1, + ACTIONS(3547), 1, anon_sym_DOLLAR, - ACTIONS(4542), 1, + ACTIONS(4551), 1, anon_sym_LPAREN2, - ACTIONS(6420), 1, + ACTIONS(6429), 1, aux_sym__immediate_decimal_token4, - ACTIONS(6422), 1, + ACTIONS(6431), 1, aux_sym__immediate_decimal_token5, STATE(3556), 1, sym__immediate_decimal, STATE(5192), 1, sym_comment, - ACTIONS(6418), 2, + ACTIONS(6427), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, STATE(3550), 2, @@ -394523,19 +394523,19 @@ static const uint16_t ts_small_parse_table[] = { [185374] = 9, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3538), 1, + ACTIONS(3547), 1, anon_sym_DOLLAR, - ACTIONS(4542), 1, + ACTIONS(4551), 1, anon_sym_LPAREN2, - ACTIONS(6420), 1, + ACTIONS(6429), 1, aux_sym__immediate_decimal_token4, - ACTIONS(6422), 1, + ACTIONS(6431), 1, aux_sym__immediate_decimal_token5, STATE(2098), 1, sym__immediate_decimal, STATE(5193), 1, sym_comment, - ACTIONS(6466), 2, + ACTIONS(6475), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, STATE(2029), 2, @@ -394544,7 +394544,7 @@ static const uint16_t ts_small_parse_table[] = { [185404] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8992), 1, + ACTIONS(9001), 1, anon_sym_DOT2, STATE(5546), 1, sym_path, @@ -394562,9 +394562,9 @@ static const uint16_t ts_small_parse_table[] = { [185428] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8995), 1, + ACTIONS(9004), 1, anon_sym_DOT, - ACTIONS(8997), 1, + ACTIONS(9006), 1, aux_sym__immediate_decimal_token2, STATE(5195), 1, sym_comment, @@ -394580,19 +394580,19 @@ static const uint16_t ts_small_parse_table[] = { [185452] = 9, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6979), 1, + ACTIONS(6988), 1, anon_sym_LPAREN2, - ACTIONS(8999), 1, + ACTIONS(9008), 1, anon_sym_DOLLAR, - ACTIONS(9001), 1, + ACTIONS(9010), 1, aux_sym__immediate_decimal_token4, - ACTIONS(9003), 1, + ACTIONS(9012), 1, aux_sym__immediate_decimal_token5, STATE(4337), 1, sym__immediate_decimal, STATE(5196), 1, sym_comment, - ACTIONS(7009), 2, + ACTIONS(7018), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, STATE(4770), 2, @@ -394601,7 +394601,7 @@ static const uint16_t ts_small_parse_table[] = { [185482] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9005), 1, + ACTIONS(9014), 1, aux_sym__immediate_decimal_token2, STATE(5197), 1, sym_comment, @@ -394682,19 +394682,19 @@ static const uint16_t ts_small_parse_table[] = { [185584] = 9, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5523), 1, + ACTIONS(5532), 1, anon_sym_DOLLAR, - ACTIONS(5525), 1, + ACTIONS(5534), 1, anon_sym_LPAREN2, - ACTIONS(5531), 1, + ACTIONS(5540), 1, aux_sym__immediate_decimal_token4, - ACTIONS(5533), 1, + ACTIONS(5542), 1, aux_sym__immediate_decimal_token5, STATE(3067), 1, sym__immediate_decimal, STATE(5202), 1, sym_comment, - ACTIONS(5529), 2, + ACTIONS(5538), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, STATE(3126), 2, @@ -394703,19 +394703,19 @@ static const uint16_t ts_small_parse_table[] = { [185614] = 9, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4648), 1, + ACTIONS(4657), 1, anon_sym_DOLLAR, - ACTIONS(4650), 1, + ACTIONS(4659), 1, anon_sym_LPAREN2, - ACTIONS(4656), 1, + ACTIONS(4665), 1, aux_sym__immediate_decimal_token4, - ACTIONS(4658), 1, + ACTIONS(4667), 1, aux_sym__immediate_decimal_token5, STATE(2084), 1, sym__immediate_decimal, STATE(5203), 1, sym_comment, - ACTIONS(4654), 2, + ACTIONS(4663), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, STATE(2083), 2, @@ -394724,9 +394724,9 @@ static const uint16_t ts_small_parse_table[] = { [185644] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9007), 1, + ACTIONS(9016), 1, anon_sym_DOT, - ACTIONS(9009), 1, + ACTIONS(9018), 1, aux_sym__immediate_decimal_token2, STATE(5204), 1, sym_comment, @@ -394742,9 +394742,9 @@ static const uint16_t ts_small_parse_table[] = { [185668] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9011), 1, + ACTIONS(9020), 1, aux_sym__immediate_decimal_token1, - ACTIONS(9013), 1, + ACTIONS(9022), 1, aux_sym__immediate_decimal_token2, STATE(5205), 1, sym_comment, @@ -394760,9 +394760,9 @@ static const uint16_t ts_small_parse_table[] = { [185692] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9015), 1, + ACTIONS(9024), 1, aux_sym__immediate_decimal_token1, - ACTIONS(9017), 1, + ACTIONS(9026), 1, aux_sym__immediate_decimal_token2, STATE(5206), 1, sym_comment, @@ -394778,19 +394778,19 @@ static const uint16_t ts_small_parse_table[] = { [185716] = 9, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4137), 1, + ACTIONS(4146), 1, anon_sym_LPAREN2, - ACTIONS(4431), 1, + ACTIONS(4440), 1, aux_sym__immediate_decimal_token4, - ACTIONS(4433), 1, + ACTIONS(4442), 1, aux_sym__immediate_decimal_token5, - ACTIONS(8317), 1, + ACTIONS(8326), 1, anon_sym_DOLLAR, STATE(1845), 1, sym__immediate_decimal, STATE(5207), 1, sym_comment, - ACTIONS(4429), 2, + ACTIONS(4438), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, STATE(1842), 2, @@ -394799,19 +394799,19 @@ static const uint16_t ts_small_parse_table[] = { [185746] = 9, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8019), 1, + ACTIONS(8028), 1, anon_sym_LPAREN2, - ACTIONS(9019), 1, + ACTIONS(9028), 1, anon_sym_DOLLAR, - ACTIONS(9021), 1, + ACTIONS(9030), 1, aux_sym__immediate_decimal_token4, - ACTIONS(9023), 1, + ACTIONS(9032), 1, aux_sym__immediate_decimal_token5, STATE(5208), 1, sym_comment, STATE(7312), 1, sym__immediate_decimal, - ACTIONS(8353), 2, + ACTIONS(8362), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, STATE(6784), 2, @@ -394820,17 +394820,17 @@ static const uint16_t ts_small_parse_table[] = { [185776] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9025), 1, + ACTIONS(9034), 1, anon_sym_EQ2, - ACTIONS(9027), 1, + ACTIONS(9036), 1, sym_short_flag_identifier, STATE(5209), 1, sym_comment, - ACTIONS(4871), 3, + ACTIONS(4880), 3, anon_sym_DASH_DASH, anon_sym_DASH2, anon_sym_as, - ACTIONS(4869), 4, + ACTIONS(4878), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, @@ -394838,19 +394838,19 @@ static const uint16_t ts_small_parse_table[] = { [185800] = 9, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4648), 1, + ACTIONS(4657), 1, anon_sym_DOLLAR, - ACTIONS(4650), 1, + ACTIONS(4659), 1, anon_sym_LPAREN2, - ACTIONS(4656), 1, + ACTIONS(4665), 1, aux_sym__immediate_decimal_token4, - ACTIONS(4658), 1, + ACTIONS(4667), 1, aux_sym__immediate_decimal_token5, STATE(2452), 1, sym__immediate_decimal, STATE(5210), 1, sym_comment, - ACTIONS(4720), 2, + ACTIONS(4729), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, STATE(2542), 2, @@ -394859,19 +394859,19 @@ static const uint16_t ts_small_parse_table[] = { [185830] = 9, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4648), 1, + ACTIONS(4657), 1, anon_sym_DOLLAR, - ACTIONS(4650), 1, + ACTIONS(4659), 1, anon_sym_LPAREN2, - ACTIONS(4656), 1, + ACTIONS(4665), 1, aux_sym__immediate_decimal_token4, - ACTIONS(4658), 1, + ACTIONS(4667), 1, aux_sym__immediate_decimal_token5, STATE(2473), 1, sym__immediate_decimal, STATE(5211), 1, sym_comment, - ACTIONS(4720), 2, + ACTIONS(4729), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, STATE(2454), 2, @@ -394880,19 +394880,19 @@ static const uint16_t ts_small_parse_table[] = { [185860] = 9, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8019), 1, + ACTIONS(8028), 1, anon_sym_LPAREN2, - ACTIONS(9019), 1, + ACTIONS(9028), 1, anon_sym_DOLLAR, - ACTIONS(9021), 1, + ACTIONS(9030), 1, aux_sym__immediate_decimal_token4, - ACTIONS(9023), 1, + ACTIONS(9032), 1, aux_sym__immediate_decimal_token5, STATE(5212), 1, sym_comment, STATE(5904), 1, sym__immediate_decimal, - ACTIONS(8083), 2, + ACTIONS(8092), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, STATE(5663), 2, @@ -394901,19 +394901,19 @@ static const uint16_t ts_small_parse_table[] = { [185890] = 9, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8019), 1, + ACTIONS(8028), 1, anon_sym_LPAREN2, - ACTIONS(9019), 1, + ACTIONS(9028), 1, anon_sym_DOLLAR, - ACTIONS(9021), 1, + ACTIONS(9030), 1, aux_sym__immediate_decimal_token4, - ACTIONS(9023), 1, + ACTIONS(9032), 1, aux_sym__immediate_decimal_token5, STATE(5213), 1, sym_comment, STATE(7238), 1, sym__immediate_decimal, - ACTIONS(8353), 2, + ACTIONS(8362), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, STATE(6981), 2, @@ -394922,19 +394922,19 @@ static const uint16_t ts_small_parse_table[] = { [185920] = 9, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4648), 1, + ACTIONS(4657), 1, anon_sym_DOLLAR, - ACTIONS(4650), 1, + ACTIONS(4659), 1, anon_sym_LPAREN2, - ACTIONS(4696), 1, + ACTIONS(4705), 1, aux_sym__immediate_decimal_token4, - ACTIONS(4698), 1, + ACTIONS(4707), 1, aux_sym__immediate_decimal_token5, STATE(2181), 1, sym__immediate_decimal, STATE(5214), 1, sym_comment, - ACTIONS(4694), 2, + ACTIONS(4703), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, STATE(2454), 2, @@ -394943,19 +394943,19 @@ static const uint16_t ts_small_parse_table[] = { [185950] = 9, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3538), 1, + ACTIONS(3547), 1, anon_sym_DOLLAR, - ACTIONS(4542), 1, + ACTIONS(4551), 1, anon_sym_LPAREN2, - ACTIONS(8502), 1, + ACTIONS(8511), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8504), 1, + ACTIONS(8513), 1, aux_sym__immediate_decimal_token5, STATE(5215), 1, sym_comment, STATE(6811), 1, sym__immediate_decimal, - ACTIONS(8500), 2, + ACTIONS(8509), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, STATE(2040), 2, @@ -394964,19 +394964,19 @@ static const uint16_t ts_small_parse_table[] = { [185980] = 9, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6979), 1, + ACTIONS(6988), 1, anon_sym_LPAREN2, - ACTIONS(8999), 1, + ACTIONS(9008), 1, anon_sym_DOLLAR, - ACTIONS(9029), 1, + ACTIONS(9038), 1, aux_sym__immediate_decimal_token4, - ACTIONS(9031), 1, + ACTIONS(9040), 1, aux_sym__immediate_decimal_token5, STATE(4740), 1, sym__immediate_decimal, STATE(5216), 1, sym_comment, - ACTIONS(7031), 2, + ACTIONS(7040), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, STATE(4734), 2, @@ -394985,19 +394985,19 @@ static const uint16_t ts_small_parse_table[] = { [186010] = 9, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6925), 1, + ACTIONS(6934), 1, anon_sym_LPAREN2, - ACTIONS(9033), 1, + ACTIONS(9042), 1, anon_sym_DOLLAR, - ACTIONS(9035), 1, + ACTIONS(9044), 1, aux_sym__immediate_decimal_token4, - ACTIONS(9037), 1, + ACTIONS(9046), 1, aux_sym__immediate_decimal_token5, STATE(4118), 1, sym__immediate_decimal, STATE(5217), 1, sym_comment, - ACTIONS(6951), 2, + ACTIONS(6960), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, STATE(4546), 2, @@ -395006,19 +395006,19 @@ static const uint16_t ts_small_parse_table[] = { [186040] = 9, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6925), 1, + ACTIONS(6934), 1, anon_sym_LPAREN2, - ACTIONS(9033), 1, + ACTIONS(9042), 1, anon_sym_DOLLAR, - ACTIONS(9039), 1, + ACTIONS(9048), 1, aux_sym__immediate_decimal_token4, - ACTIONS(9041), 1, + ACTIONS(9050), 1, aux_sym__immediate_decimal_token5, STATE(4386), 1, sym__immediate_decimal, STATE(5218), 1, sym_comment, - ACTIONS(6995), 2, + ACTIONS(7004), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, STATE(4545), 2, @@ -395027,19 +395027,19 @@ static const uint16_t ts_small_parse_table[] = { [186070] = 9, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4542), 1, + ACTIONS(4551), 1, anon_sym_LPAREN2, - ACTIONS(6443), 1, + ACTIONS(6452), 1, anon_sym_DOLLAR, - ACTIONS(8347), 1, + ACTIONS(8356), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8349), 1, + ACTIONS(8358), 1, aux_sym__immediate_decimal_token5, STATE(2039), 1, sym__immediate_decimal, STATE(5219), 1, sym_comment, - ACTIONS(8734), 2, + ACTIONS(8743), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, STATE(2038), 2, @@ -395048,19 +395048,19 @@ static const uint16_t ts_small_parse_table[] = { [186100] = 9, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3538), 1, + ACTIONS(3547), 1, anon_sym_DOLLAR, - ACTIONS(4542), 1, + ACTIONS(4551), 1, anon_sym_LPAREN2, - ACTIONS(4611), 1, + ACTIONS(4620), 1, aux_sym__immediate_decimal_token4, - ACTIONS(4613), 1, + ACTIONS(4622), 1, aux_sym__immediate_decimal_token5, STATE(2093), 1, sym__immediate_decimal, STATE(5220), 1, sym_comment, - ACTIONS(4609), 2, + ACTIONS(4618), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, STATE(2040), 2, @@ -395085,19 +395085,19 @@ static const uint16_t ts_small_parse_table[] = { [186150] = 9, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3538), 1, + ACTIONS(3547), 1, anon_sym_DOLLAR, - ACTIONS(4542), 1, + ACTIONS(4551), 1, anon_sym_LPAREN2, - ACTIONS(6402), 1, + ACTIONS(6411), 1, aux_sym__immediate_decimal_token4, - ACTIONS(6404), 1, + ACTIONS(6413), 1, aux_sym__immediate_decimal_token5, STATE(3533), 1, sym__immediate_decimal, STATE(5222), 1, sym_comment, - ACTIONS(6400), 2, + ACTIONS(6409), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, STATE(2040), 2, @@ -395106,19 +395106,19 @@ static const uint16_t ts_small_parse_table[] = { [186180] = 9, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3988), 1, + ACTIONS(3997), 1, anon_sym_LPAREN2, - ACTIONS(4399), 1, + ACTIONS(4408), 1, aux_sym__immediate_decimal_token4, - ACTIONS(4401), 1, + ACTIONS(4410), 1, aux_sym__immediate_decimal_token5, - ACTIONS(7975), 1, + ACTIONS(7984), 1, anon_sym_DOLLAR, STATE(1738), 1, sym__immediate_decimal, STATE(5223), 1, sym_comment, - ACTIONS(4397), 2, + ACTIONS(4406), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, STATE(1737), 2, @@ -395127,19 +395127,19 @@ static const uint16_t ts_small_parse_table[] = { [186210] = 9, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8019), 1, + ACTIONS(8028), 1, anon_sym_LPAREN2, - ACTIONS(9019), 1, + ACTIONS(9028), 1, anon_sym_DOLLAR, - ACTIONS(9043), 1, + ACTIONS(9052), 1, aux_sym__immediate_decimal_token4, - ACTIONS(9045), 1, + ACTIONS(9054), 1, aux_sym__immediate_decimal_token5, STATE(5224), 1, sym_comment, STATE(6137), 1, sym__immediate_decimal, - ACTIONS(8357), 2, + ACTIONS(8366), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, STATE(6784), 2, @@ -395148,19 +395148,19 @@ static const uint16_t ts_small_parse_table[] = { [186240] = 9, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5523), 1, + ACTIONS(5532), 1, anon_sym_DOLLAR, - ACTIONS(5525), 1, + ACTIONS(5534), 1, anon_sym_LPAREN2, - ACTIONS(5559), 1, + ACTIONS(5568), 1, aux_sym__immediate_decimal_token4, - ACTIONS(5561), 1, + ACTIONS(5570), 1, aux_sym__immediate_decimal_token5, STATE(3141), 1, sym__immediate_decimal, STATE(5225), 1, sym_comment, - ACTIONS(5557), 2, + ACTIONS(5566), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, STATE(3186), 2, @@ -395169,19 +395169,19 @@ static const uint16_t ts_small_parse_table[] = { [186270] = 9, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3988), 1, + ACTIONS(3997), 1, anon_sym_LPAREN2, - ACTIONS(3994), 1, + ACTIONS(4003), 1, aux_sym__immediate_decimal_token4, - ACTIONS(3996), 1, + ACTIONS(4005), 1, aux_sym__immediate_decimal_token5, - ACTIONS(7975), 1, + ACTIONS(7984), 1, anon_sym_DOLLAR, STATE(1599), 1, sym__immediate_decimal, STATE(5226), 1, sym_comment, - ACTIONS(3992), 2, + ACTIONS(4001), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, STATE(1739), 2, @@ -395190,19 +395190,19 @@ static const uint16_t ts_small_parse_table[] = { [186300] = 9, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7068), 1, + ACTIONS(7077), 1, anon_sym_DOLLAR, - ACTIONS(7070), 1, + ACTIONS(7079), 1, anon_sym_LPAREN2, - ACTIONS(7078), 1, + ACTIONS(7087), 1, aux_sym__immediate_decimal_token4, - ACTIONS(7080), 1, + ACTIONS(7089), 1, aux_sym__immediate_decimal_token5, STATE(4849), 1, sym__immediate_decimal, STATE(5227), 1, sym_comment, - ACTIONS(7134), 2, + ACTIONS(7143), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, STATE(4848), 2, @@ -395211,19 +395211,19 @@ static const uint16_t ts_small_parse_table[] = { [186330] = 9, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4648), 1, + ACTIONS(4657), 1, anon_sym_DOLLAR, - ACTIONS(4650), 1, + ACTIONS(4659), 1, anon_sym_LPAREN2, - ACTIONS(5963), 1, + ACTIONS(5972), 1, aux_sym__immediate_decimal_token4, - ACTIONS(5965), 1, + ACTIONS(5974), 1, aux_sym__immediate_decimal_token5, STATE(3260), 1, sym__immediate_decimal, STATE(5228), 1, sym_comment, - ACTIONS(5961), 2, + ACTIONS(5970), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, STATE(2454), 2, @@ -395232,19 +395232,19 @@ static const uint16_t ts_small_parse_table[] = { [186360] = 9, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5375), 1, + ACTIONS(5384), 1, anon_sym_LPAREN2, - ACTIONS(9047), 1, + ACTIONS(9056), 1, anon_sym_DOLLAR, - ACTIONS(9051), 1, + ACTIONS(9060), 1, aux_sym__immediate_decimal_token4, - ACTIONS(9053), 1, + ACTIONS(9062), 1, aux_sym__immediate_decimal_token5, STATE(3063), 1, sym__immediate_decimal, STATE(5229), 1, sym_comment, - ACTIONS(9049), 2, + ACTIONS(9058), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, STATE(3059), 2, @@ -395253,19 +395253,19 @@ static const uint16_t ts_small_parse_table[] = { [186390] = 9, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3538), 1, + ACTIONS(3547), 1, anon_sym_DOLLAR, - ACTIONS(4542), 1, + ACTIONS(4551), 1, anon_sym_LPAREN2, - ACTIONS(4548), 1, + ACTIONS(4557), 1, aux_sym__immediate_decimal_token4, - ACTIONS(4550), 1, + ACTIONS(4559), 1, aux_sym__immediate_decimal_token5, STATE(1900), 1, sym__immediate_decimal, STATE(5230), 1, sym_comment, - ACTIONS(4546), 2, + ACTIONS(4555), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, STATE(1933), 2, @@ -395274,19 +395274,19 @@ static const uint16_t ts_small_parse_table[] = { [186420] = 9, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4650), 1, + ACTIONS(4659), 1, anon_sym_LPAREN2, - ACTIONS(6478), 1, + ACTIONS(6487), 1, anon_sym_DOLLAR, - ACTIONS(6947), 1, + ACTIONS(6956), 1, aux_sym__immediate_decimal_token4, - ACTIONS(6949), 1, + ACTIONS(6958), 1, aux_sym__immediate_decimal_token5, STATE(4058), 1, sym__immediate_decimal, STATE(5231), 1, sym_comment, - ACTIONS(6945), 2, + ACTIONS(6954), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, STATE(2454), 2, @@ -395295,19 +395295,19 @@ static const uint16_t ts_small_parse_table[] = { [186450] = 9, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3538), 1, + ACTIONS(3547), 1, anon_sym_DOLLAR, - ACTIONS(4542), 1, + ACTIONS(4551), 1, anon_sym_LPAREN2, - ACTIONS(6420), 1, + ACTIONS(6429), 1, aux_sym__immediate_decimal_token4, - ACTIONS(6422), 1, + ACTIONS(6431), 1, aux_sym__immediate_decimal_token5, STATE(2039), 1, sym__immediate_decimal, STATE(5232), 1, sym_comment, - ACTIONS(6466), 2, + ACTIONS(6475), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, STATE(2038), 2, @@ -395316,19 +395316,19 @@ static const uint16_t ts_small_parse_table[] = { [186480] = 9, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3538), 1, + ACTIONS(3547), 1, anon_sym_DOLLAR, - ACTIONS(4542), 1, + ACTIONS(4551), 1, anon_sym_LPAREN2, - ACTIONS(5928), 1, + ACTIONS(5937), 1, aux_sym__immediate_decimal_token4, - ACTIONS(5930), 1, + ACTIONS(5939), 1, aux_sym__immediate_decimal_token5, STATE(3240), 1, sym__immediate_decimal, STATE(5233), 1, sym_comment, - ACTIONS(5926), 2, + ACTIONS(5935), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, STATE(2040), 2, @@ -395358,17 +395358,17 @@ static const uint16_t ts_small_parse_table[] = { [186540] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4801), 1, + ACTIONS(4810), 1, aux_sym_unquoted_token2, - ACTIONS(9055), 1, + ACTIONS(9064), 1, anon_sym_DOT_DOT2, - ACTIONS(9059), 1, + ACTIONS(9068), 1, sym_filesize_unit, - ACTIONS(9061), 1, + ACTIONS(9070), 1, sym_duration_unit, STATE(5235), 1, sym_comment, - ACTIONS(9057), 2, + ACTIONS(9066), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, ACTIONS(1693), 3, @@ -395378,19 +395378,19 @@ static const uint16_t ts_small_parse_table[] = { [186568] = 9, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4542), 1, + ACTIONS(4551), 1, anon_sym_LPAREN2, - ACTIONS(6901), 1, + ACTIONS(6910), 1, anon_sym_DOLLAR, - ACTIONS(6913), 1, + ACTIONS(6922), 1, aux_sym__immediate_decimal_token4, - ACTIONS(6915), 1, + ACTIONS(6924), 1, aux_sym__immediate_decimal_token5, STATE(4019), 1, sym__immediate_decimal, STATE(5236), 1, sym_comment, - ACTIONS(6911), 2, + ACTIONS(6920), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, STATE(2040), 2, @@ -395401,17 +395401,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(1619), 1, anon_sym_LPAREN2, - ACTIONS(9063), 1, + ACTIONS(9072), 1, anon_sym_DOLLAR, - ACTIONS(9067), 1, + ACTIONS(9076), 1, aux_sym__immediate_decimal_token4, - ACTIONS(9069), 1, + ACTIONS(9078), 1, aux_sym__immediate_decimal_token5, STATE(614), 1, sym__immediate_decimal, STATE(5237), 1, sym_comment, - ACTIONS(9065), 2, + ACTIONS(9074), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, STATE(613), 2, @@ -395420,19 +395420,19 @@ static const uint16_t ts_small_parse_table[] = { [186628] = 9, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7068), 1, + ACTIONS(7077), 1, anon_sym_DOLLAR, - ACTIONS(7070), 1, + ACTIONS(7079), 1, anon_sym_LPAREN2, - ACTIONS(7098), 1, + ACTIONS(7107), 1, aux_sym__immediate_decimal_token4, - ACTIONS(7100), 1, + ACTIONS(7109), 1, aux_sym__immediate_decimal_token5, STATE(4431), 1, sym__immediate_decimal, STATE(5238), 1, sym_comment, - ACTIONS(7096), 2, + ACTIONS(7105), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, STATE(4850), 2, @@ -395441,19 +395441,19 @@ static const uint16_t ts_small_parse_table[] = { [186658] = 9, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5375), 1, + ACTIONS(5384), 1, anon_sym_LPAREN2, - ACTIONS(9047), 1, + ACTIONS(9056), 1, anon_sym_DOLLAR, - ACTIONS(9071), 1, + ACTIONS(9080), 1, aux_sym__immediate_decimal_token4, - ACTIONS(9073), 1, + ACTIONS(9082), 1, aux_sym__immediate_decimal_token5, STATE(2912), 1, sym__immediate_decimal, STATE(5239), 1, sym_comment, - ACTIONS(8756), 2, + ACTIONS(8765), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, STATE(3064), 2, @@ -395483,19 +395483,19 @@ static const uint16_t ts_small_parse_table[] = { [186718] = 9, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3538), 1, + ACTIONS(3547), 1, anon_sym_DOLLAR, - ACTIONS(4542), 1, + ACTIONS(4551), 1, anon_sym_LPAREN2, - ACTIONS(6435), 1, + ACTIONS(6444), 1, aux_sym__immediate_decimal_token4, - ACTIONS(6437), 1, + ACTIONS(6446), 1, aux_sym__immediate_decimal_token5, STATE(3616), 1, sym__immediate_decimal, STATE(5241), 1, sym_comment, - ACTIONS(6433), 2, + ACTIONS(6442), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, STATE(2040), 2, @@ -395506,17 +395506,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(1619), 1, anon_sym_LPAREN2, - ACTIONS(9063), 1, + ACTIONS(9072), 1, anon_sym_DOLLAR, - ACTIONS(9075), 1, + ACTIONS(9084), 1, aux_sym__immediate_decimal_token4, - ACTIONS(9077), 1, + ACTIONS(9086), 1, aux_sym__immediate_decimal_token5, STATE(508), 1, sym__immediate_decimal, STATE(5242), 1, sym_comment, - ACTIONS(8798), 2, + ACTIONS(8807), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, STATE(615), 2, @@ -395525,19 +395525,19 @@ static const uint16_t ts_small_parse_table[] = { [186778] = 9, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8019), 1, + ACTIONS(8028), 1, anon_sym_LPAREN2, - ACTIONS(9019), 1, + ACTIONS(9028), 1, anon_sym_DOLLAR, - ACTIONS(9079), 1, + ACTIONS(9088), 1, aux_sym__immediate_decimal_token4, - ACTIONS(9081), 1, + ACTIONS(9090), 1, aux_sym__immediate_decimal_token5, STATE(5243), 1, sym_comment, STATE(6625), 1, sym__immediate_decimal, - ACTIONS(8468), 2, + ACTIONS(8477), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, STATE(6784), 2, @@ -395546,19 +395546,19 @@ static const uint16_t ts_small_parse_table[] = { [186808] = 9, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3538), 1, + ACTIONS(3547), 1, anon_sym_DOLLAR, - ACTIONS(4542), 1, + ACTIONS(4551), 1, anon_sym_LPAREN2, - ACTIONS(4548), 1, + ACTIONS(4557), 1, aux_sym__immediate_decimal_token4, - ACTIONS(4550), 1, + ACTIONS(4559), 1, aux_sym__immediate_decimal_token5, STATE(2098), 1, sym__immediate_decimal, STATE(5244), 1, sym_comment, - ACTIONS(4621), 2, + ACTIONS(4630), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, STATE(2029), 2, @@ -395583,11 +395583,11 @@ static const uint16_t ts_small_parse_table[] = { [186858] = 9, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3118), 1, + ACTIONS(3125), 1, anon_sym_DQUOTE, - ACTIONS(3124), 1, + ACTIONS(3131), 1, sym_raw_string_begin, - ACTIONS(9083), 1, + ACTIONS(9092), 1, sym_identifier, STATE(5246), 1, sym_comment, @@ -395595,7 +395595,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_collection_type_repeat1, STATE(6369), 1, sym_val_string, - ACTIONS(3120), 2, + ACTIONS(3127), 2, sym__str_single_quotes, sym__str_back_ticks, STATE(5129), 2, @@ -395604,11 +395604,11 @@ static const uint16_t ts_small_parse_table[] = { [186888] = 9, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3118), 1, + ACTIONS(3125), 1, anon_sym_DQUOTE, - ACTIONS(3124), 1, + ACTIONS(3131), 1, sym_raw_string_begin, - ACTIONS(9085), 1, + ACTIONS(9094), 1, sym_identifier, STATE(5247), 1, sym_comment, @@ -395616,7 +395616,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_collection_type_repeat1, STATE(6296), 1, sym_val_string, - ACTIONS(3120), 2, + ACTIONS(3127), 2, sym__str_single_quotes, sym__str_back_ticks, STATE(5129), 2, @@ -395641,11 +395641,11 @@ static const uint16_t ts_small_parse_table[] = { [186938] = 9, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3118), 1, + ACTIONS(3125), 1, anon_sym_DQUOTE, - ACTIONS(3124), 1, + ACTIONS(3131), 1, sym_raw_string_begin, - ACTIONS(9087), 1, + ACTIONS(9096), 1, sym_identifier, STATE(5249), 1, sym_comment, @@ -395653,7 +395653,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_collection_type_repeat1, STATE(6481), 1, sym_val_string, - ACTIONS(3120), 2, + ACTIONS(3127), 2, sym__str_single_quotes, sym__str_back_ticks, STATE(5129), 2, @@ -395694,11 +395694,11 @@ static const uint16_t ts_small_parse_table[] = { [187008] = 9, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3118), 1, + ACTIONS(3125), 1, anon_sym_DQUOTE, - ACTIONS(3124), 1, + ACTIONS(3131), 1, sym_raw_string_begin, - ACTIONS(9089), 1, + ACTIONS(9098), 1, sym_identifier, STATE(5252), 1, sym_comment, @@ -395706,7 +395706,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_collection_type_repeat1, STATE(6184), 1, sym_val_string, - ACTIONS(3120), 2, + ACTIONS(3127), 2, sym__str_single_quotes, sym__str_back_ticks, STATE(5129), 2, @@ -395715,15 +395715,15 @@ static const uint16_t ts_small_parse_table[] = { [187038] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9091), 1, + ACTIONS(9100), 1, sym_identifier, - ACTIONS(9094), 1, + ACTIONS(9103), 1, anon_sym_DQUOTE, - ACTIONS(9100), 1, + ACTIONS(9109), 1, sym_raw_string_begin, STATE(7070), 1, sym_val_string, - ACTIONS(9097), 2, + ACTIONS(9106), 2, sym__str_single_quotes, sym__str_back_ticks, STATE(5129), 2, @@ -395735,19 +395735,19 @@ static const uint16_t ts_small_parse_table[] = { [187066] = 9, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4542), 1, + ACTIONS(4551), 1, anon_sym_LPAREN2, - ACTIONS(4548), 1, + ACTIONS(4557), 1, aux_sym__immediate_decimal_token4, - ACTIONS(4550), 1, + ACTIONS(4559), 1, aux_sym__immediate_decimal_token5, - ACTIONS(6901), 1, + ACTIONS(6910), 1, anon_sym_DOLLAR, STATE(2039), 1, sym__immediate_decimal, STATE(5254), 1, sym_comment, - ACTIONS(4621), 2, + ACTIONS(4630), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, STATE(2038), 2, @@ -395756,19 +395756,19 @@ static const uint16_t ts_small_parse_table[] = { [187096] = 9, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4542), 1, + ACTIONS(4551), 1, anon_sym_LPAREN2, - ACTIONS(6443), 1, + ACTIONS(6452), 1, anon_sym_DOLLAR, - ACTIONS(8645), 1, + ACTIONS(8654), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8647), 1, + ACTIONS(8656), 1, aux_sym__immediate_decimal_token5, STATE(5255), 1, sym_comment, STATE(7210), 1, sym__immediate_decimal, - ACTIONS(8643), 2, + ACTIONS(8652), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, STATE(2040), 2, @@ -395793,11 +395793,11 @@ static const uint16_t ts_small_parse_table[] = { [187146] = 9, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3118), 1, + ACTIONS(3125), 1, anon_sym_DQUOTE, - ACTIONS(3124), 1, + ACTIONS(3131), 1, sym_raw_string_begin, - ACTIONS(9103), 1, + ACTIONS(9112), 1, sym_identifier, STATE(5253), 1, aux_sym_collection_type_repeat1, @@ -395805,7 +395805,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(6148), 1, sym_val_string, - ACTIONS(3120), 2, + ACTIONS(3127), 2, sym__str_single_quotes, sym__str_back_ticks, STATE(5129), 2, @@ -395814,11 +395814,11 @@ static const uint16_t ts_small_parse_table[] = { [187176] = 9, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3118), 1, + ACTIONS(3125), 1, anon_sym_DQUOTE, - ACTIONS(3124), 1, + ACTIONS(3131), 1, sym_raw_string_begin, - ACTIONS(9105), 1, + ACTIONS(9114), 1, sym_identifier, STATE(5253), 1, aux_sym_collection_type_repeat1, @@ -395826,7 +395826,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(6565), 1, sym_val_string, - ACTIONS(3120), 2, + ACTIONS(3127), 2, sym__str_single_quotes, sym__str_back_ticks, STATE(5129), 2, @@ -395835,16 +395835,16 @@ static const uint16_t ts_small_parse_table[] = { [187206] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9107), 1, + ACTIONS(9116), 1, sym_long_flag_identifier, - ACTIONS(9109), 1, + ACTIONS(9118), 1, anon_sym_EQ2, STATE(5259), 1, sym_comment, - ACTIONS(4881), 2, + ACTIONS(4890), 2, anon_sym_DASH2, anon_sym_as, - ACTIONS(4879), 5, + ACTIONS(4888), 5, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, @@ -395853,19 +395853,19 @@ static const uint16_t ts_small_parse_table[] = { [187230] = 9, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4650), 1, + ACTIONS(4659), 1, anon_sym_LPAREN2, - ACTIONS(4656), 1, + ACTIONS(4665), 1, aux_sym__immediate_decimal_token4, - ACTIONS(4658), 1, + ACTIONS(4667), 1, aux_sym__immediate_decimal_token5, - ACTIONS(6478), 1, + ACTIONS(6487), 1, anon_sym_DOLLAR, STATE(2452), 1, sym__immediate_decimal, STATE(5260), 1, sym_comment, - ACTIONS(4720), 2, + ACTIONS(4729), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, STATE(2542), 2, @@ -395874,7 +395874,7 @@ static const uint16_t ts_small_parse_table[] = { [187260] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8738), 1, + ACTIONS(8747), 1, aux_sym__immediate_decimal_token2, STATE(5261), 1, sym_comment, @@ -395907,19 +395907,19 @@ static const uint16_t ts_small_parse_table[] = { [187302] = 9, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4137), 1, + ACTIONS(4146), 1, anon_sym_LPAREN2, - ACTIONS(4143), 1, + ACTIONS(4152), 1, aux_sym__immediate_decimal_token4, - ACTIONS(4145), 1, + ACTIONS(4154), 1, aux_sym__immediate_decimal_token5, - ACTIONS(8317), 1, + ACTIONS(8326), 1, anon_sym_DOLLAR, STATE(1692), 1, sym__immediate_decimal, STATE(5263), 1, sym_comment, - ACTIONS(4141), 2, + ACTIONS(4150), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, STATE(1848), 2, @@ -395946,20 +395946,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(1693), 1, anon_sym_DASH_DASH, - ACTIONS(4596), 1, + ACTIONS(4605), 1, anon_sym_DOT_DOT2, - ACTIONS(8719), 1, + ACTIONS(8728), 1, aux_sym_unquoted_token2, - ACTIONS(9111), 1, + ACTIONS(9120), 1, sym_filesize_unit, - ACTIONS(9113), 1, + ACTIONS(9122), 1, sym_duration_unit, STATE(5265), 1, sym_comment, ACTIONS(1681), 2, sym_identifier, anon_sym_DASH2, - ACTIONS(4598), 2, + ACTIONS(4607), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, [187382] = 4, @@ -395981,7 +395981,7 @@ static const uint16_t ts_small_parse_table[] = { [187402] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9115), 1, + ACTIONS(9124), 1, aux_sym__immediate_decimal_token2, STATE(5267), 1, sym_comment, @@ -396016,7 +396016,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(958), 1, anon_sym_DASH2, - ACTIONS(9117), 1, + ACTIONS(9126), 1, anon_sym_QMARK2, STATE(5269), 1, sym_comment, @@ -396049,7 +396049,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(952), 1, anon_sym_DASH2, - ACTIONS(9119), 1, + ACTIONS(9128), 1, anon_sym_QMARK2, STATE(5271), 1, sym_comment, @@ -396080,19 +396080,19 @@ static const uint16_t ts_small_parse_table[] = { [187528] = 9, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8019), 1, + ACTIONS(8028), 1, anon_sym_LPAREN2, - ACTIONS(9019), 1, + ACTIONS(9028), 1, anon_sym_DOLLAR, - ACTIONS(9021), 1, + ACTIONS(9030), 1, aux_sym__immediate_decimal_token4, - ACTIONS(9023), 1, + ACTIONS(9032), 1, aux_sym__immediate_decimal_token5, STATE(5273), 1, sym_comment, STATE(6782), 1, sym__immediate_decimal, - ACTIONS(8353), 2, + ACTIONS(8362), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, STATE(6781), 2, @@ -396101,19 +396101,19 @@ static const uint16_t ts_small_parse_table[] = { [187558] = 9, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3538), 1, + ACTIONS(3547), 1, anon_sym_DOLLAR, - ACTIONS(4542), 1, + ACTIONS(4551), 1, anon_sym_LPAREN2, - ACTIONS(4548), 1, + ACTIONS(4557), 1, aux_sym__immediate_decimal_token4, - ACTIONS(4550), 1, + ACTIONS(4559), 1, aux_sym__immediate_decimal_token5, STATE(2126), 1, sym__immediate_decimal, STATE(5274), 1, sym_comment, - ACTIONS(4621), 2, + ACTIONS(4630), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, STATE(2040), 2, @@ -396122,9 +396122,9 @@ static const uint16_t ts_small_parse_table[] = { [187588] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9121), 1, + ACTIONS(9130), 1, aux_sym__immediate_decimal_token1, - ACTIONS(9123), 1, + ACTIONS(9132), 1, aux_sym__immediate_decimal_token2, STATE(5275), 1, sym_comment, @@ -396156,19 +396156,19 @@ static const uint16_t ts_small_parse_table[] = { [187632] = 9, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3538), 1, + ACTIONS(3547), 1, anon_sym_DOLLAR, - ACTIONS(4542), 1, + ACTIONS(4551), 1, anon_sym_LPAREN2, - ACTIONS(7923), 1, + ACTIONS(7932), 1, aux_sym__immediate_decimal_token4, - ACTIONS(7925), 1, + ACTIONS(7934), 1, aux_sym__immediate_decimal_token5, STATE(2039), 1, sym__immediate_decimal, STATE(5277), 1, sym_comment, - ACTIONS(8524), 2, + ACTIONS(8533), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, STATE(2038), 2, @@ -396181,7 +396181,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1299), 1, sym_raw_string_begin, - ACTIONS(9125), 1, + ACTIONS(9134), 1, aux_sym_path_token1, STATE(1445), 1, sym_val_string, @@ -396200,7 +396200,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1299), 1, sym_raw_string_begin, - ACTIONS(9127), 1, + ACTIONS(9136), 1, aux_sym_path_token1, STATE(4020), 1, sym_val_string, @@ -396215,7 +396215,7 @@ static const uint16_t ts_small_parse_table[] = { [187716] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9129), 1, + ACTIONS(9138), 1, anon_sym_QMARK2, STATE(5280), 1, sym_comment, @@ -396231,17 +396231,17 @@ static const uint16_t ts_small_parse_table[] = { [187737] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9131), 1, + ACTIONS(9140), 1, anon_sym_EQ2, - ACTIONS(9133), 1, + ACTIONS(9142), 1, sym_short_flag_identifier, STATE(5281), 1, sym_comment, - ACTIONS(4869), 3, + ACTIONS(4878), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - ACTIONS(4871), 3, + ACTIONS(4880), 3, anon_sym_DASH_DASH, anon_sym_DASH2, anon_sym_as, @@ -396250,7 +396250,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(952), 1, anon_sym_DASH2, - ACTIONS(9135), 1, + ACTIONS(9144), 1, anon_sym_QMARK2, STATE(5282), 1, sym_comment, @@ -396264,13 +396264,13 @@ static const uint16_t ts_small_parse_table[] = { [187781] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7690), 1, + ACTIONS(7699), 1, sym__newline, - ACTIONS(7692), 1, + ACTIONS(7701), 1, sym__space, - ACTIONS(7694), 1, + ACTIONS(7703), 1, anon_sym_DASH_DASH, - ACTIONS(7696), 1, + ACTIONS(7705), 1, anon_sym_DASH2, STATE(5283), 1, sym_comment, @@ -396284,11 +396284,11 @@ static const uint16_t ts_small_parse_table[] = { [187810] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9139), 1, + ACTIONS(9148), 1, anon_sym_DASH2, STATE(5284), 1, sym_comment, - ACTIONS(9137), 7, + ACTIONS(9146), 7, sym_identifier, anon_sym_PIPE, anon_sym_RBRACK, @@ -396303,17 +396303,17 @@ static const uint16_t ts_small_parse_table[] = { sym__newline, ACTIONS(1693), 1, sym__space, - ACTIONS(4596), 1, + ACTIONS(4605), 1, anon_sym_DOT_DOT2, - ACTIONS(7051), 1, + ACTIONS(7060), 1, aux_sym_unquoted_token2, - ACTIONS(9141), 1, + ACTIONS(9150), 1, sym_filesize_unit, - ACTIONS(9143), 1, + ACTIONS(9152), 1, sym_duration_unit, STATE(5285), 1, sym_comment, - ACTIONS(4598), 2, + ACTIONS(4607), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, [187858] = 7, @@ -396321,7 +396321,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(948), 1, anon_sym_DASH2, - ACTIONS(8990), 1, + ACTIONS(8999), 1, anon_sym_DOT2, STATE(4101), 1, sym_path, @@ -396339,7 +396339,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(941), 1, anon_sym_DASH2, - ACTIONS(9145), 1, + ACTIONS(9154), 1, anon_sym_DOT2, STATE(4101), 1, sym_path, @@ -396356,7 +396356,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(935), 1, anon_sym_DASH2, - ACTIONS(8990), 1, + ACTIONS(8999), 1, anon_sym_DOT2, STATE(4101), 1, sym_path, @@ -396373,7 +396373,7 @@ static const uint16_t ts_small_parse_table[] = { [187933] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9148), 1, + ACTIONS(9157), 1, anon_sym_QMARK2, STATE(5289), 1, sym_comment, @@ -396389,13 +396389,13 @@ static const uint16_t ts_small_parse_table[] = { [187954] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4918), 1, + ACTIONS(4927), 1, anon_sym_DASH2, - ACTIONS(9150), 1, + ACTIONS(9159), 1, anon_sym_EQ2, STATE(5290), 1, sym_comment, - ACTIONS(4916), 6, + ACTIONS(4925), 6, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, @@ -396421,17 +396421,17 @@ static const uint16_t ts_small_parse_table[] = { [187996] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9154), 1, + ACTIONS(9163), 1, anon_sym_GT2, - ACTIONS(9156), 1, + ACTIONS(9165), 1, sym__entry_separator, - ACTIONS(9158), 1, + ACTIONS(9167), 1, sym_raw_string_begin, STATE(5292), 1, sym_comment, STATE(5427), 1, aux_sym__multiple_types_repeat1, - ACTIONS(9152), 4, + ACTIONS(9161), 4, sym_identifier, anon_sym_DQUOTE, sym__str_single_quotes, @@ -396469,17 +396469,17 @@ static const uint16_t ts_small_parse_table[] = { [188059] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9156), 1, + ACTIONS(9165), 1, sym__entry_separator, - ACTIONS(9162), 1, + ACTIONS(9171), 1, anon_sym_GT2, - ACTIONS(9164), 1, + ACTIONS(9173), 1, sym_raw_string_begin, STATE(5295), 1, sym_comment, STATE(5427), 1, aux_sym__multiple_types_repeat1, - ACTIONS(9160), 4, + ACTIONS(9169), 4, sym_identifier, anon_sym_DQUOTE, sym__str_single_quotes, @@ -396487,17 +396487,17 @@ static const uint16_t ts_small_parse_table[] = { [188084] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9156), 1, + ACTIONS(9165), 1, sym__entry_separator, - ACTIONS(9168), 1, + ACTIONS(9177), 1, anon_sym_GT2, - ACTIONS(9170), 1, + ACTIONS(9179), 1, sym_raw_string_begin, STATE(5296), 1, sym_comment, STATE(5427), 1, aux_sym__multiple_types_repeat1, - ACTIONS(9166), 4, + ACTIONS(9175), 4, sym_identifier, anon_sym_DQUOTE, sym__str_single_quotes, @@ -396505,17 +396505,17 @@ static const uint16_t ts_small_parse_table[] = { [188109] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9156), 1, + ACTIONS(9165), 1, sym__entry_separator, - ACTIONS(9174), 1, + ACTIONS(9183), 1, anon_sym_GT2, - ACTIONS(9176), 1, + ACTIONS(9185), 1, sym_raw_string_begin, STATE(5297), 1, sym_comment, STATE(5427), 1, aux_sym__multiple_types_repeat1, - ACTIONS(9172), 4, + ACTIONS(9181), 4, sym_identifier, anon_sym_DQUOTE, sym__str_single_quotes, @@ -396538,17 +396538,17 @@ static const uint16_t ts_small_parse_table[] = { [188153] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9156), 1, + ACTIONS(9165), 1, sym__entry_separator, - ACTIONS(9170), 1, + ACTIONS(9179), 1, sym_raw_string_begin, - ACTIONS(9178), 1, + ACTIONS(9187), 1, anon_sym_GT2, STATE(5299), 1, sym_comment, STATE(5427), 1, aux_sym__multiple_types_repeat1, - ACTIONS(9166), 4, + ACTIONS(9175), 4, sym_identifier, anon_sym_DQUOTE, sym__str_single_quotes, @@ -396556,7 +396556,7 @@ static const uint16_t ts_small_parse_table[] = { [188178] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8997), 1, + ACTIONS(9006), 1, aux_sym__immediate_decimal_token2, STATE(5300), 1, sym_comment, @@ -396572,7 +396572,7 @@ static const uint16_t ts_small_parse_table[] = { [188199] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9009), 1, + ACTIONS(9018), 1, aux_sym__immediate_decimal_token2, STATE(5301), 1, sym_comment, @@ -396588,17 +396588,17 @@ static const uint16_t ts_small_parse_table[] = { [188220] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9156), 1, + ACTIONS(9165), 1, sym__entry_separator, - ACTIONS(9182), 1, + ACTIONS(9191), 1, anon_sym_GT2, - ACTIONS(9184), 1, + ACTIONS(9193), 1, sym_raw_string_begin, STATE(5302), 1, sym_comment, STATE(5427), 1, aux_sym__multiple_types_repeat1, - ACTIONS(9180), 4, + ACTIONS(9189), 4, sym_identifier, anon_sym_DQUOTE, sym__str_single_quotes, @@ -396606,9 +396606,9 @@ static const uint16_t ts_small_parse_table[] = { [188245] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9186), 1, + ACTIONS(9195), 1, aux_sym__immediate_decimal_token1, - ACTIONS(9188), 1, + ACTIONS(9197), 1, aux_sym__immediate_decimal_token2, STATE(5303), 1, sym_comment, @@ -396623,17 +396623,17 @@ static const uint16_t ts_small_parse_table[] = { [188268] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9156), 1, + ACTIONS(9165), 1, sym__entry_separator, - ACTIONS(9192), 1, + ACTIONS(9201), 1, anon_sym_GT2, - ACTIONS(9194), 1, + ACTIONS(9203), 1, sym_raw_string_begin, STATE(5304), 1, sym_comment, STATE(5427), 1, aux_sym__multiple_types_repeat1, - ACTIONS(9190), 4, + ACTIONS(9199), 4, sym_identifier, anon_sym_DQUOTE, sym__str_single_quotes, @@ -396641,17 +396641,17 @@ static const uint16_t ts_small_parse_table[] = { [188293] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9156), 1, + ACTIONS(9165), 1, sym__entry_separator, - ACTIONS(9158), 1, + ACTIONS(9167), 1, sym_raw_string_begin, - ACTIONS(9196), 1, + ACTIONS(9205), 1, anon_sym_GT2, STATE(5305), 1, sym_comment, STATE(5427), 1, aux_sym__multiple_types_repeat1, - ACTIONS(9152), 4, + ACTIONS(9161), 4, sym_identifier, anon_sym_DQUOTE, sym__str_single_quotes, @@ -396659,17 +396659,17 @@ static const uint16_t ts_small_parse_table[] = { [188318] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9156), 1, + ACTIONS(9165), 1, sym__entry_separator, - ACTIONS(9164), 1, + ACTIONS(9173), 1, sym_raw_string_begin, - ACTIONS(9198), 1, + ACTIONS(9207), 1, anon_sym_GT2, STATE(5306), 1, sym_comment, STATE(5427), 1, aux_sym__multiple_types_repeat1, - ACTIONS(9160), 4, + ACTIONS(9169), 4, sym_identifier, anon_sym_DQUOTE, sym__str_single_quotes, @@ -396677,17 +396677,17 @@ static const uint16_t ts_small_parse_table[] = { [188343] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9156), 1, + ACTIONS(9165), 1, sym__entry_separator, - ACTIONS(9158), 1, + ACTIONS(9167), 1, sym_raw_string_begin, - ACTIONS(9200), 1, + ACTIONS(9209), 1, anon_sym_GT2, STATE(5307), 1, sym_comment, STATE(5427), 1, aux_sym__multiple_types_repeat1, - ACTIONS(9152), 4, + ACTIONS(9161), 4, sym_identifier, anon_sym_DQUOTE, sym__str_single_quotes, @@ -396695,17 +396695,17 @@ static const uint16_t ts_small_parse_table[] = { [188368] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9156), 1, + ACTIONS(9165), 1, sym__entry_separator, - ACTIONS(9164), 1, + ACTIONS(9173), 1, sym_raw_string_begin, - ACTIONS(9202), 1, + ACTIONS(9211), 1, anon_sym_GT2, STATE(5308), 1, sym_comment, STATE(5427), 1, aux_sym__multiple_types_repeat1, - ACTIONS(9160), 4, + ACTIONS(9169), 4, sym_identifier, anon_sym_DQUOTE, sym__str_single_quotes, @@ -396713,36 +396713,36 @@ static const uint16_t ts_small_parse_table[] = { [188393] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4801), 1, + ACTIONS(4810), 1, aux_sym_unquoted_token2, - ACTIONS(9204), 1, + ACTIONS(9213), 1, anon_sym_DOT_DOT2, - ACTIONS(9208), 1, + ACTIONS(9217), 1, sym_filesize_unit, - ACTIONS(9210), 1, + ACTIONS(9219), 1, sym_duration_unit, STATE(5309), 1, sym_comment, ACTIONS(1693), 2, anon_sym_PIPE, anon_sym_EQ_GT, - ACTIONS(9206), 2, + ACTIONS(9215), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, [188420] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9156), 1, + ACTIONS(9165), 1, sym__entry_separator, - ACTIONS(9170), 1, + ACTIONS(9179), 1, sym_raw_string_begin, - ACTIONS(9212), 1, + ACTIONS(9221), 1, anon_sym_GT2, STATE(5310), 1, sym_comment, STATE(5427), 1, aux_sym__multiple_types_repeat1, - ACTIONS(9166), 4, + ACTIONS(9175), 4, sym_identifier, anon_sym_DQUOTE, sym__str_single_quotes, @@ -396750,17 +396750,17 @@ static const uint16_t ts_small_parse_table[] = { [188445] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9156), 1, + ACTIONS(9165), 1, sym__entry_separator, - ACTIONS(9176), 1, + ACTIONS(9185), 1, sym_raw_string_begin, - ACTIONS(9214), 1, + ACTIONS(9223), 1, anon_sym_GT2, STATE(5311), 1, sym_comment, STATE(5427), 1, aux_sym__multiple_types_repeat1, - ACTIONS(9172), 4, + ACTIONS(9181), 4, sym_identifier, anon_sym_DQUOTE, sym__str_single_quotes, @@ -396768,17 +396768,17 @@ static const uint16_t ts_small_parse_table[] = { [188470] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9156), 1, + ACTIONS(9165), 1, sym__entry_separator, - ACTIONS(9184), 1, + ACTIONS(9193), 1, sym_raw_string_begin, - ACTIONS(9216), 1, + ACTIONS(9225), 1, anon_sym_GT2, STATE(5312), 1, sym_comment, STATE(5427), 1, aux_sym__multiple_types_repeat1, - ACTIONS(9180), 4, + ACTIONS(9189), 4, sym_identifier, anon_sym_DQUOTE, sym__str_single_quotes, @@ -396786,17 +396786,17 @@ static const uint16_t ts_small_parse_table[] = { [188495] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9156), 1, + ACTIONS(9165), 1, sym__entry_separator, - ACTIONS(9194), 1, + ACTIONS(9203), 1, sym_raw_string_begin, - ACTIONS(9218), 1, + ACTIONS(9227), 1, anon_sym_GT2, STATE(5313), 1, sym_comment, STATE(5427), 1, aux_sym__multiple_types_repeat1, - ACTIONS(9190), 4, + ACTIONS(9199), 4, sym_identifier, anon_sym_DQUOTE, sym__str_single_quotes, @@ -396804,17 +396804,17 @@ static const uint16_t ts_small_parse_table[] = { [188520] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9156), 1, + ACTIONS(9165), 1, sym__entry_separator, - ACTIONS(9158), 1, + ACTIONS(9167), 1, sym_raw_string_begin, - ACTIONS(9220), 1, + ACTIONS(9229), 1, anon_sym_GT2, STATE(5314), 1, sym_comment, STATE(5427), 1, aux_sym__multiple_types_repeat1, - ACTIONS(9152), 4, + ACTIONS(9161), 4, sym_identifier, anon_sym_DQUOTE, sym__str_single_quotes, @@ -396822,17 +396822,17 @@ static const uint16_t ts_small_parse_table[] = { [188545] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9156), 1, + ACTIONS(9165), 1, sym__entry_separator, - ACTIONS(9170), 1, + ACTIONS(9179), 1, sym_raw_string_begin, - ACTIONS(9222), 1, + ACTIONS(9231), 1, anon_sym_GT2, STATE(5315), 1, sym_comment, STATE(5427), 1, aux_sym__multiple_types_repeat1, - ACTIONS(9166), 4, + ACTIONS(9175), 4, sym_identifier, anon_sym_DQUOTE, sym__str_single_quotes, @@ -396840,17 +396840,17 @@ static const uint16_t ts_small_parse_table[] = { [188570] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9156), 1, + ACTIONS(9165), 1, sym__entry_separator, - ACTIONS(9176), 1, + ACTIONS(9185), 1, sym_raw_string_begin, - ACTIONS(9224), 1, + ACTIONS(9233), 1, anon_sym_GT2, STATE(5316), 1, sym_comment, STATE(5427), 1, aux_sym__multiple_types_repeat1, - ACTIONS(9172), 4, + ACTIONS(9181), 4, sym_identifier, anon_sym_DQUOTE, sym__str_single_quotes, @@ -396858,17 +396858,17 @@ static const uint16_t ts_small_parse_table[] = { [188595] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9156), 1, + ACTIONS(9165), 1, sym__entry_separator, - ACTIONS(9170), 1, + ACTIONS(9179), 1, sym_raw_string_begin, - ACTIONS(9226), 1, + ACTIONS(9235), 1, anon_sym_GT2, STATE(5317), 1, sym_comment, STATE(5427), 1, aux_sym__multiple_types_repeat1, - ACTIONS(9166), 4, + ACTIONS(9175), 4, sym_identifier, anon_sym_DQUOTE, sym__str_single_quotes, @@ -396876,17 +396876,17 @@ static const uint16_t ts_small_parse_table[] = { [188620] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9156), 1, + ACTIONS(9165), 1, sym__entry_separator, - ACTIONS(9176), 1, + ACTIONS(9185), 1, sym_raw_string_begin, - ACTIONS(9228), 1, + ACTIONS(9237), 1, anon_sym_GT2, STATE(5318), 1, sym_comment, STATE(5427), 1, aux_sym__multiple_types_repeat1, - ACTIONS(9172), 4, + ACTIONS(9181), 4, sym_identifier, anon_sym_DQUOTE, sym__str_single_quotes, @@ -396894,17 +396894,17 @@ static const uint16_t ts_small_parse_table[] = { [188645] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9156), 1, + ACTIONS(9165), 1, sym__entry_separator, - ACTIONS(9164), 1, + ACTIONS(9173), 1, sym_raw_string_begin, - ACTIONS(9230), 1, + ACTIONS(9239), 1, anon_sym_GT2, STATE(5319), 1, sym_comment, STATE(5427), 1, aux_sym__multiple_types_repeat1, - ACTIONS(9160), 4, + ACTIONS(9169), 4, sym_identifier, anon_sym_DQUOTE, sym__str_single_quotes, @@ -396912,17 +396912,17 @@ static const uint16_t ts_small_parse_table[] = { [188670] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9156), 1, + ACTIONS(9165), 1, sym__entry_separator, - ACTIONS(9184), 1, + ACTIONS(9193), 1, sym_raw_string_begin, - ACTIONS(9232), 1, + ACTIONS(9241), 1, anon_sym_GT2, STATE(5320), 1, sym_comment, STATE(5427), 1, aux_sym__multiple_types_repeat1, - ACTIONS(9180), 4, + ACTIONS(9189), 4, sym_identifier, anon_sym_DQUOTE, sym__str_single_quotes, @@ -396930,17 +396930,17 @@ static const uint16_t ts_small_parse_table[] = { [188695] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9156), 1, + ACTIONS(9165), 1, sym__entry_separator, - ACTIONS(9158), 1, + ACTIONS(9167), 1, sym_raw_string_begin, - ACTIONS(9234), 1, + ACTIONS(9243), 1, anon_sym_GT2, STATE(5321), 1, sym_comment, STATE(5427), 1, aux_sym__multiple_types_repeat1, - ACTIONS(9152), 4, + ACTIONS(9161), 4, sym_identifier, anon_sym_DQUOTE, sym__str_single_quotes, @@ -396948,17 +396948,17 @@ static const uint16_t ts_small_parse_table[] = { [188720] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9156), 1, + ACTIONS(9165), 1, sym__entry_separator, - ACTIONS(9164), 1, + ACTIONS(9173), 1, sym_raw_string_begin, - ACTIONS(9236), 1, + ACTIONS(9245), 1, anon_sym_GT2, STATE(5322), 1, sym_comment, STATE(5427), 1, aux_sym__multiple_types_repeat1, - ACTIONS(9160), 4, + ACTIONS(9169), 4, sym_identifier, anon_sym_DQUOTE, sym__str_single_quotes, @@ -396966,17 +396966,17 @@ static const uint16_t ts_small_parse_table[] = { [188745] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9156), 1, + ACTIONS(9165), 1, sym__entry_separator, - ACTIONS(9170), 1, + ACTIONS(9179), 1, sym_raw_string_begin, - ACTIONS(9238), 1, + ACTIONS(9247), 1, anon_sym_GT2, STATE(5323), 1, sym_comment, STATE(5427), 1, aux_sym__multiple_types_repeat1, - ACTIONS(9166), 4, + ACTIONS(9175), 4, sym_identifier, anon_sym_DQUOTE, sym__str_single_quotes, @@ -396984,17 +396984,17 @@ static const uint16_t ts_small_parse_table[] = { [188770] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9156), 1, + ACTIONS(9165), 1, sym__entry_separator, - ACTIONS(9176), 1, + ACTIONS(9185), 1, sym_raw_string_begin, - ACTIONS(9240), 1, + ACTIONS(9249), 1, anon_sym_GT2, STATE(5324), 1, sym_comment, STATE(5427), 1, aux_sym__multiple_types_repeat1, - ACTIONS(9172), 4, + ACTIONS(9181), 4, sym_identifier, anon_sym_DQUOTE, sym__str_single_quotes, @@ -397002,17 +397002,17 @@ static const uint16_t ts_small_parse_table[] = { [188795] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9156), 1, + ACTIONS(9165), 1, sym__entry_separator, - ACTIONS(9194), 1, + ACTIONS(9203), 1, sym_raw_string_begin, - ACTIONS(9242), 1, + ACTIONS(9251), 1, anon_sym_GT2, STATE(5325), 1, sym_comment, STATE(5427), 1, aux_sym__multiple_types_repeat1, - ACTIONS(9190), 4, + ACTIONS(9199), 4, sym_identifier, anon_sym_DQUOTE, sym__str_single_quotes, @@ -397020,17 +397020,17 @@ static const uint16_t ts_small_parse_table[] = { [188820] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9156), 1, + ACTIONS(9165), 1, sym__entry_separator, - ACTIONS(9184), 1, + ACTIONS(9193), 1, sym_raw_string_begin, - ACTIONS(9244), 1, + ACTIONS(9253), 1, anon_sym_GT2, STATE(5326), 1, sym_comment, STATE(5427), 1, aux_sym__multiple_types_repeat1, - ACTIONS(9180), 4, + ACTIONS(9189), 4, sym_identifier, anon_sym_DQUOTE, sym__str_single_quotes, @@ -397038,17 +397038,17 @@ static const uint16_t ts_small_parse_table[] = { [188845] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9156), 1, + ACTIONS(9165), 1, sym__entry_separator, - ACTIONS(9194), 1, + ACTIONS(9203), 1, sym_raw_string_begin, - ACTIONS(9246), 1, + ACTIONS(9255), 1, anon_sym_GT2, STATE(5327), 1, sym_comment, STATE(5427), 1, aux_sym__multiple_types_repeat1, - ACTIONS(9190), 4, + ACTIONS(9199), 4, sym_identifier, anon_sym_DQUOTE, sym__str_single_quotes, @@ -397056,17 +397056,17 @@ static const uint16_t ts_small_parse_table[] = { [188870] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9156), 1, + ACTIONS(9165), 1, sym__entry_separator, - ACTIONS(9158), 1, + ACTIONS(9167), 1, sym_raw_string_begin, - ACTIONS(9248), 1, + ACTIONS(9257), 1, anon_sym_GT2, STATE(5328), 1, sym_comment, STATE(5427), 1, aux_sym__multiple_types_repeat1, - ACTIONS(9152), 4, + ACTIONS(9161), 4, sym_identifier, anon_sym_DQUOTE, sym__str_single_quotes, @@ -397074,17 +397074,17 @@ static const uint16_t ts_small_parse_table[] = { [188895] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9156), 1, + ACTIONS(9165), 1, sym__entry_separator, - ACTIONS(9164), 1, + ACTIONS(9173), 1, sym_raw_string_begin, - ACTIONS(9250), 1, + ACTIONS(9259), 1, anon_sym_GT2, STATE(5329), 1, sym_comment, STATE(5427), 1, aux_sym__multiple_types_repeat1, - ACTIONS(9160), 4, + ACTIONS(9169), 4, sym_identifier, anon_sym_DQUOTE, sym__str_single_quotes, @@ -397092,17 +397092,17 @@ static const uint16_t ts_small_parse_table[] = { [188920] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9156), 1, + ACTIONS(9165), 1, sym__entry_separator, - ACTIONS(9158), 1, + ACTIONS(9167), 1, sym_raw_string_begin, - ACTIONS(9252), 1, + ACTIONS(9261), 1, anon_sym_GT2, STATE(5330), 1, sym_comment, STATE(5427), 1, aux_sym__multiple_types_repeat1, - ACTIONS(9152), 4, + ACTIONS(9161), 4, sym_identifier, anon_sym_DQUOTE, sym__str_single_quotes, @@ -397110,17 +397110,17 @@ static const uint16_t ts_small_parse_table[] = { [188945] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9156), 1, + ACTIONS(9165), 1, sym__entry_separator, - ACTIONS(9164), 1, + ACTIONS(9173), 1, sym_raw_string_begin, - ACTIONS(9254), 1, + ACTIONS(9263), 1, anon_sym_GT2, STATE(5331), 1, sym_comment, STATE(5427), 1, aux_sym__multiple_types_repeat1, - ACTIONS(9160), 4, + ACTIONS(9169), 4, sym_identifier, anon_sym_DQUOTE, sym__str_single_quotes, @@ -397128,17 +397128,17 @@ static const uint16_t ts_small_parse_table[] = { [188970] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9156), 1, + ACTIONS(9165), 1, sym__entry_separator, - ACTIONS(9184), 1, + ACTIONS(9193), 1, sym_raw_string_begin, - ACTIONS(9256), 1, + ACTIONS(9265), 1, anon_sym_GT2, STATE(5332), 1, sym_comment, STATE(5427), 1, aux_sym__multiple_types_repeat1, - ACTIONS(9180), 4, + ACTIONS(9189), 4, sym_identifier, anon_sym_DQUOTE, sym__str_single_quotes, @@ -397146,17 +397146,17 @@ static const uint16_t ts_small_parse_table[] = { [188995] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9156), 1, + ACTIONS(9165), 1, sym__entry_separator, - ACTIONS(9194), 1, + ACTIONS(9203), 1, sym_raw_string_begin, - ACTIONS(9258), 1, + ACTIONS(9267), 1, anon_sym_GT2, STATE(5333), 1, sym_comment, STATE(5427), 1, aux_sym__multiple_types_repeat1, - ACTIONS(9190), 4, + ACTIONS(9199), 4, sym_identifier, anon_sym_DQUOTE, sym__str_single_quotes, @@ -397164,17 +397164,17 @@ static const uint16_t ts_small_parse_table[] = { [189020] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9156), 1, + ACTIONS(9165), 1, sym__entry_separator, - ACTIONS(9158), 1, + ACTIONS(9167), 1, sym_raw_string_begin, - ACTIONS(9260), 1, + ACTIONS(9269), 1, anon_sym_GT2, STATE(5334), 1, sym_comment, STATE(5427), 1, aux_sym__multiple_types_repeat1, - ACTIONS(9152), 4, + ACTIONS(9161), 4, sym_identifier, anon_sym_DQUOTE, sym__str_single_quotes, @@ -397182,17 +397182,17 @@ static const uint16_t ts_small_parse_table[] = { [189045] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9156), 1, + ACTIONS(9165), 1, sym__entry_separator, - ACTIONS(9164), 1, + ACTIONS(9173), 1, sym_raw_string_begin, - ACTIONS(9262), 1, + ACTIONS(9271), 1, anon_sym_GT2, STATE(5335), 1, sym_comment, STATE(5427), 1, aux_sym__multiple_types_repeat1, - ACTIONS(9160), 4, + ACTIONS(9169), 4, sym_identifier, anon_sym_DQUOTE, sym__str_single_quotes, @@ -397200,17 +397200,17 @@ static const uint16_t ts_small_parse_table[] = { [189070] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9156), 1, + ACTIONS(9165), 1, sym__entry_separator, - ACTIONS(9184), 1, + ACTIONS(9193), 1, sym_raw_string_begin, - ACTIONS(9264), 1, + ACTIONS(9273), 1, anon_sym_GT2, STATE(5336), 1, sym_comment, STATE(5427), 1, aux_sym__multiple_types_repeat1, - ACTIONS(9180), 4, + ACTIONS(9189), 4, sym_identifier, anon_sym_DQUOTE, sym__str_single_quotes, @@ -397218,17 +397218,17 @@ static const uint16_t ts_small_parse_table[] = { [189095] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9156), 1, + ACTIONS(9165), 1, sym__entry_separator, - ACTIONS(9194), 1, + ACTIONS(9203), 1, sym_raw_string_begin, - ACTIONS(9266), 1, + ACTIONS(9275), 1, anon_sym_GT2, STATE(5337), 1, sym_comment, STATE(5427), 1, aux_sym__multiple_types_repeat1, - ACTIONS(9190), 4, + ACTIONS(9199), 4, sym_identifier, anon_sym_DQUOTE, sym__str_single_quotes, @@ -397236,17 +397236,17 @@ static const uint16_t ts_small_parse_table[] = { [189120] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9156), 1, + ACTIONS(9165), 1, sym__entry_separator, - ACTIONS(9184), 1, + ACTIONS(9193), 1, sym_raw_string_begin, - ACTIONS(9268), 1, + ACTIONS(9277), 1, anon_sym_GT2, STATE(5338), 1, sym_comment, STATE(5427), 1, aux_sym__multiple_types_repeat1, - ACTIONS(9180), 4, + ACTIONS(9189), 4, sym_identifier, anon_sym_DQUOTE, sym__str_single_quotes, @@ -397254,17 +397254,17 @@ static const uint16_t ts_small_parse_table[] = { [189145] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9156), 1, + ACTIONS(9165), 1, sym__entry_separator, - ACTIONS(9194), 1, + ACTIONS(9203), 1, sym_raw_string_begin, - ACTIONS(9270), 1, + ACTIONS(9279), 1, anon_sym_GT2, STATE(5339), 1, sym_comment, STATE(5427), 1, aux_sym__multiple_types_repeat1, - ACTIONS(9190), 4, + ACTIONS(9199), 4, sym_identifier, anon_sym_DQUOTE, sym__str_single_quotes, @@ -397272,17 +397272,17 @@ static const uint16_t ts_small_parse_table[] = { [189170] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9156), 1, + ACTIONS(9165), 1, sym__entry_separator, - ACTIONS(9184), 1, + ACTIONS(9193), 1, sym_raw_string_begin, - ACTIONS(9272), 1, + ACTIONS(9281), 1, anon_sym_GT2, STATE(5340), 1, sym_comment, STATE(5427), 1, aux_sym__multiple_types_repeat1, - ACTIONS(9180), 4, + ACTIONS(9189), 4, sym_identifier, anon_sym_DQUOTE, sym__str_single_quotes, @@ -397290,17 +397290,17 @@ static const uint16_t ts_small_parse_table[] = { [189195] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9156), 1, + ACTIONS(9165), 1, sym__entry_separator, - ACTIONS(9194), 1, + ACTIONS(9203), 1, sym_raw_string_begin, - ACTIONS(9274), 1, + ACTIONS(9283), 1, anon_sym_GT2, STATE(5341), 1, sym_comment, STATE(5427), 1, aux_sym__multiple_types_repeat1, - ACTIONS(9190), 4, + ACTIONS(9199), 4, sym_identifier, anon_sym_DQUOTE, sym__str_single_quotes, @@ -397308,16 +397308,16 @@ static const uint16_t ts_small_parse_table[] = { [189220] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9276), 1, + ACTIONS(9285), 1, sym_long_flag_identifier, - ACTIONS(9278), 1, + ACTIONS(9287), 1, anon_sym_EQ2, STATE(5342), 1, sym_comment, - ACTIONS(4881), 2, + ACTIONS(4890), 2, anon_sym_DASH2, anon_sym_as, - ACTIONS(4879), 4, + ACTIONS(4888), 4, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -397325,17 +397325,17 @@ static const uint16_t ts_small_parse_table[] = { [189243] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3612), 1, + ACTIONS(3621), 1, anon_sym_DQUOTE, - ACTIONS(3626), 1, + ACTIONS(3635), 1, sym_raw_string_begin, - ACTIONS(9127), 1, + ACTIONS(9136), 1, aux_sym_path_token1, STATE(4020), 1, sym_val_string, STATE(5343), 1, sym_comment, - ACTIONS(3614), 2, + ACTIONS(3623), 2, sym__str_single_quotes, sym__str_back_ticks, STATE(4074), 2, @@ -397359,17 +397359,17 @@ static const uint16_t ts_small_parse_table[] = { [189289] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9156), 1, + ACTIONS(9165), 1, sym__entry_separator, - ACTIONS(9176), 1, + ACTIONS(9185), 1, sym_raw_string_begin, - ACTIONS(9280), 1, + ACTIONS(9289), 1, anon_sym_GT2, STATE(5345), 1, sym_comment, STATE(5427), 1, aux_sym__multiple_types_repeat1, - ACTIONS(9172), 4, + ACTIONS(9181), 4, sym_identifier, anon_sym_DQUOTE, sym__str_single_quotes, @@ -397408,17 +397408,17 @@ static const uint16_t ts_small_parse_table[] = { [189354] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9156), 1, + ACTIONS(9165), 1, sym__entry_separator, - ACTIONS(9170), 1, + ACTIONS(9179), 1, sym_raw_string_begin, - ACTIONS(9282), 1, + ACTIONS(9291), 1, anon_sym_GT2, STATE(5348), 1, sym_comment, STATE(5427), 1, aux_sym__multiple_types_repeat1, - ACTIONS(9166), 4, + ACTIONS(9175), 4, sym_identifier, anon_sym_DQUOTE, sym__str_single_quotes, @@ -397426,7 +397426,7 @@ static const uint16_t ts_small_parse_table[] = { [189379] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9284), 1, + ACTIONS(9293), 1, aux_sym__immediate_decimal_token2, STATE(5349), 1, sym_comment, @@ -397442,9 +397442,9 @@ static const uint16_t ts_small_parse_table[] = { [189400] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9286), 1, + ACTIONS(9295), 1, anon_sym_DOT, - ACTIONS(9288), 1, + ACTIONS(9297), 1, aux_sym__immediate_decimal_token2, STATE(5350), 1, sym_comment, @@ -397461,7 +397461,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(2318), 1, anon_sym_DASH2, - ACTIONS(9290), 1, + ACTIONS(9299), 1, anon_sym_LBRACK2, STATE(5351), 1, sym_comment, @@ -397492,7 +397492,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(935), 1, anon_sym_DASH2, - ACTIONS(8990), 1, + ACTIONS(8999), 1, anon_sym_DOT2, STATE(3770), 1, sym_cell_path, @@ -397509,17 +397509,17 @@ static const uint16_t ts_small_parse_table[] = { [189490] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9292), 1, + ACTIONS(9301), 1, anon_sym_DQUOTE, - ACTIONS(9296), 1, + ACTIONS(9305), 1, aux_sym_path_token1, - ACTIONS(9298), 1, + ACTIONS(9307), 1, sym_raw_string_begin, STATE(2564), 1, sym_val_string, STATE(5354), 1, sym_comment, - ACTIONS(9294), 2, + ACTIONS(9303), 2, sym__str_single_quotes, sym__str_back_ticks, STATE(2583), 2, @@ -397528,17 +397528,17 @@ static const uint16_t ts_small_parse_table[] = { [189517] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9156), 1, + ACTIONS(9165), 1, sym__entry_separator, - ACTIONS(9170), 1, + ACTIONS(9179), 1, sym_raw_string_begin, - ACTIONS(9300), 1, + ACTIONS(9309), 1, anon_sym_GT2, STATE(5355), 1, sym_comment, STATE(5427), 1, aux_sym__multiple_types_repeat1, - ACTIONS(9166), 4, + ACTIONS(9175), 4, sym_identifier, anon_sym_DQUOTE, sym__str_single_quotes, @@ -397566,7 +397566,7 @@ static const uint16_t ts_small_parse_table[] = { sym_raw_string_begin, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9302), 1, + ACTIONS(9311), 1, aux_sym_path_token1, STATE(1818), 1, sym_val_string, @@ -397581,17 +397581,17 @@ static const uint16_t ts_small_parse_table[] = { [189590] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9156), 1, + ACTIONS(9165), 1, sym__entry_separator, - ACTIONS(9176), 1, + ACTIONS(9185), 1, sym_raw_string_begin, - ACTIONS(9304), 1, + ACTIONS(9313), 1, anon_sym_GT2, STATE(5358), 1, sym_comment, STATE(5427), 1, aux_sym__multiple_types_repeat1, - ACTIONS(9172), 4, + ACTIONS(9181), 4, sym_identifier, anon_sym_DQUOTE, sym__str_single_quotes, @@ -397615,17 +397615,17 @@ static const uint16_t ts_small_parse_table[] = { [189636] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9306), 1, + ACTIONS(9315), 1, anon_sym_DQUOTE, - ACTIONS(9310), 1, + ACTIONS(9319), 1, aux_sym_path_token1, - ACTIONS(9312), 1, + ACTIONS(9321), 1, sym_raw_string_begin, STATE(5360), 1, sym_comment, STATE(6028), 1, sym_val_string, - ACTIONS(9308), 2, + ACTIONS(9317), 2, sym__str_single_quotes, sym__str_back_ticks, STATE(6068), 2, @@ -397651,7 +397651,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(958), 1, anon_sym_DASH2, - ACTIONS(9314), 1, + ACTIONS(9323), 1, anon_sym_QMARK2, STATE(5362), 1, sym_comment, @@ -397665,7 +397665,7 @@ static const uint16_t ts_small_parse_table[] = { [189703] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9316), 1, + ACTIONS(9325), 1, aux_sym__immediate_decimal_token2, STATE(5363), 1, sym_comment, @@ -397681,17 +397681,17 @@ static const uint16_t ts_small_parse_table[] = { [189724] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9156), 1, + ACTIONS(9165), 1, sym__entry_separator, - ACTIONS(9176), 1, + ACTIONS(9185), 1, sym_raw_string_begin, - ACTIONS(9318), 1, + ACTIONS(9327), 1, anon_sym_GT2, STATE(5364), 1, sym_comment, STATE(5427), 1, aux_sym__multiple_types_repeat1, - ACTIONS(9172), 4, + ACTIONS(9181), 4, sym_identifier, anon_sym_DQUOTE, sym__str_single_quotes, @@ -397699,17 +397699,17 @@ static const uint16_t ts_small_parse_table[] = { [189749] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3118), 1, + ACTIONS(3125), 1, anon_sym_DQUOTE, - ACTIONS(3124), 1, + ACTIONS(3131), 1, sym_raw_string_begin, - ACTIONS(9320), 1, + ACTIONS(9329), 1, aux_sym_path_token1, STATE(5289), 1, sym_val_string, STATE(5365), 1, sym_comment, - ACTIONS(3120), 2, + ACTIONS(3127), 2, sym__str_single_quotes, sym__str_back_ticks, STATE(5129), 2, @@ -397718,13 +397718,13 @@ static const uint16_t ts_small_parse_table[] = { [189776] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9322), 1, + ACTIONS(9331), 1, anon_sym_DASH_DASH, - ACTIONS(9325), 1, + ACTIONS(9334), 1, anon_sym_DASH2, STATE(5967), 1, sym__flag, - ACTIONS(8617), 2, + ACTIONS(8626), 2, anon_sym_DOLLAR, anon_sym_LBRACE, STATE(5366), 2, @@ -397736,17 +397736,17 @@ static const uint16_t ts_small_parse_table[] = { [189801] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9328), 1, + ACTIONS(9337), 1, anon_sym_DQUOTE, - ACTIONS(9332), 1, + ACTIONS(9341), 1, aux_sym_path_token1, - ACTIONS(9334), 1, + ACTIONS(9343), 1, sym_raw_string_begin, STATE(1335), 1, sym_val_string, STATE(5367), 1, sym_comment, - ACTIONS(9330), 2, + ACTIONS(9339), 2, sym__str_single_quotes, sym__str_back_ticks, STATE(1308), 2, @@ -397755,17 +397755,17 @@ static const uint16_t ts_small_parse_table[] = { [189828] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9336), 1, + ACTIONS(9345), 1, anon_sym_DQUOTE, - ACTIONS(9340), 1, + ACTIONS(9349), 1, aux_sym_path_token1, - ACTIONS(9342), 1, + ACTIONS(9351), 1, sym_raw_string_begin, STATE(1683), 1, sym_val_string, STATE(5368), 1, sym_comment, - ACTIONS(9338), 2, + ACTIONS(9347), 2, sym__str_single_quotes, sym__str_back_ticks, STATE(1702), 2, @@ -397776,15 +397776,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(2083), 1, sym_raw_string_begin, - ACTIONS(4042), 1, + ACTIONS(4051), 1, anon_sym_DQUOTE, - ACTIONS(9344), 1, + ACTIONS(9353), 1, aux_sym_path_token1, STATE(3995), 1, sym_val_string, STATE(5369), 1, sym_comment, - ACTIONS(4044), 2, + ACTIONS(4053), 2, sym__str_single_quotes, sym__str_back_ticks, STATE(3997), 2, @@ -397793,7 +397793,7 @@ static const uint16_t ts_small_parse_table[] = { [189882] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9346), 1, + ACTIONS(9355), 1, aux_sym__immediate_decimal_token2, STATE(5370), 1, sym_comment, @@ -397809,17 +397809,17 @@ static const uint16_t ts_small_parse_table[] = { [189903] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9156), 1, + ACTIONS(9165), 1, sym__entry_separator, - ACTIONS(9170), 1, + ACTIONS(9179), 1, sym_raw_string_begin, - ACTIONS(9348), 1, + ACTIONS(9357), 1, anon_sym_GT2, STATE(5371), 1, sym_comment, STATE(5427), 1, aux_sym__multiple_types_repeat1, - ACTIONS(9166), 4, + ACTIONS(9175), 4, sym_identifier, anon_sym_DQUOTE, sym__str_single_quotes, @@ -397827,17 +397827,17 @@ static const uint16_t ts_small_parse_table[] = { [189928] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9350), 1, + ACTIONS(9359), 1, anon_sym_DQUOTE, - ACTIONS(9354), 1, + ACTIONS(9363), 1, aux_sym_path_token1, - ACTIONS(9356), 1, + ACTIONS(9365), 1, sym_raw_string_begin, STATE(2503), 1, sym_val_string, STATE(5372), 1, sym_comment, - ACTIONS(9352), 2, + ACTIONS(9361), 2, sym__str_single_quotes, sym__str_back_ticks, STATE(2534), 2, @@ -397846,17 +397846,17 @@ static const uint16_t ts_small_parse_table[] = { [189955] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9156), 1, + ACTIONS(9165), 1, sym__entry_separator, - ACTIONS(9176), 1, + ACTIONS(9185), 1, sym_raw_string_begin, - ACTIONS(9358), 1, + ACTIONS(9367), 1, anon_sym_GT2, STATE(5373), 1, sym_comment, STATE(5427), 1, aux_sym__multiple_types_repeat1, - ACTIONS(9172), 4, + ACTIONS(9181), 4, sym_identifier, anon_sym_DQUOTE, sym__str_single_quotes, @@ -397864,17 +397864,17 @@ static const uint16_t ts_small_parse_table[] = { [189980] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9156), 1, + ACTIONS(9165), 1, sym__entry_separator, - ACTIONS(9170), 1, + ACTIONS(9179), 1, sym_raw_string_begin, - ACTIONS(9360), 1, + ACTIONS(9369), 1, anon_sym_GT2, STATE(5374), 1, sym_comment, STATE(5427), 1, aux_sym__multiple_types_repeat1, - ACTIONS(9166), 4, + ACTIONS(9175), 4, sym_identifier, anon_sym_DQUOTE, sym__str_single_quotes, @@ -397882,17 +397882,17 @@ static const uint16_t ts_small_parse_table[] = { [190005] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9156), 1, + ACTIONS(9165), 1, sym__entry_separator, - ACTIONS(9176), 1, + ACTIONS(9185), 1, sym_raw_string_begin, - ACTIONS(9362), 1, + ACTIONS(9371), 1, anon_sym_GT2, STATE(5375), 1, sym_comment, STATE(5427), 1, aux_sym__multiple_types_repeat1, - ACTIONS(9172), 4, + ACTIONS(9181), 4, sym_identifier, anon_sym_DQUOTE, sym__str_single_quotes, @@ -397902,15 +397902,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(1859), 1, sym_raw_string_begin, - ACTIONS(4203), 1, + ACTIONS(4212), 1, anon_sym_DQUOTE, - ACTIONS(9364), 1, + ACTIONS(9373), 1, aux_sym_path_token1, STATE(3910), 1, sym_val_string, STATE(5376), 1, sym_comment, - ACTIONS(4205), 2, + ACTIONS(4214), 2, sym__str_single_quotes, sym__str_back_ticks, STATE(3922), 2, @@ -397919,17 +397919,17 @@ static const uint16_t ts_small_parse_table[] = { [190057] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9366), 1, + ACTIONS(9375), 1, anon_sym_DQUOTE, - ACTIONS(9370), 1, + ACTIONS(9379), 1, aux_sym_path_token1, - ACTIONS(9372), 1, + ACTIONS(9381), 1, sym_raw_string_begin, STATE(1453), 1, sym_val_string, STATE(5377), 1, sym_comment, - ACTIONS(9368), 2, + ACTIONS(9377), 2, sym__str_single_quotes, sym__str_back_ticks, STATE(1434), 2, @@ -397938,17 +397938,17 @@ static const uint16_t ts_small_parse_table[] = { [190084] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9156), 1, + ACTIONS(9165), 1, sym__entry_separator, - ACTIONS(9158), 1, + ACTIONS(9167), 1, sym_raw_string_begin, - ACTIONS(9374), 1, + ACTIONS(9383), 1, anon_sym_GT2, STATE(5378), 1, sym_comment, STATE(5427), 1, aux_sym__multiple_types_repeat1, - ACTIONS(9152), 4, + ACTIONS(9161), 4, sym_identifier, anon_sym_DQUOTE, sym__str_single_quotes, @@ -397956,17 +397956,17 @@ static const uint16_t ts_small_parse_table[] = { [190109] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9156), 1, + ACTIONS(9165), 1, sym__entry_separator, - ACTIONS(9164), 1, + ACTIONS(9173), 1, sym_raw_string_begin, - ACTIONS(9376), 1, + ACTIONS(9385), 1, anon_sym_GT2, STATE(5379), 1, sym_comment, STATE(5427), 1, aux_sym__multiple_types_repeat1, - ACTIONS(9160), 4, + ACTIONS(9169), 4, sym_identifier, anon_sym_DQUOTE, sym__str_single_quotes, @@ -397974,17 +397974,17 @@ static const uint16_t ts_small_parse_table[] = { [190134] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9156), 1, + ACTIONS(9165), 1, sym__entry_separator, - ACTIONS(9170), 1, + ACTIONS(9179), 1, sym_raw_string_begin, - ACTIONS(9378), 1, + ACTIONS(9387), 1, anon_sym_GT2, STATE(5380), 1, sym_comment, STATE(5427), 1, aux_sym__multiple_types_repeat1, - ACTIONS(9166), 4, + ACTIONS(9175), 4, sym_identifier, anon_sym_DQUOTE, sym__str_single_quotes, @@ -397992,17 +397992,17 @@ static const uint16_t ts_small_parse_table[] = { [190159] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9380), 1, + ACTIONS(9389), 1, anon_sym_DQUOTE, - ACTIONS(9384), 1, + ACTIONS(9393), 1, aux_sym_path_token1, - ACTIONS(9386), 1, + ACTIONS(9395), 1, sym_raw_string_begin, STATE(1601), 1, sym_val_string, STATE(5381), 1, sym_comment, - ACTIONS(9382), 2, + ACTIONS(9391), 2, sym__str_single_quotes, sym__str_back_ticks, STATE(1558), 2, @@ -398011,17 +398011,17 @@ static const uint16_t ts_small_parse_table[] = { [190186] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9156), 1, + ACTIONS(9165), 1, sym__entry_separator, - ACTIONS(9176), 1, + ACTIONS(9185), 1, sym_raw_string_begin, - ACTIONS(9388), 1, + ACTIONS(9397), 1, anon_sym_GT2, STATE(5382), 1, sym_comment, STATE(5427), 1, aux_sym__multiple_types_repeat1, - ACTIONS(9172), 4, + ACTIONS(9181), 4, sym_identifier, anon_sym_DQUOTE, sym__str_single_quotes, @@ -398029,17 +398029,17 @@ static const uint16_t ts_small_parse_table[] = { [190211] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9390), 1, + ACTIONS(9399), 1, anon_sym_DQUOTE, - ACTIONS(9394), 1, + ACTIONS(9403), 1, aux_sym_path_token1, - ACTIONS(9396), 1, + ACTIONS(9405), 1, sym_raw_string_begin, STATE(2833), 1, sym_val_string, STATE(5383), 1, sym_comment, - ACTIONS(9392), 2, + ACTIONS(9401), 2, sym__str_single_quotes, sym__str_back_ticks, STATE(2871), 2, @@ -398063,17 +398063,17 @@ static const uint16_t ts_small_parse_table[] = { [190257] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9398), 1, + ACTIONS(9407), 1, anon_sym_DQUOTE, - ACTIONS(9402), 1, + ACTIONS(9411), 1, aux_sym_path_token1, - ACTIONS(9404), 1, + ACTIONS(9413), 1, sym_raw_string_begin, STATE(1403), 1, sym_val_string, STATE(5385), 1, sym_comment, - ACTIONS(9400), 2, + ACTIONS(9409), 2, sym__str_single_quotes, sym__str_back_ticks, STATE(1413), 2, @@ -398082,17 +398082,17 @@ static const uint16_t ts_small_parse_table[] = { [190284] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9156), 1, + ACTIONS(9165), 1, sym__entry_separator, - ACTIONS(9184), 1, + ACTIONS(9193), 1, sym_raw_string_begin, - ACTIONS(9406), 1, + ACTIONS(9415), 1, anon_sym_GT2, STATE(5386), 1, sym_comment, STATE(5427), 1, aux_sym__multiple_types_repeat1, - ACTIONS(9180), 4, + ACTIONS(9189), 4, sym_identifier, anon_sym_DQUOTE, sym__str_single_quotes, @@ -398100,17 +398100,17 @@ static const uint16_t ts_small_parse_table[] = { [190309] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9408), 1, + ACTIONS(9417), 1, anon_sym_DQUOTE, - ACTIONS(9412), 1, + ACTIONS(9421), 1, aux_sym_path_token1, - ACTIONS(9414), 1, + ACTIONS(9423), 1, sym_raw_string_begin, STATE(5387), 1, sym_comment, STATE(7004), 1, sym_val_string, - ACTIONS(9410), 2, + ACTIONS(9419), 2, sym__str_single_quotes, sym__str_back_ticks, STATE(7196), 2, @@ -398119,17 +398119,17 @@ static const uint16_t ts_small_parse_table[] = { [190336] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9156), 1, + ACTIONS(9165), 1, sym__entry_separator, - ACTIONS(9194), 1, + ACTIONS(9203), 1, sym_raw_string_begin, - ACTIONS(9416), 1, + ACTIONS(9425), 1, anon_sym_GT2, STATE(5388), 1, sym_comment, STATE(5427), 1, aux_sym__multiple_types_repeat1, - ACTIONS(9190), 4, + ACTIONS(9199), 4, sym_identifier, anon_sym_DQUOTE, sym__str_single_quotes, @@ -398137,17 +398137,17 @@ static const uint16_t ts_small_parse_table[] = { [190361] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9418), 1, + ACTIONS(9427), 1, anon_sym_DQUOTE, - ACTIONS(9422), 1, + ACTIONS(9431), 1, aux_sym_path_token1, - ACTIONS(9424), 1, + ACTIONS(9433), 1, sym_raw_string_begin, STATE(2781), 1, sym_val_string, STATE(5389), 1, sym_comment, - ACTIONS(9420), 2, + ACTIONS(9429), 2, sym__str_single_quotes, sym__str_back_ticks, STATE(2768), 2, @@ -398156,17 +398156,17 @@ static const uint16_t ts_small_parse_table[] = { [190388] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9156), 1, + ACTIONS(9165), 1, sym__entry_separator, - ACTIONS(9158), 1, + ACTIONS(9167), 1, sym_raw_string_begin, - ACTIONS(9426), 1, + ACTIONS(9435), 1, anon_sym_GT2, STATE(5390), 1, sym_comment, STATE(5427), 1, aux_sym__multiple_types_repeat1, - ACTIONS(9152), 4, + ACTIONS(9161), 4, sym_identifier, anon_sym_DQUOTE, sym__str_single_quotes, @@ -398174,17 +398174,17 @@ static const uint16_t ts_small_parse_table[] = { [190413] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9428), 1, + ACTIONS(9437), 1, anon_sym_DQUOTE, - ACTIONS(9432), 1, + ACTIONS(9441), 1, aux_sym_path_token1, - ACTIONS(9434), 1, + ACTIONS(9443), 1, sym_raw_string_begin, STATE(2998), 1, sym_val_string, STATE(5391), 1, sym_comment, - ACTIONS(9430), 2, + ACTIONS(9439), 2, sym__str_single_quotes, sym__str_back_ticks, STATE(2980), 2, @@ -398193,17 +398193,17 @@ static const uint16_t ts_small_parse_table[] = { [190440] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9436), 1, + ACTIONS(9445), 1, anon_sym_DQUOTE, - ACTIONS(9440), 1, + ACTIONS(9449), 1, aux_sym_path_token1, - ACTIONS(9442), 1, + ACTIONS(9451), 1, sym_raw_string_begin, STATE(468), 1, sym_val_string, STATE(5392), 1, sym_comment, - ACTIONS(9438), 2, + ACTIONS(9447), 2, sym__str_single_quotes, sym__str_back_ticks, STATE(460), 2, @@ -398212,17 +398212,17 @@ static const uint16_t ts_small_parse_table[] = { [190467] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9444), 1, + ACTIONS(9453), 1, anon_sym_DQUOTE, - ACTIONS(9448), 1, + ACTIONS(9457), 1, aux_sym_path_token1, - ACTIONS(9450), 1, + ACTIONS(9459), 1, sym_raw_string_begin, STATE(585), 1, sym_val_string, STATE(5393), 1, sym_comment, - ACTIONS(9446), 2, + ACTIONS(9455), 2, sym__str_single_quotes, sym__str_back_ticks, STATE(584), 2, @@ -398231,17 +398231,17 @@ static const uint16_t ts_small_parse_table[] = { [190494] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9452), 1, + ACTIONS(9461), 1, anon_sym_DQUOTE, - ACTIONS(9456), 1, + ACTIONS(9465), 1, aux_sym_path_token1, - ACTIONS(9458), 1, + ACTIONS(9467), 1, sym_raw_string_begin, STATE(2742), 1, sym_val_string, STATE(5394), 1, sym_comment, - ACTIONS(9454), 2, + ACTIONS(9463), 2, sym__str_single_quotes, sym__str_back_ticks, STATE(2679), 2, @@ -398250,17 +398250,17 @@ static const uint16_t ts_small_parse_table[] = { [190521] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9460), 1, + ACTIONS(9469), 1, anon_sym_DQUOTE, - ACTIONS(9464), 1, + ACTIONS(9473), 1, aux_sym_path_token1, - ACTIONS(9466), 1, + ACTIONS(9475), 1, sym_raw_string_begin, STATE(2938), 1, sym_val_string, STATE(5395), 1, sym_comment, - ACTIONS(9462), 2, + ACTIONS(9471), 2, sym__str_single_quotes, sym__str_back_ticks, STATE(2885), 2, @@ -398269,17 +398269,17 @@ static const uint16_t ts_small_parse_table[] = { [190548] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4331), 1, + ACTIONS(4340), 1, anon_sym_DQUOTE, - ACTIONS(4341), 1, + ACTIONS(4350), 1, sym_raw_string_begin, - ACTIONS(9468), 1, + ACTIONS(9477), 1, aux_sym_path_token1, STATE(5282), 1, sym_val_string, STATE(5396), 1, sym_comment, - ACTIONS(4333), 2, + ACTIONS(4342), 2, sym__str_single_quotes, sym__str_back_ticks, STATE(5406), 2, @@ -398288,17 +398288,17 @@ static const uint16_t ts_small_parse_table[] = { [190575] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4377), 1, + ACTIONS(4386), 1, anon_sym_DQUOTE, - ACTIONS(4387), 1, + ACTIONS(4396), 1, sym_raw_string_begin, - ACTIONS(9470), 1, + ACTIONS(9479), 1, aux_sym_path_token1, STATE(5271), 1, sym_val_string, STATE(5397), 1, sym_comment, - ACTIONS(4379), 2, + ACTIONS(4388), 2, sym__str_single_quotes, sym__str_back_ticks, STATE(5198), 2, @@ -398307,17 +398307,17 @@ static const uint16_t ts_small_parse_table[] = { [190602] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9472), 1, + ACTIONS(9481), 1, anon_sym_DQUOTE, - ACTIONS(9476), 1, + ACTIONS(9485), 1, aux_sym_path_token1, - ACTIONS(9478), 1, + ACTIONS(9487), 1, sym_raw_string_begin, STATE(140), 1, sym_val_string, STATE(5398), 1, sym_comment, - ACTIONS(9474), 2, + ACTIONS(9483), 2, sym__str_single_quotes, sym__str_back_ticks, STATE(142), 2, @@ -398326,17 +398326,17 @@ static const uint16_t ts_small_parse_table[] = { [190629] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9480), 1, + ACTIONS(9489), 1, anon_sym_DQUOTE, - ACTIONS(9484), 1, + ACTIONS(9493), 1, aux_sym_path_token1, - ACTIONS(9486), 1, + ACTIONS(9495), 1, sym_raw_string_begin, STATE(518), 1, sym_val_string, STATE(5399), 1, sym_comment, - ACTIONS(9482), 2, + ACTIONS(9491), 2, sym__str_single_quotes, sym__str_back_ticks, STATE(544), 2, @@ -398345,17 +398345,17 @@ static const uint16_t ts_small_parse_table[] = { [190656] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9488), 1, + ACTIONS(9497), 1, anon_sym_DQUOTE, - ACTIONS(9492), 1, + ACTIONS(9501), 1, aux_sym_path_token1, - ACTIONS(9494), 1, + ACTIONS(9503), 1, sym_raw_string_begin, STATE(396), 1, sym_val_string, STATE(5400), 1, sym_comment, - ACTIONS(9490), 2, + ACTIONS(9499), 2, sym__str_single_quotes, sym__str_back_ticks, STATE(405), 2, @@ -398364,17 +398364,17 @@ static const uint16_t ts_small_parse_table[] = { [190683] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9496), 1, + ACTIONS(9505), 1, anon_sym_DQUOTE, - ACTIONS(9500), 1, + ACTIONS(9509), 1, aux_sym_path_token1, - ACTIONS(9502), 1, + ACTIONS(9511), 1, sym_raw_string_begin, STATE(368), 1, sym_val_string, STATE(5401), 1, sym_comment, - ACTIONS(9498), 2, + ACTIONS(9507), 2, sym__str_single_quotes, sym__str_back_ticks, STATE(373), 2, @@ -398383,17 +398383,17 @@ static const uint16_t ts_small_parse_table[] = { [190710] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9156), 1, + ACTIONS(9165), 1, sym__entry_separator, - ACTIONS(9164), 1, + ACTIONS(9173), 1, sym_raw_string_begin, - ACTIONS(9504), 1, + ACTIONS(9513), 1, anon_sym_GT2, STATE(5402), 1, sym_comment, STATE(5427), 1, aux_sym__multiple_types_repeat1, - ACTIONS(9160), 4, + ACTIONS(9169), 4, sym_identifier, anon_sym_DQUOTE, sym__str_single_quotes, @@ -398401,17 +398401,17 @@ static const uint16_t ts_small_parse_table[] = { [190735] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9156), 1, + ACTIONS(9165), 1, sym__entry_separator, - ACTIONS(9158), 1, + ACTIONS(9167), 1, sym_raw_string_begin, - ACTIONS(9506), 1, + ACTIONS(9515), 1, anon_sym_GT2, STATE(5403), 1, sym_comment, STATE(5427), 1, aux_sym__multiple_types_repeat1, - ACTIONS(9152), 4, + ACTIONS(9161), 4, sym_identifier, anon_sym_DQUOTE, sym__str_single_quotes, @@ -398419,17 +398419,17 @@ static const uint16_t ts_small_parse_table[] = { [190760] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9156), 1, + ACTIONS(9165), 1, sym__entry_separator, - ACTIONS(9164), 1, + ACTIONS(9173), 1, sym_raw_string_begin, - ACTIONS(9508), 1, + ACTIONS(9517), 1, anon_sym_GT2, STATE(5404), 1, sym_comment, STATE(5427), 1, aux_sym__multiple_types_repeat1, - ACTIONS(9160), 4, + ACTIONS(9169), 4, sym_identifier, anon_sym_DQUOTE, sym__str_single_quotes, @@ -398437,17 +398437,17 @@ static const uint16_t ts_small_parse_table[] = { [190785] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9156), 1, + ACTIONS(9165), 1, sym__entry_separator, - ACTIONS(9184), 1, + ACTIONS(9193), 1, sym_raw_string_begin, - ACTIONS(9510), 1, + ACTIONS(9519), 1, anon_sym_GT2, STATE(5405), 1, sym_comment, STATE(5427), 1, aux_sym__multiple_types_repeat1, - ACTIONS(9180), 4, + ACTIONS(9189), 4, sym_identifier, anon_sym_DQUOTE, sym__str_single_quotes, @@ -398470,17 +398470,17 @@ static const uint16_t ts_small_parse_table[] = { [190829] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9156), 1, + ACTIONS(9165), 1, sym__entry_separator, - ACTIONS(9194), 1, + ACTIONS(9203), 1, sym_raw_string_begin, - ACTIONS(9512), 1, + ACTIONS(9521), 1, anon_sym_GT2, STATE(5407), 1, sym_comment, STATE(5427), 1, aux_sym__multiple_types_repeat1, - ACTIONS(9190), 4, + ACTIONS(9199), 4, sym_identifier, anon_sym_DQUOTE, sym__str_single_quotes, @@ -398490,7 +398490,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(1681), 1, anon_sym_DASH2, - ACTIONS(8099), 1, + ACTIONS(8108), 1, aux_sym_unquoted_token2, STATE(5408), 1, sym_comment, @@ -398504,17 +398504,17 @@ static const uint16_t ts_small_parse_table[] = { [190875] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9156), 1, + ACTIONS(9165), 1, sym__entry_separator, - ACTIONS(9158), 1, + ACTIONS(9167), 1, sym_raw_string_begin, - ACTIONS(9514), 1, + ACTIONS(9523), 1, anon_sym_GT2, STATE(5409), 1, sym_comment, STATE(5427), 1, aux_sym__multiple_types_repeat1, - ACTIONS(9152), 4, + ACTIONS(9161), 4, sym_identifier, anon_sym_DQUOTE, sym__str_single_quotes, @@ -398552,17 +398552,17 @@ static const uint16_t ts_small_parse_table[] = { [190938] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9156), 1, + ACTIONS(9165), 1, sym__entry_separator, - ACTIONS(9164), 1, + ACTIONS(9173), 1, sym_raw_string_begin, - ACTIONS(9516), 1, + ACTIONS(9525), 1, anon_sym_GT2, STATE(5412), 1, sym_comment, STATE(5427), 1, aux_sym__multiple_types_repeat1, - ACTIONS(9160), 4, + ACTIONS(9169), 4, sym_identifier, anon_sym_DQUOTE, sym__str_single_quotes, @@ -398570,17 +398570,17 @@ static const uint16_t ts_small_parse_table[] = { [190963] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9156), 1, + ACTIONS(9165), 1, sym__entry_separator, - ACTIONS(9184), 1, + ACTIONS(9193), 1, sym_raw_string_begin, - ACTIONS(9518), 1, + ACTIONS(9527), 1, anon_sym_GT2, STATE(5413), 1, sym_comment, STATE(5427), 1, aux_sym__multiple_types_repeat1, - ACTIONS(9180), 4, + ACTIONS(9189), 4, sym_identifier, anon_sym_DQUOTE, sym__str_single_quotes, @@ -398588,17 +398588,17 @@ static const uint16_t ts_small_parse_table[] = { [190988] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9156), 1, + ACTIONS(9165), 1, sym__entry_separator, - ACTIONS(9170), 1, + ACTIONS(9179), 1, sym_raw_string_begin, - ACTIONS(9520), 1, + ACTIONS(9529), 1, anon_sym_GT2, STATE(5414), 1, sym_comment, STATE(5427), 1, aux_sym__multiple_types_repeat1, - ACTIONS(9166), 4, + ACTIONS(9175), 4, sym_identifier, anon_sym_DQUOTE, sym__str_single_quotes, @@ -398606,17 +398606,17 @@ static const uint16_t ts_small_parse_table[] = { [191013] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9156), 1, + ACTIONS(9165), 1, sym__entry_separator, - ACTIONS(9176), 1, + ACTIONS(9185), 1, sym_raw_string_begin, - ACTIONS(9522), 1, + ACTIONS(9531), 1, anon_sym_GT2, STATE(5415), 1, sym_comment, STATE(5427), 1, aux_sym__multiple_types_repeat1, - ACTIONS(9172), 4, + ACTIONS(9181), 4, sym_identifier, anon_sym_DQUOTE, sym__str_single_quotes, @@ -398624,17 +398624,17 @@ static const uint16_t ts_small_parse_table[] = { [191038] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9156), 1, + ACTIONS(9165), 1, sym__entry_separator, - ACTIONS(9194), 1, + ACTIONS(9203), 1, sym_raw_string_begin, - ACTIONS(9524), 1, + ACTIONS(9533), 1, anon_sym_GT2, STATE(5416), 1, sym_comment, STATE(5427), 1, aux_sym__multiple_types_repeat1, - ACTIONS(9190), 4, + ACTIONS(9199), 4, sym_identifier, anon_sym_DQUOTE, sym__str_single_quotes, @@ -398642,17 +398642,17 @@ static const uint16_t ts_small_parse_table[] = { [191063] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9156), 1, + ACTIONS(9165), 1, sym__entry_separator, - ACTIONS(9184), 1, + ACTIONS(9193), 1, sym_raw_string_begin, - ACTIONS(9526), 1, + ACTIONS(9535), 1, anon_sym_GT2, STATE(5417), 1, sym_comment, STATE(5427), 1, aux_sym__multiple_types_repeat1, - ACTIONS(9180), 4, + ACTIONS(9189), 4, sym_identifier, anon_sym_DQUOTE, sym__str_single_quotes, @@ -398660,17 +398660,17 @@ static const uint16_t ts_small_parse_table[] = { [191088] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9156), 1, + ACTIONS(9165), 1, sym__entry_separator, - ACTIONS(9194), 1, + ACTIONS(9203), 1, sym_raw_string_begin, - ACTIONS(9528), 1, + ACTIONS(9537), 1, anon_sym_GT2, STATE(5418), 1, sym_comment, STATE(5427), 1, aux_sym__multiple_types_repeat1, - ACTIONS(9190), 4, + ACTIONS(9199), 4, sym_identifier, anon_sym_DQUOTE, sym__str_single_quotes, @@ -398678,17 +398678,17 @@ static const uint16_t ts_small_parse_table[] = { [191113] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9530), 1, + ACTIONS(9539), 1, anon_sym_DQUOTE, - ACTIONS(9534), 1, + ACTIONS(9543), 1, aux_sym_path_token1, - ACTIONS(9536), 1, + ACTIONS(9545), 1, sym_raw_string_begin, STATE(1391), 1, sym_val_string, STATE(5419), 1, sym_comment, - ACTIONS(9532), 2, + ACTIONS(9541), 2, sym__str_single_quotes, sym__str_back_ticks, STATE(1408), 2, @@ -398804,7 +398804,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(2292), 1, sym_raw_string_begin, - ACTIONS(9538), 1, + ACTIONS(9547), 1, sym__entry_separator, STATE(5427), 2, sym_comment, @@ -398833,13 +398833,13 @@ static const uint16_t ts_small_parse_table[] = { [191313] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9541), 1, + ACTIONS(9550), 1, anon_sym_DASH_DASH, - ACTIONS(9544), 1, + ACTIONS(9553), 1, anon_sym_DASH2, STATE(5967), 1, sym__flag, - ACTIONS(8617), 2, + ACTIONS(8626), 2, sym_identifier, anon_sym_DOLLAR, STATE(5429), 2, @@ -398851,13 +398851,13 @@ static const uint16_t ts_small_parse_table[] = { [191338] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4936), 1, + ACTIONS(4945), 1, anon_sym_DASH2, - ACTIONS(9547), 1, + ACTIONS(9556), 1, anon_sym_EQ2, STATE(5430), 1, sym_comment, - ACTIONS(4934), 6, + ACTIONS(4943), 6, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, @@ -398867,7 +398867,7 @@ static const uint16_t ts_small_parse_table[] = { [191359] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8981), 1, + ACTIONS(8990), 1, aux_sym__immediate_decimal_token2, STATE(5431), 1, sym_comment, @@ -398887,7 +398887,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(253), 1, sym_raw_string_begin, - ACTIONS(9125), 1, + ACTIONS(9134), 1, aux_sym_path_token1, STATE(1445), 1, sym_val_string, @@ -398975,17 +398975,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(1693), 1, anon_sym_LBRACE, - ACTIONS(4596), 1, + ACTIONS(4605), 1, anon_sym_DOT_DOT2, - ACTIONS(4801), 1, + ACTIONS(4810), 1, aux_sym_unquoted_token2, - ACTIONS(9549), 1, + ACTIONS(9558), 1, sym_filesize_unit, - ACTIONS(9551), 1, + ACTIONS(9560), 1, sym_duration_unit, STATE(5438), 1, sym_comment, - ACTIONS(4598), 2, + ACTIONS(4607), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, [191524] = 8, @@ -398993,7 +398993,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(1955), 1, sym__entry_separator, - ACTIONS(8758), 1, + ACTIONS(8767), 1, anon_sym_DOT2, STATE(5166), 1, aux_sym_cell_path_repeat1, @@ -399023,9 +399023,9 @@ static const uint16_t ts_small_parse_table[] = { [191568] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9553), 1, + ACTIONS(9562), 1, anon_sym_DOT, - ACTIONS(9555), 1, + ACTIONS(9564), 1, aux_sym__immediate_decimal_token2, STATE(5441), 1, sym_comment, @@ -399041,7 +399041,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(2091), 1, sym__entry_separator, - ACTIONS(8758), 1, + ACTIONS(8767), 1, anon_sym_DOT2, STATE(5166), 1, aux_sym_cell_path_repeat1, @@ -399099,7 +399099,7 @@ static const uint16_t ts_small_parse_table[] = { [191670] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4807), 1, + ACTIONS(4816), 1, anon_sym_DOT2, STATE(1414), 1, aux_sym_cell_path_repeat1, @@ -399109,18 +399109,18 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(6962), 1, sym_cell_path, - ACTIONS(5865), 3, + ACTIONS(5874), 3, anon_sym_PIPE, anon_sym_if, anon_sym_EQ_GT, [191694] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5056), 1, + ACTIONS(5065), 1, anon_sym_DASH2, STATE(5447), 1, sym_comment, - ACTIONS(5054), 6, + ACTIONS(5063), 6, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, @@ -399144,7 +399144,7 @@ static const uint16_t ts_small_parse_table[] = { [191730] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5718), 1, + ACTIONS(5727), 1, anon_sym_DOT2, STATE(5449), 1, sym_comment, @@ -399205,7 +399205,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(1999), 1, sym__entry_separator, - ACTIONS(8758), 1, + ACTIONS(8767), 1, anon_sym_DOT2, STATE(5166), 1, aux_sym_cell_path_repeat1, @@ -399223,7 +399223,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(1987), 1, sym__entry_separator, - ACTIONS(8758), 1, + ACTIONS(8767), 1, anon_sym_DOT2, STATE(5166), 1, aux_sym_cell_path_repeat1, @@ -399247,11 +399247,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, ACTIONS(1794), 1, sym__entry_separator, - ACTIONS(9557), 1, + ACTIONS(9566), 1, anon_sym_DOT_DOT2, STATE(5455), 1, sym_comment, - ACTIONS(9559), 2, + ACTIONS(9568), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, [191886] = 8, @@ -399259,7 +399259,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(2019), 1, sym__entry_separator, - ACTIONS(8758), 1, + ACTIONS(8767), 1, anon_sym_DOT2, STATE(5166), 1, aux_sym_cell_path_repeat1, @@ -399303,11 +399303,11 @@ static const uint16_t ts_small_parse_table[] = { [191948] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5060), 1, + ACTIONS(5069), 1, anon_sym_DASH2, STATE(5459), 1, sym_comment, - ACTIONS(5058), 6, + ACTIONS(5067), 6, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, @@ -399317,7 +399317,7 @@ static const uint16_t ts_small_parse_table[] = { [191966] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9561), 1, + ACTIONS(9570), 1, anon_sym_DOT2, STATE(3770), 1, sym_cell_path, @@ -399348,11 +399348,11 @@ static const uint16_t ts_small_parse_table[] = { [192008] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5014), 1, + ACTIONS(5023), 1, anon_sym_DASH2, STATE(5462), 1, sym_comment, - ACTIONS(5012), 6, + ACTIONS(5021), 6, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, @@ -399446,11 +399446,11 @@ static const uint16_t ts_small_parse_table[] = { [192134] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5044), 1, + ACTIONS(5053), 1, anon_sym_DASH2, STATE(5469), 1, sym_comment, - ACTIONS(5042), 6, + ACTIONS(5051), 6, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, @@ -399460,13 +399460,13 @@ static const uint16_t ts_small_parse_table[] = { [192152] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4918), 1, + ACTIONS(4927), 1, anon_sym_DASH2, - ACTIONS(9563), 1, + ACTIONS(9572), 1, anon_sym_EQ2, STATE(5470), 1, sym_comment, - ACTIONS(4916), 5, + ACTIONS(4925), 5, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -399559,15 +399559,15 @@ static const uint16_t ts_small_parse_table[] = { [192280] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9156), 1, + ACTIONS(9165), 1, sym__entry_separator, - ACTIONS(9170), 1, + ACTIONS(9179), 1, sym_raw_string_begin, STATE(5427), 1, aux_sym__multiple_types_repeat1, STATE(5477), 1, sym_comment, - ACTIONS(9166), 4, + ACTIONS(9175), 4, sym_identifier, anon_sym_DQUOTE, sym__str_single_quotes, @@ -399575,11 +399575,11 @@ static const uint16_t ts_small_parse_table[] = { [192302] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5020), 1, + ACTIONS(5029), 1, anon_sym_DASH2, STATE(5478), 1, sym_comment, - ACTIONS(5018), 6, + ACTIONS(5027), 6, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, @@ -399591,7 +399591,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(1959), 1, sym__entry_separator, - ACTIONS(8758), 1, + ACTIONS(8767), 1, anon_sym_DOT2, STATE(5166), 1, aux_sym_cell_path_repeat1, @@ -399637,7 +399637,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(1963), 1, sym__entry_separator, - ACTIONS(8758), 1, + ACTIONS(8767), 1, anon_sym_DOT2, STATE(5166), 1, aux_sym_cell_path_repeat1, @@ -399653,15 +399653,15 @@ static const uint16_t ts_small_parse_table[] = { [192408] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9156), 1, + ACTIONS(9165), 1, sym__entry_separator, - ACTIONS(9176), 1, + ACTIONS(9185), 1, sym_raw_string_begin, STATE(5427), 1, aux_sym__multiple_types_repeat1, STATE(5483), 1, sym_comment, - ACTIONS(9172), 4, + ACTIONS(9181), 4, sym_identifier, anon_sym_DQUOTE, sym__str_single_quotes, @@ -399669,11 +399669,11 @@ static const uint16_t ts_small_parse_table[] = { [192430] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5048), 1, + ACTIONS(5057), 1, anon_sym_DASH2, STATE(5484), 1, sym_comment, - ACTIONS(5046), 6, + ACTIONS(5055), 6, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, @@ -399683,11 +399683,11 @@ static const uint16_t ts_small_parse_table[] = { [192448] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5024), 1, + ACTIONS(5033), 1, anon_sym_DASH2, STATE(5485), 1, sym_comment, - ACTIONS(5022), 6, + ACTIONS(5031), 6, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, @@ -399699,7 +399699,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(1947), 1, sym__entry_separator, - ACTIONS(8758), 1, + ACTIONS(8767), 1, anon_sym_DOT2, STATE(5166), 1, aux_sym_cell_path_repeat1, @@ -399751,11 +399751,11 @@ static const uint16_t ts_small_parse_table[] = { sym__entry_separator, ACTIONS(1875), 1, aux_sym__unquoted_in_record_token2, - ACTIONS(9565), 1, + ACTIONS(9574), 1, anon_sym_DOT_DOT2, STATE(5489), 1, sym_comment, - ACTIONS(9567), 2, + ACTIONS(9576), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, [192554] = 8, @@ -399763,7 +399763,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(1967), 1, sym__entry_separator, - ACTIONS(8758), 1, + ACTIONS(8767), 1, anon_sym_DOT2, STATE(5166), 1, aux_sym_cell_path_repeat1, @@ -399781,7 +399781,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(2095), 1, sym__entry_separator, - ACTIONS(8758), 1, + ACTIONS(8767), 1, anon_sym_DOT2, STATE(5166), 1, aux_sym_cell_path_repeat1, @@ -399799,7 +399799,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(5492), 1, sym_comment, - ACTIONS(9569), 7, + ACTIONS(9578), 7, anon_sym_EQ, sym__newline, anon_sym_SEMI, @@ -399818,11 +399818,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, ACTIONS(1794), 1, sym__entry_separator, - ACTIONS(9571), 1, + ACTIONS(9580), 1, anon_sym_DOT_DOT2, STATE(5493), 1, sym_comment, - ACTIONS(9573), 2, + ACTIONS(9582), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, [192648] = 8, @@ -399830,7 +399830,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(2023), 1, sym__entry_separator, - ACTIONS(8758), 1, + ACTIONS(8767), 1, anon_sym_DOT2, STATE(5166), 1, aux_sym_cell_path_repeat1, @@ -399918,7 +399918,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(1995), 1, sym__entry_separator, - ACTIONS(8758), 1, + ACTIONS(8767), 1, anon_sym_DOT2, STATE(5166), 1, aux_sym_cell_path_repeat1, @@ -399962,7 +399962,7 @@ static const uint16_t ts_small_parse_table[] = { [192826] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9575), 1, + ACTIONS(9584), 1, sym__newline, STATE(5503), 2, sym_comment, @@ -400005,15 +400005,15 @@ static const uint16_t ts_small_parse_table[] = { [192882] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9156), 1, + ACTIONS(9165), 1, sym__entry_separator, - ACTIONS(9158), 1, + ACTIONS(9167), 1, sym_raw_string_begin, STATE(5427), 1, aux_sym__multiple_types_repeat1, STATE(5506), 1, sym_comment, - ACTIONS(9152), 4, + ACTIONS(9161), 4, sym_identifier, anon_sym_DQUOTE, sym__str_single_quotes, @@ -400021,15 +400021,15 @@ static const uint16_t ts_small_parse_table[] = { [192904] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9156), 1, + ACTIONS(9165), 1, sym__entry_separator, - ACTIONS(9164), 1, + ACTIONS(9173), 1, sym_raw_string_begin, STATE(5427), 1, aux_sym__multiple_types_repeat1, STATE(5507), 1, sym_comment, - ACTIONS(9160), 4, + ACTIONS(9169), 4, sym_identifier, anon_sym_DQUOTE, sym__str_single_quotes, @@ -400037,11 +400037,11 @@ static const uint16_t ts_small_parse_table[] = { [192926] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5030), 1, + ACTIONS(5039), 1, anon_sym_DASH2, STATE(5508), 1, sym_comment, - ACTIONS(5028), 6, + ACTIONS(5037), 6, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, @@ -400051,11 +400051,11 @@ static const uint16_t ts_small_parse_table[] = { [192944] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5034), 1, + ACTIONS(5043), 1, anon_sym_DASH2, STATE(5509), 1, sym_comment, - ACTIONS(5032), 6, + ACTIONS(5041), 6, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, @@ -400067,7 +400067,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(1991), 1, sym__entry_separator, - ACTIONS(8758), 1, + ACTIONS(8767), 1, anon_sym_DOT2, STATE(5166), 1, aux_sym_cell_path_repeat1, @@ -400085,7 +400085,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(5511), 1, sym_comment, - ACTIONS(9578), 7, + ACTIONS(9587), 7, anon_sym_EQ, sym__newline, anon_sym_SEMI, @@ -400098,7 +400098,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(1951), 1, sym__entry_separator, - ACTIONS(8758), 1, + ACTIONS(8767), 1, anon_sym_DOT2, STATE(5166), 1, aux_sym_cell_path_repeat1, @@ -400114,19 +400114,19 @@ static const uint16_t ts_small_parse_table[] = { [193030] = 9, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3424), 1, + ACTIONS(3433), 1, anon_sym_COLON2, - ACTIONS(9580), 1, + ACTIONS(9589), 1, anon_sym_alias, - ACTIONS(9582), 1, + ACTIONS(9591), 1, anon_sym_const, - ACTIONS(9584), 1, + ACTIONS(9593), 1, anon_sym_def, - ACTIONS(9586), 1, + ACTIONS(9595), 1, anon_sym_extern, - ACTIONS(9588), 1, + ACTIONS(9597), 1, anon_sym_module, - ACTIONS(9590), 1, + ACTIONS(9599), 1, anon_sym_use, STATE(5513), 1, sym_comment, @@ -400135,7 +400135,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(2027), 1, sym__entry_separator, - ACTIONS(8758), 1, + ACTIONS(8767), 1, anon_sym_DOT2, STATE(5166), 1, aux_sym_cell_path_repeat1, @@ -400151,19 +400151,19 @@ static const uint16_t ts_small_parse_table[] = { [193084] = 9, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3422), 1, + ACTIONS(3431), 1, anon_sym_COLON2, - ACTIONS(9580), 1, + ACTIONS(9589), 1, anon_sym_alias, - ACTIONS(9582), 1, + ACTIONS(9591), 1, anon_sym_const, - ACTIONS(9584), 1, + ACTIONS(9593), 1, anon_sym_def, - ACTIONS(9586), 1, + ACTIONS(9595), 1, anon_sym_extern, - ACTIONS(9588), 1, + ACTIONS(9597), 1, anon_sym_module, - ACTIONS(9590), 1, + ACTIONS(9599), 1, anon_sym_use, STATE(5515), 1, sym_comment, @@ -400178,21 +400178,21 @@ static const uint16_t ts_small_parse_table[] = { sym__entry_separator, ACTIONS(1875), 1, aux_sym__unquoted_in_list_token2, - ACTIONS(9592), 1, + ACTIONS(9601), 1, anon_sym_DOT_DOT2, STATE(5516), 1, sym_comment, - ACTIONS(9594), 2, + ACTIONS(9603), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, [193138] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9596), 1, + ACTIONS(9605), 1, sym_identifier, - ACTIONS(9598), 1, + ACTIONS(9607), 1, anon_sym_DASH_DASH, - ACTIONS(9600), 1, + ACTIONS(9609), 1, anon_sym_DASH2, STATE(5517), 1, sym_comment, @@ -400208,7 +400208,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(1939), 1, sym__entry_separator, - ACTIONS(8758), 1, + ACTIONS(8767), 1, anon_sym_DOT2, STATE(5166), 1, aux_sym_cell_path_repeat1, @@ -400224,14 +400224,14 @@ static const uint16_t ts_small_parse_table[] = { [193190] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9602), 1, + ACTIONS(9611), 1, sym__newline, - ACTIONS(9605), 1, + ACTIONS(9614), 1, sym__space, STATE(5519), 2, sym_comment, aux_sym_ctrl_do_parenthesized_repeat2, - ACTIONS(3496), 4, + ACTIONS(3505), 4, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH2, @@ -400239,11 +400239,11 @@ static const uint16_t ts_small_parse_table[] = { [193210] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9608), 1, + ACTIONS(9617), 1, anon_sym_DASH_DASH, - ACTIONS(9610), 1, + ACTIONS(9619), 1, anon_sym_DASH2, - ACTIONS(9612), 1, + ACTIONS(9621), 1, anon_sym_LBRACE, STATE(5520), 1, sym_comment, @@ -400257,15 +400257,15 @@ static const uint16_t ts_small_parse_table[] = { [193236] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9156), 1, + ACTIONS(9165), 1, sym__entry_separator, - ACTIONS(9184), 1, + ACTIONS(9193), 1, sym_raw_string_begin, STATE(5427), 1, aux_sym__multiple_types_repeat1, STATE(5521), 1, sym_comment, - ACTIONS(9180), 4, + ACTIONS(9189), 4, sym_identifier, anon_sym_DQUOTE, sym__str_single_quotes, @@ -400302,15 +400302,15 @@ static const uint16_t ts_small_parse_table[] = { [193296] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9156), 1, + ACTIONS(9165), 1, sym__entry_separator, - ACTIONS(9194), 1, + ACTIONS(9203), 1, sym_raw_string_begin, STATE(5427), 1, aux_sym__multiple_types_repeat1, STATE(5524), 1, sym_comment, - ACTIONS(9190), 4, + ACTIONS(9199), 4, sym_identifier, anon_sym_DQUOTE, sym__str_single_quotes, @@ -400318,7 +400318,7 @@ static const uint16_t ts_small_parse_table[] = { [193318] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9614), 1, + ACTIONS(9623), 1, aux_sym__immediate_decimal_token2, STATE(5525), 1, sym_comment, @@ -400335,7 +400335,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(2003), 1, sym__entry_separator, - ACTIONS(8758), 1, + ACTIONS(8767), 1, anon_sym_DOT2, STATE(5166), 1, aux_sym_cell_path_repeat1, @@ -400351,11 +400351,11 @@ static const uint16_t ts_small_parse_table[] = { [193364] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9598), 1, + ACTIONS(9607), 1, anon_sym_DASH_DASH, - ACTIONS(9600), 1, + ACTIONS(9609), 1, anon_sym_DASH2, - ACTIONS(9616), 1, + ACTIONS(9625), 1, sym_identifier, STATE(5527), 1, sym_comment, @@ -400369,11 +400369,11 @@ static const uint16_t ts_small_parse_table[] = { [193390] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9598), 1, + ACTIONS(9607), 1, anon_sym_DASH_DASH, - ACTIONS(9600), 1, + ACTIONS(9609), 1, anon_sym_DASH2, - ACTIONS(9618), 1, + ACTIONS(9627), 1, sym_identifier, STATE(5528), 1, sym_comment, @@ -400391,15 +400391,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, ACTIONS(1693), 1, sym__entry_separator, - ACTIONS(9620), 1, + ACTIONS(9629), 1, anon_sym_DOT_DOT2, - ACTIONS(9624), 1, + ACTIONS(9633), 1, sym_filesize_unit, - ACTIONS(9626), 1, + ACTIONS(9635), 1, sym_duration_unit, STATE(5529), 1, sym_comment, - ACTIONS(9622), 2, + ACTIONS(9631), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, [193442] = 8, @@ -400407,7 +400407,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(2007), 1, sym__entry_separator, - ACTIONS(8758), 1, + ACTIONS(8767), 1, anon_sym_DOT2, STATE(5166), 1, aux_sym_cell_path_repeat1, @@ -400439,7 +400439,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(2011), 1, sym__entry_separator, - ACTIONS(8758), 1, + ACTIONS(8767), 1, anon_sym_DOT2, STATE(5166), 1, aux_sym_cell_path_repeat1, @@ -400455,11 +400455,11 @@ static const uint16_t ts_small_parse_table[] = { [193512] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8617), 1, + ACTIONS(8626), 1, sym_identifier, - ACTIONS(9628), 1, + ACTIONS(9637), 1, anon_sym_DASH_DASH, - ACTIONS(9631), 1, + ACTIONS(9640), 1, anon_sym_DASH2, STATE(5967), 1, sym__flag, @@ -400472,11 +400472,11 @@ static const uint16_t ts_small_parse_table[] = { [193536] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4932), 1, + ACTIONS(4941), 1, anon_sym_DASH2, STATE(5534), 1, sym_comment, - ACTIONS(4930), 6, + ACTIONS(4939), 6, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, @@ -400488,11 +400488,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(1875), 1, aux_sym_unquoted_token2, - ACTIONS(9634), 1, + ACTIONS(9643), 1, anon_sym_DOT_DOT2, STATE(5535), 1, sym_comment, - ACTIONS(9636), 2, + ACTIONS(9645), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, ACTIONS(1873), 3, @@ -400560,7 +400560,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(1971), 1, sym__entry_separator, - ACTIONS(8758), 1, + ACTIONS(8767), 1, anon_sym_DOT2, STATE(5166), 1, aux_sym_cell_path_repeat1, @@ -400604,13 +400604,13 @@ static const uint16_t ts_small_parse_table[] = { [193710] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4936), 1, + ACTIONS(4945), 1, anon_sym_DASH2, - ACTIONS(9638), 1, + ACTIONS(9647), 1, anon_sym_EQ2, STATE(5543), 1, sym_comment, - ACTIONS(4934), 5, + ACTIONS(4943), 5, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -400619,11 +400619,11 @@ static const uint16_t ts_small_parse_table[] = { [193730] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9608), 1, + ACTIONS(9617), 1, anon_sym_DASH_DASH, - ACTIONS(9610), 1, + ACTIONS(9619), 1, anon_sym_DASH2, - ACTIONS(9640), 1, + ACTIONS(9649), 1, anon_sym_LBRACE, STATE(5544), 1, sym_comment, @@ -400665,11 +400665,11 @@ static const uint16_t ts_small_parse_table[] = { [193792] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9598), 1, + ACTIONS(9607), 1, anon_sym_DASH_DASH, - ACTIONS(9600), 1, + ACTIONS(9609), 1, anon_sym_DASH2, - ACTIONS(9642), 1, + ACTIONS(9651), 1, sym_identifier, STATE(5533), 1, aux_sym_ctrl_do_repeat1, @@ -400725,7 +400725,7 @@ static const uint16_t ts_small_parse_table[] = { [193872] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5718), 1, + ACTIONS(5727), 1, anon_sym_DOT2, STATE(5551), 1, sym_comment, @@ -400742,7 +400742,7 @@ static const uint16_t ts_small_parse_table[] = { [193896] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4807), 1, + ACTIONS(4816), 1, anon_sym_DOT2, STATE(1414), 1, aux_sym_cell_path_repeat1, @@ -400752,18 +400752,18 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(7152), 1, sym_cell_path, - ACTIONS(5779), 3, + ACTIONS(5788), 3, anon_sym_PIPE, anon_sym_if, anon_sym_EQ_GT, [193920] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9646), 1, + ACTIONS(9655), 1, anon_sym_DASH2, STATE(5553), 1, sym_comment, - ACTIONS(9644), 6, + ACTIONS(9653), 6, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, @@ -400818,17 +400818,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(1693), 1, anon_sym_LBRACE, - ACTIONS(4801), 1, + ACTIONS(4810), 1, aux_sym_unquoted_token2, - ACTIONS(9549), 1, + ACTIONS(9558), 1, sym_filesize_unit, - ACTIONS(9551), 1, + ACTIONS(9560), 1, sym_duration_unit, - ACTIONS(9648), 1, + ACTIONS(9657), 1, anon_sym_DOT_DOT2, STATE(5557), 1, sym_comment, - ACTIONS(9650), 2, + ACTIONS(9659), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, [194020] = 8, @@ -400836,17 +400836,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(1555), 1, aux_sym_unquoted_token2, - ACTIONS(8347), 1, + ACTIONS(8356), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8349), 1, + ACTIONS(8358), 1, aux_sym__immediate_decimal_token5, - ACTIONS(9652), 1, + ACTIONS(9661), 1, anon_sym_DOT, STATE(5558), 1, sym_comment, STATE(6251), 1, sym__immediate_decimal, - ACTIONS(8345), 2, + ACTIONS(8354), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, [194046] = 5, @@ -400854,7 +400854,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(2318), 1, anon_sym_DASH2, - ACTIONS(9654), 1, + ACTIONS(9663), 1, anon_sym_LBRACK2, STATE(5559), 1, sym_comment, @@ -400883,11 +400883,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(1555), 1, aux_sym_unquoted_token2, - ACTIONS(9656), 1, + ACTIONS(9665), 1, anon_sym_DOT_DOT2, STATE(5561), 1, sym_comment, - ACTIONS(9658), 2, + ACTIONS(9667), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, ACTIONS(1794), 3, @@ -400899,7 +400899,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(1681), 1, anon_sym_DASH2, - ACTIONS(8462), 1, + ACTIONS(8471), 1, aux_sym_unquoted_token2, STATE(5562), 1, sym_comment, @@ -400928,7 +400928,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(1975), 1, sym__entry_separator, - ACTIONS(8758), 1, + ACTIONS(8767), 1, anon_sym_DOT2, STATE(5166), 1, aux_sym_cell_path_repeat1, @@ -400946,7 +400946,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(1935), 1, sym__entry_separator, - ACTIONS(8758), 1, + ACTIONS(8767), 1, anon_sym_DOT2, STATE(5166), 1, aux_sym_cell_path_repeat1, @@ -400978,7 +400978,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(1927), 1, sym__entry_separator, - ACTIONS(8758), 1, + ACTIONS(8767), 1, anon_sym_DOT2, STATE(5166), 1, aux_sym_cell_path_repeat1, @@ -400996,7 +400996,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(1979), 1, sym__entry_separator, - ACTIONS(8758), 1, + ACTIONS(8767), 1, anon_sym_DOT2, STATE(5166), 1, aux_sym_cell_path_repeat1, @@ -401012,9 +401012,9 @@ static const uint16_t ts_small_parse_table[] = { [194266] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9660), 1, + ACTIONS(9669), 1, aux_sym__immediate_decimal_token1, - ACTIONS(9662), 1, + ACTIONS(9671), 1, aux_sym__immediate_decimal_token2, STATE(5569), 1, sym_comment, @@ -401043,11 +401043,11 @@ static const uint16_t ts_small_parse_table[] = { [194308] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4989), 1, + ACTIONS(4998), 1, anon_sym_DASH2, STATE(5571), 1, sym_comment, - ACTIONS(4987), 6, + ACTIONS(4996), 6, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, @@ -401073,7 +401073,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(1983), 1, sym__entry_separator, - ACTIONS(8758), 1, + ACTIONS(8767), 1, anon_sym_DOT2, STATE(5166), 1, aux_sym_cell_path_repeat1, @@ -401089,7 +401089,7 @@ static const uint16_t ts_small_parse_table[] = { [194370] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9288), 1, + ACTIONS(9297), 1, aux_sym__immediate_decimal_token2, STATE(5574), 1, sym_comment, @@ -401104,7 +401104,7 @@ static const uint16_t ts_small_parse_table[] = { [194390] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3532), 1, + ACTIONS(3541), 1, sym__space, STATE(5575), 1, sym_comment, @@ -401117,11 +401117,11 @@ static const uint16_t ts_small_parse_table[] = { [194407] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5060), 1, + ACTIONS(5069), 1, anon_sym_DASH2, STATE(5576), 1, sym_comment, - ACTIONS(5058), 5, + ACTIONS(5067), 5, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -401169,11 +401169,11 @@ static const uint16_t ts_small_parse_table[] = { [194475] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3802), 1, + ACTIONS(3811), 1, sym__newline, - ACTIONS(9664), 1, + ACTIONS(9673), 1, anon_sym_LBRACK, - ACTIONS(9666), 1, + ACTIONS(9675), 1, anon_sym_RBRACK, STATE(5580), 1, sym_comment, @@ -401225,23 +401225,23 @@ static const uint16_t ts_small_parse_table[] = { [194551] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9668), 1, + ACTIONS(9677), 1, anon_sym_DOT_DOT2, STATE(5584), 1, sym_comment, - ACTIONS(9670), 2, + ACTIONS(9679), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(5884), 3, + ACTIONS(5893), 3, anon_sym_PIPE, anon_sym_if, anon_sym_EQ_GT, [194570] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9672), 1, + ACTIONS(9681), 1, anon_sym_LPAREN, - ACTIONS(9676), 1, + ACTIONS(9685), 1, anon_sym_DQUOTE2, STATE(5585), 1, sym_comment, @@ -401249,15 +401249,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__inter_double_quotes_repeat1, STATE(6518), 1, sym_expr_interpolated, - ACTIONS(9674), 2, + ACTIONS(9683), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, [194593] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9678), 1, + ACTIONS(9687), 1, anon_sym_DOT, - ACTIONS(9680), 1, + ACTIONS(9689), 1, aux_sym__immediate_decimal_token2, STATE(5586), 1, sym_comment, @@ -401270,9 +401270,9 @@ static const uint16_t ts_small_parse_table[] = { [194614] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9672), 1, + ACTIONS(9681), 1, anon_sym_LPAREN, - ACTIONS(9682), 1, + ACTIONS(9691), 1, anon_sym_DQUOTE2, STATE(5587), 1, sym_comment, @@ -401280,21 +401280,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__inter_double_quotes_repeat1, STATE(6518), 1, sym_expr_interpolated, - ACTIONS(9674), 2, + ACTIONS(9683), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, [194637] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7051), 1, + ACTIONS(7060), 1, aux_sym_unquoted_token3, - ACTIONS(8345), 1, + ACTIONS(8354), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8897), 1, + ACTIONS(8906), 1, aux_sym__immediate_decimal_token3, - ACTIONS(8899), 1, + ACTIONS(8908), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8901), 1, + ACTIONS(8910), 1, aux_sym__immediate_decimal_token5, STATE(5588), 1, sym_comment, @@ -401303,15 +401303,15 @@ static const uint16_t ts_small_parse_table[] = { [194662] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7051), 1, + ACTIONS(7060), 1, aux_sym_unquoted_token3, - ACTIONS(8643), 1, + ACTIONS(8652), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8931), 1, + ACTIONS(8940), 1, aux_sym__immediate_decimal_token3, - ACTIONS(8933), 1, + ACTIONS(8942), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8935), 1, + ACTIONS(8944), 1, aux_sym__immediate_decimal_token5, STATE(5589), 1, sym_comment, @@ -401320,23 +401320,23 @@ static const uint16_t ts_small_parse_table[] = { [194687] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9668), 1, + ACTIONS(9677), 1, anon_sym_DOT_DOT2, STATE(5590), 1, sym_comment, - ACTIONS(9670), 2, + ACTIONS(9679), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(5899), 3, + ACTIONS(5908), 3, anon_sym_PIPE, anon_sym_if, anon_sym_EQ_GT, [194706] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9672), 1, + ACTIONS(9681), 1, anon_sym_LPAREN, - ACTIONS(9684), 1, + ACTIONS(9693), 1, anon_sym_DQUOTE2, STATE(5591), 1, sym_comment, @@ -401344,17 +401344,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__inter_double_quotes_repeat1, STATE(6518), 1, sym_expr_interpolated, - ACTIONS(9674), 2, + ACTIONS(9683), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, [194729] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3802), 1, + ACTIONS(3811), 1, sym__newline, - ACTIONS(9664), 1, + ACTIONS(9673), 1, anon_sym_LBRACK, - ACTIONS(9686), 1, + ACTIONS(9695), 1, anon_sym_RBRACK, STATE(5592), 1, sym_comment, @@ -401367,11 +401367,11 @@ static const uint16_t ts_small_parse_table[] = { [194754] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3802), 1, + ACTIONS(3811), 1, sym__newline, - ACTIONS(9664), 1, + ACTIONS(9673), 1, anon_sym_LBRACK, - ACTIONS(9688), 1, + ACTIONS(9697), 1, anon_sym_RBRACK, STATE(5593), 1, sym_comment, @@ -401384,26 +401384,26 @@ static const uint16_t ts_small_parse_table[] = { [194779] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4596), 1, + ACTIONS(4605), 1, anon_sym_DOT_DOT2, - ACTIONS(9692), 1, + ACTIONS(9701), 1, aux_sym_unquoted_token2, STATE(5594), 1, sym_comment, - ACTIONS(4598), 2, + ACTIONS(4607), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(9690), 2, + ACTIONS(9699), 2, sym_filesize_unit, sym_duration_unit, [194800] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3424), 1, + ACTIONS(3433), 1, anon_sym_COLON2, - ACTIONS(8667), 1, + ACTIONS(8676), 1, sym_identifier, - ACTIONS(9694), 1, + ACTIONS(9703), 1, anon_sym_DOLLAR, STATE(5492), 1, sym_val_variable, @@ -401416,26 +401416,26 @@ static const uint16_t ts_small_parse_table[] = { [194825] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9696), 1, + ACTIONS(9705), 1, sym_long_flag_identifier, - ACTIONS(9698), 1, + ACTIONS(9707), 1, anon_sym_EQ2, STATE(5596), 1, sym_comment, - ACTIONS(4879), 2, + ACTIONS(4888), 2, anon_sym_DOLLAR, anon_sym_DASH_DASH, - ACTIONS(4881), 2, + ACTIONS(4890), 2, sym_identifier, anon_sym_DASH2, [194846] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3802), 1, + ACTIONS(3811), 1, sym__newline, - ACTIONS(9664), 1, + ACTIONS(9673), 1, anon_sym_LBRACK, - ACTIONS(9700), 1, + ACTIONS(9709), 1, anon_sym_RBRACK, STATE(5597), 1, sym_comment, @@ -401461,9 +401461,9 @@ static const uint16_t ts_small_parse_table[] = { [194888] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3802), 1, + ACTIONS(3811), 1, sym__newline, - ACTIONS(9702), 1, + ACTIONS(9711), 1, anon_sym_LBRACE, STATE(1706), 1, aux_sym_shebang_repeat1, @@ -401478,9 +401478,9 @@ static const uint16_t ts_small_parse_table[] = { [194913] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3802), 1, + ACTIONS(3811), 1, sym__newline, - ACTIONS(9702), 1, + ACTIONS(9711), 1, anon_sym_LBRACE, STATE(1706), 1, aux_sym_shebang_repeat1, @@ -401508,9 +401508,9 @@ static const uint16_t ts_small_parse_table[] = { [194955] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3802), 1, + ACTIONS(3811), 1, sym__newline, - ACTIONS(9702), 1, + ACTIONS(9711), 1, anon_sym_LBRACE, STATE(4611), 1, sym_val_closure, @@ -401525,9 +401525,9 @@ static const uint16_t ts_small_parse_table[] = { [194980] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9672), 1, + ACTIONS(9681), 1, anon_sym_LPAREN, - ACTIONS(9704), 1, + ACTIONS(9713), 1, anon_sym_DQUOTE2, STATE(5603), 1, sym_comment, @@ -401535,21 +401535,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__inter_double_quotes_repeat1, STATE(6518), 1, sym_expr_interpolated, - ACTIONS(9674), 2, + ACTIONS(9683), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, [195003] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4604), 1, + ACTIONS(4613), 1, aux_sym_unquoted_token3, - ACTIONS(8345), 1, + ACTIONS(8354), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8897), 1, + ACTIONS(8906), 1, aux_sym__immediate_decimal_token3, - ACTIONS(8899), 1, + ACTIONS(8908), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8901), 1, + ACTIONS(8910), 1, aux_sym__immediate_decimal_token5, STATE(5604), 1, sym_comment, @@ -401558,15 +401558,15 @@ static const uint16_t ts_small_parse_table[] = { [195028] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4604), 1, + ACTIONS(4613), 1, aux_sym_unquoted_token3, - ACTIONS(8643), 1, + ACTIONS(8652), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8931), 1, + ACTIONS(8940), 1, aux_sym__immediate_decimal_token3, - ACTIONS(8933), 1, + ACTIONS(8942), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8935), 1, + ACTIONS(8944), 1, aux_sym__immediate_decimal_token5, STATE(5605), 1, sym_comment, @@ -401575,9 +401575,9 @@ static const uint16_t ts_small_parse_table[] = { [195053] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9672), 1, + ACTIONS(9681), 1, anon_sym_LPAREN, - ACTIONS(9706), 1, + ACTIONS(9715), 1, anon_sym_DQUOTE2, STATE(5606), 1, sym_comment, @@ -401585,15 +401585,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__inter_double_quotes_repeat1, STATE(6518), 1, sym_expr_interpolated, - ACTIONS(9674), 2, + ACTIONS(9683), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, [195076] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3802), 1, + ACTIONS(3811), 1, sym__newline, - ACTIONS(9702), 1, + ACTIONS(9711), 1, anon_sym_LBRACE, STATE(4611), 1, sym_val_closure, @@ -401608,11 +401608,11 @@ static const uint16_t ts_small_parse_table[] = { [195101] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3802), 1, + ACTIONS(3811), 1, sym__newline, - ACTIONS(9664), 1, + ACTIONS(9673), 1, anon_sym_LBRACK, - ACTIONS(9708), 1, + ACTIONS(9717), 1, anon_sym_RBRACK, STATE(5608), 1, sym_comment, @@ -401627,9 +401627,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(1757), 1, aux_sym_unquoted_token2, - ACTIONS(9710), 1, + ACTIONS(9719), 1, aux_sym__immediate_decimal_token1, - ACTIONS(9712), 1, + ACTIONS(9721), 1, aux_sym__immediate_decimal_token2, STATE(5609), 1, sym_comment, @@ -401640,26 +401640,26 @@ static const uint16_t ts_small_parse_table[] = { [195147] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9580), 1, + ACTIONS(9589), 1, anon_sym_alias, - ACTIONS(9582), 1, + ACTIONS(9591), 1, anon_sym_const, - ACTIONS(9584), 1, + ACTIONS(9593), 1, anon_sym_def, - ACTIONS(9586), 1, + ACTIONS(9595), 1, anon_sym_extern, - ACTIONS(9588), 1, + ACTIONS(9597), 1, anon_sym_module, - ACTIONS(9590), 1, + ACTIONS(9599), 1, anon_sym_use, STATE(5610), 1, sym_comment, [195172] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9672), 1, + ACTIONS(9681), 1, anon_sym_LPAREN, - ACTIONS(9714), 1, + ACTIONS(9723), 1, anon_sym_DQUOTE2, STATE(5611), 1, sym_comment, @@ -401667,7 +401667,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__inter_double_quotes_repeat1, STATE(6518), 1, sym_expr_interpolated, - ACTIONS(9674), 2, + ACTIONS(9683), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, [195195] = 6, @@ -401675,28 +401675,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(1875), 1, aux_sym_unquoted_token2, - ACTIONS(9716), 1, + ACTIONS(9725), 1, anon_sym_DOT_DOT2, STATE(5612), 1, sym_comment, ACTIONS(1873), 2, anon_sym_PIPE, anon_sym_EQ_GT, - ACTIONS(9718), 2, + ACTIONS(9727), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, [195216] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8345), 1, + ACTIONS(8354), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8897), 1, + ACTIONS(8906), 1, aux_sym__immediate_decimal_token3, - ACTIONS(8899), 1, + ACTIONS(8908), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8901), 1, + ACTIONS(8910), 1, aux_sym__immediate_decimal_token5, - ACTIONS(9692), 1, + ACTIONS(9701), 1, aux_sym_unquoted_token3, STATE(5613), 1, sym_comment, @@ -401705,11 +401705,11 @@ static const uint16_t ts_small_parse_table[] = { [195241] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3802), 1, + ACTIONS(3811), 1, sym__newline, - ACTIONS(9664), 1, + ACTIONS(9673), 1, anon_sym_LBRACK, - ACTIONS(9720), 1, + ACTIONS(9729), 1, anon_sym_RBRACK, STATE(5614), 1, sym_comment, @@ -401722,15 +401722,15 @@ static const uint16_t ts_small_parse_table[] = { [195266] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4869), 1, + ACTIONS(4878), 1, anon_sym_DOLLAR, - ACTIONS(9722), 1, + ACTIONS(9731), 1, anon_sym_EQ2, - ACTIONS(9724), 1, + ACTIONS(9733), 1, sym_short_flag_identifier, STATE(5615), 1, sym_comment, - ACTIONS(4871), 3, + ACTIONS(4880), 3, sym_identifier, anon_sym_DASH_DASH, anon_sym_DASH2, @@ -401763,11 +401763,11 @@ static const uint16_t ts_small_parse_table[] = { [195321] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4932), 1, + ACTIONS(4941), 1, anon_sym_DASH2, STATE(5618), 1, sym_comment, - ACTIONS(4930), 5, + ACTIONS(4939), 5, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -401776,9 +401776,9 @@ static const uint16_t ts_small_parse_table[] = { [195338] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9672), 1, + ACTIONS(9681), 1, anon_sym_LPAREN, - ACTIONS(9726), 1, + ACTIONS(9735), 1, anon_sym_DQUOTE2, STATE(5619), 1, sym_comment, @@ -401786,21 +401786,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__inter_double_quotes_repeat1, STATE(6518), 1, sym_expr_interpolated, - ACTIONS(9674), 2, + ACTIONS(9683), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, [195361] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8345), 1, + ACTIONS(8354), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8462), 1, + ACTIONS(8471), 1, aux_sym_unquoted_token3, - ACTIONS(8897), 1, + ACTIONS(8906), 1, aux_sym__immediate_decimal_token3, - ACTIONS(8899), 1, + ACTIONS(8908), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8901), 1, + ACTIONS(8910), 1, aux_sym__immediate_decimal_token5, STATE(5620), 1, sym_comment, @@ -401809,15 +401809,15 @@ static const uint16_t ts_small_parse_table[] = { [195386] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8462), 1, + ACTIONS(8471), 1, aux_sym_unquoted_token3, - ACTIONS(8643), 1, + ACTIONS(8652), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8931), 1, + ACTIONS(8940), 1, aux_sym__immediate_decimal_token3, - ACTIONS(8933), 1, + ACTIONS(8942), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8935), 1, + ACTIONS(8944), 1, aux_sym__immediate_decimal_token5, STATE(5621), 1, sym_comment, @@ -401839,9 +401839,9 @@ static const uint16_t ts_small_parse_table[] = { [195428] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9672), 1, + ACTIONS(9681), 1, anon_sym_LPAREN, - ACTIONS(9728), 1, + ACTIONS(9737), 1, anon_sym_DQUOTE2, STATE(5623), 1, sym_comment, @@ -401849,7 +401849,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__inter_double_quotes_repeat1, STATE(6518), 1, sym_expr_interpolated, - ACTIONS(9674), 2, + ACTIONS(9683), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, [195451] = 4, @@ -401868,11 +401868,11 @@ static const uint16_t ts_small_parse_table[] = { [195468] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3802), 1, + ACTIONS(3811), 1, sym__newline, - ACTIONS(9664), 1, + ACTIONS(9673), 1, anon_sym_LBRACK, - ACTIONS(9730), 1, + ACTIONS(9739), 1, anon_sym_RBRACK, STATE(5625), 1, sym_comment, @@ -401898,11 +401898,11 @@ static const uint16_t ts_small_parse_table[] = { [195510] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9732), 1, + ACTIONS(9741), 1, sym__newline, - ACTIONS(9734), 1, + ACTIONS(9743), 1, anon_sym_SEMI, - ACTIONS(9736), 1, + ACTIONS(9745), 1, anon_sym_RPAREN, STATE(288), 1, aux_sym__parenthesized_body_repeat1, @@ -401943,11 +401943,11 @@ static const uint16_t ts_small_parse_table[] = { [195573] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3802), 1, + ACTIONS(3811), 1, sym__newline, - ACTIONS(9664), 1, + ACTIONS(9673), 1, anon_sym_LBRACK, - ACTIONS(9738), 1, + ACTIONS(9747), 1, anon_sym_RBRACK, STATE(5630), 1, sym_comment, @@ -401960,9 +401960,9 @@ static const uint16_t ts_small_parse_table[] = { [195598] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3802), 1, + ACTIONS(3811), 1, sym__newline, - ACTIONS(9702), 1, + ACTIONS(9711), 1, anon_sym_LBRACE, STATE(1706), 1, aux_sym_shebang_repeat1, @@ -402003,9 +402003,9 @@ static const uint16_t ts_small_parse_table[] = { [195657] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3802), 1, + ACTIONS(3811), 1, sym__newline, - ACTIONS(9702), 1, + ACTIONS(9711), 1, anon_sym_LBRACE, STATE(1706), 1, aux_sym_shebang_repeat1, @@ -402020,9 +402020,9 @@ static const uint16_t ts_small_parse_table[] = { [195682] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9672), 1, + ACTIONS(9681), 1, anon_sym_LPAREN, - ACTIONS(9740), 1, + ACTIONS(9749), 1, anon_sym_DQUOTE2, STATE(5635), 1, sym_comment, @@ -402030,21 +402030,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__inter_double_quotes_repeat1, STATE(6518), 1, sym_expr_interpolated, - ACTIONS(9674), 2, + ACTIONS(9683), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, [195705] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8099), 1, + ACTIONS(8108), 1, aux_sym_unquoted_token3, - ACTIONS(8345), 1, + ACTIONS(8354), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8897), 1, + ACTIONS(8906), 1, aux_sym__immediate_decimal_token3, - ACTIONS(8899), 1, + ACTIONS(8908), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8901), 1, + ACTIONS(8910), 1, aux_sym__immediate_decimal_token5, STATE(5636), 1, sym_comment, @@ -402053,15 +402053,15 @@ static const uint16_t ts_small_parse_table[] = { [195730] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8099), 1, + ACTIONS(8108), 1, aux_sym_unquoted_token3, - ACTIONS(8643), 1, + ACTIONS(8652), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8931), 1, + ACTIONS(8940), 1, aux_sym__immediate_decimal_token3, - ACTIONS(8933), 1, + ACTIONS(8942), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8935), 1, + ACTIONS(8944), 1, aux_sym__immediate_decimal_token5, STATE(5637), 1, sym_comment, @@ -402070,11 +402070,11 @@ static const uint16_t ts_small_parse_table[] = { [195755] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9646), 1, + ACTIONS(9655), 1, anon_sym_DASH2, STATE(5638), 1, sym_comment, - ACTIONS(9644), 5, + ACTIONS(9653), 5, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -402083,9 +402083,9 @@ static const uint16_t ts_small_parse_table[] = { [195772] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9672), 1, + ACTIONS(9681), 1, anon_sym_LPAREN, - ACTIONS(9742), 1, + ACTIONS(9751), 1, anon_sym_DQUOTE2, STATE(5639), 1, sym_comment, @@ -402093,17 +402093,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__inter_double_quotes_repeat1, STATE(6518), 1, sym_expr_interpolated, - ACTIONS(9674), 2, + ACTIONS(9683), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, [195795] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3802), 1, + ACTIONS(3811), 1, sym__newline, - ACTIONS(9664), 1, + ACTIONS(9673), 1, anon_sym_LBRACK, - ACTIONS(9744), 1, + ACTIONS(9753), 1, anon_sym_RBRACK, STATE(5640), 1, sym_comment, @@ -402116,11 +402116,11 @@ static const uint16_t ts_small_parse_table[] = { [195820] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3424), 1, + ACTIONS(3433), 1, anon_sym_COLON2, - ACTIONS(8667), 1, + ACTIONS(8676), 1, sym_identifier, - ACTIONS(9694), 1, + ACTIONS(9703), 1, anon_sym_DOLLAR, STATE(5492), 1, sym_val_variable, @@ -402133,7 +402133,7 @@ static const uint16_t ts_small_parse_table[] = { [195845] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9746), 1, + ACTIONS(9755), 1, aux_sym__immediate_decimal_token2, STATE(5642), 1, sym_comment, @@ -402147,11 +402147,11 @@ static const uint16_t ts_small_parse_table[] = { [195864] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3802), 1, + ACTIONS(3811), 1, sym__newline, - ACTIONS(9664), 1, + ACTIONS(9673), 1, anon_sym_LBRACK, - ACTIONS(9748), 1, + ACTIONS(9757), 1, anon_sym_RBRACK, STATE(5643), 1, sym_comment, @@ -402164,9 +402164,9 @@ static const uint16_t ts_small_parse_table[] = { [195889] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3802), 1, + ACTIONS(3811), 1, sym__newline, - ACTIONS(9702), 1, + ACTIONS(9711), 1, anon_sym_LBRACE, STATE(1706), 1, aux_sym_shebang_repeat1, @@ -402181,9 +402181,9 @@ static const uint16_t ts_small_parse_table[] = { [195914] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3802), 1, + ACTIONS(3811), 1, sym__newline, - ACTIONS(9702), 1, + ACTIONS(9711), 1, anon_sym_LBRACE, STATE(4611), 1, sym_val_closure, @@ -402198,9 +402198,9 @@ static const uint16_t ts_small_parse_table[] = { [195939] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3802), 1, + ACTIONS(3811), 1, sym__newline, - ACTIONS(9702), 1, + ACTIONS(9711), 1, anon_sym_LBRACE, STATE(4611), 1, sym_val_closure, @@ -402215,9 +402215,9 @@ static const uint16_t ts_small_parse_table[] = { [195964] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9672), 1, + ACTIONS(9681), 1, anon_sym_LPAREN, - ACTIONS(9750), 1, + ACTIONS(9759), 1, anon_sym_DQUOTE2, STATE(5647), 1, sym_comment, @@ -402225,7 +402225,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__inter_double_quotes_repeat1, STATE(6518), 1, sym_expr_interpolated, - ACTIONS(9674), 2, + ACTIONS(9683), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, [195987] = 4, @@ -402244,9 +402244,9 @@ static const uint16_t ts_small_parse_table[] = { [196004] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9672), 1, + ACTIONS(9681), 1, anon_sym_LPAREN, - ACTIONS(9752), 1, + ACTIONS(9761), 1, anon_sym_DQUOTE2, STATE(5649), 1, sym_comment, @@ -402254,17 +402254,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__inter_double_quotes_repeat1, STATE(6518), 1, sym_expr_interpolated, - ACTIONS(9674), 2, + ACTIONS(9683), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, [196027] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3802), 1, + ACTIONS(3811), 1, sym__newline, - ACTIONS(9664), 1, + ACTIONS(9673), 1, anon_sym_LBRACK, - ACTIONS(9754), 1, + ACTIONS(9763), 1, anon_sym_RBRACK, STATE(5650), 1, sym_comment, @@ -402290,11 +402290,11 @@ static const uint16_t ts_small_parse_table[] = { [196069] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3802), 1, + ACTIONS(3811), 1, sym__newline, - ACTIONS(9664), 1, + ACTIONS(9673), 1, anon_sym_LBRACK, - ACTIONS(9756), 1, + ACTIONS(9765), 1, anon_sym_RBRACK, STATE(5652), 1, sym_comment, @@ -402307,15 +402307,15 @@ static const uint16_t ts_small_parse_table[] = { [196094] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8643), 1, + ACTIONS(8652), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8931), 1, + ACTIONS(8940), 1, aux_sym__immediate_decimal_token3, - ACTIONS(8933), 1, + ACTIONS(8942), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8935), 1, + ACTIONS(8944), 1, aux_sym__immediate_decimal_token5, - ACTIONS(9692), 1, + ACTIONS(9701), 1, aux_sym_unquoted_token3, STATE(5653), 1, sym_comment, @@ -402324,9 +402324,9 @@ static const uint16_t ts_small_parse_table[] = { [196119] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9758), 1, + ACTIONS(9767), 1, aux_sym__immediate_decimal_token1, - ACTIONS(9760), 1, + ACTIONS(9769), 1, aux_sym__immediate_decimal_token2, STATE(5654), 1, sym_comment, @@ -402339,9 +402339,9 @@ static const uint16_t ts_small_parse_table[] = { [196140] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9672), 1, + ACTIONS(9681), 1, anon_sym_LPAREN, - ACTIONS(9762), 1, + ACTIONS(9771), 1, anon_sym_DQUOTE2, STATE(5655), 1, sym_comment, @@ -402349,15 +402349,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__inter_double_quotes_repeat1, STATE(6518), 1, sym_expr_interpolated, - ACTIONS(9674), 2, + ACTIONS(9683), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, [196163] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9672), 1, + ACTIONS(9681), 1, anon_sym_LPAREN, - ACTIONS(9764), 1, + ACTIONS(9773), 1, anon_sym_DQUOTE2, STATE(5656), 1, sym_comment, @@ -402365,17 +402365,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__inter_double_quotes_repeat1, STATE(6518), 1, sym_expr_interpolated, - ACTIONS(9674), 2, + ACTIONS(9683), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, [196186] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3802), 1, + ACTIONS(3811), 1, sym__newline, - ACTIONS(9664), 1, + ACTIONS(9673), 1, anon_sym_LBRACK, - ACTIONS(9766), 1, + ACTIONS(9775), 1, anon_sym_RBRACK, STATE(5657), 1, sym_comment, @@ -402401,11 +402401,11 @@ static const uint16_t ts_small_parse_table[] = { [196228] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3802), 1, + ACTIONS(3811), 1, sym__newline, - ACTIONS(9664), 1, + ACTIONS(9673), 1, anon_sym_LBRACK, - ACTIONS(9768), 1, + ACTIONS(9777), 1, anon_sym_RBRACK, STATE(5659), 1, sym_comment, @@ -402420,20 +402420,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(2150), 1, sym__entry_separator, - ACTIONS(9770), 1, + ACTIONS(9779), 1, anon_sym_DOT_DOT2, STATE(5660), 1, sym_comment, ACTIONS(2144), 2, anon_sym_RBRACK, anon_sym_RBRACE, - ACTIONS(9772), 2, + ACTIONS(9781), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, [196274] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9555), 1, + ACTIONS(9564), 1, aux_sym__immediate_decimal_token2, STATE(5661), 1, sym_comment, @@ -402447,9 +402447,9 @@ static const uint16_t ts_small_parse_table[] = { [196293] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9672), 1, + ACTIONS(9681), 1, anon_sym_LPAREN, - ACTIONS(9774), 1, + ACTIONS(9783), 1, anon_sym_DQUOTE2, STATE(5662), 1, sym_comment, @@ -402457,7 +402457,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__inter_double_quotes_repeat1, STATE(6518), 1, sym_expr_interpolated, - ACTIONS(9674), 2, + ACTIONS(9683), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, [196316] = 6, @@ -402465,22 +402465,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(2176), 1, sym__entry_separator, - ACTIONS(9776), 1, + ACTIONS(9785), 1, anon_sym_DOT_DOT2, STATE(5663), 1, sym_comment, ACTIONS(2170), 2, anon_sym_RBRACK, anon_sym_RBRACE, - ACTIONS(9778), 2, + ACTIONS(9787), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, [196337] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9672), 1, + ACTIONS(9681), 1, anon_sym_LPAREN, - ACTIONS(9780), 1, + ACTIONS(9789), 1, anon_sym_DQUOTE2, STATE(5664), 1, sym_comment, @@ -402488,17 +402488,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__inter_double_quotes_repeat1, STATE(6518), 1, sym_expr_interpolated, - ACTIONS(9674), 2, + ACTIONS(9683), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, [196360] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3802), 1, + ACTIONS(3811), 1, sym__newline, - ACTIONS(9664), 1, + ACTIONS(9673), 1, anon_sym_LBRACK, - ACTIONS(9782), 1, + ACTIONS(9791), 1, anon_sym_RBRACK, STATE(5665), 1, sym_comment, @@ -402511,9 +402511,9 @@ static const uint16_t ts_small_parse_table[] = { [196385] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9672), 1, + ACTIONS(9681), 1, anon_sym_LPAREN, - ACTIONS(9784), 1, + ACTIONS(9793), 1, anon_sym_DQUOTE2, STATE(5666), 1, sym_comment, @@ -402521,17 +402521,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__inter_double_quotes_repeat1, STATE(6518), 1, sym_expr_interpolated, - ACTIONS(9674), 2, + ACTIONS(9683), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, [196408] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3802), 1, + ACTIONS(3811), 1, sym__newline, - ACTIONS(9664), 1, + ACTIONS(9673), 1, anon_sym_LBRACK, - ACTIONS(9786), 1, + ACTIONS(9795), 1, anon_sym_RBRACK, STATE(5667), 1, sym_comment, @@ -402544,11 +402544,11 @@ static const uint16_t ts_small_parse_table[] = { [196433] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3802), 1, + ACTIONS(3811), 1, sym__newline, - ACTIONS(9664), 1, + ACTIONS(9673), 1, anon_sym_LBRACK, - ACTIONS(9788), 1, + ACTIONS(9797), 1, anon_sym_RBRACK, STATE(5668), 1, sym_comment, @@ -402561,15 +402561,15 @@ static const uint16_t ts_small_parse_table[] = { [196458] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4801), 1, + ACTIONS(4810), 1, aux_sym_unquoted_token3, - ACTIONS(8345), 1, + ACTIONS(8354), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8897), 1, + ACTIONS(8906), 1, aux_sym__immediate_decimal_token3, - ACTIONS(8899), 1, + ACTIONS(8908), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8901), 1, + ACTIONS(8910), 1, aux_sym__immediate_decimal_token5, STATE(5669), 1, sym_comment, @@ -402578,11 +402578,11 @@ static const uint16_t ts_small_parse_table[] = { [196483] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7262), 1, + ACTIONS(7271), 1, anon_sym_RBRACK, - ACTIONS(7264), 1, + ACTIONS(7273), 1, sym__entry_separator, - ACTIONS(8758), 1, + ACTIONS(8767), 1, anon_sym_DOT2, STATE(5166), 1, aux_sym_cell_path_repeat1, @@ -402595,11 +402595,11 @@ static const uint16_t ts_small_parse_table[] = { [196508] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3802), 1, + ACTIONS(3811), 1, sym__newline, - ACTIONS(9664), 1, + ACTIONS(9673), 1, anon_sym_LBRACK, - ACTIONS(9790), 1, + ACTIONS(9799), 1, anon_sym_RBRACK, STATE(5671), 1, sym_comment, @@ -402612,15 +402612,15 @@ static const uint16_t ts_small_parse_table[] = { [196533] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4801), 1, + ACTIONS(4810), 1, aux_sym_unquoted_token3, - ACTIONS(8643), 1, + ACTIONS(8652), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8931), 1, + ACTIONS(8940), 1, aux_sym__immediate_decimal_token3, - ACTIONS(8933), 1, + ACTIONS(8942), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8935), 1, + ACTIONS(8944), 1, aux_sym__immediate_decimal_token5, STATE(5672), 1, sym_comment, @@ -402629,11 +402629,11 @@ static const uint16_t ts_small_parse_table[] = { [196558] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3802), 1, + ACTIONS(3811), 1, sym__newline, - ACTIONS(9664), 1, + ACTIONS(9673), 1, anon_sym_LBRACK, - ACTIONS(9792), 1, + ACTIONS(9801), 1, anon_sym_RBRACK, STATE(5673), 1, sym_comment, @@ -402646,26 +402646,26 @@ static const uint16_t ts_small_parse_table[] = { [196583] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4596), 1, + ACTIONS(4605), 1, anon_sym_DOT_DOT2, - ACTIONS(4801), 1, + ACTIONS(4810), 1, aux_sym_unquoted_token2, STATE(5674), 1, sym_comment, - ACTIONS(4598), 2, + ACTIONS(4607), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(9690), 2, + ACTIONS(9699), 2, sym_filesize_unit, sym_duration_unit, [196604] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3802), 1, + ACTIONS(3811), 1, sym__newline, - ACTIONS(9664), 1, + ACTIONS(9673), 1, anon_sym_LBRACK, - ACTIONS(9794), 1, + ACTIONS(9803), 1, anon_sym_RBRACK, STATE(5675), 1, sym_comment, @@ -402678,11 +402678,11 @@ static const uint16_t ts_small_parse_table[] = { [196629] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9796), 1, + ACTIONS(9805), 1, anon_sym_LT, STATE(5676), 1, sym_comment, - ACTIONS(7788), 5, + ACTIONS(7797), 5, anon_sym_EQ, anon_sym_DASH_GT, anon_sym_GT2, @@ -402691,11 +402691,11 @@ static const uint16_t ts_small_parse_table[] = { [196646] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3802), 1, + ACTIONS(3811), 1, sym__newline, - ACTIONS(9664), 1, + ACTIONS(9673), 1, anon_sym_LBRACK, - ACTIONS(9798), 1, + ACTIONS(9807), 1, anon_sym_RBRACK, STATE(5677), 1, sym_comment, @@ -402708,9 +402708,9 @@ static const uint16_t ts_small_parse_table[] = { [196671] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9672), 1, + ACTIONS(9681), 1, anon_sym_LPAREN, - ACTIONS(9800), 1, + ACTIONS(9809), 1, anon_sym_DQUOTE2, STATE(5678), 1, sym_comment, @@ -402718,17 +402718,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__inter_double_quotes_repeat1, STATE(6518), 1, sym_expr_interpolated, - ACTIONS(9674), 2, + ACTIONS(9683), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, [196694] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9802), 1, + ACTIONS(9811), 1, anon_sym_LT, STATE(5679), 1, sym_comment, - ACTIONS(7788), 5, + ACTIONS(7797), 5, anon_sym_EQ, anon_sym_DASH_GT, anon_sym_GT2, @@ -402737,11 +402737,11 @@ static const uint16_t ts_small_parse_table[] = { [196711] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3802), 1, + ACTIONS(3811), 1, sym__newline, - ACTIONS(9664), 1, + ACTIONS(9673), 1, anon_sym_LBRACK, - ACTIONS(9804), 1, + ACTIONS(9813), 1, anon_sym_RBRACK, STATE(5680), 1, sym_comment, @@ -402767,13 +402767,13 @@ static const uint16_t ts_small_parse_table[] = { [196753] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9612), 1, + ACTIONS(9621), 1, anon_sym_LBRACE, STATE(5682), 1, sym_comment, STATE(6619), 1, sym_val_record, - ACTIONS(9806), 4, + ACTIONS(9815), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, @@ -402797,30 +402797,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(1631), 1, aux_sym_unquoted_token2, - ACTIONS(8645), 1, + ACTIONS(8654), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8647), 1, + ACTIONS(8656), 1, aux_sym__immediate_decimal_token5, STATE(5684), 1, sym_comment, STATE(7429), 1, sym__immediate_decimal, - ACTIONS(8643), 2, + ACTIONS(8652), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, [196814] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9808), 1, + ACTIONS(9817), 1, anon_sym_EQ2, - ACTIONS(9810), 1, + ACTIONS(9819), 1, sym_short_flag_identifier, STATE(5685), 1, sym_comment, - ACTIONS(4869), 2, + ACTIONS(4878), 2, anon_sym_DOLLAR, anon_sym_LBRACE, - ACTIONS(4871), 2, + ACTIONS(4880), 2, anon_sym_DASH_DASH, anon_sym_DASH2, [196835] = 4, @@ -402839,11 +402839,11 @@ static const uint16_t ts_small_parse_table[] = { [196852] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3802), 1, + ACTIONS(3811), 1, sym__newline, - ACTIONS(9664), 1, + ACTIONS(9673), 1, anon_sym_LBRACK, - ACTIONS(9812), 1, + ACTIONS(9821), 1, anon_sym_RBRACK, STATE(5687), 1, sym_comment, @@ -402856,13 +402856,13 @@ static const uint16_t ts_small_parse_table[] = { [196877] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9814), 1, + ACTIONS(9823), 1, anon_sym_LPAREN, - ACTIONS(9820), 1, + ACTIONS(9829), 1, anon_sym_DQUOTE2, STATE(6518), 1, sym_expr_interpolated, - ACTIONS(9817), 2, + ACTIONS(9826), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, STATE(5688), 2, @@ -402924,13 +402924,13 @@ static const uint16_t ts_small_parse_table[] = { [196968] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9612), 1, + ACTIONS(9621), 1, anon_sym_LBRACE, STATE(5693), 1, sym_comment, STATE(6626), 1, sym_val_record, - ACTIONS(9822), 4, + ACTIONS(9831), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, @@ -402938,9 +402938,9 @@ static const uint16_t ts_small_parse_table[] = { [196987] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3802), 1, + ACTIONS(3811), 1, sym__newline, - ACTIONS(9702), 1, + ACTIONS(9711), 1, anon_sym_LBRACE, STATE(1706), 1, aux_sym_shebang_repeat1, @@ -402955,11 +402955,11 @@ static const uint16_t ts_small_parse_table[] = { [197012] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4989), 1, + ACTIONS(4998), 1, anon_sym_DASH2, STATE(5695), 1, sym_comment, - ACTIONS(4987), 5, + ACTIONS(4996), 5, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -402981,11 +402981,11 @@ static const uint16_t ts_small_parse_table[] = { [197046] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7266), 1, + ACTIONS(7275), 1, anon_sym_RBRACK, - ACTIONS(7268), 1, + ACTIONS(7277), 1, sym__entry_separator, - ACTIONS(8758), 1, + ACTIONS(8767), 1, anon_sym_DOT2, STATE(5166), 1, aux_sym_cell_path_repeat1, @@ -403011,11 +403011,11 @@ static const uint16_t ts_small_parse_table[] = { [197088] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3422), 1, + ACTIONS(3431), 1, anon_sym_COLON2, - ACTIONS(8667), 1, + ACTIONS(8676), 1, sym_identifier, - ACTIONS(9694), 1, + ACTIONS(9703), 1, anon_sym_DOLLAR, STATE(5492), 1, sym_val_variable, @@ -403028,11 +403028,11 @@ static const uint16_t ts_small_parse_table[] = { [197113] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3422), 1, + ACTIONS(3431), 1, anon_sym_COLON2, - ACTIONS(8667), 1, + ACTIONS(8676), 1, sym_identifier, - ACTIONS(9694), 1, + ACTIONS(9703), 1, anon_sym_DOLLAR, STATE(5492), 1, sym_val_variable, @@ -403045,11 +403045,11 @@ static const uint16_t ts_small_parse_table[] = { [197138] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3422), 1, + ACTIONS(3431), 1, anon_sym_COLON2, - ACTIONS(8667), 1, + ACTIONS(8676), 1, sym_identifier, - ACTIONS(9694), 1, + ACTIONS(9703), 1, anon_sym_DOLLAR, STATE(5492), 1, sym_val_variable, @@ -403062,11 +403062,11 @@ static const uint16_t ts_small_parse_table[] = { [197163] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9732), 1, + ACTIONS(9741), 1, sym__newline, - ACTIONS(9734), 1, + ACTIONS(9743), 1, anon_sym_SEMI, - ACTIONS(9824), 1, + ACTIONS(9833), 1, anon_sym_RPAREN, STATE(288), 1, aux_sym__parenthesized_body_repeat1, @@ -403079,11 +403079,11 @@ static const uint16_t ts_small_parse_table[] = { [197188] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3802), 1, + ACTIONS(3811), 1, sym__newline, - ACTIONS(9664), 1, + ACTIONS(9673), 1, anon_sym_LBRACK, - ACTIONS(9826), 1, + ACTIONS(9835), 1, anon_sym_RBRACK, STATE(5703), 1, sym_comment, @@ -403096,9 +403096,9 @@ static const uint16_t ts_small_parse_table[] = { [197213] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9672), 1, + ACTIONS(9681), 1, anon_sym_LPAREN, - ACTIONS(9828), 1, + ACTIONS(9837), 1, anon_sym_DQUOTE2, STATE(5704), 1, sym_comment, @@ -403106,17 +403106,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__inter_double_quotes_repeat1, STATE(6518), 1, sym_expr_interpolated, - ACTIONS(9674), 2, + ACTIONS(9683), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, [197236] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3802), 1, + ACTIONS(3811), 1, sym__newline, - ACTIONS(9664), 1, + ACTIONS(9673), 1, anon_sym_LBRACK, - ACTIONS(9830), 1, + ACTIONS(9839), 1, anon_sym_RBRACK, STATE(5705), 1, sym_comment, @@ -403129,11 +403129,11 @@ static const uint16_t ts_small_parse_table[] = { [197261] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3802), 1, + ACTIONS(3811), 1, sym__newline, - ACTIONS(9664), 1, + ACTIONS(9673), 1, anon_sym_LBRACK, - ACTIONS(9832), 1, + ACTIONS(9841), 1, anon_sym_RBRACK, STATE(5706), 1, sym_comment, @@ -403146,9 +403146,9 @@ static const uint16_t ts_small_parse_table[] = { [197286] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3802), 1, + ACTIONS(3811), 1, sym__newline, - ACTIONS(9702), 1, + ACTIONS(9711), 1, anon_sym_LBRACE, STATE(4611), 1, sym_val_closure, @@ -403176,11 +403176,11 @@ static const uint16_t ts_small_parse_table[] = { [197328] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5014), 1, + ACTIONS(5023), 1, anon_sym_DASH2, STATE(5709), 1, sym_comment, - ACTIONS(5012), 5, + ACTIONS(5021), 5, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -403189,15 +403189,15 @@ static const uint16_t ts_small_parse_table[] = { [197345] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4904), 1, + ACTIONS(4913), 1, aux_sym_unquoted_token3, - ACTIONS(8345), 1, + ACTIONS(8354), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8897), 1, + ACTIONS(8906), 1, aux_sym__immediate_decimal_token3, - ACTIONS(8899), 1, + ACTIONS(8908), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8901), 1, + ACTIONS(8910), 1, aux_sym__immediate_decimal_token5, STATE(5710), 1, sym_comment, @@ -403206,15 +403206,15 @@ static const uint16_t ts_small_parse_table[] = { [197370] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4904), 1, + ACTIONS(4913), 1, aux_sym_unquoted_token3, - ACTIONS(8643), 1, + ACTIONS(8652), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8931), 1, + ACTIONS(8940), 1, aux_sym__immediate_decimal_token3, - ACTIONS(8933), 1, + ACTIONS(8942), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8935), 1, + ACTIONS(8944), 1, aux_sym__immediate_decimal_token5, STATE(5711), 1, sym_comment, @@ -403223,9 +403223,9 @@ static const uint16_t ts_small_parse_table[] = { [197395] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9834), 1, + ACTIONS(9843), 1, anon_sym_DOT, - ACTIONS(9836), 1, + ACTIONS(9845), 1, aux_sym__immediate_decimal_token2, STATE(5712), 1, sym_comment, @@ -403250,16 +403250,16 @@ static const uint16_t ts_small_parse_table[] = { [197431] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4596), 1, + ACTIONS(4605), 1, anon_sym_DOT_DOT2, - ACTIONS(4904), 1, + ACTIONS(4913), 1, aux_sym_unquoted_token2, STATE(5714), 1, sym_comment, - ACTIONS(4598), 2, + ACTIONS(4607), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(9690), 2, + ACTIONS(9699), 2, sym_filesize_unit, sym_duration_unit, [197452] = 4, @@ -403291,9 +403291,9 @@ static const uint16_t ts_small_parse_table[] = { [197486] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3802), 1, + ACTIONS(3811), 1, sym__newline, - ACTIONS(9702), 1, + ACTIONS(9711), 1, anon_sym_LBRACE, STATE(4611), 1, sym_val_closure, @@ -403321,11 +403321,11 @@ static const uint16_t ts_small_parse_table[] = { [197528] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5044), 1, + ACTIONS(5053), 1, anon_sym_DASH2, STATE(5719), 1, sym_comment, - ACTIONS(5042), 5, + ACTIONS(5051), 5, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -403336,23 +403336,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(1555), 1, aux_sym_unquoted_token2, - ACTIONS(8645), 1, + ACTIONS(8654), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8647), 1, + ACTIONS(8656), 1, aux_sym__immediate_decimal_token5, STATE(5720), 1, sym_comment, STATE(7546), 1, sym__immediate_decimal, - ACTIONS(8643), 2, + ACTIONS(8652), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, [197568] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9672), 1, + ACTIONS(9681), 1, anon_sym_LPAREN, - ACTIONS(9838), 1, + ACTIONS(9847), 1, anon_sym_DQUOTE2, STATE(5721), 1, sym_comment, @@ -403360,7 +403360,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__inter_double_quotes_repeat1, STATE(6518), 1, sym_expr_interpolated, - ACTIONS(9674), 2, + ACTIONS(9683), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, [197591] = 8, @@ -403368,9 +403368,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(583), 1, anon_sym_RPAREN, - ACTIONS(9732), 1, + ACTIONS(9741), 1, sym__newline, - ACTIONS(9734), 1, + ACTIONS(9743), 1, anon_sym_SEMI, STATE(288), 1, aux_sym__parenthesized_body_repeat1, @@ -403383,15 +403383,15 @@ static const uint16_t ts_small_parse_table[] = { [197616] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5577), 1, + ACTIONS(5586), 1, aux_sym_unquoted_token3, - ACTIONS(8345), 1, + ACTIONS(8354), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8897), 1, + ACTIONS(8906), 1, aux_sym__immediate_decimal_token3, - ACTIONS(8899), 1, + ACTIONS(8908), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8901), 1, + ACTIONS(8910), 1, aux_sym__immediate_decimal_token5, STATE(5723), 1, sym_comment, @@ -403400,15 +403400,15 @@ static const uint16_t ts_small_parse_table[] = { [197641] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5577), 1, + ACTIONS(5586), 1, aux_sym_unquoted_token3, - ACTIONS(8643), 1, + ACTIONS(8652), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8931), 1, + ACTIONS(8940), 1, aux_sym__immediate_decimal_token3, - ACTIONS(8933), 1, + ACTIONS(8942), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8935), 1, + ACTIONS(8944), 1, aux_sym__immediate_decimal_token5, STATE(5724), 1, sym_comment, @@ -403417,26 +403417,26 @@ static const uint16_t ts_small_parse_table[] = { [197666] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9840), 1, + ACTIONS(9849), 1, anon_sym_alias, - ACTIONS(9842), 1, + ACTIONS(9851), 1, anon_sym_const, - ACTIONS(9844), 1, + ACTIONS(9853), 1, anon_sym_def, - ACTIONS(9846), 1, + ACTIONS(9855), 1, anon_sym_extern, - ACTIONS(9848), 1, + ACTIONS(9857), 1, anon_sym_module, - ACTIONS(9850), 1, + ACTIONS(9859), 1, anon_sym_use, STATE(5725), 1, sym_comment, [197691] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9672), 1, + ACTIONS(9681), 1, anon_sym_LPAREN, - ACTIONS(9852), 1, + ACTIONS(9861), 1, anon_sym_DQUOTE2, STATE(5688), 1, aux_sym__inter_double_quotes_repeat1, @@ -403444,15 +403444,15 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(6518), 1, sym_expr_interpolated, - ACTIONS(9674), 2, + ACTIONS(9683), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, [197714] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9672), 1, + ACTIONS(9681), 1, anon_sym_LPAREN, - ACTIONS(9854), 1, + ACTIONS(9863), 1, anon_sym_DQUOTE2, STATE(5688), 1, aux_sym__inter_double_quotes_repeat1, @@ -403460,17 +403460,17 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(6518), 1, sym_expr_interpolated, - ACTIONS(9674), 2, + ACTIONS(9683), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, [197737] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3802), 1, + ACTIONS(3811), 1, sym__newline, - ACTIONS(9664), 1, + ACTIONS(9673), 1, anon_sym_LBRACK, - ACTIONS(9856), 1, + ACTIONS(9865), 1, anon_sym_RBRACK, STATE(5728), 1, sym_comment, @@ -403509,11 +403509,11 @@ static const uint16_t ts_small_parse_table[] = { [197796] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5048), 1, + ACTIONS(5057), 1, anon_sym_DASH2, STATE(5731), 1, sym_comment, - ACTIONS(5046), 5, + ACTIONS(5055), 5, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -403535,13 +403535,13 @@ static const uint16_t ts_small_parse_table[] = { [197830] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6235), 1, + ACTIONS(6244), 1, anon_sym_LBRACE, STATE(5733), 1, sym_comment, STATE(6574), 1, sym_block, - ACTIONS(9858), 4, + ACTIONS(9867), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, @@ -403549,11 +403549,11 @@ static const uint16_t ts_small_parse_table[] = { [197849] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3802), 1, + ACTIONS(3811), 1, sym__newline, - ACTIONS(9664), 1, + ACTIONS(9673), 1, anon_sym_LBRACK, - ACTIONS(9860), 1, + ACTIONS(9869), 1, anon_sym_RBRACK, STATE(5734), 1, sym_comment, @@ -403566,28 +403566,28 @@ static const uint16_t ts_small_parse_table[] = { [197874] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9584), 1, + ACTIONS(9593), 1, anon_sym_def, - ACTIONS(9586), 1, + ACTIONS(9595), 1, anon_sym_extern, - ACTIONS(9588), 1, + ACTIONS(9597), 1, anon_sym_module, - ACTIONS(9590), 1, + ACTIONS(9599), 1, anon_sym_use, - ACTIONS(9862), 1, + ACTIONS(9871), 1, anon_sym_alias, - ACTIONS(9864), 1, + ACTIONS(9873), 1, anon_sym_const, STATE(5735), 1, sym_comment, [197899] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9866), 1, + ACTIONS(9875), 1, anon_sym_DOT_DOT2, STATE(5736), 1, sym_comment, - ACTIONS(9868), 2, + ACTIONS(9877), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, ACTIONS(2176), 3, @@ -403610,11 +403610,11 @@ static const uint16_t ts_small_parse_table[] = { [197935] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9870), 1, + ACTIONS(9879), 1, anon_sym_DOT_DOT2, STATE(5738), 1, sym_comment, - ACTIONS(9872), 2, + ACTIONS(9881), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, ACTIONS(2150), 3, @@ -403624,11 +403624,11 @@ static const uint16_t ts_small_parse_table[] = { [197954] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9874), 1, + ACTIONS(9883), 1, anon_sym_DOT_DOT2, STATE(5739), 1, sym_comment, - ACTIONS(9876), 2, + ACTIONS(9885), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, ACTIONS(2158), 3, @@ -403638,11 +403638,11 @@ static const uint16_t ts_small_parse_table[] = { [197973] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9878), 1, + ACTIONS(9887), 1, anon_sym_DOT_DOT2, STATE(5740), 1, sym_comment, - ACTIONS(9880), 2, + ACTIONS(9889), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, ACTIONS(2166), 3, @@ -403652,11 +403652,11 @@ static const uint16_t ts_small_parse_table[] = { [197992] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3802), 1, + ACTIONS(3811), 1, sym__newline, - ACTIONS(9664), 1, + ACTIONS(9673), 1, anon_sym_LBRACK, - ACTIONS(9882), 1, + ACTIONS(9891), 1, anon_sym_RBRACK, STATE(5741), 1, sym_comment, @@ -403669,7 +403669,7 @@ static const uint16_t ts_small_parse_table[] = { [198017] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5718), 1, + ACTIONS(5727), 1, anon_sym_DOT2, STATE(5742), 1, sym_comment, @@ -403710,9 +403710,9 @@ static const uint16_t ts_small_parse_table[] = { [198072] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9672), 1, + ACTIONS(9681), 1, anon_sym_LPAREN, - ACTIONS(9884), 1, + ACTIONS(9893), 1, anon_sym_DQUOTE2, STATE(5585), 1, aux_sym__inter_double_quotes_repeat1, @@ -403720,15 +403720,15 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(6518), 1, sym_expr_interpolated, - ACTIONS(9674), 2, + ACTIONS(9683), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, [198095] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9672), 1, + ACTIONS(9681), 1, anon_sym_LPAREN, - ACTIONS(9886), 1, + ACTIONS(9895), 1, anon_sym_DQUOTE2, STATE(5746), 1, sym_comment, @@ -403736,19 +403736,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__inter_double_quotes_repeat1, STATE(6518), 1, sym_expr_interpolated, - ACTIONS(9674), 2, + ACTIONS(9683), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, [198118] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6235), 1, + ACTIONS(6244), 1, anon_sym_LBRACE, STATE(5747), 1, sym_comment, STATE(6182), 1, sym_block, - ACTIONS(9888), 4, + ACTIONS(9897), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, @@ -403756,13 +403756,13 @@ static const uint16_t ts_small_parse_table[] = { [198137] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6235), 1, + ACTIONS(6244), 1, anon_sym_LBRACE, STATE(5748), 1, sym_comment, STATE(6183), 1, sym_block, - ACTIONS(9888), 4, + ACTIONS(9897), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, @@ -403770,15 +403770,15 @@ static const uint16_t ts_small_parse_table[] = { [198156] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8345), 1, + ACTIONS(8354), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8719), 1, + ACTIONS(8728), 1, aux_sym_unquoted_token3, - ACTIONS(8897), 1, + ACTIONS(8906), 1, aux_sym__immediate_decimal_token3, - ACTIONS(8899), 1, + ACTIONS(8908), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8901), 1, + ACTIONS(8910), 1, aux_sym__immediate_decimal_token5, STATE(5749), 1, sym_comment, @@ -403789,28 +403789,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(2166), 1, sym__entry_separator, - ACTIONS(9890), 1, + ACTIONS(9899), 1, anon_sym_DOT_DOT2, STATE(5750), 1, sym_comment, ACTIONS(2160), 2, anon_sym_RBRACK, anon_sym_RBRACE, - ACTIONS(9892), 2, + ACTIONS(9901), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, [198202] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8643), 1, + ACTIONS(8652), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8719), 1, + ACTIONS(8728), 1, aux_sym_unquoted_token3, - ACTIONS(8931), 1, + ACTIONS(8940), 1, aux_sym__immediate_decimal_token3, - ACTIONS(8933), 1, + ACTIONS(8942), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8935), 1, + ACTIONS(8944), 1, aux_sym__immediate_decimal_token5, STATE(5751), 1, sym_comment, @@ -403819,9 +403819,9 @@ static const uint16_t ts_small_parse_table[] = { [198227] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9672), 1, + ACTIONS(9681), 1, anon_sym_LPAREN, - ACTIONS(9894), 1, + ACTIONS(9903), 1, anon_sym_DQUOTE2, STATE(5688), 1, aux_sym__inter_double_quotes_repeat1, @@ -403829,17 +403829,17 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(6518), 1, sym_expr_interpolated, - ACTIONS(9674), 2, + ACTIONS(9683), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, [198250] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3424), 1, + ACTIONS(3433), 1, anon_sym_COLON2, - ACTIONS(8667), 1, + ACTIONS(8676), 1, sym_identifier, - ACTIONS(9694), 1, + ACTIONS(9703), 1, anon_sym_DOLLAR, STATE(5492), 1, sym_val_variable, @@ -403854,24 +403854,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(1555), 1, aux_sym_unquoted_token2, - ACTIONS(9896), 1, + ACTIONS(9905), 1, anon_sym_DOT_DOT2, STATE(5754), 1, sym_comment, ACTIONS(1794), 2, anon_sym_PIPE, anon_sym_EQ_GT, - ACTIONS(9898), 2, + ACTIONS(9907), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, [198296] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3802), 1, + ACTIONS(3811), 1, sym__newline, - ACTIONS(9664), 1, + ACTIONS(9673), 1, anon_sym_LBRACK, - ACTIONS(9900), 1, + ACTIONS(9909), 1, anon_sym_RBRACK, STATE(5755), 1, sym_comment, @@ -403949,11 +403949,11 @@ static const uint16_t ts_small_parse_table[] = { [198406] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3802), 1, + ACTIONS(3811), 1, sym__newline, - ACTIONS(9664), 1, + ACTIONS(9673), 1, anon_sym_LBRACK, - ACTIONS(9902), 1, + ACTIONS(9911), 1, anon_sym_RBRACK, STATE(5761), 1, sym_comment, @@ -403979,9 +403979,9 @@ static const uint16_t ts_small_parse_table[] = { [198448] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9904), 1, + ACTIONS(9913), 1, aux_sym__immediate_decimal_token1, - ACTIONS(9906), 1, + ACTIONS(9915), 1, aux_sym__immediate_decimal_token2, STATE(5763), 1, sym_comment, @@ -403996,37 +403996,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(2158), 1, sym__entry_separator, - ACTIONS(9908), 1, + ACTIONS(9917), 1, anon_sym_DOT_DOT2, STATE(5764), 1, sym_comment, ACTIONS(2152), 2, anon_sym_RBRACK, anon_sym_RBRACE, - ACTIONS(9910), 2, + ACTIONS(9919), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, [198490] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4881), 1, + ACTIONS(4890), 1, anon_sym_DASH2, - ACTIONS(9912), 1, + ACTIONS(9921), 1, sym_long_flag_identifier, - ACTIONS(9914), 1, + ACTIONS(9923), 1, anon_sym_EQ2, STATE(5765), 1, sym_comment, - ACTIONS(4879), 3, + ACTIONS(4888), 3, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_LBRACE, [198511] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9672), 1, + ACTIONS(9681), 1, anon_sym_LPAREN, - ACTIONS(9916), 1, + ACTIONS(9925), 1, anon_sym_DQUOTE2, STATE(5766), 1, sym_comment, @@ -404034,19 +404034,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__inter_double_quotes_repeat1, STATE(6518), 1, sym_expr_interpolated, - ACTIONS(9674), 2, + ACTIONS(9683), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, [198534] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6235), 1, + ACTIONS(6244), 1, anon_sym_LBRACE, STATE(5767), 1, sym_comment, STATE(6493), 1, sym_block, - ACTIONS(9918), 4, + ACTIONS(9927), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, @@ -404054,13 +404054,13 @@ static const uint16_t ts_small_parse_table[] = { [198553] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6235), 1, + ACTIONS(6244), 1, anon_sym_LBRACE, STATE(5768), 1, sym_comment, STATE(6494), 1, sym_block, - ACTIONS(9918), 4, + ACTIONS(9927), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, @@ -404081,7 +404081,7 @@ static const uint16_t ts_small_parse_table[] = { [198589] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9920), 1, + ACTIONS(9929), 1, anon_sym_DOT2, STATE(6483), 1, sym_path, @@ -404095,15 +404095,15 @@ static const uint16_t ts_small_parse_table[] = { [198608] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4631), 1, + ACTIONS(4640), 1, aux_sym_unquoted_token3, - ACTIONS(8345), 1, + ACTIONS(8354), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8897), 1, + ACTIONS(8906), 1, aux_sym__immediate_decimal_token3, - ACTIONS(8899), 1, + ACTIONS(8908), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8901), 1, + ACTIONS(8910), 1, aux_sym__immediate_decimal_token5, STATE(5771), 1, sym_comment, @@ -404112,15 +404112,15 @@ static const uint16_t ts_small_parse_table[] = { [198633] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4631), 1, + ACTIONS(4640), 1, aux_sym_unquoted_token3, - ACTIONS(8643), 1, + ACTIONS(8652), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8931), 1, + ACTIONS(8940), 1, aux_sym__immediate_decimal_token3, - ACTIONS(8933), 1, + ACTIONS(8942), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8935), 1, + ACTIONS(8944), 1, aux_sym__immediate_decimal_token5, STATE(5772), 1, sym_comment, @@ -404129,11 +404129,11 @@ static const uint16_t ts_small_parse_table[] = { [198658] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5020), 1, + ACTIONS(5029), 1, anon_sym_DASH2, STATE(5773), 1, sym_comment, - ACTIONS(5018), 5, + ACTIONS(5027), 5, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -404142,11 +404142,11 @@ static const uint16_t ts_small_parse_table[] = { [198675] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3802), 1, + ACTIONS(3811), 1, sym__newline, - ACTIONS(9664), 1, + ACTIONS(9673), 1, anon_sym_LBRACK, - ACTIONS(9923), 1, + ACTIONS(9932), 1, anon_sym_RBRACK, STATE(5774), 1, sym_comment, @@ -404185,11 +404185,11 @@ static const uint16_t ts_small_parse_table[] = { [198734] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5024), 1, + ACTIONS(5033), 1, anon_sym_DASH2, STATE(5777), 1, sym_comment, - ACTIONS(5022), 5, + ACTIONS(5031), 5, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -404200,9 +404200,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(1725), 1, aux_sym_unquoted_token2, - ACTIONS(9925), 1, + ACTIONS(9934), 1, anon_sym_DOT, - ACTIONS(9927), 1, + ACTIONS(9936), 1, aux_sym__immediate_decimal_token2, STATE(5778), 1, sym_comment, @@ -404213,9 +404213,9 @@ static const uint16_t ts_small_parse_table[] = { [198772] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9672), 1, + ACTIONS(9681), 1, anon_sym_LPAREN, - ACTIONS(9929), 1, + ACTIONS(9938), 1, anon_sym_DQUOTE2, STATE(5688), 1, aux_sym__inter_double_quotes_repeat1, @@ -404223,19 +404223,19 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(6518), 1, sym_expr_interpolated, - ACTIONS(9674), 2, + ACTIONS(9683), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, [198795] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6235), 1, + ACTIONS(6244), 1, anon_sym_LBRACE, STATE(5780), 1, sym_comment, STATE(6496), 1, sym_block, - ACTIONS(9931), 4, + ACTIONS(9940), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, @@ -404243,9 +404243,9 @@ static const uint16_t ts_small_parse_table[] = { [198814] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9672), 1, + ACTIONS(9681), 1, anon_sym_LPAREN, - ACTIONS(9933), 1, + ACTIONS(9942), 1, anon_sym_DQUOTE2, STATE(5688), 1, aux_sym__inter_double_quotes_repeat1, @@ -404253,17 +404253,17 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(6518), 1, sym_expr_interpolated, - ACTIONS(9674), 2, + ACTIONS(9683), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, [198837] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3802), 1, + ACTIONS(3811), 1, sym__newline, - ACTIONS(9664), 1, + ACTIONS(9673), 1, anon_sym_LBRACK, - ACTIONS(9935), 1, + ACTIONS(9944), 1, anon_sym_RBRACK, STATE(5782), 1, sym_comment, @@ -404276,15 +404276,15 @@ static const uint16_t ts_small_parse_table[] = { [198862] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8345), 1, + ACTIONS(8354), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8897), 1, + ACTIONS(8906), 1, aux_sym__immediate_decimal_token3, - ACTIONS(8899), 1, + ACTIONS(8908), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8901), 1, + ACTIONS(8910), 1, aux_sym__immediate_decimal_token5, - ACTIONS(9937), 1, + ACTIONS(9946), 1, aux_sym_unquoted_token3, STATE(5783), 1, sym_comment, @@ -404295,28 +404295,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(1000), 1, sym__entry_separator, - ACTIONS(9939), 1, + ACTIONS(9948), 1, anon_sym_DOT_DOT2, STATE(5784), 1, sym_comment, ACTIONS(1004), 2, anon_sym_RBRACK, anon_sym_RBRACE, - ACTIONS(9941), 2, + ACTIONS(9950), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, [198908] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8643), 1, + ACTIONS(8652), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8931), 1, + ACTIONS(8940), 1, aux_sym__immediate_decimal_token3, - ACTIONS(8933), 1, + ACTIONS(8942), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8935), 1, + ACTIONS(8944), 1, aux_sym__immediate_decimal_token5, - ACTIONS(9937), 1, + ACTIONS(9946), 1, aux_sym_unquoted_token3, STATE(5785), 1, sym_comment, @@ -404325,16 +404325,16 @@ static const uint16_t ts_small_parse_table[] = { [198933] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4596), 1, + ACTIONS(4605), 1, anon_sym_DOT_DOT2, - ACTIONS(9937), 1, + ACTIONS(9946), 1, aux_sym_unquoted_token2, STATE(5786), 1, sym_comment, - ACTIONS(4598), 2, + ACTIONS(4607), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(9690), 2, + ACTIONS(9699), 2, sym_filesize_unit, sym_duration_unit, [198954] = 4, @@ -404353,11 +404353,11 @@ static const uint16_t ts_small_parse_table[] = { [198971] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3802), 1, + ACTIONS(3811), 1, sym__newline, - ACTIONS(9664), 1, + ACTIONS(9673), 1, anon_sym_LBRACK, - ACTIONS(9943), 1, + ACTIONS(9952), 1, anon_sym_RBRACK, STATE(5788), 1, sym_comment, @@ -404370,17 +404370,17 @@ static const uint16_t ts_small_parse_table[] = { [198996] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9584), 1, + ACTIONS(9593), 1, anon_sym_def, - ACTIONS(9586), 1, + ACTIONS(9595), 1, anon_sym_extern, - ACTIONS(9588), 1, + ACTIONS(9597), 1, anon_sym_module, - ACTIONS(9590), 1, + ACTIONS(9599), 1, anon_sym_use, - ACTIONS(9945), 1, + ACTIONS(9954), 1, anon_sym_alias, - ACTIONS(9947), 1, + ACTIONS(9956), 1, anon_sym_const, STATE(5789), 1, sym_comment, @@ -404400,28 +404400,28 @@ static const uint16_t ts_small_parse_table[] = { [199038] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9584), 1, + ACTIONS(9593), 1, anon_sym_def, - ACTIONS(9586), 1, + ACTIONS(9595), 1, anon_sym_extern, - ACTIONS(9588), 1, + ACTIONS(9597), 1, anon_sym_module, - ACTIONS(9590), 1, + ACTIONS(9599), 1, anon_sym_use, - ACTIONS(9949), 1, + ACTIONS(9958), 1, anon_sym_alias, - ACTIONS(9951), 1, + ACTIONS(9960), 1, anon_sym_const, STATE(5791), 1, sym_comment, [199063] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5056), 1, + ACTIONS(5065), 1, anon_sym_DASH2, STATE(5792), 1, sym_comment, - ACTIONS(5054), 5, + ACTIONS(5063), 5, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -404443,11 +404443,11 @@ static const uint16_t ts_small_parse_table[] = { [199097] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6237), 1, + ACTIONS(6246), 1, sym__entry_separator, - ACTIONS(8758), 1, + ACTIONS(8767), 1, anon_sym_DOT2, - ACTIONS(9953), 1, + ACTIONS(9962), 1, anon_sym_RBRACE, STATE(5166), 1, aux_sym_cell_path_repeat1, @@ -404464,7 +404464,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, ACTIONS(2015), 1, sym__entry_separator, - ACTIONS(8758), 1, + ACTIONS(8767), 1, anon_sym_DOT2, STATE(5166), 1, aux_sym_cell_path_repeat1, @@ -404494,7 +404494,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, ACTIONS(1896), 1, sym__entry_separator, - ACTIONS(8758), 1, + ACTIONS(8767), 1, anon_sym_DOT2, STATE(5166), 1, aux_sym_cell_path_repeat1, @@ -404507,9 +404507,9 @@ static const uint16_t ts_small_parse_table[] = { [199189] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9672), 1, + ACTIONS(9681), 1, anon_sym_LPAREN, - ACTIONS(9956), 1, + ACTIONS(9965), 1, anon_sym_DQUOTE2, STATE(5798), 1, sym_comment, @@ -404517,17 +404517,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__inter_double_quotes_repeat1, STATE(6518), 1, sym_expr_interpolated, - ACTIONS(9674), 2, + ACTIONS(9683), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, [199212] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5030), 1, + ACTIONS(5039), 1, anon_sym_DASH2, STATE(5799), 1, sym_comment, - ACTIONS(5028), 5, + ACTIONS(5037), 5, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -404536,11 +404536,11 @@ static const uint16_t ts_small_parse_table[] = { [199229] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5034), 1, + ACTIONS(5043), 1, anon_sym_DASH2, STATE(5800), 1, sym_comment, - ACTIONS(5032), 5, + ACTIONS(5041), 5, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -404549,15 +404549,15 @@ static const uint16_t ts_small_parse_table[] = { [199246] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7130), 1, + ACTIONS(7139), 1, aux_sym_unquoted_token3, - ACTIONS(8345), 1, + ACTIONS(8354), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8897), 1, + ACTIONS(8906), 1, aux_sym__immediate_decimal_token3, - ACTIONS(8899), 1, + ACTIONS(8908), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8901), 1, + ACTIONS(8910), 1, aux_sym__immediate_decimal_token5, STATE(5801), 1, sym_comment, @@ -404579,15 +404579,15 @@ static const uint16_t ts_small_parse_table[] = { [199288] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7130), 1, + ACTIONS(7139), 1, aux_sym_unquoted_token3, - ACTIONS(8643), 1, + ACTIONS(8652), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8931), 1, + ACTIONS(8940), 1, aux_sym__immediate_decimal_token3, - ACTIONS(8933), 1, + ACTIONS(8942), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8935), 1, + ACTIONS(8944), 1, aux_sym__immediate_decimal_token5, STATE(5803), 1, sym_comment, @@ -404596,9 +404596,9 @@ static const uint16_t ts_small_parse_table[] = { [199313] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9672), 1, + ACTIONS(9681), 1, anon_sym_LPAREN, - ACTIONS(9958), 1, + ACTIONS(9967), 1, anon_sym_DQUOTE2, STATE(5688), 1, aux_sym__inter_double_quotes_repeat1, @@ -404606,23 +404606,23 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(6518), 1, sym_expr_interpolated, - ACTIONS(9674), 2, + ACTIONS(9683), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, [199336] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9584), 1, + ACTIONS(9593), 1, anon_sym_def, - ACTIONS(9586), 1, + ACTIONS(9595), 1, anon_sym_extern, - ACTIONS(9588), 1, + ACTIONS(9597), 1, anon_sym_module, - ACTIONS(9590), 1, + ACTIONS(9599), 1, anon_sym_use, - ACTIONS(9960), 1, + ACTIONS(9969), 1, anon_sym_alias, - ACTIONS(9962), 1, + ACTIONS(9971), 1, anon_sym_const, STATE(5805), 1, sym_comment, @@ -404655,9 +404655,9 @@ static const uint16_t ts_small_parse_table[] = { [199395] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3802), 1, + ACTIONS(3811), 1, sym__newline, - ACTIONS(9664), 1, + ACTIONS(9673), 1, anon_sym_LBRACK, STATE(1706), 1, aux_sym_shebang_repeat1, @@ -404681,9 +404681,9 @@ static const uint16_t ts_small_parse_table[] = { [199431] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3802), 1, + ACTIONS(3811), 1, sym__newline, - ACTIONS(9664), 1, + ACTIONS(9673), 1, anon_sym_LBRACK, STATE(1706), 1, aux_sym_shebang_repeat1, @@ -404698,7 +404698,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(5811), 1, sym_comment, - ACTIONS(8219), 5, + ACTIONS(8228), 5, anon_sym_EQ, anon_sym_DASH_GT, anon_sym_GT2, @@ -404709,7 +404709,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(5812), 1, sym_comment, - ACTIONS(8223), 5, + ACTIONS(8232), 5, anon_sym_EQ, anon_sym_DASH_GT, anon_sym_GT2, @@ -404720,7 +404720,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(5813), 1, sym_comment, - ACTIONS(8227), 5, + ACTIONS(8236), 5, anon_sym_EQ, anon_sym_DASH_GT, anon_sym_GT2, @@ -404729,11 +404729,11 @@ static const uint16_t ts_small_parse_table[] = { [199495] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5060), 1, + ACTIONS(5069), 1, anon_sym_DASH2, STATE(5814), 1, sym_comment, - ACTIONS(5058), 4, + ACTIONS(5067), 4, sym_identifier, anon_sym_DOLLAR, anon_sym_DASH_DASH, @@ -404743,7 +404743,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(5815), 1, sym_comment, - ACTIONS(8231), 5, + ACTIONS(8240), 5, anon_sym_EQ, anon_sym_DASH_GT, anon_sym_GT2, @@ -404754,7 +404754,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(5816), 1, sym_comment, - ACTIONS(8235), 5, + ACTIONS(8244), 5, anon_sym_EQ, anon_sym_DASH_GT, anon_sym_GT2, @@ -404763,7 +404763,7 @@ static const uint16_t ts_small_parse_table[] = { [199539] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9836), 1, + ACTIONS(9845), 1, aux_sym__immediate_decimal_token2, STATE(5817), 1, sym_comment, @@ -404776,9 +404776,9 @@ static const uint16_t ts_small_parse_table[] = { [199557] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8667), 1, + ACTIONS(8676), 1, sym_identifier, - ACTIONS(9694), 1, + ACTIONS(9703), 1, anon_sym_DOLLAR, STATE(5492), 1, sym_val_variable, @@ -404793,7 +404793,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(5819), 1, sym_comment, - ACTIONS(8239), 5, + ACTIONS(8248), 5, anon_sym_EQ, anon_sym_DASH_GT, anon_sym_GT2, @@ -404804,7 +404804,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(5820), 1, sym_comment, - ACTIONS(8243), 5, + ACTIONS(8252), 5, anon_sym_EQ, anon_sym_DASH_GT, anon_sym_GT2, @@ -404815,7 +404815,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(5821), 1, sym_comment, - ACTIONS(8247), 5, + ACTIONS(8256), 5, anon_sym_EQ, anon_sym_DASH_GT, anon_sym_GT2, @@ -404824,11 +404824,11 @@ static const uint16_t ts_small_parse_table[] = { [199621] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9156), 1, + ACTIONS(9165), 1, sym__entry_separator, - ACTIONS(9964), 1, + ACTIONS(9973), 1, anon_sym_GT2, - ACTIONS(9966), 1, + ACTIONS(9975), 1, anon_sym_AT, STATE(5321), 1, aux_sym__multiple_types_repeat1, @@ -404839,11 +404839,11 @@ static const uint16_t ts_small_parse_table[] = { [199643] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9156), 1, + ACTIONS(9165), 1, sym__entry_separator, - ACTIONS(9966), 1, + ACTIONS(9975), 1, anon_sym_AT, - ACTIONS(9968), 1, + ACTIONS(9977), 1, anon_sym_GT2, STATE(5322), 1, aux_sym__multiple_types_repeat1, @@ -404854,9 +404854,9 @@ static const uint16_t ts_small_parse_table[] = { [199665] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8667), 1, + ACTIONS(8676), 1, sym_identifier, - ACTIONS(9694), 1, + ACTIONS(9703), 1, anon_sym_DOLLAR, STATE(5492), 1, sym_val_variable, @@ -404869,9 +404869,9 @@ static const uint16_t ts_small_parse_table[] = { [199687] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8667), 1, + ACTIONS(8676), 1, sym_identifier, - ACTIONS(9694), 1, + ACTIONS(9703), 1, anon_sym_DOLLAR, STATE(5492), 1, sym_val_variable, @@ -404884,9 +404884,9 @@ static const uint16_t ts_small_parse_table[] = { [199709] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8667), 1, + ACTIONS(8676), 1, sym_identifier, - ACTIONS(9694), 1, + ACTIONS(9703), 1, anon_sym_DOLLAR, STATE(5492), 1, sym_val_variable, @@ -404912,7 +404912,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(5828), 1, sym_comment, - ACTIONS(8251), 5, + ACTIONS(8260), 5, anon_sym_EQ, anon_sym_DASH_GT, anon_sym_GT2, @@ -404921,9 +404921,9 @@ static const uint16_t ts_small_parse_table[] = { [199759] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7690), 1, + ACTIONS(7699), 1, sym__newline, - ACTIONS(7692), 1, + ACTIONS(7701), 1, sym__space, STATE(4389), 1, aux_sym_ctrl_do_parenthesized_repeat2, @@ -404938,7 +404938,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(5830), 1, sym_comment, - ACTIONS(8255), 5, + ACTIONS(8264), 5, anon_sym_EQ, anon_sym_DASH_GT, anon_sym_GT2, @@ -404949,7 +404949,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(5831), 1, sym_comment, - ACTIONS(8259), 5, + ACTIONS(8268), 5, anon_sym_EQ, anon_sym_DASH_GT, anon_sym_GT2, @@ -404958,11 +404958,11 @@ static const uint16_t ts_small_parse_table[] = { [199809] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9156), 1, + ACTIONS(9165), 1, sym__entry_separator, - ACTIONS(9966), 1, + ACTIONS(9975), 1, anon_sym_AT, - ACTIONS(9970), 1, + ACTIONS(9979), 1, anon_sym_GT2, STATE(5328), 1, aux_sym__multiple_types_repeat1, @@ -404973,11 +404973,11 @@ static const uint16_t ts_small_parse_table[] = { [199831] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9156), 1, + ACTIONS(9165), 1, sym__entry_separator, - ACTIONS(9966), 1, + ACTIONS(9975), 1, anon_sym_AT, - ACTIONS(9972), 1, + ACTIONS(9981), 1, anon_sym_GT2, STATE(5329), 1, aux_sym__multiple_types_repeat1, @@ -404988,11 +404988,11 @@ static const uint16_t ts_small_parse_table[] = { [199853] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9156), 1, + ACTIONS(9165), 1, sym__entry_separator, - ACTIONS(9966), 1, + ACTIONS(9975), 1, anon_sym_AT, - ACTIONS(9974), 1, + ACTIONS(9983), 1, anon_sym_GT2, STATE(5330), 1, aux_sym__multiple_types_repeat1, @@ -405003,11 +405003,11 @@ static const uint16_t ts_small_parse_table[] = { [199875] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9156), 1, + ACTIONS(9165), 1, sym__entry_separator, - ACTIONS(9966), 1, + ACTIONS(9975), 1, anon_sym_AT, - ACTIONS(9976), 1, + ACTIONS(9985), 1, anon_sym_GT2, STATE(5331), 1, aux_sym__multiple_types_repeat1, @@ -405020,7 +405020,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(5836), 1, sym_comment, - ACTIONS(8263), 5, + ACTIONS(8272), 5, anon_sym_EQ, anon_sym_DASH_GT, anon_sym_GT2, @@ -405029,9 +405029,9 @@ static const uint16_t ts_small_parse_table[] = { [199911] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8667), 1, + ACTIONS(8676), 1, sym_identifier, - ACTIONS(9694), 1, + ACTIONS(9703), 1, anon_sym_DOLLAR, STATE(5492), 1, sym_val_variable, @@ -405044,11 +405044,11 @@ static const uint16_t ts_small_parse_table[] = { [199933] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9156), 1, + ACTIONS(9165), 1, sym__entry_separator, - ACTIONS(9966), 1, + ACTIONS(9975), 1, anon_sym_AT, - ACTIONS(9978), 1, + ACTIONS(9987), 1, anon_sym_GT2, STATE(5334), 1, aux_sym__multiple_types_repeat1, @@ -405059,11 +405059,11 @@ static const uint16_t ts_small_parse_table[] = { [199955] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9156), 1, + ACTIONS(9165), 1, sym__entry_separator, - ACTIONS(9966), 1, + ACTIONS(9975), 1, anon_sym_AT, - ACTIONS(9980), 1, + ACTIONS(9989), 1, anon_sym_GT2, STATE(5335), 1, aux_sym__multiple_types_repeat1, @@ -405074,11 +405074,11 @@ static const uint16_t ts_small_parse_table[] = { [199977] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3802), 1, + ACTIONS(3811), 1, sym__newline, - ACTIONS(9982), 1, + ACTIONS(9991), 1, anon_sym_EQ, - ACTIONS(9984), 1, + ACTIONS(9993), 1, anon_sym_COLON, STATE(5840), 1, sym_comment, @@ -405091,7 +405091,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(5841), 1, sym_comment, - ACTIONS(8267), 5, + ACTIONS(8276), 5, anon_sym_EQ, anon_sym_DASH_GT, anon_sym_GT2, @@ -405102,7 +405102,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(5842), 1, sym_comment, - ACTIONS(8271), 5, + ACTIONS(8280), 5, anon_sym_EQ, anon_sym_DASH_GT, anon_sym_GT2, @@ -405113,7 +405113,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(5843), 1, sym_comment, - ACTIONS(8275), 5, + ACTIONS(8284), 5, anon_sym_EQ, anon_sym_DASH_GT, anon_sym_GT2, @@ -405124,7 +405124,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(5844), 1, sym_comment, - ACTIONS(8279), 5, + ACTIONS(8288), 5, anon_sym_EQ, anon_sym_DASH_GT, anon_sym_GT2, @@ -405135,7 +405135,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(5845), 1, sym_comment, - ACTIONS(8283), 5, + ACTIONS(8292), 5, anon_sym_EQ, anon_sym_DASH_GT, anon_sym_GT2, @@ -405146,7 +405146,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(5846), 1, sym_comment, - ACTIONS(8287), 5, + ACTIONS(8296), 5, anon_sym_EQ, anon_sym_DASH_GT, anon_sym_GT2, @@ -405155,11 +405155,11 @@ static const uint16_t ts_small_parse_table[] = { [200083] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4932), 1, + ACTIONS(4941), 1, anon_sym_DASH2, STATE(5847), 1, sym_comment, - ACTIONS(4930), 4, + ACTIONS(4939), 4, sym_identifier, anon_sym_DOLLAR, anon_sym_DASH_DASH, @@ -405169,7 +405169,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(1927), 1, sym__table_head_separator, - ACTIONS(9986), 1, + ACTIONS(9995), 1, anon_sym_DOT2, STATE(5626), 1, sym_cell_path, @@ -405182,11 +405182,11 @@ static const uint16_t ts_small_parse_table[] = { [200121] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9156), 1, + ACTIONS(9165), 1, sym__entry_separator, - ACTIONS(9966), 1, + ACTIONS(9975), 1, anon_sym_AT, - ACTIONS(9988), 1, + ACTIONS(9997), 1, anon_sym_GT2, STATE(5292), 1, aux_sym__multiple_types_repeat1, @@ -405199,7 +405199,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(5850), 1, sym_comment, - ACTIONS(7927), 5, + ACTIONS(7936), 5, anon_sym_EQ, anon_sym_DASH_GT, anon_sym_GT2, @@ -405208,11 +405208,11 @@ static const uint16_t ts_small_parse_table[] = { [200157] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9156), 1, + ACTIONS(9165), 1, sym__entry_separator, - ACTIONS(9966), 1, + ACTIONS(9975), 1, anon_sym_AT, - ACTIONS(9990), 1, + ACTIONS(9999), 1, anon_sym_GT2, STATE(5295), 1, aux_sym__multiple_types_repeat1, @@ -405225,7 +405225,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(5852), 1, sym_comment, - ACTIONS(8291), 5, + ACTIONS(8300), 5, anon_sym_EQ, anon_sym_DASH_GT, anon_sym_GT2, @@ -405236,7 +405236,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(5853), 1, sym_comment, - ACTIONS(8295), 5, + ACTIONS(8304), 5, anon_sym_EQ, anon_sym_DASH_GT, anon_sym_GT2, @@ -405247,7 +405247,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(5854), 1, sym_comment, - ACTIONS(8057), 5, + ACTIONS(8066), 5, anon_sym_EQ, anon_sym_DASH_GT, anon_sym_GT2, @@ -405258,7 +405258,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(1927), 1, anon_sym_LBRACE, - ACTIONS(8983), 1, + ACTIONS(8992), 1, anon_sym_DOT2, STATE(1497), 1, sym_path, @@ -405273,7 +405273,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(5856), 1, sym_comment, - ACTIONS(8061), 5, + ACTIONS(8070), 5, anon_sym_EQ, anon_sym_DASH_GT, anon_sym_GT2, @@ -405282,9 +405282,9 @@ static const uint16_t ts_small_parse_table[] = { [200257] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8981), 1, + ACTIONS(8990), 1, aux_sym__immediate_decimal_token2, - ACTIONS(9992), 1, + ACTIONS(10001), 1, anon_sym_DOT, STATE(5857), 1, sym_comment, @@ -405297,7 +405297,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(5858), 1, sym_comment, - ACTIONS(8299), 5, + ACTIONS(8308), 5, anon_sym_EQ, anon_sym_DASH_GT, anon_sym_GT2, @@ -405308,7 +405308,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(5859), 1, sym_comment, - ACTIONS(8303), 5, + ACTIONS(8312), 5, anon_sym_EQ, anon_sym_DASH_GT, anon_sym_GT2, @@ -405319,7 +405319,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(5860), 1, sym_comment, - ACTIONS(8069), 5, + ACTIONS(8078), 5, anon_sym_EQ, anon_sym_DASH_GT, anon_sym_GT2, @@ -405328,37 +405328,37 @@ static const uint16_t ts_small_parse_table[] = { [200317] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6217), 1, + ACTIONS(6226), 1, anon_sym_LBRACE, STATE(5861), 1, sym_comment, STATE(6801), 1, sym_block, - ACTIONS(9918), 3, + ACTIONS(9927), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, [200335] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6217), 1, + ACTIONS(6226), 1, anon_sym_LBRACE, STATE(5862), 1, sym_comment, STATE(6802), 1, sym_block, - ACTIONS(9918), 3, + ACTIONS(9927), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, [200353] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4989), 1, + ACTIONS(4998), 1, anon_sym_DASH2, STATE(5863), 1, sym_comment, - ACTIONS(4987), 4, + ACTIONS(4996), 4, sym_identifier, anon_sym_DOLLAR, anon_sym_DASH_DASH, @@ -405368,7 +405368,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(5864), 1, sym_comment, - ACTIONS(8073), 5, + ACTIONS(8082), 5, anon_sym_EQ, anon_sym_DASH_GT, anon_sym_GT2, @@ -405377,11 +405377,11 @@ static const uint16_t ts_small_parse_table[] = { [200383] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9994), 1, + ACTIONS(10003), 1, anon_sym_LPAREN, - ACTIONS(9996), 1, + ACTIONS(10005), 1, sym_unescaped_interpolated_content, - ACTIONS(9998), 1, + ACTIONS(10007), 1, anon_sym_SQUOTE, STATE(5865), 1, sym_comment, @@ -405392,11 +405392,11 @@ static const uint16_t ts_small_parse_table[] = { [200405] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3802), 1, + ACTIONS(3811), 1, sym__newline, - ACTIONS(9984), 1, + ACTIONS(9993), 1, anon_sym_COLON, - ACTIONS(10000), 1, + ACTIONS(10009), 1, anon_sym_EQ, STATE(5866), 1, sym_comment, @@ -405409,7 +405409,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(5867), 1, sym_comment, - ACTIONS(7788), 5, + ACTIONS(7797), 5, anon_sym_EQ, anon_sym_DASH_GT, anon_sym_GT2, @@ -405418,11 +405418,11 @@ static const uint16_t ts_small_parse_table[] = { [200441] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9994), 1, + ACTIONS(10003), 1, anon_sym_LPAREN, - ACTIONS(9996), 1, + ACTIONS(10005), 1, sym_unescaped_interpolated_content, - ACTIONS(10002), 1, + ACTIONS(10011), 1, anon_sym_SQUOTE, STATE(5868), 1, sym_comment, @@ -405437,11 +405437,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, ACTIONS(2142), 1, sym__entry_separator, - ACTIONS(9939), 1, + ACTIONS(9948), 1, anon_sym_DOT_DOT2, STATE(5869), 1, sym_comment, - ACTIONS(9941), 2, + ACTIONS(9950), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, [200483] = 3, @@ -405449,7 +405449,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(5870), 1, sym_comment, - ACTIONS(7963), 5, + ACTIONS(7972), 5, anon_sym_EQ, anon_sym_DASH_GT, anon_sym_GT2, @@ -405458,11 +405458,11 @@ static const uint16_t ts_small_parse_table[] = { [200497] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9994), 1, + ACTIONS(10003), 1, anon_sym_LPAREN, - ACTIONS(9996), 1, + ACTIONS(10005), 1, sym_unescaped_interpolated_content, - ACTIONS(10004), 1, + ACTIONS(10013), 1, anon_sym_SQUOTE, STATE(5871), 1, sym_comment, @@ -405475,7 +405475,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(5872), 1, sym_comment, - ACTIONS(8077), 5, + ACTIONS(8086), 5, anon_sym_EQ, anon_sym_DASH_GT, anon_sym_GT2, @@ -405499,7 +405499,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(1765), 1, aux_sym_unquoted_token2, - ACTIONS(10006), 1, + ACTIONS(10015), 1, aux_sym__immediate_decimal_token2, STATE(5874), 1, sym_comment, @@ -405512,7 +405512,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(5875), 1, sym_comment, - ACTIONS(8091), 5, + ACTIONS(8100), 5, anon_sym_EQ, anon_sym_DASH_GT, anon_sym_GT2, @@ -405521,13 +405521,13 @@ static const uint16_t ts_small_parse_table[] = { [200583] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6217), 1, + ACTIONS(6226), 1, anon_sym_LBRACE, STATE(5876), 1, sym_comment, STATE(6858), 1, sym_block, - ACTIONS(9931), 3, + ACTIONS(9940), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -405538,21 +405538,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, ACTIONS(2138), 1, sym__entry_separator, - ACTIONS(9939), 1, + ACTIONS(9948), 1, anon_sym_DOT_DOT2, STATE(5877), 1, sym_comment, - ACTIONS(9941), 2, + ACTIONS(9950), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, [200621] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9994), 1, + ACTIONS(10003), 1, anon_sym_LPAREN, - ACTIONS(9996), 1, + ACTIONS(10005), 1, sym_unescaped_interpolated_content, - ACTIONS(10008), 1, + ACTIONS(10017), 1, anon_sym_SQUOTE, STATE(5878), 1, sym_comment, @@ -405563,11 +405563,11 @@ static const uint16_t ts_small_parse_table[] = { [200643] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9156), 1, + ACTIONS(9165), 1, sym__entry_separator, - ACTIONS(9966), 1, + ACTIONS(9975), 1, anon_sym_AT, - ACTIONS(10010), 1, + ACTIONS(10019), 1, anon_sym_GT2, STATE(5378), 1, aux_sym__multiple_types_repeat1, @@ -405578,11 +405578,11 @@ static const uint16_t ts_small_parse_table[] = { [200665] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9156), 1, + ACTIONS(9165), 1, sym__entry_separator, - ACTIONS(9966), 1, + ACTIONS(9975), 1, anon_sym_AT, - ACTIONS(10012), 1, + ACTIONS(10021), 1, anon_sym_GT2, STATE(5379), 1, aux_sym__multiple_types_repeat1, @@ -405606,11 +405606,11 @@ static const uint16_t ts_small_parse_table[] = { [200705] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(10014), 1, + ACTIONS(10023), 1, anon_sym_PIPE, - ACTIONS(10016), 1, + ACTIONS(10025), 1, anon_sym_if, - ACTIONS(10018), 1, + ACTIONS(10027), 1, anon_sym_EQ_GT, STATE(5882), 1, sym_comment, @@ -405621,11 +405621,11 @@ static const uint16_t ts_small_parse_table[] = { [200727] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9994), 1, + ACTIONS(10003), 1, anon_sym_LPAREN, - ACTIONS(9996), 1, + ACTIONS(10005), 1, sym_unescaped_interpolated_content, - ACTIONS(10020), 1, + ACTIONS(10029), 1, anon_sym_SQUOTE, STATE(5883), 1, sym_comment, @@ -405636,9 +405636,9 @@ static const uint16_t ts_small_parse_table[] = { [200749] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8667), 1, + ACTIONS(8676), 1, sym_identifier, - ACTIONS(9694), 1, + ACTIONS(9703), 1, anon_sym_DOLLAR, STATE(5492), 1, sym_val_variable, @@ -405651,7 +405651,7 @@ static const uint16_t ts_small_parse_table[] = { [200771] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10022), 1, + ACTIONS(10031), 1, aux_sym__immediate_decimal_token2, STATE(5885), 1, sym_comment, @@ -405664,7 +405664,7 @@ static const uint16_t ts_small_parse_table[] = { [200789] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9680), 1, + ACTIONS(9689), 1, aux_sym__immediate_decimal_token2, STATE(5886), 1, sym_comment, @@ -405677,11 +405677,11 @@ static const uint16_t ts_small_parse_table[] = { [200807] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9994), 1, + ACTIONS(10003), 1, anon_sym_LPAREN, - ACTIONS(9996), 1, + ACTIONS(10005), 1, sym_unescaped_interpolated_content, - ACTIONS(10024), 1, + ACTIONS(10033), 1, anon_sym_SQUOTE, STATE(5887), 1, sym_comment, @@ -405692,11 +405692,11 @@ static const uint16_t ts_small_parse_table[] = { [200829] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9156), 1, + ACTIONS(9165), 1, sym__entry_separator, - ACTIONS(9966), 1, + ACTIONS(9975), 1, anon_sym_AT, - ACTIONS(10026), 1, + ACTIONS(10035), 1, anon_sym_GT2, STATE(5390), 1, aux_sym__multiple_types_repeat1, @@ -405707,11 +405707,11 @@ static const uint16_t ts_small_parse_table[] = { [200851] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9156), 1, + ACTIONS(9165), 1, sym__entry_separator, - ACTIONS(9966), 1, + ACTIONS(9975), 1, anon_sym_AT, - ACTIONS(10028), 1, + ACTIONS(10037), 1, anon_sym_GT2, STATE(5402), 1, aux_sym__multiple_types_repeat1, @@ -405722,11 +405722,11 @@ static const uint16_t ts_small_parse_table[] = { [200873] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9994), 1, + ACTIONS(10003), 1, anon_sym_LPAREN, - ACTIONS(9996), 1, + ACTIONS(10005), 1, sym_unescaped_interpolated_content, - ACTIONS(10030), 1, + ACTIONS(10039), 1, anon_sym_SQUOTE, STATE(5890), 1, sym_comment, @@ -405737,11 +405737,11 @@ static const uint16_t ts_small_parse_table[] = { [200895] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9156), 1, + ACTIONS(9165), 1, sym__entry_separator, - ACTIONS(9966), 1, + ACTIONS(9975), 1, anon_sym_AT, - ACTIONS(10032), 1, + ACTIONS(10041), 1, anon_sym_GT2, STATE(5403), 1, aux_sym__multiple_types_repeat1, @@ -405752,11 +405752,11 @@ static const uint16_t ts_small_parse_table[] = { [200917] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9156), 1, + ACTIONS(9165), 1, sym__entry_separator, - ACTIONS(9966), 1, + ACTIONS(9975), 1, anon_sym_AT, - ACTIONS(10034), 1, + ACTIONS(10043), 1, anon_sym_GT2, STATE(5404), 1, aux_sym__multiple_types_repeat1, @@ -405769,7 +405769,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(1939), 1, anon_sym_LBRACE, - ACTIONS(8983), 1, + ACTIONS(8992), 1, anon_sym_DOT2, STATE(1497), 1, sym_path, @@ -405784,9 +405784,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(1757), 1, aux_sym_unquoted_token2, - ACTIONS(10036), 1, + ACTIONS(10045), 1, aux_sym__immediate_decimal_token1, - ACTIONS(10038), 1, + ACTIONS(10047), 1, aux_sym__immediate_decimal_token2, STATE(5894), 1, sym_comment, @@ -405796,11 +405796,11 @@ static const uint16_t ts_small_parse_table[] = { [200981] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3424), 1, + ACTIONS(3433), 1, anon_sym_COLON2, - ACTIONS(6901), 1, + ACTIONS(6910), 1, anon_sym_DOLLAR, - ACTIONS(8667), 1, + ACTIONS(8676), 1, sym_identifier, STATE(5492), 1, sym_val_variable, @@ -405815,21 +405815,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(1875), 1, aux_sym_unquoted_token2, - ACTIONS(10040), 1, + ACTIONS(10049), 1, anon_sym_DOT_DOT2, STATE(5896), 1, sym_comment, - ACTIONS(10042), 2, + ACTIONS(10051), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, [201023] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9994), 1, + ACTIONS(10003), 1, anon_sym_LPAREN, - ACTIONS(9996), 1, + ACTIONS(10005), 1, sym_unescaped_interpolated_content, - ACTIONS(10044), 1, + ACTIONS(10053), 1, anon_sym_SQUOTE, STATE(5897), 1, sym_comment, @@ -405840,11 +405840,11 @@ static const uint16_t ts_small_parse_table[] = { [201045] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9156), 1, + ACTIONS(9165), 1, sym__entry_separator, - ACTIONS(9966), 1, + ACTIONS(9975), 1, anon_sym_AT, - ACTIONS(10046), 1, + ACTIONS(10055), 1, anon_sym_GT2, STATE(5409), 1, aux_sym__multiple_types_repeat1, @@ -405855,11 +405855,11 @@ static const uint16_t ts_small_parse_table[] = { [201067] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9156), 1, + ACTIONS(9165), 1, sym__entry_separator, - ACTIONS(9966), 1, + ACTIONS(9975), 1, anon_sym_AT, - ACTIONS(10048), 1, + ACTIONS(10057), 1, anon_sym_GT2, STATE(5412), 1, aux_sym__multiple_types_repeat1, @@ -405870,24 +405870,24 @@ static const uint16_t ts_small_parse_table[] = { [201089] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9640), 1, + ACTIONS(9649), 1, anon_sym_LBRACE, STATE(5900), 1, sym_comment, STATE(7023), 1, sym_val_record, - ACTIONS(9806), 3, + ACTIONS(9815), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, [201107] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9994), 1, + ACTIONS(10003), 1, anon_sym_LPAREN, - ACTIONS(9996), 1, + ACTIONS(10005), 1, sym_unescaped_interpolated_content, - ACTIONS(10050), 1, + ACTIONS(10059), 1, anon_sym_SQUOTE, STATE(5901), 1, sym_comment, @@ -405910,13 +405910,13 @@ static const uint16_t ts_small_parse_table[] = { [201145] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4936), 1, + ACTIONS(4945), 1, anon_sym_DASH2, - ACTIONS(10052), 1, + ACTIONS(10061), 1, anon_sym_EQ2, STATE(5903), 1, sym_comment, - ACTIONS(4934), 3, + ACTIONS(4943), 3, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_LBRACE, @@ -405927,34 +405927,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, ACTIONS(1794), 1, sym__entry_separator, - ACTIONS(10054), 1, + ACTIONS(10063), 1, anon_sym_DOT_DOT2, STATE(5904), 1, sym_comment, - ACTIONS(10056), 2, + ACTIONS(10065), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, [201183] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10058), 1, + ACTIONS(10067), 1, anon_sym_LT, STATE(5905), 1, sym_comment, - ACTIONS(7788), 2, + ACTIONS(7797), 2, anon_sym_AT, sym__entry_separator, - ACTIONS(7792), 2, + ACTIONS(7801), 2, anon_sym_RBRACK, anon_sym_GT2, [201201] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9994), 1, + ACTIONS(10003), 1, anon_sym_LPAREN, - ACTIONS(9996), 1, + ACTIONS(10005), 1, sym_unescaped_interpolated_content, - ACTIONS(10060), 1, + ACTIONS(10069), 1, anon_sym_SQUOTE, STATE(5906), 1, sym_comment, @@ -405965,24 +405965,24 @@ static const uint16_t ts_small_parse_table[] = { [201223] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10062), 1, + ACTIONS(10071), 1, anon_sym_LT, STATE(5907), 1, sym_comment, - ACTIONS(7788), 2, + ACTIONS(7797), 2, anon_sym_AT, sym__entry_separator, - ACTIONS(7792), 2, + ACTIONS(7801), 2, anon_sym_RBRACK, anon_sym_GT2, [201241] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9994), 1, + ACTIONS(10003), 1, anon_sym_LPAREN, - ACTIONS(9996), 1, + ACTIONS(10005), 1, sym_unescaped_interpolated_content, - ACTIONS(10064), 1, + ACTIONS(10073), 1, anon_sym_SQUOTE, STATE(5908), 1, sym_comment, @@ -406005,9 +406005,9 @@ static const uint16_t ts_small_parse_table[] = { [201279] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8667), 1, + ACTIONS(8676), 1, sym_identifier, - ACTIONS(9694), 1, + ACTIONS(9703), 1, anon_sym_DOLLAR, STATE(5492), 1, sym_val_variable, @@ -406020,11 +406020,11 @@ static const uint16_t ts_small_parse_table[] = { [201301] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5044), 1, + ACTIONS(5053), 1, anon_sym_DASH2, STATE(5911), 1, sym_comment, - ACTIONS(5042), 4, + ACTIONS(5051), 4, sym_identifier, anon_sym_DOLLAR, anon_sym_DASH_DASH, @@ -406032,11 +406032,11 @@ static const uint16_t ts_small_parse_table[] = { [201317] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9994), 1, + ACTIONS(10003), 1, anon_sym_LPAREN, - ACTIONS(9996), 1, + ACTIONS(10005), 1, sym_unescaped_interpolated_content, - ACTIONS(10066), 1, + ACTIONS(10075), 1, anon_sym_SQUOTE, STATE(5912), 1, sym_comment, @@ -406047,11 +406047,11 @@ static const uint16_t ts_small_parse_table[] = { [201339] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5048), 1, + ACTIONS(5057), 1, anon_sym_DASH2, STATE(5913), 1, sym_comment, - ACTIONS(5046), 4, + ACTIONS(5055), 4, sym_identifier, anon_sym_DOLLAR, anon_sym_DASH_DASH, @@ -406059,11 +406059,11 @@ static const uint16_t ts_small_parse_table[] = { [201355] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9994), 1, + ACTIONS(10003), 1, anon_sym_LPAREN, - ACTIONS(9996), 1, + ACTIONS(10005), 1, sym_unescaped_interpolated_content, - ACTIONS(10068), 1, + ACTIONS(10077), 1, anon_sym_SQUOTE, STATE(5914), 1, sym_comment, @@ -406074,13 +406074,13 @@ static const uint16_t ts_small_parse_table[] = { [201377] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6217), 1, + ACTIONS(6226), 1, anon_sym_LBRACE, STATE(5915), 1, sym_comment, STATE(7032), 1, sym_block, - ACTIONS(9858), 3, + ACTIONS(9867), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -406091,21 +406091,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_unquoted_token2, ACTIONS(1794), 1, anon_sym_LBRACE, - ACTIONS(10070), 1, + ACTIONS(10079), 1, anon_sym_DOT_DOT2, STATE(5916), 1, sym_comment, - ACTIONS(10072), 2, + ACTIONS(10081), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, [201415] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9994), 1, + ACTIONS(10003), 1, anon_sym_LPAREN, - ACTIONS(9996), 1, + ACTIONS(10005), 1, sym_unescaped_interpolated_content, - ACTIONS(10074), 1, + ACTIONS(10083), 1, anon_sym_SQUOTE, STATE(5917), 1, sym_comment, @@ -406116,15 +406116,15 @@ static const uint16_t ts_small_parse_table[] = { [201437] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5876), 1, + ACTIONS(5885), 1, anon_sym_RBRACK, - ACTIONS(5882), 1, + ACTIONS(5891), 1, sym__entry_separator, - ACTIONS(9939), 1, + ACTIONS(9948), 1, anon_sym_DOT_DOT2, STATE(5918), 1, sym_comment, - ACTIONS(9941), 2, + ACTIONS(9950), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, [201457] = 6, @@ -406132,9 +406132,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(1725), 1, aux_sym_unquoted_token2, - ACTIONS(10076), 1, + ACTIONS(10085), 1, anon_sym_DOT, - ACTIONS(10078), 1, + ACTIONS(10087), 1, aux_sym__immediate_decimal_token2, STATE(5919), 1, sym_comment, @@ -406144,11 +406144,11 @@ static const uint16_t ts_small_parse_table[] = { [201477] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9994), 1, + ACTIONS(10003), 1, anon_sym_LPAREN, - ACTIONS(9996), 1, + ACTIONS(10005), 1, sym_unescaped_interpolated_content, - ACTIONS(10080), 1, + ACTIONS(10089), 1, anon_sym_SQUOTE, STATE(5920), 1, sym_comment, @@ -406163,35 +406163,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, ACTIONS(1873), 1, sym__entry_separator, - ACTIONS(10082), 1, + ACTIONS(10091), 1, anon_sym_DOT_DOT2, STATE(5921), 1, sym_comment, - ACTIONS(10084), 2, + ACTIONS(10093), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, [201519] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8645), 1, + ACTIONS(8654), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8647), 1, + ACTIONS(8656), 1, aux_sym__immediate_decimal_token5, STATE(5922), 1, sym_comment, STATE(7632), 1, sym__immediate_decimal, - ACTIONS(8643), 2, + ACTIONS(8652), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, [201539] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9994), 1, + ACTIONS(10003), 1, anon_sym_LPAREN, - ACTIONS(9996), 1, + ACTIONS(10005), 1, sym_unescaped_interpolated_content, - ACTIONS(10086), 1, + ACTIONS(10095), 1, anon_sym_SQUOTE, STATE(5923), 1, sym_comment, @@ -406206,21 +406206,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, ACTIONS(2130), 1, sym__entry_separator, - ACTIONS(9939), 1, + ACTIONS(9948), 1, anon_sym_DOT_DOT2, STATE(5924), 1, sym_comment, - ACTIONS(9941), 2, + ACTIONS(9950), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, [201581] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9994), 1, + ACTIONS(10003), 1, anon_sym_LPAREN, - ACTIONS(9996), 1, + ACTIONS(10005), 1, sym_unescaped_interpolated_content, - ACTIONS(10088), 1, + ACTIONS(10097), 1, anon_sym_SQUOTE, STATE(5925), 1, sym_comment, @@ -406231,23 +406231,23 @@ static const uint16_t ts_small_parse_table[] = { [201603] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9939), 1, + ACTIONS(9948), 1, anon_sym_DOT_DOT2, - ACTIONS(10090), 1, + ACTIONS(10099), 1, anon_sym_RBRACE, - ACTIONS(10092), 1, + ACTIONS(10101), 1, sym__entry_separator, STATE(5926), 1, sym_comment, - ACTIONS(9941), 2, + ACTIONS(9950), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, [201623] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8667), 1, + ACTIONS(8676), 1, sym_identifier, - ACTIONS(9694), 1, + ACTIONS(9703), 1, anon_sym_DOLLAR, STATE(5492), 1, sym_val_variable, @@ -406260,9 +406260,9 @@ static const uint16_t ts_small_parse_table[] = { [201645] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8667), 1, + ACTIONS(8676), 1, sym_identifier, - ACTIONS(9694), 1, + ACTIONS(9703), 1, anon_sym_DOLLAR, STATE(5492), 1, sym_val_variable, @@ -406275,9 +406275,9 @@ static const uint16_t ts_small_parse_table[] = { [201667] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8667), 1, + ACTIONS(8676), 1, sym_identifier, - ACTIONS(9694), 1, + ACTIONS(9703), 1, anon_sym_DOLLAR, STATE(5492), 1, sym_val_variable, @@ -406290,25 +406290,25 @@ static const uint16_t ts_small_parse_table[] = { [201689] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9939), 1, + ACTIONS(9948), 1, anon_sym_DOT_DOT2, - ACTIONS(10094), 1, + ACTIONS(10103), 1, anon_sym_RBRACE, - ACTIONS(10096), 1, + ACTIONS(10105), 1, sym__entry_separator, STATE(5930), 1, sym_comment, - ACTIONS(9941), 2, + ACTIONS(9950), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, [201709] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5020), 1, + ACTIONS(5029), 1, anon_sym_DASH2, STATE(5931), 1, sym_comment, - ACTIONS(5018), 4, + ACTIONS(5027), 4, sym_identifier, anon_sym_DOLLAR, anon_sym_DASH_DASH, @@ -406316,11 +406316,11 @@ static const uint16_t ts_small_parse_table[] = { [201725] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9994), 1, + ACTIONS(10003), 1, anon_sym_LPAREN, - ACTIONS(9996), 1, + ACTIONS(10005), 1, sym_unescaped_interpolated_content, - ACTIONS(10098), 1, + ACTIONS(10107), 1, anon_sym_SQUOTE, STATE(5932), 1, sym_comment, @@ -406331,11 +406331,11 @@ static const uint16_t ts_small_parse_table[] = { [201747] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5024), 1, + ACTIONS(5033), 1, anon_sym_DASH2, STATE(5933), 1, sym_comment, - ACTIONS(5022), 4, + ACTIONS(5031), 4, sym_identifier, anon_sym_DOLLAR, anon_sym_DASH_DASH, @@ -406343,11 +406343,11 @@ static const uint16_t ts_small_parse_table[] = { [201763] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9994), 1, + ACTIONS(10003), 1, anon_sym_LPAREN, - ACTIONS(9996), 1, + ACTIONS(10005), 1, sym_unescaped_interpolated_content, - ACTIONS(10100), 1, + ACTIONS(10109), 1, anon_sym_SQUOTE, STATE(5934), 1, sym_comment, @@ -406358,11 +406358,11 @@ static const uint16_t ts_small_parse_table[] = { [201785] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9994), 1, + ACTIONS(10003), 1, anon_sym_LPAREN, - ACTIONS(9996), 1, + ACTIONS(10005), 1, sym_unescaped_interpolated_content, - ACTIONS(10102), 1, + ACTIONS(10111), 1, anon_sym_SQUOTE, STATE(5935), 1, sym_comment, @@ -406375,7 +406375,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(1725), 1, aux_sym_unquoted_token2, - ACTIONS(9927), 1, + ACTIONS(9936), 1, aux_sym__immediate_decimal_token2, STATE(5936), 1, sym_comment, @@ -406386,9 +406386,9 @@ static const uint16_t ts_small_parse_table[] = { [201825] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8667), 1, + ACTIONS(8676), 1, sym_identifier, - ACTIONS(9694), 1, + ACTIONS(9703), 1, anon_sym_DOLLAR, STATE(5492), 1, sym_val_variable, @@ -406401,11 +406401,11 @@ static const uint16_t ts_small_parse_table[] = { [201847] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3802), 1, + ACTIONS(3811), 1, sym__newline, - ACTIONS(9984), 1, + ACTIONS(9993), 1, anon_sym_COLON, - ACTIONS(10104), 1, + ACTIONS(10113), 1, anon_sym_EQ, STATE(5938), 1, sym_comment, @@ -406416,11 +406416,11 @@ static const uint16_t ts_small_parse_table[] = { [201869] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9994), 1, + ACTIONS(10003), 1, anon_sym_LPAREN, - ACTIONS(9996), 1, + ACTIONS(10005), 1, sym_unescaped_interpolated_content, - ACTIONS(10106), 1, + ACTIONS(10115), 1, anon_sym_SQUOTE, STATE(5939), 1, sym_comment, @@ -406431,11 +406431,11 @@ static const uint16_t ts_small_parse_table[] = { [201891] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9994), 1, + ACTIONS(10003), 1, anon_sym_LPAREN, - ACTIONS(9996), 1, + ACTIONS(10005), 1, sym_unescaped_interpolated_content, - ACTIONS(10108), 1, + ACTIONS(10117), 1, anon_sym_SQUOTE, STATE(5940), 1, sym_comment, @@ -406446,11 +406446,11 @@ static const uint16_t ts_small_parse_table[] = { [201913] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9994), 1, + ACTIONS(10003), 1, anon_sym_LPAREN, - ACTIONS(9996), 1, + ACTIONS(10005), 1, sym_unescaped_interpolated_content, - ACTIONS(10110), 1, + ACTIONS(10119), 1, anon_sym_SQUOTE, STATE(5941), 1, sym_comment, @@ -406461,11 +406461,11 @@ static const uint16_t ts_small_parse_table[] = { [201935] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9994), 1, + ACTIONS(10003), 1, anon_sym_LPAREN, - ACTIONS(9996), 1, + ACTIONS(10005), 1, sym_unescaped_interpolated_content, - ACTIONS(10112), 1, + ACTIONS(10121), 1, anon_sym_SQUOTE, STATE(5942), 1, sym_comment, @@ -406476,11 +406476,11 @@ static const uint16_t ts_small_parse_table[] = { [201957] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3802), 1, + ACTIONS(3811), 1, sym__newline, - ACTIONS(9984), 1, + ACTIONS(9993), 1, anon_sym_COLON, - ACTIONS(10114), 1, + ACTIONS(10123), 1, anon_sym_EQ, STATE(5943), 1, sym_comment, @@ -406491,11 +406491,11 @@ static const uint16_t ts_small_parse_table[] = { [201979] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9994), 1, + ACTIONS(10003), 1, anon_sym_LPAREN, - ACTIONS(9996), 1, + ACTIONS(10005), 1, sym_unescaped_interpolated_content, - ACTIONS(10116), 1, + ACTIONS(10125), 1, anon_sym_SQUOTE, STATE(5944), 1, sym_comment, @@ -406518,11 +406518,11 @@ static const uint16_t ts_small_parse_table[] = { [202017] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9994), 1, + ACTIONS(10003), 1, anon_sym_LPAREN, - ACTIONS(9996), 1, + ACTIONS(10005), 1, sym_unescaped_interpolated_content, - ACTIONS(10118), 1, + ACTIONS(10127), 1, anon_sym_SQUOTE, STATE(5946), 1, sym_comment, @@ -406533,11 +406533,11 @@ static const uint16_t ts_small_parse_table[] = { [202039] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9994), 1, + ACTIONS(10003), 1, anon_sym_LPAREN, - ACTIONS(9996), 1, + ACTIONS(10005), 1, sym_unescaped_interpolated_content, - ACTIONS(10120), 1, + ACTIONS(10129), 1, anon_sym_SQUOTE, STATE(5947), 1, sym_comment, @@ -406550,7 +406550,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(2095), 1, anon_sym_LBRACE, - ACTIONS(8983), 1, + ACTIONS(8992), 1, anon_sym_DOT2, STATE(1497), 1, sym_path, @@ -406563,11 +406563,11 @@ static const uint16_t ts_small_parse_table[] = { [202083] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9994), 1, + ACTIONS(10003), 1, anon_sym_LPAREN, - ACTIONS(9996), 1, + ACTIONS(10005), 1, sym_unescaped_interpolated_content, - ACTIONS(10122), 1, + ACTIONS(10131), 1, anon_sym_SQUOTE, STATE(5949), 1, sym_comment, @@ -406578,26 +406578,26 @@ static const uint16_t ts_small_parse_table[] = { [202105] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3424), 1, + ACTIONS(3433), 1, anon_sym_COLON2, - ACTIONS(10124), 1, + ACTIONS(10133), 1, anon_sym_use, - ACTIONS(10126), 1, + ACTIONS(10135), 1, anon_sym_list, - ACTIONS(10128), 1, + ACTIONS(10137), 1, anon_sym_hide, - ACTIONS(10130), 1, + ACTIONS(10139), 1, anon_sym_new, STATE(5950), 1, sym_comment, [202127] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9994), 1, + ACTIONS(10003), 1, anon_sym_LPAREN, - ACTIONS(9996), 1, + ACTIONS(10005), 1, sym_unescaped_interpolated_content, - ACTIONS(10132), 1, + ACTIONS(10141), 1, anon_sym_SQUOTE, STATE(5951), 1, sym_comment, @@ -406610,7 +406610,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(5952), 1, sym_comment, - ACTIONS(7993), 5, + ACTIONS(8002), 5, anon_sym_EQ, anon_sym_DASH_GT, anon_sym_GT2, @@ -406621,7 +406621,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(5953), 1, sym_comment, - ACTIONS(8117), 5, + ACTIONS(8126), 5, anon_sym_EQ, anon_sym_DASH_GT, anon_sym_GT2, @@ -406632,7 +406632,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(1681), 1, anon_sym_DASH2, - ACTIONS(8719), 1, + ACTIONS(8728), 1, aux_sym_unquoted_token2, STATE(5954), 1, sym_comment, @@ -406645,7 +406645,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(5955), 1, sym_comment, - ACTIONS(7997), 5, + ACTIONS(8006), 5, anon_sym_EQ, anon_sym_DASH_GT, anon_sym_GT2, @@ -406667,7 +406667,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(5957), 1, sym_comment, - ACTIONS(8121), 5, + ACTIONS(8130), 5, anon_sym_EQ, anon_sym_DASH_GT, anon_sym_GT2, @@ -406676,7 +406676,7 @@ static const uint16_t ts_small_parse_table[] = { [202237] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10134), 1, + ACTIONS(10143), 1, aux_sym__immediate_decimal_token2, STATE(5958), 1, sym_comment, @@ -406689,11 +406689,11 @@ static const uint16_t ts_small_parse_table[] = { [202255] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9156), 1, + ACTIONS(9165), 1, sym__entry_separator, - ACTIONS(9966), 1, + ACTIONS(9975), 1, anon_sym_AT, - ACTIONS(10136), 1, + ACTIONS(10145), 1, anon_sym_GT2, STATE(5305), 1, aux_sym__multiple_types_repeat1, @@ -406706,7 +406706,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(5960), 1, sym_comment, - ACTIONS(8153), 5, + ACTIONS(8162), 5, anon_sym_EQ, anon_sym_DASH_GT, anon_sym_GT2, @@ -406715,11 +406715,11 @@ static const uint16_t ts_small_parse_table[] = { [202291] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9156), 1, + ACTIONS(9165), 1, sym__entry_separator, - ACTIONS(9966), 1, + ACTIONS(9975), 1, anon_sym_AT, - ACTIONS(10138), 1, + ACTIONS(10147), 1, anon_sym_GT2, STATE(5306), 1, aux_sym__multiple_types_repeat1, @@ -406732,7 +406732,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(5962), 1, sym_comment, - ACTIONS(8157), 5, + ACTIONS(8166), 5, anon_sym_EQ, anon_sym_DASH_GT, anon_sym_GT2, @@ -406743,7 +406743,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(5963), 1, sym_comment, - ACTIONS(8001), 5, + ACTIONS(8010), 5, anon_sym_EQ, anon_sym_DASH_GT, anon_sym_GT2, @@ -406754,7 +406754,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(5964), 1, sym_comment, - ACTIONS(8161), 5, + ACTIONS(8170), 5, anon_sym_EQ, anon_sym_DASH_GT, anon_sym_GT2, @@ -406765,7 +406765,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(5965), 1, sym_comment, - ACTIONS(8005), 5, + ACTIONS(8014), 5, anon_sym_EQ, anon_sym_DASH_GT, anon_sym_GT2, @@ -406776,7 +406776,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(5966), 1, sym_comment, - ACTIONS(8165), 5, + ACTIONS(8174), 5, anon_sym_EQ, anon_sym_DASH_GT, anon_sym_GT2, @@ -406785,11 +406785,11 @@ static const uint16_t ts_small_parse_table[] = { [202383] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9646), 1, + ACTIONS(9655), 1, anon_sym_DASH2, STATE(5967), 1, sym_comment, - ACTIONS(9644), 4, + ACTIONS(9653), 4, sym_identifier, anon_sym_DOLLAR, anon_sym_DASH_DASH, @@ -406797,11 +406797,11 @@ static const uint16_t ts_small_parse_table[] = { [202399] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3422), 1, + ACTIONS(3431), 1, anon_sym_COLON2, - ACTIONS(6901), 1, + ACTIONS(6910), 1, anon_sym_DOLLAR, - ACTIONS(8667), 1, + ACTIONS(8676), 1, sym_identifier, STATE(5492), 1, sym_val_variable, @@ -406812,9 +406812,9 @@ static const uint16_t ts_small_parse_table[] = { [202421] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3802), 1, + ACTIONS(3811), 1, sym__newline, - ACTIONS(9664), 1, + ACTIONS(9673), 1, anon_sym_LBRACK, STATE(1706), 1, aux_sym_shebang_repeat1, @@ -406827,11 +406827,11 @@ static const uint16_t ts_small_parse_table[] = { [202443] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5014), 1, + ACTIONS(5023), 1, anon_sym_DASH2, STATE(5970), 1, sym_comment, - ACTIONS(5012), 4, + ACTIONS(5021), 4, sym_identifier, anon_sym_DOLLAR, anon_sym_DASH_DASH, @@ -406839,11 +406839,11 @@ static const uint16_t ts_small_parse_table[] = { [202459] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9156), 1, + ACTIONS(9165), 1, sym__entry_separator, - ACTIONS(9966), 1, + ACTIONS(9975), 1, anon_sym_AT, - ACTIONS(10140), 1, + ACTIONS(10149), 1, anon_sym_GT2, STATE(5307), 1, aux_sym__multiple_types_repeat1, @@ -406854,15 +406854,15 @@ static const uint16_t ts_small_parse_table[] = { [202481] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3422), 1, + ACTIONS(3431), 1, anon_sym_COLON2, - ACTIONS(10124), 1, + ACTIONS(10133), 1, anon_sym_use, - ACTIONS(10126), 1, + ACTIONS(10135), 1, anon_sym_list, - ACTIONS(10128), 1, + ACTIONS(10137), 1, anon_sym_hide, - ACTIONS(10130), 1, + ACTIONS(10139), 1, anon_sym_new, STATE(5972), 1, sym_comment, @@ -406871,7 +406871,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(5973), 1, sym_comment, - ACTIONS(8169), 5, + ACTIONS(8178), 5, anon_sym_EQ, anon_sym_DASH_GT, anon_sym_GT2, @@ -406880,11 +406880,11 @@ static const uint16_t ts_small_parse_table[] = { [202517] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3802), 1, + ACTIONS(3811), 1, sym__newline, - ACTIONS(9984), 1, + ACTIONS(9993), 1, anon_sym_COLON, - ACTIONS(10142), 1, + ACTIONS(10151), 1, anon_sym_EQ, STATE(5974), 1, sym_comment, @@ -406895,11 +406895,11 @@ static const uint16_t ts_small_parse_table[] = { [202539] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9156), 1, + ACTIONS(9165), 1, sym__entry_separator, - ACTIONS(9966), 1, + ACTIONS(9975), 1, anon_sym_AT, - ACTIONS(10144), 1, + ACTIONS(10153), 1, anon_sym_GT2, STATE(5308), 1, aux_sym__multiple_types_repeat1, @@ -406912,7 +406912,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(1951), 1, anon_sym_LBRACE, - ACTIONS(8983), 1, + ACTIONS(8992), 1, anon_sym_DOT2, STATE(1497), 1, sym_path, @@ -406925,22 +406925,22 @@ static const uint16_t ts_small_parse_table[] = { [202583] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4936), 1, + ACTIONS(4945), 1, anon_sym_DASH2, - ACTIONS(10146), 1, + ACTIONS(10155), 1, anon_sym_EQ2, STATE(5977), 1, sym_comment, - ACTIONS(4934), 3, + ACTIONS(4943), 3, sym_identifier, anon_sym_DOLLAR, anon_sym_DASH_DASH, [202601] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10148), 1, + ACTIONS(10157), 1, sym__newline, - ACTIONS(10151), 1, + ACTIONS(10160), 1, sym__space, STATE(5283), 1, aux_sym_ctrl_do_parenthesized_repeat2, @@ -406954,7 +406954,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(1955), 1, anon_sym_LBRACE, - ACTIONS(8983), 1, + ACTIONS(8992), 1, anon_sym_DOT2, STATE(1497), 1, sym_path, @@ -406969,7 +406969,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(5980), 1, sym_comment, - ACTIONS(8173), 5, + ACTIONS(8182), 5, anon_sym_EQ, anon_sym_DASH_GT, anon_sym_GT2, @@ -406978,9 +406978,9 @@ static const uint16_t ts_small_parse_table[] = { [202657] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3802), 1, + ACTIONS(3811), 1, sym__newline, - ACTIONS(9664), 1, + ACTIONS(9673), 1, anon_sym_LBRACK, STATE(1706), 1, aux_sym_shebang_repeat1, @@ -406993,9 +406993,9 @@ static const uint16_t ts_small_parse_table[] = { [202679] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3802), 1, + ACTIONS(3811), 1, sym__newline, - ACTIONS(9664), 1, + ACTIONS(9673), 1, anon_sym_LBRACK, STATE(1706), 1, aux_sym_shebang_repeat1, @@ -407008,24 +407008,24 @@ static const uint16_t ts_small_parse_table[] = { [202701] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6217), 1, + ACTIONS(6226), 1, anon_sym_LBRACE, STATE(5983), 1, sym_comment, STATE(6753), 1, sym_block, - ACTIONS(9888), 3, + ACTIONS(9897), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, [202719] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9994), 1, + ACTIONS(10003), 1, anon_sym_LPAREN, - ACTIONS(9996), 1, + ACTIONS(10005), 1, sym_unescaped_interpolated_content, - ACTIONS(10154), 1, + ACTIONS(10163), 1, anon_sym_SQUOTE, STATE(5984), 1, sym_comment, @@ -407051,7 +407051,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(1959), 1, anon_sym_LBRACE, - ACTIONS(8983), 1, + ACTIONS(8992), 1, anon_sym_DOT2, STATE(1497), 1, sym_path, @@ -407066,7 +407066,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(1963), 1, anon_sym_LBRACE, - ACTIONS(8983), 1, + ACTIONS(8992), 1, anon_sym_DOT2, STATE(1497), 1, sym_path, @@ -407079,11 +407079,11 @@ static const uint16_t ts_small_parse_table[] = { [202803] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5030), 1, + ACTIONS(5039), 1, anon_sym_DASH2, STATE(5988), 1, sym_comment, - ACTIONS(5028), 4, + ACTIONS(5037), 4, sym_identifier, anon_sym_DOLLAR, anon_sym_DASH_DASH, @@ -407091,11 +407091,11 @@ static const uint16_t ts_small_parse_table[] = { [202819] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5034), 1, + ACTIONS(5043), 1, anon_sym_DASH2, STATE(5989), 1, sym_comment, - ACTIONS(5032), 4, + ACTIONS(5041), 4, sym_identifier, anon_sym_DOLLAR, anon_sym_DASH_DASH, @@ -407103,26 +407103,26 @@ static const uint16_t ts_small_parse_table[] = { [202835] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(10156), 1, + ACTIONS(10165), 1, anon_sym_EQ2, - ACTIONS(10158), 1, + ACTIONS(10167), 1, sym_short_flag_identifier, STATE(5990), 1, sym_comment, - ACTIONS(4871), 3, + ACTIONS(4880), 3, sym_identifier, anon_sym_DASH_DASH, anon_sym_DASH2, [202853] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4918), 1, + ACTIONS(4927), 1, anon_sym_DASH2, - ACTIONS(10160), 1, + ACTIONS(10169), 1, anon_sym_EQ2, STATE(5991), 1, sym_comment, - ACTIONS(4916), 3, + ACTIONS(4925), 3, sym_identifier, anon_sym_DOLLAR, anon_sym_DASH_DASH, @@ -407131,7 +407131,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(1681), 1, anon_sym_DASH2, - ACTIONS(8719), 1, + ACTIONS(8728), 1, aux_sym_unquoted_token2, STATE(5992), 1, sym_comment, @@ -407144,7 +407144,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(1967), 1, anon_sym_LBRACE, - ACTIONS(8983), 1, + ACTIONS(8992), 1, anon_sym_DOT2, STATE(1497), 1, sym_path, @@ -407157,15 +407157,15 @@ static const uint16_t ts_small_parse_table[] = { [202911] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4879), 1, + ACTIONS(4888), 1, anon_sym_DASH_DASH, - ACTIONS(10162), 1, + ACTIONS(10171), 1, sym_long_flag_identifier, - ACTIONS(10164), 1, + ACTIONS(10173), 1, anon_sym_EQ2, STATE(5994), 1, sym_comment, - ACTIONS(4881), 2, + ACTIONS(4890), 2, sym_identifier, anon_sym_DASH2, [202931] = 7, @@ -407173,7 +407173,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(1971), 1, anon_sym_LBRACE, - ACTIONS(8983), 1, + ACTIONS(8992), 1, anon_sym_DOT2, STATE(1497), 1, sym_path, @@ -407188,9 +407188,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(1727), 1, sym__entry_separator, - ACTIONS(8732), 1, + ACTIONS(8741), 1, aux_sym__immediate_decimal_token2, - ACTIONS(10166), 1, + ACTIONS(10175), 1, anon_sym_DOT, STATE(5996), 1, sym_comment, @@ -407202,7 +407202,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(5997), 1, sym_comment, - ACTIONS(7959), 5, + ACTIONS(7968), 5, anon_sym_EQ, anon_sym_DASH_GT, anon_sym_GT2, @@ -407211,35 +407211,35 @@ static const uint16_t ts_small_parse_table[] = { [202987] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6217), 1, + ACTIONS(6226), 1, anon_sym_LBRACE, STATE(5998), 1, sym_comment, STATE(6775), 1, sym_block, - ACTIONS(9888), 3, + ACTIONS(9897), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, [203005] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4918), 1, + ACTIONS(4927), 1, anon_sym_DASH2, - ACTIONS(10168), 1, + ACTIONS(10177), 1, anon_sym_EQ2, STATE(5999), 1, sym_comment, - ACTIONS(4916), 3, + ACTIONS(4925), 3, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_LBRACE, [203023] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8667), 1, + ACTIONS(8676), 1, sym_identifier, - ACTIONS(9694), 1, + ACTIONS(9703), 1, anon_sym_DOLLAR, STATE(5492), 1, sym_val_variable, @@ -407252,9 +407252,9 @@ static const uint16_t ts_small_parse_table[] = { [203045] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8667), 1, + ACTIONS(8676), 1, sym_identifier, - ACTIONS(9694), 1, + ACTIONS(9703), 1, anon_sym_DOLLAR, STATE(5492), 1, sym_val_variable, @@ -407267,9 +407267,9 @@ static const uint16_t ts_small_parse_table[] = { [203067] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8667), 1, + ACTIONS(8676), 1, sym_identifier, - ACTIONS(9694), 1, + ACTIONS(9703), 1, anon_sym_DOLLAR, STATE(5492), 1, sym_val_variable, @@ -407284,7 +407284,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(1975), 1, anon_sym_LBRACE, - ACTIONS(8983), 1, + ACTIONS(8992), 1, anon_sym_DOT2, STATE(1497), 1, sym_path, @@ -407297,9 +407297,9 @@ static const uint16_t ts_small_parse_table[] = { [203111] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8667), 1, + ACTIONS(8676), 1, sym_identifier, - ACTIONS(9694), 1, + ACTIONS(9703), 1, anon_sym_DOLLAR, STATE(5492), 1, sym_val_variable, @@ -407314,7 +407314,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(1979), 1, anon_sym_LBRACE, - ACTIONS(8983), 1, + ACTIONS(8992), 1, anon_sym_DOT2, STATE(1497), 1, sym_path, @@ -407329,7 +407329,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(1983), 1, anon_sym_LBRACE, - ACTIONS(8983), 1, + ACTIONS(8992), 1, anon_sym_DOT2, STATE(1497), 1, sym_path, @@ -407342,9 +407342,9 @@ static const uint16_t ts_small_parse_table[] = { [203177] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3802), 1, + ACTIONS(3811), 1, sym__newline, - ACTIONS(9664), 1, + ACTIONS(9673), 1, anon_sym_LBRACK, STATE(1706), 1, aux_sym_shebang_repeat1, @@ -407359,7 +407359,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(1987), 1, anon_sym_LBRACE, - ACTIONS(8983), 1, + ACTIONS(8992), 1, anon_sym_DOT2, STATE(1497), 1, sym_path, @@ -407372,9 +407372,9 @@ static const uint16_t ts_small_parse_table[] = { [203221] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3802), 1, + ACTIONS(3811), 1, sym__newline, - ACTIONS(9664), 1, + ACTIONS(9673), 1, anon_sym_LBRACK, STATE(1706), 1, aux_sym_shebang_repeat1, @@ -407389,7 +407389,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(1991), 1, anon_sym_LBRACE, - ACTIONS(8983), 1, + ACTIONS(8992), 1, anon_sym_DOT2, STATE(1497), 1, sym_path, @@ -407404,7 +407404,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(1939), 1, sym__table_head_separator, - ACTIONS(9986), 1, + ACTIONS(9995), 1, anon_sym_DOT2, STATE(5756), 1, sym_cell_path, @@ -407419,7 +407419,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(1995), 1, anon_sym_LBRACE, - ACTIONS(8983), 1, + ACTIONS(8992), 1, anon_sym_DOT2, STATE(1497), 1, sym_path, @@ -407434,7 +407434,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6013), 1, sym_comment, - ACTIONS(8179), 5, + ACTIONS(8188), 5, anon_sym_EQ, anon_sym_DASH_GT, anon_sym_GT2, @@ -407445,7 +407445,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6014), 1, sym_comment, - ACTIONS(8183), 5, + ACTIONS(8192), 5, anon_sym_EQ, anon_sym_DASH_GT, anon_sym_GT2, @@ -407454,11 +407454,11 @@ static const uint16_t ts_small_parse_table[] = { [203337] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10170), 1, + ACTIONS(10179), 1, anon_sym_LPAREN, - ACTIONS(10173), 1, + ACTIONS(10182), 1, sym_unescaped_interpolated_content, - ACTIONS(10176), 1, + ACTIONS(10185), 1, anon_sym_SQUOTE, STATE(6796), 1, sym_expr_interpolated, @@ -407468,9 +407468,9 @@ static const uint16_t ts_small_parse_table[] = { [203357] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8667), 1, + ACTIONS(8676), 1, sym_identifier, - ACTIONS(9694), 1, + ACTIONS(9703), 1, anon_sym_DOLLAR, STATE(5492), 1, sym_val_variable, @@ -407483,9 +407483,9 @@ static const uint16_t ts_small_parse_table[] = { [203379] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8667), 1, + ACTIONS(8676), 1, sym_identifier, - ACTIONS(9694), 1, + ACTIONS(9703), 1, anon_sym_DOLLAR, STATE(5492), 1, sym_val_variable, @@ -407498,9 +407498,9 @@ static const uint16_t ts_small_parse_table[] = { [203401] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8667), 1, + ACTIONS(8676), 1, sym_identifier, - ACTIONS(9694), 1, + ACTIONS(9703), 1, anon_sym_DOLLAR, STATE(5492), 1, sym_val_variable, @@ -407513,9 +407513,9 @@ static const uint16_t ts_small_parse_table[] = { [203423] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8667), 1, + ACTIONS(8676), 1, sym_identifier, - ACTIONS(9694), 1, + ACTIONS(9703), 1, anon_sym_DOLLAR, STATE(5492), 1, sym_val_variable, @@ -407528,9 +407528,9 @@ static const uint16_t ts_small_parse_table[] = { [203445] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8667), 1, + ACTIONS(8676), 1, sym_identifier, - ACTIONS(9694), 1, + ACTIONS(9703), 1, anon_sym_DOLLAR, STATE(5492), 1, sym_val_variable, @@ -407543,11 +407543,11 @@ static const uint16_t ts_small_parse_table[] = { [203467] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3802), 1, + ACTIONS(3811), 1, sym__newline, - ACTIONS(9984), 1, + ACTIONS(9993), 1, anon_sym_COLON, - ACTIONS(10178), 1, + ACTIONS(10187), 1, anon_sym_EQ, STATE(6021), 1, sym_comment, @@ -407560,7 +407560,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6022), 1, sym_comment, - ACTIONS(8187), 5, + ACTIONS(8196), 5, anon_sym_EQ, anon_sym_DASH_GT, anon_sym_GT2, @@ -407569,9 +407569,9 @@ static const uint16_t ts_small_parse_table[] = { [203503] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3802), 1, + ACTIONS(3811), 1, sym__newline, - ACTIONS(9664), 1, + ACTIONS(9673), 1, anon_sym_LBRACK, STATE(1706), 1, aux_sym_shebang_repeat1, @@ -407586,7 +407586,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(1999), 1, anon_sym_LBRACE, - ACTIONS(8983), 1, + ACTIONS(8992), 1, anon_sym_DOT2, STATE(1497), 1, sym_path, @@ -407599,9 +407599,9 @@ static const uint16_t ts_small_parse_table[] = { [203547] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3802), 1, + ACTIONS(3811), 1, sym__newline, - ACTIONS(9664), 1, + ACTIONS(9673), 1, anon_sym_LBRACK, STATE(1706), 1, aux_sym_shebang_repeat1, @@ -407614,9 +407614,9 @@ static const uint16_t ts_small_parse_table[] = { [203569] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3802), 1, + ACTIONS(3811), 1, sym__newline, - ACTIONS(9664), 1, + ACTIONS(9673), 1, anon_sym_LBRACK, STATE(1706), 1, aux_sym_shebang_repeat1, @@ -407629,7 +407629,7 @@ static const uint16_t ts_small_parse_table[] = { [203591] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10180), 1, + ACTIONS(10189), 1, anon_sym_QMARK2, STATE(6027), 1, sym_comment, @@ -407641,7 +407641,7 @@ static const uint16_t ts_small_parse_table[] = { [203607] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10182), 1, + ACTIONS(10191), 1, anon_sym_QMARK2, STATE(6028), 1, sym_comment, @@ -407655,7 +407655,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6029), 1, sym_comment, - ACTIONS(8191), 5, + ACTIONS(8200), 5, anon_sym_EQ, anon_sym_DASH_GT, anon_sym_GT2, @@ -407664,9 +407664,9 @@ static const uint16_t ts_small_parse_table[] = { [203637] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3802), 1, + ACTIONS(3811), 1, sym__newline, - ACTIONS(9664), 1, + ACTIONS(9673), 1, anon_sym_LBRACK, STATE(1706), 1, aux_sym_shebang_repeat1, @@ -407679,9 +407679,9 @@ static const uint16_t ts_small_parse_table[] = { [203659] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3802), 1, + ACTIONS(3811), 1, sym__newline, - ACTIONS(9664), 1, + ACTIONS(9673), 1, anon_sym_LBRACK, STATE(1706), 1, aux_sym_shebang_repeat1, @@ -407694,9 +407694,9 @@ static const uint16_t ts_small_parse_table[] = { [203681] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3802), 1, + ACTIONS(3811), 1, sym__newline, - ACTIONS(9664), 1, + ACTIONS(9673), 1, anon_sym_LBRACK, STATE(1706), 1, aux_sym_shebang_repeat1, @@ -407709,9 +407709,9 @@ static const uint16_t ts_small_parse_table[] = { [203703] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3802), 1, + ACTIONS(3811), 1, sym__newline, - ACTIONS(9664), 1, + ACTIONS(9673), 1, anon_sym_LBRACK, STATE(1706), 1, aux_sym_shebang_repeat1, @@ -407726,7 +407726,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6034), 1, sym_comment, - ACTIONS(8195), 5, + ACTIONS(8204), 5, anon_sym_EQ, anon_sym_DASH_GT, anon_sym_GT2, @@ -407735,9 +407735,9 @@ static const uint16_t ts_small_parse_table[] = { [203739] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3802), 1, + ACTIONS(3811), 1, sym__newline, - ACTIONS(9664), 1, + ACTIONS(9673), 1, anon_sym_LBRACK, STATE(1706), 1, aux_sym_shebang_repeat1, @@ -407750,9 +407750,9 @@ static const uint16_t ts_small_parse_table[] = { [203761] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3802), 1, + ACTIONS(3811), 1, sym__newline, - ACTIONS(9664), 1, + ACTIONS(9673), 1, anon_sym_LBRACK, STATE(1706), 1, aux_sym_shebang_repeat1, @@ -407765,9 +407765,9 @@ static const uint16_t ts_small_parse_table[] = { [203783] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3802), 1, + ACTIONS(3811), 1, sym__newline, - ACTIONS(9664), 1, + ACTIONS(9673), 1, anon_sym_LBRACK, STATE(1706), 1, aux_sym_shebang_repeat1, @@ -407780,9 +407780,9 @@ static const uint16_t ts_small_parse_table[] = { [203805] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3802), 1, + ACTIONS(3811), 1, sym__newline, - ACTIONS(9664), 1, + ACTIONS(9673), 1, anon_sym_LBRACK, STATE(1706), 1, aux_sym_shebang_repeat1, @@ -407795,9 +407795,9 @@ static const uint16_t ts_small_parse_table[] = { [203827] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3802), 1, + ACTIONS(3811), 1, sym__newline, - ACTIONS(9664), 1, + ACTIONS(9673), 1, anon_sym_LBRACK, STATE(1706), 1, aux_sym_shebang_repeat1, @@ -407810,9 +407810,9 @@ static const uint16_t ts_small_parse_table[] = { [203849] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3802), 1, + ACTIONS(3811), 1, sym__newline, - ACTIONS(9664), 1, + ACTIONS(9673), 1, anon_sym_LBRACK, STATE(1706), 1, aux_sym_shebang_repeat1, @@ -407827,7 +407827,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(2003), 1, anon_sym_LBRACE, - ACTIONS(8983), 1, + ACTIONS(8992), 1, anon_sym_DOT2, STATE(1497), 1, sym_path, @@ -407840,9 +407840,9 @@ static const uint16_t ts_small_parse_table[] = { [203893] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3802), 1, + ACTIONS(3811), 1, sym__newline, - ACTIONS(9664), 1, + ACTIONS(9673), 1, anon_sym_LBRACK, STATE(1706), 1, aux_sym_shebang_repeat1, @@ -407855,9 +407855,9 @@ static const uint16_t ts_small_parse_table[] = { [203915] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3802), 1, + ACTIONS(3811), 1, sym__newline, - ACTIONS(9664), 1, + ACTIONS(9673), 1, anon_sym_LBRACK, STATE(1706), 1, aux_sym_shebang_repeat1, @@ -407870,9 +407870,9 @@ static const uint16_t ts_small_parse_table[] = { [203937] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7690), 1, + ACTIONS(7699), 1, sym__newline, - ACTIONS(7692), 1, + ACTIONS(7701), 1, sym__space, STATE(4479), 1, aux_sym_ctrl_do_parenthesized_repeat2, @@ -407885,9 +407885,9 @@ static const uint16_t ts_small_parse_table[] = { [203959] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3802), 1, + ACTIONS(3811), 1, sym__newline, - ACTIONS(9664), 1, + ACTIONS(9673), 1, anon_sym_LBRACK, STATE(1706), 1, aux_sym_shebang_repeat1, @@ -407900,9 +407900,9 @@ static const uint16_t ts_small_parse_table[] = { [203981] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3802), 1, + ACTIONS(3811), 1, sym__newline, - ACTIONS(9664), 1, + ACTIONS(9673), 1, anon_sym_LBRACK, STATE(1706), 1, aux_sym_shebang_repeat1, @@ -407917,7 +407917,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(2007), 1, anon_sym_LBRACE, - ACTIONS(8983), 1, + ACTIONS(8992), 1, anon_sym_DOT2, STATE(1497), 1, sym_path, @@ -407932,7 +407932,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(2011), 1, anon_sym_LBRACE, - ACTIONS(8983), 1, + ACTIONS(8992), 1, anon_sym_DOT2, STATE(1497), 1, sym_path, @@ -407945,11 +407945,11 @@ static const uint16_t ts_small_parse_table[] = { [204047] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5056), 1, + ACTIONS(5065), 1, anon_sym_DASH2, STATE(6049), 1, sym_comment, - ACTIONS(5054), 4, + ACTIONS(5063), 4, sym_identifier, anon_sym_DOLLAR, anon_sym_DASH_DASH, @@ -407957,9 +407957,9 @@ static const uint16_t ts_small_parse_table[] = { [204063] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3802), 1, + ACTIONS(3811), 1, sym__newline, - ACTIONS(9664), 1, + ACTIONS(9673), 1, anon_sym_LBRACK, STATE(1706), 1, aux_sym_shebang_repeat1, @@ -407972,9 +407972,9 @@ static const uint16_t ts_small_parse_table[] = { [204085] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3802), 1, + ACTIONS(3811), 1, sym__newline, - ACTIONS(9664), 1, + ACTIONS(9673), 1, anon_sym_LBRACK, STATE(1706), 1, aux_sym_shebang_repeat1, @@ -407987,9 +407987,9 @@ static const uint16_t ts_small_parse_table[] = { [204107] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3802), 1, + ACTIONS(3811), 1, sym__newline, - ACTIONS(9664), 1, + ACTIONS(9673), 1, anon_sym_LBRACK, STATE(1706), 1, aux_sym_shebang_repeat1, @@ -408002,9 +408002,9 @@ static const uint16_t ts_small_parse_table[] = { [204129] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3802), 1, + ACTIONS(3811), 1, sym__newline, - ACTIONS(9664), 1, + ACTIONS(9673), 1, anon_sym_LBRACK, STATE(1706), 1, aux_sym_shebang_repeat1, @@ -408017,9 +408017,9 @@ static const uint16_t ts_small_parse_table[] = { [204151] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3802), 1, + ACTIONS(3811), 1, sym__newline, - ACTIONS(9664), 1, + ACTIONS(9673), 1, anon_sym_LBRACK, STATE(1706), 1, aux_sym_shebang_repeat1, @@ -408032,9 +408032,9 @@ static const uint16_t ts_small_parse_table[] = { [204173] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3802), 1, + ACTIONS(3811), 1, sym__newline, - ACTIONS(9664), 1, + ACTIONS(9673), 1, anon_sym_LBRACK, STATE(1706), 1, aux_sym_shebang_repeat1, @@ -408047,9 +408047,9 @@ static const uint16_t ts_small_parse_table[] = { [204195] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3802), 1, + ACTIONS(3811), 1, sym__newline, - ACTIONS(9664), 1, + ACTIONS(9673), 1, anon_sym_LBRACK, STATE(1706), 1, aux_sym_shebang_repeat1, @@ -408062,9 +408062,9 @@ static const uint16_t ts_small_parse_table[] = { [204217] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3802), 1, + ACTIONS(3811), 1, sym__newline, - ACTIONS(9664), 1, + ACTIONS(9673), 1, anon_sym_LBRACK, STATE(1706), 1, aux_sym_shebang_repeat1, @@ -408077,9 +408077,9 @@ static const uint16_t ts_small_parse_table[] = { [204239] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3802), 1, + ACTIONS(3811), 1, sym__newline, - ACTIONS(9664), 1, + ACTIONS(9673), 1, anon_sym_LBRACK, STATE(1706), 1, aux_sym_shebang_repeat1, @@ -408092,9 +408092,9 @@ static const uint16_t ts_small_parse_table[] = { [204261] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3802), 1, + ACTIONS(3811), 1, sym__newline, - ACTIONS(9664), 1, + ACTIONS(9673), 1, anon_sym_LBRACK, STATE(1706), 1, aux_sym_shebang_repeat1, @@ -408109,7 +408109,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6060), 1, sym_comment, - ACTIONS(8199), 5, + ACTIONS(8208), 5, anon_sym_EQ, anon_sym_DASH_GT, anon_sym_GT2, @@ -408118,9 +408118,9 @@ static const uint16_t ts_small_parse_table[] = { [204297] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8667), 1, + ACTIONS(8676), 1, sym_identifier, - ACTIONS(9694), 1, + ACTIONS(9703), 1, anon_sym_DOLLAR, STATE(5492), 1, sym_val_variable, @@ -408133,9 +408133,9 @@ static const uint16_t ts_small_parse_table[] = { [204319] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8667), 1, + ACTIONS(8676), 1, sym_identifier, - ACTIONS(9694), 1, + ACTIONS(9703), 1, anon_sym_DOLLAR, STATE(5492), 1, sym_val_variable, @@ -408148,9 +408148,9 @@ static const uint16_t ts_small_parse_table[] = { [204341] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8667), 1, + ACTIONS(8676), 1, sym_identifier, - ACTIONS(9694), 1, + ACTIONS(9703), 1, anon_sym_DOLLAR, STATE(5492), 1, sym_val_variable, @@ -408163,9 +408163,9 @@ static const uint16_t ts_small_parse_table[] = { [204363] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8667), 1, + ACTIONS(8676), 1, sym_identifier, - ACTIONS(9694), 1, + ACTIONS(9703), 1, anon_sym_DOLLAR, STATE(5492), 1, sym_val_variable, @@ -408180,7 +408180,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(2091), 1, anon_sym_LBRACE, - ACTIONS(8983), 1, + ACTIONS(8992), 1, anon_sym_DOT2, STATE(1497), 1, sym_path, @@ -408193,11 +408193,11 @@ static const uint16_t ts_small_parse_table[] = { [204407] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9156), 1, + ACTIONS(9165), 1, sym__entry_separator, - ACTIONS(9966), 1, + ACTIONS(9975), 1, anon_sym_AT, - ACTIONS(10184), 1, + ACTIONS(10193), 1, anon_sym_GT2, STATE(5314), 1, aux_sym__multiple_types_repeat1, @@ -408210,7 +408210,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6067), 1, sym_comment, - ACTIONS(8203), 5, + ACTIONS(8212), 5, anon_sym_EQ, anon_sym_DASH_GT, anon_sym_GT2, @@ -408230,11 +408230,11 @@ static const uint16_t ts_small_parse_table[] = { [204457] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9156), 1, + ACTIONS(9165), 1, sym__entry_separator, - ACTIONS(9966), 1, + ACTIONS(9975), 1, anon_sym_AT, - ACTIONS(10186), 1, + ACTIONS(10195), 1, anon_sym_GT2, STATE(5319), 1, aux_sym__multiple_types_repeat1, @@ -408247,7 +408247,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6070), 1, sym_comment, - ACTIONS(8207), 5, + ACTIONS(8216), 5, anon_sym_EQ, anon_sym_DASH_GT, anon_sym_GT2, @@ -408258,7 +408258,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6071), 1, sym_comment, - ACTIONS(8211), 5, + ACTIONS(8220), 5, anon_sym_EQ, anon_sym_DASH_GT, anon_sym_GT2, @@ -408281,7 +408281,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6073), 1, sym_comment, - ACTIONS(8215), 5, + ACTIONS(8224), 5, anon_sym_EQ, anon_sym_DASH_GT, anon_sym_GT2, @@ -408292,7 +408292,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(937), 1, anon_sym_COLON2, - ACTIONS(8983), 1, + ACTIONS(8992), 1, anon_sym_DOT2, STATE(1400), 1, sym_cell_path, @@ -408305,13 +408305,13 @@ static const uint16_t ts_small_parse_table[] = { [204559] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9640), 1, + ACTIONS(9649), 1, anon_sym_LBRACE, STATE(6075), 1, sym_comment, STATE(7024), 1, sym_val_record, - ACTIONS(9822), 3, + ACTIONS(9831), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -408320,7 +408320,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6076), 1, sym_comment, - ACTIONS(10188), 4, + ACTIONS(10197), 4, sym_identifier, anon_sym_in2, anon_sym_nu, @@ -408330,10 +408330,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6077), 1, sym_comment, - ACTIONS(7788), 2, + ACTIONS(7797), 2, anon_sym_AT, sym__entry_separator, - ACTIONS(7792), 2, + ACTIONS(7801), 2, anon_sym_RBRACK, anon_sym_GT2, [204605] = 6, @@ -408354,10 +408354,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6079), 1, sym_comment, - ACTIONS(8211), 2, + ACTIONS(8220), 2, anon_sym_AT, sym__entry_separator, - ACTIONS(8213), 2, + ACTIONS(8222), 2, anon_sym_RBRACK, anon_sym_GT2, [204639] = 3, @@ -408365,7 +408365,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6080), 1, sym_comment, - ACTIONS(10190), 4, + ACTIONS(10199), 4, sym_identifier, anon_sym_in2, anon_sym_nu, @@ -408384,23 +408384,23 @@ static const uint16_t ts_small_parse_table[] = { [204667] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10192), 1, + ACTIONS(10201), 1, anon_sym_DQUOTE, STATE(6082), 1, sym_comment, STATE(6087), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10194), 2, + ACTIONS(10203), 2, sym__escaped_str_content, sym_escape_sequence, [204684] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9156), 1, + ACTIONS(9165), 1, sym__entry_separator, - ACTIONS(10196), 1, + ACTIONS(10205), 1, anon_sym_COLON, - ACTIONS(10198), 1, + ACTIONS(10207), 1, anon_sym_GT2, STATE(5315), 1, aux_sym__multiple_types_repeat1, @@ -408411,17 +408411,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(1000), 1, anon_sym_LBRACE, - ACTIONS(10200), 1, + ACTIONS(10209), 1, anon_sym_DOT_DOT2, STATE(6084), 1, sym_comment, - ACTIONS(10202), 2, + ACTIONS(10211), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, [204720] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(10204), 1, + ACTIONS(10213), 1, anon_sym_RBRACK, STATE(4976), 1, aux_sym_parameter_repeat2, @@ -408435,7 +408435,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6086), 1, sym_comment, - ACTIONS(5652), 4, + ACTIONS(5661), 4, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -408443,23 +408443,23 @@ static const uint16_t ts_small_parse_table[] = { [204750] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10206), 1, + ACTIONS(10215), 1, anon_sym_DQUOTE, STATE(6087), 1, sym_comment, STATE(6515), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10194), 2, + ACTIONS(10203), 2, sym__escaped_str_content, sym_escape_sequence, [204767] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9156), 1, + ACTIONS(9165), 1, sym__entry_separator, - ACTIONS(10208), 1, + ACTIONS(10217), 1, anon_sym_COLON, - ACTIONS(10210), 1, + ACTIONS(10219), 1, anon_sym_GT2, STATE(5316), 1, aux_sym__multiple_types_repeat1, @@ -408483,10 +408483,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6090), 1, sym_comment, - ACTIONS(8227), 2, + ACTIONS(8236), 2, anon_sym_AT, sym__entry_separator, - ACTIONS(8229), 2, + ACTIONS(8238), 2, anon_sym_RBRACK, anon_sym_GT2, [204820] = 6, @@ -408507,10 +408507,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6092), 1, sym_comment, - ACTIONS(8291), 2, + ACTIONS(8300), 2, anon_sym_AT, sym__entry_separator, - ACTIONS(8293), 2, + ACTIONS(8302), 2, anon_sym_RBRACK, anon_sym_GT2, [204854] = 6, @@ -408529,9 +408529,9 @@ static const uint16_t ts_small_parse_table[] = { [204873] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(10212), 1, + ACTIONS(10221), 1, anon_sym_LBRACK, - ACTIONS(10214), 1, + ACTIONS(10223), 1, anon_sym_LPAREN, STATE(3214), 1, sym_parameter_parens, @@ -408542,9 +408542,9 @@ static const uint16_t ts_small_parse_table[] = { [204892] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3802), 1, + ACTIONS(3811), 1, sym__newline, - ACTIONS(6235), 1, + ACTIONS(6244), 1, anon_sym_LBRACE, STATE(1706), 1, aux_sym_shebang_repeat1, @@ -408557,7 +408557,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(1389), 1, anon_sym_RPAREN, - ACTIONS(10216), 2, + ACTIONS(10225), 2, sym__newline, anon_sym_SEMI, STATE(6096), 2, @@ -408566,11 +408566,11 @@ static const uint16_t ts_small_parse_table[] = { [204926] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6484), 1, + ACTIONS(6493), 1, sym__entry_separator, - ACTIONS(10219), 1, + ACTIONS(10228), 1, anon_sym_LBRACK, - ACTIONS(10221), 1, + ACTIONS(10230), 1, anon_sym_RBRACK, STATE(3429), 1, aux_sym__multiple_types_repeat1, @@ -408579,11 +408579,11 @@ static const uint16_t ts_small_parse_table[] = { [204945] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6484), 1, + ACTIONS(6493), 1, sym__entry_separator, - ACTIONS(10219), 1, + ACTIONS(10228), 1, anon_sym_LBRACK, - ACTIONS(10223), 1, + ACTIONS(10232), 1, anon_sym_RBRACK, STATE(3429), 1, aux_sym__multiple_types_repeat1, @@ -408592,11 +408592,11 @@ static const uint16_t ts_small_parse_table[] = { [204964] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6484), 1, + ACTIONS(6493), 1, sym__entry_separator, - ACTIONS(10219), 1, + ACTIONS(10228), 1, anon_sym_LBRACK, - ACTIONS(10225), 1, + ACTIONS(10234), 1, anon_sym_RBRACK, STATE(3429), 1, aux_sym__multiple_types_repeat1, @@ -408605,11 +408605,11 @@ static const uint16_t ts_small_parse_table[] = { [204983] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6484), 1, + ACTIONS(6493), 1, sym__entry_separator, - ACTIONS(10219), 1, + ACTIONS(10228), 1, anon_sym_LBRACK, - ACTIONS(10227), 1, + ACTIONS(10236), 1, anon_sym_RBRACK, STATE(3429), 1, aux_sym__multiple_types_repeat1, @@ -408618,11 +408618,11 @@ static const uint16_t ts_small_parse_table[] = { [205002] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6484), 1, + ACTIONS(6493), 1, sym__entry_separator, - ACTIONS(10219), 1, + ACTIONS(10228), 1, anon_sym_LBRACK, - ACTIONS(10229), 1, + ACTIONS(10238), 1, anon_sym_RBRACK, STATE(3429), 1, aux_sym__multiple_types_repeat1, @@ -408631,11 +408631,11 @@ static const uint16_t ts_small_parse_table[] = { [205021] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6484), 1, + ACTIONS(6493), 1, sym__entry_separator, - ACTIONS(10219), 1, + ACTIONS(10228), 1, anon_sym_LBRACK, - ACTIONS(10231), 1, + ACTIONS(10240), 1, anon_sym_RBRACK, STATE(3429), 1, aux_sym__multiple_types_repeat1, @@ -408644,11 +408644,11 @@ static const uint16_t ts_small_parse_table[] = { [205040] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6484), 1, + ACTIONS(6493), 1, sym__entry_separator, - ACTIONS(10219), 1, + ACTIONS(10228), 1, anon_sym_LBRACK, - ACTIONS(10233), 1, + ACTIONS(10242), 1, anon_sym_RBRACK, STATE(3429), 1, aux_sym__multiple_types_repeat1, @@ -408657,11 +408657,11 @@ static const uint16_t ts_small_parse_table[] = { [205059] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6484), 1, + ACTIONS(6493), 1, sym__entry_separator, - ACTIONS(10219), 1, + ACTIONS(10228), 1, anon_sym_LBRACK, - ACTIONS(10235), 1, + ACTIONS(10244), 1, anon_sym_RBRACK, STATE(3429), 1, aux_sym__multiple_types_repeat1, @@ -408670,19 +408670,19 @@ static const uint16_t ts_small_parse_table[] = { [205078] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9824), 1, + ACTIONS(9833), 1, anon_sym_RPAREN, STATE(6096), 1, aux_sym__block_body_repeat1, STATE(6105), 1, sym_comment, - ACTIONS(10237), 2, + ACTIONS(10246), 2, sym__newline, anon_sym_SEMI, [205095] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4801), 1, + ACTIONS(4810), 1, aux_sym_unquoted_token2, STATE(6106), 1, sym_comment, @@ -408695,7 +408695,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6107), 1, sym_comment, - ACTIONS(10239), 4, + ACTIONS(10248), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, @@ -408718,7 +408718,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6109), 1, sym_comment, - ACTIONS(10241), 4, + ACTIONS(10250), 4, sym_identifier, anon_sym_in2, anon_sym_nu, @@ -408726,9 +408726,9 @@ static const uint16_t ts_small_parse_table[] = { [205155] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(10212), 1, + ACTIONS(10221), 1, anon_sym_LBRACK, - ACTIONS(10214), 1, + ACTIONS(10223), 1, anon_sym_LPAREN, STATE(3216), 1, sym_parameter_parens, @@ -408739,13 +408739,13 @@ static const uint16_t ts_small_parse_table[] = { [205174] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10243), 1, + ACTIONS(10252), 1, anon_sym_DQUOTE, STATE(6111), 1, sym_comment, STATE(6117), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10194), 2, + ACTIONS(10203), 2, sym__escaped_str_content, sym_escape_sequence, [205191] = 4, @@ -408753,10 +408753,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6112), 1, sym_comment, - ACTIONS(8215), 2, + ACTIONS(8224), 2, anon_sym_AT, sym__entry_separator, - ACTIONS(8217), 2, + ACTIONS(8226), 2, anon_sym_RBRACK, anon_sym_GT2, [205206] = 3, @@ -408764,7 +408764,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6113), 1, sym_comment, - ACTIONS(10239), 4, + ACTIONS(10248), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, @@ -408774,10 +408774,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6114), 1, sym_comment, - ACTIONS(8295), 2, + ACTIONS(8304), 2, anon_sym_AT, sym__entry_separator, - ACTIONS(8297), 2, + ACTIONS(8306), 2, anon_sym_RBRACK, anon_sym_GT2, [205234] = 3, @@ -408785,7 +408785,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6115), 1, sym_comment, - ACTIONS(10245), 4, + ACTIONS(10254), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, @@ -408793,7 +408793,7 @@ static const uint16_t ts_small_parse_table[] = { [205247] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(10247), 1, + ACTIONS(10256), 1, anon_sym_LBRACE, STATE(4858), 1, sym_block, @@ -408806,13 +408806,13 @@ static const uint16_t ts_small_parse_table[] = { [205266] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10249), 1, + ACTIONS(10258), 1, anon_sym_DQUOTE, STATE(6117), 1, sym_comment, STATE(6515), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10194), 2, + ACTIONS(10203), 2, sym__escaped_str_content, sym_escape_sequence, [205283] = 4, @@ -408820,10 +408820,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6118), 1, sym_comment, - ACTIONS(8299), 2, + ACTIONS(8308), 2, anon_sym_AT, sym__entry_separator, - ACTIONS(8301), 2, + ACTIONS(8310), 2, anon_sym_RBRACK, anon_sym_GT2, [205298] = 3, @@ -408831,7 +408831,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6119), 1, sym_comment, - ACTIONS(10245), 4, + ACTIONS(10254), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, @@ -408852,18 +408852,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6121), 1, sym_comment, - ACTIONS(7959), 2, + ACTIONS(7968), 2, anon_sym_AT, sym__entry_separator, - ACTIONS(7961), 2, + ACTIONS(7970), 2, anon_sym_RBRACK, anon_sym_GT2, [205341] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(10251), 1, + ACTIONS(10260), 1, anon_sym_LBRACK, - ACTIONS(10253), 1, + ACTIONS(10262), 1, anon_sym_LPAREN, STATE(5861), 1, sym_parameter_parens, @@ -408876,10 +408876,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6123), 1, sym_comment, - ACTIONS(8303), 2, + ACTIONS(8312), 2, anon_sym_AT, sym__entry_separator, - ACTIONS(8305), 2, + ACTIONS(8314), 2, anon_sym_RBRACK, anon_sym_GT2, [205375] = 4, @@ -408887,10 +408887,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6124), 1, sym_comment, - ACTIONS(7963), 2, + ACTIONS(7972), 2, anon_sym_AT, sym__entry_separator, - ACTIONS(7965), 2, + ACTIONS(7974), 2, anon_sym_RBRACK, anon_sym_GT2, [205390] = 4, @@ -408909,7 +408909,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6126), 1, sym_comment, - ACTIONS(6356), 4, + ACTIONS(6365), 4, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -408919,7 +408919,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6127), 1, sym_comment, - ACTIONS(6288), 4, + ACTIONS(6297), 4, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -408927,11 +408927,11 @@ static const uint16_t ts_small_parse_table[] = { [205431] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6484), 1, + ACTIONS(6493), 1, sym__entry_separator, - ACTIONS(10219), 1, + ACTIONS(10228), 1, anon_sym_LBRACK, - ACTIONS(10255), 1, + ACTIONS(10264), 1, anon_sym_RBRACK, STATE(3429), 1, aux_sym__multiple_types_repeat1, @@ -408940,11 +408940,11 @@ static const uint16_t ts_small_parse_table[] = { [205450] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6484), 1, + ACTIONS(6493), 1, sym__entry_separator, - ACTIONS(10219), 1, + ACTIONS(10228), 1, anon_sym_LBRACK, - ACTIONS(10257), 1, + ACTIONS(10266), 1, anon_sym_RBRACK, STATE(3429), 1, aux_sym__multiple_types_repeat1, @@ -408953,11 +408953,11 @@ static const uint16_t ts_small_parse_table[] = { [205469] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6484), 1, + ACTIONS(6493), 1, sym__entry_separator, - ACTIONS(10219), 1, + ACTIONS(10228), 1, anon_sym_LBRACK, - ACTIONS(10259), 1, + ACTIONS(10268), 1, anon_sym_RBRACK, STATE(3429), 1, aux_sym__multiple_types_repeat1, @@ -408966,11 +408966,11 @@ static const uint16_t ts_small_parse_table[] = { [205488] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6484), 1, + ACTIONS(6493), 1, sym__entry_separator, - ACTIONS(10219), 1, + ACTIONS(10228), 1, anon_sym_LBRACK, - ACTIONS(10261), 1, + ACTIONS(10270), 1, anon_sym_RBRACK, STATE(3429), 1, aux_sym__multiple_types_repeat1, @@ -408979,11 +408979,11 @@ static const uint16_t ts_small_parse_table[] = { [205507] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6484), 1, + ACTIONS(6493), 1, sym__entry_separator, - ACTIONS(10219), 1, + ACTIONS(10228), 1, anon_sym_LBRACK, - ACTIONS(10263), 1, + ACTIONS(10272), 1, anon_sym_RBRACK, STATE(3429), 1, aux_sym__multiple_types_repeat1, @@ -408992,11 +408992,11 @@ static const uint16_t ts_small_parse_table[] = { [205526] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6484), 1, + ACTIONS(6493), 1, sym__entry_separator, - ACTIONS(10219), 1, + ACTIONS(10228), 1, anon_sym_LBRACK, - ACTIONS(10265), 1, + ACTIONS(10274), 1, anon_sym_RBRACK, STATE(3429), 1, aux_sym__multiple_types_repeat1, @@ -409005,11 +409005,11 @@ static const uint16_t ts_small_parse_table[] = { [205545] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6484), 1, + ACTIONS(6493), 1, sym__entry_separator, - ACTIONS(10219), 1, + ACTIONS(10228), 1, anon_sym_LBRACK, - ACTIONS(10267), 1, + ACTIONS(10276), 1, anon_sym_RBRACK, STATE(3429), 1, aux_sym__multiple_types_repeat1, @@ -409018,11 +409018,11 @@ static const uint16_t ts_small_parse_table[] = { [205564] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6484), 1, + ACTIONS(6493), 1, sym__entry_separator, - ACTIONS(10219), 1, + ACTIONS(10228), 1, anon_sym_LBRACK, - ACTIONS(10269), 1, + ACTIONS(10278), 1, anon_sym_RBRACK, STATE(3429), 1, aux_sym__multiple_types_repeat1, @@ -409033,7 +409033,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6136), 1, sym_comment, - ACTIONS(6290), 4, + ACTIONS(6299), 4, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -409056,7 +409056,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6138), 1, sym_comment, - ACTIONS(10271), 4, + ACTIONS(10280), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, @@ -409066,7 +409066,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6139), 1, sym_comment, - ACTIONS(6358), 4, + ACTIONS(6367), 4, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -409076,7 +409076,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6140), 1, sym_comment, - ACTIONS(10273), 4, + ACTIONS(10282), 4, sym_identifier, anon_sym_in2, anon_sym_nu, @@ -409086,7 +409086,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6141), 1, sym_comment, - ACTIONS(10239), 4, + ACTIONS(10248), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, @@ -409094,13 +409094,13 @@ static const uint16_t ts_small_parse_table[] = { [205667] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10275), 1, + ACTIONS(10284), 1, anon_sym_DQUOTE, STATE(6142), 1, sym_comment, STATE(6147), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10194), 2, + ACTIONS(10203), 2, sym__escaped_str_content, sym_escape_sequence, [205684] = 4, @@ -409108,10 +409108,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6143), 1, sym_comment, - ACTIONS(8231), 2, + ACTIONS(8240), 2, anon_sym_AT, sym__entry_separator, - ACTIONS(8233), 2, + ACTIONS(8242), 2, anon_sym_RBRACK, anon_sym_GT2, [205699] = 4, @@ -409119,10 +409119,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6144), 1, sym_comment, - ACTIONS(8235), 2, + ACTIONS(8244), 2, anon_sym_AT, sym__entry_separator, - ACTIONS(8237), 2, + ACTIONS(8246), 2, anon_sym_RBRACK, anon_sym_GT2, [205714] = 3, @@ -409130,7 +409130,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6145), 1, sym_comment, - ACTIONS(10239), 4, + ACTIONS(10248), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, @@ -409138,11 +409138,11 @@ static const uint16_t ts_small_parse_table[] = { [205727] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9156), 1, + ACTIONS(9165), 1, sym__entry_separator, - ACTIONS(10277), 1, + ACTIONS(10286), 1, anon_sym_COLON, - ACTIONS(10279), 1, + ACTIONS(10288), 1, anon_sym_GT2, STATE(5317), 1, aux_sym__multiple_types_repeat1, @@ -409151,23 +409151,23 @@ static const uint16_t ts_small_parse_table[] = { [205746] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10281), 1, + ACTIONS(10290), 1, anon_sym_DQUOTE, STATE(6147), 1, sym_comment, STATE(6515), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10194), 2, + ACTIONS(10203), 2, sym__escaped_str_content, sym_escape_sequence, [205763] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9156), 1, + ACTIONS(9165), 1, sym__entry_separator, - ACTIONS(10283), 1, + ACTIONS(10292), 1, anon_sym_COLON, - ACTIONS(10285), 1, + ACTIONS(10294), 1, anon_sym_GT2, STATE(5318), 1, aux_sym__multiple_types_repeat1, @@ -409178,7 +409178,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6149), 1, sym_comment, - ACTIONS(10287), 4, + ACTIONS(10296), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, @@ -409188,7 +409188,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6150), 1, sym_comment, - ACTIONS(10289), 4, + ACTIONS(10298), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, @@ -409200,9 +409200,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_unquoted_token2, ACTIONS(1759), 1, anon_sym_LBRACE, - ACTIONS(10291), 1, + ACTIONS(10300), 1, aux_sym__immediate_decimal_token1, - ACTIONS(10293), 1, + ACTIONS(10302), 1, aux_sym__immediate_decimal_token2, STATE(6151), 1, sym_comment, @@ -409211,7 +409211,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6152), 1, sym_comment, - ACTIONS(10295), 4, + ACTIONS(10304), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, @@ -409221,7 +409221,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6153), 1, sym_comment, - ACTIONS(10297), 4, + ACTIONS(10306), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, @@ -409231,11 +409231,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(2150), 1, anon_sym_LBRACE, - ACTIONS(10299), 1, + ACTIONS(10308), 1, anon_sym_DOT_DOT2, STATE(6154), 1, sym_comment, - ACTIONS(10301), 2, + ACTIONS(10310), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, [205870] = 5, @@ -409243,11 +409243,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(2158), 1, anon_sym_LBRACE, - ACTIONS(10303), 1, + ACTIONS(10312), 1, anon_sym_DOT_DOT2, STATE(6155), 1, sym_comment, - ACTIONS(10305), 2, + ACTIONS(10314), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, [205887] = 5, @@ -409255,23 +409255,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(2166), 1, anon_sym_LBRACE, - ACTIONS(10307), 1, + ACTIONS(10316), 1, anon_sym_DOT_DOT2, STATE(6156), 1, sym_comment, - ACTIONS(10309), 2, + ACTIONS(10318), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, [205904] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9736), 1, + ACTIONS(9745), 1, anon_sym_RPAREN, STATE(6096), 1, aux_sym__block_body_repeat1, STATE(6157), 1, sym_comment, - ACTIONS(10237), 2, + ACTIONS(10246), 2, sym__newline, anon_sym_SEMI, [205921] = 3, @@ -409279,7 +409279,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6158), 1, sym_comment, - ACTIONS(10297), 4, + ACTIONS(10306), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, @@ -409287,11 +409287,11 @@ static const uint16_t ts_small_parse_table[] = { [205934] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6484), 1, + ACTIONS(6493), 1, sym__entry_separator, - ACTIONS(10219), 1, + ACTIONS(10228), 1, anon_sym_LBRACK, - ACTIONS(10311), 1, + ACTIONS(10320), 1, anon_sym_RBRACK, STATE(3429), 1, aux_sym__multiple_types_repeat1, @@ -409300,11 +409300,11 @@ static const uint16_t ts_small_parse_table[] = { [205953] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6484), 1, + ACTIONS(6493), 1, sym__entry_separator, - ACTIONS(10219), 1, + ACTIONS(10228), 1, anon_sym_LBRACK, - ACTIONS(10313), 1, + ACTIONS(10322), 1, anon_sym_RBRACK, STATE(3429), 1, aux_sym__multiple_types_repeat1, @@ -409313,11 +409313,11 @@ static const uint16_t ts_small_parse_table[] = { [205972] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6484), 1, + ACTIONS(6493), 1, sym__entry_separator, - ACTIONS(10219), 1, + ACTIONS(10228), 1, anon_sym_LBRACK, - ACTIONS(10315), 1, + ACTIONS(10324), 1, anon_sym_RBRACK, STATE(3429), 1, aux_sym__multiple_types_repeat1, @@ -409326,11 +409326,11 @@ static const uint16_t ts_small_parse_table[] = { [205991] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6484), 1, + ACTIONS(6493), 1, sym__entry_separator, - ACTIONS(10219), 1, + ACTIONS(10228), 1, anon_sym_LBRACK, - ACTIONS(10317), 1, + ACTIONS(10326), 1, anon_sym_RBRACK, STATE(3429), 1, aux_sym__multiple_types_repeat1, @@ -409339,11 +409339,11 @@ static const uint16_t ts_small_parse_table[] = { [206010] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6484), 1, + ACTIONS(6493), 1, sym__entry_separator, - ACTIONS(10219), 1, + ACTIONS(10228), 1, anon_sym_LBRACK, - ACTIONS(10319), 1, + ACTIONS(10328), 1, anon_sym_RBRACK, STATE(3429), 1, aux_sym__multiple_types_repeat1, @@ -409352,11 +409352,11 @@ static const uint16_t ts_small_parse_table[] = { [206029] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6484), 1, + ACTIONS(6493), 1, sym__entry_separator, - ACTIONS(10219), 1, + ACTIONS(10228), 1, anon_sym_LBRACK, - ACTIONS(10321), 1, + ACTIONS(10330), 1, anon_sym_RBRACK, STATE(3429), 1, aux_sym__multiple_types_repeat1, @@ -409365,11 +409365,11 @@ static const uint16_t ts_small_parse_table[] = { [206048] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6484), 1, + ACTIONS(6493), 1, sym__entry_separator, - ACTIONS(10219), 1, + ACTIONS(10228), 1, anon_sym_LBRACK, - ACTIONS(10323), 1, + ACTIONS(10332), 1, anon_sym_RBRACK, STATE(3429), 1, aux_sym__multiple_types_repeat1, @@ -409378,11 +409378,11 @@ static const uint16_t ts_small_parse_table[] = { [206067] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6484), 1, + ACTIONS(6493), 1, sym__entry_separator, - ACTIONS(10219), 1, + ACTIONS(10228), 1, anon_sym_LBRACK, - ACTIONS(10325), 1, + ACTIONS(10334), 1, anon_sym_RBRACK, STATE(3429), 1, aux_sym__multiple_types_repeat1, @@ -409393,7 +409393,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6167), 1, sym_comment, - ACTIONS(5634), 4, + ACTIONS(5643), 4, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -409416,7 +409416,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6169), 1, sym_comment, - ACTIONS(5648), 4, + ACTIONS(5657), 4, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -409426,7 +409426,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6170), 1, sym_comment, - ACTIONS(10327), 4, + ACTIONS(10336), 4, sym_identifier, anon_sym_in2, anon_sym_nu, @@ -409436,7 +409436,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(943), 1, sym__table_head_separator, - ACTIONS(10329), 1, + ACTIONS(10338), 1, anon_sym_DOT2, STATE(7245), 1, sym_path, @@ -409446,23 +409446,23 @@ static const uint16_t ts_small_parse_table[] = { [206161] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10332), 1, + ACTIONS(10341), 1, anon_sym_DQUOTE, STATE(6172), 1, sym_comment, STATE(6178), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10194), 2, + ACTIONS(10203), 2, sym__escaped_str_content, sym_escape_sequence, [206178] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9156), 1, + ACTIONS(9165), 1, sym__entry_separator, - ACTIONS(10334), 1, + ACTIONS(10343), 1, anon_sym_COLON, - ACTIONS(10336), 1, + ACTIONS(10345), 1, anon_sym_GT2, STATE(5296), 1, aux_sym__multiple_types_repeat1, @@ -409473,7 +409473,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6174), 1, sym_comment, - ACTIONS(5638), 4, + ACTIONS(5647), 4, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -409481,11 +409481,11 @@ static const uint16_t ts_small_parse_table[] = { [206210] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6484), 1, + ACTIONS(6493), 1, sym__entry_separator, - ACTIONS(10219), 1, + ACTIONS(10228), 1, anon_sym_LBRACK, - ACTIONS(10338), 1, + ACTIONS(10347), 1, anon_sym_RBRACK, STATE(3429), 1, aux_sym__multiple_types_repeat1, @@ -409496,10 +409496,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6176), 1, sym_comment, - ACTIONS(8239), 2, + ACTIONS(8248), 2, anon_sym_AT, sym__entry_separator, - ACTIONS(8241), 2, + ACTIONS(8250), 2, anon_sym_RBRACK, anon_sym_GT2, [206244] = 6, @@ -409507,7 +409507,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(1506), 1, anon_sym_SEMI, - ACTIONS(3802), 1, + ACTIONS(3811), 1, sym__newline, STATE(288), 1, aux_sym__parenthesized_body_repeat1, @@ -409518,13 +409518,13 @@ static const uint16_t ts_small_parse_table[] = { [206263] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10340), 1, + ACTIONS(10349), 1, anon_sym_DQUOTE, STATE(6178), 1, sym_comment, STATE(6515), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10194), 2, + ACTIONS(10203), 2, sym__escaped_str_content, sym_escape_sequence, [206280] = 3, @@ -409532,7 +409532,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6179), 1, sym_comment, - ACTIONS(10342), 4, + ACTIONS(10351), 4, sym_identifier, anon_sym_in2, anon_sym_nu, @@ -409566,7 +409566,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6182), 1, sym_comment, - ACTIONS(10344), 4, + ACTIONS(10353), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, @@ -409576,7 +409576,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6183), 1, sym_comment, - ACTIONS(10344), 4, + ACTIONS(10353), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, @@ -409584,11 +409584,11 @@ static const uint16_t ts_small_parse_table[] = { [206353] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9156), 1, + ACTIONS(9165), 1, sym__entry_separator, - ACTIONS(10346), 1, + ACTIONS(10355), 1, anon_sym_COLON, - ACTIONS(10348), 1, + ACTIONS(10357), 1, anon_sym_GT2, STATE(5297), 1, aux_sym__multiple_types_repeat1, @@ -409597,11 +409597,11 @@ static const uint16_t ts_small_parse_table[] = { [206372] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6484), 1, + ACTIONS(6493), 1, sym__entry_separator, - ACTIONS(10219), 1, + ACTIONS(10228), 1, anon_sym_LBRACK, - ACTIONS(10350), 1, + ACTIONS(10359), 1, anon_sym_RBRACK, STATE(3429), 1, aux_sym__multiple_types_repeat1, @@ -409610,21 +409610,21 @@ static const uint16_t ts_small_parse_table[] = { [206391] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10352), 1, + ACTIONS(10361), 1, anon_sym_DQUOTE, STATE(6186), 1, sym_comment, STATE(6227), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10194), 2, + ACTIONS(10203), 2, sym__escaped_str_content, sym_escape_sequence, [206408] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3802), 1, + ACTIONS(3811), 1, sym__newline, - ACTIONS(6235), 1, + ACTIONS(6244), 1, anon_sym_LBRACE, STATE(4406), 1, sym_block, @@ -409635,11 +409635,11 @@ static const uint16_t ts_small_parse_table[] = { [206427] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6484), 1, + ACTIONS(6493), 1, sym__entry_separator, - ACTIONS(10219), 1, + ACTIONS(10228), 1, anon_sym_LBRACK, - ACTIONS(10354), 1, + ACTIONS(10363), 1, anon_sym_RBRACK, STATE(3429), 1, aux_sym__multiple_types_repeat1, @@ -409648,11 +409648,11 @@ static const uint16_t ts_small_parse_table[] = { [206446] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6484), 1, + ACTIONS(6493), 1, sym__entry_separator, - ACTIONS(10219), 1, + ACTIONS(10228), 1, anon_sym_LBRACK, - ACTIONS(10356), 1, + ACTIONS(10365), 1, anon_sym_RBRACK, STATE(3429), 1, aux_sym__multiple_types_repeat1, @@ -409661,11 +409661,11 @@ static const uint16_t ts_small_parse_table[] = { [206465] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6484), 1, + ACTIONS(6493), 1, sym__entry_separator, - ACTIONS(10219), 1, + ACTIONS(10228), 1, anon_sym_LBRACK, - ACTIONS(10358), 1, + ACTIONS(10367), 1, anon_sym_RBRACK, STATE(3429), 1, aux_sym__multiple_types_repeat1, @@ -409674,11 +409674,11 @@ static const uint16_t ts_small_parse_table[] = { [206484] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6484), 1, + ACTIONS(6493), 1, sym__entry_separator, - ACTIONS(10219), 1, + ACTIONS(10228), 1, anon_sym_LBRACK, - ACTIONS(10360), 1, + ACTIONS(10369), 1, anon_sym_RBRACK, STATE(3429), 1, aux_sym__multiple_types_repeat1, @@ -409687,11 +409687,11 @@ static const uint16_t ts_small_parse_table[] = { [206503] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6484), 1, + ACTIONS(6493), 1, sym__entry_separator, - ACTIONS(10219), 1, + ACTIONS(10228), 1, anon_sym_LBRACK, - ACTIONS(10362), 1, + ACTIONS(10371), 1, anon_sym_RBRACK, STATE(3429), 1, aux_sym__multiple_types_repeat1, @@ -409700,11 +409700,11 @@ static const uint16_t ts_small_parse_table[] = { [206522] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6484), 1, + ACTIONS(6493), 1, sym__entry_separator, - ACTIONS(10219), 1, + ACTIONS(10228), 1, anon_sym_LBRACK, - ACTIONS(10364), 1, + ACTIONS(10373), 1, anon_sym_RBRACK, STATE(3429), 1, aux_sym__multiple_types_repeat1, @@ -409713,11 +409713,11 @@ static const uint16_t ts_small_parse_table[] = { [206541] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6484), 1, + ACTIONS(6493), 1, sym__entry_separator, - ACTIONS(10219), 1, + ACTIONS(10228), 1, anon_sym_LBRACK, - ACTIONS(10366), 1, + ACTIONS(10375), 1, anon_sym_RBRACK, STATE(3429), 1, aux_sym__multiple_types_repeat1, @@ -409726,11 +409726,11 @@ static const uint16_t ts_small_parse_table[] = { [206560] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6484), 1, + ACTIONS(6493), 1, sym__entry_separator, - ACTIONS(10219), 1, + ACTIONS(10228), 1, anon_sym_LBRACK, - ACTIONS(10368), 1, + ACTIONS(10377), 1, anon_sym_RBRACK, STATE(3429), 1, aux_sym__multiple_types_repeat1, @@ -409741,7 +409741,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6196), 1, sym_comment, - ACTIONS(10370), 4, + ACTIONS(10379), 4, sym_identifier, anon_sym_in2, anon_sym_nu, @@ -409762,7 +409762,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6198), 1, sym_comment, - ACTIONS(10372), 4, + ACTIONS(10381), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, @@ -409772,7 +409772,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6199), 1, sym_comment, - ACTIONS(10374), 4, + ACTIONS(10383), 4, sym_identifier, anon_sym_in2, anon_sym_nu, @@ -409791,13 +409791,13 @@ static const uint16_t ts_small_parse_table[] = { [206648] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10376), 1, + ACTIONS(10385), 1, anon_sym_DQUOTE, STATE(6201), 1, sym_comment, STATE(6207), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10194), 2, + ACTIONS(10203), 2, sym__escaped_str_content, sym_escape_sequence, [206665] = 6, @@ -409807,22 +409807,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_unquoted_token2, ACTIONS(1727), 1, anon_sym_LBRACE, - ACTIONS(10378), 1, + ACTIONS(10387), 1, anon_sym_DOT, - ACTIONS(10380), 1, + ACTIONS(10389), 1, aux_sym__immediate_decimal_token2, STATE(6202), 1, sym_comment, [206684] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(10124), 1, + ACTIONS(10133), 1, anon_sym_use, - ACTIONS(10126), 1, + ACTIONS(10135), 1, anon_sym_list, - ACTIONS(10128), 1, + ACTIONS(10137), 1, anon_sym_hide, - ACTIONS(10130), 1, + ACTIONS(10139), 1, anon_sym_new, STATE(6203), 1, sym_comment, @@ -409831,7 +409831,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6204), 1, sym_comment, - ACTIONS(6284), 4, + ACTIONS(6293), 4, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -409841,7 +409841,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6205), 1, sym_comment, - ACTIONS(10382), 4, + ACTIONS(10391), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, @@ -409851,7 +409851,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6206), 1, sym_comment, - ACTIONS(10384), 4, + ACTIONS(10393), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, @@ -409859,13 +409859,13 @@ static const uint16_t ts_small_parse_table[] = { [206742] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10386), 1, + ACTIONS(10395), 1, anon_sym_DQUOTE, STATE(6207), 1, sym_comment, STATE(6515), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10194), 2, + ACTIONS(10203), 2, sym__escaped_str_content, sym_escape_sequence, [206759] = 3, @@ -409873,7 +409873,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6208), 1, sym_comment, - ACTIONS(10388), 4, + ACTIONS(10397), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, @@ -409881,13 +409881,13 @@ static const uint16_t ts_small_parse_table[] = { [206772] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10390), 1, + ACTIONS(10399), 1, anon_sym_DQUOTE, STATE(6209), 1, sym_comment, STATE(6295), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10194), 2, + ACTIONS(10203), 2, sym__escaped_str_content, sym_escape_sequence, [206789] = 4, @@ -409919,7 +409919,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6212), 1, sym_comment, - ACTIONS(10392), 4, + ACTIONS(10401), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, @@ -409929,20 +409929,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6213), 1, sym_comment, - ACTIONS(8243), 2, + ACTIONS(8252), 2, anon_sym_AT, sym__entry_separator, - ACTIONS(8245), 2, + ACTIONS(8254), 2, anon_sym_RBRACK, anon_sym_GT2, [206851] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6484), 1, + ACTIONS(6493), 1, sym__entry_separator, - ACTIONS(10219), 1, + ACTIONS(10228), 1, anon_sym_LBRACK, - ACTIONS(10394), 1, + ACTIONS(10403), 1, anon_sym_RBRACK, STATE(3429), 1, aux_sym__multiple_types_repeat1, @@ -409951,11 +409951,11 @@ static const uint16_t ts_small_parse_table[] = { [206870] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6484), 1, + ACTIONS(6493), 1, sym__entry_separator, - ACTIONS(10219), 1, + ACTIONS(10228), 1, anon_sym_LBRACK, - ACTIONS(10396), 1, + ACTIONS(10405), 1, anon_sym_RBRACK, STATE(3429), 1, aux_sym__multiple_types_repeat1, @@ -409964,11 +409964,11 @@ static const uint16_t ts_small_parse_table[] = { [206889] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6484), 1, + ACTIONS(6493), 1, sym__entry_separator, - ACTIONS(10219), 1, + ACTIONS(10228), 1, anon_sym_LBRACK, - ACTIONS(10398), 1, + ACTIONS(10407), 1, anon_sym_RBRACK, STATE(3429), 1, aux_sym__multiple_types_repeat1, @@ -409977,11 +409977,11 @@ static const uint16_t ts_small_parse_table[] = { [206908] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6484), 1, + ACTIONS(6493), 1, sym__entry_separator, - ACTIONS(10219), 1, + ACTIONS(10228), 1, anon_sym_LBRACK, - ACTIONS(10400), 1, + ACTIONS(10409), 1, anon_sym_RBRACK, STATE(3429), 1, aux_sym__multiple_types_repeat1, @@ -409990,11 +409990,11 @@ static const uint16_t ts_small_parse_table[] = { [206927] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6484), 1, + ACTIONS(6493), 1, sym__entry_separator, - ACTIONS(10219), 1, + ACTIONS(10228), 1, anon_sym_LBRACK, - ACTIONS(10402), 1, + ACTIONS(10411), 1, anon_sym_RBRACK, STATE(3429), 1, aux_sym__multiple_types_repeat1, @@ -410003,11 +410003,11 @@ static const uint16_t ts_small_parse_table[] = { [206946] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6484), 1, + ACTIONS(6493), 1, sym__entry_separator, - ACTIONS(10219), 1, + ACTIONS(10228), 1, anon_sym_LBRACK, - ACTIONS(10404), 1, + ACTIONS(10413), 1, anon_sym_RBRACK, STATE(3429), 1, aux_sym__multiple_types_repeat1, @@ -410016,11 +410016,11 @@ static const uint16_t ts_small_parse_table[] = { [206965] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6484), 1, + ACTIONS(6493), 1, sym__entry_separator, - ACTIONS(10219), 1, + ACTIONS(10228), 1, anon_sym_LBRACK, - ACTIONS(10406), 1, + ACTIONS(10415), 1, anon_sym_RBRACK, STATE(3429), 1, aux_sym__multiple_types_repeat1, @@ -410029,11 +410029,11 @@ static const uint16_t ts_small_parse_table[] = { [206984] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6484), 1, + ACTIONS(6493), 1, sym__entry_separator, - ACTIONS(10219), 1, + ACTIONS(10228), 1, anon_sym_LBRACK, - ACTIONS(10408), 1, + ACTIONS(10417), 1, anon_sym_RBRACK, STATE(3429), 1, aux_sym__multiple_types_repeat1, @@ -410044,7 +410044,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6222), 1, sym_comment, - ACTIONS(10392), 4, + ACTIONS(10401), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, @@ -410054,7 +410054,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6223), 1, sym_comment, - ACTIONS(10410), 4, + ACTIONS(10419), 4, sym_identifier, anon_sym_in2, anon_sym_nu, @@ -410064,7 +410064,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6224), 1, sym_comment, - ACTIONS(10412), 4, + ACTIONS(10421), 4, sym_identifier, anon_sym_in2, anon_sym_nu, @@ -410085,25 +410085,25 @@ static const uint16_t ts_small_parse_table[] = { [207061] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10414), 1, + ACTIONS(10423), 1, anon_sym_DQUOTE, STATE(6226), 1, sym_comment, STATE(6230), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10194), 2, + ACTIONS(10203), 2, sym__escaped_str_content, sym_escape_sequence, [207078] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10416), 1, + ACTIONS(10425), 1, anon_sym_DQUOTE, STATE(6227), 1, sym_comment, STATE(6515), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10194), 2, + ACTIONS(10203), 2, sym__escaped_str_content, sym_escape_sequence, [207095] = 6, @@ -410122,9 +410122,9 @@ static const uint16_t ts_small_parse_table[] = { [207114] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(10212), 1, + ACTIONS(10221), 1, anon_sym_LBRACK, - ACTIONS(10214), 1, + ACTIONS(10223), 1, anon_sym_LPAREN, STATE(5747), 1, sym_parameter_parens, @@ -410135,13 +410135,13 @@ static const uint16_t ts_small_parse_table[] = { [207133] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10418), 1, + ACTIONS(10427), 1, anon_sym_DQUOTE, STATE(6230), 1, sym_comment, STATE(6515), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10194), 2, + ACTIONS(10203), 2, sym__escaped_str_content, sym_escape_sequence, [207150] = 4, @@ -410149,10 +410149,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6231), 1, sym_comment, - ACTIONS(8247), 2, + ACTIONS(8256), 2, anon_sym_AT, sym__entry_separator, - ACTIONS(8249), 2, + ACTIONS(8258), 2, anon_sym_RBRACK, anon_sym_GT2, [207165] = 4, @@ -410160,22 +410160,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6232), 1, sym_comment, - ACTIONS(7993), 2, + ACTIONS(8002), 2, anon_sym_AT, sym__entry_separator, - ACTIONS(7995), 2, + ACTIONS(8004), 2, anon_sym_RBRACK, anon_sym_GT2, [207180] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10420), 1, + ACTIONS(10429), 1, anon_sym_DQUOTE, STATE(6233), 1, sym_comment, STATE(6278), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10194), 2, + ACTIONS(10203), 2, sym__escaped_str_content, sym_escape_sequence, [207197] = 5, @@ -410183,21 +410183,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(2176), 1, anon_sym_LBRACE, - ACTIONS(10422), 1, + ACTIONS(10431), 1, anon_sym_DOT_DOT2, STATE(6234), 1, sym_comment, - ACTIONS(10424), 2, + ACTIONS(10433), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, [207214] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6484), 1, + ACTIONS(6493), 1, sym__entry_separator, - ACTIONS(10219), 1, + ACTIONS(10228), 1, anon_sym_LBRACK, - ACTIONS(10426), 1, + ACTIONS(10435), 1, anon_sym_RBRACK, STATE(3429), 1, aux_sym__multiple_types_repeat1, @@ -410206,11 +410206,11 @@ static const uint16_t ts_small_parse_table[] = { [207233] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6484), 1, + ACTIONS(6493), 1, sym__entry_separator, - ACTIONS(10219), 1, + ACTIONS(10228), 1, anon_sym_LBRACK, - ACTIONS(10428), 1, + ACTIONS(10437), 1, anon_sym_RBRACK, STATE(3429), 1, aux_sym__multiple_types_repeat1, @@ -410219,11 +410219,11 @@ static const uint16_t ts_small_parse_table[] = { [207252] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6484), 1, + ACTIONS(6493), 1, sym__entry_separator, - ACTIONS(10219), 1, + ACTIONS(10228), 1, anon_sym_LBRACK, - ACTIONS(10430), 1, + ACTIONS(10439), 1, anon_sym_RBRACK, STATE(3429), 1, aux_sym__multiple_types_repeat1, @@ -410232,11 +410232,11 @@ static const uint16_t ts_small_parse_table[] = { [207271] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6484), 1, + ACTIONS(6493), 1, sym__entry_separator, - ACTIONS(10219), 1, + ACTIONS(10228), 1, anon_sym_LBRACK, - ACTIONS(10432), 1, + ACTIONS(10441), 1, anon_sym_RBRACK, STATE(3429), 1, aux_sym__multiple_types_repeat1, @@ -410245,11 +410245,11 @@ static const uint16_t ts_small_parse_table[] = { [207290] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6484), 1, + ACTIONS(6493), 1, sym__entry_separator, - ACTIONS(10219), 1, + ACTIONS(10228), 1, anon_sym_LBRACK, - ACTIONS(10434), 1, + ACTIONS(10443), 1, anon_sym_RBRACK, STATE(3429), 1, aux_sym__multiple_types_repeat1, @@ -410258,11 +410258,11 @@ static const uint16_t ts_small_parse_table[] = { [207309] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6484), 1, + ACTIONS(6493), 1, sym__entry_separator, - ACTIONS(10219), 1, + ACTIONS(10228), 1, anon_sym_LBRACK, - ACTIONS(10436), 1, + ACTIONS(10445), 1, anon_sym_RBRACK, STATE(3429), 1, aux_sym__multiple_types_repeat1, @@ -410271,11 +410271,11 @@ static const uint16_t ts_small_parse_table[] = { [207328] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6484), 1, + ACTIONS(6493), 1, sym__entry_separator, - ACTIONS(10219), 1, + ACTIONS(10228), 1, anon_sym_LBRACK, - ACTIONS(10438), 1, + ACTIONS(10447), 1, anon_sym_RBRACK, STATE(3429), 1, aux_sym__multiple_types_repeat1, @@ -410284,11 +410284,11 @@ static const uint16_t ts_small_parse_table[] = { [207347] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6484), 1, + ACTIONS(6493), 1, sym__entry_separator, - ACTIONS(10219), 1, + ACTIONS(10228), 1, anon_sym_LBRACK, - ACTIONS(10440), 1, + ACTIONS(10449), 1, anon_sym_RBRACK, STATE(3429), 1, aux_sym__multiple_types_repeat1, @@ -410297,11 +410297,11 @@ static const uint16_t ts_small_parse_table[] = { [207366] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6484), 1, + ACTIONS(6493), 1, sym__entry_separator, - ACTIONS(10219), 1, + ACTIONS(10228), 1, anon_sym_LBRACK, - ACTIONS(10442), 1, + ACTIONS(10451), 1, anon_sym_RBRACK, STATE(3429), 1, aux_sym__multiple_types_repeat1, @@ -410312,10 +410312,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6244), 1, sym_comment, - ACTIONS(7997), 2, + ACTIONS(8006), 2, anon_sym_AT, sym__entry_separator, - ACTIONS(7999), 2, + ACTIONS(8008), 2, anon_sym_RBRACK, anon_sym_GT2, [207400] = 6, @@ -410349,7 +410349,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6247), 1, sym_comment, - ACTIONS(10444), 4, + ACTIONS(10453), 4, sym_identifier, anon_sym_in2, anon_sym_nu, @@ -410357,13 +410357,13 @@ static const uint16_t ts_small_parse_table[] = { [207451] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10446), 1, + ACTIONS(10455), 1, anon_sym_DQUOTE, STATE(6248), 1, sym_comment, STATE(6252), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10194), 2, + ACTIONS(10203), 2, sym__escaped_str_content, sym_escape_sequence, [207468] = 4, @@ -410380,11 +410380,11 @@ static const uint16_t ts_small_parse_table[] = { [207483] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6484), 1, + ACTIONS(6493), 1, sym__entry_separator, - ACTIONS(10219), 1, + ACTIONS(10228), 1, anon_sym_LBRACK, - ACTIONS(10448), 1, + ACTIONS(10457), 1, anon_sym_RBRACK, STATE(3429), 1, aux_sym__multiple_types_repeat1, @@ -410395,23 +410395,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(1875), 1, aux_sym_unquoted_token2, - ACTIONS(10450), 1, + ACTIONS(10459), 1, anon_sym_DOT_DOT2, STATE(6251), 1, sym_comment, - ACTIONS(10452), 2, + ACTIONS(10461), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, [207519] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10454), 1, + ACTIONS(10463), 1, anon_sym_DQUOTE, STATE(6252), 1, sym_comment, STATE(6515), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10194), 2, + ACTIONS(10203), 2, sym__escaped_str_content, sym_escape_sequence, [207536] = 6, @@ -410432,18 +410432,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6254), 1, sym_comment, - ACTIONS(8001), 2, + ACTIONS(8010), 2, anon_sym_AT, sym__entry_separator, - ACTIONS(8003), 2, + ACTIONS(8012), 2, anon_sym_RBRACK, anon_sym_GT2, [207570] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3496), 1, + ACTIONS(3505), 1, anon_sym_COLON2, - ACTIONS(10456), 2, + ACTIONS(10465), 2, sym__newline, sym__space, STATE(6255), 2, @@ -410454,10 +410454,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6256), 1, sym_comment, - ACTIONS(8005), 2, + ACTIONS(8014), 2, anon_sym_AT, sym__entry_separator, - ACTIONS(8007), 2, + ACTIONS(8016), 2, anon_sym_RBRACK, anon_sym_GT2, [207600] = 3, @@ -410465,7 +410465,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6257), 1, sym_comment, - ACTIONS(10459), 4, + ACTIONS(10468), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, @@ -410473,11 +410473,11 @@ static const uint16_t ts_small_parse_table[] = { [207613] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6484), 1, + ACTIONS(6493), 1, sym__entry_separator, - ACTIONS(10219), 1, + ACTIONS(10228), 1, anon_sym_LBRACK, - ACTIONS(10461), 1, + ACTIONS(10470), 1, anon_sym_RBRACK, STATE(3429), 1, aux_sym__multiple_types_repeat1, @@ -410486,11 +410486,11 @@ static const uint16_t ts_small_parse_table[] = { [207632] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6484), 1, + ACTIONS(6493), 1, sym__entry_separator, - ACTIONS(10219), 1, + ACTIONS(10228), 1, anon_sym_LBRACK, - ACTIONS(10463), 1, + ACTIONS(10472), 1, anon_sym_RBRACK, STATE(3429), 1, aux_sym__multiple_types_repeat1, @@ -410499,11 +410499,11 @@ static const uint16_t ts_small_parse_table[] = { [207651] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6484), 1, + ACTIONS(6493), 1, sym__entry_separator, - ACTIONS(10219), 1, + ACTIONS(10228), 1, anon_sym_LBRACK, - ACTIONS(10465), 1, + ACTIONS(10474), 1, anon_sym_RBRACK, STATE(3429), 1, aux_sym__multiple_types_repeat1, @@ -410512,11 +410512,11 @@ static const uint16_t ts_small_parse_table[] = { [207670] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6484), 1, + ACTIONS(6493), 1, sym__entry_separator, - ACTIONS(10219), 1, + ACTIONS(10228), 1, anon_sym_LBRACK, - ACTIONS(10467), 1, + ACTIONS(10476), 1, anon_sym_RBRACK, STATE(3429), 1, aux_sym__multiple_types_repeat1, @@ -410525,11 +410525,11 @@ static const uint16_t ts_small_parse_table[] = { [207689] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6484), 1, + ACTIONS(6493), 1, sym__entry_separator, - ACTIONS(10219), 1, + ACTIONS(10228), 1, anon_sym_LBRACK, - ACTIONS(10469), 1, + ACTIONS(10478), 1, anon_sym_RBRACK, STATE(3429), 1, aux_sym__multiple_types_repeat1, @@ -410538,11 +410538,11 @@ static const uint16_t ts_small_parse_table[] = { [207708] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6484), 1, + ACTIONS(6493), 1, sym__entry_separator, - ACTIONS(10219), 1, + ACTIONS(10228), 1, anon_sym_LBRACK, - ACTIONS(10471), 1, + ACTIONS(10480), 1, anon_sym_RBRACK, STATE(3429), 1, aux_sym__multiple_types_repeat1, @@ -410551,11 +410551,11 @@ static const uint16_t ts_small_parse_table[] = { [207727] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6484), 1, + ACTIONS(6493), 1, sym__entry_separator, - ACTIONS(10219), 1, + ACTIONS(10228), 1, anon_sym_LBRACK, - ACTIONS(10473), 1, + ACTIONS(10482), 1, anon_sym_RBRACK, STATE(3429), 1, aux_sym__multiple_types_repeat1, @@ -410564,11 +410564,11 @@ static const uint16_t ts_small_parse_table[] = { [207746] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6484), 1, + ACTIONS(6493), 1, sym__entry_separator, - ACTIONS(10219), 1, + ACTIONS(10228), 1, anon_sym_LBRACK, - ACTIONS(10475), 1, + ACTIONS(10484), 1, anon_sym_RBRACK, STATE(3429), 1, aux_sym__multiple_types_repeat1, @@ -410579,7 +410579,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6266), 1, sym_comment, - ACTIONS(10477), 4, + ACTIONS(10486), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, @@ -410589,7 +410589,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6267), 1, sym_comment, - ACTIONS(10388), 4, + ACTIONS(10397), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, @@ -410597,11 +410597,11 @@ static const uint16_t ts_small_parse_table[] = { [207791] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6484), 1, + ACTIONS(6493), 1, sym__entry_separator, - ACTIONS(10219), 1, + ACTIONS(10228), 1, anon_sym_LBRACK, - ACTIONS(10479), 1, + ACTIONS(10488), 1, anon_sym_RBRACK, STATE(3429), 1, aux_sym__multiple_types_repeat1, @@ -410621,13 +410621,13 @@ static const uint16_t ts_small_parse_table[] = { [207825] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10481), 1, + ACTIONS(10490), 1, anon_sym_DQUOTE, STATE(6270), 1, sym_comment, STATE(6274), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10194), 2, + ACTIONS(10203), 2, sym__escaped_str_content, sym_escape_sequence, [207842] = 4, @@ -410635,10 +410635,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6271), 1, sym_comment, - ACTIONS(8219), 2, + ACTIONS(8228), 2, anon_sym_AT, sym__entry_separator, - ACTIONS(8221), 2, + ACTIONS(8230), 2, anon_sym_RBRACK, anon_sym_GT2, [207857] = 4, @@ -410657,7 +410657,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6273), 1, sym_comment, - ACTIONS(10483), 4, + ACTIONS(10492), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, @@ -410665,13 +410665,13 @@ static const uint16_t ts_small_parse_table[] = { [207885] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10485), 1, + ACTIONS(10494), 1, anon_sym_DQUOTE, STATE(6274), 1, sym_comment, STATE(6515), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10194), 2, + ACTIONS(10203), 2, sym__escaped_str_content, sym_escape_sequence, [207902] = 3, @@ -410679,7 +410679,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6275), 1, sym_comment, - ACTIONS(10487), 4, + ACTIONS(10496), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, @@ -410687,22 +410687,22 @@ static const uint16_t ts_small_parse_table[] = { [207915] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10489), 1, + ACTIONS(10498), 1, anon_sym_LPAREN, STATE(6276), 1, sym_comment, - ACTIONS(10491), 3, + ACTIONS(10500), 3, sym_escaped_interpolated_content, anon_sym_DQUOTE2, sym_inter_escape_sequence, [207930] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9156), 1, + ACTIONS(9165), 1, sym__entry_separator, - ACTIONS(10493), 1, + ACTIONS(10502), 1, anon_sym_COLON, - ACTIONS(10495), 1, + ACTIONS(10504), 1, anon_sym_GT2, STATE(5371), 1, aux_sym__multiple_types_repeat1, @@ -410711,23 +410711,23 @@ static const uint16_t ts_small_parse_table[] = { [207949] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10497), 1, + ACTIONS(10506), 1, anon_sym_DQUOTE, STATE(6278), 1, sym_comment, STATE(6515), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10194), 2, + ACTIONS(10203), 2, sym__escaped_str_content, sym_escape_sequence, [207966] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9156), 1, + ACTIONS(9165), 1, sym__entry_separator, - ACTIONS(10499), 1, + ACTIONS(10508), 1, anon_sym_COLON, - ACTIONS(10501), 1, + ACTIONS(10510), 1, anon_sym_GT2, STATE(5373), 1, aux_sym__multiple_types_repeat1, @@ -410736,11 +410736,11 @@ static const uint16_t ts_small_parse_table[] = { [207985] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6484), 1, + ACTIONS(6493), 1, sym__entry_separator, - ACTIONS(10219), 1, + ACTIONS(10228), 1, anon_sym_LBRACK, - ACTIONS(10503), 1, + ACTIONS(10512), 1, anon_sym_RBRACK, STATE(3429), 1, aux_sym__multiple_types_repeat1, @@ -410749,11 +410749,11 @@ static const uint16_t ts_small_parse_table[] = { [208004] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6484), 1, + ACTIONS(6493), 1, sym__entry_separator, - ACTIONS(10219), 1, + ACTIONS(10228), 1, anon_sym_LBRACK, - ACTIONS(10505), 1, + ACTIONS(10514), 1, anon_sym_RBRACK, STATE(3429), 1, aux_sym__multiple_types_repeat1, @@ -410762,11 +410762,11 @@ static const uint16_t ts_small_parse_table[] = { [208023] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6484), 1, + ACTIONS(6493), 1, sym__entry_separator, - ACTIONS(10219), 1, + ACTIONS(10228), 1, anon_sym_LBRACK, - ACTIONS(10507), 1, + ACTIONS(10516), 1, anon_sym_RBRACK, STATE(3429), 1, aux_sym__multiple_types_repeat1, @@ -410775,11 +410775,11 @@ static const uint16_t ts_small_parse_table[] = { [208042] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6484), 1, + ACTIONS(6493), 1, sym__entry_separator, - ACTIONS(10219), 1, + ACTIONS(10228), 1, anon_sym_LBRACK, - ACTIONS(10509), 1, + ACTIONS(10518), 1, anon_sym_RBRACK, STATE(3429), 1, aux_sym__multiple_types_repeat1, @@ -410788,11 +410788,11 @@ static const uint16_t ts_small_parse_table[] = { [208061] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6484), 1, + ACTIONS(6493), 1, sym__entry_separator, - ACTIONS(10219), 1, + ACTIONS(10228), 1, anon_sym_LBRACK, - ACTIONS(10511), 1, + ACTIONS(10520), 1, anon_sym_RBRACK, STATE(3429), 1, aux_sym__multiple_types_repeat1, @@ -410801,11 +410801,11 @@ static const uint16_t ts_small_parse_table[] = { [208080] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6484), 1, + ACTIONS(6493), 1, sym__entry_separator, - ACTIONS(10219), 1, + ACTIONS(10228), 1, anon_sym_LBRACK, - ACTIONS(10513), 1, + ACTIONS(10522), 1, anon_sym_RBRACK, STATE(3429), 1, aux_sym__multiple_types_repeat1, @@ -410814,11 +410814,11 @@ static const uint16_t ts_small_parse_table[] = { [208099] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6484), 1, + ACTIONS(6493), 1, sym__entry_separator, - ACTIONS(10219), 1, + ACTIONS(10228), 1, anon_sym_LBRACK, - ACTIONS(10515), 1, + ACTIONS(10524), 1, anon_sym_RBRACK, STATE(3429), 1, aux_sym__multiple_types_repeat1, @@ -410827,11 +410827,11 @@ static const uint16_t ts_small_parse_table[] = { [208118] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6484), 1, + ACTIONS(6493), 1, sym__entry_separator, - ACTIONS(10219), 1, + ACTIONS(10228), 1, anon_sym_LBRACK, - ACTIONS(10517), 1, + ACTIONS(10526), 1, anon_sym_RBRACK, STATE(3429), 1, aux_sym__multiple_types_repeat1, @@ -410840,11 +410840,11 @@ static const uint16_t ts_small_parse_table[] = { [208137] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9156), 1, + ACTIONS(9165), 1, sym__entry_separator, - ACTIONS(10519), 1, + ACTIONS(10528), 1, anon_sym_COLON, - ACTIONS(10521), 1, + ACTIONS(10530), 1, anon_sym_GT2, STATE(5374), 1, aux_sym__multiple_types_repeat1, @@ -410853,9 +410853,9 @@ static const uint16_t ts_small_parse_table[] = { [208156] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6901), 1, + ACTIONS(6910), 1, anon_sym_DOLLAR, - ACTIONS(8667), 1, + ACTIONS(8676), 1, sym_identifier, STATE(5492), 1, sym_val_variable, @@ -410868,7 +410868,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6290), 1, sym_comment, - ACTIONS(10523), 4, + ACTIONS(10532), 4, sym_identifier, anon_sym_in2, anon_sym_nu, @@ -410876,37 +410876,37 @@ static const uint16_t ts_small_parse_table[] = { [208188] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10525), 1, + ACTIONS(10534), 1, anon_sym_DQUOTE, STATE(6291), 1, sym_comment, STATE(6293), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10194), 2, + ACTIONS(10203), 2, sym__escaped_str_content, sym_escape_sequence, [208205] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10527), 1, + ACTIONS(10536), 1, anon_sym_DQUOTE, STATE(6292), 1, sym_comment, STATE(6515), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10194), 2, + ACTIONS(10203), 2, sym__escaped_str_content, sym_escape_sequence, [208222] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10529), 1, + ACTIONS(10538), 1, anon_sym_DQUOTE, STATE(6293), 1, sym_comment, STATE(6515), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10194), 2, + ACTIONS(10203), 2, sym__escaped_str_content, sym_escape_sequence, [208239] = 4, @@ -410923,23 +410923,23 @@ static const uint16_t ts_small_parse_table[] = { [208254] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10531), 1, + ACTIONS(10540), 1, anon_sym_DQUOTE, STATE(6295), 1, sym_comment, STATE(6515), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10194), 2, + ACTIONS(10203), 2, sym__escaped_str_content, sym_escape_sequence, [208271] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9156), 1, + ACTIONS(9165), 1, sym__entry_separator, - ACTIONS(10533), 1, + ACTIONS(10542), 1, anon_sym_COLON, - ACTIONS(10535), 1, + ACTIONS(10544), 1, anon_sym_GT2, STATE(5375), 1, aux_sym__multiple_types_repeat1, @@ -410948,11 +410948,11 @@ static const uint16_t ts_small_parse_table[] = { [208290] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6484), 1, + ACTIONS(6493), 1, sym__entry_separator, - ACTIONS(10219), 1, + ACTIONS(10228), 1, anon_sym_LBRACK, - ACTIONS(10537), 1, + ACTIONS(10546), 1, anon_sym_RBRACK, STATE(3429), 1, aux_sym__multiple_types_repeat1, @@ -410961,11 +410961,11 @@ static const uint16_t ts_small_parse_table[] = { [208309] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6484), 1, + ACTIONS(6493), 1, sym__entry_separator, - ACTIONS(10219), 1, + ACTIONS(10228), 1, anon_sym_LBRACK, - ACTIONS(10539), 1, + ACTIONS(10548), 1, anon_sym_RBRACK, STATE(3429), 1, aux_sym__multiple_types_repeat1, @@ -410974,11 +410974,11 @@ static const uint16_t ts_small_parse_table[] = { [208328] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6484), 1, + ACTIONS(6493), 1, sym__entry_separator, - ACTIONS(10219), 1, + ACTIONS(10228), 1, anon_sym_LBRACK, - ACTIONS(10541), 1, + ACTIONS(10550), 1, anon_sym_RBRACK, STATE(3429), 1, aux_sym__multiple_types_repeat1, @@ -410987,11 +410987,11 @@ static const uint16_t ts_small_parse_table[] = { [208347] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6484), 1, + ACTIONS(6493), 1, sym__entry_separator, - ACTIONS(10219), 1, + ACTIONS(10228), 1, anon_sym_LBRACK, - ACTIONS(10543), 1, + ACTIONS(10552), 1, anon_sym_RBRACK, STATE(3429), 1, aux_sym__multiple_types_repeat1, @@ -411000,11 +411000,11 @@ static const uint16_t ts_small_parse_table[] = { [208366] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6484), 1, + ACTIONS(6493), 1, sym__entry_separator, - ACTIONS(10219), 1, + ACTIONS(10228), 1, anon_sym_LBRACK, - ACTIONS(10545), 1, + ACTIONS(10554), 1, anon_sym_RBRACK, STATE(3429), 1, aux_sym__multiple_types_repeat1, @@ -411013,11 +411013,11 @@ static const uint16_t ts_small_parse_table[] = { [208385] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6484), 1, + ACTIONS(6493), 1, sym__entry_separator, - ACTIONS(10219), 1, + ACTIONS(10228), 1, anon_sym_LBRACK, - ACTIONS(10547), 1, + ACTIONS(10556), 1, anon_sym_RBRACK, STATE(3429), 1, aux_sym__multiple_types_repeat1, @@ -411026,11 +411026,11 @@ static const uint16_t ts_small_parse_table[] = { [208404] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6484), 1, + ACTIONS(6493), 1, sym__entry_separator, - ACTIONS(10219), 1, + ACTIONS(10228), 1, anon_sym_LBRACK, - ACTIONS(10549), 1, + ACTIONS(10558), 1, anon_sym_RBRACK, STATE(3429), 1, aux_sym__multiple_types_repeat1, @@ -411039,11 +411039,11 @@ static const uint16_t ts_small_parse_table[] = { [208423] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6484), 1, + ACTIONS(6493), 1, sym__entry_separator, - ACTIONS(10219), 1, + ACTIONS(10228), 1, anon_sym_LBRACK, - ACTIONS(10551), 1, + ACTIONS(10560), 1, anon_sym_RBRACK, STATE(3429), 1, aux_sym__multiple_types_repeat1, @@ -411054,7 +411054,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6305), 1, sym_comment, - ACTIONS(10553), 4, + ACTIONS(10562), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, @@ -411064,7 +411064,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6306), 1, sym_comment, - ACTIONS(10555), 4, + ACTIONS(10564), 4, sym_identifier, anon_sym_in2, anon_sym_nu, @@ -411072,35 +411072,35 @@ static const uint16_t ts_small_parse_table[] = { [208468] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10557), 1, + ACTIONS(10566), 1, anon_sym_DQUOTE, STATE(6307), 1, sym_comment, STATE(6308), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10194), 2, + ACTIONS(10203), 2, sym__escaped_str_content, sym_escape_sequence, [208485] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10559), 1, + ACTIONS(10568), 1, anon_sym_DQUOTE, STATE(6308), 1, sym_comment, STATE(6515), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10194), 2, + ACTIONS(10203), 2, sym__escaped_str_content, sym_escape_sequence, [208502] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9156), 1, + ACTIONS(9165), 1, sym__entry_separator, - ACTIONS(10561), 1, + ACTIONS(10570), 1, anon_sym_COLON, - ACTIONS(10563), 1, + ACTIONS(10572), 1, anon_sym_GT2, STATE(5414), 1, aux_sym__multiple_types_repeat1, @@ -411109,35 +411109,35 @@ static const uint16_t ts_small_parse_table[] = { [208521] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10565), 1, + ACTIONS(10574), 1, anon_sym_DQUOTE, STATE(6292), 1, aux_sym__str_double_quotes_repeat1, STATE(6310), 1, sym_comment, - ACTIONS(10194), 2, + ACTIONS(10203), 2, sym__escaped_str_content, sym_escape_sequence, [208538] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7508), 1, + ACTIONS(7517), 1, anon_sym_COLON2, STATE(6311), 1, sym_comment, STATE(6583), 1, aux_sym_ctrl_do_parenthesized_repeat2, - ACTIONS(7502), 2, + ACTIONS(7511), 2, sym__newline, sym__space, [208555] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6484), 1, + ACTIONS(6493), 1, sym__entry_separator, - ACTIONS(10219), 1, + ACTIONS(10228), 1, anon_sym_LBRACK, - ACTIONS(10567), 1, + ACTIONS(10576), 1, anon_sym_RBRACK, STATE(3429), 1, aux_sym__multiple_types_repeat1, @@ -411146,11 +411146,11 @@ static const uint16_t ts_small_parse_table[] = { [208574] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6484), 1, + ACTIONS(6493), 1, sym__entry_separator, - ACTIONS(10219), 1, + ACTIONS(10228), 1, anon_sym_LBRACK, - ACTIONS(10569), 1, + ACTIONS(10578), 1, anon_sym_RBRACK, STATE(3429), 1, aux_sym__multiple_types_repeat1, @@ -411159,11 +411159,11 @@ static const uint16_t ts_small_parse_table[] = { [208593] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6484), 1, + ACTIONS(6493), 1, sym__entry_separator, - ACTIONS(10219), 1, + ACTIONS(10228), 1, anon_sym_LBRACK, - ACTIONS(10571), 1, + ACTIONS(10580), 1, anon_sym_RBRACK, STATE(3429), 1, aux_sym__multiple_types_repeat1, @@ -411172,11 +411172,11 @@ static const uint16_t ts_small_parse_table[] = { [208612] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6484), 1, + ACTIONS(6493), 1, sym__entry_separator, - ACTIONS(10219), 1, + ACTIONS(10228), 1, anon_sym_LBRACK, - ACTIONS(10573), 1, + ACTIONS(10582), 1, anon_sym_RBRACK, STATE(3429), 1, aux_sym__multiple_types_repeat1, @@ -411185,11 +411185,11 @@ static const uint16_t ts_small_parse_table[] = { [208631] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6484), 1, + ACTIONS(6493), 1, sym__entry_separator, - ACTIONS(10219), 1, + ACTIONS(10228), 1, anon_sym_LBRACK, - ACTIONS(10575), 1, + ACTIONS(10584), 1, anon_sym_RBRACK, STATE(3429), 1, aux_sym__multiple_types_repeat1, @@ -411198,11 +411198,11 @@ static const uint16_t ts_small_parse_table[] = { [208650] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6484), 1, + ACTIONS(6493), 1, sym__entry_separator, - ACTIONS(10219), 1, + ACTIONS(10228), 1, anon_sym_LBRACK, - ACTIONS(10577), 1, + ACTIONS(10586), 1, anon_sym_RBRACK, STATE(3429), 1, aux_sym__multiple_types_repeat1, @@ -411211,11 +411211,11 @@ static const uint16_t ts_small_parse_table[] = { [208669] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6484), 1, + ACTIONS(6493), 1, sym__entry_separator, - ACTIONS(10219), 1, + ACTIONS(10228), 1, anon_sym_LBRACK, - ACTIONS(10579), 1, + ACTIONS(10588), 1, anon_sym_RBRACK, STATE(3429), 1, aux_sym__multiple_types_repeat1, @@ -411224,11 +411224,11 @@ static const uint16_t ts_small_parse_table[] = { [208688] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6484), 1, + ACTIONS(6493), 1, sym__entry_separator, - ACTIONS(10219), 1, + ACTIONS(10228), 1, anon_sym_LBRACK, - ACTIONS(10581), 1, + ACTIONS(10590), 1, anon_sym_RBRACK, STATE(3429), 1, aux_sym__multiple_types_repeat1, @@ -411237,11 +411237,11 @@ static const uint16_t ts_small_parse_table[] = { [208707] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6484), 1, + ACTIONS(6493), 1, sym__entry_separator, - ACTIONS(10219), 1, + ACTIONS(10228), 1, anon_sym_LBRACK, - ACTIONS(10583), 1, + ACTIONS(10592), 1, anon_sym_RBRACK, STATE(3429), 1, aux_sym__multiple_types_repeat1, @@ -411252,7 +411252,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6321), 1, sym_comment, - ACTIONS(10585), 4, + ACTIONS(10594), 4, sym_identifier, anon_sym_in2, anon_sym_nu, @@ -411260,13 +411260,13 @@ static const uint16_t ts_small_parse_table[] = { [208739] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10587), 1, + ACTIONS(10596), 1, anon_sym_DQUOTE, STATE(6322), 1, sym_comment, STATE(6324), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10194), 2, + ACTIONS(10203), 2, sym__escaped_str_content, sym_escape_sequence, [208756] = 3, @@ -411274,7 +411274,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6323), 1, sym_comment, - ACTIONS(10589), 4, + ACTIONS(10598), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, @@ -411282,23 +411282,23 @@ static const uint16_t ts_small_parse_table[] = { [208769] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10591), 1, + ACTIONS(10600), 1, anon_sym_DQUOTE, STATE(6324), 1, sym_comment, STATE(6515), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10194), 2, + ACTIONS(10203), 2, sym__escaped_str_content, sym_escape_sequence, [208786] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6484), 1, + ACTIONS(6493), 1, sym__entry_separator, - ACTIONS(10219), 1, + ACTIONS(10228), 1, anon_sym_LBRACK, - ACTIONS(10593), 1, + ACTIONS(10602), 1, anon_sym_RBRACK, STATE(3429), 1, aux_sym__multiple_types_repeat1, @@ -411307,9 +411307,9 @@ static const uint16_t ts_small_parse_table[] = { [208805] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3802), 1, + ACTIONS(3811), 1, sym__newline, - ACTIONS(6235), 1, + ACTIONS(6244), 1, anon_sym_LBRACE, STATE(1706), 1, aux_sym_shebang_repeat1, @@ -411322,7 +411322,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6327), 1, sym_comment, - ACTIONS(10595), 4, + ACTIONS(10604), 4, sym_identifier, anon_sym_in2, anon_sym_nu, @@ -411330,13 +411330,13 @@ static const uint16_t ts_small_parse_table[] = { [208837] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10597), 1, + ACTIONS(10606), 1, anon_sym_DQUOTE, STATE(6328), 1, sym_comment, STATE(6330), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10194), 2, + ACTIONS(10203), 2, sym__escaped_str_content, sym_escape_sequence, [208854] = 3, @@ -411344,7 +411344,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6329), 1, sym_comment, - ACTIONS(10599), 4, + ACTIONS(10608), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, @@ -411352,23 +411352,23 @@ static const uint16_t ts_small_parse_table[] = { [208867] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10601), 1, + ACTIONS(10610), 1, anon_sym_DQUOTE, STATE(6330), 1, sym_comment, STATE(6515), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10194), 2, + ACTIONS(10203), 2, sym__escaped_str_content, sym_escape_sequence, [208884] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6484), 1, + ACTIONS(6493), 1, sym__entry_separator, - ACTIONS(10219), 1, + ACTIONS(10228), 1, anon_sym_LBRACK, - ACTIONS(10603), 1, + ACTIONS(10612), 1, anon_sym_RBRACK, STATE(3429), 1, aux_sym__multiple_types_repeat1, @@ -411379,7 +411379,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6332), 1, sym_comment, - ACTIONS(10605), 4, + ACTIONS(10614), 4, sym_identifier, anon_sym_in2, anon_sym_nu, @@ -411387,23 +411387,23 @@ static const uint16_t ts_small_parse_table[] = { [208916] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10607), 1, + ACTIONS(10616), 1, anon_sym_DQUOTE, STATE(6333), 1, sym_comment, STATE(6335), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10194), 2, + ACTIONS(10203), 2, sym__escaped_str_content, sym_escape_sequence, [208933] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6484), 1, + ACTIONS(6493), 1, sym__entry_separator, - ACTIONS(10219), 1, + ACTIONS(10228), 1, anon_sym_LBRACK, - ACTIONS(10609), 1, + ACTIONS(10618), 1, anon_sym_RBRACK, STATE(3429), 1, aux_sym__multiple_types_repeat1, @@ -411412,25 +411412,25 @@ static const uint16_t ts_small_parse_table[] = { [208952] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10611), 1, + ACTIONS(10620), 1, anon_sym_DQUOTE, STATE(6335), 1, sym_comment, STATE(6515), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10194), 2, + ACTIONS(10203), 2, sym__escaped_str_content, sym_escape_sequence, [208969] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10613), 1, + ACTIONS(10622), 1, anon_sym_COLON2, STATE(6255), 1, aux_sym_ctrl_do_parenthesized_repeat2, STATE(6336), 1, sym_comment, - ACTIONS(7502), 2, + ACTIONS(7511), 2, sym__newline, sym__space, [208986] = 3, @@ -411438,7 +411438,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6337), 1, sym_comment, - ACTIONS(10615), 4, + ACTIONS(10624), 4, sym_identifier, anon_sym_in2, anon_sym_nu, @@ -411446,23 +411446,23 @@ static const uint16_t ts_small_parse_table[] = { [208999] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10617), 1, + ACTIONS(10626), 1, anon_sym_DQUOTE, STATE(6338), 1, sym_comment, STATE(6340), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10194), 2, + ACTIONS(10203), 2, sym__escaped_str_content, sym_escape_sequence, [209016] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6484), 1, + ACTIONS(6493), 1, sym__entry_separator, - ACTIONS(10219), 1, + ACTIONS(10228), 1, anon_sym_LBRACK, - ACTIONS(10619), 1, + ACTIONS(10628), 1, anon_sym_RBRACK, STATE(3429), 1, aux_sym__multiple_types_repeat1, @@ -411471,23 +411471,23 @@ static const uint16_t ts_small_parse_table[] = { [209035] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10621), 1, + ACTIONS(10630), 1, anon_sym_DQUOTE, STATE(6340), 1, sym_comment, STATE(6515), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10194), 2, + ACTIONS(10203), 2, sym__escaped_str_content, sym_escape_sequence, [209052] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9156), 1, + ACTIONS(9165), 1, sym__entry_separator, - ACTIONS(10623), 1, + ACTIONS(10632), 1, anon_sym_COLON, - ACTIONS(10625), 1, + ACTIONS(10634), 1, anon_sym_GT2, STATE(5299), 1, aux_sym__multiple_types_repeat1, @@ -411498,7 +411498,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6342), 1, sym_comment, - ACTIONS(10627), 4, + ACTIONS(10636), 4, sym_identifier, anon_sym_in2, anon_sym_nu, @@ -411506,35 +411506,35 @@ static const uint16_t ts_small_parse_table[] = { [209084] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10629), 1, + ACTIONS(10638), 1, anon_sym_DQUOTE, STATE(6343), 1, sym_comment, STATE(6344), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10194), 2, + ACTIONS(10203), 2, sym__escaped_str_content, sym_escape_sequence, [209101] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10631), 1, + ACTIONS(10640), 1, anon_sym_DQUOTE, STATE(6344), 1, sym_comment, STATE(6515), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10194), 2, + ACTIONS(10203), 2, sym__escaped_str_content, sym_escape_sequence, [209118] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9156), 1, + ACTIONS(9165), 1, sym__entry_separator, - ACTIONS(10633), 1, + ACTIONS(10642), 1, anon_sym_COLON, - ACTIONS(10635), 1, + ACTIONS(10644), 1, anon_sym_GT2, STATE(5345), 1, aux_sym__multiple_types_repeat1, @@ -411545,7 +411545,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6346), 1, sym_comment, - ACTIONS(10637), 4, + ACTIONS(10646), 4, sym_identifier, anon_sym_in2, anon_sym_nu, @@ -411553,33 +411553,33 @@ static const uint16_t ts_small_parse_table[] = { [209150] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10639), 1, + ACTIONS(10648), 1, anon_sym_DQUOTE, STATE(6347), 1, sym_comment, STATE(6348), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10194), 2, + ACTIONS(10203), 2, sym__escaped_str_content, sym_escape_sequence, [209167] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10641), 1, + ACTIONS(10650), 1, anon_sym_DQUOTE, STATE(6348), 1, sym_comment, STATE(6515), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10194), 2, + ACTIONS(10203), 2, sym__escaped_str_content, sym_escape_sequence, [209184] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(10212), 1, + ACTIONS(10221), 1, anon_sym_LBRACK, - ACTIONS(10214), 1, + ACTIONS(10223), 1, anon_sym_LPAREN, STATE(5767), 1, sym_parameter_parens, @@ -411592,7 +411592,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6350), 1, sym_comment, - ACTIONS(10643), 4, + ACTIONS(10652), 4, sym_identifier, anon_sym_in2, anon_sym_nu, @@ -411600,35 +411600,35 @@ static const uint16_t ts_small_parse_table[] = { [209216] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10645), 1, + ACTIONS(10654), 1, anon_sym_DQUOTE, STATE(6351), 1, sym_comment, STATE(6352), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10194), 2, + ACTIONS(10203), 2, sym__escaped_str_content, sym_escape_sequence, [209233] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10647), 1, + ACTIONS(10656), 1, anon_sym_DQUOTE, STATE(6352), 1, sym_comment, STATE(6515), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10194), 2, + ACTIONS(10203), 2, sym__escaped_str_content, sym_escape_sequence, [209250] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6484), 1, + ACTIONS(6493), 1, sym__entry_separator, - ACTIONS(10219), 1, + ACTIONS(10228), 1, anon_sym_LBRACK, - ACTIONS(10649), 1, + ACTIONS(10658), 1, anon_sym_RBRACK, STATE(3429), 1, aux_sym__multiple_types_repeat1, @@ -411639,7 +411639,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6354), 1, sym_comment, - ACTIONS(10651), 4, + ACTIONS(10660), 4, sym_identifier, anon_sym_in2, anon_sym_nu, @@ -411647,35 +411647,35 @@ static const uint16_t ts_small_parse_table[] = { [209282] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10653), 1, + ACTIONS(10662), 1, anon_sym_DQUOTE, STATE(6355), 1, sym_comment, STATE(6356), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10194), 2, + ACTIONS(10203), 2, sym__escaped_str_content, sym_escape_sequence, [209299] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10655), 1, + ACTIONS(10664), 1, anon_sym_DQUOTE, STATE(6356), 1, sym_comment, STATE(6515), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10194), 2, + ACTIONS(10203), 2, sym__escaped_str_content, sym_escape_sequence, [209316] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9156), 1, + ACTIONS(9165), 1, sym__entry_separator, - ACTIONS(10657), 1, + ACTIONS(10666), 1, anon_sym_COLON, - ACTIONS(10659), 1, + ACTIONS(10668), 1, anon_sym_GT2, STATE(5348), 1, aux_sym__multiple_types_repeat1, @@ -411686,7 +411686,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6358), 1, sym_comment, - ACTIONS(10661), 4, + ACTIONS(10670), 4, sym_identifier, anon_sym_in2, anon_sym_nu, @@ -411694,35 +411694,35 @@ static const uint16_t ts_small_parse_table[] = { [209348] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10663), 1, + ACTIONS(10672), 1, anon_sym_DQUOTE, STATE(6359), 1, sym_comment, STATE(6360), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10194), 2, + ACTIONS(10203), 2, sym__escaped_str_content, sym_escape_sequence, [209365] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10665), 1, + ACTIONS(10674), 1, anon_sym_DQUOTE, STATE(6360), 1, sym_comment, STATE(6515), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10194), 2, + ACTIONS(10203), 2, sym__escaped_str_content, sym_escape_sequence, [209382] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6484), 1, + ACTIONS(6493), 1, sym__entry_separator, - ACTIONS(10219), 1, + ACTIONS(10228), 1, anon_sym_LBRACK, - ACTIONS(10667), 1, + ACTIONS(10676), 1, anon_sym_RBRACK, STATE(3429), 1, aux_sym__multiple_types_repeat1, @@ -411733,7 +411733,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6362), 1, sym_comment, - ACTIONS(10669), 4, + ACTIONS(10678), 4, sym_identifier, anon_sym_in2, anon_sym_nu, @@ -411741,35 +411741,35 @@ static const uint16_t ts_small_parse_table[] = { [209414] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10671), 1, + ACTIONS(10680), 1, anon_sym_DQUOTE, STATE(6363), 1, sym_comment, STATE(6364), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10194), 2, + ACTIONS(10203), 2, sym__escaped_str_content, sym_escape_sequence, [209431] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10673), 1, + ACTIONS(10682), 1, anon_sym_DQUOTE, STATE(6364), 1, sym_comment, STATE(6515), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10194), 2, + ACTIONS(10203), 2, sym__escaped_str_content, sym_escape_sequence, [209448] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6484), 1, + ACTIONS(6493), 1, sym__entry_separator, - ACTIONS(10219), 1, + ACTIONS(10228), 1, anon_sym_LBRACK, - ACTIONS(10675), 1, + ACTIONS(10684), 1, anon_sym_RBRACK, STATE(3429), 1, aux_sym__multiple_types_repeat1, @@ -411780,7 +411780,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6366), 1, sym_comment, - ACTIONS(10677), 4, + ACTIONS(10686), 4, sym_identifier, anon_sym_in2, anon_sym_nu, @@ -411788,35 +411788,35 @@ static const uint16_t ts_small_parse_table[] = { [209480] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10679), 1, + ACTIONS(10688), 1, anon_sym_DQUOTE, STATE(6367), 1, sym_comment, STATE(6368), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10194), 2, + ACTIONS(10203), 2, sym__escaped_str_content, sym_escape_sequence, [209497] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10681), 1, + ACTIONS(10690), 1, anon_sym_DQUOTE, STATE(6368), 1, sym_comment, STATE(6515), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10194), 2, + ACTIONS(10203), 2, sym__escaped_str_content, sym_escape_sequence, [209514] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9156), 1, + ACTIONS(9165), 1, sym__entry_separator, - ACTIONS(10683), 1, + ACTIONS(10692), 1, anon_sym_COLON, - ACTIONS(10685), 1, + ACTIONS(10694), 1, anon_sym_GT2, STATE(5364), 1, aux_sym__multiple_types_repeat1, @@ -411827,7 +411827,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6370), 1, sym_comment, - ACTIONS(10687), 4, + ACTIONS(10696), 4, sym_identifier, anon_sym_in2, anon_sym_nu, @@ -411835,25 +411835,25 @@ static const uint16_t ts_small_parse_table[] = { [209546] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10689), 1, + ACTIONS(10698), 1, anon_sym_DQUOTE, STATE(6371), 1, sym_comment, STATE(6372), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10194), 2, + ACTIONS(10203), 2, sym__escaped_str_content, sym_escape_sequence, [209563] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10691), 1, + ACTIONS(10700), 1, anon_sym_DQUOTE, STATE(6372), 1, sym_comment, STATE(6515), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10194), 2, + ACTIONS(10203), 2, sym__escaped_str_content, sym_escape_sequence, [209580] = 3, @@ -411861,7 +411861,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6373), 1, sym_comment, - ACTIONS(10693), 4, + ACTIONS(10702), 4, sym_identifier, anon_sym_in2, anon_sym_nu, @@ -411869,25 +411869,25 @@ static const uint16_t ts_small_parse_table[] = { [209593] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10695), 1, + ACTIONS(10704), 1, anon_sym_DQUOTE, STATE(6374), 1, sym_comment, STATE(6375), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10194), 2, + ACTIONS(10203), 2, sym__escaped_str_content, sym_escape_sequence, [209610] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10697), 1, + ACTIONS(10706), 1, anon_sym_DQUOTE, STATE(6375), 1, sym_comment, STATE(6515), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10194), 2, + ACTIONS(10203), 2, sym__escaped_str_content, sym_escape_sequence, [209627] = 3, @@ -411895,7 +411895,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6376), 1, sym_comment, - ACTIONS(10699), 4, + ACTIONS(10708), 4, sym_identifier, anon_sym_in2, anon_sym_nu, @@ -411903,25 +411903,25 @@ static const uint16_t ts_small_parse_table[] = { [209640] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10701), 1, + ACTIONS(10710), 1, anon_sym_DQUOTE, STATE(6377), 1, sym_comment, STATE(6378), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10194), 2, + ACTIONS(10203), 2, sym__escaped_str_content, sym_escape_sequence, [209657] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10703), 1, + ACTIONS(10712), 1, anon_sym_DQUOTE, STATE(6378), 1, sym_comment, STATE(6515), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10194), 2, + ACTIONS(10203), 2, sym__escaped_str_content, sym_escape_sequence, [209674] = 3, @@ -411929,7 +411929,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6379), 1, sym_comment, - ACTIONS(10705), 4, + ACTIONS(10714), 4, sym_identifier, anon_sym_in2, anon_sym_nu, @@ -411937,25 +411937,25 @@ static const uint16_t ts_small_parse_table[] = { [209687] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10707), 1, + ACTIONS(10716), 1, anon_sym_DQUOTE, STATE(6380), 1, sym_comment, STATE(6381), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10194), 2, + ACTIONS(10203), 2, sym__escaped_str_content, sym_escape_sequence, [209704] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10709), 1, + ACTIONS(10718), 1, anon_sym_DQUOTE, STATE(6381), 1, sym_comment, STATE(6515), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10194), 2, + ACTIONS(10203), 2, sym__escaped_str_content, sym_escape_sequence, [209721] = 3, @@ -411963,7 +411963,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6382), 1, sym_comment, - ACTIONS(10711), 4, + ACTIONS(10720), 4, sym_identifier, anon_sym_in2, anon_sym_nu, @@ -411971,25 +411971,25 @@ static const uint16_t ts_small_parse_table[] = { [209734] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10713), 1, + ACTIONS(10722), 1, anon_sym_DQUOTE, STATE(6383), 1, sym_comment, STATE(6384), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10194), 2, + ACTIONS(10203), 2, sym__escaped_str_content, sym_escape_sequence, [209751] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10715), 1, + ACTIONS(10724), 1, anon_sym_DQUOTE, STATE(6384), 1, sym_comment, STATE(6515), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10194), 2, + ACTIONS(10203), 2, sym__escaped_str_content, sym_escape_sequence, [209768] = 3, @@ -411997,7 +411997,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6385), 1, sym_comment, - ACTIONS(10717), 4, + ACTIONS(10726), 4, sym_identifier, anon_sym_in2, anon_sym_nu, @@ -412005,35 +412005,35 @@ static const uint16_t ts_small_parse_table[] = { [209781] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10719), 1, + ACTIONS(10728), 1, anon_sym_DQUOTE, STATE(6386), 1, sym_comment, STATE(6387), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10194), 2, + ACTIONS(10203), 2, sym__escaped_str_content, sym_escape_sequence, [209798] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10721), 1, + ACTIONS(10730), 1, anon_sym_DQUOTE, STATE(6387), 1, sym_comment, STATE(6515), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10194), 2, + ACTIONS(10203), 2, sym__escaped_str_content, sym_escape_sequence, [209815] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5464), 1, + ACTIONS(5473), 1, anon_sym_LPAREN2, - ACTIONS(10723), 1, + ACTIONS(10732), 1, anon_sym_RBRACK, - ACTIONS(10725), 1, + ACTIONS(10734), 1, sym__entry_separator, STATE(6388), 1, sym_comment, @@ -412042,119 +412042,119 @@ static const uint16_t ts_small_parse_table[] = { [209834] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10727), 1, + ACTIONS(10736), 1, anon_sym_DQUOTE, STATE(6389), 1, sym_comment, STATE(6515), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10194), 2, + ACTIONS(10203), 2, sym__escaped_str_content, sym_escape_sequence, [209851] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10729), 1, + ACTIONS(10738), 1, anon_sym_DQUOTE, STATE(6390), 1, sym_comment, STATE(6391), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10194), 2, + ACTIONS(10203), 2, sym__escaped_str_content, sym_escape_sequence, [209868] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10731), 1, + ACTIONS(10740), 1, anon_sym_DQUOTE, STATE(6391), 1, sym_comment, STATE(6515), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10194), 2, + ACTIONS(10203), 2, sym__escaped_str_content, sym_escape_sequence, [209885] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10733), 1, + ACTIONS(10742), 1, anon_sym_DQUOTE, STATE(6392), 1, sym_comment, STATE(6393), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10194), 2, + ACTIONS(10203), 2, sym__escaped_str_content, sym_escape_sequence, [209902] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10735), 1, + ACTIONS(10744), 1, anon_sym_DQUOTE, STATE(6393), 1, sym_comment, STATE(6515), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10194), 2, + ACTIONS(10203), 2, sym__escaped_str_content, sym_escape_sequence, [209919] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10737), 1, + ACTIONS(10746), 1, anon_sym_DQUOTE, STATE(6394), 1, sym_comment, STATE(6395), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10194), 2, + ACTIONS(10203), 2, sym__escaped_str_content, sym_escape_sequence, [209936] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10739), 1, + ACTIONS(10748), 1, anon_sym_DQUOTE, STATE(6395), 1, sym_comment, STATE(6515), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10194), 2, + ACTIONS(10203), 2, sym__escaped_str_content, sym_escape_sequence, [209953] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10741), 1, + ACTIONS(10750), 1, anon_sym_DQUOTE, STATE(6396), 1, sym_comment, STATE(6397), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10194), 2, + ACTIONS(10203), 2, sym__escaped_str_content, sym_escape_sequence, [209970] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10743), 1, + ACTIONS(10752), 1, anon_sym_DQUOTE, STATE(6397), 1, sym_comment, STATE(6515), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10194), 2, + ACTIONS(10203), 2, sym__escaped_str_content, sym_escape_sequence, [209987] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6484), 1, + ACTIONS(6493), 1, sym__entry_separator, - ACTIONS(10219), 1, + ACTIONS(10228), 1, anon_sym_LBRACK, - ACTIONS(10745), 1, + ACTIONS(10754), 1, anon_sym_RBRACK, STATE(3429), 1, aux_sym__multiple_types_repeat1, @@ -412163,11 +412163,11 @@ static const uint16_t ts_small_parse_table[] = { [210006] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6484), 1, + ACTIONS(6493), 1, sym__entry_separator, - ACTIONS(10219), 1, + ACTIONS(10228), 1, anon_sym_LBRACK, - ACTIONS(10747), 1, + ACTIONS(10756), 1, anon_sym_RBRACK, STATE(3429), 1, aux_sym__multiple_types_repeat1, @@ -412178,7 +412178,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6400), 1, sym_comment, - ACTIONS(10749), 4, + ACTIONS(10758), 4, sym_identifier, anon_sym_in2, anon_sym_nu, @@ -412188,7 +412188,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6401), 1, sym_comment, - ACTIONS(10751), 4, + ACTIONS(10760), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, @@ -412196,11 +412196,11 @@ static const uint16_t ts_small_parse_table[] = { [210051] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6583), 1, + ACTIONS(6592), 1, sym__newline, - ACTIONS(10753), 1, + ACTIONS(10762), 1, anon_sym_EQ, - ACTIONS(10755), 1, + ACTIONS(10764), 1, anon_sym_COLON, STATE(3837), 1, aux_sym_shebang_repeat1, @@ -412211,7 +412211,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6403), 1, sym_comment, - ACTIONS(10757), 4, + ACTIONS(10766), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, @@ -412221,7 +412221,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6404), 1, sym_comment, - ACTIONS(10759), 4, + ACTIONS(10768), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, @@ -412229,9 +412229,9 @@ static const uint16_t ts_small_parse_table[] = { [210096] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(10212), 1, + ACTIONS(10221), 1, anon_sym_LBRACK, - ACTIONS(10214), 1, + ACTIONS(10223), 1, anon_sym_LPAREN, STATE(3219), 1, sym_parameter_parens, @@ -412242,11 +412242,11 @@ static const uint16_t ts_small_parse_table[] = { [210115] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6484), 1, + ACTIONS(6493), 1, sym__entry_separator, - ACTIONS(10219), 1, + ACTIONS(10228), 1, anon_sym_LBRACK, - ACTIONS(10761), 1, + ACTIONS(10770), 1, anon_sym_RBRACK, STATE(3429), 1, aux_sym__multiple_types_repeat1, @@ -412255,11 +412255,11 @@ static const uint16_t ts_small_parse_table[] = { [210134] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5464), 1, + ACTIONS(5473), 1, anon_sym_LPAREN2, - ACTIONS(10763), 1, + ACTIONS(10772), 1, anon_sym_RBRACK, - ACTIONS(10765), 1, + ACTIONS(10774), 1, sym__entry_separator, STATE(6407), 1, sym_comment, @@ -412268,23 +412268,23 @@ static const uint16_t ts_small_parse_table[] = { [210153] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(10200), 1, + ACTIONS(10209), 1, anon_sym_DOT_DOT2, - ACTIONS(10767), 1, + ACTIONS(10776), 1, anon_sym_LBRACE, STATE(6408), 1, sym_comment, - ACTIONS(10202), 2, + ACTIONS(10211), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, [210170] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6484), 1, + ACTIONS(6493), 1, sym__entry_separator, - ACTIONS(10219), 1, + ACTIONS(10228), 1, anon_sym_LBRACK, - ACTIONS(10769), 1, + ACTIONS(10778), 1, anon_sym_RBRACK, STATE(3429), 1, aux_sym__multiple_types_repeat1, @@ -412293,11 +412293,11 @@ static const uint16_t ts_small_parse_table[] = { [210189] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6484), 1, + ACTIONS(6493), 1, sym__entry_separator, - ACTIONS(10219), 1, + ACTIONS(10228), 1, anon_sym_LBRACK, - ACTIONS(10771), 1, + ACTIONS(10780), 1, anon_sym_RBRACK, STATE(3429), 1, aux_sym__multiple_types_repeat1, @@ -412308,7 +412308,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(2322), 1, sym__entry_separator, - ACTIONS(10773), 1, + ACTIONS(10782), 1, anon_sym_LBRACK2, STATE(6411), 1, sym_comment, @@ -412318,9 +412318,9 @@ static const uint16_t ts_small_parse_table[] = { [210225] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(10212), 1, + ACTIONS(10221), 1, anon_sym_LBRACK, - ACTIONS(10214), 1, + ACTIONS(10223), 1, anon_sym_LPAREN, STATE(3205), 1, sym_parameter_bracks, @@ -412346,7 +412346,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6414), 1, sym_comment, - ACTIONS(7985), 4, + ACTIONS(7994), 4, anon_sym_EQ, anon_sym_DASH_GT, anon_sym_AT, @@ -412369,11 +412369,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(1555), 1, aux_sym_unquoted_token2, - ACTIONS(10775), 1, + ACTIONS(10784), 1, anon_sym_DOT_DOT2, STATE(6416), 1, sym_comment, - ACTIONS(10777), 2, + ACTIONS(10786), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, [210312] = 3, @@ -412381,7 +412381,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6417), 1, sym_comment, - ACTIONS(10779), 4, + ACTIONS(10788), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, @@ -412404,7 +412404,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6419), 1, sym_comment, - ACTIONS(10781), 4, + ACTIONS(10790), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, @@ -412414,7 +412414,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6420), 1, sym_comment, - ACTIONS(10783), 4, + ACTIONS(10792), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, @@ -412422,11 +412422,11 @@ static const uint16_t ts_small_parse_table[] = { [210370] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5464), 1, + ACTIONS(5473), 1, anon_sym_LPAREN2, - ACTIONS(10785), 1, + ACTIONS(10794), 1, anon_sym_RBRACK, - ACTIONS(10787), 1, + ACTIONS(10796), 1, sym__entry_separator, STATE(6421), 1, sym_comment, @@ -412437,7 +412437,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6422), 1, sym_comment, - ACTIONS(10789), 4, + ACTIONS(10798), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, @@ -412447,7 +412447,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6423), 1, sym_comment, - ACTIONS(10791), 4, + ACTIONS(10800), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, @@ -412457,7 +412457,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6424), 1, sym_comment, - ACTIONS(10793), 4, + ACTIONS(10802), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, @@ -412491,9 +412491,9 @@ static const uint16_t ts_small_parse_table[] = { [210466] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(10212), 1, + ACTIONS(10221), 1, anon_sym_LBRACK, - ACTIONS(10214), 1, + ACTIONS(10223), 1, anon_sym_LPAREN, STATE(3221), 1, sym_parameter_parens, @@ -412504,9 +412504,9 @@ static const uint16_t ts_small_parse_table[] = { [210485] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(10212), 1, + ACTIONS(10221), 1, anon_sym_LBRACK, - ACTIONS(10214), 1, + ACTIONS(10223), 1, anon_sym_LPAREN, STATE(3223), 1, sym_parameter_parens, @@ -412531,7 +412531,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6430), 1, sym_comment, - ACTIONS(10779), 4, + ACTIONS(10788), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, @@ -412541,7 +412541,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6431), 1, sym_comment, - ACTIONS(10795), 4, + ACTIONS(10804), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, @@ -412551,7 +412551,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6432), 1, sym_comment, - ACTIONS(10797), 4, + ACTIONS(10806), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, @@ -412561,11 +412561,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(2204), 1, aux_sym_unquoted_token4, - ACTIONS(5899), 1, + ACTIONS(5908), 1, anon_sym_PIPE, STATE(6433), 1, sym_comment, - ACTIONS(5894), 2, + ACTIONS(5903), 2, anon_sym_if, anon_sym_EQ_GT, [210577] = 4, @@ -412573,31 +412573,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6434), 1, sym_comment, - ACTIONS(7927), 2, + ACTIONS(7936), 2, anon_sym_AT, sym__entry_separator, - ACTIONS(7929), 2, + ACTIONS(7938), 2, anon_sym_RBRACK, anon_sym_GT2, [210592] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4869), 1, + ACTIONS(4878), 1, sym__space, - ACTIONS(4871), 1, + ACTIONS(4880), 1, sym__newline, - ACTIONS(10799), 1, + ACTIONS(10808), 1, anon_sym_EQ2, - ACTIONS(10801), 1, + ACTIONS(10810), 1, sym_short_flag_identifier, STATE(6435), 1, sym_comment, [210611] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(10212), 1, + ACTIONS(10221), 1, anon_sym_LBRACK, - ACTIONS(10214), 1, + ACTIONS(10223), 1, anon_sym_LPAREN, STATE(3225), 1, sym_parameter_parens, @@ -412610,10 +412610,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6437), 1, sym_comment, - ACTIONS(8251), 2, + ACTIONS(8260), 2, anon_sym_AT, sym__entry_separator, - ACTIONS(8253), 2, + ACTIONS(8262), 2, anon_sym_RBRACK, anon_sym_GT2, [210645] = 4, @@ -412621,10 +412621,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6438), 1, sym_comment, - ACTIONS(8207), 2, + ACTIONS(8216), 2, anon_sym_AT, sym__entry_separator, - ACTIONS(8209), 2, + ACTIONS(8218), 2, anon_sym_RBRACK, anon_sym_GT2, [210660] = 3, @@ -412632,7 +412632,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6439), 1, sym_comment, - ACTIONS(10803), 4, + ACTIONS(10812), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, @@ -412642,7 +412642,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6440), 1, sym_comment, - ACTIONS(5642), 4, + ACTIONS(5651), 4, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -412652,10 +412652,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6441), 1, sym_comment, - ACTIONS(8057), 2, + ACTIONS(8066), 2, anon_sym_AT, sym__entry_separator, - ACTIONS(8059), 2, + ACTIONS(8068), 2, anon_sym_RBRACK, anon_sym_GT2, [210701] = 4, @@ -412663,18 +412663,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6442), 1, sym_comment, - ACTIONS(8061), 2, + ACTIONS(8070), 2, anon_sym_AT, sym__entry_separator, - ACTIONS(8063), 2, + ACTIONS(8072), 2, anon_sym_RBRACK, anon_sym_GT2, [210716] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3802), 1, + ACTIONS(3811), 1, sym__newline, - ACTIONS(6235), 1, + ACTIONS(6244), 1, anon_sym_LBRACE, STATE(1706), 1, aux_sym_shebang_repeat1, @@ -412685,9 +412685,9 @@ static const uint16_t ts_small_parse_table[] = { [210735] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3802), 1, + ACTIONS(3811), 1, sym__newline, - ACTIONS(6235), 1, + ACTIONS(6244), 1, anon_sym_LBRACE, STATE(4440), 1, sym_block, @@ -412700,7 +412700,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6445), 1, sym_comment, - ACTIONS(10805), 4, + ACTIONS(10814), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, @@ -412710,34 +412710,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6446), 1, sym_comment, - ACTIONS(8069), 2, + ACTIONS(8078), 2, anon_sym_AT, sym__entry_separator, - ACTIONS(8071), 2, + ACTIONS(8080), 2, anon_sym_RBRACK, anon_sym_GT2, [210782] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10807), 1, + ACTIONS(10816), 1, anon_sym_COLON2, STATE(6447), 1, sym_comment, STATE(6448), 1, aux_sym_ctrl_do_parenthesized_repeat2, - ACTIONS(7502), 2, + ACTIONS(7511), 2, sym__newline, sym__space, [210799] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10809), 1, + ACTIONS(10818), 1, anon_sym_COLON2, STATE(6255), 1, aux_sym_ctrl_do_parenthesized_repeat2, STATE(6448), 1, sym_comment, - ACTIONS(7502), 2, + ACTIONS(7511), 2, sym__newline, sym__space, [210816] = 4, @@ -412745,10 +412745,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6449), 1, sym_comment, - ACTIONS(8073), 2, + ACTIONS(8082), 2, anon_sym_AT, sym__entry_separator, - ACTIONS(8075), 2, + ACTIONS(8084), 2, anon_sym_RBRACK, anon_sym_GT2, [210831] = 6, @@ -412769,16 +412769,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6451), 1, sym_comment, - ACTIONS(8077), 2, + ACTIONS(8086), 2, anon_sym_AT, sym__entry_separator, - ACTIONS(8079), 2, + ACTIONS(8088), 2, anon_sym_RBRACK, anon_sym_GT2, [210865] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9702), 1, + ACTIONS(9711), 1, anon_sym_LBRACE, STATE(4611), 1, sym_val_closure, @@ -412793,10 +412793,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6453), 1, sym_comment, - ACTIONS(8091), 2, + ACTIONS(8100), 2, anon_sym_AT, sym__entry_separator, - ACTIONS(8093), 2, + ACTIONS(8102), 2, anon_sym_RBRACK, anon_sym_GT2, [210899] = 5, @@ -412826,13 +412826,13 @@ static const uint16_t ts_small_parse_table[] = { [210933] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(10811), 1, + ACTIONS(10820), 1, anon_sym_RPAREN, STATE(6096), 1, aux_sym__block_body_repeat1, STATE(6456), 1, sym_comment, - ACTIONS(10237), 2, + ACTIONS(10246), 2, sym__newline, anon_sym_SEMI, [210950] = 6, @@ -412851,11 +412851,11 @@ static const uint16_t ts_small_parse_table[] = { [210969] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6484), 1, + ACTIONS(6493), 1, sym__entry_separator, - ACTIONS(10219), 1, + ACTIONS(10228), 1, anon_sym_LBRACK, - ACTIONS(10813), 1, + ACTIONS(10822), 1, anon_sym_RBRACK, STATE(3429), 1, aux_sym__multiple_types_repeat1, @@ -412866,7 +412866,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6459), 1, sym_comment, - ACTIONS(10815), 4, + ACTIONS(10824), 4, sym_identifier, anon_sym_in2, anon_sym_nu, @@ -412874,11 +412874,11 @@ static const uint16_t ts_small_parse_table[] = { [211001] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6484), 1, + ACTIONS(6493), 1, sym__entry_separator, - ACTIONS(10219), 1, + ACTIONS(10228), 1, anon_sym_LBRACK, - ACTIONS(10817), 1, + ACTIONS(10826), 1, anon_sym_RBRACK, STATE(3429), 1, aux_sym__multiple_types_repeat1, @@ -412889,10 +412889,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6461), 1, sym_comment, - ACTIONS(8255), 2, + ACTIONS(8264), 2, anon_sym_AT, sym__entry_separator, - ACTIONS(8257), 2, + ACTIONS(8266), 2, anon_sym_RBRACK, anon_sym_GT2, [211035] = 3, @@ -412900,7 +412900,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6462), 1, sym_comment, - ACTIONS(10819), 4, + ACTIONS(10828), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, @@ -412919,13 +412919,13 @@ static const uint16_t ts_small_parse_table[] = { [211063] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10821), 1, + ACTIONS(10830), 1, anon_sym_DQUOTE, STATE(6464), 1, sym_comment, STATE(6475), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10194), 2, + ACTIONS(10203), 2, sym__escaped_str_content, sym_escape_sequence, [211080] = 4, @@ -412933,10 +412933,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6465), 1, sym_comment, - ACTIONS(8259), 2, + ACTIONS(8268), 2, anon_sym_AT, sym__entry_separator, - ACTIONS(8261), 2, + ACTIONS(8270), 2, anon_sym_RBRACK, anon_sym_GT2, [211095] = 4, @@ -412968,7 +412968,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(1681), 1, anon_sym_DASH2, - ACTIONS(8719), 1, + ACTIONS(8728), 1, aux_sym_unquoted_token2, STATE(6468), 1, sym_comment, @@ -412978,11 +412978,11 @@ static const uint16_t ts_small_parse_table[] = { [211146] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9156), 1, + ACTIONS(9165), 1, sym__entry_separator, - ACTIONS(10823), 1, + ACTIONS(10832), 1, anon_sym_COLON, - ACTIONS(10825), 1, + ACTIONS(10834), 1, anon_sym_GT2, STATE(5355), 1, aux_sym__multiple_types_repeat1, @@ -412993,7 +412993,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6470), 1, sym_comment, - ACTIONS(10827), 4, + ACTIONS(10836), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, @@ -413001,11 +413001,11 @@ static const uint16_t ts_small_parse_table[] = { [211178] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9156), 1, + ACTIONS(9165), 1, sym__entry_separator, - ACTIONS(10829), 1, + ACTIONS(10838), 1, anon_sym_COLON, - ACTIONS(10831), 1, + ACTIONS(10840), 1, anon_sym_GT2, STATE(5358), 1, aux_sym__multiple_types_repeat1, @@ -413014,22 +413014,22 @@ static const uint16_t ts_small_parse_table[] = { [211197] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10833), 1, + ACTIONS(10842), 1, anon_sym_LPAREN, STATE(6472), 1, sym_comment, - ACTIONS(10835), 3, + ACTIONS(10844), 3, sym_escaped_interpolated_content, anon_sym_DQUOTE2, sym_inter_escape_sequence, [211212] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6484), 1, + ACTIONS(6493), 1, sym__entry_separator, - ACTIONS(10219), 1, + ACTIONS(10228), 1, anon_sym_LBRACK, - ACTIONS(10837), 1, + ACTIONS(10846), 1, anon_sym_RBRACK, STATE(3429), 1, aux_sym__multiple_types_repeat1, @@ -413040,32 +413040,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6474), 1, sym_comment, - ACTIONS(8263), 2, + ACTIONS(8272), 2, anon_sym_AT, sym__entry_separator, - ACTIONS(8265), 2, + ACTIONS(8274), 2, anon_sym_RBRACK, anon_sym_GT2, [211246] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10839), 1, + ACTIONS(10848), 1, anon_sym_DQUOTE, STATE(6475), 1, sym_comment, STATE(6515), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10194), 2, + ACTIONS(10203), 2, sym__escaped_str_content, sym_escape_sequence, [211263] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9156), 1, + ACTIONS(9165), 1, sym__entry_separator, - ACTIONS(10841), 1, + ACTIONS(10850), 1, anon_sym_COLON, - ACTIONS(10843), 1, + ACTIONS(10852), 1, anon_sym_GT2, STATE(5415), 1, aux_sym__multiple_types_repeat1, @@ -413074,11 +413074,11 @@ static const uint16_t ts_small_parse_table[] = { [211282] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9156), 1, + ACTIONS(9165), 1, sym__entry_separator, - ACTIONS(10845), 1, + ACTIONS(10854), 1, anon_sym_COLON, - ACTIONS(10847), 1, + ACTIONS(10856), 1, anon_sym_GT2, STATE(5380), 1, aux_sym__multiple_types_repeat1, @@ -413087,11 +413087,11 @@ static const uint16_t ts_small_parse_table[] = { [211301] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6484), 1, + ACTIONS(6493), 1, sym__entry_separator, - ACTIONS(10219), 1, + ACTIONS(10228), 1, anon_sym_LBRACK, - ACTIONS(10849), 1, + ACTIONS(10858), 1, anon_sym_RBRACK, STATE(3429), 1, aux_sym__multiple_types_repeat1, @@ -413102,10 +413102,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6479), 1, sym_comment, - ACTIONS(8267), 2, + ACTIONS(8276), 2, anon_sym_AT, sym__entry_separator, - ACTIONS(8269), 2, + ACTIONS(8278), 2, anon_sym_RBRACK, anon_sym_GT2, [211335] = 4, @@ -413122,11 +413122,11 @@ static const uint16_t ts_small_parse_table[] = { [211350] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9156), 1, + ACTIONS(9165), 1, sym__entry_separator, - ACTIONS(10851), 1, + ACTIONS(10860), 1, anon_sym_COLON, - ACTIONS(10853), 1, + ACTIONS(10862), 1, anon_sym_GT2, STATE(5382), 1, aux_sym__multiple_types_repeat1, @@ -413137,7 +413137,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6482), 1, sym_comment, - ACTIONS(10779), 4, + ACTIONS(10788), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, @@ -413177,11 +413177,11 @@ static const uint16_t ts_small_parse_table[] = { [211425] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6484), 1, + ACTIONS(6493), 1, sym__entry_separator, - ACTIONS(10219), 1, + ACTIONS(10228), 1, anon_sym_LBRACK, - ACTIONS(10855), 1, + ACTIONS(10864), 1, anon_sym_RBRACK, STATE(3429), 1, aux_sym__multiple_types_repeat1, @@ -413203,24 +413203,24 @@ static const uint16_t ts_small_parse_table[] = { [211463] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(10857), 1, + ACTIONS(10866), 1, anon_sym_use, - ACTIONS(10859), 1, + ACTIONS(10868), 1, anon_sym_list, - ACTIONS(10861), 1, + ACTIONS(10870), 1, anon_sym_hide, - ACTIONS(10863), 1, + ACTIONS(10872), 1, anon_sym_new, STATE(6488), 1, sym_comment, [211482] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6484), 1, + ACTIONS(6493), 1, sym__entry_separator, - ACTIONS(10219), 1, + ACTIONS(10228), 1, anon_sym_LBRACK, - ACTIONS(10865), 1, + ACTIONS(10874), 1, anon_sym_RBRACK, STATE(3429), 1, aux_sym__multiple_types_repeat1, @@ -413229,11 +413229,11 @@ static const uint16_t ts_small_parse_table[] = { [211501] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6484), 1, + ACTIONS(6493), 1, sym__entry_separator, - ACTIONS(10219), 1, + ACTIONS(10228), 1, anon_sym_LBRACK, - ACTIONS(10867), 1, + ACTIONS(10876), 1, anon_sym_RBRACK, STATE(3429), 1, aux_sym__multiple_types_repeat1, @@ -413242,11 +413242,11 @@ static const uint16_t ts_small_parse_table[] = { [211520] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6484), 1, + ACTIONS(6493), 1, sym__entry_separator, - ACTIONS(10219), 1, + ACTIONS(10228), 1, anon_sym_LBRACK, - ACTIONS(10869), 1, + ACTIONS(10878), 1, anon_sym_RBRACK, STATE(3429), 1, aux_sym__multiple_types_repeat1, @@ -413257,7 +413257,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6492), 1, sym_comment, - ACTIONS(10779), 4, + ACTIONS(10788), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, @@ -413267,7 +413267,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6493), 1, sym_comment, - ACTIONS(10871), 4, + ACTIONS(10880), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, @@ -413277,7 +413277,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6494), 1, sym_comment, - ACTIONS(10871), 4, + ACTIONS(10880), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, @@ -413285,11 +413285,11 @@ static const uint16_t ts_small_parse_table[] = { [211578] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6484), 1, + ACTIONS(6493), 1, sym__entry_separator, - ACTIONS(10219), 1, + ACTIONS(10228), 1, anon_sym_LBRACK, - ACTIONS(10873), 1, + ACTIONS(10882), 1, anon_sym_RBRACK, STATE(3429), 1, aux_sym__multiple_types_repeat1, @@ -413300,7 +413300,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6496), 1, sym_comment, - ACTIONS(10875), 4, + ACTIONS(10884), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, @@ -413310,22 +413310,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6497), 1, sym_comment, - ACTIONS(8117), 2, + ACTIONS(8126), 2, anon_sym_AT, sym__entry_separator, - ACTIONS(8119), 2, + ACTIONS(8128), 2, anon_sym_RBRACK, anon_sym_GT2, [211625] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4936), 1, + ACTIONS(4945), 1, anon_sym_DASH2, - ACTIONS(10877), 1, + ACTIONS(10886), 1, anon_sym_EQ2, STATE(6498), 1, sym_comment, - ACTIONS(4934), 2, + ACTIONS(4943), 2, sym_identifier, anon_sym_DASH_DASH, [211642] = 3, @@ -413333,7 +413333,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6499), 1, sym_comment, - ACTIONS(10879), 4, + ACTIONS(10888), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, @@ -413343,7 +413343,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6500), 1, sym_comment, - ACTIONS(10881), 4, + ACTIONS(10890), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, @@ -413351,11 +413351,11 @@ static const uint16_t ts_small_parse_table[] = { [211668] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6484), 1, + ACTIONS(6493), 1, sym__entry_separator, - ACTIONS(10219), 1, + ACTIONS(10228), 1, anon_sym_LBRACK, - ACTIONS(10883), 1, + ACTIONS(10892), 1, anon_sym_RBRACK, STATE(3429), 1, aux_sym__multiple_types_repeat1, @@ -413364,11 +413364,11 @@ static const uint16_t ts_small_parse_table[] = { [211687] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6484), 1, + ACTIONS(6493), 1, sym__entry_separator, - ACTIONS(10219), 1, + ACTIONS(10228), 1, anon_sym_LBRACK, - ACTIONS(10885), 1, + ACTIONS(10894), 1, anon_sym_RBRACK, STATE(3429), 1, aux_sym__multiple_types_repeat1, @@ -413377,11 +413377,11 @@ static const uint16_t ts_small_parse_table[] = { [211706] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6484), 1, + ACTIONS(6493), 1, sym__entry_separator, - ACTIONS(10219), 1, + ACTIONS(10228), 1, anon_sym_LBRACK, - ACTIONS(10887), 1, + ACTIONS(10896), 1, anon_sym_RBRACK, STATE(3429), 1, aux_sym__multiple_types_repeat1, @@ -413392,10 +413392,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6504), 1, sym_comment, - ACTIONS(8121), 2, + ACTIONS(8130), 2, anon_sym_AT, sym__entry_separator, - ACTIONS(8123), 2, + ACTIONS(8132), 2, anon_sym_RBRACK, anon_sym_GT2, [211740] = 3, @@ -413403,7 +413403,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6505), 1, sym_comment, - ACTIONS(10889), 4, + ACTIONS(10898), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, @@ -413435,11 +413435,11 @@ static const uint16_t ts_small_parse_table[] = { [211787] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6484), 1, + ACTIONS(6493), 1, sym__entry_separator, - ACTIONS(10219), 1, + ACTIONS(10228), 1, anon_sym_LBRACK, - ACTIONS(10891), 1, + ACTIONS(10900), 1, anon_sym_RBRACK, STATE(3429), 1, aux_sym__multiple_types_repeat1, @@ -413450,7 +413450,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6509), 1, sym_comment, - ACTIONS(10893), 4, + ACTIONS(10902), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, @@ -413460,7 +413460,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6510), 1, sym_comment, - ACTIONS(10895), 4, + ACTIONS(10904), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, @@ -413468,11 +413468,11 @@ static const uint16_t ts_small_parse_table[] = { [211832] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6484), 1, + ACTIONS(6493), 1, sym__entry_separator, - ACTIONS(10219), 1, + ACTIONS(10228), 1, anon_sym_LBRACK, - ACTIONS(10897), 1, + ACTIONS(10906), 1, anon_sym_RBRACK, STATE(3429), 1, aux_sym__multiple_types_repeat1, @@ -413495,7 +413495,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6513), 1, sym_comment, - ACTIONS(10899), 4, + ACTIONS(10908), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, @@ -413505,18 +413505,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6514), 1, sym_comment, - ACTIONS(8153), 2, + ACTIONS(8162), 2, anon_sym_AT, sym__entry_separator, - ACTIONS(8155), 2, + ACTIONS(8164), 2, anon_sym_RBRACK, anon_sym_GT2, [211896] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10901), 1, + ACTIONS(10910), 1, anon_sym_DQUOTE, - ACTIONS(10903), 2, + ACTIONS(10912), 2, sym__escaped_str_content, sym_escape_sequence, STATE(6515), 2, @@ -413525,21 +413525,21 @@ static const uint16_t ts_small_parse_table[] = { [211911] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(10200), 1, + ACTIONS(10209), 1, anon_sym_DOT_DOT2, - ACTIONS(10906), 1, + ACTIONS(10915), 1, anon_sym_LBRACE, STATE(6516), 1, sym_comment, - ACTIONS(10202), 2, + ACTIONS(10211), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, [211928] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3802), 1, + ACTIONS(3811), 1, sym__newline, - ACTIONS(10908), 1, + ACTIONS(10917), 1, anon_sym_LBRACK, STATE(1706), 1, aux_sym_shebang_repeat1, @@ -413550,24 +413550,24 @@ static const uint16_t ts_small_parse_table[] = { [211947] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10910), 1, + ACTIONS(10919), 1, anon_sym_LPAREN, STATE(6518), 1, sym_comment, - ACTIONS(10912), 3, + ACTIONS(10921), 3, sym_escaped_interpolated_content, anon_sym_DQUOTE2, sym_inter_escape_sequence, [211962] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4918), 1, + ACTIONS(4927), 1, anon_sym_DASH2, - ACTIONS(10914), 1, + ACTIONS(10923), 1, anon_sym_EQ2, STATE(6519), 1, sym_comment, - ACTIONS(4916), 2, + ACTIONS(4925), 2, sym_identifier, anon_sym_DASH_DASH, [211979] = 4, @@ -413575,10 +413575,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6520), 1, sym_comment, - ACTIONS(8157), 2, + ACTIONS(8166), 2, anon_sym_AT, sym__entry_separator, - ACTIONS(8159), 2, + ACTIONS(8168), 2, anon_sym_RBRACK, anon_sym_GT2, [211994] = 3, @@ -413586,7 +413586,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6521), 1, sym_comment, - ACTIONS(10916), 4, + ACTIONS(10925), 4, sym_identifier, anon_sym_in2, anon_sym_nu, @@ -413594,11 +413594,11 @@ static const uint16_t ts_small_parse_table[] = { [212007] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6484), 1, + ACTIONS(6493), 1, sym__entry_separator, - ACTIONS(10219), 1, + ACTIONS(10228), 1, anon_sym_LBRACK, - ACTIONS(10918), 1, + ACTIONS(10927), 1, anon_sym_RBRACK, STATE(3429), 1, aux_sym__multiple_types_repeat1, @@ -413609,22 +413609,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6523), 1, sym_comment, - ACTIONS(8161), 2, + ACTIONS(8170), 2, anon_sym_AT, sym__entry_separator, - ACTIONS(8163), 2, + ACTIONS(8172), 2, anon_sym_RBRACK, anon_sym_GT2, [212041] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4879), 1, + ACTIONS(4888), 1, sym__space, - ACTIONS(4881), 1, + ACTIONS(4890), 1, sym__newline, - ACTIONS(10920), 1, + ACTIONS(10929), 1, sym_long_flag_identifier, - ACTIONS(10922), 1, + ACTIONS(10931), 1, anon_sym_EQ2, STATE(6524), 1, sym_comment, @@ -413633,7 +413633,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6525), 1, sym_comment, - ACTIONS(10924), 4, + ACTIONS(10933), 4, sym_identifier, anon_sym_in2, anon_sym_nu, @@ -413652,23 +413652,23 @@ static const uint16_t ts_small_parse_table[] = { [212088] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10926), 1, + ACTIONS(10935), 1, anon_sym_DQUOTE, STATE(6527), 1, sym_comment, STATE(6538), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10194), 2, + ACTIONS(10203), 2, sym__escaped_str_content, sym_escape_sequence, [212105] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6484), 1, + ACTIONS(6493), 1, sym__entry_separator, - ACTIONS(10219), 1, + ACTIONS(10228), 1, anon_sym_LBRACK, - ACTIONS(10928), 1, + ACTIONS(10937), 1, anon_sym_RBRACK, STATE(3429), 1, aux_sym__multiple_types_repeat1, @@ -413679,7 +413679,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6529), 1, sym_comment, - ACTIONS(10930), 4, + ACTIONS(10939), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, @@ -413689,7 +413689,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(950), 1, sym__table_head_separator, - ACTIONS(9986), 1, + ACTIONS(9995), 1, anon_sym_DOT2, STATE(6171), 1, aux_sym_cell_path_repeat1, @@ -413700,9 +413700,9 @@ static const uint16_t ts_small_parse_table[] = { [212156] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(10212), 1, + ACTIONS(10221), 1, anon_sym_LBRACK, - ACTIONS(10214), 1, + ACTIONS(10223), 1, anon_sym_LPAREN, STATE(3209), 1, sym_parameter_parens, @@ -413726,7 +413726,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6533), 1, sym_comment, - ACTIONS(10932), 4, + ACTIONS(10941), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, @@ -413736,7 +413736,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6534), 1, sym_comment, - ACTIONS(5656), 4, + ACTIONS(5665), 4, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -413746,10 +413746,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6535), 1, sym_comment, - ACTIONS(8165), 2, + ACTIONS(8174), 2, anon_sym_AT, sym__entry_separator, - ACTIONS(8167), 2, + ACTIONS(8176), 2, anon_sym_RBRACK, anon_sym_GT2, [212231] = 4, @@ -413768,7 +413768,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6537), 1, sym_comment, - ACTIONS(10934), 4, + ACTIONS(10943), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, @@ -413776,23 +413776,23 @@ static const uint16_t ts_small_parse_table[] = { [212259] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10936), 1, + ACTIONS(10945), 1, anon_sym_DQUOTE, STATE(6515), 1, aux_sym__str_double_quotes_repeat1, STATE(6538), 1, sym_comment, - ACTIONS(10194), 2, + ACTIONS(10203), 2, sym__escaped_str_content, sym_escape_sequence, [212276] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5464), 1, + ACTIONS(5473), 1, anon_sym_LPAREN2, - ACTIONS(5876), 1, + ACTIONS(5885), 1, anon_sym_RBRACK, - ACTIONS(5882), 1, + ACTIONS(5891), 1, sym__entry_separator, STATE(6539), 1, sym_comment, @@ -413814,7 +413814,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6541), 1, sym_comment, - ACTIONS(5618), 4, + ACTIONS(5627), 4, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -413824,10 +413824,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6542), 1, sym_comment, - ACTIONS(8271), 2, + ACTIONS(8280), 2, anon_sym_AT, sym__entry_separator, - ACTIONS(8273), 2, + ACTIONS(8282), 2, anon_sym_RBRACK, anon_sym_GT2, [212338] = 3, @@ -413835,7 +413835,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6543), 1, sym_comment, - ACTIONS(10938), 4, + ACTIONS(10947), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, @@ -413843,11 +413843,11 @@ static const uint16_t ts_small_parse_table[] = { [212351] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9156), 1, + ACTIONS(9165), 1, sym__entry_separator, - ACTIONS(10940), 1, + ACTIONS(10949), 1, anon_sym_COLON, - ACTIONS(10942), 1, + ACTIONS(10951), 1, anon_sym_GT2, STATE(5323), 1, aux_sym__multiple_types_repeat1, @@ -413858,7 +413858,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6545), 1, sym_comment, - ACTIONS(10944), 4, + ACTIONS(10953), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, @@ -413868,20 +413868,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6546), 1, sym_comment, - ACTIONS(8275), 2, + ACTIONS(8284), 2, anon_sym_AT, sym__entry_separator, - ACTIONS(8277), 2, + ACTIONS(8286), 2, anon_sym_RBRACK, anon_sym_GT2, [212398] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6484), 1, + ACTIONS(6493), 1, sym__entry_separator, - ACTIONS(10219), 1, + ACTIONS(10228), 1, anon_sym_LBRACK, - ACTIONS(10946), 1, + ACTIONS(10955), 1, anon_sym_RBRACK, STATE(3429), 1, aux_sym__multiple_types_repeat1, @@ -413892,7 +413892,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(1725), 1, aux_sym_unquoted_token2, - ACTIONS(10078), 1, + ACTIONS(10087), 1, aux_sym__immediate_decimal_token2, STATE(6548), 1, sym_comment, @@ -413904,10 +413904,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6549), 1, sym_comment, - ACTIONS(8169), 2, + ACTIONS(8178), 2, anon_sym_AT, sym__entry_separator, - ACTIONS(8171), 2, + ACTIONS(8180), 2, anon_sym_RBRACK, anon_sym_GT2, [212449] = 4, @@ -413915,20 +413915,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6550), 1, sym_comment, - ACTIONS(8279), 2, + ACTIONS(8288), 2, anon_sym_AT, sym__entry_separator, - ACTIONS(8281), 2, + ACTIONS(8290), 2, anon_sym_RBRACK, anon_sym_GT2, [212464] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6484), 1, + ACTIONS(6493), 1, sym__entry_separator, - ACTIONS(10219), 1, + ACTIONS(10228), 1, anon_sym_LBRACK, - ACTIONS(10948), 1, + ACTIONS(10957), 1, anon_sym_RBRACK, STATE(3429), 1, aux_sym__multiple_types_repeat1, @@ -413939,7 +413939,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6552), 1, sym_comment, - ACTIONS(10950), 4, + ACTIONS(10959), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, @@ -413947,11 +413947,11 @@ static const uint16_t ts_small_parse_table[] = { [212496] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9156), 1, + ACTIONS(9165), 1, sym__entry_separator, - ACTIONS(10952), 1, + ACTIONS(10961), 1, anon_sym_COLON, - ACTIONS(10954), 1, + ACTIONS(10963), 1, anon_sym_GT2, STATE(5310), 1, aux_sym__multiple_types_repeat1, @@ -413960,11 +413960,11 @@ static const uint16_t ts_small_parse_table[] = { [212515] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6484), 1, + ACTIONS(6493), 1, sym__entry_separator, - ACTIONS(10219), 1, + ACTIONS(10228), 1, anon_sym_LBRACK, - ACTIONS(10956), 1, + ACTIONS(10965), 1, anon_sym_RBRACK, STATE(3429), 1, aux_sym__multiple_types_repeat1, @@ -413973,11 +413973,11 @@ static const uint16_t ts_small_parse_table[] = { [212534] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9156), 1, + ACTIONS(9165), 1, sym__entry_separator, - ACTIONS(10958), 1, + ACTIONS(10967), 1, anon_sym_COLON, - ACTIONS(10960), 1, + ACTIONS(10969), 1, anon_sym_GT2, STATE(5311), 1, aux_sym__multiple_types_repeat1, @@ -413986,11 +413986,11 @@ static const uint16_t ts_small_parse_table[] = { [212553] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6484), 1, + ACTIONS(6493), 1, sym__entry_separator, - ACTIONS(10219), 1, + ACTIONS(10228), 1, anon_sym_LBRACK, - ACTIONS(10962), 1, + ACTIONS(10971), 1, anon_sym_RBRACK, STATE(3429), 1, aux_sym__multiple_types_repeat1, @@ -413999,11 +413999,11 @@ static const uint16_t ts_small_parse_table[] = { [212572] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6484), 1, + ACTIONS(6493), 1, sym__entry_separator, - ACTIONS(10219), 1, + ACTIONS(10228), 1, anon_sym_LBRACK, - ACTIONS(10964), 1, + ACTIONS(10973), 1, anon_sym_RBRACK, STATE(3429), 1, aux_sym__multiple_types_repeat1, @@ -414012,11 +414012,11 @@ static const uint16_t ts_small_parse_table[] = { [212591] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6484), 1, + ACTIONS(6493), 1, sym__entry_separator, - ACTIONS(10219), 1, + ACTIONS(10228), 1, anon_sym_LBRACK, - ACTIONS(10966), 1, + ACTIONS(10975), 1, anon_sym_RBRACK, STATE(3429), 1, aux_sym__multiple_types_repeat1, @@ -414025,11 +414025,11 @@ static const uint16_t ts_small_parse_table[] = { [212610] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6484), 1, + ACTIONS(6493), 1, sym__entry_separator, - ACTIONS(10219), 1, + ACTIONS(10228), 1, anon_sym_LBRACK, - ACTIONS(10968), 1, + ACTIONS(10977), 1, anon_sym_RBRACK, STATE(3429), 1, aux_sym__multiple_types_repeat1, @@ -414038,11 +414038,11 @@ static const uint16_t ts_small_parse_table[] = { [212629] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6484), 1, + ACTIONS(6493), 1, sym__entry_separator, - ACTIONS(10219), 1, + ACTIONS(10228), 1, anon_sym_LBRACK, - ACTIONS(10970), 1, + ACTIONS(10979), 1, anon_sym_RBRACK, STATE(3429), 1, aux_sym__multiple_types_repeat1, @@ -414051,11 +414051,11 @@ static const uint16_t ts_small_parse_table[] = { [212648] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6484), 1, + ACTIONS(6493), 1, sym__entry_separator, - ACTIONS(10219), 1, + ACTIONS(10228), 1, anon_sym_LBRACK, - ACTIONS(10972), 1, + ACTIONS(10981), 1, anon_sym_RBRACK, STATE(3429), 1, aux_sym__multiple_types_repeat1, @@ -414064,11 +414064,11 @@ static const uint16_t ts_small_parse_table[] = { [212667] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6484), 1, + ACTIONS(6493), 1, sym__entry_separator, - ACTIONS(10219), 1, + ACTIONS(10228), 1, anon_sym_LBRACK, - ACTIONS(10974), 1, + ACTIONS(10983), 1, anon_sym_RBRACK, STATE(3429), 1, aux_sym__multiple_types_repeat1, @@ -414077,11 +414077,11 @@ static const uint16_t ts_small_parse_table[] = { [212686] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6484), 1, + ACTIONS(6493), 1, sym__entry_separator, - ACTIONS(10219), 1, + ACTIONS(10228), 1, anon_sym_LBRACK, - ACTIONS(10976), 1, + ACTIONS(10985), 1, anon_sym_RBRACK, STATE(3429), 1, aux_sym__multiple_types_repeat1, @@ -414090,11 +414090,11 @@ static const uint16_t ts_small_parse_table[] = { [212705] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6484), 1, + ACTIONS(6493), 1, sym__entry_separator, - ACTIONS(10219), 1, + ACTIONS(10228), 1, anon_sym_LBRACK, - ACTIONS(10978), 1, + ACTIONS(10987), 1, anon_sym_RBRACK, STATE(3429), 1, aux_sym__multiple_types_repeat1, @@ -414103,11 +414103,11 @@ static const uint16_t ts_small_parse_table[] = { [212724] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9156), 1, + ACTIONS(9165), 1, sym__entry_separator, - ACTIONS(10980), 1, + ACTIONS(10989), 1, anon_sym_COLON, - ACTIONS(10982), 1, + ACTIONS(10991), 1, anon_sym_GT2, STATE(5324), 1, aux_sym__multiple_types_repeat1, @@ -414118,10 +414118,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6566), 1, sym_comment, - ACTIONS(8173), 2, + ACTIONS(8182), 2, anon_sym_AT, sym__entry_separator, - ACTIONS(8175), 2, + ACTIONS(8184), 2, anon_sym_RBRACK, anon_sym_GT2, [212758] = 5, @@ -414129,7 +414129,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(1765), 1, aux_sym_unquoted_token2, - ACTIONS(10984), 1, + ACTIONS(10993), 1, aux_sym__immediate_decimal_token2, STATE(6567), 1, sym_comment, @@ -414141,7 +414141,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6568), 1, sym_comment, - ACTIONS(10986), 4, + ACTIONS(10995), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, @@ -414151,7 +414151,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6569), 1, sym_comment, - ACTIONS(10988), 4, + ACTIONS(10997), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, @@ -414161,7 +414161,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6570), 1, sym_comment, - ACTIONS(10990), 4, + ACTIONS(10999), 4, sym_identifier, anon_sym_in2, anon_sym_nu, @@ -414169,9 +414169,9 @@ static const uint16_t ts_small_parse_table[] = { [212814] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(10251), 1, + ACTIONS(10260), 1, anon_sym_LBRACK, - ACTIONS(10253), 1, + ACTIONS(10262), 1, anon_sym_LPAREN, STATE(5983), 1, sym_parameter_parens, @@ -414182,23 +414182,23 @@ static const uint16_t ts_small_parse_table[] = { [212833] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10992), 1, + ACTIONS(11001), 1, anon_sym_DQUOTE, STATE(6572), 1, sym_comment, STATE(6580), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10194), 2, + ACTIONS(10203), 2, sym__escaped_str_content, sym_escape_sequence, [212850] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6484), 1, + ACTIONS(6493), 1, sym__entry_separator, - ACTIONS(10219), 1, + ACTIONS(10228), 1, anon_sym_LBRACK, - ACTIONS(10994), 1, + ACTIONS(11003), 1, anon_sym_RBRACK, STATE(3429), 1, aux_sym__multiple_types_repeat1, @@ -414209,7 +414209,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6574), 1, sym_comment, - ACTIONS(10996), 4, + ACTIONS(11005), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, @@ -414219,10 +414219,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6575), 1, sym_comment, - ACTIONS(8223), 2, + ACTIONS(8232), 2, anon_sym_AT, sym__entry_separator, - ACTIONS(8225), 2, + ACTIONS(8234), 2, anon_sym_RBRACK, anon_sym_GT2, [212897] = 3, @@ -414230,7 +414230,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6576), 1, sym_comment, - ACTIONS(10998), 4, + ACTIONS(11007), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, @@ -414238,11 +414238,11 @@ static const uint16_t ts_small_parse_table[] = { [212910] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6484), 1, + ACTIONS(6493), 1, sym__entry_separator, - ACTIONS(10219), 1, + ACTIONS(10228), 1, anon_sym_LBRACK, - ACTIONS(11000), 1, + ACTIONS(11009), 1, anon_sym_RBRACK, STATE(3429), 1, aux_sym__multiple_types_repeat1, @@ -414266,7 +414266,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6579), 1, sym_comment, - ACTIONS(11002), 4, + ACTIONS(11011), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, @@ -414274,13 +414274,13 @@ static const uint16_t ts_small_parse_table[] = { [212961] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11004), 1, + ACTIONS(11013), 1, anon_sym_DQUOTE, STATE(6515), 1, aux_sym__str_double_quotes_repeat1, STATE(6580), 1, sym_comment, - ACTIONS(10194), 2, + ACTIONS(10203), 2, sym__escaped_str_content, sym_escape_sequence, [212978] = 4, @@ -414288,10 +414288,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6581), 1, sym_comment, - ACTIONS(8283), 2, + ACTIONS(8292), 2, anon_sym_AT, sym__entry_separator, - ACTIONS(8285), 2, + ACTIONS(8294), 2, anon_sym_RBRACK, anon_sym_GT2, [212993] = 4, @@ -414299,22 +414299,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6582), 1, sym_comment, - ACTIONS(8179), 2, + ACTIONS(8188), 2, anon_sym_AT, sym__entry_separator, - ACTIONS(8181), 2, + ACTIONS(8190), 2, anon_sym_RBRACK, anon_sym_GT2, [213008] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11006), 1, + ACTIONS(11015), 1, anon_sym_COLON2, STATE(6255), 1, aux_sym_ctrl_do_parenthesized_repeat2, STATE(6583), 1, sym_comment, - ACTIONS(7502), 2, + ACTIONS(7511), 2, sym__newline, sym__space, [213025] = 4, @@ -414331,9 +414331,9 @@ static const uint16_t ts_small_parse_table[] = { [213040] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3802), 1, + ACTIONS(3811), 1, sym__newline, - ACTIONS(6235), 1, + ACTIONS(6244), 1, anon_sym_LBRACE, STATE(4485), 1, sym_block, @@ -414344,11 +414344,11 @@ static const uint16_t ts_small_parse_table[] = { [213059] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5464), 1, + ACTIONS(5473), 1, anon_sym_LPAREN2, - ACTIONS(11008), 1, + ACTIONS(11017), 1, anon_sym_RBRACK, - ACTIONS(11010), 1, + ACTIONS(11019), 1, sym__entry_separator, STATE(6586), 1, sym_comment, @@ -414359,7 +414359,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6587), 1, sym_comment, - ACTIONS(11012), 4, + ACTIONS(11021), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, @@ -414369,7 +414369,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6588), 1, sym_comment, - ACTIONS(6292), 4, + ACTIONS(6301), 4, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -414390,7 +414390,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6590), 1, sym_comment, - ACTIONS(11014), 4, + ACTIONS(11023), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, @@ -414398,9 +414398,9 @@ static const uint16_t ts_small_parse_table[] = { [213132] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3802), 1, + ACTIONS(3811), 1, sym__newline, - ACTIONS(6235), 1, + ACTIONS(6244), 1, anon_sym_LBRACE, STATE(4956), 1, sym_block, @@ -414411,9 +414411,9 @@ static const uint16_t ts_small_parse_table[] = { [213151] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3802), 1, + ACTIONS(3811), 1, sym__newline, - ACTIONS(6235), 1, + ACTIONS(6244), 1, anon_sym_LBRACE, STATE(1706), 1, aux_sym_shebang_repeat1, @@ -414424,9 +414424,9 @@ static const uint16_t ts_small_parse_table[] = { [213170] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3802), 1, + ACTIONS(3811), 1, sym__newline, - ACTIONS(6235), 1, + ACTIONS(6244), 1, anon_sym_LBRACE, STATE(4959), 1, sym_block, @@ -414437,9 +414437,9 @@ static const uint16_t ts_small_parse_table[] = { [213189] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3802), 1, + ACTIONS(3811), 1, sym__newline, - ACTIONS(6235), 1, + ACTIONS(6244), 1, anon_sym_LBRACE, STATE(1706), 1, aux_sym_shebang_repeat1, @@ -414450,9 +414450,9 @@ static const uint16_t ts_small_parse_table[] = { [213208] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3802), 1, + ACTIONS(3811), 1, sym__newline, - ACTIONS(10908), 1, + ACTIONS(10917), 1, anon_sym_LBRACK, STATE(1706), 1, aux_sym_shebang_repeat1, @@ -414465,10 +414465,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6596), 1, sym_comment, - ACTIONS(8287), 2, + ACTIONS(8296), 2, anon_sym_AT, sym__entry_separator, - ACTIONS(8289), 2, + ACTIONS(8298), 2, anon_sym_RBRACK, anon_sym_GT2, [213242] = 4, @@ -414476,10 +414476,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6597), 1, sym_comment, - ACTIONS(8183), 2, + ACTIONS(8192), 2, anon_sym_AT, sym__entry_separator, - ACTIONS(8185), 2, + ACTIONS(8194), 2, anon_sym_RBRACK, anon_sym_GT2, [213257] = 3, @@ -414518,7 +414518,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6601), 1, sym_comment, - ACTIONS(11016), 4, + ACTIONS(11025), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, @@ -414526,9 +414526,9 @@ static const uint16_t ts_small_parse_table[] = { [213311] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3802), 1, + ACTIONS(3811), 1, sym__newline, - ACTIONS(6235), 1, + ACTIONS(6244), 1, anon_sym_LBRACE, STATE(4708), 1, sym_block, @@ -414539,9 +414539,9 @@ static const uint16_t ts_small_parse_table[] = { [213330] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3802), 1, + ACTIONS(3811), 1, sym__newline, - ACTIONS(6235), 1, + ACTIONS(6244), 1, anon_sym_LBRACE, STATE(1706), 1, aux_sym_shebang_repeat1, @@ -414552,9 +414552,9 @@ static const uint16_t ts_small_parse_table[] = { [213349] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3802), 1, + ACTIONS(3811), 1, sym__newline, - ACTIONS(6235), 1, + ACTIONS(6244), 1, anon_sym_LBRACE, STATE(4711), 1, sym_block, @@ -414565,9 +414565,9 @@ static const uint16_t ts_small_parse_table[] = { [213368] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3802), 1, + ACTIONS(3811), 1, sym__newline, - ACTIONS(6235), 1, + ACTIONS(6244), 1, anon_sym_LBRACE, STATE(1706), 1, aux_sym_shebang_repeat1, @@ -414589,11 +414589,11 @@ static const uint16_t ts_small_parse_table[] = { [213402] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6484), 1, + ACTIONS(6493), 1, sym__entry_separator, - ACTIONS(10219), 1, + ACTIONS(10228), 1, anon_sym_LBRACK, - ACTIONS(11018), 1, + ACTIONS(11027), 1, anon_sym_RBRACK, STATE(3429), 1, aux_sym__multiple_types_repeat1, @@ -414602,11 +414602,11 @@ static const uint16_t ts_small_parse_table[] = { [213421] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6484), 1, + ACTIONS(6493), 1, sym__entry_separator, - ACTIONS(10219), 1, + ACTIONS(10228), 1, anon_sym_LBRACK, - ACTIONS(11020), 1, + ACTIONS(11029), 1, anon_sym_RBRACK, STATE(3429), 1, aux_sym__multiple_types_repeat1, @@ -414615,11 +414615,11 @@ static const uint16_t ts_small_parse_table[] = { [213440] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6484), 1, + ACTIONS(6493), 1, sym__entry_separator, - ACTIONS(10219), 1, + ACTIONS(10228), 1, anon_sym_LBRACK, - ACTIONS(11022), 1, + ACTIONS(11031), 1, anon_sym_RBRACK, STATE(3429), 1, aux_sym__multiple_types_repeat1, @@ -414628,11 +414628,11 @@ static const uint16_t ts_small_parse_table[] = { [213459] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6484), 1, + ACTIONS(6493), 1, sym__entry_separator, - ACTIONS(10219), 1, + ACTIONS(10228), 1, anon_sym_LBRACK, - ACTIONS(11024), 1, + ACTIONS(11033), 1, anon_sym_RBRACK, STATE(3429), 1, aux_sym__multiple_types_repeat1, @@ -414643,10 +414643,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6611), 1, sym_comment, - ACTIONS(8187), 2, + ACTIONS(8196), 2, anon_sym_AT, sym__entry_separator, - ACTIONS(8189), 2, + ACTIONS(8198), 2, anon_sym_RBRACK, anon_sym_GT2, [213493] = 4, @@ -414654,10 +414654,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6612), 1, sym_comment, - ACTIONS(8191), 2, + ACTIONS(8200), 2, anon_sym_AT, sym__entry_separator, - ACTIONS(8193), 2, + ACTIONS(8202), 2, anon_sym_RBRACK, anon_sym_GT2, [213508] = 3, @@ -414673,11 +414673,11 @@ static const uint16_t ts_small_parse_table[] = { [213521] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6484), 1, + ACTIONS(6493), 1, sym__entry_separator, - ACTIONS(10219), 1, + ACTIONS(10228), 1, anon_sym_LBRACK, - ACTIONS(11026), 1, + ACTIONS(11035), 1, anon_sym_RBRACK, STATE(3429), 1, aux_sym__multiple_types_repeat1, @@ -414686,11 +414686,11 @@ static const uint16_t ts_small_parse_table[] = { [213540] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6484), 1, + ACTIONS(6493), 1, sym__entry_separator, - ACTIONS(10219), 1, + ACTIONS(10228), 1, anon_sym_LBRACK, - ACTIONS(11028), 1, + ACTIONS(11037), 1, anon_sym_RBRACK, STATE(3429), 1, aux_sym__multiple_types_repeat1, @@ -414699,11 +414699,11 @@ static const uint16_t ts_small_parse_table[] = { [213559] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6484), 1, + ACTIONS(6493), 1, sym__entry_separator, - ACTIONS(10219), 1, + ACTIONS(10228), 1, anon_sym_LBRACK, - ACTIONS(11030), 1, + ACTIONS(11039), 1, anon_sym_RBRACK, STATE(3429), 1, aux_sym__multiple_types_repeat1, @@ -414714,18 +414714,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6617), 1, sym_comment, - ACTIONS(8195), 2, + ACTIONS(8204), 2, anon_sym_AT, sym__entry_separator, - ACTIONS(8197), 2, + ACTIONS(8206), 2, anon_sym_RBRACK, anon_sym_GT2, [213593] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9156), 1, + ACTIONS(9165), 1, sym__entry_separator, - ACTIONS(9966), 1, + ACTIONS(9975), 1, anon_sym_AT, STATE(5506), 1, aux_sym__multiple_types_repeat1, @@ -414738,7 +414738,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6619), 1, sym_comment, - ACTIONS(11032), 4, + ACTIONS(11041), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, @@ -414746,9 +414746,9 @@ static const uint16_t ts_small_parse_table[] = { [213625] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9156), 1, + ACTIONS(9165), 1, sym__entry_separator, - ACTIONS(9966), 1, + ACTIONS(9975), 1, anon_sym_AT, STATE(5507), 1, aux_sym__multiple_types_repeat1, @@ -414761,10 +414761,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6621), 1, sym_comment, - ACTIONS(8199), 2, + ACTIONS(8208), 2, anon_sym_AT, sym__entry_separator, - ACTIONS(8201), 2, + ACTIONS(8210), 2, anon_sym_RBRACK, anon_sym_GT2, [213659] = 4, @@ -414772,18 +414772,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6622), 1, sym_comment, - ACTIONS(8203), 2, + ACTIONS(8212), 2, anon_sym_AT, sym__entry_separator, - ACTIONS(8205), 2, + ACTIONS(8214), 2, anon_sym_RBRACK, anon_sym_GT2, [213674] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6901), 1, + ACTIONS(6910), 1, anon_sym_DOLLAR, - ACTIONS(8667), 1, + ACTIONS(8676), 1, sym_identifier, STATE(5492), 1, sym_val_variable, @@ -414794,11 +414794,11 @@ static const uint16_t ts_small_parse_table[] = { [213693] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6484), 1, + ACTIONS(6493), 1, sym__entry_separator, - ACTIONS(10219), 1, + ACTIONS(10228), 1, anon_sym_LBRACK, - ACTIONS(11034), 1, + ACTIONS(11043), 1, anon_sym_RBRACK, STATE(3429), 1, aux_sym__multiple_types_repeat1, @@ -414822,7 +414822,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6626), 1, sym_comment, - ACTIONS(11036), 4, + ACTIONS(11045), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, @@ -414832,7 +414832,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6627), 1, sym_comment, - ACTIONS(11038), 4, + ACTIONS(11047), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, @@ -414842,7 +414842,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6628), 1, sym_comment, - ACTIONS(11040), 4, + ACTIONS(11049), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, @@ -414850,19 +414850,19 @@ static const uint16_t ts_small_parse_table[] = { [213770] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11042), 1, + ACTIONS(11051), 1, anon_sym_DQUOTE, STATE(6389), 1, aux_sym__str_double_quotes_repeat1, STATE(6629), 1, sym_comment, - ACTIONS(10194), 2, + ACTIONS(10203), 2, sym__escaped_str_content, sym_escape_sequence, [213787] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9664), 1, + ACTIONS(9673), 1, anon_sym_LBRACK, STATE(6630), 1, sym_comment, @@ -414873,9 +414873,9 @@ static const uint16_t ts_small_parse_table[] = { [213803] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9156), 1, + ACTIONS(9165), 1, sym__entry_separator, - ACTIONS(11044), 1, + ACTIONS(11053), 1, anon_sym_GT2, STATE(5416), 1, aux_sym__multiple_types_repeat1, @@ -414884,9 +414884,9 @@ static const uint16_t ts_small_parse_table[] = { [213819] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6484), 1, + ACTIONS(6493), 1, sym__entry_separator, - ACTIONS(11046), 1, + ACTIONS(11055), 1, anon_sym_RBRACK, STATE(6491), 1, aux_sym__multiple_types_repeat1, @@ -414895,9 +414895,9 @@ static const uint16_t ts_small_parse_table[] = { [213835] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6484), 1, + ACTIONS(6493), 1, sym__entry_separator, - ACTIONS(11048), 1, + ACTIONS(11057), 1, anon_sym_RBRACK, STATE(6495), 1, aux_sym__multiple_types_repeat1, @@ -414906,9 +414906,9 @@ static const uint16_t ts_small_parse_table[] = { [213851] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6484), 1, + ACTIONS(6493), 1, sym__entry_separator, - ACTIONS(11050), 1, + ACTIONS(11059), 1, anon_sym_RBRACK, STATE(6501), 1, aux_sym__multiple_types_repeat1, @@ -414926,9 +414926,9 @@ static const uint16_t ts_small_parse_table[] = { [213879] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6484), 1, + ACTIONS(6493), 1, sym__entry_separator, - ACTIONS(11052), 1, + ACTIONS(11061), 1, anon_sym_RBRACK, STATE(6502), 1, aux_sym__multiple_types_repeat1, @@ -414937,9 +414937,9 @@ static const uint16_t ts_small_parse_table[] = { [213895] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6484), 1, + ACTIONS(6493), 1, sym__entry_separator, - ACTIONS(11054), 1, + ACTIONS(11063), 1, anon_sym_RBRACK, STATE(6503), 1, aux_sym__multiple_types_repeat1, @@ -414948,9 +414948,9 @@ static const uint16_t ts_small_parse_table[] = { [213911] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6484), 1, + ACTIONS(6493), 1, sym__entry_separator, - ACTIONS(11056), 1, + ACTIONS(11065), 1, anon_sym_RBRACK, STATE(6508), 1, aux_sym__multiple_types_repeat1, @@ -414959,9 +414959,9 @@ static const uint16_t ts_small_parse_table[] = { [213927] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9156), 1, + ACTIONS(9165), 1, sym__entry_separator, - ACTIONS(11058), 1, + ACTIONS(11067), 1, anon_sym_GT2, STATE(5417), 1, aux_sym__multiple_types_repeat1, @@ -414970,9 +414970,9 @@ static const uint16_t ts_small_parse_table[] = { [213943] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11060), 1, + ACTIONS(11069), 1, anon_sym_PIPE, - ACTIONS(11063), 1, + ACTIONS(11072), 1, anon_sym_EQ_GT, STATE(6640), 2, sym_comment, @@ -414980,9 +414980,9 @@ static const uint16_t ts_small_parse_table[] = { [213957] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6484), 1, + ACTIONS(6493), 1, sym__entry_separator, - ACTIONS(11065), 1, + ACTIONS(11074), 1, anon_sym_RBRACK, STATE(6511), 1, aux_sym__multiple_types_repeat1, @@ -414991,9 +414991,9 @@ static const uint16_t ts_small_parse_table[] = { [213973] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9156), 1, + ACTIONS(9165), 1, sym__entry_separator, - ACTIONS(11067), 1, + ACTIONS(11076), 1, anon_sym_GT2, STATE(5418), 1, aux_sym__multiple_types_repeat1, @@ -415012,11 +415012,11 @@ static const uint16_t ts_small_parse_table[] = { [214003] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10489), 1, + ACTIONS(10498), 1, anon_sym_LPAREN, STATE(6644), 1, sym_comment, - ACTIONS(10491), 2, + ACTIONS(10500), 2, sym_unescaped_interpolated_content, anon_sym_SQUOTE, [214017] = 4, @@ -415032,20 +415032,20 @@ static const uint16_t ts_small_parse_table[] = { [214031] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4934), 1, + ACTIONS(4943), 1, sym__space, - ACTIONS(4936), 1, + ACTIONS(4945), 1, sym__newline, - ACTIONS(11069), 1, + ACTIONS(11078), 1, anon_sym_EQ2, STATE(6646), 1, sym_comment, [214047] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6051), 1, + ACTIONS(6060), 1, sym__entry_separator, - ACTIONS(6068), 1, + ACTIONS(6077), 1, anon_sym_RBRACE, STATE(3010), 1, aux_sym__multiple_types_repeat1, @@ -415083,9 +415083,9 @@ static const uint16_t ts_small_parse_table[] = { [214103] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11071), 1, + ACTIONS(11080), 1, anon_sym_RBRACK, - ACTIONS(11073), 1, + ACTIONS(11082), 1, sym_hex_digit, STATE(6651), 1, sym_comment, @@ -415116,16 +415116,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6654), 1, sym_comment, - ACTIONS(9578), 3, + ACTIONS(9587), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, [214159] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3424), 1, + ACTIONS(3433), 1, anon_sym_COLON2, - ACTIONS(6235), 1, + ACTIONS(6244), 1, anon_sym_LBRACE, STATE(6138), 1, sym_block, @@ -415136,7 +415136,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6656), 1, sym_comment, - ACTIONS(10751), 3, + ACTIONS(10760), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -415154,9 +415154,9 @@ static const uint16_t ts_small_parse_table[] = { [214203] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4403), 1, + ACTIONS(4412), 1, anon_sym_LPAREN2, - ACTIONS(4413), 1, + ACTIONS(4422), 1, aux_sym_unquoted_token4, STATE(6658), 1, sym_comment, @@ -415165,9 +415165,9 @@ static const uint16_t ts_small_parse_table[] = { [214219] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11073), 1, + ACTIONS(11082), 1, sym_hex_digit, - ACTIONS(11075), 1, + ACTIONS(11084), 1, anon_sym_RBRACK, STATE(6659), 1, sym_comment, @@ -415187,9 +415187,9 @@ static const uint16_t ts_small_parse_table[] = { [214251] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6484), 1, + ACTIONS(6493), 1, sym__entry_separator, - ACTIONS(11077), 1, + ACTIONS(11086), 1, anon_sym_RBRACK, STATE(6551), 1, aux_sym__multiple_types_repeat1, @@ -415200,16 +415200,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6662), 1, sym_comment, - ACTIONS(9569), 3, + ACTIONS(9578), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, [214279] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6484), 1, + ACTIONS(6493), 1, sym__entry_separator, - ACTIONS(11079), 1, + ACTIONS(11088), 1, anon_sym_RBRACK, STATE(6554), 1, aux_sym__multiple_types_repeat1, @@ -415218,9 +415218,9 @@ static const uint16_t ts_small_parse_table[] = { [214295] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6484), 1, + ACTIONS(6493), 1, sym__entry_separator, - ACTIONS(11081), 1, + ACTIONS(11090), 1, anon_sym_RBRACK, STATE(6556), 1, aux_sym__multiple_types_repeat1, @@ -415229,9 +415229,9 @@ static const uint16_t ts_small_parse_table[] = { [214311] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6484), 1, + ACTIONS(6493), 1, sym__entry_separator, - ACTIONS(11083), 1, + ACTIONS(11092), 1, anon_sym_RBRACK, STATE(6560), 1, aux_sym__multiple_types_repeat1, @@ -415240,9 +415240,9 @@ static const uint16_t ts_small_parse_table[] = { [214327] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6484), 1, + ACTIONS(6493), 1, sym__entry_separator, - ACTIONS(11085), 1, + ACTIONS(11094), 1, anon_sym_RBRACK, STATE(6561), 1, aux_sym__multiple_types_repeat1, @@ -415251,9 +415251,9 @@ static const uint16_t ts_small_parse_table[] = { [214343] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6051), 1, + ACTIONS(6060), 1, sym__entry_separator, - ACTIONS(6070), 1, + ACTIONS(6079), 1, anon_sym_RBRACE, STATE(3020), 1, aux_sym__multiple_types_repeat1, @@ -415264,16 +415264,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6668), 1, sym_comment, - ACTIONS(10827), 3, + ACTIONS(10836), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, [214371] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6484), 1, + ACTIONS(6493), 1, sym__entry_separator, - ACTIONS(11087), 1, + ACTIONS(11096), 1, anon_sym_RBRACK, STATE(6562), 1, aux_sym__multiple_types_repeat1, @@ -415282,9 +415282,9 @@ static const uint16_t ts_small_parse_table[] = { [214387] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6484), 1, + ACTIONS(6493), 1, sym__entry_separator, - ACTIONS(11089), 1, + ACTIONS(11098), 1, anon_sym_RBRACK, STATE(6563), 1, aux_sym__multiple_types_repeat1, @@ -415306,16 +415306,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6672), 1, sym_comment, - ACTIONS(10245), 3, + ACTIONS(10254), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, [214431] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6484), 1, + ACTIONS(6493), 1, sym__entry_separator, - ACTIONS(11091), 1, + ACTIONS(11100), 1, anon_sym_RBRACK, STATE(6564), 1, aux_sym__multiple_types_repeat1, @@ -415324,9 +415324,9 @@ static const uint16_t ts_small_parse_table[] = { [214447] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(10016), 1, + ACTIONS(10025), 1, anon_sym_if, - ACTIONS(11093), 1, + ACTIONS(11102), 1, anon_sym_EQ_GT, STATE(6674), 1, sym_comment, @@ -415337,16 +415337,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6675), 1, sym_comment, - ACTIONS(10245), 3, + ACTIONS(10254), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, [214475] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6282), 1, + ACTIONS(6291), 1, anon_sym_AT, - ACTIONS(7905), 1, + ACTIONS(7914), 1, anon_sym_EQ, STATE(4877), 1, sym_param_cmd, @@ -415355,9 +415355,9 @@ static const uint16_t ts_small_parse_table[] = { [214491] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6051), 1, + ACTIONS(6060), 1, sym__entry_separator, - ACTIONS(11095), 1, + ACTIONS(11104), 1, anon_sym_RBRACE, STATE(2975), 1, aux_sym__multiple_types_repeat1, @@ -415368,7 +415368,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(1523), 1, anon_sym_SEMI, - ACTIONS(3802), 1, + ACTIONS(3811), 1, sym__newline, STATE(1706), 1, aux_sym_shebang_repeat1, @@ -415377,9 +415377,9 @@ static const uint16_t ts_small_parse_table[] = { [214523] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5464), 1, + ACTIONS(5473), 1, anon_sym_LPAREN2, - ACTIONS(5474), 1, + ACTIONS(5483), 1, aux_sym__unquoted_in_list_token4, STATE(6679), 1, sym_comment, @@ -415388,9 +415388,9 @@ static const uint16_t ts_small_parse_table[] = { [214539] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11073), 1, + ACTIONS(11082), 1, sym_hex_digit, - ACTIONS(11097), 1, + ACTIONS(11106), 1, anon_sym_RBRACK, STATE(6680), 1, sym_comment, @@ -415399,9 +415399,9 @@ static const uint16_t ts_small_parse_table[] = { [214555] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3466), 1, + ACTIONS(3475), 1, sym__newline, - ACTIONS(3468), 1, + ACTIONS(3477), 1, sym__space, STATE(1139), 1, aux_sym_ctrl_do_parenthesized_repeat2, @@ -415420,9 +415420,9 @@ static const uint16_t ts_small_parse_table[] = { [214585] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11099), 1, + ACTIONS(11108), 1, anon_sym_POUND_BANG, - ACTIONS(11101), 1, + ACTIONS(11110), 1, sym__newline, STATE(6683), 1, sym_comment, @@ -415441,9 +415441,9 @@ static const uint16_t ts_small_parse_table[] = { [214615] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11073), 1, + ACTIONS(11082), 1, sym_hex_digit, - ACTIONS(11103), 1, + ACTIONS(11112), 1, anon_sym_RBRACK, STATE(6685), 1, sym_comment, @@ -415454,16 +415454,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6686), 1, sym_comment, - ACTIONS(10297), 3, + ACTIONS(10306), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, [214643] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6484), 1, + ACTIONS(6493), 1, sym__entry_separator, - ACTIONS(11105), 1, + ACTIONS(11114), 1, anon_sym_RBRACK, STATE(6607), 1, aux_sym__multiple_types_repeat1, @@ -415482,9 +415482,9 @@ static const uint16_t ts_small_parse_table[] = { [214673] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6484), 1, + ACTIONS(6493), 1, sym__entry_separator, - ACTIONS(11107), 1, + ACTIONS(11116), 1, anon_sym_RBRACK, STATE(6608), 1, aux_sym__multiple_types_repeat1, @@ -415493,9 +415493,9 @@ static const uint16_t ts_small_parse_table[] = { [214689] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6484), 1, + ACTIONS(6493), 1, sym__entry_separator, - ACTIONS(11109), 1, + ACTIONS(11118), 1, anon_sym_RBRACK, STATE(6609), 1, aux_sym__multiple_types_repeat1, @@ -415504,9 +415504,9 @@ static const uint16_t ts_small_parse_table[] = { [214705] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6484), 1, + ACTIONS(6493), 1, sym__entry_separator, - ACTIONS(11111), 1, + ACTIONS(11120), 1, anon_sym_RBRACK, STATE(6610), 1, aux_sym__multiple_types_repeat1, @@ -415525,9 +415525,9 @@ static const uint16_t ts_small_parse_table[] = { [214735] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6484), 1, + ACTIONS(6493), 1, sym__entry_separator, - ACTIONS(11113), 1, + ACTIONS(11122), 1, anon_sym_RBRACK, STATE(6614), 1, aux_sym__multiple_types_repeat1, @@ -415548,18 +415548,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(2204), 1, aux_sym_unquoted_token4, - ACTIONS(5894), 1, + ACTIONS(5903), 1, anon_sym_EQ_GT, - ACTIONS(5899), 1, + ACTIONS(5908), 1, anon_sym_PIPE, STATE(6695), 1, sym_comment, [214781] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6484), 1, + ACTIONS(6493), 1, sym__entry_separator, - ACTIONS(11115), 1, + ACTIONS(11124), 1, anon_sym_RBRACK, STATE(6615), 1, aux_sym__multiple_types_repeat1, @@ -415568,9 +415568,9 @@ static const uint16_t ts_small_parse_table[] = { [214797] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6484), 1, + ACTIONS(6493), 1, sym__entry_separator, - ACTIONS(11117), 1, + ACTIONS(11126), 1, anon_sym_RBRACK, STATE(6616), 1, aux_sym__multiple_types_repeat1, @@ -415579,9 +415579,9 @@ static const uint16_t ts_small_parse_table[] = { [214813] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6484), 1, + ACTIONS(6493), 1, sym__entry_separator, - ACTIONS(11119), 1, + ACTIONS(11128), 1, anon_sym_RBRACK, STATE(6624), 1, aux_sym__multiple_types_repeat1, @@ -415590,11 +415590,11 @@ static const uint16_t ts_small_parse_table[] = { [214829] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11121), 1, + ACTIONS(11130), 1, anon_sym_DQUOTE, STATE(6699), 1, sym_comment, - ACTIONS(11123), 2, + ACTIONS(11132), 2, sym__escaped_str_content, sym_escape_sequence, [214843] = 3, @@ -415602,7 +415602,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6700), 1, sym_comment, - ACTIONS(10781), 3, + ACTIONS(10790), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -415611,7 +415611,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6701), 1, sym_comment, - ACTIONS(11125), 3, + ACTIONS(11134), 3, anon_sym_PIPE, anon_sym_if, anon_sym_EQ_GT, @@ -415628,9 +415628,9 @@ static const uint16_t ts_small_parse_table[] = { [214881] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11073), 1, + ACTIONS(11082), 1, sym_hex_digit, - ACTIONS(11127), 1, + ACTIONS(11136), 1, anon_sym_RBRACK, STATE(6703), 1, sym_comment, @@ -415641,7 +415641,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6704), 1, sym_comment, - ACTIONS(5884), 3, + ACTIONS(5893), 3, anon_sym_PIPE, anon_sym_if, anon_sym_EQ_GT, @@ -415650,16 +415650,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6705), 1, sym_comment, - ACTIONS(10382), 3, + ACTIONS(10391), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, [214921] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11073), 1, + ACTIONS(11082), 1, sym_hex_digit, - ACTIONS(11129), 1, + ACTIONS(11138), 1, anon_sym_RBRACK, STATE(6706), 1, sym_comment, @@ -415670,7 +415670,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6707), 1, sym_comment, - ACTIONS(10384), 3, + ACTIONS(10393), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -415679,7 +415679,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6708), 1, sym_comment, - ACTIONS(10392), 3, + ACTIONS(10401), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -415688,7 +415688,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6709), 1, sym_comment, - ACTIONS(10297), 3, + ACTIONS(10306), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -415697,18 +415697,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6710), 1, sym_comment, - ACTIONS(10392), 3, + ACTIONS(10401), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, [214985] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11131), 1, + ACTIONS(11140), 1, anon_sym_LPAREN, STATE(6711), 1, sym_comment, - ACTIONS(11133), 2, + ACTIONS(11142), 2, sym_unescaped_interpolated_content, anon_sym_SQUOTE, [214999] = 3, @@ -415716,7 +415716,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6712), 1, sym_comment, - ACTIONS(6165), 3, + ACTIONS(6174), 3, anon_sym_PIPE, anon_sym_if, anon_sym_EQ_GT, @@ -415725,16 +415725,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6713), 1, sym_comment, - ACTIONS(6169), 3, + ACTIONS(6178), 3, anon_sym_PIPE, anon_sym_if, anon_sym_EQ_GT, [215023] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11073), 1, + ACTIONS(11082), 1, sym_hex_digit, - ACTIONS(11135), 1, + ACTIONS(11144), 1, anon_sym_RBRACK, STATE(6714), 1, sym_comment, @@ -415743,19 +415743,19 @@ static const uint16_t ts_small_parse_table[] = { [215039] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6043), 1, + ACTIONS(6052), 1, anon_sym_RBRACK, STATE(6715), 1, sym_comment, - ACTIONS(6045), 2, + ACTIONS(6054), 2, anon_sym_LPAREN2, sym__entry_separator, [215053] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6484), 1, + ACTIONS(6493), 1, sym__entry_separator, - ACTIONS(11137), 1, + ACTIONS(11146), 1, anon_sym_RBRACK, STATE(6097), 1, aux_sym__multiple_types_repeat1, @@ -415766,7 +415766,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6717), 1, sym_comment, - ACTIONS(5899), 3, + ACTIONS(5908), 3, anon_sym_PIPE, anon_sym_if, anon_sym_EQ_GT, @@ -415783,9 +415783,9 @@ static const uint16_t ts_small_parse_table[] = { [215095] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6484), 1, + ACTIONS(6493), 1, sym__entry_separator, - ACTIONS(11139), 1, + ACTIONS(11148), 1, anon_sym_RBRACK, STATE(6098), 1, aux_sym__multiple_types_repeat1, @@ -415794,9 +415794,9 @@ static const uint16_t ts_small_parse_table[] = { [215111] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6484), 1, + ACTIONS(6493), 1, sym__entry_separator, - ACTIONS(11141), 1, + ACTIONS(11150), 1, anon_sym_RBRACK, STATE(6099), 1, aux_sym__multiple_types_repeat1, @@ -415805,9 +415805,9 @@ static const uint16_t ts_small_parse_table[] = { [215127] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6484), 1, + ACTIONS(6493), 1, sym__entry_separator, - ACTIONS(11143), 1, + ACTIONS(11152), 1, anon_sym_RBRACK, STATE(6100), 1, aux_sym__multiple_types_repeat1, @@ -415826,9 +415826,9 @@ static const uint16_t ts_small_parse_table[] = { [215157] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6484), 1, + ACTIONS(6493), 1, sym__entry_separator, - ACTIONS(11145), 1, + ACTIONS(11154), 1, anon_sym_RBRACK, STATE(6101), 1, aux_sym__multiple_types_repeat1, @@ -415837,9 +415837,9 @@ static const uint16_t ts_small_parse_table[] = { [215173] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6484), 1, + ACTIONS(6493), 1, sym__entry_separator, - ACTIONS(11147), 1, + ACTIONS(11156), 1, anon_sym_RBRACK, STATE(6102), 1, aux_sym__multiple_types_repeat1, @@ -415848,9 +415848,9 @@ static const uint16_t ts_small_parse_table[] = { [215189] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6484), 1, + ACTIONS(6493), 1, sym__entry_separator, - ACTIONS(11149), 1, + ACTIONS(11158), 1, anon_sym_RBRACK, STATE(6103), 1, aux_sym__multiple_types_repeat1, @@ -415870,9 +415870,9 @@ static const uint16_t ts_small_parse_table[] = { [215221] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6484), 1, + ACTIONS(6493), 1, sym__entry_separator, - ACTIONS(11151), 1, + ACTIONS(11160), 1, anon_sym_RBRACK, STATE(6104), 1, aux_sym__multiple_types_repeat1, @@ -415881,9 +415881,9 @@ static const uint16_t ts_small_parse_table[] = { [215237] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3802), 1, + ACTIONS(3811), 1, sym__newline, - ACTIONS(11153), 1, + ACTIONS(11162), 1, anon_sym_COLON, STATE(1706), 1, aux_sym_shebang_repeat1, @@ -415896,7 +415896,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_unquoted_token2, ACTIONS(1767), 1, anon_sym_LBRACE, - ACTIONS(11155), 1, + ACTIONS(11164), 1, aux_sym__immediate_decimal_token2, STATE(6729), 1, sym_comment, @@ -415905,16 +415905,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6730), 1, sym_comment, - ACTIONS(11157), 3, + ACTIONS(11166), 3, anon_sym_PIPE, anon_sym_if, anon_sym_EQ_GT, [215281] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11073), 1, + ACTIONS(11082), 1, sym_hex_digit, - ACTIONS(11159), 1, + ACTIONS(11168), 1, anon_sym_RBRACK, STATE(6731), 1, sym_comment, @@ -415933,9 +415933,9 @@ static const uint16_t ts_small_parse_table[] = { [215311] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6051), 1, + ACTIONS(6060), 1, sym__entry_separator, - ACTIONS(11161), 1, + ACTIONS(11170), 1, anon_sym_RBRACE, STATE(3029), 1, aux_sym__multiple_types_repeat1, @@ -415944,9 +415944,9 @@ static const uint16_t ts_small_parse_table[] = { [215327] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11073), 1, + ACTIONS(11082), 1, sym_hex_digit, - ACTIONS(11163), 1, + ACTIONS(11172), 1, anon_sym_RBRACK, STATE(6734), 1, sym_comment, @@ -415967,16 +415967,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6736), 1, sym_comment, - ACTIONS(10487), 3, + ACTIONS(10496), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, [215369] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6484), 1, + ACTIONS(6493), 1, sym__entry_separator, - ACTIONS(11165), 1, + ACTIONS(11174), 1, anon_sym_RBRACK, STATE(6128), 1, aux_sym__multiple_types_repeat1, @@ -415995,9 +415995,9 @@ static const uint16_t ts_small_parse_table[] = { [215399] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6484), 1, + ACTIONS(6493), 1, sym__entry_separator, - ACTIONS(11167), 1, + ACTIONS(11176), 1, anon_sym_RBRACK, STATE(6129), 1, aux_sym__multiple_types_repeat1, @@ -416006,9 +416006,9 @@ static const uint16_t ts_small_parse_table[] = { [215415] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6484), 1, + ACTIONS(6493), 1, sym__entry_separator, - ACTIONS(11169), 1, + ACTIONS(11178), 1, anon_sym_RBRACK, STATE(6130), 1, aux_sym__multiple_types_repeat1, @@ -416017,9 +416017,9 @@ static const uint16_t ts_small_parse_table[] = { [215431] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6484), 1, + ACTIONS(6493), 1, sym__entry_separator, - ACTIONS(11171), 1, + ACTIONS(11180), 1, anon_sym_RBRACK, STATE(6131), 1, aux_sym__multiple_types_repeat1, @@ -416028,9 +416028,9 @@ static const uint16_t ts_small_parse_table[] = { [215447] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6484), 1, + ACTIONS(6493), 1, sym__entry_separator, - ACTIONS(11173), 1, + ACTIONS(11182), 1, anon_sym_RBRACK, STATE(6132), 1, aux_sym__multiple_types_repeat1, @@ -416049,9 +416049,9 @@ static const uint16_t ts_small_parse_table[] = { [215477] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6484), 1, + ACTIONS(6493), 1, sym__entry_separator, - ACTIONS(11175), 1, + ACTIONS(11184), 1, anon_sym_RBRACK, STATE(6133), 1, aux_sym__multiple_types_repeat1, @@ -416060,9 +416060,9 @@ static const uint16_t ts_small_parse_table[] = { [215493] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6484), 1, + ACTIONS(6493), 1, sym__entry_separator, - ACTIONS(11177), 1, + ACTIONS(11186), 1, anon_sym_RBRACK, STATE(6134), 1, aux_sym__multiple_types_repeat1, @@ -416071,19 +416071,19 @@ static const uint16_t ts_small_parse_table[] = { [215509] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5634), 1, + ACTIONS(5643), 1, sym__entry_separator, STATE(6746), 1, sym_comment, - ACTIONS(5632), 2, + ACTIONS(5641), 2, anon_sym_RBRACK, anon_sym_GT2, [215523] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6484), 1, + ACTIONS(6493), 1, sym__entry_separator, - ACTIONS(11179), 1, + ACTIONS(11188), 1, anon_sym_RBRACK, STATE(6135), 1, aux_sym__multiple_types_repeat1, @@ -416112,9 +416112,9 @@ static const uint16_t ts_small_parse_table[] = { [215567] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11073), 1, + ACTIONS(11082), 1, sym_hex_digit, - ACTIONS(11181), 1, + ACTIONS(11190), 1, anon_sym_RBRACK, STATE(6750), 1, sym_comment, @@ -416123,9 +416123,9 @@ static const uint16_t ts_small_parse_table[] = { [215583] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6484), 1, + ACTIONS(6493), 1, sym__entry_separator, - ACTIONS(11183), 1, + ACTIONS(11192), 1, anon_sym_RBRACK, STATE(3472), 1, aux_sym__multiple_types_repeat1, @@ -416136,7 +416136,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6752), 1, sym_comment, - ACTIONS(10759), 3, + ACTIONS(10768), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -416145,16 +416145,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6753), 1, sym_comment, - ACTIONS(10344), 3, + ACTIONS(10353), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, [215623] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11073), 1, + ACTIONS(11082), 1, sym_hex_digit, - ACTIONS(11185), 1, + ACTIONS(11194), 1, anon_sym_RBRACK, STATE(6754), 1, sym_comment, @@ -416165,16 +416165,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6755), 1, sym_comment, - ACTIONS(10459), 3, + ACTIONS(10468), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, [215651] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11073), 1, + ACTIONS(11082), 1, sym_hex_digit, - ACTIONS(11187), 1, + ACTIONS(11196), 1, anon_sym_RBRACK, STATE(6756), 1, sym_comment, @@ -416204,9 +416204,9 @@ static const uint16_t ts_small_parse_table[] = { [215697] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6484), 1, + ACTIONS(6493), 1, sym__entry_separator, - ACTIONS(11189), 1, + ACTIONS(11198), 1, anon_sym_RBRACK, STATE(6159), 1, aux_sym__multiple_types_repeat1, @@ -416215,19 +416215,19 @@ static const uint16_t ts_small_parse_table[] = { [215713] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5638), 1, + ACTIONS(5647), 1, sym__entry_separator, STATE(6760), 1, sym_comment, - ACTIONS(5636), 2, + ACTIONS(5645), 2, anon_sym_RBRACK, anon_sym_GT2, [215727] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4403), 1, + ACTIONS(4412), 1, anon_sym_LPAREN2, - ACTIONS(7130), 1, + ACTIONS(7139), 1, aux_sym_unquoted_token4, STATE(6761), 1, sym_comment, @@ -416246,9 +416246,9 @@ static const uint16_t ts_small_parse_table[] = { [215757] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6484), 1, + ACTIONS(6493), 1, sym__entry_separator, - ACTIONS(11191), 1, + ACTIONS(11200), 1, anon_sym_RBRACK, STATE(6160), 1, aux_sym__multiple_types_repeat1, @@ -416257,9 +416257,9 @@ static const uint16_t ts_small_parse_table[] = { [215773] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6484), 1, + ACTIONS(6493), 1, sym__entry_separator, - ACTIONS(11193), 1, + ACTIONS(11202), 1, anon_sym_RBRACK, STATE(6161), 1, aux_sym__multiple_types_repeat1, @@ -416268,9 +416268,9 @@ static const uint16_t ts_small_parse_table[] = { [215789] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6484), 1, + ACTIONS(6493), 1, sym__entry_separator, - ACTIONS(11195), 1, + ACTIONS(11204), 1, anon_sym_RBRACK, STATE(6162), 1, aux_sym__multiple_types_repeat1, @@ -416281,16 +416281,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6766), 1, sym_comment, - ACTIONS(10477), 3, + ACTIONS(10486), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, [215817] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6484), 1, + ACTIONS(6493), 1, sym__entry_separator, - ACTIONS(11197), 1, + ACTIONS(11206), 1, anon_sym_RBRACK, STATE(6163), 1, aux_sym__multiple_types_repeat1, @@ -416299,9 +416299,9 @@ static const uint16_t ts_small_parse_table[] = { [215833] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6484), 1, + ACTIONS(6493), 1, sym__entry_separator, - ACTIONS(11199), 1, + ACTIONS(11208), 1, anon_sym_RBRACK, STATE(6164), 1, aux_sym__multiple_types_repeat1, @@ -416310,9 +416310,9 @@ static const uint16_t ts_small_parse_table[] = { [215849] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6484), 1, + ACTIONS(6493), 1, sym__entry_separator, - ACTIONS(11201), 1, + ACTIONS(11210), 1, anon_sym_RBRACK, STATE(6165), 1, aux_sym__multiple_types_repeat1, @@ -416321,9 +416321,9 @@ static const uint16_t ts_small_parse_table[] = { [215865] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9156), 1, + ACTIONS(9165), 1, sym__entry_separator, - ACTIONS(11203), 1, + ACTIONS(11212), 1, anon_sym_GT2, STATE(5302), 1, aux_sym__multiple_types_repeat1, @@ -416334,16 +416334,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6771), 1, sym_comment, - ACTIONS(10483), 3, + ACTIONS(10492), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, [215893] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6484), 1, + ACTIONS(6493), 1, sym__entry_separator, - ACTIONS(11205), 1, + ACTIONS(11214), 1, anon_sym_RBRACK, STATE(6166), 1, aux_sym__multiple_types_repeat1, @@ -416363,9 +416363,9 @@ static const uint16_t ts_small_parse_table[] = { [215925] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4403), 1, + ACTIONS(4412), 1, anon_sym_LPAREN2, - ACTIONS(4904), 1, + ACTIONS(4913), 1, aux_sym_unquoted_token4, STATE(6774), 1, sym_comment, @@ -416376,7 +416376,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6775), 1, sym_comment, - ACTIONS(10344), 3, + ACTIONS(10353), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -416385,16 +416385,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6776), 1, sym_comment, - ACTIONS(11016), 3, + ACTIONS(11025), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, [215965] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11073), 1, + ACTIONS(11082), 1, sym_hex_digit, - ACTIONS(11207), 1, + ACTIONS(11216), 1, anon_sym_RBRACK, STATE(6777), 1, sym_comment, @@ -416403,9 +416403,9 @@ static const uint16_t ts_small_parse_table[] = { [215981] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11073), 1, + ACTIONS(11082), 1, sym_hex_digit, - ACTIONS(11209), 1, + ACTIONS(11218), 1, anon_sym_RBRACK, STATE(6778), 1, sym_comment, @@ -416414,9 +416414,9 @@ static const uint16_t ts_small_parse_table[] = { [215997] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9156), 1, + ACTIONS(9165), 1, sym__entry_separator, - ACTIONS(11211), 1, + ACTIONS(11220), 1, anon_sym_GT2, STATE(5304), 1, aux_sym__multiple_types_repeat1, @@ -416425,9 +416425,9 @@ static const uint16_t ts_small_parse_table[] = { [216013] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6484), 1, + ACTIONS(6493), 1, sym__entry_separator, - ACTIONS(11213), 1, + ACTIONS(11222), 1, anon_sym_RBRACK, STATE(6458), 1, aux_sym__multiple_types_repeat1, @@ -416456,9 +416456,9 @@ static const uint16_t ts_small_parse_table[] = { [216057] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11073), 1, + ACTIONS(11082), 1, sym_hex_digit, - ACTIONS(11215), 1, + ACTIONS(11224), 1, anon_sym_RBRACK, STATE(6783), 1, sym_comment, @@ -416477,9 +416477,9 @@ static const uint16_t ts_small_parse_table[] = { [216087] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11073), 1, + ACTIONS(11082), 1, sym_hex_digit, - ACTIONS(11217), 1, + ACTIONS(11226), 1, anon_sym_RBRACK, STATE(6785), 1, sym_comment, @@ -416488,9 +416488,9 @@ static const uint16_t ts_small_parse_table[] = { [216103] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6484), 1, + ACTIONS(6493), 1, sym__entry_separator, - ACTIONS(11219), 1, + ACTIONS(11228), 1, anon_sym_RBRACK, STATE(6188), 1, aux_sym__multiple_types_repeat1, @@ -416501,16 +416501,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6787), 1, sym_comment, - ACTIONS(10779), 3, + ACTIONS(10788), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, [216131] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6484), 1, + ACTIONS(6493), 1, sym__entry_separator, - ACTIONS(11221), 1, + ACTIONS(11230), 1, anon_sym_RBRACK, STATE(6189), 1, aux_sym__multiple_types_repeat1, @@ -416519,9 +416519,9 @@ static const uint16_t ts_small_parse_table[] = { [216147] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6484), 1, + ACTIONS(6493), 1, sym__entry_separator, - ACTIONS(11223), 1, + ACTIONS(11232), 1, anon_sym_RBRACK, STATE(6190), 1, aux_sym__multiple_types_repeat1, @@ -416530,9 +416530,9 @@ static const uint16_t ts_small_parse_table[] = { [216163] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6484), 1, + ACTIONS(6493), 1, sym__entry_separator, - ACTIONS(11225), 1, + ACTIONS(11234), 1, anon_sym_RBRACK, STATE(6191), 1, aux_sym__multiple_types_repeat1, @@ -416541,9 +416541,9 @@ static const uint16_t ts_small_parse_table[] = { [216179] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6484), 1, + ACTIONS(6493), 1, sym__entry_separator, - ACTIONS(11227), 1, + ACTIONS(11236), 1, anon_sym_RBRACK, STATE(6192), 1, aux_sym__multiple_types_repeat1, @@ -416554,16 +416554,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6792), 1, sym_comment, - ACTIONS(10938), 3, + ACTIONS(10947), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, [216207] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6484), 1, + ACTIONS(6493), 1, sym__entry_separator, - ACTIONS(11229), 1, + ACTIONS(11238), 1, anon_sym_RBRACK, STATE(6193), 1, aux_sym__multiple_types_repeat1, @@ -416572,9 +416572,9 @@ static const uint16_t ts_small_parse_table[] = { [216223] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6484), 1, + ACTIONS(6493), 1, sym__entry_separator, - ACTIONS(11231), 1, + ACTIONS(11240), 1, anon_sym_RBRACK, STATE(6194), 1, aux_sym__multiple_types_repeat1, @@ -416585,26 +416585,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6795), 1, sym_comment, - ACTIONS(10779), 3, + ACTIONS(10788), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, [216251] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11233), 1, + ACTIONS(11242), 1, anon_sym_LPAREN, STATE(6796), 1, sym_comment, - ACTIONS(11235), 2, + ACTIONS(11244), 2, sym_unescaped_interpolated_content, anon_sym_SQUOTE, [216265] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6484), 1, + ACTIONS(6493), 1, sym__entry_separator, - ACTIONS(11237), 1, + ACTIONS(11246), 1, anon_sym_RBRACK, STATE(6195), 1, aux_sym__multiple_types_repeat1, @@ -416615,7 +416615,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6798), 1, sym_comment, - ACTIONS(10271), 3, + ACTIONS(10280), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -416635,7 +416635,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6800), 1, sym_comment, - ACTIONS(10372), 3, + ACTIONS(10381), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -416644,7 +416644,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6801), 1, sym_comment, - ACTIONS(10871), 3, + ACTIONS(10880), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -416653,16 +416653,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6802), 1, sym_comment, - ACTIONS(10871), 3, + ACTIONS(10880), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, [216345] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6484), 1, + ACTIONS(6493), 1, sym__entry_separator, - ACTIONS(10219), 1, + ACTIONS(10228), 1, anon_sym_LBRACK, STATE(3429), 1, aux_sym__multiple_types_repeat1, @@ -416671,9 +416671,9 @@ static const uint16_t ts_small_parse_table[] = { [216361] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4403), 1, + ACTIONS(4412), 1, anon_sym_LPAREN2, - ACTIONS(4534), 1, + ACTIONS(4543), 1, aux_sym_unquoted_token4, STATE(6804), 1, sym_comment, @@ -416692,19 +416692,19 @@ static const uint16_t ts_small_parse_table[] = { [216391] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11241), 1, + ACTIONS(11250), 1, anon_sym_COMMA, STATE(6806), 1, sym_comment, - ACTIONS(11239), 2, + ACTIONS(11248), 2, anon_sym_RBRACK, sym_hex_digit, [216405] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11073), 1, + ACTIONS(11082), 1, sym_hex_digit, - ACTIONS(11243), 1, + ACTIONS(11252), 1, anon_sym_RBRACK, STATE(6807), 1, sym_comment, @@ -416713,9 +416713,9 @@ static const uint16_t ts_small_parse_table[] = { [216421] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6484), 1, + ACTIONS(6493), 1, sym__entry_separator, - ACTIONS(11245), 1, + ACTIONS(11254), 1, anon_sym_RBRACK, STATE(6547), 1, aux_sym__multiple_types_repeat1, @@ -416724,9 +416724,9 @@ static const uint16_t ts_small_parse_table[] = { [216437] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11073), 1, + ACTIONS(11082), 1, sym_hex_digit, - ACTIONS(11247), 1, + ACTIONS(11256), 1, anon_sym_RBRACK, STATE(6809), 1, sym_comment, @@ -416735,9 +416735,9 @@ static const uint16_t ts_small_parse_table[] = { [216453] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6484), 1, + ACTIONS(6493), 1, sym__entry_separator, - ACTIONS(11249), 1, + ACTIONS(11258), 1, anon_sym_RBRACK, STATE(6214), 1, aux_sym__multiple_types_repeat1, @@ -416756,9 +416756,9 @@ static const uint16_t ts_small_parse_table[] = { [216483] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6484), 1, + ACTIONS(6493), 1, sym__entry_separator, - ACTIONS(11251), 1, + ACTIONS(11260), 1, anon_sym_RBRACK, STATE(6215), 1, aux_sym__multiple_types_repeat1, @@ -416767,9 +416767,9 @@ static const uint16_t ts_small_parse_table[] = { [216499] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6484), 1, + ACTIONS(6493), 1, sym__entry_separator, - ACTIONS(11253), 1, + ACTIONS(11262), 1, anon_sym_RBRACK, STATE(6216), 1, aux_sym__multiple_types_repeat1, @@ -416778,9 +416778,9 @@ static const uint16_t ts_small_parse_table[] = { [216515] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6484), 1, + ACTIONS(6493), 1, sym__entry_separator, - ACTIONS(11255), 1, + ACTIONS(11264), 1, anon_sym_RBRACK, STATE(6217), 1, aux_sym__multiple_types_repeat1, @@ -416789,9 +416789,9 @@ static const uint16_t ts_small_parse_table[] = { [216531] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6484), 1, + ACTIONS(6493), 1, sym__entry_separator, - ACTIONS(11257), 1, + ACTIONS(11266), 1, anon_sym_RBRACK, STATE(6218), 1, aux_sym__multiple_types_repeat1, @@ -416810,9 +416810,9 @@ static const uint16_t ts_small_parse_table[] = { [216561] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6484), 1, + ACTIONS(6493), 1, sym__entry_separator, - ACTIONS(11259), 1, + ACTIONS(11268), 1, anon_sym_RBRACK, STATE(6219), 1, aux_sym__multiple_types_repeat1, @@ -416821,9 +416821,9 @@ static const uint16_t ts_small_parse_table[] = { [216577] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6484), 1, + ACTIONS(6493), 1, sym__entry_separator, - ACTIONS(11261), 1, + ACTIONS(11270), 1, anon_sym_RBRACK, STATE(6220), 1, aux_sym__multiple_types_repeat1, @@ -416832,9 +416832,9 @@ static const uint16_t ts_small_parse_table[] = { [216593] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6484), 1, + ACTIONS(6493), 1, sym__entry_separator, - ACTIONS(11263), 1, + ACTIONS(11272), 1, anon_sym_RBRACK, STATE(6221), 1, aux_sym__multiple_types_repeat1, @@ -416853,9 +416853,9 @@ static const uint16_t ts_small_parse_table[] = { [216623] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5845), 1, + ACTIONS(5854), 1, sym__entry_separator, - ACTIONS(11265), 1, + ACTIONS(11274), 1, anon_sym_RBRACK, STATE(2804), 1, aux_sym__multiple_types_repeat1, @@ -416864,9 +416864,9 @@ static const uint16_t ts_small_parse_table[] = { [216639] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5845), 1, + ACTIONS(5854), 1, sym__entry_separator, - ACTIONS(11267), 1, + ACTIONS(11276), 1, anon_sym_RBRACK, STATE(2877), 1, aux_sym__multiple_types_repeat1, @@ -416895,9 +416895,9 @@ static const uint16_t ts_small_parse_table[] = { [216683] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6484), 1, + ACTIONS(6493), 1, sym__entry_separator, - ACTIONS(11269), 1, + ACTIONS(11278), 1, anon_sym_RBRACK, STATE(6268), 1, aux_sym__multiple_types_repeat1, @@ -416917,9 +416917,9 @@ static const uint16_t ts_small_parse_table[] = { [216715] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11073), 1, + ACTIONS(11082), 1, sym_hex_digit, - ACTIONS(11271), 1, + ACTIONS(11280), 1, anon_sym_RBRACK, STATE(6827), 1, sym_comment, @@ -416937,9 +416937,9 @@ static const uint16_t ts_small_parse_table[] = { [216743] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6282), 1, + ACTIONS(6291), 1, anon_sym_AT, - ACTIONS(7800), 1, + ACTIONS(7809), 1, anon_sym_EQ, STATE(4811), 1, sym_param_cmd, @@ -416950,16 +416950,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6830), 1, sym_comment, - ACTIONS(10930), 3, + ACTIONS(10939), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, [216771] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11073), 1, + ACTIONS(11082), 1, sym_hex_digit, - ACTIONS(11273), 1, + ACTIONS(11282), 1, anon_sym_RBRACK, STATE(6831), 1, sym_comment, @@ -416968,9 +416968,9 @@ static const uint16_t ts_small_parse_table[] = { [216787] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6484), 1, + ACTIONS(6493), 1, sym__entry_separator, - ACTIONS(11275), 1, + ACTIONS(11284), 1, anon_sym_RBRACK, STATE(6557), 1, aux_sym__multiple_types_repeat1, @@ -416979,9 +416979,9 @@ static const uint16_t ts_small_parse_table[] = { [216803] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6484), 1, + ACTIONS(6493), 1, sym__entry_separator, - ACTIONS(11277), 1, + ACTIONS(11286), 1, anon_sym_RBRACK, STATE(6236), 1, aux_sym__multiple_types_repeat1, @@ -416990,9 +416990,9 @@ static const uint16_t ts_small_parse_table[] = { [216819] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6484), 1, + ACTIONS(6493), 1, sym__entry_separator, - ACTIONS(11279), 1, + ACTIONS(11288), 1, anon_sym_RBRACK, STATE(6558), 1, aux_sym__multiple_types_repeat1, @@ -417001,9 +417001,9 @@ static const uint16_t ts_small_parse_table[] = { [216835] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6484), 1, + ACTIONS(6493), 1, sym__entry_separator, - ACTIONS(11281), 1, + ACTIONS(11290), 1, anon_sym_RBRACK, STATE(6559), 1, aux_sym__multiple_types_repeat1, @@ -417012,9 +417012,9 @@ static const uint16_t ts_small_parse_table[] = { [216851] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6484), 1, + ACTIONS(6493), 1, sym__entry_separator, - ACTIONS(11283), 1, + ACTIONS(11292), 1, anon_sym_RBRACK, STATE(6237), 1, aux_sym__multiple_types_repeat1, @@ -417023,9 +417023,9 @@ static const uint16_t ts_small_parse_table[] = { [216867] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6484), 1, + ACTIONS(6493), 1, sym__entry_separator, - ACTIONS(11285), 1, + ACTIONS(11294), 1, anon_sym_RBRACK, STATE(6238), 1, aux_sym__multiple_types_repeat1, @@ -417034,9 +417034,9 @@ static const uint16_t ts_small_parse_table[] = { [216883] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6484), 1, + ACTIONS(6493), 1, sym__entry_separator, - ACTIONS(11287), 1, + ACTIONS(11296), 1, anon_sym_RBRACK, STATE(6239), 1, aux_sym__multiple_types_repeat1, @@ -417045,9 +417045,9 @@ static const uint16_t ts_small_parse_table[] = { [216899] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6484), 1, + ACTIONS(6493), 1, sym__entry_separator, - ACTIONS(11289), 1, + ACTIONS(11298), 1, anon_sym_RBRACK, STATE(6240), 1, aux_sym__multiple_types_repeat1, @@ -417066,9 +417066,9 @@ static const uint16_t ts_small_parse_table[] = { [216929] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6484), 1, + ACTIONS(6493), 1, sym__entry_separator, - ACTIONS(11291), 1, + ACTIONS(11300), 1, anon_sym_RBRACK, STATE(6241), 1, aux_sym__multiple_types_repeat1, @@ -417077,9 +417077,9 @@ static const uint16_t ts_small_parse_table[] = { [216945] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6484), 1, + ACTIONS(6493), 1, sym__entry_separator, - ACTIONS(11293), 1, + ACTIONS(11302), 1, anon_sym_RBRACK, STATE(6242), 1, aux_sym__multiple_types_repeat1, @@ -417088,9 +417088,9 @@ static const uint16_t ts_small_parse_table[] = { [216961] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6282), 1, + ACTIONS(6291), 1, anon_sym_AT, - ACTIONS(7800), 1, + ACTIONS(7809), 1, anon_sym_EQ, STATE(4812), 1, sym_param_cmd, @@ -417099,9 +417099,9 @@ static const uint16_t ts_small_parse_table[] = { [216977] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11073), 1, + ACTIONS(11082), 1, sym_hex_digit, - ACTIONS(11295), 1, + ACTIONS(11304), 1, anon_sym_RBRACK, STATE(6844), 1, sym_comment, @@ -417110,9 +417110,9 @@ static const uint16_t ts_small_parse_table[] = { [216993] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6484), 1, + ACTIONS(6493), 1, sym__entry_separator, - ACTIONS(11297), 1, + ACTIONS(11306), 1, anon_sym_RBRACK, STATE(6243), 1, aux_sym__multiple_types_repeat1, @@ -417123,7 +417123,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6846), 1, sym_comment, - ACTIONS(10789), 3, + ACTIONS(10798), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -417154,7 +417154,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, ACTIONS(1693), 1, sym__entry_separator, - ACTIONS(8911), 1, + ACTIONS(8920), 1, aux_sym__unquoted_in_record_token2, STATE(6849), 1, sym_comment, @@ -417181,9 +417181,9 @@ static const uint16_t ts_small_parse_table[] = { [217093] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11073), 1, + ACTIONS(11082), 1, sym_hex_digit, - ACTIONS(11299), 1, + ACTIONS(11308), 1, anon_sym_RBRACK, STATE(6852), 1, sym_comment, @@ -417194,7 +417194,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6853), 1, sym_comment, - ACTIONS(10791), 3, + ACTIONS(10800), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -417211,9 +417211,9 @@ static const uint16_t ts_small_parse_table[] = { [217135] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11073), 1, + ACTIONS(11082), 1, sym_hex_digit, - ACTIONS(11301), 1, + ACTIONS(11310), 1, anon_sym_RBRACK, STATE(6855), 1, sym_comment, @@ -417222,9 +417222,9 @@ static const uint16_t ts_small_parse_table[] = { [217151] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6484), 1, + ACTIONS(6493), 1, sym__entry_separator, - ACTIONS(11303), 1, + ACTIONS(11312), 1, anon_sym_RBRACK, STATE(6258), 1, aux_sym__multiple_types_repeat1, @@ -417233,9 +417233,9 @@ static const uint16_t ts_small_parse_table[] = { [217167] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6484), 1, + ACTIONS(6493), 1, sym__entry_separator, - ACTIONS(11305), 1, + ACTIONS(11314), 1, anon_sym_RBRACK, STATE(3481), 1, aux_sym__multiple_types_repeat1, @@ -417246,16 +417246,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6858), 1, sym_comment, - ACTIONS(10875), 3, + ACTIONS(10884), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, [217195] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6484), 1, + ACTIONS(6493), 1, sym__entry_separator, - ACTIONS(11307), 1, + ACTIONS(11316), 1, anon_sym_RBRACK, STATE(6259), 1, aux_sym__multiple_types_repeat1, @@ -417264,9 +417264,9 @@ static const uint16_t ts_small_parse_table[] = { [217211] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6484), 1, + ACTIONS(6493), 1, sym__entry_separator, - ACTIONS(11309), 1, + ACTIONS(11318), 1, anon_sym_RBRACK, STATE(6260), 1, aux_sym__multiple_types_repeat1, @@ -417275,9 +417275,9 @@ static const uint16_t ts_small_parse_table[] = { [217227] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6484), 1, + ACTIONS(6493), 1, sym__entry_separator, - ACTIONS(11311), 1, + ACTIONS(11320), 1, anon_sym_RBRACK, STATE(6261), 1, aux_sym__multiple_types_repeat1, @@ -417286,19 +417286,19 @@ static const uint16_t ts_small_parse_table[] = { [217243] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5648), 1, + ACTIONS(5657), 1, sym__entry_separator, STATE(6862), 1, sym_comment, - ACTIONS(5646), 2, + ACTIONS(5655), 2, anon_sym_RBRACK, anon_sym_GT2, [217257] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6484), 1, + ACTIONS(6493), 1, sym__entry_separator, - ACTIONS(11313), 1, + ACTIONS(11322), 1, anon_sym_RBRACK, STATE(6262), 1, aux_sym__multiple_types_repeat1, @@ -417309,26 +417309,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6864), 1, sym_comment, - ACTIONS(11315), 3, + ACTIONS(11324), 3, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, [217285] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11317), 1, + ACTIONS(11326), 1, anon_sym_GT2, STATE(6865), 1, sym_comment, - ACTIONS(11319), 2, + ACTIONS(11328), 2, anon_sym_AT, sym__entry_separator, [217299] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6484), 1, + ACTIONS(6493), 1, sym__entry_separator, - ACTIONS(11321), 1, + ACTIONS(11330), 1, anon_sym_RBRACK, STATE(6263), 1, aux_sym__multiple_types_repeat1, @@ -417337,9 +417337,9 @@ static const uint16_t ts_small_parse_table[] = { [217315] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6484), 1, + ACTIONS(6493), 1, sym__entry_separator, - ACTIONS(11323), 1, + ACTIONS(11332), 1, anon_sym_RBRACK, STATE(6264), 1, aux_sym__multiple_types_repeat1, @@ -417358,9 +417358,9 @@ static const uint16_t ts_small_parse_table[] = { [217345] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6484), 1, + ACTIONS(6493), 1, sym__entry_separator, - ACTIONS(11325), 1, + ACTIONS(11334), 1, anon_sym_RBRACK, STATE(6265), 1, aux_sym__multiple_types_repeat1, @@ -417369,9 +417369,9 @@ static const uint16_t ts_small_parse_table[] = { [217361] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6484), 1, + ACTIONS(6493), 1, sym__entry_separator, - ACTIONS(11327), 1, + ACTIONS(11336), 1, anon_sym_RBRACK, STATE(3470), 1, aux_sym__multiple_types_repeat1, @@ -417382,7 +417382,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6871), 1, sym_comment, - ACTIONS(10388), 3, + ACTIONS(10397), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -417393,7 +417393,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, ACTIONS(2235), 1, aux_sym_unquoted_token4, - ACTIONS(11329), 1, + ACTIONS(11338), 1, sym__space, STATE(6872), 1, sym_comment, @@ -417402,16 +417402,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6873), 1, sym_comment, - ACTIONS(10388), 3, + ACTIONS(10397), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, [217417] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11073), 1, + ACTIONS(11082), 1, sym_hex_digit, - ACTIONS(11331), 1, + ACTIONS(11340), 1, anon_sym_RBRACK, STATE(6874), 1, sym_comment, @@ -417422,7 +417422,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6875), 1, sym_comment, - ACTIONS(10779), 3, + ACTIONS(10788), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -417431,16 +417431,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6876), 1, sym_comment, - ACTIONS(10779), 3, + ACTIONS(10788), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, [217457] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11073), 1, + ACTIONS(11082), 1, sym_hex_digit, - ACTIONS(11333), 1, + ACTIONS(11342), 1, anon_sym_RBRACK, STATE(6877), 1, sym_comment, @@ -417449,9 +417449,9 @@ static const uint16_t ts_small_parse_table[] = { [217473] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6484), 1, + ACTIONS(6493), 1, sym__entry_separator, - ACTIONS(11335), 1, + ACTIONS(11344), 1, anon_sym_RBRACK, STATE(6280), 1, aux_sym__multiple_types_repeat1, @@ -417460,9 +417460,9 @@ static const uint16_t ts_small_parse_table[] = { [217489] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6484), 1, + ACTIONS(6493), 1, sym__entry_separator, - ACTIONS(11337), 1, + ACTIONS(11346), 1, anon_sym_RBRACK, STATE(6281), 1, aux_sym__multiple_types_repeat1, @@ -417471,9 +417471,9 @@ static const uint16_t ts_small_parse_table[] = { [217505] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6484), 1, + ACTIONS(6493), 1, sym__entry_separator, - ACTIONS(11339), 1, + ACTIONS(11348), 1, anon_sym_RBRACK, STATE(6282), 1, aux_sym__multiple_types_repeat1, @@ -417482,9 +417482,9 @@ static const uint16_t ts_small_parse_table[] = { [217521] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6484), 1, + ACTIONS(6493), 1, sym__entry_separator, - ACTIONS(11341), 1, + ACTIONS(11350), 1, anon_sym_RBRACK, STATE(6283), 1, aux_sym__multiple_types_repeat1, @@ -417493,19 +417493,19 @@ static const uint16_t ts_small_parse_table[] = { [217537] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5642), 1, + ACTIONS(5651), 1, sym__entry_separator, STATE(6882), 1, sym_comment, - ACTIONS(5640), 2, + ACTIONS(5649), 2, anon_sym_RBRACK, anon_sym_GT2, [217551] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6484), 1, + ACTIONS(6493), 1, sym__entry_separator, - ACTIONS(11343), 1, + ACTIONS(11352), 1, anon_sym_RBRACK, STATE(6284), 1, aux_sym__multiple_types_repeat1, @@ -417516,7 +417516,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6884), 1, sym_comment, - ACTIONS(10797), 3, + ACTIONS(10806), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -417534,9 +417534,9 @@ static const uint16_t ts_small_parse_table[] = { [217595] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6484), 1, + ACTIONS(6493), 1, sym__entry_separator, - ACTIONS(11345), 1, + ACTIONS(11354), 1, anon_sym_RBRACK, STATE(6285), 1, aux_sym__multiple_types_repeat1, @@ -417545,9 +417545,9 @@ static const uint16_t ts_small_parse_table[] = { [217611] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6484), 1, + ACTIONS(6493), 1, sym__entry_separator, - ACTIONS(11347), 1, + ACTIONS(11356), 1, anon_sym_RBRACK, STATE(6286), 1, aux_sym__multiple_types_repeat1, @@ -417556,9 +417556,9 @@ static const uint16_t ts_small_parse_table[] = { [217627] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6051), 1, + ACTIONS(6060), 1, sym__entry_separator, - ACTIONS(11349), 1, + ACTIONS(11358), 1, anon_sym_RBRACE, STATE(2995), 1, aux_sym__multiple_types_repeat1, @@ -417567,9 +417567,9 @@ static const uint16_t ts_small_parse_table[] = { [217643] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6051), 1, + ACTIONS(6060), 1, sym__entry_separator, - ACTIONS(11351), 1, + ACTIONS(11360), 1, anon_sym_RBRACE, STATE(2996), 1, aux_sym__multiple_types_repeat1, @@ -417578,9 +417578,9 @@ static const uint16_t ts_small_parse_table[] = { [217659] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6484), 1, + ACTIONS(6493), 1, sym__entry_separator, - ACTIONS(11353), 1, + ACTIONS(11362), 1, anon_sym_RBRACK, STATE(6287), 1, aux_sym__multiple_types_repeat1, @@ -417591,7 +417591,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(1683), 1, anon_sym_LPAREN2, - ACTIONS(7177), 1, + ACTIONS(7186), 1, aux_sym__unquoted_in_record_token4, STATE(6891), 1, sym_comment, @@ -417600,9 +417600,9 @@ static const uint16_t ts_small_parse_table[] = { [217691] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6282), 1, + ACTIONS(6291), 1, anon_sym_AT, - ACTIONS(11355), 1, + ACTIONS(11364), 1, anon_sym_GT2, STATE(6892), 1, sym_comment, @@ -417611,9 +417611,9 @@ static const uint16_t ts_small_parse_table[] = { [217707] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6484), 1, + ACTIONS(6493), 1, sym__entry_separator, - ACTIONS(11357), 1, + ACTIONS(11366), 1, anon_sym_RBRACK, STATE(6297), 1, aux_sym__multiple_types_repeat1, @@ -417622,9 +417622,9 @@ static const uint16_t ts_small_parse_table[] = { [217723] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6484), 1, + ACTIONS(6493), 1, sym__entry_separator, - ACTIONS(11359), 1, + ACTIONS(11368), 1, anon_sym_RBRACK, STATE(6185), 1, aux_sym__multiple_types_repeat1, @@ -417633,9 +417633,9 @@ static const uint16_t ts_small_parse_table[] = { [217739] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6484), 1, + ACTIONS(6493), 1, sym__entry_separator, - ACTIONS(11361), 1, + ACTIONS(11370), 1, anon_sym_RBRACK, STATE(6298), 1, aux_sym__multiple_types_repeat1, @@ -417644,9 +417644,9 @@ static const uint16_t ts_small_parse_table[] = { [217755] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6484), 1, + ACTIONS(6493), 1, sym__entry_separator, - ACTIONS(11363), 1, + ACTIONS(11372), 1, anon_sym_RBRACK, STATE(6299), 1, aux_sym__multiple_types_repeat1, @@ -417655,9 +417655,9 @@ static const uint16_t ts_small_parse_table[] = { [217771] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6484), 1, + ACTIONS(6493), 1, sym__entry_separator, - ACTIONS(11365), 1, + ACTIONS(11374), 1, anon_sym_RBRACK, STATE(6300), 1, aux_sym__multiple_types_repeat1, @@ -417666,9 +417666,9 @@ static const uint16_t ts_small_parse_table[] = { [217787] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5845), 1, + ACTIONS(5854), 1, sym__entry_separator, - ACTIONS(11367), 1, + ACTIONS(11376), 1, anon_sym_RBRACK, STATE(2815), 1, aux_sym__multiple_types_repeat1, @@ -417677,9 +417677,9 @@ static const uint16_t ts_small_parse_table[] = { [217803] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6484), 1, + ACTIONS(6493), 1, sym__entry_separator, - ACTIONS(11369), 1, + ACTIONS(11378), 1, anon_sym_RBRACK, STATE(6301), 1, aux_sym__multiple_types_repeat1, @@ -417688,9 +417688,9 @@ static const uint16_t ts_small_parse_table[] = { [217819] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6484), 1, + ACTIONS(6493), 1, sym__entry_separator, - ACTIONS(11371), 1, + ACTIONS(11380), 1, anon_sym_RBRACK, STATE(6250), 1, aux_sym__multiple_types_repeat1, @@ -417699,9 +417699,9 @@ static const uint16_t ts_small_parse_table[] = { [217835] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6484), 1, + ACTIONS(6493), 1, sym__entry_separator, - ACTIONS(11373), 1, + ACTIONS(11382), 1, anon_sym_RBRACK, STATE(6302), 1, aux_sym__multiple_types_repeat1, @@ -417710,9 +417710,9 @@ static const uint16_t ts_small_parse_table[] = { [217851] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6484), 1, + ACTIONS(6493), 1, sym__entry_separator, - ACTIONS(11375), 1, + ACTIONS(11384), 1, anon_sym_RBRACK, STATE(6303), 1, aux_sym__multiple_types_repeat1, @@ -417721,9 +417721,9 @@ static const uint16_t ts_small_parse_table[] = { [217867] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6484), 1, + ACTIONS(6493), 1, sym__entry_separator, - ACTIONS(11377), 1, + ACTIONS(11386), 1, anon_sym_RBRACK, STATE(6410), 1, aux_sym__multiple_types_repeat1, @@ -417732,7 +417732,7 @@ static const uint16_t ts_small_parse_table[] = { [217883] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11379), 1, + ACTIONS(11388), 1, sym__table_head_separator, STATE(6904), 1, sym_comment, @@ -417742,9 +417742,9 @@ static const uint16_t ts_small_parse_table[] = { [217897] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6484), 1, + ACTIONS(6493), 1, sym__entry_separator, - ACTIONS(11381), 1, + ACTIONS(11390), 1, anon_sym_RBRACK, STATE(6304), 1, aux_sym__multiple_types_repeat1, @@ -417753,9 +417753,9 @@ static const uint16_t ts_small_parse_table[] = { [217913] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9156), 1, + ACTIONS(9165), 1, sym__entry_separator, - ACTIONS(11383), 1, + ACTIONS(11392), 1, anon_sym_GT2, STATE(5312), 1, aux_sym__multiple_types_repeat1, @@ -417764,9 +417764,9 @@ static const uint16_t ts_small_parse_table[] = { [217929] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5845), 1, + ACTIONS(5854), 1, sym__entry_separator, - ACTIONS(11385), 1, + ACTIONS(11394), 1, anon_sym_RBRACK, STATE(2832), 1, aux_sym__multiple_types_repeat1, @@ -417775,9 +417775,9 @@ static const uint16_t ts_small_parse_table[] = { [217945] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6484), 1, + ACTIONS(6493), 1, sym__entry_separator, - ACTIONS(11387), 1, + ACTIONS(11396), 1, anon_sym_RBRACK, STATE(6460), 1, aux_sym__multiple_types_repeat1, @@ -417786,9 +417786,9 @@ static const uint16_t ts_small_parse_table[] = { [217961] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6484), 1, + ACTIONS(6493), 1, sym__entry_separator, - ACTIONS(11389), 1, + ACTIONS(11398), 1, anon_sym_RBRACK, STATE(3482), 1, aux_sym__multiple_types_repeat1, @@ -417797,9 +417797,9 @@ static const uint16_t ts_small_parse_table[] = { [217977] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6484), 1, + ACTIONS(6493), 1, sym__entry_separator, - ACTIONS(11391), 1, + ACTIONS(11400), 1, anon_sym_RBRACK, STATE(6312), 1, aux_sym__multiple_types_repeat1, @@ -417808,9 +417808,9 @@ static const uint16_t ts_small_parse_table[] = { [217993] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9156), 1, + ACTIONS(9165), 1, sym__entry_separator, - ACTIONS(11393), 1, + ACTIONS(11402), 1, anon_sym_GT2, STATE(5313), 1, aux_sym__multiple_types_repeat1, @@ -417819,9 +417819,9 @@ static const uint16_t ts_small_parse_table[] = { [218009] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5707), 1, + ACTIONS(5716), 1, sym__entry_separator, - ACTIONS(11395), 1, + ACTIONS(11404), 1, anon_sym_RBRACK, STATE(2720), 1, aux_sym__multiple_types_repeat1, @@ -417830,9 +417830,9 @@ static const uint16_t ts_small_parse_table[] = { [218025] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6484), 1, + ACTIONS(6493), 1, sym__entry_separator, - ACTIONS(11397), 1, + ACTIONS(11406), 1, anon_sym_RBRACK, STATE(6313), 1, aux_sym__multiple_types_repeat1, @@ -417841,9 +417841,9 @@ static const uint16_t ts_small_parse_table[] = { [218041] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6484), 1, + ACTIONS(6493), 1, sym__entry_separator, - ACTIONS(11399), 1, + ACTIONS(11408), 1, anon_sym_RBRACK, STATE(6314), 1, aux_sym__multiple_types_repeat1, @@ -417852,9 +417852,9 @@ static const uint16_t ts_small_parse_table[] = { [218057] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6484), 1, + ACTIONS(6493), 1, sym__entry_separator, - ACTIONS(11401), 1, + ACTIONS(11410), 1, anon_sym_RBRACK, STATE(6315), 1, aux_sym__multiple_types_repeat1, @@ -417865,16 +417865,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6916), 1, sym_comment, - ACTIONS(10986), 3, + ACTIONS(10995), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, [218085] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6484), 1, + ACTIONS(6493), 1, sym__entry_separator, - ACTIONS(11403), 1, + ACTIONS(11412), 1, anon_sym_RBRACK, STATE(6316), 1, aux_sym__multiple_types_repeat1, @@ -417893,9 +417893,9 @@ static const uint16_t ts_small_parse_table[] = { [218115] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6484), 1, + ACTIONS(6493), 1, sym__entry_separator, - ACTIONS(11405), 1, + ACTIONS(11414), 1, anon_sym_RBRACK, STATE(6317), 1, aux_sym__multiple_types_repeat1, @@ -417904,9 +417904,9 @@ static const uint16_t ts_small_parse_table[] = { [218131] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6484), 1, + ACTIONS(6493), 1, sym__entry_separator, - ACTIONS(11407), 1, + ACTIONS(11416), 1, anon_sym_RBRACK, STATE(6318), 1, aux_sym__multiple_types_repeat1, @@ -417915,9 +417915,9 @@ static const uint16_t ts_small_parse_table[] = { [218147] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6484), 1, + ACTIONS(6493), 1, sym__entry_separator, - ACTIONS(11409), 1, + ACTIONS(11418), 1, anon_sym_RBRACK, STATE(6319), 1, aux_sym__multiple_types_repeat1, @@ -417926,9 +417926,9 @@ static const uint16_t ts_small_parse_table[] = { [218163] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5845), 1, + ACTIONS(5854), 1, sym__entry_separator, - ACTIONS(11411), 1, + ACTIONS(11420), 1, anon_sym_RBRACK, STATE(2853), 1, aux_sym__multiple_types_repeat1, @@ -417937,9 +417937,9 @@ static const uint16_t ts_small_parse_table[] = { [218179] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5845), 1, + ACTIONS(5854), 1, sym__entry_separator, - ACTIONS(11413), 1, + ACTIONS(11422), 1, anon_sym_RBRACK, STATE(2856), 1, aux_sym__multiple_types_repeat1, @@ -417950,16 +417950,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6924), 1, sym_comment, - ACTIONS(10950), 3, + ACTIONS(10959), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, [218207] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9156), 1, + ACTIONS(9165), 1, sym__entry_separator, - ACTIONS(11415), 1, + ACTIONS(11424), 1, anon_sym_GT2, STATE(5320), 1, aux_sym__multiple_types_repeat1, @@ -417968,9 +417968,9 @@ static const uint16_t ts_small_parse_table[] = { [218223] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6484), 1, + ACTIONS(6493), 1, sym__entry_separator, - ACTIONS(11417), 1, + ACTIONS(11426), 1, anon_sym_RBRACK, STATE(6489), 1, aux_sym__multiple_types_repeat1, @@ -417979,9 +417979,9 @@ static const uint16_t ts_small_parse_table[] = { [218239] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6484), 1, + ACTIONS(6493), 1, sym__entry_separator, - ACTIONS(11419), 1, + ACTIONS(11428), 1, anon_sym_RBRACK, STATE(6522), 1, aux_sym__multiple_types_repeat1, @@ -417990,9 +417990,9 @@ static const uint16_t ts_small_parse_table[] = { [218255] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9156), 1, + ACTIONS(9165), 1, sym__entry_separator, - ACTIONS(11421), 1, + ACTIONS(11430), 1, anon_sym_GT2, STATE(5325), 1, aux_sym__multiple_types_repeat1, @@ -418001,9 +418001,9 @@ static const uint16_t ts_small_parse_table[] = { [218271] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6484), 1, + ACTIONS(6493), 1, sym__entry_separator, - ACTIONS(11423), 1, + ACTIONS(11432), 1, anon_sym_RBRACK, STATE(6528), 1, aux_sym__multiple_types_repeat1, @@ -418012,9 +418012,9 @@ static const uint16_t ts_small_parse_table[] = { [218287] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5464), 1, + ACTIONS(5473), 1, anon_sym_LPAREN2, - ACTIONS(8748), 1, + ACTIONS(8757), 1, aux_sym__unquoted_in_list_token4, STATE(6930), 1, sym_comment, @@ -418023,29 +418023,29 @@ static const uint16_t ts_small_parse_table[] = { [218303] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5656), 1, + ACTIONS(5665), 1, sym__entry_separator, STATE(6931), 1, sym_comment, - ACTIONS(5654), 2, + ACTIONS(5663), 2, anon_sym_RBRACK, anon_sym_GT2, [218317] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5618), 1, + ACTIONS(5627), 1, sym__entry_separator, STATE(6932), 1, sym_comment, - ACTIONS(5616), 2, + ACTIONS(5625), 2, anon_sym_RBRACK, anon_sym_GT2, [218331] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6282), 1, + ACTIONS(6291), 1, anon_sym_AT, - ACTIONS(11425), 1, + ACTIONS(11434), 1, anon_sym_GT2, STATE(6933), 1, sym_comment, @@ -418054,9 +418054,9 @@ static const uint16_t ts_small_parse_table[] = { [218347] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6484), 1, + ACTIONS(6493), 1, sym__entry_separator, - ACTIONS(11427), 1, + ACTIONS(11436), 1, anon_sym_RBRACK, STATE(6175), 1, aux_sym__multiple_types_repeat1, @@ -418065,7 +418065,7 @@ static const uint16_t ts_small_parse_table[] = { [218363] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9664), 1, + ACTIONS(9673), 1, anon_sym_LBRACK, STATE(6908), 1, sym_val_list, @@ -418076,9 +418076,9 @@ static const uint16_t ts_small_parse_table[] = { [218379] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6484), 1, + ACTIONS(6493), 1, sym__entry_separator, - ACTIONS(11429), 1, + ACTIONS(11438), 1, anon_sym_RBRACK, STATE(6235), 1, aux_sym__multiple_types_repeat1, @@ -418087,7 +418087,7 @@ static const uint16_t ts_small_parse_table[] = { [218395] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11431), 1, + ACTIONS(11440), 1, anon_sym_LBRACK, STATE(7215), 1, sym_val_list, @@ -418099,16 +418099,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6938), 1, sym_comment, - ACTIONS(10757), 3, + ACTIONS(10766), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, [218421] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6484), 1, + ACTIONS(6493), 1, sym__entry_separator, - ACTIONS(11434), 1, + ACTIONS(11443), 1, anon_sym_RBRACK, STATE(6406), 1, aux_sym__multiple_types_repeat1, @@ -418119,7 +418119,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(2298), 1, sym__entry_separator, - ACTIONS(11436), 1, + ACTIONS(11445), 1, anon_sym_RBRACE, STATE(570), 1, aux_sym__multiple_types_repeat1, @@ -418128,7 +418128,7 @@ static const uint16_t ts_small_parse_table[] = { [218453] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9664), 1, + ACTIONS(9673), 1, anon_sym_LBRACK, STATE(6937), 1, aux_sym_val_table_repeat1, @@ -418151,7 +418151,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6943), 1, sym_comment, - ACTIONS(11438), 3, + ACTIONS(11447), 3, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, @@ -418160,16 +418160,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6944), 1, sym_comment, - ACTIONS(11440), 3, + ACTIONS(11449), 3, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, [218507] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6484), 1, + ACTIONS(6493), 1, sym__entry_separator, - ACTIONS(11442), 1, + ACTIONS(11451), 1, anon_sym_RBRACK, STATE(6577), 1, aux_sym__multiple_types_repeat1, @@ -418180,7 +418180,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6946), 1, sym_comment, - ACTIONS(10239), 3, + ACTIONS(10248), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -418189,7 +418189,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6947), 1, sym_comment, - ACTIONS(10803), 3, + ACTIONS(10812), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -418216,11 +418216,11 @@ static const uint16_t ts_small_parse_table[] = { [218575] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4869), 1, + ACTIONS(4878), 1, anon_sym_LBRACE, - ACTIONS(11444), 1, + ACTIONS(11453), 1, anon_sym_EQ2, - ACTIONS(11446), 1, + ACTIONS(11455), 1, sym_short_flag_identifier, STATE(6950), 1, sym_comment, @@ -418229,7 +418229,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6951), 1, sym_comment, - ACTIONS(10805), 3, + ACTIONS(10814), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -418258,7 +418258,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6954), 1, sym_comment, - ACTIONS(10239), 3, + ACTIONS(10248), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -418277,7 +418277,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6956), 1, sym_comment, - ACTIONS(10287), 3, + ACTIONS(10296), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -418294,9 +418294,9 @@ static const uint16_t ts_small_parse_table[] = { [218683] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9156), 1, + ACTIONS(9165), 1, sym__entry_separator, - ACTIONS(11448), 1, + ACTIONS(11457), 1, anon_sym_GT2, STATE(5340), 1, aux_sym__multiple_types_repeat1, @@ -418317,7 +418317,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6960), 1, sym_comment, - ACTIONS(6173), 3, + ACTIONS(6182), 3, anon_sym_PIPE, anon_sym_if, anon_sym_EQ_GT, @@ -418326,7 +418326,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6961), 1, sym_comment, - ACTIONS(6173), 3, + ACTIONS(6182), 3, anon_sym_PIPE, anon_sym_if, anon_sym_EQ_GT, @@ -418335,16 +418335,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6962), 1, sym_comment, - ACTIONS(6177), 3, + ACTIONS(6186), 3, anon_sym_PIPE, anon_sym_if, anon_sym_EQ_GT, [218749] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9156), 1, + ACTIONS(9165), 1, sym__entry_separator, - ACTIONS(11450), 1, + ACTIONS(11459), 1, anon_sym_GT2, STATE(5341), 1, aux_sym__multiple_types_repeat1, @@ -418357,16 +418357,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_unquoted_token2, ACTIONS(1727), 1, anon_sym_LBRACE, - ACTIONS(10380), 1, + ACTIONS(10389), 1, aux_sym__immediate_decimal_token2, STATE(6964), 1, sym_comment, [218781] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9156), 1, + ACTIONS(9165), 1, sym__entry_separator, - ACTIONS(11452), 1, + ACTIONS(11461), 1, anon_sym_GT2, STATE(5326), 1, aux_sym__multiple_types_repeat1, @@ -418375,9 +418375,9 @@ static const uint16_t ts_small_parse_table[] = { [218797] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9156), 1, + ACTIONS(9165), 1, sym__entry_separator, - ACTIONS(11454), 1, + ACTIONS(11463), 1, anon_sym_GT2, STATE(5327), 1, aux_sym__multiple_types_repeat1, @@ -418388,7 +418388,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6967), 1, sym_comment, - ACTIONS(10589), 3, + ACTIONS(10598), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -418397,7 +418397,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(1683), 1, anon_sym_LPAREN2, - ACTIONS(8911), 1, + ACTIONS(8920), 1, aux_sym__unquoted_in_record_token4, STATE(6968), 1, sym_comment, @@ -418406,9 +418406,9 @@ static const uint16_t ts_small_parse_table[] = { [218841] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6051), 1, + ACTIONS(6060), 1, sym__entry_separator, - ACTIONS(6078), 1, + ACTIONS(6087), 1, anon_sym_RBRACE, STATE(3002), 1, aux_sym__multiple_types_repeat1, @@ -418417,9 +418417,9 @@ static const uint16_t ts_small_parse_table[] = { [218857] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6051), 1, + ACTIONS(6060), 1, sym__entry_separator, - ACTIONS(6080), 1, + ACTIONS(6089), 1, anon_sym_RBRACE, STATE(3007), 1, aux_sym__multiple_types_repeat1, @@ -418438,7 +418438,7 @@ static const uint16_t ts_small_parse_table[] = { [218887] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11456), 1, + ACTIONS(11465), 1, sym__table_head_separator, STATE(6972), 1, sym_comment, @@ -418458,9 +418458,9 @@ static const uint16_t ts_small_parse_table[] = { [218915] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9156), 1, + ACTIONS(9165), 1, sym__entry_separator, - ACTIONS(11458), 1, + ACTIONS(11467), 1, anon_sym_GT2, STATE(5332), 1, aux_sym__multiple_types_repeat1, @@ -418479,9 +418479,9 @@ static const uint16_t ts_small_parse_table[] = { [218945] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9156), 1, + ACTIONS(9165), 1, sym__entry_separator, - ACTIONS(11460), 1, + ACTIONS(11469), 1, anon_sym_GT2, STATE(5333), 1, aux_sym__multiple_types_repeat1, @@ -418490,9 +418490,9 @@ static const uint16_t ts_small_parse_table[] = { [218961] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6282), 1, + ACTIONS(6291), 1, anon_sym_AT, - ACTIONS(11462), 1, + ACTIONS(11471), 1, anon_sym_GT2, STATE(6977), 1, sym_comment, @@ -418511,9 +418511,9 @@ static const uint16_t ts_small_parse_table[] = { [218991] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9156), 1, + ACTIONS(9165), 1, sym__entry_separator, - ACTIONS(11464), 1, + ACTIONS(11473), 1, anon_sym_GT2, STATE(5336), 1, aux_sym__multiple_types_repeat1, @@ -418522,9 +418522,9 @@ static const uint16_t ts_small_parse_table[] = { [219007] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3422), 1, + ACTIONS(3431), 1, anon_sym_COLON2, - ACTIONS(6235), 1, + ACTIONS(6244), 1, anon_sym_LBRACE, STATE(6576), 1, sym_block, @@ -418543,9 +418543,9 @@ static const uint16_t ts_small_parse_table[] = { [219037] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9156), 1, + ACTIONS(9165), 1, sym__entry_separator, - ACTIONS(11466), 1, + ACTIONS(11475), 1, anon_sym_GT2, STATE(5337), 1, aux_sym__multiple_types_repeat1, @@ -418554,9 +418554,9 @@ static const uint16_t ts_small_parse_table[] = { [219053] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5845), 1, + ACTIONS(5854), 1, sym__entry_separator, - ACTIONS(11468), 1, + ACTIONS(11477), 1, anon_sym_RBRACK, STATE(2858), 1, aux_sym__multiple_types_repeat1, @@ -418575,9 +418575,9 @@ static const uint16_t ts_small_parse_table[] = { [219083] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3422), 1, + ACTIONS(3431), 1, anon_sym_COLON2, - ACTIONS(6235), 1, + ACTIONS(6244), 1, anon_sym_LBRACE, STATE(6138), 1, sym_block, @@ -418586,9 +418586,9 @@ static const uint16_t ts_small_parse_table[] = { [219099] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6484), 1, + ACTIONS(6493), 1, sym__entry_separator, - ACTIONS(11470), 1, + ACTIONS(11479), 1, anon_sym_RBRACK, STATE(6573), 1, aux_sym__multiple_types_repeat1, @@ -418597,7 +418597,7 @@ static const uint16_t ts_small_parse_table[] = { [219115] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9664), 1, + ACTIONS(9673), 1, anon_sym_LBRACK, STATE(6936), 1, sym_val_list, @@ -418608,9 +418608,9 @@ static const uint16_t ts_small_parse_table[] = { [219131] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9156), 1, + ACTIONS(9165), 1, sym__entry_separator, - ACTIONS(11472), 1, + ACTIONS(11481), 1, anon_sym_GT2, STATE(5338), 1, aux_sym__multiple_types_repeat1, @@ -418619,9 +418619,9 @@ static const uint16_t ts_small_parse_table[] = { [219147] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3422), 1, + ACTIONS(3431), 1, anon_sym_COLON2, - ACTIONS(6235), 1, + ACTIONS(6244), 1, anon_sym_LBRACE, STATE(4502), 1, sym_block, @@ -418630,9 +418630,9 @@ static const uint16_t ts_small_parse_table[] = { [219163] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6484), 1, + ACTIONS(6493), 1, sym__entry_separator, - ACTIONS(11474), 1, + ACTIONS(11483), 1, anon_sym_RBRACK, STATE(6398), 1, aux_sym__multiple_types_repeat1, @@ -418641,9 +418641,9 @@ static const uint16_t ts_small_parse_table[] = { [219179] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9156), 1, + ACTIONS(9165), 1, sym__entry_separator, - ACTIONS(11476), 1, + ACTIONS(11485), 1, anon_sym_GT2, STATE(5339), 1, aux_sym__multiple_types_repeat1, @@ -418654,16 +418654,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6992), 1, sym_comment, - ACTIONS(10599), 3, + ACTIONS(10608), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, [219207] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6484), 1, + ACTIONS(6493), 1, sym__entry_separator, - ACTIONS(11478), 1, + ACTIONS(11487), 1, anon_sym_RBRACK, STATE(6399), 1, aux_sym__multiple_types_repeat1, @@ -418672,9 +418672,9 @@ static const uint16_t ts_small_parse_table[] = { [219223] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6484), 1, + ACTIONS(6493), 1, sym__entry_separator, - ACTIONS(11480), 1, + ACTIONS(11489), 1, anon_sym_RBRACK, STATE(6409), 1, aux_sym__multiple_types_repeat1, @@ -418683,9 +418683,9 @@ static const uint16_t ts_small_parse_table[] = { [219239] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5707), 1, + ACTIONS(5716), 1, sym__entry_separator, - ACTIONS(11482), 1, + ACTIONS(11491), 1, anon_sym_RBRACK, STATE(2719), 1, aux_sym__multiple_types_repeat1, @@ -418696,7 +418696,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6996), 1, sym_comment, - ACTIONS(10239), 3, + ACTIONS(10248), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -418705,16 +418705,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6997), 1, sym_comment, - ACTIONS(11484), 3, + ACTIONS(11493), 3, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, [219279] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6484), 1, + ACTIONS(6493), 1, sym__entry_separator, - ACTIONS(11486), 1, + ACTIONS(11495), 1, anon_sym_RBRACK, STATE(6473), 1, aux_sym__multiple_types_repeat1, @@ -418723,7 +418723,7 @@ static const uint16_t ts_small_parse_table[] = { [219295] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11488), 1, + ACTIONS(11497), 1, sym__table_head_separator, STATE(6999), 1, sym_comment, @@ -418733,7 +418733,7 @@ static const uint16_t ts_small_parse_table[] = { [219309] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9664), 1, + ACTIONS(9673), 1, anon_sym_LBRACK, STATE(6808), 1, sym_val_list, @@ -418744,9 +418744,9 @@ static const uint16_t ts_small_parse_table[] = { [219325] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6484), 1, + ACTIONS(6493), 1, sym__entry_separator, - ACTIONS(11490), 1, + ACTIONS(11499), 1, anon_sym_RBRACK, STATE(6478), 1, aux_sym__multiple_types_repeat1, @@ -418757,14 +418757,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(7002), 1, sym_comment, - ACTIONS(11492), 3, + ACTIONS(11501), 3, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, [219353] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11494), 1, + ACTIONS(11503), 1, anon_sym_QMARK2, STATE(7003), 1, sym_comment, @@ -418774,7 +418774,7 @@ static const uint16_t ts_small_parse_table[] = { [219367] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11496), 1, + ACTIONS(11505), 1, anon_sym_QMARK2, STATE(7004), 1, sym_comment, @@ -418788,7 +418788,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, ACTIONS(2235), 1, aux_sym_unquoted_token4, - ACTIONS(11498), 1, + ACTIONS(11507), 1, sym__space, STATE(7005), 1, sym_comment, @@ -418797,7 +418797,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(7006), 1, sym_comment, - ACTIONS(10783), 3, + ACTIONS(10792), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -418806,7 +418806,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(2298), 1, sym__entry_separator, - ACTIONS(11500), 1, + ACTIONS(11509), 1, anon_sym_RBRACE, STATE(578), 1, aux_sym__multiple_types_repeat1, @@ -418815,7 +418815,7 @@ static const uint16_t ts_small_parse_table[] = { [219425] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9664), 1, + ACTIONS(9673), 1, anon_sym_LBRACK, STATE(6927), 1, sym_val_list, @@ -418828,9 +418828,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(1727), 1, anon_sym_LBRACE, - ACTIONS(9555), 1, + ACTIONS(9564), 1, aux_sym__immediate_decimal_token2, - ACTIONS(11502), 1, + ACTIONS(11511), 1, anon_sym_DOT, STATE(7009), 1, sym_comment, @@ -418847,11 +418847,11 @@ static const uint16_t ts_small_parse_table[] = { [219471] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4879), 1, + ACTIONS(4888), 1, anon_sym_LBRACE, - ACTIONS(11504), 1, + ACTIONS(11513), 1, sym_long_flag_identifier, - ACTIONS(11506), 1, + ACTIONS(11515), 1, anon_sym_EQ2, STATE(7011), 1, sym_comment, @@ -418860,7 +418860,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(2298), 1, sym__entry_separator, - ACTIONS(11508), 1, + ACTIONS(11517), 1, anon_sym_RBRACE, STATE(579), 1, aux_sym__multiple_types_repeat1, @@ -418869,7 +418869,7 @@ static const uint16_t ts_small_parse_table[] = { [219503] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9664), 1, + ACTIONS(9673), 1, anon_sym_LBRACK, STATE(6937), 1, aux_sym_val_table_repeat1, @@ -418884,14 +418884,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, ACTIONS(1693), 1, sym__entry_separator, - ACTIONS(8748), 1, + ACTIONS(8757), 1, aux_sym__unquoted_in_list_token2, STATE(7014), 1, sym_comment, [219535] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9664), 1, + ACTIONS(9673), 1, anon_sym_LBRACK, STATE(6937), 1, aux_sym_val_table_repeat1, @@ -418912,7 +418912,7 @@ static const uint16_t ts_small_parse_table[] = { [219565] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11510), 1, + ACTIONS(11519), 1, sym__table_head_separator, STATE(7017), 1, sym_comment, @@ -418924,7 +418924,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(7018), 1, sym_comment, - ACTIONS(10795), 3, + ACTIONS(10804), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -418933,14 +418933,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(7019), 1, sym_comment, - ACTIONS(10239), 3, + ACTIONS(10248), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, [219603] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9664), 1, + ACTIONS(9673), 1, anon_sym_LBRACK, STATE(6937), 1, aux_sym_val_table_repeat1, @@ -418962,7 +418962,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(7022), 1, sym_comment, - ACTIONS(11512), 3, + ACTIONS(11521), 3, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, @@ -418971,7 +418971,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(7023), 1, sym_comment, - ACTIONS(11032), 3, + ACTIONS(11041), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -418980,7 +418980,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(7024), 1, sym_comment, - ACTIONS(11036), 3, + ACTIONS(11045), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -418989,7 +418989,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(7025), 1, sym_comment, - ACTIONS(10899), 3, + ACTIONS(10908), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -418998,7 +418998,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(7026), 1, sym_comment, - ACTIONS(11514), 3, + ACTIONS(11523), 3, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, @@ -419007,7 +419007,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(7027), 1, sym_comment, - ACTIONS(11038), 3, + ACTIONS(11047), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -419016,7 +419016,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(7028), 1, sym_comment, - ACTIONS(11040), 3, + ACTIONS(11049), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -419054,7 +419054,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(7032), 1, sym_comment, - ACTIONS(10996), 3, + ACTIONS(11005), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -419063,16 +419063,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(7033), 1, sym_comment, - ACTIONS(10932), 3, + ACTIONS(10941), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, [219779] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5707), 1, + ACTIONS(5716), 1, sym__entry_separator, - ACTIONS(11516), 1, + ACTIONS(11525), 1, anon_sym_RBRACK, STATE(2734), 1, aux_sym__multiple_types_repeat1, @@ -419083,16 +419083,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(7035), 1, sym_comment, - ACTIONS(11002), 3, + ACTIONS(11011), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, [219807] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6051), 1, + ACTIONS(6060), 1, sym__entry_separator, - ACTIONS(6084), 1, + ACTIONS(6093), 1, anon_sym_RBRACE, STATE(3017), 1, aux_sym__multiple_types_repeat1, @@ -419103,16 +419103,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(7037), 1, sym_comment, - ACTIONS(10289), 3, + ACTIONS(10298), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, [219835] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6051), 1, + ACTIONS(6060), 1, sym__entry_separator, - ACTIONS(6092), 1, + ACTIONS(6101), 1, anon_sym_RBRACE, STATE(3018), 1, aux_sym__multiple_types_repeat1, @@ -419123,7 +419123,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(7039), 1, sym_comment, - ACTIONS(10553), 3, + ACTIONS(10562), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -419140,11 +419140,11 @@ static const uint16_t ts_small_parse_table[] = { [219877] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4916), 1, + ACTIONS(4925), 1, sym__space, - ACTIONS(4918), 1, + ACTIONS(4927), 1, sym__newline, - ACTIONS(11518), 1, + ACTIONS(11527), 1, anon_sym_EQ2, STATE(7041), 1, sym_comment, @@ -419153,16 +419153,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(7042), 1, sym_comment, - ACTIONS(11012), 3, + ACTIONS(11021), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, [219905] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3424), 1, + ACTIONS(3433), 1, anon_sym_COLON2, - ACTIONS(6235), 1, + ACTIONS(6244), 1, anon_sym_LBRACE, STATE(4502), 1, sym_block, @@ -419183,7 +419183,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(7045), 1, sym_comment, - ACTIONS(11014), 3, + ACTIONS(11023), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -419200,17 +419200,17 @@ static const uint16_t ts_small_parse_table[] = { [219961] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6037), 1, + ACTIONS(6046), 1, anon_sym_RBRACK, STATE(7047), 1, sym_comment, - ACTIONS(6039), 2, + ACTIONS(6048), 2, anon_sym_LPAREN2, sym__entry_separator, [219975] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11520), 1, + ACTIONS(11529), 1, sym__table_head_separator, STATE(7048), 1, sym_comment, @@ -419220,7 +419220,7 @@ static const uint16_t ts_small_parse_table[] = { [219989] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11522), 1, + ACTIONS(11531), 1, sym__table_head_separator, STATE(7049), 1, sym_comment, @@ -419230,9 +419230,9 @@ static const uint16_t ts_small_parse_table[] = { [220003] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5845), 1, + ACTIONS(5854), 1, sym__entry_separator, - ACTIONS(11524), 1, + ACTIONS(11533), 1, anon_sym_RBRACK, STATE(2879), 1, aux_sym__multiple_types_repeat1, @@ -419241,9 +419241,9 @@ static const uint16_t ts_small_parse_table[] = { [220019] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11073), 1, + ACTIONS(11082), 1, sym_hex_digit, - ACTIONS(11526), 1, + ACTIONS(11535), 1, anon_sym_RBRACK, STATE(7051), 1, sym_comment, @@ -419252,9 +419252,9 @@ static const uint16_t ts_small_parse_table[] = { [220035] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6484), 1, + ACTIONS(6493), 1, sym__entry_separator, - ACTIONS(11528), 1, + ACTIONS(11537), 1, anon_sym_RBRACK, STATE(6486), 1, aux_sym__multiple_types_repeat1, @@ -419265,14 +419265,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(7053), 1, sym_comment, - ACTIONS(10998), 3, + ACTIONS(11007), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, [220063] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9664), 1, + ACTIONS(9673), 1, anon_sym_LBRACK, STATE(6834), 1, sym_val_list, @@ -419283,7 +419283,7 @@ static const uint16_t ts_small_parse_table[] = { [220079] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9664), 1, + ACTIONS(9673), 1, anon_sym_LBRACK, STATE(6894), 1, sym_val_list, @@ -419294,7 +419294,7 @@ static const uint16_t ts_small_parse_table[] = { [220095] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9664), 1, + ACTIONS(9673), 1, anon_sym_LBRACK, STATE(6903), 1, sym_val_list, @@ -419307,16 +419307,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(7057), 1, sym_comment, - ACTIONS(11530), 3, + ACTIONS(11539), 3, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, [220123] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6282), 1, + ACTIONS(6291), 1, anon_sym_AT, - ACTIONS(7901), 1, + ACTIONS(7910), 1, anon_sym_EQ, STATE(4880), 1, sym_param_cmd, @@ -419335,7 +419335,7 @@ static const uint16_t ts_small_parse_table[] = { [220153] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9664), 1, + ACTIONS(9673), 1, anon_sym_LBRACK, STATE(6937), 1, aux_sym_val_table_repeat1, @@ -419348,7 +419348,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(7061), 1, sym_comment, - ACTIONS(10295), 3, + ACTIONS(10304), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -419364,9 +419364,9 @@ static const uint16_t ts_small_parse_table[] = { [220193] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5707), 1, + ACTIONS(5716), 1, sym__entry_separator, - ACTIONS(11532), 1, + ACTIONS(11541), 1, anon_sym_RBRACK, STATE(2735), 1, aux_sym__multiple_types_repeat1, @@ -419377,16 +419377,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(7064), 1, sym_comment, - ACTIONS(5720), 3, + ACTIONS(5729), 3, anon_sym_PIPE, anon_sym_if, anon_sym_EQ_GT, [220221] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4403), 1, + ACTIONS(4412), 1, anon_sym_LPAREN2, - ACTIONS(7051), 1, + ACTIONS(7060), 1, aux_sym_unquoted_token4, STATE(7065), 1, sym_comment, @@ -419395,9 +419395,9 @@ static const uint16_t ts_small_parse_table[] = { [220237] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11073), 1, + ACTIONS(11082), 1, sym_hex_digit, - ACTIONS(11534), 1, + ACTIONS(11543), 1, anon_sym_RBRACK, STATE(7066), 1, sym_comment, @@ -419408,16 +419408,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(7067), 1, sym_comment, - ACTIONS(6185), 3, + ACTIONS(6194), 3, anon_sym_PIPE, anon_sym_if, anon_sym_EQ_GT, [220265] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9156), 1, + ACTIONS(9165), 1, sym__entry_separator, - ACTIONS(11536), 1, + ACTIONS(11545), 1, anon_sym_COLON, STATE(5477), 1, aux_sym__multiple_types_repeat1, @@ -419426,9 +419426,9 @@ static const uint16_t ts_small_parse_table[] = { [220281] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6484), 1, + ACTIONS(6493), 1, sym__entry_separator, - ACTIONS(11538), 1, + ACTIONS(11547), 1, anon_sym_RBRACK, STATE(6320), 1, aux_sym__multiple_types_repeat1, @@ -419437,9 +419437,9 @@ static const uint16_t ts_small_parse_table[] = { [220297] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9156), 1, + ACTIONS(9165), 1, sym__entry_separator, - ACTIONS(11540), 1, + ACTIONS(11549), 1, anon_sym_COLON, STATE(5483), 1, aux_sym__multiple_types_repeat1, @@ -419462,14 +419462,14 @@ static const uint16_t ts_small_parse_table[] = { sym__newline, ACTIONS(1693), 1, sym__space, - ACTIONS(7051), 1, + ACTIONS(7060), 1, aux_sym_unquoted_token2, STATE(7072), 1, sym_comment, [220343] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11542), 1, + ACTIONS(11551), 1, sym__table_head_separator, STATE(7073), 1, sym_comment, @@ -419481,14 +419481,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(7074), 1, sym_comment, - ACTIONS(11544), 3, + ACTIONS(11553), 3, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, [220369] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11546), 1, + ACTIONS(11555), 1, sym__table_head_separator, STATE(7075), 1, sym_comment, @@ -419509,7 +419509,7 @@ static const uint16_t ts_small_parse_table[] = { [220399] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9664), 1, + ACTIONS(9673), 1, anon_sym_LBRACK, STATE(6937), 1, aux_sym_val_table_repeat1, @@ -419520,7 +419520,7 @@ static const uint16_t ts_small_parse_table[] = { [220415] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9664), 1, + ACTIONS(9673), 1, anon_sym_LBRACK, STATE(6937), 1, aux_sym_val_table_repeat1, @@ -419533,14 +419533,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(7079), 1, sym_comment, - ACTIONS(10988), 3, + ACTIONS(10997), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, [220443] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9664), 1, + ACTIONS(9673), 1, anon_sym_LBRACK, STATE(6937), 1, aux_sym_val_table_repeat1, @@ -419551,7 +419551,7 @@ static const uint16_t ts_small_parse_table[] = { [220459] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9664), 1, + ACTIONS(9673), 1, anon_sym_LBRACK, STATE(6937), 1, aux_sym_val_table_repeat1, @@ -419562,9 +419562,9 @@ static const uint16_t ts_small_parse_table[] = { [220475] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6484), 1, + ACTIONS(6493), 1, sym__entry_separator, - ACTIONS(11548), 1, + ACTIONS(11557), 1, anon_sym_RBRACK, STATE(6325), 1, aux_sym__multiple_types_repeat1, @@ -419573,9 +419573,9 @@ static const uint16_t ts_small_parse_table[] = { [220491] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6484), 1, + ACTIONS(6493), 1, sym__entry_separator, - ACTIONS(11550), 1, + ACTIONS(11559), 1, anon_sym_RBRACK, STATE(6331), 1, aux_sym__multiple_types_repeat1, @@ -419584,7 +419584,7 @@ static const uint16_t ts_small_parse_table[] = { [220507] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11552), 1, + ACTIONS(11561), 1, sym__table_head_separator, STATE(7084), 1, sym_comment, @@ -419596,16 +419596,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(7085), 1, sym_comment, - ACTIONS(11554), 3, + ACTIONS(11563), 3, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, [220533] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6484), 1, + ACTIONS(6493), 1, sym__entry_separator, - ACTIONS(11556), 1, + ACTIONS(11565), 1, anon_sym_RBRACK, STATE(6334), 1, aux_sym__multiple_types_repeat1, @@ -419614,7 +419614,7 @@ static const uint16_t ts_small_parse_table[] = { [220549] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11558), 1, + ACTIONS(11567), 1, sym__table_head_separator, STATE(7087), 1, sym_comment, @@ -419624,7 +419624,7 @@ static const uint16_t ts_small_parse_table[] = { [220563] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9664), 1, + ACTIONS(9673), 1, anon_sym_LBRACK, STATE(6633), 1, sym_val_list, @@ -419635,7 +419635,7 @@ static const uint16_t ts_small_parse_table[] = { [220579] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9664), 1, + ACTIONS(9673), 1, anon_sym_LBRACK, STATE(6636), 1, sym_val_list, @@ -419646,7 +419646,7 @@ static const uint16_t ts_small_parse_table[] = { [220595] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9664), 1, + ACTIONS(9673), 1, anon_sym_LBRACK, STATE(6638), 1, sym_val_list, @@ -419657,7 +419657,7 @@ static const uint16_t ts_small_parse_table[] = { [220611] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9664), 1, + ACTIONS(9673), 1, anon_sym_LBRACK, STATE(6641), 1, sym_val_list, @@ -419668,7 +419668,7 @@ static const uint16_t ts_small_parse_table[] = { [220627] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11560), 1, + ACTIONS(11569), 1, sym__table_head_separator, STATE(7092), 1, sym_comment, @@ -419678,7 +419678,7 @@ static const uint16_t ts_small_parse_table[] = { [220641] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11562), 1, + ACTIONS(11571), 1, sym__table_head_separator, STATE(7093), 1, sym_comment, @@ -419688,9 +419688,9 @@ static const uint16_t ts_small_parse_table[] = { [220655] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6484), 1, + ACTIONS(6493), 1, sym__entry_separator, - ACTIONS(11564), 1, + ACTIONS(11573), 1, anon_sym_RBRACK, STATE(6339), 1, aux_sym__multiple_types_repeat1, @@ -419699,7 +419699,7 @@ static const uint16_t ts_small_parse_table[] = { [220671] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9664), 1, + ACTIONS(9673), 1, anon_sym_LBRACK, STATE(6664), 1, sym_val_list, @@ -419710,7 +419710,7 @@ static const uint16_t ts_small_parse_table[] = { [220687] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9664), 1, + ACTIONS(9673), 1, anon_sym_LBRACK, STATE(6666), 1, sym_val_list, @@ -419721,7 +419721,7 @@ static const uint16_t ts_small_parse_table[] = { [220703] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9664), 1, + ACTIONS(9673), 1, anon_sym_LBRACK, STATE(6670), 1, sym_val_list, @@ -419732,7 +419732,7 @@ static const uint16_t ts_small_parse_table[] = { [220719] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9664), 1, + ACTIONS(9673), 1, anon_sym_LBRACK, STATE(6673), 1, sym_val_list, @@ -419743,7 +419743,7 @@ static const uint16_t ts_small_parse_table[] = { [220735] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11566), 1, + ACTIONS(11575), 1, sym__table_head_separator, STATE(7099), 1, sym_comment, @@ -419753,9 +419753,9 @@ static const uint16_t ts_small_parse_table[] = { [220749] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6484), 1, + ACTIONS(6493), 1, sym__entry_separator, - ACTIONS(11568), 1, + ACTIONS(11577), 1, anon_sym_RBRACK, STATE(6353), 1, aux_sym__multiple_types_repeat1, @@ -419764,7 +419764,7 @@ static const uint16_t ts_small_parse_table[] = { [220765] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11570), 1, + ACTIONS(11579), 1, sym__table_head_separator, STATE(7101), 1, sym_comment, @@ -419776,16 +419776,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(7102), 1, sym_comment, - ACTIONS(11572), 3, + ACTIONS(11581), 3, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, [220791] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6484), 1, + ACTIONS(6493), 1, sym__entry_separator, - ACTIONS(11574), 1, + ACTIONS(11583), 1, anon_sym_RBRACK, STATE(6361), 1, aux_sym__multiple_types_repeat1, @@ -419794,7 +419794,7 @@ static const uint16_t ts_small_parse_table[] = { [220807] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9664), 1, + ACTIONS(9673), 1, anon_sym_LBRACK, STATE(6690), 1, sym_val_list, @@ -419805,7 +419805,7 @@ static const uint16_t ts_small_parse_table[] = { [220823] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9664), 1, + ACTIONS(9673), 1, anon_sym_LBRACK, STATE(6693), 1, sym_val_list, @@ -419816,7 +419816,7 @@ static const uint16_t ts_small_parse_table[] = { [220839] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9664), 1, + ACTIONS(9673), 1, anon_sym_LBRACK, STATE(6697), 1, sym_val_list, @@ -419827,7 +419827,7 @@ static const uint16_t ts_small_parse_table[] = { [220855] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9664), 1, + ACTIONS(9673), 1, anon_sym_LBRACK, STATE(6698), 1, sym_val_list, @@ -419838,7 +419838,7 @@ static const uint16_t ts_small_parse_table[] = { [220871] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11576), 1, + ACTIONS(11585), 1, sym__table_head_separator, STATE(7108), 1, sym_comment, @@ -419848,7 +419848,7 @@ static const uint16_t ts_small_parse_table[] = { [220885] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11578), 1, + ACTIONS(11587), 1, sym__table_head_separator, STATE(7109), 1, sym_comment, @@ -419860,14 +419860,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(7110), 1, sym_comment, - ACTIONS(11580), 3, + ACTIONS(11589), 3, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, [220911] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9664), 1, + ACTIONS(9673), 1, anon_sym_LBRACK, STATE(6720), 1, sym_val_list, @@ -419878,7 +419878,7 @@ static const uint16_t ts_small_parse_table[] = { [220927] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9664), 1, + ACTIONS(9673), 1, anon_sym_LBRACK, STATE(6723), 1, sym_val_list, @@ -419889,9 +419889,9 @@ static const uint16_t ts_small_parse_table[] = { [220943] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6484), 1, + ACTIONS(6493), 1, sym__entry_separator, - ACTIONS(11582), 1, + ACTIONS(11591), 1, anon_sym_RBRACK, STATE(6365), 1, aux_sym__multiple_types_repeat1, @@ -419900,7 +419900,7 @@ static const uint16_t ts_small_parse_table[] = { [220959] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9664), 1, + ACTIONS(9673), 1, anon_sym_LBRACK, STATE(6725), 1, sym_val_list, @@ -419911,7 +419911,7 @@ static const uint16_t ts_small_parse_table[] = { [220975] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9664), 1, + ACTIONS(9673), 1, anon_sym_LBRACK, STATE(6727), 1, sym_val_list, @@ -419922,7 +419922,7 @@ static const uint16_t ts_small_parse_table[] = { [220991] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11584), 1, + ACTIONS(11593), 1, sym__table_head_separator, STATE(7116), 1, sym_comment, @@ -419942,7 +419942,7 @@ static const uint16_t ts_small_parse_table[] = { [221019] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11586), 1, + ACTIONS(11595), 1, sym__table_head_separator, STATE(7118), 1, sym_comment, @@ -419954,7 +419954,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(7119), 1, sym_comment, - ACTIONS(11588), 3, + ACTIONS(11597), 3, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, @@ -419963,14 +419963,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(7120), 1, sym_comment, - ACTIONS(10819), 3, + ACTIONS(10828), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, [221057] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9664), 1, + ACTIONS(9673), 1, anon_sym_LBRACK, STATE(6740), 1, sym_val_list, @@ -419983,14 +419983,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(7122), 1, sym_comment, - ACTIONS(10793), 3, + ACTIONS(10802), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, [221085] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9664), 1, + ACTIONS(9673), 1, anon_sym_LBRACK, STATE(6745), 1, sym_val_list, @@ -420001,7 +420001,7 @@ static const uint16_t ts_small_parse_table[] = { [221101] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9664), 1, + ACTIONS(9673), 1, anon_sym_LBRACK, STATE(6747), 1, sym_val_list, @@ -420012,7 +420012,7 @@ static const uint16_t ts_small_parse_table[] = { [221117] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11590), 1, + ACTIONS(11599), 1, sym__table_head_separator, STATE(7125), 1, sym_comment, @@ -420024,14 +420024,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(7126), 1, sym_comment, - ACTIONS(10934), 3, + ACTIONS(10943), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, [221143] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11592), 1, + ACTIONS(11601), 1, sym__table_head_separator, STATE(7127), 1, sym_comment, @@ -420053,14 +420053,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(7129), 1, sym_comment, - ACTIONS(6149), 3, + ACTIONS(6158), 3, anon_sym_PIPE, anon_sym_if, anon_sym_EQ_GT, [221183] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9664), 1, + ACTIONS(9673), 1, anon_sym_LBRACK, STATE(6764), 1, sym_val_list, @@ -420071,7 +420071,7 @@ static const uint16_t ts_small_parse_table[] = { [221199] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9664), 1, + ACTIONS(9673), 1, anon_sym_LBRACK, STATE(6767), 1, sym_val_list, @@ -420092,7 +420092,7 @@ static const uint16_t ts_small_parse_table[] = { [221229] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9664), 1, + ACTIONS(9673), 1, anon_sym_LBRACK, STATE(6769), 1, sym_val_list, @@ -420103,7 +420103,7 @@ static const uint16_t ts_small_parse_table[] = { [221245] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9664), 1, + ACTIONS(9673), 1, anon_sym_LBRACK, STATE(6772), 1, sym_val_list, @@ -420114,7 +420114,7 @@ static const uint16_t ts_small_parse_table[] = { [221261] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11594), 1, + ACTIONS(11603), 1, sym__table_head_separator, STATE(7135), 1, sym_comment, @@ -420134,7 +420134,7 @@ static const uint16_t ts_small_parse_table[] = { [221289] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11596), 1, + ACTIONS(11605), 1, sym__table_head_separator, STATE(7137), 1, sym_comment, @@ -420144,9 +420144,9 @@ static const uint16_t ts_small_parse_table[] = { [221303] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(10014), 1, + ACTIONS(10023), 1, anon_sym_PIPE, - ACTIONS(11598), 1, + ACTIONS(11607), 1, anon_sym_EQ_GT, STATE(6640), 1, aux_sym_match_pattern_repeat1, @@ -420155,7 +420155,7 @@ static const uint16_t ts_small_parse_table[] = { [221319] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9664), 1, + ACTIONS(9673), 1, anon_sym_LBRACK, STATE(6789), 1, sym_val_list, @@ -420166,7 +420166,7 @@ static const uint16_t ts_small_parse_table[] = { [221335] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9664), 1, + ACTIONS(9673), 1, anon_sym_LBRACK, STATE(6791), 1, sym_val_list, @@ -420177,7 +420177,7 @@ static const uint16_t ts_small_parse_table[] = { [221351] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9664), 1, + ACTIONS(9673), 1, anon_sym_LBRACK, STATE(6794), 1, sym_val_list, @@ -420188,7 +420188,7 @@ static const uint16_t ts_small_parse_table[] = { [221367] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9664), 1, + ACTIONS(9673), 1, anon_sym_LBRACK, STATE(6797), 1, sym_val_list, @@ -420199,7 +420199,7 @@ static const uint16_t ts_small_parse_table[] = { [221383] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11600), 1, + ACTIONS(11609), 1, sym__table_head_separator, STATE(7143), 1, sym_comment, @@ -420209,9 +420209,9 @@ static const uint16_t ts_small_parse_table[] = { [221397] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6049), 1, + ACTIONS(6058), 1, anon_sym_RBRACE, - ACTIONS(6051), 1, + ACTIONS(6060), 1, sym__entry_separator, STATE(2986), 1, aux_sym__multiple_types_repeat1, @@ -420220,7 +420220,7 @@ static const uint16_t ts_small_parse_table[] = { [221413] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11602), 1, + ACTIONS(11611), 1, sym__table_head_separator, STATE(7145), 1, sym_comment, @@ -420230,7 +420230,7 @@ static const uint16_t ts_small_parse_table[] = { [221427] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9664), 1, + ACTIONS(9673), 1, anon_sym_LBRACK, STATE(6813), 1, sym_val_list, @@ -420241,7 +420241,7 @@ static const uint16_t ts_small_parse_table[] = { [221443] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9664), 1, + ACTIONS(9673), 1, anon_sym_LBRACK, STATE(6815), 1, sym_val_list, @@ -420254,7 +420254,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(1276), 1, anon_sym_POUND_BANG, - ACTIONS(11604), 1, + ACTIONS(11613), 1, sym__newline, STATE(7148), 2, sym_comment, @@ -420262,7 +420262,7 @@ static const uint16_t ts_small_parse_table[] = { [221473] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9664), 1, + ACTIONS(9673), 1, anon_sym_LBRACK, STATE(6818), 1, sym_val_list, @@ -420273,7 +420273,7 @@ static const uint16_t ts_small_parse_table[] = { [221489] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9664), 1, + ACTIONS(9673), 1, anon_sym_LBRACK, STATE(6819), 1, sym_val_list, @@ -420284,7 +420284,7 @@ static const uint16_t ts_small_parse_table[] = { [221505] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11607), 1, + ACTIONS(11616), 1, sym__table_head_separator, STATE(7151), 1, sym_comment, @@ -420296,16 +420296,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(7152), 1, sym_comment, - ACTIONS(6126), 3, + ACTIONS(6135), 3, anon_sym_PIPE, anon_sym_if, anon_sym_EQ_GT, [221531] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11073), 1, + ACTIONS(11082), 1, sym_hex_digit, - ACTIONS(11609), 1, + ACTIONS(11618), 1, anon_sym_RBRACK, STATE(6844), 1, aux_sym_val_binary_repeat1, @@ -420314,7 +420314,7 @@ static const uint16_t ts_small_parse_table[] = { [221547] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11611), 1, + ACTIONS(11620), 1, sym__table_head_separator, STATE(7154), 1, sym_comment, @@ -420324,7 +420324,7 @@ static const uint16_t ts_small_parse_table[] = { [221561] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9664), 1, + ACTIONS(9673), 1, anon_sym_LBRACK, STATE(6837), 1, sym_val_list, @@ -420335,7 +420335,7 @@ static const uint16_t ts_small_parse_table[] = { [221577] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9664), 1, + ACTIONS(9673), 1, anon_sym_LBRACK, STATE(6839), 1, sym_val_list, @@ -420346,7 +420346,7 @@ static const uint16_t ts_small_parse_table[] = { [221593] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9664), 1, + ACTIONS(9673), 1, anon_sym_LBRACK, STATE(6842), 1, sym_val_list, @@ -420357,7 +420357,7 @@ static const uint16_t ts_small_parse_table[] = { [221609] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9664), 1, + ACTIONS(9673), 1, anon_sym_LBRACK, STATE(6845), 1, sym_val_list, @@ -420368,7 +420368,7 @@ static const uint16_t ts_small_parse_table[] = { [221625] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11613), 1, + ACTIONS(11622), 1, sym__table_head_separator, STATE(7159), 1, sym_comment, @@ -420378,7 +420378,7 @@ static const uint16_t ts_small_parse_table[] = { [221639] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11615), 1, + ACTIONS(11624), 1, sym__table_head_separator, STATE(7160), 1, sym_comment, @@ -420388,7 +420388,7 @@ static const uint16_t ts_small_parse_table[] = { [221653] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9664), 1, + ACTIONS(9673), 1, anon_sym_LBRACK, STATE(6860), 1, sym_val_list, @@ -420399,7 +420399,7 @@ static const uint16_t ts_small_parse_table[] = { [221669] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9664), 1, + ACTIONS(9673), 1, anon_sym_LBRACK, STATE(6863), 1, sym_val_list, @@ -420410,9 +420410,9 @@ static const uint16_t ts_small_parse_table[] = { [221685] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9156), 1, + ACTIONS(9165), 1, sym__entry_separator, - ACTIONS(11617), 1, + ACTIONS(11626), 1, anon_sym_GT2, STATE(5386), 1, aux_sym__multiple_types_repeat1, @@ -420421,7 +420421,7 @@ static const uint16_t ts_small_parse_table[] = { [221701] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9664), 1, + ACTIONS(9673), 1, anon_sym_LBRACK, STATE(6867), 1, sym_val_list, @@ -420432,7 +420432,7 @@ static const uint16_t ts_small_parse_table[] = { [221717] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9664), 1, + ACTIONS(9673), 1, anon_sym_LBRACK, STATE(6869), 1, sym_val_list, @@ -420443,7 +420443,7 @@ static const uint16_t ts_small_parse_table[] = { [221733] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11619), 1, + ACTIONS(11628), 1, sym__table_head_separator, STATE(7166), 1, sym_comment, @@ -420453,7 +420453,7 @@ static const uint16_t ts_small_parse_table[] = { [221747] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11621), 1, + ACTIONS(11630), 1, sym__table_head_separator, STATE(7167), 1, sym_comment, @@ -420465,14 +420465,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(7168), 1, sym_comment, - ACTIONS(10879), 3, + ACTIONS(10888), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, [221773] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9664), 1, + ACTIONS(9673), 1, anon_sym_LBRACK, STATE(6880), 1, sym_val_list, @@ -420483,7 +420483,7 @@ static const uint16_t ts_small_parse_table[] = { [221789] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9664), 1, + ACTIONS(9673), 1, anon_sym_LBRACK, STATE(6883), 1, sym_val_list, @@ -420494,7 +420494,7 @@ static const uint16_t ts_small_parse_table[] = { [221805] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9664), 1, + ACTIONS(9673), 1, anon_sym_LBRACK, STATE(6887), 1, sym_val_list, @@ -420505,7 +420505,7 @@ static const uint16_t ts_small_parse_table[] = { [221821] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9664), 1, + ACTIONS(9673), 1, anon_sym_LBRACK, STATE(6890), 1, sym_val_list, @@ -420516,7 +420516,7 @@ static const uint16_t ts_small_parse_table[] = { [221837] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11623), 1, + ACTIONS(11632), 1, sym__table_head_separator, STATE(7173), 1, sym_comment, @@ -420526,7 +420526,7 @@ static const uint16_t ts_small_parse_table[] = { [221851] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11625), 1, + ACTIONS(11634), 1, sym__table_head_separator, STATE(7174), 1, sym_comment, @@ -420536,7 +420536,7 @@ static const uint16_t ts_small_parse_table[] = { [221865] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9664), 1, + ACTIONS(9673), 1, anon_sym_LBRACK, STATE(6896), 1, sym_val_list, @@ -420547,7 +420547,7 @@ static const uint16_t ts_small_parse_table[] = { [221881] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9664), 1, + ACTIONS(9673), 1, anon_sym_LBRACK, STATE(6899), 1, sym_val_list, @@ -420558,9 +420558,9 @@ static const uint16_t ts_small_parse_table[] = { [221897] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9156), 1, + ACTIONS(9165), 1, sym__entry_separator, - ACTIONS(11627), 1, + ACTIONS(11636), 1, anon_sym_GT2, STATE(5388), 1, aux_sym__multiple_types_repeat1, @@ -420569,7 +420569,7 @@ static const uint16_t ts_small_parse_table[] = { [221913] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9664), 1, + ACTIONS(9673), 1, anon_sym_LBRACK, STATE(6902), 1, sym_val_list, @@ -420580,7 +420580,7 @@ static const uint16_t ts_small_parse_table[] = { [221929] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9664), 1, + ACTIONS(9673), 1, anon_sym_LBRACK, STATE(6905), 1, sym_val_list, @@ -420591,7 +420591,7 @@ static const uint16_t ts_small_parse_table[] = { [221945] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11629), 1, + ACTIONS(11638), 1, sym__table_head_separator, STATE(7180), 1, sym_comment, @@ -420601,7 +420601,7 @@ static const uint16_t ts_small_parse_table[] = { [221959] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11631), 1, + ACTIONS(11640), 1, sym__table_head_separator, STATE(7181), 1, sym_comment, @@ -420611,9 +420611,9 @@ static const uint16_t ts_small_parse_table[] = { [221973] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11633), 1, + ACTIONS(11642), 1, anon_sym_RBRACK, - ACTIONS(11635), 1, + ACTIONS(11644), 1, sym_hex_digit, STATE(7182), 2, sym_comment, @@ -420621,7 +420621,7 @@ static const uint16_t ts_small_parse_table[] = { [221987] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9664), 1, + ACTIONS(9673), 1, anon_sym_LBRACK, STATE(6914), 1, sym_val_list, @@ -420632,7 +420632,7 @@ static const uint16_t ts_small_parse_table[] = { [222003] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9664), 1, + ACTIONS(9673), 1, anon_sym_LBRACK, STATE(6917), 1, sym_val_list, @@ -420645,14 +420645,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(7185), 1, sym_comment, - ACTIONS(10881), 3, + ACTIONS(10890), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, [222031] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9664), 1, + ACTIONS(9673), 1, anon_sym_LBRACK, STATE(6920), 1, sym_val_list, @@ -420663,7 +420663,7 @@ static const uint16_t ts_small_parse_table[] = { [222047] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9664), 1, + ACTIONS(9673), 1, anon_sym_LBRACK, STATE(6921), 1, sym_val_list, @@ -420676,7 +420676,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(7188), 1, sym_comment, - ACTIONS(10889), 3, + ACTIONS(10898), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -420685,7 +420685,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(7189), 1, sym_comment, - ACTIONS(10893), 3, + ACTIONS(10902), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -420694,16 +420694,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(7190), 1, sym_comment, - ACTIONS(10895), 3, + ACTIONS(10904), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, [222099] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6051), 1, + ACTIONS(6060), 1, sym__entry_separator, - ACTIONS(6110), 1, + ACTIONS(6119), 1, anon_sym_RBRACE, STATE(2987), 1, aux_sym__multiple_types_repeat1, @@ -420722,9 +420722,9 @@ static const uint16_t ts_small_parse_table[] = { [222129] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3424), 1, + ACTIONS(3433), 1, anon_sym_COLON2, - ACTIONS(6235), 1, + ACTIONS(6244), 1, anon_sym_LBRACE, STATE(6576), 1, sym_block, @@ -420733,11 +420733,11 @@ static const uint16_t ts_small_parse_table[] = { [222145] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5652), 1, + ACTIONS(5661), 1, sym__entry_separator, STATE(7194), 1, sym_comment, - ACTIONS(5650), 2, + ACTIONS(5659), 2, anon_sym_RBRACK, anon_sym_GT2, [222159] = 4, @@ -420772,7 +420772,7 @@ static const uint16_t ts_small_parse_table[] = { [222199] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4801), 1, + ACTIONS(4810), 1, aux_sym_unquoted_token2, STATE(7198), 1, sym_comment, @@ -420782,9 +420782,9 @@ static const uint16_t ts_small_parse_table[] = { [222213] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11073), 1, + ACTIONS(11082), 1, sym_hex_digit, - ACTIONS(11638), 1, + ACTIONS(11647), 1, anon_sym_RBRACK, STATE(7199), 1, sym_comment, @@ -420803,9 +420803,9 @@ static const uint16_t ts_small_parse_table[] = { [222243] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9156), 1, + ACTIONS(9165), 1, sym__entry_separator, - ACTIONS(11640), 1, + ACTIONS(11649), 1, anon_sym_GT2, STATE(5405), 1, aux_sym__multiple_types_repeat1, @@ -420814,9 +420814,9 @@ static const uint16_t ts_small_parse_table[] = { [222259] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9156), 1, + ACTIONS(9165), 1, sym__entry_separator, - ACTIONS(11642), 1, + ACTIONS(11651), 1, anon_sym_GT2, STATE(5407), 1, aux_sym__multiple_types_repeat1, @@ -420835,9 +420835,9 @@ static const uint16_t ts_small_parse_table[] = { [222289] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4403), 1, + ACTIONS(4412), 1, anon_sym_LPAREN2, - ACTIONS(4801), 1, + ACTIONS(4810), 1, aux_sym_unquoted_token4, STATE(7204), 1, sym_comment, @@ -420846,9 +420846,9 @@ static const uint16_t ts_small_parse_table[] = { [222305] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11073), 1, + ACTIONS(11082), 1, sym_hex_digit, - ACTIONS(11644), 1, + ACTIONS(11653), 1, anon_sym_RBRACK, STATE(7182), 1, aux_sym_val_binary_repeat1, @@ -420859,16 +420859,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(7206), 1, sym_comment, - ACTIONS(10944), 3, + ACTIONS(10953), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, [222333] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9156), 1, + ACTIONS(9165), 1, sym__entry_separator, - ACTIONS(11646), 1, + ACTIONS(11655), 1, anon_sym_GT2, STATE(5413), 1, aux_sym__multiple_types_repeat1, @@ -420877,9 +420877,9 @@ static const uint16_t ts_small_parse_table[] = { [222349] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6484), 1, + ACTIONS(6493), 1, sym__entry_separator, - ACTIONS(11648), 1, + ACTIONS(11657), 1, anon_sym_RBRACK, STATE(6490), 1, aux_sym__multiple_types_repeat1, @@ -420906,7 +420906,7 @@ static const uint16_t ts_small_parse_table[] = { [222390] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6051), 1, + ACTIONS(6060), 1, sym__entry_separator, STATE(3090), 1, aux_sym__multiple_types_repeat1, @@ -420924,16 +420924,16 @@ static const uint16_t ts_small_parse_table[] = { [222416] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11650), 1, + ACTIONS(11659), 1, anon_sym_RBRACK, - ACTIONS(11652), 1, + ACTIONS(11661), 1, sym__entry_separator, STATE(7213), 1, sym_comment, [222429] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11654), 1, + ACTIONS(11663), 1, aux_sym__unquoted_in_list_with_expr_token1, STATE(7214), 2, sym_comment, @@ -420941,7 +420941,7 @@ static const uint16_t ts_small_parse_table[] = { [222440] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6484), 1, + ACTIONS(6493), 1, sym__entry_separator, STATE(6803), 1, aux_sym__multiple_types_repeat1, @@ -420950,7 +420950,7 @@ static const uint16_t ts_small_parse_table[] = { [222453] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11657), 1, + ACTIONS(11666), 1, aux_sym__unquoted_with_expr_token1, STATE(7216), 1, sym_comment, @@ -420968,7 +420968,7 @@ static const uint16_t ts_small_parse_table[] = { [222479] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6217), 1, + ACTIONS(6226), 1, anon_sym_LBRACE, STATE(6996), 1, sym_block, @@ -420977,7 +420977,7 @@ static const uint16_t ts_small_parse_table[] = { [222492] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6217), 1, + ACTIONS(6226), 1, anon_sym_LBRACE, STATE(6708), 1, sym_block, @@ -420986,7 +420986,7 @@ static const uint16_t ts_small_parse_table[] = { [222505] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11659), 1, + ACTIONS(11668), 1, aux_sym__unquoted_with_expr_token1, STATE(7220), 1, sym_comment, @@ -420995,7 +420995,7 @@ static const uint16_t ts_small_parse_table[] = { [222518] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11661), 1, + ACTIONS(11670), 1, aux_sym__unquoted_with_expr_token1, STATE(7221), 1, sym_comment, @@ -421004,7 +421004,7 @@ static const uint16_t ts_small_parse_table[] = { [222531] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11663), 1, + ACTIONS(11672), 1, aux_sym__unquoted_in_record_with_expr_token1, STATE(7222), 1, sym_comment, @@ -421013,7 +421013,7 @@ static const uint16_t ts_small_parse_table[] = { [222544] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11665), 1, + ACTIONS(11674), 1, aux_sym__unquoted_in_record_with_expr_token1, STATE(7223), 1, sym_comment, @@ -421022,7 +421022,7 @@ static const uint16_t ts_small_parse_table[] = { [222557] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6217), 1, + ACTIONS(6226), 1, anon_sym_LBRACE, STATE(7025), 1, sym_block, @@ -421040,7 +421040,7 @@ static const uint16_t ts_small_parse_table[] = { [222583] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4403), 1, + ACTIONS(4412), 1, anon_sym_LPAREN2, STATE(7226), 1, sym_comment, @@ -421049,7 +421049,7 @@ static const uint16_t ts_small_parse_table[] = { [222596] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11667), 1, + ACTIONS(11676), 1, aux_sym__unquoted_with_expr_token1, STATE(7227), 1, sym_comment, @@ -421076,7 +421076,7 @@ static const uint16_t ts_small_parse_table[] = { [222635] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6217), 1, + ACTIONS(6226), 1, anon_sym_LBRACE, STATE(4618), 1, sym_block, @@ -421103,16 +421103,16 @@ static const uint16_t ts_small_parse_table[] = { [222674] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7985), 1, + ACTIONS(7994), 1, sym__entry_separator, - ACTIONS(7987), 1, + ACTIONS(7996), 1, anon_sym_RBRACK, STATE(7233), 1, sym_comment, [222687] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11669), 1, + ACTIONS(11678), 1, aux_sym__unquoted_with_expr_token1, STATE(7234), 1, sym_comment, @@ -421121,7 +421121,7 @@ static const uint16_t ts_small_parse_table[] = { [222700] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11671), 1, + ACTIONS(11680), 1, aux_sym__unquoted_with_expr_token1, STATE(7235), 1, sym_comment, @@ -421139,7 +421139,7 @@ static const uint16_t ts_small_parse_table[] = { [222726] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11673), 1, + ACTIONS(11682), 1, aux_sym__unquoted_with_expr_token1, STATE(7237), 1, sym_comment, @@ -421157,7 +421157,7 @@ static const uint16_t ts_small_parse_table[] = { [222752] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11675), 1, + ACTIONS(11684), 1, aux_sym__unquoted_in_record_with_expr_token1, STATE(7239), 2, sym_comment, @@ -421165,7 +421165,7 @@ static const uint16_t ts_small_parse_table[] = { [222763] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11678), 1, + ACTIONS(11687), 1, aux_sym__unquoted_in_record_with_expr_token1, STATE(7240), 1, sym_comment, @@ -421174,7 +421174,7 @@ static const uint16_t ts_small_parse_table[] = { [222776] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11680), 1, + ACTIONS(11689), 1, aux_sym__unquoted_in_record_with_expr_token1, STATE(7241), 1, sym_comment, @@ -421183,7 +421183,7 @@ static const uint16_t ts_small_parse_table[] = { [222789] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6235), 1, + ACTIONS(6244), 1, anon_sym_LBRACE, STATE(6212), 1, sym_block, @@ -421192,7 +421192,7 @@ static const uint16_t ts_small_parse_table[] = { [222802] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11682), 1, + ACTIONS(11691), 1, aux_sym__unquoted_with_expr_token1, STATE(7243), 1, sym_comment, @@ -421201,7 +421201,7 @@ static const uint16_t ts_small_parse_table[] = { [222815] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6235), 1, + ACTIONS(6244), 1, anon_sym_LBRACE, STATE(6222), 1, sym_block, @@ -421218,25 +421218,25 @@ static const uint16_t ts_small_parse_table[] = { [222839] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11684), 1, + ACTIONS(11693), 1, anon_sym_LPAREN2, - ACTIONS(11686), 1, + ACTIONS(11695), 1, aux_sym__record_key_token1, STATE(7246), 1, sym_comment, [222852] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7266), 1, + ACTIONS(7275), 1, anon_sym_RBRACK, - ACTIONS(7268), 1, + ACTIONS(7277), 1, sym__entry_separator, STATE(7247), 1, sym_comment, [222865] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11688), 1, + ACTIONS(11697), 1, aux_sym__unquoted_with_expr_token1, STATE(7248), 1, sym_comment, @@ -421245,7 +421245,7 @@ static const uint16_t ts_small_parse_table[] = { [222878] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11690), 1, + ACTIONS(11699), 1, aux_sym__unquoted_in_list_with_expr_token1, STATE(7214), 1, aux_sym__unquoted_in_list_with_expr_repeat1, @@ -421254,7 +421254,7 @@ static const uint16_t ts_small_parse_table[] = { [222891] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6217), 1, + ACTIONS(6226), 1, anon_sym_LBRACE, STATE(7019), 1, sym_block, @@ -421272,16 +421272,16 @@ static const uint16_t ts_small_parse_table[] = { [222917] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3422), 1, + ACTIONS(3431), 1, anon_sym_COLON2, - ACTIONS(11692), 1, + ACTIONS(11701), 1, anon_sym_make, STATE(7252), 1, sym_comment, [222930] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9156), 1, + ACTIONS(9165), 1, sym__entry_separator, STATE(5521), 1, aux_sym__multiple_types_repeat1, @@ -421290,7 +421290,7 @@ static const uint16_t ts_small_parse_table[] = { [222943] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11694), 1, + ACTIONS(11703), 1, aux_sym__unquoted_in_list_with_expr_token1, STATE(7249), 1, aux_sym__unquoted_in_list_with_expr_repeat1, @@ -421299,7 +421299,7 @@ static const uint16_t ts_small_parse_table[] = { [222956] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6217), 1, + ACTIONS(6226), 1, anon_sym_LBRACE, STATE(6873), 1, sym_block, @@ -421310,13 +421310,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(7256), 1, sym_comment, - ACTIONS(11319), 2, + ACTIONS(11328), 2, anon_sym_GT2, anon_sym_AT, [222980] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6235), 1, + ACTIONS(6244), 1, anon_sym_LBRACE, STATE(6576), 1, sym_block, @@ -421325,7 +421325,7 @@ static const uint16_t ts_small_parse_table[] = { [222993] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5464), 1, + ACTIONS(5473), 1, anon_sym_LPAREN2, STATE(7254), 1, sym__expr_parenthesized_immediate, @@ -421342,7 +421342,7 @@ static const uint16_t ts_small_parse_table[] = { [223017] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11696), 1, + ACTIONS(11705), 1, aux_sym__unquoted_in_list_with_expr_token1, STATE(7214), 1, aux_sym__unquoted_in_list_with_expr_repeat1, @@ -421360,7 +421360,7 @@ static const uint16_t ts_small_parse_table[] = { [223043] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5707), 1, + ACTIONS(5716), 1, sym__entry_separator, STATE(2770), 1, aux_sym__multiple_types_repeat1, @@ -421369,7 +421369,7 @@ static const uint16_t ts_small_parse_table[] = { [223056] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9156), 1, + ACTIONS(9165), 1, sym__entry_separator, STATE(5524), 1, aux_sym__multiple_types_repeat1, @@ -421378,7 +421378,7 @@ static const uint16_t ts_small_parse_table[] = { [223069] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4403), 1, + ACTIONS(4412), 1, anon_sym_LPAREN2, STATE(7264), 1, sym_comment, @@ -421387,7 +421387,7 @@ static const uint16_t ts_small_parse_table[] = { [223082] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6217), 1, + ACTIONS(6226), 1, anon_sym_LBRACE, STATE(4557), 1, sym_block, @@ -421396,18 +421396,18 @@ static const uint16_t ts_small_parse_table[] = { [223095] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11698), 1, + ACTIONS(11707), 1, sym__newline, - ACTIONS(11700), 1, + ACTIONS(11709), 1, sym__space, STATE(7266), 1, sym_comment, [223108] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4916), 1, + ACTIONS(4925), 1, anon_sym_LBRACE, - ACTIONS(11702), 1, + ACTIONS(11711), 1, anon_sym_EQ2, STATE(7267), 1, sym_comment, @@ -421423,7 +421423,7 @@ static const uint16_t ts_small_parse_table[] = { [223134] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11704), 1, + ACTIONS(11713), 1, aux_sym__unquoted_in_list_with_expr_token1, STATE(7260), 1, aux_sym__unquoted_in_list_with_expr_repeat1, @@ -421432,9 +421432,9 @@ static const uint16_t ts_small_parse_table[] = { [223147] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11706), 1, + ACTIONS(11715), 1, sym_identifier, - ACTIONS(11708), 1, + ACTIONS(11717), 1, anon_sym_DOLLAR, STATE(7270), 1, sym_comment, @@ -421450,7 +421450,7 @@ static const uint16_t ts_small_parse_table[] = { [223173] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6217), 1, + ACTIONS(6226), 1, anon_sym_LBRACE, STATE(7053), 1, sym_block, @@ -421459,7 +421459,7 @@ static const uint16_t ts_small_parse_table[] = { [223186] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6235), 1, + ACTIONS(6244), 1, anon_sym_LBRACE, STATE(6267), 1, sym_block, @@ -421484,7 +421484,7 @@ static const uint16_t ts_small_parse_table[] = { [223221] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11710), 1, + ACTIONS(11719), 1, aux_sym__unquoted_with_expr_token1, STATE(7276), 1, sym_comment, @@ -421493,7 +421493,7 @@ static const uint16_t ts_small_parse_table[] = { [223234] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6217), 1, + ACTIONS(6226), 1, anon_sym_LBRACE, STATE(7206), 1, sym_block, @@ -421502,7 +421502,7 @@ static const uint16_t ts_small_parse_table[] = { [223247] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6217), 1, + ACTIONS(6226), 1, anon_sym_LBRACE, STATE(6710), 1, sym_block, @@ -421511,16 +421511,16 @@ static const uint16_t ts_small_parse_table[] = { [223260] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11712), 1, + ACTIONS(11721), 1, anon_sym_RBRACK, - ACTIONS(11714), 1, + ACTIONS(11723), 1, sym__entry_separator, STATE(7279), 1, sym_comment, [223273] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11716), 1, + ACTIONS(11725), 1, aux_sym__unquoted_in_record_with_expr_token1, STATE(7239), 1, aux_sym__unquoted_in_record_with_expr_repeat1, @@ -421529,7 +421529,7 @@ static const uint16_t ts_small_parse_table[] = { [223286] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11718), 1, + ACTIONS(11727), 1, aux_sym__unquoted_with_expr_token1, STATE(7281), 2, sym_comment, @@ -421537,7 +421537,7 @@ static const uint16_t ts_small_parse_table[] = { [223297] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6235), 1, + ACTIONS(6244), 1, anon_sym_LBRACE, STATE(6208), 1, sym_block, @@ -421564,7 +421564,7 @@ static const uint16_t ts_small_parse_table[] = { [223336] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11721), 1, + ACTIONS(11730), 1, aux_sym__unquoted_with_expr_token1, STATE(7281), 1, aux_sym__unquoted_with_expr_repeat1, @@ -421582,7 +421582,7 @@ static const uint16_t ts_small_parse_table[] = { [223362] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5464), 1, + ACTIONS(5473), 1, anon_sym_LPAREN2, STATE(7287), 1, sym_comment, @@ -421591,7 +421591,7 @@ static const uint16_t ts_small_parse_table[] = { [223375] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11723), 1, + ACTIONS(11732), 1, aux_sym__unquoted_in_record_with_expr_token1, STATE(7239), 1, aux_sym__unquoted_in_record_with_expr_repeat1, @@ -421600,7 +421600,7 @@ static const uint16_t ts_small_parse_table[] = { [223388] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11725), 1, + ACTIONS(11734), 1, aux_sym__unquoted_in_record_with_expr_token1, STATE(7239), 1, aux_sym__unquoted_in_record_with_expr_repeat1, @@ -421609,7 +421609,7 @@ static const uint16_t ts_small_parse_table[] = { [223401] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11727), 1, + ACTIONS(11736), 1, aux_sym__unquoted_with_expr_token1, STATE(7290), 1, sym_comment, @@ -421618,7 +421618,7 @@ static const uint16_t ts_small_parse_table[] = { [223414] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11729), 1, + ACTIONS(11738), 1, aux_sym__unquoted_with_expr_token1, STATE(7291), 1, sym_comment, @@ -421627,7 +421627,7 @@ static const uint16_t ts_small_parse_table[] = { [223427] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11731), 1, + ACTIONS(11740), 1, aux_sym__unquoted_with_expr_token1, STATE(7281), 1, aux_sym__unquoted_with_expr_repeat1, @@ -421636,16 +421636,16 @@ static const uint16_t ts_small_parse_table[] = { [223440] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3424), 1, + ACTIONS(3433), 1, anon_sym_COLON2, - ACTIONS(11692), 1, + ACTIONS(11701), 1, anon_sym_make, STATE(7293), 1, sym_comment, [223453] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6235), 1, + ACTIONS(6244), 1, anon_sym_LBRACE, STATE(6138), 1, sym_block, @@ -421654,7 +421654,7 @@ static const uint16_t ts_small_parse_table[] = { [223466] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6235), 1, + ACTIONS(6244), 1, anon_sym_LBRACE, STATE(4689), 1, sym_block, @@ -421672,7 +421672,7 @@ static const uint16_t ts_small_parse_table[] = { [223492] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6235), 1, + ACTIONS(6244), 1, anon_sym_LBRACE, STATE(6145), 1, sym_block, @@ -421681,7 +421681,7 @@ static const uint16_t ts_small_parse_table[] = { [223505] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6235), 1, + ACTIONS(6244), 1, anon_sym_LBRACE, STATE(4744), 1, sym_block, @@ -421690,7 +421690,7 @@ static const uint16_t ts_small_parse_table[] = { [223518] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4403), 1, + ACTIONS(4412), 1, anon_sym_LPAREN2, STATE(7290), 1, sym__expr_parenthesized_immediate, @@ -421719,7 +421719,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(1693), 1, anon_sym_LBRACE, - ACTIONS(4801), 1, + ACTIONS(4810), 1, aux_sym_unquoted_token2, STATE(7302), 1, sym_comment, @@ -421744,9 +421744,9 @@ static const uint16_t ts_small_parse_table[] = { [223596] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10094), 1, + ACTIONS(10103), 1, anon_sym_RBRACE, - ACTIONS(10096), 1, + ACTIONS(10105), 1, sym__entry_separator, STATE(7305), 1, sym_comment, @@ -421762,7 +421762,7 @@ static const uint16_t ts_small_parse_table[] = { [223622] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11733), 1, + ACTIONS(11742), 1, aux_sym__unquoted_with_expr_token1, STATE(7307), 1, sym_comment, @@ -421771,7 +421771,7 @@ static const uint16_t ts_small_parse_table[] = { [223635] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11735), 1, + ACTIONS(11744), 1, aux_sym__unquoted_with_expr_token1, STATE(7308), 1, sym_comment, @@ -421780,7 +421780,7 @@ static const uint16_t ts_small_parse_table[] = { [223648] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6235), 1, + ACTIONS(6244), 1, anon_sym_LBRACE, STATE(5032), 1, sym_block, @@ -421789,9 +421789,9 @@ static const uint16_t ts_small_parse_table[] = { [223661] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5876), 1, + ACTIONS(5885), 1, anon_sym_RBRACK, - ACTIONS(5882), 1, + ACTIONS(5891), 1, sym__entry_separator, STATE(7310), 1, sym_comment, @@ -421816,7 +421816,7 @@ static const uint16_t ts_small_parse_table[] = { [223700] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4403), 1, + ACTIONS(4412), 1, anon_sym_LPAREN2, STATE(7307), 1, sym__expr_parenthesized_immediate, @@ -421843,7 +421843,7 @@ static const uint16_t ts_small_parse_table[] = { [223739] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6235), 1, + ACTIONS(6244), 1, anon_sym_LBRACE, STATE(4973), 1, sym_block, @@ -421852,7 +421852,7 @@ static const uint16_t ts_small_parse_table[] = { [223752] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4403), 1, + ACTIONS(4412), 1, anon_sym_LPAREN2, STATE(7276), 1, sym__expr_parenthesized_immediate, @@ -421861,7 +421861,7 @@ static const uint16_t ts_small_parse_table[] = { [223765] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11737), 1, + ACTIONS(11746), 1, aux_sym__unquoted_with_expr_token1, STATE(7281), 1, aux_sym__unquoted_with_expr_repeat1, @@ -421870,7 +421870,7 @@ static const uint16_t ts_small_parse_table[] = { [223778] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11739), 1, + ACTIONS(11748), 1, aux_sym__unquoted_with_expr_token1, STATE(7281), 1, aux_sym__unquoted_with_expr_repeat1, @@ -421888,7 +421888,7 @@ static const uint16_t ts_small_parse_table[] = { [223804] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6235), 1, + ACTIONS(6244), 1, anon_sym_LBRACE, STATE(6141), 1, sym_block, @@ -421897,7 +421897,7 @@ static const uint16_t ts_small_parse_table[] = { [223817] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11741), 1, + ACTIONS(11750), 1, aux_sym__unquoted_in_record_with_expr_token1, STATE(7322), 1, sym_comment, @@ -421906,7 +421906,7 @@ static const uint16_t ts_small_parse_table[] = { [223830] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11743), 1, + ACTIONS(11752), 1, aux_sym__unquoted_in_record_with_expr_token1, STATE(7323), 1, sym_comment, @@ -421915,7 +421915,7 @@ static const uint16_t ts_small_parse_table[] = { [223843] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4403), 1, + ACTIONS(4412), 1, anon_sym_LPAREN2, STATE(7220), 1, sym__expr_parenthesized_immediate, @@ -421933,7 +421933,7 @@ static const uint16_t ts_small_parse_table[] = { [223869] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4403), 1, + ACTIONS(4412), 1, anon_sym_LPAREN2, STATE(7227), 1, sym__expr_parenthesized_immediate, @@ -421942,7 +421942,7 @@ static const uint16_t ts_small_parse_table[] = { [223882] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9612), 1, + ACTIONS(9621), 1, anon_sym_LBRACE, STATE(6552), 1, sym_val_record, @@ -421951,7 +421951,7 @@ static const uint16_t ts_small_parse_table[] = { [223895] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11745), 1, + ACTIONS(11754), 1, aux_sym__unquoted_in_record_with_expr_token1, STATE(7280), 1, aux_sym__unquoted_in_record_with_expr_repeat1, @@ -421978,7 +421978,7 @@ static const uint16_t ts_small_parse_table[] = { [223934] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11747), 1, + ACTIONS(11756), 1, aux_sym__unquoted_in_record_with_expr_token1, STATE(7239), 1, aux_sym__unquoted_in_record_with_expr_repeat1, @@ -421987,7 +421987,7 @@ static const uint16_t ts_small_parse_table[] = { [223947] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11749), 1, + ACTIONS(11758), 1, aux_sym__unquoted_in_record_with_expr_token1, STATE(7239), 1, aux_sym__unquoted_in_record_with_expr_repeat1, @@ -421996,7 +421996,7 @@ static const uint16_t ts_small_parse_table[] = { [223960] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11751), 1, + ACTIONS(11760), 1, anon_sym_DASH2, STATE(7333), 1, sym_comment, @@ -422007,22 +422007,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(7334), 1, sym_comment, - ACTIONS(11063), 2, + ACTIONS(11072), 2, anon_sym_PIPE, anon_sym_EQ_GT, [223984] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11753), 1, + ACTIONS(11762), 1, sym__newline, - ACTIONS(11755), 1, + ACTIONS(11764), 1, sym__space, STATE(7335), 1, sym_comment, [223997] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11757), 1, + ACTIONS(11766), 1, aux_sym__unquoted_with_expr_token1, STATE(7216), 1, aux_sym__unquoted_with_expr_repeat1, @@ -422031,7 +422031,7 @@ static const uint16_t ts_small_parse_table[] = { [224010] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6217), 1, + ACTIONS(6226), 1, anon_sym_LBRACE, STATE(6946), 1, sym_block, @@ -422040,16 +422040,16 @@ static const uint16_t ts_small_parse_table[] = { [224023] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8041), 1, + ACTIONS(8050), 1, sym__entry_separator, - ACTIONS(8043), 1, + ACTIONS(8052), 1, anon_sym_GT2, STATE(7338), 1, sym_comment, [224036] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11759), 1, + ACTIONS(11768), 1, aux_sym__unquoted_in_record_with_expr_token1, STATE(7239), 1, aux_sym__unquoted_in_record_with_expr_repeat1, @@ -422058,7 +422058,7 @@ static const uint16_t ts_small_parse_table[] = { [224049] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6217), 1, + ACTIONS(6226), 1, anon_sym_LBRACE, STATE(6954), 1, sym_block, @@ -422067,16 +422067,16 @@ static const uint16_t ts_small_parse_table[] = { [224062] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11761), 1, + ACTIONS(11770), 1, sym__newline, - ACTIONS(11763), 1, + ACTIONS(11772), 1, sym__space, STATE(7341), 1, sym_comment, [224075] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6235), 1, + ACTIONS(6244), 1, anon_sym_LBRACE, STATE(6513), 1, sym_block, @@ -422085,7 +422085,7 @@ static const uint16_t ts_small_parse_table[] = { [224088] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11765), 1, + ACTIONS(11774), 1, aux_sym__unquoted_with_expr_token1, STATE(7234), 1, aux_sym__unquoted_with_expr_repeat1, @@ -422094,7 +422094,7 @@ static const uint16_t ts_small_parse_table[] = { [224101] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11767), 1, + ACTIONS(11776), 1, aux_sym__unquoted_with_expr_token1, STATE(7235), 1, aux_sym__unquoted_with_expr_repeat1, @@ -422114,13 +422114,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(7346), 1, sym_comment, - ACTIONS(11769), 2, + ACTIONS(11778), 2, anon_sym_RBRACK, sym_hex_digit, [224138] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3510), 1, + ACTIONS(3519), 1, sym__space, STATE(1146), 1, aux_sym_pipe_element_repeat1, @@ -422129,7 +422129,7 @@ static const uint16_t ts_small_parse_table[] = { [224151] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6235), 1, + ACTIONS(6244), 1, anon_sym_LBRACE, STATE(4502), 1, sym_block, @@ -422138,7 +422138,7 @@ static const uint16_t ts_small_parse_table[] = { [224164] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5845), 1, + ACTIONS(5854), 1, sym__entry_separator, STATE(2930), 1, aux_sym__multiple_types_repeat1, @@ -422165,7 +422165,7 @@ static const uint16_t ts_small_parse_table[] = { [224203] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11771), 1, + ACTIONS(11780), 1, aux_sym__unquoted_with_expr_token1, STATE(7281), 1, aux_sym__unquoted_with_expr_repeat1, @@ -422174,7 +422174,7 @@ static const uint16_t ts_small_parse_table[] = { [224216] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11773), 1, + ACTIONS(11782), 1, aux_sym__unquoted_with_expr_token1, STATE(7281), 1, aux_sym__unquoted_with_expr_repeat1, @@ -422201,7 +422201,7 @@ static const uint16_t ts_small_parse_table[] = { [224255] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11775), 1, + ACTIONS(11784), 1, aux_sym__unquoted_in_record_with_expr_token1, STATE(7222), 1, aux_sym__unquoted_in_record_with_expr_repeat1, @@ -422210,7 +422210,7 @@ static const uint16_t ts_small_parse_table[] = { [224268] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11777), 1, + ACTIONS(11786), 1, aux_sym__unquoted_in_record_with_expr_token1, STATE(7223), 1, aux_sym__unquoted_in_record_with_expr_repeat1, @@ -422219,7 +422219,7 @@ static const uint16_t ts_small_parse_table[] = { [224281] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11779), 1, + ACTIONS(11788), 1, aux_sym__unquoted_with_expr_token1, STATE(7281), 1, aux_sym__unquoted_with_expr_repeat1, @@ -422228,7 +422228,7 @@ static const uint16_t ts_small_parse_table[] = { [224294] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6484), 1, + ACTIONS(6493), 1, sym__entry_separator, STATE(3489), 1, aux_sym__multiple_types_repeat1, @@ -422246,7 +422246,7 @@ static const uint16_t ts_small_parse_table[] = { [224320] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6235), 1, + ACTIONS(6244), 1, anon_sym_LBRACE, STATE(6107), 1, sym_block, @@ -422255,7 +422255,7 @@ static const uint16_t ts_small_parse_table[] = { [224333] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6235), 1, + ACTIONS(6244), 1, anon_sym_LBRACE, STATE(6113), 1, sym_block, @@ -422273,7 +422273,7 @@ static const uint16_t ts_small_parse_table[] = { [224359] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9640), 1, + ACTIONS(9649), 1, anon_sym_LBRACE, STATE(6924), 1, sym_val_record, @@ -422282,25 +422282,25 @@ static const uint16_t ts_small_parse_table[] = { [224372] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11781), 1, + ACTIONS(11790), 1, anon_sym_RBRACE, - ACTIONS(11783), 1, + ACTIONS(11792), 1, sym__entry_separator, STATE(7365), 1, sym_comment, [224385] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5076), 1, + ACTIONS(5085), 1, sym__entry_separator, - ACTIONS(5079), 1, + ACTIONS(5088), 1, anon_sym_RBRACE, STATE(7366), 1, sym_comment, [224398] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6217), 1, + ACTIONS(6226), 1, anon_sym_LBRACE, STATE(6798), 1, sym_block, @@ -422309,25 +422309,25 @@ static const uint16_t ts_small_parse_table[] = { [224411] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10090), 1, + ACTIONS(10099), 1, anon_sym_RBRACE, - ACTIONS(10092), 1, + ACTIONS(10101), 1, sym__entry_separator, STATE(7368), 1, sym_comment, [224424] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4934), 1, + ACTIONS(4943), 1, anon_sym_LBRACE, - ACTIONS(11785), 1, + ACTIONS(11794), 1, anon_sym_EQ2, STATE(7369), 1, sym_comment, [224437] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11787), 1, + ACTIONS(11796), 1, aux_sym__unquoted_in_record_with_expr_token1, STATE(7339), 1, aux_sym__unquoted_in_record_with_expr_repeat1, @@ -422336,16 +422336,16 @@ static const uint16_t ts_small_parse_table[] = { [224450] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11789), 1, + ACTIONS(11798), 1, anon_sym_RBRACE, - ACTIONS(11791), 1, + ACTIONS(11800), 1, sym__entry_separator, STATE(7371), 1, sym_comment, [224463] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6217), 1, + ACTIONS(6226), 1, anon_sym_LBRACE, STATE(6871), 1, sym_block, @@ -422363,7 +422363,7 @@ static const uint16_t ts_small_parse_table[] = { [224489] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6235), 1, + ACTIONS(6244), 1, anon_sym_LBRACE, STATE(6545), 1, sym_block, @@ -422372,25 +422372,25 @@ static const uint16_t ts_small_parse_table[] = { [224502] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7868), 1, + ACTIONS(7877), 1, anon_sym_RBRACK, - ACTIONS(7870), 1, + ACTIONS(7879), 1, sym__entry_separator, STATE(7375), 1, sym_comment, [224515] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11793), 1, + ACTIONS(11802), 1, anon_sym_RBRACK, - ACTIONS(11795), 1, + ACTIONS(11804), 1, sym__entry_separator, STATE(7376), 1, sym_comment, [224528] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11797), 1, + ACTIONS(11806), 1, anon_sym_LBRACE, STATE(7377), 1, sym_comment, @@ -422404,21 +422404,21 @@ static const uint16_t ts_small_parse_table[] = { [224548] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4604), 1, + ACTIONS(4613), 1, aux_sym_unquoted_token2, STATE(7379), 1, sym_comment, [224558] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11799), 1, + ACTIONS(11808), 1, anon_sym_EQ, STATE(7380), 1, sym_comment, [224568] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11801), 1, + ACTIONS(11810), 1, sym_raw_string_end, STATE(7381), 1, sym_comment, @@ -422432,315 +422432,315 @@ static const uint16_t ts_small_parse_table[] = { [224588] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8099), 1, + ACTIONS(8108), 1, aux_sym_unquoted_token4, STATE(7383), 1, sym_comment, [224598] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11803), 1, + ACTIONS(11812), 1, anon_sym_RBRACK, STATE(7384), 1, sym_comment, [224608] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11805), 1, + ACTIONS(11814), 1, sym_raw_string_end, STATE(7385), 1, sym_comment, [224618] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11807), 1, + ACTIONS(11816), 1, aux_sym_cmd_identifier_token41, STATE(7386), 1, sym_comment, [224628] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11809), 1, + ACTIONS(11818), 1, anon_sym_RPAREN, STATE(7387), 1, sym_comment, [224638] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11811), 1, + ACTIONS(11820), 1, anon_sym_RBRACE, STATE(7388), 1, sym_comment, [224648] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11813), 1, + ACTIONS(11822), 1, sym_identifier, STATE(7389), 1, sym_comment, [224658] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11815), 1, + ACTIONS(11824), 1, anon_sym_RPAREN, STATE(7390), 1, sym_comment, [224668] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11817), 1, + ACTIONS(11826), 1, sym_identifier, STATE(7391), 1, sym_comment, [224678] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11819), 1, + ACTIONS(11828), 1, anon_sym_LBRACE, STATE(7392), 1, sym_comment, [224688] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11821), 1, + ACTIONS(11830), 1, anon_sym_RBRACE, STATE(7393), 1, sym_comment, [224698] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11823), 1, + ACTIONS(11832), 1, anon_sym_EQ, STATE(7394), 1, sym_comment, [224708] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11825), 1, + ACTIONS(11834), 1, anon_sym_EQ, STATE(7395), 1, sym_comment, [224718] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4631), 1, + ACTIONS(4640), 1, aux_sym_unquoted_token2, STATE(7396), 1, sym_comment, [224728] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11827), 1, + ACTIONS(11836), 1, anon_sym_RBRACE, STATE(7397), 1, sym_comment, [224738] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11829), 1, + ACTIONS(11838), 1, aux_sym_env_var_token2, STATE(7398), 1, sym_comment, [224748] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8462), 1, + ACTIONS(8471), 1, aux_sym_unquoted_token4, STATE(7399), 1, sym_comment, [224758] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11831), 1, + ACTIONS(11840), 1, sym_raw_string_end, STATE(7400), 1, sym_comment, [224768] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11833), 1, + ACTIONS(11842), 1, anon_sym_RBRACK, STATE(7401), 1, sym_comment, [224778] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11835), 1, + ACTIONS(11844), 1, aux_sym_cmd_identifier_token41, STATE(7402), 1, sym_comment, [224788] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11837), 1, + ACTIONS(11846), 1, anon_sym_RPAREN, STATE(7403), 1, sym_comment, [224798] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11839), 1, + ACTIONS(11848), 1, anon_sym_RPAREN, STATE(7404), 1, sym_comment, [224808] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9692), 1, + ACTIONS(9701), 1, aux_sym_unquoted_token4, STATE(7405), 1, sym_comment, [224818] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11841), 1, + ACTIONS(11850), 1, anon_sym_RBRACE, STATE(7406), 1, sym_comment, [224828] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11843), 1, + ACTIONS(11852), 1, anon_sym_RBRACE, STATE(7407), 1, sym_comment, [224838] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11845), 1, + ACTIONS(11854), 1, anon_sym_RPAREN, STATE(7408), 1, sym_comment, [224848] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11847), 1, + ACTIONS(11856), 1, sym__table_head_separator, STATE(7409), 1, sym_comment, [224858] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11849), 1, + ACTIONS(11858), 1, sym_raw_string_end, STATE(7410), 1, sym_comment, [224868] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11851), 1, + ACTIONS(11860), 1, anon_sym_RBRACE, STATE(7411), 1, sym_comment, [224878] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11853), 1, + ACTIONS(11862), 1, anon_sym_RPAREN, STATE(7412), 1, sym_comment, [224888] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11855), 1, + ACTIONS(11864), 1, anon_sym_RBRACE, STATE(7413), 1, sym_comment, [224898] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11857), 1, + ACTIONS(11866), 1, anon_sym_RBRACE, STATE(7414), 1, sym_comment, [224908] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11859), 1, + ACTIONS(11868), 1, aux_sym_cmd_identifier_token41, STATE(7415), 1, sym_comment, [224918] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11861), 1, + ACTIONS(11870), 1, anon_sym_RPAREN, STATE(7416), 1, sym_comment, [224928] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11863), 1, + ACTIONS(11872), 1, anon_sym_RBRACE, STATE(7417), 1, sym_comment, [224938] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11865), 1, + ACTIONS(11874), 1, anon_sym_DASH_GT, STATE(7418), 1, sym_comment, [224948] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11867), 1, + ACTIONS(11876), 1, sym__table_head_separator, STATE(7419), 1, sym_comment, [224958] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11869), 1, + ACTIONS(11878), 1, aux_sym__unquoted_with_expr_token1, STATE(7420), 1, sym_comment, [224968] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11871), 1, + ACTIONS(11880), 1, anon_sym_RPAREN2, STATE(7421), 1, sym_comment, [224978] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11873), 1, + ACTIONS(11882), 1, aux_sym_cmd_identifier_token41, STATE(7422), 1, sym_comment, [224988] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11875), 1, + ACTIONS(11884), 1, sym_raw_string_end, STATE(7423), 1, sym_comment, [224998] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11877), 1, + ACTIONS(11886), 1, sym_raw_string_end, STATE(7424), 1, sym_comment, [225008] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11879), 1, + ACTIONS(11888), 1, anon_sym_RBRACK, STATE(7425), 1, sym_comment, [225018] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11881), 1, + ACTIONS(11890), 1, aux_sym_cmd_identifier_token41, STATE(7426), 1, sym_comment, [225028] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11883), 1, + ACTIONS(11892), 1, anon_sym_LBRACE, STATE(7427), 1, sym_comment, @@ -422761,28 +422761,28 @@ static const uint16_t ts_small_parse_table[] = { [225058] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11686), 1, + ACTIONS(11695), 1, aux_sym__record_key_token1, STATE(7430), 1, sym_comment, [225068] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11885), 1, + ACTIONS(11894), 1, anon_sym_RBRACE, STATE(7431), 1, sym_comment, [225078] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11887), 1, + ACTIONS(11896), 1, anon_sym_make, STATE(7432), 1, sym_comment, [225088] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11889), 1, + ACTIONS(11898), 1, sym_raw_string_end, STATE(7433), 1, sym_comment, @@ -422796,126 +422796,126 @@ static const uint16_t ts_small_parse_table[] = { [225108] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11891), 1, + ACTIONS(11900), 1, anon_sym_RBRACE, STATE(7435), 1, sym_comment, [225118] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11893), 1, + ACTIONS(11902), 1, anon_sym_RBRACK, STATE(7436), 1, sym_comment, [225128] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11895), 1, + ACTIONS(11904), 1, anon_sym_EQ, STATE(7437), 1, sym_comment, [225138] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11897), 1, + ACTIONS(11906), 1, anon_sym_LPAREN2, STATE(7438), 1, sym_comment, [225148] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4801), 1, + ACTIONS(4810), 1, aux_sym_unquoted_token2, STATE(7439), 1, sym_comment, [225158] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11899), 1, + ACTIONS(11908), 1, anon_sym_RBRACE, STATE(7440), 1, sym_comment, [225168] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11901), 1, + ACTIONS(11910), 1, sym_raw_string_end, STATE(7441), 1, sym_comment, [225178] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11903), 1, + ACTIONS(11912), 1, anon_sym_RBRACE, STATE(7442), 1, sym_comment, [225188] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11905), 1, + ACTIONS(11914), 1, anon_sym_RBRACE, STATE(7443), 1, sym_comment, [225198] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11907), 1, + ACTIONS(11916), 1, sym_raw_string_end, STATE(7444), 1, sym_comment, [225208] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4801), 1, + ACTIONS(4810), 1, aux_sym_unquoted_token4, STATE(7445), 1, sym_comment, [225218] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11909), 1, + ACTIONS(11918), 1, anon_sym_RPAREN, STATE(7446), 1, sym_comment, [225228] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11911), 1, + ACTIONS(11920), 1, sym_raw_string_end, STATE(7447), 1, sym_comment, [225238] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11913), 1, + ACTIONS(11922), 1, anon_sym_EQ, STATE(7448), 1, sym_comment, [225248] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11915), 1, + ACTIONS(11924), 1, sym_raw_string_end, STATE(7449), 1, sym_comment, [225258] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11917), 1, + ACTIONS(11926), 1, anon_sym_RPAREN, STATE(7450), 1, sym_comment, [225268] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11919), 1, + ACTIONS(11928), 1, aux_sym_cmd_identifier_token41, STATE(7451), 1, sym_comment, [225278] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11921), 1, + ACTIONS(11930), 1, anon_sym_EQ, STATE(7452), 1, sym_comment, @@ -422929,210 +422929,210 @@ static const uint16_t ts_small_parse_table[] = { [225298] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11923), 1, + ACTIONS(11932), 1, sym_raw_string_content, STATE(7454), 1, sym_comment, [225308] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9937), 1, + ACTIONS(9946), 1, aux_sym_unquoted_token2, STATE(7455), 1, sym_comment, [225318] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11925), 1, + ACTIONS(11934), 1, anon_sym_GT2, STATE(7456), 1, sym_comment, [225328] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9937), 1, + ACTIONS(9946), 1, aux_sym_unquoted_token4, STATE(7457), 1, sym_comment, [225338] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11927), 1, + ACTIONS(11936), 1, anon_sym_RBRACE, STATE(7458), 1, sym_comment, [225348] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11929), 1, + ACTIONS(11938), 1, aux_sym__unquoted_in_record_with_expr_token1, STATE(7459), 1, sym_comment, [225358] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11931), 1, + ACTIONS(11940), 1, sym_identifier, STATE(7460), 1, sym_comment, [225368] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11933), 1, + ACTIONS(11942), 1, sym_raw_string_content, STATE(7461), 1, sym_comment, [225378] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11935), 1, + ACTIONS(11944), 1, anon_sym_RBRACK, STATE(7462), 1, sym_comment, [225388] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11937), 1, + ACTIONS(11946), 1, anon_sym_RPAREN, STATE(7463), 1, sym_comment, [225398] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5126), 1, + ACTIONS(5135), 1, anon_sym_LBRACK2, STATE(7464), 1, sym_comment, [225408] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11939), 1, + ACTIONS(11948), 1, sym_raw_string_end, STATE(7465), 1, sym_comment, [225418] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11941), 1, + ACTIONS(11950), 1, sym_raw_string_end, STATE(7466), 1, sym_comment, [225428] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11943), 1, + ACTIONS(11952), 1, anon_sym_RBRACE, STATE(7467), 1, sym_comment, [225438] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3422), 1, + ACTIONS(3431), 1, anon_sym_COLON2, STATE(7468), 1, sym_comment, [225448] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11945), 1, + ACTIONS(11954), 1, anon_sym_RBRACE, STATE(7469), 1, sym_comment, [225458] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11947), 1, + ACTIONS(11956), 1, sym_raw_string_end, STATE(7470), 1, sym_comment, [225468] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8462), 1, + ACTIONS(8471), 1, aux_sym_unquoted_token2, STATE(7471), 1, sym_comment, [225478] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11949), 1, + ACTIONS(11958), 1, anon_sym_RBRACK, STATE(7472), 1, sym_comment, [225488] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11951), 1, + ACTIONS(11960), 1, anon_sym_RPAREN, STATE(7473), 1, sym_comment, [225498] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11953), 1, + ACTIONS(11962), 1, anon_sym_RPAREN, STATE(7474), 1, sym_comment, [225508] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8911), 1, + ACTIONS(8920), 1, aux_sym__unquoted_in_record_token2, STATE(7475), 1, sym_comment, [225518] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11955), 1, + ACTIONS(11964), 1, anon_sym_RBRACE, STATE(7476), 1, sym_comment, [225528] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11957), 1, + ACTIONS(11966), 1, anon_sym_RBRACE, STATE(7477), 1, sym_comment, [225538] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11959), 1, + ACTIONS(11968), 1, anon_sym_RBRACE, STATE(7478), 1, sym_comment, [225548] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11961), 1, + ACTIONS(11970), 1, aux_sym_cmd_identifier_token41, STATE(7479), 1, sym_comment, [225558] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11963), 1, + ACTIONS(11972), 1, sym_raw_string_end, STATE(7480), 1, sym_comment, [225568] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11965), 1, + ACTIONS(11974), 1, sym_identifier, STATE(7481), 1, sym_comment, [225578] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11967), 1, + ACTIONS(11976), 1, anon_sym_EQ, STATE(7482), 1, sym_comment, [225588] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11969), 1, + ACTIONS(11978), 1, sym_raw_string_end, STATE(7483), 1, sym_comment, @@ -423146,77 +423146,77 @@ static const uint16_t ts_small_parse_table[] = { [225608] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11971), 1, + ACTIONS(11980), 1, anon_sym_EQ, STATE(7485), 1, sym_comment, [225618] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11973), 1, + ACTIONS(11982), 1, anon_sym_RPAREN, STATE(7486), 1, sym_comment, [225628] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11975), 1, + ACTIONS(11984), 1, anon_sym_RPAREN, STATE(7487), 1, sym_comment, [225638] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11977), 1, + ACTIONS(11986), 1, aux_sym_cmd_identifier_token41, STATE(7488), 1, sym_comment, [225648] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11979), 1, + ACTIONS(11988), 1, anon_sym_RBRACE, STATE(7489), 1, sym_comment, [225658] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11981), 1, + ACTIONS(11990), 1, sym_long_flag_identifier, STATE(7490), 1, sym_comment, [225668] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11983), 1, + ACTIONS(11992), 1, anon_sym_RBRACE, STATE(7491), 1, sym_comment, [225678] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11985), 1, + ACTIONS(11994), 1, anon_sym_RBRACE, STATE(7492), 1, sym_comment, [225688] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11987), 1, + ACTIONS(11996), 1, anon_sym_RPAREN, STATE(7493), 1, sym_comment, [225698] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11989), 1, + ACTIONS(11998), 1, anon_sym_EQ, STATE(7494), 1, sym_comment, [225708] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5741), 1, + ACTIONS(5750), 1, aux_sym__unquoted_in_list_token2, STATE(7495), 1, sym_comment, @@ -423230,21 +423230,21 @@ static const uint16_t ts_small_parse_table[] = { [225728] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11991), 1, + ACTIONS(12000), 1, anon_sym_RBRACK, STATE(7497), 1, sym_comment, [225738] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11993), 1, + ACTIONS(12002), 1, anon_sym_RBRACE, STATE(7498), 1, sym_comment, [225748] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11995), 1, + ACTIONS(12004), 1, anon_sym_RBRACE, STATE(7499), 1, sym_comment, @@ -423258,56 +423258,56 @@ static const uint16_t ts_small_parse_table[] = { [225768] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11997), 1, + ACTIONS(12006), 1, anon_sym_RBRACK, STATE(7501), 1, sym_comment, [225778] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11999), 1, + ACTIONS(12008), 1, anon_sym_RPAREN, STATE(7502), 1, sym_comment, [225788] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12001), 1, + ACTIONS(12010), 1, sym__table_head_separator, STATE(7503), 1, sym_comment, [225798] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5741), 1, + ACTIONS(5750), 1, aux_sym__unquoted_in_list_token4, STATE(7504), 1, sym_comment, [225808] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12003), 1, + ACTIONS(12012), 1, anon_sym_EQ, STATE(7505), 1, sym_comment, [225818] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12005), 1, + ACTIONS(12014), 1, sym_raw_string_end, STATE(7506), 1, sym_comment, [225828] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12007), 1, + ACTIONS(12016), 1, aux_sym_cmd_identifier_token41, STATE(7507), 1, sym_comment, [225838] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12009), 1, + ACTIONS(12018), 1, anon_sym_RBRACE, STATE(7508), 1, sym_comment, @@ -423321,28 +423321,28 @@ static const uint16_t ts_small_parse_table[] = { [225858] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12011), 1, + ACTIONS(12020), 1, anon_sym_RBRACE, STATE(7510), 1, sym_comment, [225868] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12013), 1, + ACTIONS(12022), 1, anon_sym_RBRACE, STATE(7511), 1, sym_comment, [225878] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12015), 1, + ACTIONS(12024), 1, sym_raw_string_end, STATE(7512), 1, sym_comment, [225888] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12017), 1, + ACTIONS(12026), 1, sym_param_short_flag_identifier, STATE(7513), 1, sym_comment, @@ -423356,42 +423356,42 @@ static const uint16_t ts_small_parse_table[] = { [225908] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12019), 1, + ACTIONS(12028), 1, anon_sym_RBRACE, STATE(7515), 1, sym_comment, [225918] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12021), 1, + ACTIONS(12030), 1, anon_sym_RBRACE, STATE(7516), 1, sym_comment, [225928] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12023), 1, + ACTIONS(12032), 1, sym_identifier, STATE(7517), 1, sym_comment, [225938] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12025), 1, + ACTIONS(12034), 1, sym_raw_string_end, STATE(7518), 1, sym_comment, [225948] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12027), 1, + ACTIONS(12036), 1, sym_raw_string_content, STATE(7519), 1, sym_comment, [225958] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12029), 1, + ACTIONS(12038), 1, sym_raw_string_end, STATE(7520), 1, sym_comment, @@ -423405,35 +423405,35 @@ static const uint16_t ts_small_parse_table[] = { [225978] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5062), 1, + ACTIONS(5071), 1, anon_sym_LBRACK2, STATE(7522), 1, sym_comment, [225988] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12031), 1, + ACTIONS(12040), 1, anon_sym_RBRACK, STATE(7523), 1, sym_comment, [225998] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12033), 1, + ACTIONS(12042), 1, sym_raw_string_end, STATE(7524), 1, sym_comment, [226008] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12035), 1, + ACTIONS(12044), 1, anon_sym_EQ, STATE(7525), 1, sym_comment, [226018] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12037), 1, + ACTIONS(12046), 1, anon_sym_RBRACE, STATE(7526), 1, sym_comment, @@ -423454,119 +423454,119 @@ static const uint16_t ts_small_parse_table[] = { [226048] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12039), 1, + ACTIONS(12048), 1, anon_sym_RBRACE, STATE(7529), 1, sym_comment, [226058] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12041), 1, + ACTIONS(12050), 1, anon_sym_RBRACE, STATE(7530), 1, sym_comment, [226068] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12043), 1, + ACTIONS(12052), 1, anon_sym_RBRACE, STATE(7531), 1, sym_comment, [226078] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12045), 1, + ACTIONS(12054), 1, sym_raw_string_end, STATE(7532), 1, sym_comment, [226088] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12047), 1, + ACTIONS(12056), 1, sym_raw_string_end, STATE(7533), 1, sym_comment, [226098] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12049), 1, + ACTIONS(12058), 1, anon_sym_RPAREN, STATE(7534), 1, sym_comment, [226108] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12051), 1, + ACTIONS(12060), 1, sym_raw_string_end, STATE(7535), 1, sym_comment, [226118] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8719), 1, + ACTIONS(8728), 1, aux_sym_unquoted_token2, STATE(7536), 1, sym_comment, [226128] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7051), 1, + ACTIONS(7060), 1, aux_sym_unquoted_token4, STATE(7537), 1, sym_comment, [226138] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12053), 1, + ACTIONS(12062), 1, anon_sym_RBRACK, STATE(7538), 1, sym_comment, [226148] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12055), 1, + ACTIONS(12064), 1, anon_sym_RBRACE, STATE(7539), 1, sym_comment, [226158] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12057), 1, + ACTIONS(12066), 1, sym_raw_string_content, STATE(7540), 1, sym_comment, [226168] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12059), 1, + ACTIONS(12068), 1, anon_sym_COLON2, STATE(7541), 1, sym_comment, [226178] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7707), 1, + ACTIONS(7716), 1, anon_sym_LBRACK2, STATE(7542), 1, sym_comment, [226188] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12061), 1, + ACTIONS(12070), 1, anon_sym_RPAREN, STATE(7543), 1, sym_comment, [226198] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12063), 1, + ACTIONS(12072), 1, anon_sym_RBRACE, STATE(7544), 1, sym_comment, [226208] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12065), 1, + ACTIONS(12074), 1, anon_sym_RBRACE, STATE(7545), 1, sym_comment, @@ -423580,567 +423580,567 @@ static const uint16_t ts_small_parse_table[] = { [226228] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12067), 1, + ACTIONS(12076), 1, sym_raw_string_content, STATE(7547), 1, sym_comment, [226238] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12069), 1, + ACTIONS(12078), 1, anon_sym_RPAREN, STATE(7548), 1, sym_comment, [226248] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12071), 1, + ACTIONS(12080), 1, aux_sym_shebang_token1, STATE(7549), 1, sym_comment, [226258] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12073), 1, + ACTIONS(12082), 1, sym__space, STATE(7550), 1, sym_comment, [226268] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11692), 1, + ACTIONS(11701), 1, anon_sym_make, STATE(7551), 1, sym_comment, [226278] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12075), 1, + ACTIONS(12084), 1, anon_sym_RBRACE, STATE(7552), 1, sym_comment, [226288] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12077), 1, + ACTIONS(12086), 1, anon_sym_RPAREN, STATE(7553), 1, sym_comment, [226298] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12079), 1, + ACTIONS(12088), 1, sym_raw_string_end, STATE(7554), 1, sym_comment, [226308] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12081), 1, + ACTIONS(12090), 1, sym_raw_string_content, STATE(7555), 1, sym_comment, [226318] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5991), 1, + ACTIONS(6000), 1, anon_sym_LBRACK2, STATE(7556), 1, sym_comment, [226328] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8099), 1, + ACTIONS(8108), 1, aux_sym_unquoted_token2, STATE(7557), 1, sym_comment, [226338] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12083), 1, + ACTIONS(12092), 1, anon_sym_RPAREN, STATE(7558), 1, sym_comment, [226348] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12085), 1, + ACTIONS(12094), 1, anon_sym_LBRACE, STATE(7559), 1, sym_comment, [226358] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12087), 1, + ACTIONS(12096), 1, anon_sym_RBRACK, STATE(7560), 1, sym_comment, [226368] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(10773), 1, + ACTIONS(10782), 1, anon_sym_LBRACK2, STATE(7561), 1, sym_comment, [226378] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12089), 1, + ACTIONS(12098), 1, anon_sym_RPAREN, STATE(7562), 1, sym_comment, [226388] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12091), 1, + ACTIONS(12100), 1, anon_sym_RPAREN, STATE(7563), 1, sym_comment, [226398] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12093), 1, + ACTIONS(12102), 1, anon_sym_RBRACE, STATE(7564), 1, sym_comment, [226408] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12095), 1, + ACTIONS(12104), 1, anon_sym_EQ, STATE(7565), 1, sym_comment, [226418] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12097), 1, + ACTIONS(12106), 1, anon_sym_LBRACE, STATE(7566), 1, sym_comment, [226428] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5577), 1, + ACTIONS(5586), 1, aux_sym_unquoted_token2, STATE(7567), 1, sym_comment, [226438] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12099), 1, + ACTIONS(12108), 1, anon_sym_RBRACK, STATE(7568), 1, sym_comment, [226448] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12101), 1, + ACTIONS(12110), 1, sym_raw_string_content, STATE(7569), 1, sym_comment, [226458] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7659), 1, + ACTIONS(7668), 1, anon_sym_LBRACK2, STATE(7570), 1, sym_comment, [226468] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12103), 1, + ACTIONS(12112), 1, anon_sym_EQ_GT, STATE(7571), 1, sym_comment, [226478] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12105), 1, + ACTIONS(12114), 1, anon_sym_RBRACE, STATE(7572), 1, sym_comment, [226488] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12107), 1, + ACTIONS(12116), 1, sym_raw_string_end, STATE(7573), 1, sym_comment, [226498] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12109), 1, + ACTIONS(12118), 1, sym_raw_string_end, STATE(7574), 1, sym_comment, [226508] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12111), 1, + ACTIONS(12120), 1, anon_sym_RPAREN, STATE(7575), 1, sym_comment, [226518] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12113), 1, + ACTIONS(12122), 1, anon_sym_RBRACE, STATE(7576), 1, sym_comment, [226528] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3424), 1, + ACTIONS(3433), 1, anon_sym_COLON2, STATE(7577), 1, sym_comment, [226538] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4631), 1, + ACTIONS(4640), 1, aux_sym_unquoted_token4, STATE(7578), 1, sym_comment, [226548] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12115), 1, + ACTIONS(12124), 1, anon_sym_RBRACE, STATE(7579), 1, sym_comment, [226558] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12117), 1, + ACTIONS(12126), 1, anon_sym_GT2, STATE(7580), 1, sym_comment, [226568] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4904), 1, + ACTIONS(4913), 1, aux_sym_unquoted_token2, STATE(7581), 1, sym_comment, [226578] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12119), 1, + ACTIONS(12128), 1, sym_raw_string_content, STATE(7582), 1, sym_comment, [226588] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7911), 1, + ACTIONS(7920), 1, anon_sym_LBRACK2, STATE(7583), 1, sym_comment, [226598] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12121), 1, + ACTIONS(12130), 1, anon_sym_RBRACK, STATE(7584), 1, sym_comment, [226608] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11598), 1, + ACTIONS(11607), 1, anon_sym_EQ_GT, STATE(7585), 1, sym_comment, [226618] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12123), 1, + ACTIONS(12132), 1, anon_sym_RPAREN, STATE(7586), 1, sym_comment, [226628] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4904), 1, + ACTIONS(4913), 1, aux_sym_unquoted_token4, STATE(7587), 1, sym_comment, [226638] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12125), 1, + ACTIONS(12134), 1, anon_sym_RBRACE, STATE(7588), 1, sym_comment, [226648] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12127), 1, + ACTIONS(12136), 1, anon_sym_LBRACE, STATE(7589), 1, sym_comment, [226658] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12129), 1, + ACTIONS(12138), 1, anon_sym_RBRACE, STATE(7590), 1, sym_comment, [226668] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12131), 1, + ACTIONS(12140), 1, anon_sym_RPAREN, STATE(7591), 1, sym_comment, [226678] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12133), 1, + ACTIONS(12142), 1, anon_sym_RPAREN, STATE(7592), 1, sym_comment, [226688] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12135), 1, + ACTIONS(12144), 1, anon_sym_RBRACE, STATE(7593), 1, sym_comment, [226698] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12137), 1, + ACTIONS(12146), 1, anon_sym_RPAREN2, STATE(7594), 1, sym_comment, [226708] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12139), 1, + ACTIONS(12148), 1, sym_raw_string_content, STATE(7595), 1, sym_comment, [226718] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12141), 1, + ACTIONS(12150), 1, anon_sym_RBRACE, STATE(7596), 1, sym_comment, [226728] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12143), 1, + ACTIONS(12152), 1, anon_sym_RBRACE, STATE(7597), 1, sym_comment, [226738] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(10906), 1, + ACTIONS(10915), 1, anon_sym_LBRACE, STATE(7598), 1, sym_comment, [226748] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12145), 1, + ACTIONS(12154), 1, anon_sym_RPAREN, STATE(7599), 1, sym_comment, [226758] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12147), 1, + ACTIONS(12156), 1, anon_sym_LBRACE, STATE(7600), 1, sym_comment, [226768] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12149), 1, + ACTIONS(12158), 1, sym_identifier, STATE(7601), 1, sym_comment, [226778] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12147), 1, + ACTIONS(12156), 1, anon_sym_LBRACE, STATE(7602), 1, sym_comment, [226788] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12151), 1, + ACTIONS(12160), 1, anon_sym_LBRACE, STATE(7603), 1, sym_comment, [226798] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12153), 1, + ACTIONS(12162), 1, anon_sym_RBRACE, STATE(7604), 1, sym_comment, [226808] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11652), 1, + ACTIONS(11661), 1, anon_sym_LBRACE, STATE(7605), 1, sym_comment, [226818] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4692), 1, + ACTIONS(4701), 1, anon_sym_COLON2, STATE(7606), 1, sym_comment, [226828] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(10767), 1, + ACTIONS(10776), 1, anon_sym_LBRACE, STATE(7607), 1, sym_comment, [226838] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12155), 1, + ACTIONS(12164), 1, sym_raw_string_content, STATE(7608), 1, sym_comment, [226848] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6128), 1, + ACTIONS(6137), 1, anon_sym_LBRACK2, STATE(7609), 1, sym_comment, [226858] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12157), 1, + ACTIONS(12166), 1, anon_sym_RBRACE, STATE(7610), 1, sym_comment, [226868] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5474), 1, + ACTIONS(5483), 1, aux_sym__unquoted_in_list_token2, STATE(7611), 1, sym_comment, [226878] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12159), 1, + ACTIONS(12168), 1, sym__table_head_separator, STATE(7612), 1, sym_comment, [226888] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12161), 1, + ACTIONS(12170), 1, anon_sym_LBRACE, STATE(7613), 1, sym_comment, [226898] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7051), 1, + ACTIONS(7060), 1, aux_sym_unquoted_token2, STATE(7614), 1, sym_comment, [226908] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12163), 1, + ACTIONS(12172), 1, sym_raw_string_end, STATE(7615), 1, sym_comment, [226918] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12165), 1, + ACTIONS(12174), 1, anon_sym_RBRACK, STATE(7616), 1, sym_comment, [226928] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12167), 1, + ACTIONS(12176), 1, anon_sym_RPAREN, STATE(7617), 1, sym_comment, [226938] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12169), 1, + ACTIONS(12178), 1, anon_sym_RBRACE, STATE(7618), 1, sym_comment, [226948] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12171), 1, + ACTIONS(12180), 1, sym__space, STATE(7619), 1, sym_comment, [226958] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12173), 1, + ACTIONS(12182), 1, anon_sym_RBRACE, STATE(7620), 1, sym_comment, [226968] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12175), 1, + ACTIONS(12184), 1, sym_raw_string_content, STATE(7621), 1, sym_comment, [226978] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6055), 1, + ACTIONS(6064), 1, anon_sym_LBRACK2, STATE(7622), 1, sym_comment, [226988] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12177), 1, + ACTIONS(12186), 1, anon_sym_GT2, STATE(7623), 1, sym_comment, [226998] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7130), 1, + ACTIONS(7139), 1, aux_sym_unquoted_token4, STATE(7624), 1, sym_comment, [227008] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12179), 1, + ACTIONS(12188), 1, anon_sym_RBRACK, STATE(7625), 1, sym_comment, [227018] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12181), 1, + ACTIONS(12190), 1, anon_sym_RBRACK, STATE(7626), 1, sym_comment, [227028] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12183), 1, + ACTIONS(12192), 1, anon_sym_RBRACE, STATE(7627), 1, sym_comment, @@ -424154,21 +424154,21 @@ static const uint16_t ts_small_parse_table[] = { [227048] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12185), 1, + ACTIONS(12194), 1, anon_sym_RPAREN, STATE(7629), 1, sym_comment, [227058] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12187), 1, + ACTIONS(12196), 1, aux_sym_cmd_identifier_token41, STATE(7630), 1, sym_comment, [227068] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12189), 1, + ACTIONS(12198), 1, anon_sym_GT2, STATE(7631), 1, sym_comment, @@ -424182,196 +424182,196 @@ static const uint16_t ts_small_parse_table[] = { [227088] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12191), 1, + ACTIONS(12200), 1, anon_sym_RPAREN, STATE(7633), 1, sym_comment, [227098] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12193), 1, + ACTIONS(12202), 1, sym_raw_string_content, STATE(7634), 1, sym_comment, [227108] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9654), 1, + ACTIONS(9663), 1, anon_sym_LBRACK2, STATE(7635), 1, sym_comment, [227118] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12195), 1, + ACTIONS(12204), 1, sym_raw_string_end, STATE(7636), 1, sym_comment, [227128] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12197), 1, + ACTIONS(12206), 1, anon_sym_RPAREN, STATE(7637), 1, sym_comment, [227138] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12199), 1, + ACTIONS(12208), 1, anon_sym_RBRACK, STATE(7638), 1, sym_comment, [227148] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12201), 1, + ACTIONS(12210), 1, anon_sym_RBRACE, STATE(7639), 1, sym_comment, [227158] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12203), 1, + ACTIONS(12212), 1, anon_sym_EQ, STATE(7640), 1, sym_comment, [227168] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12205), 1, + ACTIONS(12214), 1, aux_sym_shebang_token1, STATE(7641), 1, sym_comment, [227178] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12207), 1, + ACTIONS(12216), 1, anon_sym_DASH_GT, STATE(7642), 1, sym_comment, [227188] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11819), 1, + ACTIONS(11828), 1, anon_sym_LBRACE, STATE(7643), 1, sym_comment, [227198] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12209), 1, + ACTIONS(12218), 1, anon_sym_GT2, STATE(7644), 1, sym_comment, [227208] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12211), 1, + ACTIONS(12220), 1, anon_sym_LBRACE, STATE(7645), 1, sym_comment, [227218] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8748), 1, + ACTIONS(8757), 1, aux_sym__unquoted_in_list_token2, STATE(7646), 1, sym_comment, [227228] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12213), 1, + ACTIONS(12222), 1, sym_raw_string_content, STATE(7647), 1, sym_comment, [227238] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9290), 1, + ACTIONS(9299), 1, anon_sym_LBRACK2, STATE(7648), 1, sym_comment, [227248] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12215), 1, + ACTIONS(12224), 1, anon_sym_LBRACE, STATE(7649), 1, sym_comment, [227258] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12217), 1, + ACTIONS(12226), 1, sym_raw_string_end, STATE(7650), 1, sym_comment, [227268] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12219), 1, + ACTIONS(12228), 1, anon_sym_RBRACE, STATE(7651), 1, sym_comment, [227278] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12221), 1, + ACTIONS(12230), 1, anon_sym_RBRACE, STATE(7652), 1, sym_comment, [227288] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12223), 1, + ACTIONS(12232), 1, sym_raw_string_end, STATE(7653), 1, sym_comment, [227298] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12225), 1, + ACTIONS(12234), 1, anon_sym_RBRACE, STATE(7654), 1, sym_comment, [227308] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12227), 1, + ACTIONS(12236), 1, anon_sym_RBRACE, STATE(7655), 1, sym_comment, [227318] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12229), 1, + ACTIONS(12238), 1, anon_sym_RBRACE, STATE(7656), 1, sym_comment, [227328] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12231), 1, + ACTIONS(12240), 1, anon_sym_RBRACE, STATE(7657), 1, sym_comment, [227338] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12233), 1, + ACTIONS(12242), 1, anon_sym_COLON2, STATE(7658), 1, sym_comment, [227348] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12235), 1, + ACTIONS(12244), 1, sym_raw_string_end, STATE(7659), 1, sym_comment, [227358] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12237), 1, + ACTIONS(12246), 1, sym_raw_string_content, STATE(7660), 1, sym_comment, @@ -424385,21 +424385,21 @@ static const uint16_t ts_small_parse_table[] = { [227378] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12239), 1, + ACTIONS(12248), 1, anon_sym_EQ, STATE(7662), 1, sym_comment, [227388] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12241), 1, + ACTIONS(12250), 1, sym_raw_string_end, STATE(7663), 1, sym_comment, [227398] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12243), 1, + ACTIONS(12252), 1, anon_sym_RBRACE, STATE(7664), 1, sym_comment, @@ -424413,35 +424413,35 @@ static const uint16_t ts_small_parse_table[] = { [227418] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7130), 1, + ACTIONS(7139), 1, aux_sym_unquoted_token2, STATE(7666), 1, sym_comment, [227428] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12245), 1, + ACTIONS(12254), 1, sym_raw_string_end, STATE(7667), 1, sym_comment, [227438] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12247), 1, + ACTIONS(12256), 1, anon_sym_RBRACK, STATE(7668), 1, sym_comment, [227448] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7177), 1, + ACTIONS(7186), 1, aux_sym__unquoted_in_record_token2, STATE(7669), 1, sym_comment, [227458] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12249), 1, + ACTIONS(12258), 1, sym_raw_string_content, STATE(7670), 1, sym_comment, @@ -424455,427 +424455,427 @@ static const uint16_t ts_small_parse_table[] = { [227478] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12251), 1, + ACTIONS(12260), 1, anon_sym_RPAREN, STATE(7672), 1, sym_comment, [227488] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12253), 1, + ACTIONS(12262), 1, anon_sym_LBRACE, STATE(7673), 1, sym_comment, [227498] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12255), 1, + ACTIONS(12264), 1, anon_sym_RPAREN, STATE(7674), 1, sym_comment, [227508] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12257), 1, + ACTIONS(12266), 1, anon_sym_GT2, STATE(7675), 1, sym_comment, [227518] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9692), 1, + ACTIONS(9701), 1, aux_sym_unquoted_token2, STATE(7676), 1, sym_comment, [227528] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12259), 1, + ACTIONS(12268), 1, anon_sym_RPAREN2, STATE(7677), 1, sym_comment, [227538] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12261), 1, + ACTIONS(12270), 1, anon_sym_RBRACE, STATE(7678), 1, sym_comment, [227548] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12263), 1, + ACTIONS(12272), 1, aux_sym_cmd_identifier_token41, STATE(7679), 1, sym_comment, [227558] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12265), 1, + ACTIONS(12274), 1, sym_raw_string_content, STATE(7680), 1, sym_comment, [227568] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12267), 1, + ACTIONS(12276), 1, anon_sym_EQ, STATE(7681), 1, sym_comment, [227578] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12269), 1, + ACTIONS(12278), 1, sym_raw_string_end, STATE(7682), 1, sym_comment, [227588] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12271), 1, + ACTIONS(12280), 1, aux_sym_comment_token1, STATE(7683), 1, sym_comment, [227598] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12273), 1, + ACTIONS(12282), 1, anon_sym_RPAREN, STATE(7684), 1, sym_comment, [227608] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12275), 1, + ACTIONS(12284), 1, anon_sym_EQ, STATE(7685), 1, sym_comment, [227618] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4413), 1, + ACTIONS(4422), 1, aux_sym_unquoted_token2, STATE(7686), 1, sym_comment, [227628] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12277), 1, + ACTIONS(12286), 1, aux_sym__unquoted_in_list_with_expr_token1, STATE(7687), 1, sym_comment, [227638] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4604), 1, + ACTIONS(4613), 1, aux_sym_unquoted_token4, STATE(7688), 1, sym_comment, [227648] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12279), 1, + ACTIONS(12288), 1, sym_raw_string_content, STATE(7689), 1, sym_comment, [227658] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12281), 1, + ACTIONS(12290), 1, anon_sym_RBRACK, STATE(7690), 1, sym_comment, [227668] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12283), 1, + ACTIONS(12292), 1, anon_sym_RPAREN, STATE(7691), 1, sym_comment, [227678] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12285), 1, + ACTIONS(12294), 1, anon_sym_RBRACE, STATE(7692), 1, sym_comment, [227688] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12287), 1, + ACTIONS(12296), 1, anon_sym_RBRACE, STATE(7693), 1, sym_comment, [227698] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12289), 1, + ACTIONS(12298), 1, aux_sym_cmd_identifier_token41, STATE(7694), 1, sym_comment, [227708] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12291), 1, + ACTIONS(12300), 1, sym_raw_string_end, STATE(7695), 1, sym_comment, [227718] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12293), 1, + ACTIONS(12302), 1, aux_sym_cmd_identifier_token41, STATE(7696), 1, sym_comment, [227728] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12295), 1, + ACTIONS(12304), 1, anon_sym_RBRACE, STATE(7697), 1, sym_comment, [227738] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12297), 1, + ACTIONS(12306), 1, sym_raw_string_content, STATE(7698), 1, sym_comment, [227748] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12299), 1, + ACTIONS(12308), 1, sym_raw_string_content, STATE(7699), 1, sym_comment, [227758] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12301), 1, + ACTIONS(12310), 1, sym_raw_string_content, STATE(7700), 1, sym_comment, [227768] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12303), 1, + ACTIONS(12312), 1, sym_raw_string_content, STATE(7701), 1, sym_comment, [227778] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12305), 1, + ACTIONS(12314), 1, sym_raw_string_content, STATE(7702), 1, sym_comment, [227788] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12307), 1, + ACTIONS(12316), 1, sym_raw_string_content, STATE(7703), 1, sym_comment, [227798] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12309), 1, + ACTIONS(12318), 1, sym_raw_string_content, STATE(7704), 1, sym_comment, [227808] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12311), 1, + ACTIONS(12320), 1, sym_raw_string_content, STATE(7705), 1, sym_comment, [227818] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12313), 1, + ACTIONS(12322), 1, sym_raw_string_content, STATE(7706), 1, sym_comment, [227828] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12315), 1, + ACTIONS(12324), 1, sym_raw_string_content, STATE(7707), 1, sym_comment, [227838] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12317), 1, + ACTIONS(12326), 1, sym_raw_string_content, STATE(7708), 1, sym_comment, [227848] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12319), 1, + ACTIONS(12328), 1, sym_raw_string_content, STATE(7709), 1, sym_comment, [227858] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12321), 1, + ACTIONS(12330), 1, sym_raw_string_content, STATE(7710), 1, sym_comment, [227868] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12323), 1, + ACTIONS(12332), 1, sym_raw_string_content, STATE(7711), 1, sym_comment, [227878] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12325), 1, + ACTIONS(12334), 1, sym_raw_string_content, STATE(7712), 1, sym_comment, [227888] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12327), 1, + ACTIONS(12336), 1, sym_raw_string_content, STATE(7713), 1, sym_comment, [227898] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12329), 1, + ACTIONS(12338), 1, sym_raw_string_content, STATE(7714), 1, sym_comment, [227908] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12331), 1, + ACTIONS(12340), 1, sym_raw_string_content, STATE(7715), 1, sym_comment, [227918] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12333), 1, + ACTIONS(12342), 1, sym_raw_string_content, STATE(7716), 1, sym_comment, [227928] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12335), 1, + ACTIONS(12344), 1, sym_raw_string_content, STATE(7717), 1, sym_comment, [227938] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12337), 1, + ACTIONS(12346), 1, sym_raw_string_content, STATE(7718), 1, sym_comment, [227948] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12339), 1, + ACTIONS(12348), 1, sym_raw_string_content, STATE(7719), 1, sym_comment, [227958] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12341), 1, + ACTIONS(12350), 1, anon_sym_RPAREN, STATE(7720), 1, sym_comment, [227968] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11684), 1, + ACTIONS(11693), 1, anon_sym_LPAREN2, STATE(7721), 1, sym_comment, [227978] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12343), 1, + ACTIONS(12352), 1, anon_sym_RBRACK, STATE(7722), 1, sym_comment, [227988] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12345), 1, + ACTIONS(12354), 1, sym_raw_string_end, STATE(7723), 1, sym_comment, [227998] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12347), 1, + ACTIONS(12356), 1, sym_identifier, STATE(7724), 1, sym_comment, [228008] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12349), 1, + ACTIONS(12358), 1, anon_sym_RBRACK, STATE(7725), 1, sym_comment, [228018] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12351), 1, + ACTIONS(12360), 1, anon_sym_RBRACK, STATE(7726), 1, sym_comment, [228028] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12353), 1, + ACTIONS(12362), 1, anon_sym_RPAREN, STATE(7727), 1, sym_comment, [228038] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12355), 1, + ACTIONS(12364), 1, anon_sym_RBRACE, STATE(7728), 1, sym_comment, [228048] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12357), 1, + ACTIONS(12366), 1, anon_sym_RBRACK, STATE(7729), 1, sym_comment, [228058] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12359), 1, + ACTIONS(12368), 1, anon_sym_in2, STATE(7730), 1, sym_comment, [228068] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12361), 1, + ACTIONS(12370), 1, anon_sym_LBRACE, STATE(7731), 1, sym_comment, [228078] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12363), 1, + ACTIONS(12372), 1, anon_sym_RPAREN, STATE(7732), 1, sym_comment, @@ -424896,42 +424896,42 @@ static const uint16_t ts_small_parse_table[] = { [228108] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12365), 1, + ACTIONS(12374), 1, sym_raw_string_end, STATE(7735), 1, sym_comment, [228118] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12367), 1, + ACTIONS(12376), 1, anon_sym_RPAREN, STATE(7736), 1, sym_comment, [228128] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12369), 1, + ACTIONS(12378), 1, anon_sym_EQ_GT, STATE(7737), 1, sym_comment, [228138] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8719), 1, + ACTIONS(8728), 1, aux_sym_unquoted_token4, STATE(7738), 1, sym_comment, [228148] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12371), 1, + ACTIONS(12380), 1, ts_builtin_sym_end, STATE(7739), 1, sym_comment, [228158] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4534), 1, + ACTIONS(4543), 1, aux_sym_unquoted_token2, STATE(7740), 1, sym_comment, @@ -424945,203 +424945,203 @@ static const uint16_t ts_small_parse_table[] = { [228178] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5577), 1, + ACTIONS(5586), 1, aux_sym_unquoted_token4, STATE(7742), 1, sym_comment, [228188] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12373), 1, + ACTIONS(12382), 1, anon_sym_RBRACK, STATE(7743), 1, sym_comment, [228198] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12375), 1, + ACTIONS(12384), 1, sym_identifier, STATE(7744), 1, sym_comment, [228208] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12377), 1, + ACTIONS(12386), 1, anon_sym_RBRACK, STATE(7745), 1, sym_comment, [228218] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12379), 1, + ACTIONS(12388), 1, anon_sym_RPAREN, STATE(7746), 1, sym_comment, [228228] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12381), 1, + ACTIONS(12390), 1, anon_sym_RPAREN, STATE(7747), 1, sym_comment, [228238] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12383), 1, + ACTIONS(12392), 1, anon_sym_RBRACE, STATE(7748), 1, sym_comment, [228248] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12385), 1, + ACTIONS(12394), 1, anon_sym_RBRACE, STATE(7749), 1, sym_comment, [228258] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12387), 1, + ACTIONS(12396), 1, ts_builtin_sym_end, STATE(7750), 1, sym_comment, [228268] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12389), 1, + ACTIONS(12398), 1, anon_sym_EQ, STATE(7751), 1, sym_comment, [228278] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12391), 1, + ACTIONS(12400), 1, anon_sym_in2, STATE(7752), 1, sym_comment, [228288] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12393), 1, + ACTIONS(12402), 1, aux_sym_cmd_identifier_token41, STATE(7753), 1, sym_comment, [228298] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12395), 1, + ACTIONS(12404), 1, anon_sym_RBRACE, STATE(7754), 1, sym_comment, [228308] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12397), 1, + ACTIONS(12406), 1, aux_sym_cmd_identifier_token41, STATE(7755), 1, sym_comment, [228318] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5405), 1, + ACTIONS(5414), 1, anon_sym_LBRACK2, STATE(7756), 1, sym_comment, [228328] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12399), 1, + ACTIONS(12408), 1, anon_sym_RBRACE, STATE(7757), 1, sym_comment, [228338] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12401), 1, + ACTIONS(12410), 1, anon_sym_RPAREN, STATE(7758), 1, sym_comment, [228348] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12403), 1, + ACTIONS(12412), 1, anon_sym_RBRACE, STATE(7759), 1, sym_comment, [228358] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12405), 1, + ACTIONS(12414), 1, anon_sym_RBRACE, STATE(7760), 1, sym_comment, [228368] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12407), 1, + ACTIONS(12416), 1, anon_sym_RBRACE, STATE(7761), 1, sym_comment, [228378] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12409), 1, + ACTIONS(12418), 1, anon_sym_RBRACE, STATE(7762), 1, sym_comment, [228388] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12411), 1, + ACTIONS(12420), 1, anon_sym_RBRACE, STATE(7763), 1, sym_comment, [228398] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12413), 1, + ACTIONS(12422), 1, anon_sym_RPAREN, STATE(7764), 1, sym_comment, [228408] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12415), 1, + ACTIONS(12424), 1, anon_sym_RBRACE, STATE(7765), 1, sym_comment, [228418] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12417), 1, + ACTIONS(12426), 1, anon_sym_RBRACE, STATE(7766), 1, sym_comment, [228428] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12419), 1, + ACTIONS(12428), 1, anon_sym_RPAREN, STATE(7767), 1, sym_comment, [228438] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12421), 1, + ACTIONS(12430), 1, anon_sym_EQ, STATE(7768), 1, sym_comment, [228448] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12423), 1, + ACTIONS(12432), 1, aux_sym_cmd_identifier_token41, STATE(7769), 1, sym_comment, [228458] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12425), 1, + ACTIONS(12434), 1, sym_raw_string_end, STATE(7770), 1, sym_comment, @@ -425155,26 +425155,26 @@ static const uint16_t ts_small_parse_table[] = { [228478] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12427), 1, + ACTIONS(12436), 1, anon_sym_RBRACE, STATE(7772), 1, sym_comment, [228488] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12429), 1, + ACTIONS(12438), 1, anon_sym_RPAREN, STATE(7773), 1, sym_comment, [228498] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4940), 1, + ACTIONS(4949), 1, anon_sym_LBRACK2, STATE(7774), 1, sym_comment, [228508] = 1, - ACTIONS(12431), 1, + ACTIONS(12440), 1, ts_builtin_sym_end, }; @@ -432496,4704 +432496,4707 @@ static const TSParseActionEntry ts_parse_actions[] = { [2751] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_do, 4, 0, 0), [2753] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__pipe_separator, 1, 0, 0), [2755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__pipe_separator, 1, 0, 0), - [2757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_do_parenthesized, 4, 0, 0), - [2759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2904), - [2761] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_do_parenthesized, 5, 0, 0), - [2763] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(2904), - [2766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), - [2768] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(850), - [2771] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(46), - [2774] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(6332), - [2777] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1611), - [2780] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1609), - [2783] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(16), - [2786] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(5093), - [2789] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(5097), - [2792] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1598), - [2795] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1605), - [2798] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1241), - [2801] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1241), - [2804] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1327), - [2807] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1300), - [2810] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1750), - [2813] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1704), - [2816] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1648), - [2819] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(7774), - [2822] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1604), - [2825] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(6201), - [2828] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1786), - [2831] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(5923), - [2834] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(5619), - [2837] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(7251), - [2840] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(7251), - [2843] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1643), - [2846] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(7634), - [2849] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 3, 0, 0), - [2851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 3, 0, 0), - [2853] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_do_parenthesized, 3, 0, 0), - [2855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(771), - [2857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), - [2859] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(844), - [2862] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(55), - [2865] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(6076), - [2868] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1675), - [2871] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1641), - [2874] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(11), - [2877] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(5133), - [2880] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(5144), - [2883] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1698), - [2886] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1701), - [2889] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1255), - [2892] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1255), - [2895] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1342), - [2898] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1326), - [2901] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1944), - [2904] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1805), - [2907] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1765), - [2910] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(7522), - [2913] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1669), - [2916] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(6111), - [2919] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1945), - [2922] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(5906), - [2925] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(5798), - [2928] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1710), - [2931] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(7595), - [2934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), - [2936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), - [2938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6076), - [2940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1675), - [2942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1641), - [2944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), - [2946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5133), - [2948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5144), - [2950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1698), - [2952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1701), - [2954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1255), - [2956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1255), - [2958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1342), - [2960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1326), - [2962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1944), - [2964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1805), - [2966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1765), - [2968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7522), - [2970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1669), - [2972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6111), - [2974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1945), - [2976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5906), - [2978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5798), - [2980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1710), - [2982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7595), - [2984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(798), - [2986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), - [2988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(792), - [2990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), - [2992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), - [2994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), - [2996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(796), - [2998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), - [3000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), - [3002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), - [3004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), - [3006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), - [3008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), - [3010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(801), - [3012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), - [3014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), - [3016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), - [3018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7755), - [3020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7755), - [3022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4506), - [3024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1359), - [3026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1387), - [3028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(869), - [3030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), - [3032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), - [3034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), - [3036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), - [3038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(826), - [3040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), - [3042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7386), - [3044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7386), - [3046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4778), - [3048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1477), - [3050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1509), - [3052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(868), - [3054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), - [3056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), - [3058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7479), - [3060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7479), - [3062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4532), - [3064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(866), - [3066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), - [3068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(871), - [3070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), - [3072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), - [3074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), - [3076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(879), - [3078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), - [3080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), - [3082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), - [3084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5670), - [3086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), - [3088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6179), - [3090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), - [3092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5122), - [3094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5128), - [3096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6093), - [3098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6210), - [3100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4900), - [3102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4900), - [3104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5124), - [3106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5026), - [3108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7071), - [3110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7014), - [3112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6411), - [3114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7561), - [3116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6108), - [3118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6186), - [3120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5129), - [3122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7047), - [3124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7519), - [3126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4031), - [3128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), - [3130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5855), - [3132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5567), - [3134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1491), - [3136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4100), - [3138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5449), - [3140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2711), - [3142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3974), - [3144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5170), - [3146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1422), - [3148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4283), - [3150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5078), - [3152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4997), - [3154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2026), - [3156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), - [3158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), - [3160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(893), - [3162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), - [3164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3962), - [3166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1652), - [3168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5848), - [3170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7507), - [3172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7507), - [3174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4437), - [3176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7402), - [3178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7402), - [3180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4590), - [3182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7769), - [3184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7769), - [3186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4547), - [3188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2824), - [3190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2921), - [3192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5101), - [3194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5104), - [3196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3252), - [3198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3253), - [3200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2934), - [3202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2934), - [3204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3074), - [3206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2999), - [3208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3267), - [3210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3251), - [3212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1893), - [3214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5085), - [3216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5091), - [3218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2091), - [3220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2122), - [3222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1474), - [3224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1474), - [3226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1597), - [3228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1536), - [3230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2298), - [3232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2096), - [3234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5090), - [3236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5094), - [3238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3534), - [3240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3532), - [3242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3421), - [3244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3421), - [3246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3478), - [3248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3439), - [3250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3567), - [3252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3542), - [3254] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(843), - [3257] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(53), - [3260] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(6179), - [3263] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(6), - [3266] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(5122), - [3269] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(90), - [3272] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(5128), - [3275] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(6093), - [3278] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(6210), - [3281] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(7391), - [3284] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(4900), - [3287] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(4900), - [3290] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(5124), - [3293] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(5026), - [3296] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(7071), - [3299] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(7014), - [3302] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(6411), - [3305] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(7561), - [3308] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(6108), - [3311] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(6186), - [3314] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(5129), - [3317] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(5941), - [3320] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(5745), - [3323] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(838), - [3326] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(7345), - [3329] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(7345), - [3332] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(7047), - [3335] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(7519), - [3338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5150), - [3340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5081), - [3342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2176), - [3344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2281), - [3346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1528), - [3348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1528), - [3350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1662), - [3352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1608), - [3354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2422), - [3356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2218), - [3358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2222), - [3360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5096), - [3362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5100), - [3364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3256), - [3366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3268), - [3368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3024), - [3370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3024), - [3372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3143), - [3374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3084), - [3376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3274), - [3378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3261), - [3380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5105), - [3382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5107), - [3384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3630), - [3386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3672), - [3388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3441), - [3390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3441), - [3392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3490), - [3394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3475), - [3396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3705), - [3398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3670), - [3400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_return, 1, 0, 0), - [3402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4870), - [3404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2145), - [3406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1229), - [3408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7348), - [3410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2088), - [3412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2153), - [3414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2948), - [3416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2948), - [3418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2900), - [3420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2861), - [3422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188), - [3424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1205), - [3426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4807), - [3428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2103), - [3430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1236), - [3432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7230), - [3434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2485), - [3436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2557), - [3438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2148), - [3440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6525), - [3442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5103), - [3444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5028), - [3446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5106), - [3448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4011), - [3450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3982), - [3452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3782), - [3454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3782), - [3456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3819), - [3458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3793), - [3460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4021), - [3462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4002), - [3464] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat1, 2, 0, 0), - [3466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1152), - [3468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1152), - [3470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat1, 2, 0, 0), - [3472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6400), - [3474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5156), - [3476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4989), - [3478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5102), - [3480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4107), - [3482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4057), - [3484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3792), - [3486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3792), - [3488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3829), - [3490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3817), - [3492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4295), - [3494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4035), - [3496] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat2, 2, 0, 0), - [3498] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat2, 2, 0, 0), SHIFT_REPEAT(1152), - [3501] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat2, 2, 0, 0), SHIFT_REPEAT(1152), - [3504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat2, 2, 0, 0), - [3506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2151), - [3508] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipe_element_repeat2, 2, 0, 0), - [3510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1158), - [3512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_element_repeat2, 2, 0, 0), - [3514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2150), - [3516] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipe_element_repeat1, 2, 0, 0), - [3518] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_element_repeat1, 2, 0, 0), SHIFT_REPEAT(1158), - [3521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_element_repeat1, 2, 0, 0), - [3523] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(7398), - [3526] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(1160), - [3529] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipe_element_repeat2, 2, 0, 0), SHIFT_REPEAT(7398), - [3532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat2, 1, 0, 0), - [3534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3175), - [3536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1211), - [3538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6570), - [3540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), - [3542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4631), - [3544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6674), - [3546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5077), - [3548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5079), - [3550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6454), - [3552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6272), - [3554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5037), - [3556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5037), - [3558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5262), - [3560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5039), - [3562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6106), - [3564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6433), - [3566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1176), - [3568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), - [3570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4825), - [3572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1167), - [3574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1195), - [3576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3097), - [3578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), - [3580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), - [3582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6350), - [3584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), - [3586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5089), - [3588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5095), - [3590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4519), - [3592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4398), - [3594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3844), - [3596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3844), - [3598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3924), - [3600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3893), - [3602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4672), - [3604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4679), - [3606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4520), - [3608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7583), - [3610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4397), - [3612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6226), - [3614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4074), - [3616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5917), - [3618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5603), - [3620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7354), - [3622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7354), - [3624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4682), - [3626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7647), - [3628] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipe_element_repeat1, 1, 0, 0), - [3630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_element_repeat1, 1, 0, 0), - [3632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1180), - [3634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1203), - [3636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4668), - [3638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1159), - [3640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1201), - [3642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1154), - [3644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1187), - [3646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4827), - [3648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1178), - [3650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1197), - [3652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1194), - [3654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1212), - [3656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1171), - [3658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1217), - [3660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1192), - [3662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1181), - [3664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1204), - [3666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1198), - [3668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1230), - [3670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), - [3672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), - [3674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), - [3676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5087), - [3678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5088), - [3680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), - [3682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), - [3684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(318), - [3686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), - [3688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), - [3690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), - [3692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), - [3694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), - [3696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(594), - [3698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7671), - [3700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), - [3702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6386), - [3704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), - [3706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5946), - [3708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5662), - [3710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(556), - [3712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7714), - [3714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5115), - [3716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5117), - [3718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6578), - [3720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6589), - [3722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5033), - [3724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5033), - [3726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5270), - [3728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5154), - [3730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6849), - [3732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6457), - [3734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6949), - [3736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), - [3738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), - [3740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6376), - [3742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), - [3744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5114), - [3746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5118), - [3748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), - [3750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), - [3752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(329), - [3754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), - [3756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), - [3758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), - [3760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), - [3762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), - [3764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(624), - [3766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7661), - [3768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), - [3770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6359), - [3772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), - [3774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5942), - [3776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5655), - [3778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(672), - [3780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7706), - [3782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1215), - [3784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1209), - [3786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1231), - [3788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1336), - [3790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1337), - [3792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1341), - [3794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1325), - [3796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1331), - [3798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1332), - [3800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1232), - [3802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1941), - [3804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), - [3806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7064), - [3808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), - [3810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6342), - [3812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), - [3814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4971), - [3816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5140), - [3818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3053), - [3820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3086), - [3822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2586), - [3824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2586), - [3826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2674), - [3828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2660), - [3830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3144), - [3832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3058), - [3834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3056), - [3836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7609), - [3838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3047), - [3840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6322), - [3842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3154), - [3844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3167), - [3846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7698), - [3848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), - [3850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), - [3852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6109), - [3854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), - [3856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5112), - [3858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5131), - [3860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7229), - [3862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7296), - [3864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5204), - [3866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5204), - [3868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5496), - [3870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5301), - [3872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7302), - [3874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7261), - [3876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3164), - [3878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4901), - [3880] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(1211), - [3883] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(49), - [3886] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(6570), - [3889] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(200), - [3892] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(6674), - [3895] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(5077), - [3898] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(5079), - [3901] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(6454), - [3904] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(6272), - [3907] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(5037), - [3910] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(5037), - [3913] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(5262), - [3916] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(5039), - [3919] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(1703), - [3922] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(6106), - [3925] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(1932), - [3928] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(7464), - [3931] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(6433), - [3934] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(6464), - [3937] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(1420), - [3940] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(7251), - [3943] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(7251), - [3946] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(1893), - [3949] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(7540), - [3952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1358), - [3954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1362), - [3956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1405), - [3958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1395), - [3960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), - [3962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1589), - [3964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1333), - [3966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1333), - [3968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1381), - [3970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1361), - [3972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), - [3974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1634), - [3976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1355), - [3978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1355), - [3980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457), - [3982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1390), - [3984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5367), - [3986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6290), - [3988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), - [3990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1427), - [3992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1427), - [3994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1596), - [3996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1548), - [3998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1733), - [4000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1397), - [4002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1397), - [4004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1526), - [4006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1471), - [4008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1242), - [4010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1324), - [4012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1272), - [4014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1322), - [4016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), - [4018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7771), - [4020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), - [4022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5801), - [4024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5803), - [4026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4331), - [4028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4351), - [4030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3828), - [4032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3888), - [4034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3862), - [4036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4797), - [4038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4540), - [4040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4379), - [4042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6527), - [4044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3997), - [4046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5878), - [4048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5721), - [4050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), - [4052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7378), - [4054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6327), - [4056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), - [4058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5749), - [4060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5751), - [4062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5628), - [4064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5737), - [4066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4972), - [4068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4972), - [4070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5126), - [4072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5027), - [4074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5992), - [4076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5629), - [4078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5847), - [4080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7509), - [4082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6080), - [4084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5771), - [4086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5772), - [4088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1794), - [4090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1799), - [4092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1320), - [4094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), - [4096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1393), - [4098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1354), - [4100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1815), - [4102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1793), - [4104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1849), - [4106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6337), - [4108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4810), - [4110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4810), - [4112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5155), - [4114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5021), - [4116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5954), - [4118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1833), - [4120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1448), - [4122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1448), - [4124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1629), - [4126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1533), - [4128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7434), - [4130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5669), - [4132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5672), - [4134] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5367), - [4137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), - [4139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1512), - [4141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1512), - [4143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1667), - [4145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1610), - [4147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1305), - [4149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1356), - [4151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6200), - [4153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6613), - [4155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4998), - [4157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4998), - [4159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5245), - [4161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5073), - [4163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6468), - [4165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6599), - [4167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1318), - [4169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1374), - [4171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1261), - [4173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1371), - [4175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), - [4177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7500), - [4179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), - [4181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5588), - [4183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5589), - [4185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6885), - [4187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6652), - [4189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5065), - [4191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5065), - [4193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5421), - [4195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5261), - [4197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4441), - [4199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7072), - [4201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6799), - [4203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6082), - [4205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3922), - [4207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5897), - [4209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5766), - [4211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), - [4213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7677), - [4215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6321), - [4217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), - [4219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5723), - [4221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5724), - [4223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2945), - [4225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2890), - [4227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2338), - [4229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2338), - [4231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2575), - [4233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2533), - [4235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3026), - [4237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2932), - [4239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2908), - [4241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7556), - [4243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2936), - [4245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6142), - [4247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3030), - [4249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5912), - [4251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5587), - [4253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2949), - [4255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7608), - [4257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1323), - [4259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4198), - [4261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4128), - [4263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3802), - [4265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3858), - [4267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3834), - [4269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4332), - [4271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4132), - [4273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7741), - [4275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5604), - [4277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5605), - [4279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1655), - [4281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1650), - [4283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1262), - [4285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1262), - [4287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1364), - [4289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), - [4291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1689), - [4293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1691), - [4295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1705), - [4297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), - [4299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7421), - [4301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6362), - [4303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), - [4305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5620), - [4307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5621), - [4309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5505), - [4311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5542), - [4313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4465), - [4315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4465), - [4317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4834), - [4319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4570), - [4321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5744), - [4323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5562), - [4325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5559), - [4327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7635), - [4329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5523), - [4331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6347), - [4333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5406), - [4335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5932), - [4337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5635), - [4339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5618), - [4341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7703), - [4343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), - [4345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7594), - [4347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6366), - [4349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), - [4351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5636), - [4353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5637), - [4355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5347), - [4357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5423), - [4359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4321), - [4361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4321), - [4363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4695), - [4365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4466), - [4367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5531), - [4369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5408), - [4371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5351), - [4373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7648), - [4375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5291), - [4377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6355), - [4379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5198), - [4381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5939), - [4383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5647), - [4385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5534), - [4387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7705), - [4389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1218), - [4391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7129), - [4393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4868), - [4395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1555), - [4397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1555), - [4399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1806), - [4401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1700), - [4403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), - [4405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1234), - [4407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1243), - [4409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1556), - [4411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1562), - [4413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1690), - [4415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3123), - [4417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4903), - [4419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1311), - [4421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), - [4423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5385), - [4425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1348), - [4427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1642), - [4429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1642), - [4431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1876), - [4433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1795), - [4435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1370), - [4437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1384), - [4439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1344), - [4441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1315), - [4443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1375), - [4445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5419), - [4447] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 197), SHIFT_REPEAT(1218), - [4450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 197), - [4452] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 197), SHIFT_REPEAT(47), - [4455] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 197), SHIFT_REPEAT(6342), - [4458] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 197), SHIFT_REPEAT(198), - [4461] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 197), SHIFT_REPEAT(5120), - [4464] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 197), SHIFT_REPEAT(5140), - [4467] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 197), SHIFT_REPEAT(3053), - [4470] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 197), SHIFT_REPEAT(3086), - [4473] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 197), SHIFT_REPEAT(2586), - [4476] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 197), SHIFT_REPEAT(2586), - [4479] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 197), SHIFT_REPEAT(2674), - [4482] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 197), SHIFT_REPEAT(2660), - [4485] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 197), SHIFT_REPEAT(3144), - [4488] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 197), SHIFT_REPEAT(3058), - [4491] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 197), SHIFT_REPEAT(3056), - [4494] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 197), SHIFT_REPEAT(7609), - [4497] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 197), SHIFT_REPEAT(3047), - [4500] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 197), SHIFT_REPEAT(6322), - [4503] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 197), SHIFT_REPEAT(3154), - [4506] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 197), SHIFT_REPEAT(7345), - [4509] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 197), SHIFT_REPEAT(7345), - [4512] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 197), SHIFT_REPEAT(3167), - [4515] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 197), SHIFT_REPEAT(7698), - [4518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1340), - [4520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1416), - [4522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1368), - [4524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1369), - [4526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1237), - [4528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1253), - [4530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1657), - [4532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1686), - [4534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1712), - [4536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1352), - [4538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1383), - [4540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5377), - [4542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), - [4544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2031), - [4546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1506), - [4548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1656), - [4550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1566), - [4552] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5385), - [4555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2080), - [4557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1394), - [4559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1366), - [4561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1465), - [4563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5432), - [4565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2155), - [4567] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5419), - [4570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1404), - [4572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1467), - [4574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5075), - [4576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5076), - [4578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6671), - [4580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6732), - [4582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5134), - [4584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5134), - [4586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5293), - [4588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5159), - [4590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7198), - [4592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6695), - [4594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), - [4596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5558), - [4598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5720), - [4600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1635), - [4602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1646), - [4604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1783), - [4606] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5377), - [4609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1875), - [4611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2106), - [4613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1984), - [4615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5226), - [4617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5226), - [4619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1473), - [4621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1964), - [4623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1451), - [4625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1452), - [4627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1796), - [4629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1797), - [4631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1850), - [4633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1412), - [4635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1540), - [4637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1239), - [4639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1239), - [4641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1419), - [4643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1468), - [4645] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5432), - [4648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6140), - [4650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), - [4652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2301), - [4654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1658), - [4656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1887), - [4658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1800), - [4660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1476), - [4662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1543), - [4664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5381), - [4666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1499), - [4668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1612), - [4670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1538), - [4672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1600), - [4674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1472), - [4676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1549), - [4678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5263), - [4680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5263), - [4682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1518), - [4684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1534), - [4686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1423), - [4688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1607), - [4690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1489), - [4692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1186), - [4694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1986), - [4696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2309), - [4698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2152), - [4700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1260), - [4702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1260), - [4704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1527), - [4706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1572), - [4708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1425), - [4710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1559), - [4712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1483), - [4714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1545), - [4716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2526), - [4718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2520), - [4720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2274), - [4722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5368), - [4724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(173), - [4726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), - [4728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1478), - [4730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500), - [4732] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5381), - [4735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1577), - [4737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1661), - [4739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1613), - [4741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1240), - [4743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1299), - [4745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1498), - [4747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1649), - [4749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 1, 0, 0), - [4751] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 1, 0, 0), - [4753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1535), - [4755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1679), - [4757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(165), - [4759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), - [4761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1306), - [4763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1306), - [4765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1290), - [4767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1290), - [4769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1297), - [4771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1297), - [4773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1592), - [4775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1531), - [4777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1671), - [4779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5223), - [4781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5223), - [4783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1616), - [4785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1681), - [4787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1621), - [4789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1688), - [4791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1623), - [4793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1351), - [4795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1407), - [4797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2086), - [4799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2087), - [4801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1906), - [4803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(174), - [4805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), - [4807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5432), - [4809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1248), - [4811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), - [4813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5207), - [4815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5207), - [4817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1628), - [4819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1807), - [4821] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), - [4823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 1, 0, 0), - [4825] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 1, 0, 0), - [4827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1676), - [4829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1312), - [4831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1312), - [4833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1313), - [4835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1313), - [4837] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_with_expr, 3, 0, 0), - [4839] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_with_expr, 3, 0, 0), - [4841] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_with_expr, 3, 0, 104), - [4843] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_with_expr, 3, 0, 104), - [4845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1314), - [4847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1314), - [4849] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_with_expr, 4, 0, 0), - [4851] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_with_expr, 4, 0, 0), - [4853] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_with_expr, 4, 0, 104), - [4855] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_with_expr, 4, 0, 104), - [4857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(176), - [4859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), - [4861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1696), - [4863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1680), - [4865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(162), - [4867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), - [4869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_short_flag, 1, 0, 0), - [4871] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_short_flag, 1, 0, 0), - [4873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1276), - [4875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1645), - [4877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1640), - [4879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_flag, 1, 0, 0), - [4881] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_flag, 1, 0, 0), - [4883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1279), - [4885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1633), - [4887] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5368), - [4890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 1, 0, 31), - [4892] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 1, 0, 31), - [4894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1664), - [4896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1411), - [4898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1455), - [4900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2197), - [4902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2204), - [4904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2227), - [4906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1695), - [4908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1808), - [4910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5357), - [4912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1725), - [4914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1851), - [4916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_flag, 2, 0, 21), - [4918] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_flag, 2, 0, 21), - [4920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1281), - [4922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1292), - [4924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1811), - [4926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1670), - [4928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1880), - [4930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unquoted, 1, 0, 0), - [4932] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unquoted, 1, 0, 0), - [4934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_short_flag, 2, 0, 21), - [4936] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_short_flag, 2, 0, 21), - [4938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1278), - [4940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6731), - [4942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 186), - [4944] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 186), - [4946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1637), - [4948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1951), - [4950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3955), - [4952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3955), - [4954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_use, 3, 0, 43), - [4956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2175), - [4958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6499), - [4960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3517), - [4962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3675), - [4964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3547), - [4966] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5357), - [4969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1798), - [4971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1882), - [4973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_use, 2, 0, 15), - [4975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1707), - [4977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1256), - [4979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1748), - [4981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1749), - [4983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 1, 0, 31), - [4985] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 1, 0, 31), - [4987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unquoted, 2, 0, 0), - [4989] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unquoted, 2, 0, 0), - [4991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hide_mod, 2, 0, 29), - [4993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1809), - [4995] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(1941), - [4998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1258), - [5000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2, 0, 0), - [5002] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 2, 0, 0), - [5004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6169), - [5006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6169), - [5008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2160), - [5010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7168), - [5012] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__flag, 1, 0, 0), - [5014] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__flag, 1, 0, 0), - [5016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), - [5018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_short_flag, 3, 0, 96), - [5020] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_short_flag, 3, 0, 96), - [5022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_short_flag, 3, 0, 97), - [5024] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_short_flag, 3, 0, 97), - [5026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), - [5028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_short_flag, 4, 0, 141), - [5030] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_short_flag, 4, 0, 141), - [5032] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_short_flag, 4, 0, 142), - [5034] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_short_flag, 4, 0, 142), - [5036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1868), - [5038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5220), - [5040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5220), - [5042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_flag, 3, 0, 96), - [5044] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_flag, 3, 0, 96), - [5046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_flag, 3, 0, 97), - [5048] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_flag, 3, 0, 97), - [5050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1378), - [5052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1378), - [5054] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_flag, 4, 0, 141), - [5056] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_flag, 4, 0, 141), - [5058] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_flag, 4, 0, 142), - [5060] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_flag, 4, 0, 142), - [5062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7051), - [5064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1883), - [5066] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__blosure, 1, 10, 0), - [5068] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__blosure, 1, 10, 0), - [5070] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__blosure, 1, 0, 0), - [5072] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__blosure, 1, 0, 0), - [5074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1246), - [5076] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_block, 3, 0, 0), REDUCE(sym_val_closure, 3, 0, 0), - [5079] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 3, 0, 0), REDUCE(sym_val_closure, 3, 0, 0), - [5082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1898), - [5084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1899), - [5086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1398), - [5088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1398), - [5090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5214), - [5092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5214), - [5094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1469), - [5096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1469), - [5098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1985), - [5100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2129), - [5102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1872), - [5104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2123), - [5106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1, 0, 0), - [5108] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expr_binary_expression, 1, 0, 0), - [5110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expr_binary_expression, 1, 0, 0), - [5112] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1, 0, 0), - [5114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5274), - [5116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5274), - [5118] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary, 3, 0, 83), - [5120] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary, 3, 0, 83), - [5122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1418), - [5124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418), - [5126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6750), - [5128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5168), - [5130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5168), - [5132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1386), - [5134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1386), - [5136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1388), - [5138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), - [5140] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression_parenthesized, 1, 0, 0), REDUCE(sym__expr_binary_expression_parenthesized, 1, 0, 0), - [5143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_parenthesized, 1, 0, 0), - [5145] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expr_binary_expression_parenthesized, 1, 0, 0), - [5147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expr_binary_expression_parenthesized, 1, 0, 0), - [5149] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_parenthesized, 1, 0, 0), - [5151] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 156), - [5153] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 156), - [5155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 3, 0, 83), - [5157] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 3, 0, 83), - [5159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2119), - [5161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2224), - [5163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 158), - [5165] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 158), - [5167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1498), - [5169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5357), - [5171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2133), - [5173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1957), - [5175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2210), - [5177] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 193), - [5179] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 193), - [5181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5192), - [5183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5193), - [5185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3491), - [5187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3491), - [5189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5210), - [5191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5210), - [5193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5211), - [5195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5211), - [5197] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_unary, 1, 0, 0), - [5199] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_unary, 1, 0, 0), - [5201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_unary, 2, 0, 0), - [5203] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_unary, 2, 0, 0), - [5205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary, 3, 0, 82), - [5207] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary, 3, 0, 82), - [5209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2171), - [5211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expr_unary_minus, 4, 0, 0), - [5213] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expr_unary_minus, 4, 0, 0), - [5215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1537), - [5217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1537), - [5219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1492), - [5221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1492), - [5223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1480), - [5225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1480), - [5227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1520), - [5229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520), - [5231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 192), - [5233] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 192), - [5235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6862), - [5237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6862), - [5239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3016), - [5241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6800), - [5243] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 83), - [5245] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 83), - [5247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2852), - [5249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5372), - [5251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 3, 0, 82), - [5253] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 3, 0, 82), - [5255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6198), - [5257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 6, 0, 193), - [5259] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 6, 0, 193), - [5261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 6, 0, 192), - [5263] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 6, 0, 192), - [5265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 158), - [5267] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 158), - [5269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 156), - [5271] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 156), - [5273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), - [5275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2896), - [5277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2566), - [5279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2695), - [5281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2637), - [5283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 82), - [5285] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 82), - [5287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 155), - [5289] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 155), - [5291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 155), - [5293] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 155), - [5295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1637), - [5297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 157), - [5299] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 157), - [5301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 157), - [5303] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 157), - [5305] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 3, 0, 82), SHIFT(1941), - [5308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(899), - [5310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), - [5312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), - [5314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(895), - [5316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), - [5318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), - [5320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), - [5322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), - [5324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), - [5326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), - [5328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(897), - [5330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), - [5332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), - [5334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), - [5336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), - [5338] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 157), SHIFT(1941), - [5341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), - [5343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(978), - [5345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), - [5347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), - [5349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1033), - [5351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), - [5353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(902), - [5355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), - [5357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2450), - [5359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2599), - [5361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), - [5363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), - [5365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), - [5367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), - [5369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), - [5371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), - [5373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6373), - [5375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), - [5377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2794), - [5379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2915), - [5381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2823), - [5383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), - [5385] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 192), SHIFT(1941), - [5388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2322), - [5390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2585), - [5392] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 155), SHIFT(1941), - [5395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2470), - [5397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2576), - [5399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2388), - [5401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2573), - [5403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5354), - [5405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7153), - [5407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1059), - [5409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1061), - [5411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), - [5413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), - [5415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1059), - [5417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), - [5419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1058), - [5421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), - [5423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), - [5425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), - [5427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), - [5429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), - [5431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), - [5433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062), - [5435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), - [5437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), - [5439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3055), - [5441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2694), - [5443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2694), - [5445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2867), - [5447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2799), - [5449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3052), - [5451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2710), - [5453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2848), - [5455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2788), - [5457] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5372), - [5460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2569), - [5462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2577), - [5464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), - [5466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2238), - [5468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2325), - [5470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2943), - [5472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2944), - [5474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2973), - [5476] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5354), - [5479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), - [5481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1076), - [5483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1071), - [5485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), - [5487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1074), - [5489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1072), - [5491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1073), - [5493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1073), - [5495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), - [5497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057), - [5499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1126), - [5501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), - [5503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), - [5505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), - [5507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2593), - [5509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2594), - [5511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), - [5513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3187), - [5515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2796), - [5517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2796), - [5519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2922), - [5521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2834), - [5523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6358), - [5525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), - [5527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2913), - [5529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2913), - [5531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3076), - [5533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2966), - [5535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2891), - [5537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3101), - [5539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3027), - [5541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2671), - [5543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2651), - [5545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2698), - [5547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5394), - [5549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2640), - [5551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2561), - [5553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2697), - [5555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2946), - [5557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2946), - [5559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3169), - [5561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3060), - [5563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2654), - [5565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2654), - [5567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6572), - [5569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2601), - [5571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7569), - [5573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2893), - [5575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2895), - [5577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2981), - [5579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2613), - [5581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2676), - [5583] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_list_repeat1, 2, 0, 146), SHIFT_REPEAT(6862), - [5586] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_list_repeat1, 2, 0, 146), SHIFT_REPEAT(6862), - [5589] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_list_repeat1, 2, 0, 146), SHIFT_REPEAT(3517), - [5592] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_list_repeat1, 2, 0, 146), SHIFT_REPEAT(3675), - [5595] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_list_repeat1, 2, 0, 146), SHIFT_REPEAT(3547), - [5598] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_list_repeat1, 2, 0, 146), SHIFT_REPEAT(6186), - [5601] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_list_repeat1, 2, 0, 146), SHIFT_REPEAT(5129), - [5604] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_list_repeat1, 2, 0, 146), SHIFT_REPEAT(7519), - [5607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2581), - [5609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2675), - [5611] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5394), - [5614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5389), - [5616] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_name, 1, 0, 8), - [5618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__command_name, 1, 0, 8), - [5620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2677), - [5622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2692), - [5624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2692), - [5626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6233), - [5628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2723), - [5630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7461), - [5632] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cmd_identifier, 3, 0, 0), - [5634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cmd_identifier, 3, 0, 0), - [5636] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cmd_identifier, 3, 0, 50), - [5638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cmd_identifier, 3, 0, 50), - [5640] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cmd_identifier, 4, 0, 50), - [5642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cmd_identifier, 4, 0, 50), - [5644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2699), - [5646] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cmd_identifier, 1, 0, 0), - [5648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cmd_identifier, 1, 0, 0), - [5650] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cmd_identifier, 2, 0, 0), - [5652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cmd_identifier, 2, 0, 0), - [5654] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_name, 1, 0, 7), - [5656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__command_name, 1, 0, 7), - [5658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5383), - [5660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5239), - [5662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5239), - [5664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2329), - [5666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2329), - [5668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), - [5670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5212), - [5672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5213), - [5674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7311), - [5676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7355), - [5678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7128), - [5680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2803), - [5682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2859), - [5684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2688), - [5686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2838), - [5688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7439), - [5690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7527), - [5692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2790), - [5694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2854), - [5696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2703), - [5698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2851), - [5700] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5389), - [5703] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 19), - [5705] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 4, 0, 105), - [5707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2772), - [5709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 19), - [5711] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 2, 0, 19), - [5713] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list, 2, 0, 0), - [5715] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__match_pattern_list, 2, 0, 0), REDUCE(sym_val_list, 2, 0, 0), - [5718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5360), - [5720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_list, 2, 0, 0), - [5722] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__multiple_types_repeat1, 2, 0, 0), SHIFT_REPEAT(2772), - [5725] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 3, 0, 51), - [5727] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 3, 0, 52), - [5729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2792), - [5731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2793), - [5733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2415), - [5735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2532), - [5737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3061), - [5739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3062), - [5741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3168), - [5743] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 1, 0, 0), REDUCE(aux_sym_parameter_repeat2, 1, 0, 0), - [5746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_repeat2, 1, 0, 0), - [5748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), - [5750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6224), - [5752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5783), - [5754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5785), - [5756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7455), - [5758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5887), - [5760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5746), - [5762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2611), - [5764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5395), - [5766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3238), - [5768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3075), - [5770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3201), - [5772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3171), - [5774] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record, 2, 0, 0), - [5776] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__match_pattern_record, 2, 0, 0), REDUCE(sym_val_record, 2, 0, 0), - [5779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_record, 2, 0, 0), - [5781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2876), - [5783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2906), - [5785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), - [5787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6223), - [5789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5613), - [5791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5653), - [5793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7676), - [5795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5935), - [5797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5704), - [5799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2731), - [5801] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5383), - [5804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5387), - [5806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2827), - [5808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2918), - [5810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2865), - [5812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2866), - [5814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2842), - [5816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2925), - [5818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2855), - [5820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2779), - [5822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2916), - [5824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), - [5826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5710), - [5828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5711), - [5830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7581), - [5832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2784), - [5834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2924), - [5836] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(2824), - [5839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2818), - [5841] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_list_repeat1, 2, 0, 145), - [5843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6149), - [5845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2919), - [5847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_list_repeat1, 2, 0, 145), - [5849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2551), - [5851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2551), - [5853] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_decl_def_repeat1, 2, 0, 0), - [5855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_decl_def_repeat1, 2, 0, 0), - [5857] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_decl_def_repeat1, 2, 0, 0), SHIFT_REPEAT(2852), - [5860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5391), - [5862] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(2904), - [5865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_record, 3, 0, 198), - [5867] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record, 3, 0, 198), - [5869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6755), - [5871] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(2921), - [5874] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_expression, 1, 0, 0), - [5876] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_entry, 1, 0, 16), - [5878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2423), - [5880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2539), - [5882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_entry, 1, 0, 16), - [5884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_expression, 1, 0, 0), - [5886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2920), - [5888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5202), - [5890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5202), - [5892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2927), - [5894] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_value, 1, 0, 0), - [5896] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__match_pattern_value, 1, 0, 0), REDUCE(sym__value, 1, 0, 0), - [5899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_value, 1, 0, 0), - [5901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6771), - [5903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2928), - [5905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5229), - [5907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5229), - [5909] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__multiple_types_repeat1, 2, 0, 0), SHIFT_REPEAT(2919), - [5912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2541), - [5914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2541), - [5916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3257), - [5918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3130), - [5920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3211), - [5922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3200), - [5924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2926), - [5926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3217), - [5928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3246), - [5930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3233), - [5932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2931), - [5934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1296), - [5936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6257), - [5938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6273), - [5940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6462), - [5942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2911), - [5944] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5395), - [5947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2548), - [5949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2548), - [5951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2935), - [5953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6956), - [5955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2549), - [5957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2549), - [5959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7120), - [5961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3232), - [5963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3269), - [5965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3242), - [5967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5225), - [5969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5225), - [5971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2942), - [5973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3111), - [5975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2600), - [5977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2600), - [5979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2970), - [5981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3103), - [5983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2523), - [5985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2568), - [5987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2582), - [5989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2582), - [5991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6651), - [5993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2899), - [5995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3100), - [5997] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5391), - [6000] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_repeat1, 1, 0, 16), - [6002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3198), - [6004] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 1, 0, 16), - [6006] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(3016), - [6009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1269), - [6011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3005), - [6013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3082), - [6015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2933), - [6017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3079), - [6019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3019), - [6021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3021), - [6023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2578), - [6025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2578), - [6027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3031), - [6029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3112), - [6031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2990), - [6033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3182), - [6035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2769), - [6037] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list, 1, 0, 0), - [6039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list, 1, 0, 0), - [6041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3038), - [6043] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list, 2, 0, 0), - [6045] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list, 2, 0, 0), - [6047] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), - [6049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4869), - [6051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3069), - [6053] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), - [6055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6778), - [6057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2757), - [6059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2846), - [6061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3250), - [6063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3235), - [6065] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__multiple_types_repeat1, 2, 0, 0), SHIFT_REPEAT(3069), - [6068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4898), - [6070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4899), - [6072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3121), - [6074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3188), - [6076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3078), - [6078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4617), - [6080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4619), - [6082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3080), - [6084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4634), - [6086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3083), - [6088] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_decl_def_repeat1, 1, 0, 0), - [6090] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_decl_def_repeat1, 1, 0, 0), - [6092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4637), - [6094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4926), - [6096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3093), - [6098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3155), - [6100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4652), - [6102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4653), - [6104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4927), - [6106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3012), - [6108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3149), - [6110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4871), - [6112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3113), - [6114] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(3097), - [6117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3128), - [6119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3196), - [6121] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record, 3, 0, 0), - [6123] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__match_pattern_record, 3, 0, 0), REDUCE(sym_val_record, 3, 0, 0), - [6126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_record, 3, 0, 0), - [6128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6754), - [6130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2840), - [6132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2882), - [6134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3258), - [6136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3259), - [6138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3043), - [6140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3195), - [6142] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(3175), - [6145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3194), - [6147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3127), - [6149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_list, 3, 0, 196), - [6151] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list, 3, 0, 196), - [6153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3245), - [6155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3244), - [6157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3202), - [6159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3173), - [6161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3212), - [6163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3198), - [6165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_value, 1, 0, 111), - [6167] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_value, 1, 0, 111), - [6169] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_value, 1, 0, 112), - [6171] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_value, 1, 0, 112), - [6173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_list, 4, 0, 227), - [6175] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list, 4, 0, 227), - [6177] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_record, 4, 0, 198), - [6179] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record, 4, 0, 198), - [6181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3203), - [6183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3213), - [6185] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_list, 3, 0, 194), - [6187] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list, 3, 0, 194), - [6189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2844), - [6191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2844), - [6193] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 195), - [6195] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 195), - [6197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5233), - [6199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5233), - [6201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3206), - [6203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3234), - [6205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3249), - [6207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3378), - [6209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3248), - [6211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5867), - [6213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5676), - [6215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5679), - [6217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), - [6219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5228), - [6221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5228), - [6223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2880), - [6225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2880), - [6227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3204), - [6229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3247), - [6231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3411), - [6233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3412), - [6235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), - [6237] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_block, 2, 0, 0), REDUCE(sym_val_record, 2, 0, 0), - [6240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3243), - [6242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3265), - [6244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3231), - [6246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3262), - [6248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3236), - [6250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3266), - [6252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3501), - [6254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7603), - [6256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1086), - [6258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), - [6260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), - [6262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1089), - [6264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1086), - [6266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), - [6268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), - [6270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1087), - [6272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), - [6274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), - [6276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), - [6278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), - [6280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5870), - [6282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2622), - [6284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_parens, 3, 0, 0), - [6286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4599), - [6288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_bracks, 4, 0, 0), - [6290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_parens, 4, 0, 0), - [6292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_bracks, 3, 0, 0), - [6294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), - [6296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(983), - [6298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), - [6300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), - [6302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(894), - [6304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), - [6306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(981), - [6308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), - [6310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), - [6312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), - [6314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), - [6316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), - [6318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), - [6320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), - [6322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), - [6324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6124), - [6326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), - [6328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1009), - [6330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), - [6332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), - [6334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1007), - [6336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), - [6338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1006), - [6340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), - [6342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), - [6344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), - [6346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), - [6348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), - [6350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), - [6352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), - [6354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), - [6356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_bracks, 2, 0, 0), - [6358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_parens, 2, 0, 0), - [6360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3545), - [6362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3480), - [6364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3499), - [6366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3492), - [6368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), - [6370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), - [6372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1091), - [6374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1077), - [6376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1084), - [6378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), - [6380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1119), - [6382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), - [6384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), - [6386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1124), - [6388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), - [6390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1084), - [6392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1125), - [6394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1128), - [6396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), - [6398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1130), - [6400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3514), - [6402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3554), - [6404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3522), - [6406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), - [6408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), - [6410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4572), - [6412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4446), - [6414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4448), - [6416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3671), - [6418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3494), - [6420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3510), - [6422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3498), - [6424] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__multiple_types_repeat2, 2, 0, 179), SHIFT_REPEAT(5867), - [6427] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__multiple_types_repeat2, 2, 0, 179), SHIFT_REPEAT(5676), - [6430] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__multiple_types_repeat2, 2, 0, 179), SHIFT_REPEAT(5679), - [6433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3515), - [6435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3598), - [6437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3529), - [6439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3426), - [6441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3483), - [6443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6109), - [6445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3440), - [6447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3471), - [6449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6077), - [6451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5905), - [6453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5907), - [6455] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__multiple_types_repeat1, 2, 0, 0), SHIFT_REPEAT(3477), - [6458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3379), - [6460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3405), - [6462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3539), - [6464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3524), - [6466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3590), - [6468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3473), - [6470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3442), - [6472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3487), - [6474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3479), - [6476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3485), - [6478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6400), - [6480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7645), - [6482] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__multiple_types_repeat2, 2, 0, 98), - [6484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3477), - [6486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7427), - [6488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3403), - [6490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3420), - [6492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3588), - [6494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3589), - [6496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3484), - [6498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3495), - [6500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3488), - [6502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3476), - [6504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3496), - [6506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7559), - [6508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7589), - [6510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3497), - [6512] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(3501), - [6515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3500), - [6517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3505), - [6519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3493), - [6521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3508), - [6523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3511), - [6525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3394), - [6527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3394), - [6529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5222), - [6531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5222), - [6533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3518), - [6535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3548), - [6537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3519), - [6539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3523), - [6541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5241), - [6543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5241), - [6545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3425), - [6547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3432), - [6549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3506), - [6551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3543), - [6553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3422), - [6555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3422), - [6557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3504), - [6559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3544), - [6561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3521), - [6563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3601), - [6565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3520), - [6567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3563), - [6569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3528), - [6571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3530), - [6573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3535), - [6575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3610), - [6577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3531), - [6579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3603), - [6581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4052), - [6583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3863), - [6585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), - [6587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6170), - [6589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), - [6591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4130), - [6593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4130), - [6595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3731), - [6597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3731), - [6599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3604), - [6601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3660), - [6603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3427), - [6605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3450), - [6607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3436), - [6609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3436), - [6611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5232), - [6613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5232), - [6615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3451), - [6617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3451), - [6619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3452), - [6621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3452), - [6623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3453), - [6625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3453), - [6627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5169), - [6629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5169), - [6631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7679), - [6633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7679), - [6635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6086), - [6637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3735), - [6639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3735), - [6641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(914), - [6643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), - [6645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), - [6647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(917), - [6649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), - [6651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), - [6653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), - [6655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), - [6657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(915), - [6659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), - [6661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), - [6663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), - [6665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), - [6667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(940), - [6669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), - [6671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), - [6673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(943), - [6675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), - [6677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), - [6679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), - [6681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), - [6683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), - [6685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(941), - [6687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), - [6689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), - [6691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), - [6693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), - [6695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), - [6697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), - [6699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), - [6701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3493), - [6703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3715), - [6705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3715), - [6707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7630), - [6709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7630), - [6711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2663), - [6713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3741), - [6715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3741), - [6717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3747), - [6719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3747), - [6721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7696), - [6723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7696), - [6725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7194), - [6727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3717), - [6729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3717), - [6731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7451), - [6733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7451), - [6735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3986), - [6737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3740), - [6739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3740), - [6741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7488), - [6743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7488), - [6745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2706), - [6747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3743), - [6749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3743), - [6751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), - [6753] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element, 2, 0, 0), - [6755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7550), - [6757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7550), - [6759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), - [6761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), - [6763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), - [6765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), - [6767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), - [6769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), - [6771] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element, 1, 0, 0), - [6773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109), - [6775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7415), - [6777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7415), - [6779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6760), - [6781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1101), - [6783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), - [6785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), - [6787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1104), - [6789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1101), - [6791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1108), - [6793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1104), - [6795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1102), - [6797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110), - [6799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1111), - [6801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), - [6803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), - [6805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), - [6807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1106), - [6809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1080), - [6811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), - [6813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1078), - [6815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1079), - [6817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), - [6819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), - [6821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), - [6823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), - [6825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), - [6827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1081), - [6829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), - [6831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1115), - [6833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), - [6835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), - [6837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), - [6839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7619), - [6841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7619), - [6843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7422), - [6845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7422), - [6847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6174), - [6849] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized, 2, 0, 0), - [6851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized, 1, 0, 0), - [6853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7753), - [6855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7753), - [6857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3998), - [6859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7694), - [6861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7694), - [6863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2627), - [6865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7426), - [6867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7426), - [6869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2724), - [6871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), - [6873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), - [6875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), - [6877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__predicate, 1, 0, 0), - [6879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1143), - [6881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1138), - [6883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1143), - [6885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1137), - [6887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), - [6889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), - [6891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1107), - [6893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1145), - [6895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1141), - [6897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1145), - [6899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1140), - [6901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6525), - [6903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3967), - [6905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3814), - [6907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3848), - [6909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3825), - [6911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3877), - [6913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3948), - [6915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3914), - [6917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4049), - [6919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3824), - [6921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3873), - [6923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3841), - [6925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), - [6927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4299), - [6929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3861), - [6931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3861), - [6933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3936), - [6935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3890), - [6937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3794), - [6939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3801), - [6941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3781), - [6943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3808), - [6945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3913), - [6947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4038), - [6949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4000), - [6951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4004), - [6953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4004), - [6955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4139), - [6957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4028), - [6959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4488), - [6961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3807), - [6963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3832), - [6965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3790), - [6967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3823), - [6969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3813), - [6971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3772), - [6973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3775), - [6975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3946), - [6977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3950), - [6979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), - [6981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4378), - [6983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3874), - [6985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3874), - [6987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3978), - [6989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3920), - [6991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3811), - [6993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3840), - [6995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4242), - [6997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4242), - [6999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3822), - [7001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3827), - [7003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3850), - [7005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3833), - [7007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3839), - [7009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4037), - [7011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4037), - [7013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4319), - [7015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4112), - [7017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3810), - [7019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3849), - [7021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3776), - [7023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3783), - [7025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4071), - [7027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4072), - [7029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4650), - [7031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4336), - [7033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4336), - [7035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3857), - [7037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3885), - [7039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3836), - [7041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3875), - [7043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3780), - [7045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3787), - [7047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4172), - [7049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4231), - [7051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4315), - [7053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3851), - [7055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3821), - [7057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3886), - [7059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3856), - [7061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3843), - [7063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3867), - [7065] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(3863), - [7068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6350), - [7070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), - [7072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4474), - [7074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3895), - [7076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3895), - [7078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4060), - [7080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3968), - [7082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3882), - [7084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3898), - [7086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3871), - [7088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3842), - [7090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3894), - [7092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5376), - [7094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4164), - [7096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4164), - [7098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4468), - [7100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4312), - [7102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4843), - [7104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5236), - [7106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5236), - [7108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3878), - [7110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3929), - [7112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3879), - [7114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3774), - [7116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3774), - [7118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3855), - [7120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3928), - [7122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3800), - [7124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3812), - [7126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4385), - [7128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4310), - [7130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4539), - [7132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4512), - [7134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4512), - [7136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5369), - [7138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5231), - [7140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5231), - [7142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3784), - [7144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3784), - [7146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3915), - [7148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3953), - [7150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3880), - [7152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3988), - [7154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3870), - [7156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3951), - [7158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3923), - [7160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3930), - [7162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4012), - [7164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3902), - [7166] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5376), - [7169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3838), - [7171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3846), - [7173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4530), - [7175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4535), - [7177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4585), - [7179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3918), - [7181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4061), - [7183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5343), - [7185] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__predicate, 3, 0, 82), - [7187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3773), - [7189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3777), - [7191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 1, 0, 62), - [7193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1157), - [7195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4952), - [7197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3404), - [7199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7333), - [7201] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 1, 0, 62), - [7203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4005), - [7205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4041), - [7207] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5369), - [7210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3958), - [7212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3965), - [7214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3906), - [7216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4039), - [7218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3954), - [7220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3789), - [7222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3789), - [7224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3973), - [7226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4062), - [7228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5217), - [7230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5217), - [7232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4003), - [7234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5254), - [7236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5254), - [7238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3785), - [7240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3785), - [7242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3786), - [7244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3786), - [7246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3778), - [7248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3778), - [7250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__predicate, 3, 0, 83), - [7252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4067), - [7254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3779), - [7256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3791), - [7258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5196), - [7260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5196), - [7262] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_list, 2, 0, 0), - [7264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_list, 2, 0, 0), - [7266] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_list, 3, 0, 0), - [7268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_list, 3, 0, 0), - [7270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3815), - [7272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3815), - [7274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4063), - [7276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4091), - [7278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4279), - [7280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5260), - [7282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5260), - [7284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3796), - [7286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3796), - [7288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3795), - [7290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3795), - [7292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3797), - [7294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3797), - [7296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4103), - [7298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4104), - [7300] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5343), - [7303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3980), - [7305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4203), - [7307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4042), - [7309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4079), - [7311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3788), - [7313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3809), - [7315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4561), - [7317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 1, 0, 59), - [7319] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 1, 0, 59), - [7321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4075), - [7323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4311), - [7325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5238), - [7327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5238), - [7329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, 0, 117), - [7331] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 3, 0, 117), - [7333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3854), - [7335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3854), - [7337] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate_lhs, 1, 0, 31), - [7339] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate_lhs, 1, 0, 31), - [7341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4209), - [7343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4524), - [7345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3804), - [7347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3804), - [7349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3805), - [7351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3805), - [7353] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate_lhs, 1, 0, 0), - [7355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate_lhs, 1, 0, 0), - [7357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4298), - [7359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4173), - [7361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4377), - [7363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3806), - [7365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3806), - [7367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5218), - [7369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5218), - [7371] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cmd_arg, 1, 0, 74), - [7373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, 0, 74), - [7375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4251), - [7377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 2, 0, 59), - [7379] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 2, 0, 59), - [7381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 2, 0, 117), - [7383] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 2, 0, 117), - [7385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 2, 0, 62), - [7387] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 2, 0, 62), - [7389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4608), - [7391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4872), - [7393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5216), - [7395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5216), - [7397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 190), - [7399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3693), - [7401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3694), - [7403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 191), - [7405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 6, 0, 226), - [7407] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 226), SHIFT(1941), - [7410] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 226), - [7412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3689), - [7414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3684), - [7416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3699), - [7418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 190), - [7420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 191), - [7422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3685), - [7424] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 191), SHIFT(1941), - [7427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_repeat1, 2, 0, 0), - [7429] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_repeat1, 2, 0, 0), SHIFT_REPEAT(1157), - [7432] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_repeat1, 2, 0, 0), SHIFT_REPEAT(3863), - [7435] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_repeat1, 2, 0, 0), SHIFT_REPEAT(3404), - [7438] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_parameter_repeat1, 2, 0, 0), - [7440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3714), - [7442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2769), - [7444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3690), - [7446] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 3, 0, 126), SHIFT(1941), - [7449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 3, 0, 126), - [7451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 126), - [7453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4210), - [7455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4472), - [7457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 2, 0, 32), - [7459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3691), - [7461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4371), - [7463] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 190), SHIFT(1941), - [7466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate, 3, 0, 126), - [7468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3695), - [7470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3818), - [7472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3835), - [7474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3762), - [7476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3753), - [7478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3766), - [7480] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate_lhs, 2, 0, 31), - [7482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate_lhs, 2, 0, 31), - [7484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4318), - [7486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4476), - [7488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3754), - [7490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 3, 0, 32), - [7492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3686), - [7494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3701), - [7496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 3, 0, 107), - [7498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3855), - [7500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 4, 0, 107), - [7502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7031), - [7504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(369), - [7506] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 1, 0, 3), - [7508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1205), - [7510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3831), - [7512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3831), - [7514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1188), - [7516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command, 2, 0, 32), - [7518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3752), - [7520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3820), - [7522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3820), - [7524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3757), - [7526] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cmd_arg, 1, 0, 80), - [7528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, 0, 80), - [7530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4348), - [7532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1275), - [7534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3830), - [7536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3830), - [7538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1307), - [7540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4347), - [7542] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate_lhs, 2, 0, 0), - [7544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate_lhs, 2, 0, 0), - [7546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3751), - [7548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3759), - [7550] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 3, 0, 73), - [7552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), - [7554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4638), - [7556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5251), - [7558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3329), - [7560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7389), - [7562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7270), - [7564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7490), - [7566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7513), - [7568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4393), - [7570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1267), - [7572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3761), - [7574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3767), - [7576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3760), - [7578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5227), - [7580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5227), - [7582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4473), - [7584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4777), - [7586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4478), - [7588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4313), - [7590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4723), - [7592] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pipeline, 2, 0, 0), SHIFT(1941), - [7595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipeline, 2, 0, 0), - [7597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3884), - [7599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3884), - [7601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3889), - [7603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3889), - [7605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6139), - [7607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3865), - [7609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3865), - [7611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3365), - [7613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), - [7615] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 3, 0, 0), - [7617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3880), - [7619] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(4638), - [7622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 2, 0, 0), - [7624] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(7389), - [7627] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(7270), - [7630] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(7490), - [7633] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_parameter_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(7513), - [7636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_value, 2, 0, 163), - [7638] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_value, 2, 0, 163), - [7640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3847), - [7642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3883), - [7644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3278), - [7646] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pipeline, 1, 0, 0), SHIFT(1941), - [7649] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipeline, 1, 0, 0), - [7651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6126), - [7653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3763), - [7655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1274), - [7657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1277), - [7659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6680), - [7661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3273), - [7663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), - [7665] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_value, 4, 0, 228), - [7667] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_value, 4, 0, 228), - [7669] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 2, 0, 36), - [7671] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 2, 0, 37), - [7673] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, 0, 81), - [7675] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 2, 0, 81), SHIFT_REPEAT(383), - [7678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6588), - [7680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_value, 3, 0, 201), - [7682] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_value, 3, 0, 201), - [7684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1264), - [7686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4428), - [7688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6204), - [7690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5575), - [7692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5575), - [7694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6524), - [7696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6435), - [7698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(35), - [7700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 2, 0, 81), - [7702] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 2, 0, 81), SHIFT_REPEAT(435), - [7705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1244), - [7707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7199), - [7709] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 187), SHIFT(1941), - [7712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 187), - [7714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), - [7716] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 4, 0, 57), SHIFT(1941), - [7719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 4, 0, 57), - [7721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), - [7723] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 2, 0, 24), SHIFT(1941), - [7726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 2, 0, 24), - [7728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5717), - [7730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(394), - [7732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), - [7734] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_parenthesized, 2, 0, 36), - [7736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 3, 0, 73), - [7738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), - [7740] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pipeline_parenthesized, 1, 0, 0), SHIFT(1941), - [7743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipeline_parenthesized, 1, 0, 0), - [7745] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pipeline_parenthesized, 2, 0, 0), SHIFT(1941), - [7748] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipeline_parenthesized, 2, 0, 0), - [7750] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_parenthesized, 2, 0, 37), - [7752] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cmd_arg, 1, 0, 75), - [7754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, 0, 75), - [7756] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cmd_arg, 1, 0, 76), - [7758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, 0, 76), - [7760] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, 0, 77), - [7762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 2, 0, 77), - [7764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1266), - [7766] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cmd_arg, 1, 0, 78), - [7768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, 0, 78), - [7770] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cmd_arg, 1, 0, 79), - [7772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, 0, 79), - [7774] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 4, 0, 153), SHIFT(1941), - [7777] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 4, 0, 153), - [7779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), - [7781] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 4, 0, 154), SHIFT(1941), - [7784] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 4, 0, 154), - [7786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), - [7788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_flat_type, 1, 0, 93), - [7790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4890), - [7792] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_flat_type, 1, 0, 93), - [7794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4669), - [7796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4837), - [7798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3275), - [7800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_type, 3, 0, 139), - [7802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2664), - [7804] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_type, 3, 0, 139), - [7806] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT(234), - [7809] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 153), SHIFT(1941), - [7812] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 153), - [7814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), - [7816] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 154), SHIFT(1941), - [7819] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 154), - [7821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), - [7823] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 187), SHIFT(1941), - [7826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 187), - [7828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), - [7830] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT(5645), - [7833] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 2, 0, 37), - [7835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4447), - [7837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4836), - [7839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4802), - [7841] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT(5707), - [7844] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 3, 0, 57), SHIFT(1941), - [7847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 3, 0, 57), - [7849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), - [7851] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 3, 0, 24), SHIFT(1941), - [7854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 3, 0, 24), - [7856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5607), - [7858] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 3, 0, 106), SHIFT(1941), - [7861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 3, 0, 106), - [7863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5646), - [7865] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT(243), - [7868] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_list, 4, 0, 0), - [7870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_list, 4, 0, 0), - [7872] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 4, 0, 106), SHIFT(1941), - [7875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 4, 0, 106), - [7877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5602), - [7879] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_parenthesized, 3, 0, 73), - [7881] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_repeat1, 2, 0, 81), SHIFT_REPEAT(394), - [7884] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__command_parenthesized_repeat1, 2, 0, 81), SHIFT_REPEAT(394), - [7887] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_repeat1, 2, 0, 81), - [7889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try, 2, 0, 24), - [7891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6452), - [7893] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT(276), - [7896] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_parenthesized, 1, 0, 3), - [7898] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT(245), - [7901] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_type, 2, 0, 94), - [7903] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_type, 2, 0, 94), - [7905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_type, 4, 0, 178), - [7907] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_type, 4, 0, 178), - [7909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 2, 0, 36), - [7911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6706), - [7913] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_redirection, 3, 0, 130), - [7915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_redirection, 3, 0, 130), - [7917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 1, 0, 3), - [7919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6484), - [7921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5160), - [7923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5566), - [7925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5431), - [7927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 5, 0, 205), - [7929] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 5, 0, 205), - [7931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if, 3, 0, 57), - [7933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), - [7935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), - [7937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if, 5, 0, 160), - [7939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if, 5, 0, 161), - [7941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ctrl_expression, 1, 0, 1), - [7943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 5, 0, 110), - [7945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5778), - [7947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6480), - [7949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5936), - [7951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ctrl_expression, 1, 0, 2), - [7953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 5, 0, 113), - [7955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3277), - [7957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 3, 0, 33), - [7959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 3, 0, 0), - [7961] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 3, 0, 0), - [7963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_type, 3, 0, 0), - [7965] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_type, 3, 0, 0), - [7967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6757), - [7969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5350), - [7971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5598), - [7973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5574), - [7975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6290), - [7977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5765), - [7979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5685), - [7981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), - [7983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 3, 0, 108), - [7985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_annotation, 1, 0, 95), - [7987] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_annotation, 1, 0, 95), - [7989] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_repeat1, 2, 0, 77), - [7991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__command_parenthesized_repeat1, 2, 0, 77), - [7993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 4, 0, 205), - [7995] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 4, 0, 205), - [7997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 4, 0, 207), - [7999] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 4, 0, 207), - [8001] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_type, 4, 0, 210), - [8003] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_type, 4, 0, 210), - [8005] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_type, 4, 0, 211), - [8007] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_type, 4, 0, 211), - [8009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 6, 0, 110), - [8011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6116), - [8013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 6, 0, 113), - [8015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try, 4, 0, 124), - [8017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_return, 2, 0, 0), - [8019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), - [8021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6078), - [8023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5195), - [8025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5195), - [8027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5563), - [8029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5300), - [8031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6127), - [8033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6136), - [8035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element, 3, 0, 0), - [8037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 4, 0, 110), - [8039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 7, 0, 110), - [8041] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_cmd, 2, 0, 13), - [8043] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_cmd, 2, 0, 13), - [8045] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 7, 0, 113), - [8047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__param_name, 1, 0, 58), - [8049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4830), - [8051] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__param_name, 1, 0, 58), - [8053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5278), - [8055] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 4, 0, 108), - [8057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 5, 0, 207), - [8059] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 5, 0, 207), - [8061] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 5, 0, 230), - [8063] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 5, 0, 230), - [8065] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 8, 0, 110), - [8067] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 8, 0, 113), - [8069] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 5, 0, 231), - [8071] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 5, 0, 231), - [8073] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 5, 0, 232), - [8075] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 5, 0, 232), - [8077] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 5, 0, 233), - [8079] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 5, 0, 233), - [8081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6959), - [8083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5063), - [8085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5063), - [8087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5346), - [8089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5162), - [8091] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_type, 5, 0, 234), - [8093] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_type, 5, 0, 234), - [8095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5356), - [8097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5359), - [8099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5571), - [8101] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 4, 0, 113), - [8103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4838), - [8105] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 2, 0, 33), - [8107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command, 2, 0, 33), - [8109] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ctrl_expression, 1, 0, 0), - [8111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), - [8113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element, 1, 0, 5), - [8115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6413), - [8117] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 6, 0, 247), - [8119] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 6, 0, 247), - [8121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 6, 0, 249), - [8123] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 6, 0, 249), - [8125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), - [8127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), - [8129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), - [8131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), - [8133] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT(256), - [8136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), - [8138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), - [8140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), - [8142] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT(264), - [8145] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT(266), - [8148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), - [8150] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT(272), - [8153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 6, 0, 230), - [8155] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 6, 0, 230), - [8157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 6, 0, 231), - [8159] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 6, 0, 231), - [8161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 6, 0, 251), - [8163] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 6, 0, 251), - [8165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 6, 0, 252), - [8167] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 6, 0, 252), - [8169] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 6, 0, 232), - [8171] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 6, 0, 232), - [8173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 6, 0, 233), - [8175] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 6, 0, 233), - [8177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), - [8179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 7, 0, 262), - [8181] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 7, 0, 262), - [8183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 7, 0, 247), - [8185] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 7, 0, 247), - [8187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 7, 0, 264), - [8189] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 7, 0, 264), - [8191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 7, 0, 249), - [8193] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 7, 0, 249), - [8195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 7, 0, 266), - [8197] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 7, 0, 266), - [8199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 7, 0, 267), - [8201] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 7, 0, 267), - [8203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 7, 0, 251), - [8205] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 7, 0, 251), - [8207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 7, 0, 252), - [8209] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 7, 0, 252), - [8211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 7, 0, 268), - [8213] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 7, 0, 268), - [8215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 7, 0, 269), - [8217] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 7, 0, 269), - [8219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 8, 0, 262), - [8221] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 8, 0, 262), - [8223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 8, 0, 264), - [8225] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 8, 0, 264), - [8227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 8, 0, 276), - [8229] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 8, 0, 276), - [8231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 8, 0, 266), - [8233] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 8, 0, 266), - [8235] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 8, 0, 277), - [8237] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 8, 0, 277), - [8239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 8, 0, 267), - [8241] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 8, 0, 267), - [8243] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 8, 0, 278), - [8245] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 8, 0, 278), - [8247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 8, 0, 279), - [8249] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 8, 0, 279), - [8251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 8, 0, 280), - [8253] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 8, 0, 280), - [8255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 8, 0, 268), - [8257] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 8, 0, 268), - [8259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 8, 0, 281), - [8261] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 8, 0, 281), - [8263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 8, 0, 269), - [8265] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 8, 0, 269), - [8267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 9, 0, 276), - [8269] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 9, 0, 276), - [8271] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 9, 0, 277), - [8273] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 9, 0, 277), - [8275] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 9, 0, 284), - [8277] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 9, 0, 284), - [8279] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 9, 0, 278), - [8281] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 9, 0, 278), - [8283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 9, 0, 285), - [8285] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 9, 0, 285), - [8287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 9, 0, 279), - [8289] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 9, 0, 279), - [8291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 9, 0, 280), - [8293] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 9, 0, 280), - [8295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 9, 0, 281), - [8297] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 9, 0, 281), - [8299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 10, 0, 284), - [8301] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 10, 0, 284), - [8303] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 10, 0, 285), - [8305] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 10, 0, 285), - [8307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3276), - [8309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_long_flag, 2, 0, 0), - [8311] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_long_flag, 2, 0, 0), - [8313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_rest, 3, 0, 162), - [8315] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_rest, 3, 0, 162), - [8317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6080), - [8319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), - [8321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4986), - [8323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5068), - [8325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4809), - [8327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5074), - [8329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_type, 4, 0, 177), - [8331] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_type, 4, 0, 177), - [8333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized, 2, 0, 54), - [8335] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 160), - [8337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 161), - [8339] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 5, 0, 188), - [8341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 5, 0, 189), - [8343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7314), - [8345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5441), - [8347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5945), - [8349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5661), - [8351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized, 3, 0, 0), - [8353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5996), - [8355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5996), - [8357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5586), - [8359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5586), - [8361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6485), - [8363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5886), - [8365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__param_name, 1, 0, 60), - [8367] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__param_name, 1, 0, 60), - [8369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_opt, 2, 0, 115), - [8371] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_opt, 2, 0, 115), - [8373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__param_name, 2, 0, 116), - [8375] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__param_name, 2, 0, 116), - [8377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_rest, 2, 0, 21), - [8379] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_rest, 2, 0, 21), - [8381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__param_name, 1, 0, 61), - [8383] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__param_name, 1, 0, 61), - [8385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_short_flag, 2, 0, 21), - [8387] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_short_flag, 2, 0, 21), - [8389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_repeat1, 1, 0, 0), - [8391] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_parameter_repeat1, 1, 0, 0), - [8393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__param_name, 1, 0, 63), - [8395] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__param_name, 1, 0, 63), - [8397] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5278), - [8400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7350), - [8402] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate_lhs, 3, 0, 31), - [8404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate_lhs, 3, 0, 31), - [8406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3189), - [8408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7517), - [8410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2566), - [8412] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate_lhs, 3, 0, 0), - [8414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate_lhs, 3, 0, 0), - [8416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6960), - [8418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6342), - [8420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2867), - [8422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2799), - [8424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_flag_capsule, 3, 0, 0), - [8426] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_flag_capsule, 3, 0, 0), - [8428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_type, 5, 0, 212), - [8430] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_type, 5, 0, 212), - [8432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6309), - [8434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5713), - [8436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5997), - [8438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_type, 3, 0, 138), - [8440] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_type, 3, 0, 138), - [8442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 218), - [8444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 219), - [8446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 220), - [8448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 221), - [8450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 222), - [8452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 223), - [8454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 6, 0, 224), - [8456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 6, 0, 225), - [8458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5556), - [8460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5570), - [8462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5695), - [8464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6469), - [8466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4598), - [8468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5712), - [8470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5712), - [8472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6125), - [8474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5817), - [8476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ctrl_expression_parenthesized, 1, 0, 1), - [8478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ctrl_expression_parenthesized, 1, 0, 2), - [8480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 4, 0, 124), - [8482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4904), - [8484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5152), - [8486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3145), - [8488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4983), - [8490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5125), - [8492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized, 1, 0, 5), - [8494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ctrl_expression_parenthesized, 1, 0, 0), - [8496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 237), - [8498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 238), - [8500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5919), - [8502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6942), - [8504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6548), - [8506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 239), - [8508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 240), - [8510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 241), - [8512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 242), - [8514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 243), - [8516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 244), - [8518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 7, 0, 245), - [8520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 7, 0, 246), - [8522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized, 1, 0, 20), - [8524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5857), - [8526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6553), - [8528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6121), - [8530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 253), - [8532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 254), - [8534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 255), - [8536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 256), - [8538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 257), - [8540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 258), - [8542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 259), - [8544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 260), - [8546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 8, 0, 261), - [8548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 9, 0, 270), - [8550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 9, 0, 271), - [8552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 9, 0, 272), - [8554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 9, 0, 273), - [8556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 9, 0, 274), - [8558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 9, 0, 275), - [8560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 10, 0, 282), - [8562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 10, 0, 283), - [8564] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_parameter_repeat2, 1, 0, 0), - [8566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), - [8568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), - [8570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), - [8572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), - [8574] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT(216), - [8577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), - [8579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), - [8581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), - [8583] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT(224), - [8586] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT(226), - [8589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), - [8591] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT(232), - [8594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5030), - [8596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5137), - [8598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7067), - [8600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4968), - [8602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5130), - [8604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), - [8606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_repeat2, 2, 0, 0), - [8608] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_repeat2, 2, 0, 0), SHIFT_REPEAT(5121), - [8611] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_parameter_repeat2, 2, 0, 0), - [8613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5397), - [8615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7438), - [8617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat1, 2, 0, 0), - [8619] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat1, 2, 0, 0), SHIFT_REPEAT(5259), - [8622] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat1, 2, 0, 0), SHIFT_REPEAT(5209), - [8625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5082), - [8627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_use, 4, 0, 67), - [8629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5259), - [8631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5209), - [8633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2636), - [8635] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_use, 4, 0, 125), - [8637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2641), - [8639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5070), - [8641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7721), - [8643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6202), - [8645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7232), - [8647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6964), - [8649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6341), - [8651] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 4, 0, 117), - [8653] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 4, 0, 117), - [8655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5149), - [8657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5250), - [8659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, 0, 62), - [8661] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 3, 0, 62), - [8663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4995), - [8665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5248), - [8667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5511), - [8669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5596), - [8671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5615), - [8673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5132), - [8675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5221), - [8677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, 0, 59), - [8679] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 3, 0, 59), - [8681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6277), - [8683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_use, 5, 0, 125), - [8685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2643), - [8687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5141), - [8689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6083), - [8691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), - [8693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5004), - [8695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5272), - [8697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5148), - [8699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5266), - [8701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_use, 3, 0, 67), - [8703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2631), - [8705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5034), - [8707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5264), - [8709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5396), - [8711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5267), - [8713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5428), - [8715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5683), - [8717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5689), - [8719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5863), - [8721] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(5251), - [8724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6654), - [8726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5683), - [8728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5689), - [8730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5113), - [8732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5425), - [8734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7009), - [8736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5057), - [8738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5424), - [8740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4699), - [8742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4953), - [8744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6425), - [8746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6426), - [8748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6715), - [8750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5342), - [8752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5281), - [8754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2645), - [8756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2794), - [8758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5365), - [8760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5350), - [8762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5598), - [8764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5574), - [8766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5919), - [8768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6942), - [8770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6548), - [8772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5160), - [8774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5566), - [8776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5431), - [8778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5778), - [8780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6480), - [8782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5936), - [8784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1986), - [8786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2309), - [8788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2152), - [8790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1506), - [8792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1656), - [8794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1566), - [8796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), - [8798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), - [8800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4060), - [8802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3968), - [8804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3480), - [8806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3499), - [8808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3492), - [8810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1875), - [8812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2106), - [8814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1984), - [8816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1381), - [8818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1361), - [8820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3514), - [8822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3554), - [8824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3522), - [8826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4468), - [8828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4312), - [8830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3130), - [8832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3211), - [8834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3200), - [8836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1596), - [8838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1548), - [8840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3232), - [8842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3269), - [8844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3242), - [8846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3075), - [8848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3201), - [8850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3171), - [8852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3913), - [8854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4038), - [8856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4000), - [8858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3814), - [8860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3848), - [8862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3825), - [8864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3217), - [8866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3246), - [8868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3233), - [8870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3494), - [8872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3510), - [8874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3498), - [8876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3877), - [8878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3948), - [8880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3914), - [8882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3515), - [8884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3598), - [8886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3529), - [8888] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5397), - [8891] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat1, 2, 0, 0), SHIFT_REPEAT(5342), - [8894] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat1, 2, 0, 0), SHIFT_REPEAT(5281), - [8897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5441), - [8899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5945), - [8901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5661), - [8903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5197), - [8905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5294), - [8907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(424), - [8909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(365), - [8911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7046), - [8913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6379), - [8915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(572), - [8917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(519), - [8919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4624), - [8921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4826), - [8923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6211), - [8925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6225), - [8927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5163), - [8929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5361), - [8931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6202), - [8933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7232), - [8935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6964), - [8937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5276), - [8939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1457), - [8941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1390), - [8943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5123), - [8945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5352), - [8947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6358), - [8949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3076), - [8951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2966), - [8953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1667), - [8955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1610), - [8957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2655), - [8959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2653), - [8961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2659), - [8963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5268), - [8965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5256), - [8967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1658), - [8969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1887), - [8971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1800), - [8973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3824), - [8975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3873), - [8977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3841), - [8979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5275), - [8981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5572), - [8983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5278), - [8985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5433), - [8987] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5396), - [8990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5279), - [8992] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5365), - [8995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5205), - [8997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5445), - [8999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6199), - [9001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4319), - [9003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4112), - [9005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5298), - [9007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5206), - [9009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5487), - [9011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5349), - [9013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5537), - [9015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5363), - [9017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5440), - [9019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6179), - [9021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5346), - [9023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5162), - [9025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1284), - [9027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5430), - [9029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3978), - [9031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3920), - [9033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6247), - [9035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4139), - [9037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4028), - [9039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3936), - [9041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3890), - [9043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6485), - [9045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5886), - [9047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6373), - [9049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2891), - [9051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3101), - [9053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3027), - [9055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4542), - [9057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4792), - [9059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6506), - [9061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6507), - [9063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6385), - [9065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), - [9067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), - [9069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), - [9071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2915), - [9073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2823), - [9075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), - [9077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), - [9079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6125), - [9081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5817), - [9083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6357), - [9085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6288), - [9087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6477), - [9089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6173), - [9091] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 2, 0, 209), SHIFT_REPEAT(7068), - [9094] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 2, 0, 209), SHIFT_REPEAT(6186), - [9097] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 2, 0, 209), SHIFT_REPEAT(5129), - [9100] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 2, 0, 209), SHIFT_REPEAT(7519), - [9103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6146), - [9105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6544), - [9107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5290), - [9109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1287), - [9111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6606), - [9113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6081), - [9115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5420), - [9117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5344), - [9119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5384), - [9121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5370), - [9123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5522), - [9125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1444), - [9127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3943), - [9129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5501), - [9131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1280), - [9133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5543), - [9135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5461), - [9137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 1, 0, 0), - [9139] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_parameter_parens_repeat1, 1, 0, 0), - [9141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6657), - [9143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6660), - [9145] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5279), - [9148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5502), - [9150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1288), - [9152] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_collection_type_repeat1, 4, 0, 248), - [9154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6014), - [9156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5541), - [9158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 4, 0, 248), - [9160] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_collection_type_repeat1, 4, 0, 250), - [9162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6029), - [9164] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 4, 0, 250), - [9166] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_collection_type_repeat1, 2, 0, 206), - [9168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6067), - [9170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 2, 0, 206), - [9172] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_collection_type_repeat1, 2, 0, 208), - [9174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6070), - [9176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 2, 0, 208), - [9178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5960), - [9180] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_collection_type_repeat1, 5, 0, 263), - [9182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5811), - [9184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 5, 0, 263), - [9186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5525), - [9188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5624), - [9190] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_collection_type_repeat1, 5, 0, 265), - [9192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5812), - [9194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 5, 0, 265), - [9196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5815), - [9198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5819), - [9200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5830), - [9202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5836), - [9204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4601), - [9206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4910), - [9208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6758), - [9210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6773), - [9212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6434), - [9214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6441), - [9216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5841), - [9218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5842), - [9220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5844), - [9222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6514), - [9224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6520), - [9226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6549), - [9228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6566), - [9230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5846), - [9232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5852), - [9234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6597), - [9236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6612), - [9238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6622), - [9240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6438), - [9242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5853), - [9244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6271), - [9246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6575), - [9248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6143), - [9250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6176), - [9252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6461), - [9254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6474), - [9256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6479), - [9258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6542), - [9260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6550), - [9262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6596), - [9264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6092), - [9266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6114), - [9268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6118), - [9270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6123), - [9272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5858), - [9274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5859), - [9276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5470), - [9278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1283), - [9280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5962), - [9282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5973), - [9284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5467), - [9286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5303), - [9288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5616), - [9290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6827), - [9292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6248), - [9294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2583), - [9296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2559), - [9298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7660), - [9300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4549), - [9302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1817), - [9304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4648), - [9306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6270), - [9308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6068), - [9310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6027), - [9312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7670), - [9314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5448), - [9316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5536), - [9318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5980), - [9320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5280), - [9322] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat1, 2, 0, 0), SHIFT_REPEAT(5765), - [9325] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat1, 2, 0, 0), SHIFT_REPEAT(5685), - [9328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6291), - [9330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1308), - [9332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1334), - [9334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7680), - [9336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6307), - [9338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1702), - [9340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1682), - [9342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7689), - [9344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3994), - [9346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5495), - [9348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4728), - [9350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6328), - [9352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2534), - [9354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2502), - [9356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7699), - [9358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4736), - [9360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4739), - [9362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4741), - [9364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3909), - [9366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6333), - [9368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), - [9370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1475), - [9372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7700), - [9374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4748), - [9376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4750), - [9378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4753), - [9380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6343), - [9382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1558), - [9384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1595), - [9386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7702), - [9388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4754), - [9390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6351), - [9392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2871), - [9394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2829), - [9396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7704), - [9398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6363), - [9400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1413), - [9402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1385), - [9404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7707), - [9406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4758), - [9408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6367), - [9410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7196), - [9412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7003), - [9414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7708), - [9416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4759), - [9418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6371), - [9420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2768), - [9422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2780), - [9424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7709), - [9426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4761), - [9428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6374), - [9430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2980), - [9432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2991), - [9434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7710), - [9436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6377), - [9438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), - [9440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(466), - [9442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7711), - [9444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6380), - [9446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), - [9448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(581), - [9450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7712), - [9452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6383), - [9454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2679), - [9456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2741), - [9458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7713), - [9460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6629), - [9462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2885), - [9464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2937), - [9466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7715), - [9468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5362), - [9470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5269), - [9472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6390), - [9474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), - [9476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(141), - [9478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7716), - [9480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6392), - [9482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), - [9484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(514), - [9486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7717), - [9488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6394), - [9490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), - [9492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(395), - [9494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7718), - [9496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6396), - [9498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), - [9500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(366), - [9502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7719), - [9504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4763), - [9506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4767), - [9508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4772), - [9510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4776), - [9512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4782), - [9514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4784), - [9516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4786), - [9518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4787), - [9520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5850), - [9522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5854), - [9524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4788), - [9526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4789), - [9528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4790), - [9530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6172), - [9532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408), - [9534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1389), - [9536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7621), - [9538] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__multiple_types_repeat1, 2, 0, 0), SHIFT_REPEAT(5541), - [9541] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat1, 2, 0, 0), SHIFT_REPEAT(5596), - [9544] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat1, 2, 0, 0), SHIFT_REPEAT(5615), - [9547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1286), - [9549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7303), - [9551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7306), - [9553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5569), - [9555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6072), - [9557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5243), - [9559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5243), - [9561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5343), - [9563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1285), - [9565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4829), - [9567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4829), - [9569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__variable_name, 1, 0, 11), - [9571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5224), - [9573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5224), - [9575] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(5713), - [9578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__variable_name, 1, 0, 9), - [9580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2638), - [9582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5937), - [9584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2444), - [9586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2639), - [9588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2632), - [9590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2763), - [9592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4891), - [9594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4891), - [9596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5069), - [9598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5994), - [9600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5990), - [9602] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat2, 2, 0, 0), SHIFT_REPEAT(5575), - [9605] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat2, 2, 0, 0), SHIFT_REPEAT(5575), - [9608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7011), - [9610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6950), - [9612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), - [9614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5632), - [9616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5035), - [9618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5147), - [9620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4862), - [9622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4979), - [9624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7284), - [9626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7286), - [9628] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat1, 2, 0, 0), SHIFT_REPEAT(5994), - [9631] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat1, 2, 0, 0), SHIFT_REPEAT(5990), - [9634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4582), - [9636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4582), - [9638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1282), - [9640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), - [9642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4985), - [9644] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat1, 1, 0, 0), - [9646] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat1, 1, 0, 0), - [9648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4818), - [9650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4988), - [9652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7546), - [9654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6807), - [9656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5158), - [9658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5158), - [9660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5642), - [9662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5909), - [9664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), - [9666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3945), - [9668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4795), - [9670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4920), - [9672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(104), - [9674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6472), - [9676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7136), - [9678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5763), - [9680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6269), - [9682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2992), - [9684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2962), - [9686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5174), - [9688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1553), - [9690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7734), - [9692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2718), - [9694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6196), - [9696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5991), - [9698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1252), - [9700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5176), - [9702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), - [9704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4703), - [9706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4732), - [9708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), - [9710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5874), - [9712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6466), - [9714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2530), - [9716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4928), - [9718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4928), - [9720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), - [9722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1247), - [9724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5977), - [9726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1782), - [9728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1785), - [9730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2807), - [9732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6824), - [9734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), - [9736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parenthesized_body, 3, 0, 0), - [9738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2820), - [9740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5633), - [9742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5583), - [9744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4160), - [9746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5902), - [9748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4192), - [9750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5555), - [9752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5437), - [9754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2791), - [9756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2786), - [9758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5885), - [9760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6526), - [9762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), - [9764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), - [9766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5136), - [9768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5153), - [9770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4822), - [9772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4822), - [9774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), - [9776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5273), - [9778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5273), - [9780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), - [9782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5000), - [9784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2118), - [9786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5003), - [9788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1627), - [9790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), - [9792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), - [9794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), - [9796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4879), - [9798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), - [9800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2078), - [9802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3272), - [9804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5948), - [9806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_register, 2, 0, 27), - [9808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1245), - [9810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5903), - [9812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5979), - [9814] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 2, 0, 72), SHIFT_REPEAT(104), - [9817] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 2, 0, 72), SHIFT_REPEAT(6472), - [9820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 2, 0, 72), - [9822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_register, 2, 0, 28), - [9824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parenthesized_body, 2, 0, 0), - [9826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3942), - [9828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2701), - [9830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1973), - [9832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2037), - [9834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5654), - [9836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6180), - [9838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4724), - [9840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2642), - [9842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5884), - [9844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2414), - [9846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2610), - [9848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2614), - [9850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2785), - [9852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4647), - [9854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2713), - [9856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1493), - [9858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_module, 3, 0, 42), - [9860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1513), - [9862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2618), - [9864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6020), - [9866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5277), - [9868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5277), - [9870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4922), - [9872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4922), - [9874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4923), - [9876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4923), - [9878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4924), - [9880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4924), - [9882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5491), - [9884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6978), - [9886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2624), - [9888] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_extern, 3, 0, 44), - [9890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4824), - [9892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4824), - [9894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2628), - [9896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5215), - [9898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5215), - [9900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4088), - [9902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4106), - [9904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5958), - [9906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6463), - [9908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4823), - [9910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4823), - [9912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5999), - [9914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1294), - [9916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4467), - [9918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_extern, 4, 0, 88), - [9920] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5360), - [9923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5439), - [9925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5609), - [9927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6249), - [9929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2483), - [9931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_module, 2, 0, 13), - [9933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4483), - [9935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2737), - [9937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2625), - [9939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4661), - [9941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4955), - [9943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2716), - [9945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2658), - [9947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6004), - [9949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2662), - [9951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6019), - [9953] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 2, 0, 0), REDUCE(sym_val_record, 2, 0, 0), - [9956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1902), - [9958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1909), - [9960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2668), - [9962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6064), - [9964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6497), - [9966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2648), - [9968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6504), - [9970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6617), - [9972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6621), - [9974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6079), - [9976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6112), - [9978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6213), - [9980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6231), - [9982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), - [9984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3413), - [9986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5387), - [9988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5953), - [9990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5957), - [9992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5275), - [9994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(101), - [9996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6711), - [9998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2113), - [10000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), - [10002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2147), - [10004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2529), - [10006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6294), - [10008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4716), - [10010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4706), - [10012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4707), - [10014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1367), - [10016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2081), - [10018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 1, 0, 0), - [10020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4645), - [10022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6120), - [10024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2652), - [10026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4751), - [10028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4752), - [10030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2623), - [10032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4755), - [10034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4756), - [10036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6567), - [10038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6953), - [10040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5036), - [10042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5036), - [10044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4460), - [10046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4764), - [10048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4765), - [10050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4482), - [10052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), - [10054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5208), - [10056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5208), - [10058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4930), - [10060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1901), - [10062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3292), - [10064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1908), - [10066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2959), - [10068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2955), - [10070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5255), - [10072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5255), - [10074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4702), - [10076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5894), - [10078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6948), - [10080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4727), - [10082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4994), - [10084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4994), - [10086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1781), - [10088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1784), - [10090] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_default_arm, 3, 0, 199), - [10092] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_arm, 3, 0, 199), - [10094] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 3, 0, 200), - [10096] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 3, 0, 200), - [10098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5762), - [10100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5579), - [10102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2700), - [10104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), - [10106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5554), - [10108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5436), - [10110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6975), - [10112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), - [10114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), - [10116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), - [10118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), - [10120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), - [10122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7132), - [10124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5527), - [10126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6403), - [10128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2667), - [10130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2669), - [10132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2712), - [10134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6536), - [10136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6034), - [10138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6060), - [10140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6071), - [10142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), - [10144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6073), - [10146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1304), - [10148] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5575), - [10151] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5575), - [10154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2482), - [10156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1257), - [10158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6498), - [10160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1298), - [10162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6519), - [10164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1263), - [10166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5113), - [10168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1295), - [10170] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 2, 0, 72), SHIFT_REPEAT(101), - [10173] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 2, 0, 72), SHIFT_REPEAT(6711), - [10176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 2, 0, 72), - [10178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), - [10180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6598), - [10182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6600), - [10184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5820), - [10186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5821), - [10188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1347), - [10190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1505), - [10192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3903), - [10194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6699), - [10196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3428), - [10198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6442), - [10200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4978), - [10202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5064), - [10204] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_body, 1, 0, 0), - [10206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3921), - [10208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3464), - [10210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6446), - [10212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4303), - [10214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4330), - [10216] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat1, 2, 0, 0), SHIFT_REPEAT(6828), - [10219] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_val_table_repeat1, 2, 0, 150), - [10221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4016), - [10223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3963), - [10225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3937), - [10227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4008), - [10229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3947), - [10231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3949), - [10233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3964), - [10235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4001), - [10237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6828), - [10239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 6, 0, 175), - [10241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4947), - [10243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1823), - [10245] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 6, 0, 176), - [10247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), - [10249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1828), - [10251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4343), - [10253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4326), - [10255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5177), - [10257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5181), - [10259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5183), - [10261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5184), - [10263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5187), - [10265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5188), - [10267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5190), - [10269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5191), - [10271] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_loop, 2, 0, 12), - [10273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1665), - [10275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3028), - [10277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3465), - [10279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6449), - [10281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2964), - [10283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3466), - [10285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6451), - [10287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_list, 4, 0, 144), - [10289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_list, 4, 0, 181), - [10291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6729), - [10293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7304), - [10295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_list, 4, 0, 182), - [10297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 4, 0, 99), - [10299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5083), - [10301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5083), - [10303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5084), - [10305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5084), - [10307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5092), - [10309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5092), - [10311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1440), - [10313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1479), - [10315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1456), - [10317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1458), - [10319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1463), - [10321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1464), - [10323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1470), - [10325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1447), - [10327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4271), - [10329] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5387), - [10332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1415), - [10334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3469), - [10336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5964), - [10338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2004), - [10340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1410), - [10342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5142), - [10344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_extern, 4, 0, 100), - [10346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3431), - [10348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5966), - [10350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1567), - [10352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5099), - [10354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2822), - [10356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2847), - [10358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2850), - [10360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2857), - [10362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2864), - [10364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2808), - [10366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2816), - [10368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2821), - [10370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5460), - [10372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_list, 2, 0, 0), - [10374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3876), - [10376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1787), - [10378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6151), - [10380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7325), - [10382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_use, 6, 0, 202), - [10384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_use, 6, 0, 203), - [10386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1790), - [10388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 5, 0, 143), - [10390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3927), - [10392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 7, 0, 204), - [10394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4218), - [10396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4229), - [10398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4243), - [10400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4253), - [10402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4274), - [10404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4276), - [10406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4281), - [10408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4285), - [10410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2413), - [10412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2220), - [10414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4076), - [10416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5127), - [10418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4084), - [10420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2727), - [10422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5219), - [10424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5219), - [10426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2006), - [10428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2798), - [10430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2775), - [10432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2767), - [10434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2774), - [10436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2758), - [10438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2760), - [10440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2765), - [10442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2773), - [10444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3860), - [10446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2563), - [10448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1568), - [10450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5684), - [10452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5684), - [10454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2598), - [10456] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat2, 2, 0, 0), SHIFT_REPEAT(7031), - [10459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_list, 5, 0, 181), - [10461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5040), - [10463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5044), - [10465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5046), - [10467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5047), - [10469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5050), - [10471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5051), - [10473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5053), - [10475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5054), - [10477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_list, 5, 0, 214), - [10479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5479), - [10481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5956), - [10483] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_list, 5, 0, 182), - [10485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5827), - [10487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__mutable_assignment_pattern, 3, 0, 82), - [10489] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_interpolated, 3, 0, 0), - [10491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_interpolated, 3, 0, 0), - [10493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3456), - [10495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4649), - [10497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2730), - [10499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3457), - [10501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4654), - [10503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5038), - [10505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5008), - [10507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5010), - [10509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5011), - [10511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5014), - [10513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5015), - [10515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5017), - [10517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5018), - [10519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3458), - [10521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4657), - [10523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1460), - [10525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1317), - [10527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1810), - [10529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1330), - [10531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3897), - [10533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3459), - [10535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4659), - [10537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(452), - [10539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(484), - [10541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(495), - [10543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(497), - [10545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(442), - [10547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(500), - [10549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(453), - [10551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(454), - [10553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_new, 3, 0, 69), - [10555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6074), - [10557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1636), - [10559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1644), - [10561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3437), - [10563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5952), - [10565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1816), - [10567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(413), - [10569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(417), - [10571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(419), - [10573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(420), - [10575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(423), - [10577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(425), - [10579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(428), - [10581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(437), - [10583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5986), - [10585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2750), - [10587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3178), - [10589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_source, 2, 0, 25), - [10591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3192), - [10593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6003), - [10595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5353), - [10597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2536), - [10599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_source, 2, 0, 26), - [10601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2543), - [10603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6006), - [10605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1310), - [10607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1435), - [10609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6008), - [10611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1438), - [10613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1183), - [10615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5288), - [10617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3070), - [10619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6024), - [10621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3081), - [10623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3445), - [10625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5856), - [10627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2607), - [10629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1560), - [10631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1564), - [10633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3446), - [10635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5860), - [10637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(381), - [10639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5410), - [10641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5422), - [10643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3905), - [10645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2873), - [10647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2875), - [10649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6041), - [10651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2590), - [10653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5199), - [10655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5201), - [10657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3447), - [10659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5864), - [10661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2845), - [10663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(731), - [10665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(734), - [10667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6048), - [10669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5056), - [10671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1392), - [10673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1409), - [10675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6065), - [10677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5019), - [10679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7209), - [10681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6649), - [10683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3448), - [10685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5872), - [10687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(137), - [10689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2753), - [10691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2789), - [10693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2800), - [10695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3033), - [10697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2953), - [10699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(356), - [10701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(461), - [10703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(463), - [10705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(443), - [10707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(554), - [10709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(596), - [10711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(336), - [10713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2680), - [10715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2682), - [10717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(402), - [10719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(664), - [10721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(666), - [10723] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list_with_expr, 4, 0, 0), - [10725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list_with_expr, 4, 0, 0), - [10727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2889), - [10729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(143), - [10731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(145), - [10733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(545), - [10735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(550), - [10737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(406), - [10739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(408), - [10741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(376), - [10743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(380), - [10745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5453), - [10747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5526), - [10749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3803), - [10751] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hide_env, 2, 0, 30), - [10753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1168), - [10755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3400), - [10757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_list, 2, 0, 0), - [10759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_alias, 5, 0, 135), - [10761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2007), - [10763] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list_with_expr, 3, 0, 0), - [10765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list_with_expr, 3, 0, 0), - [10767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1153), - [10769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5532), - [10771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1570), - [10773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6703), - [10775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5922), - [10777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5922), - [10779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 5, 0, 136), - [10781] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body_statement, 1, 0, 0), - [10783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_use, 7, 0, 229), - [10785] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list_with_expr, 3, 0, 104), - [10787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list_with_expr, 3, 0, 104), - [10789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration, 1, 0, 0), - [10791] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement, 1, 0, 0), - [10793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 1, 0, 4), - [10795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ctrl_statement, 1, 0, 0), - [10797] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_list, 3, 0, 144), - [10799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1268), - [10801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6646), - [10803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__stmt_hide, 1, 0, 0), - [10805] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__stmt_overlay, 1, 0, 0), - [10807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1196), - [10809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1190), - [10811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parenthesized_body, 4, 0, 0), - [10813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1619), - [10815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1238), - [10817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2011), - [10819] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_list, 6, 0, 214), - [10821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1428), - [10823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3454), - [10825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4612), - [10827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_const, 3, 0, 41), - [10829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3455), - [10831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4613), - [10833] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 1, 0, 0), - [10835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 1, 0, 0), - [10837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2012), - [10839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1432), - [10841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3443), - [10843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5955), - [10845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3460), - [10847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4737), - [10849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2074), - [10851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3461), - [10853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4738), - [10855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5442), - [10857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5517), - [10859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6938), - [10861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2612), - [10863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2617), - [10865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5564), - [10867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1514), - [10869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1529), - [10871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_extern, 5, 0, 137), - [10873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1546), - [10875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_module, 3, 0, 45), - [10877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1259), - [10879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_wild_card, 1, 0, 0), - [10881] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scope_pattern, 1, 0, 46), - [10883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1547), - [10885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1482), - [10887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1485), - [10889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_use, 3, 0, 47), - [10891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1487), - [10893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scope_pattern, 1, 0, 48), - [10895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scope_pattern, 1, 0, 49), - [10897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1488), - [10899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 5, 0, 159), - [10901] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__str_double_quotes_repeat1, 2, 0, 0), - [10903] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__str_double_quotes_repeat1, 2, 0, 0), SHIFT_REPEAT(6699), - [10906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1155), - [10908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), - [10910] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 1, 0, 34), - [10912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 1, 0, 34), - [10914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1265), - [10916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1321), - [10918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5573), - [10920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7041), - [10922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1271), - [10924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3798), - [10926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3938), - [10928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5454), - [10930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment_pattern, 4, 0, 140), - [10932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_hide, 3, 0, 68), - [10934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_error, 3, 0, 55), - [10936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3976), - [10938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_let, 2, 0, 10), - [10940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3467), - [10942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6523), - [10944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_while, 3, 0, 56), - [10946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2015), - [10948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4082), - [10950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_error, 4, 0, 109), - [10952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3462), - [10954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6232), - [10956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4064), - [10958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3463), - [10960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6244), - [10962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4085), - [10964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1557), - [10966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1587), - [10968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1626), - [10970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4087), - [10972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4099), - [10974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4065), - [10976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4043), - [10978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4045), - [10980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3468), - [10982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6535), - [10984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6955), - [10986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_mut, 2, 0, 10), - [10988] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_const, 2, 0, 10), - [10990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1377), - [10992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2647), - [10994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1979), - [10996] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_module, 4, 0, 89), - [10998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_export, 2, 0, 12), - [11000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1571), - [11002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_use, 4, 0, 90), - [11004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2615), - [11006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1184), - [11008] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list_with_expr, 4, 0, 104), - [11010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list_with_expr, 4, 0, 104), - [11012] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_alias, 4, 0, 91), - [11014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment_pattern, 3, 0, 92), - [11016] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_use, 5, 0, 166), - [11018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2687), - [11020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2714), - [11022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2739), - [11024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2740), - [11026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2686), - [11028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2689), - [11030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2708), - [11032] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_register, 3, 0, 64), - [11034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2709), - [11036] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_register, 3, 0, 65), - [11038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hide_mod, 3, 0, 29), - [11040] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hide_env, 3, 0, 66), - [11042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2886), - [11044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4769), - [11046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1515), - [11048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1519), - [11050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1524), - [11052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1541), - [11054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1516), - [11056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1481), - [11058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4783), - [11060] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(1367), - [11063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_pattern_repeat1, 2, 0, 0), - [11065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1486), - [11067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4785), - [11069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1270), - [11071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2952), - [11073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6806), - [11075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3013), - [11077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4102), - [11079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4027), - [11081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4022), - [11083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4025), - [11085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4078), - [11087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4089), - [11089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4093), - [11091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4026), - [11093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2683), - [11095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4974), - [11097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4480), - [11099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7641), - [11101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7259), - [11103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4544), - [11105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2751), - [11107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2672), - [11109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2696), - [11111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2704), - [11113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2738), - [11115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2744), - [11117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2684), - [11119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2693), - [11121] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__str_double_quotes_repeat1, 1, 0, 0), - [11123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__str_double_quotes_repeat1, 1, 0, 0), - [11125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern, 1, 0, 0), - [11127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6694), - [11129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4640), - [11131] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 1, 0, 0), - [11133] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 1, 0, 0), - [11135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4596), - [11137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3941), - [11139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4017), - [11141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3939), - [11143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3944), - [11145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3966), - [11147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4009), - [11149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4010), - [11151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3957), - [11153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3397), - [11155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7268), - [11157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern, 1, 0, 31), - [11159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1756), - [11161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4896), - [11163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1758), - [11165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5175), - [11167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5178), - [11169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5179), - [11171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5180), - [11173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5182), - [11175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5185), - [11177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5186), - [11179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5189), - [11181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2030), - [11183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7566), - [11185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3129), - [11187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3193), - [11189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1437), - [11191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1441), - [11193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1442), - [11195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1443), - [11197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1450), - [11199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1459), - [11201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1462), - [11203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6013), - [11205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1466), - [11207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2041), - [11209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3071), - [11211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6022), - [11213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1618), - [11215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3092), - [11217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6984), - [11219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2819), - [11221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2825), - [11223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2830), - [11225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2839), - [11227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2849), - [11229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2860), - [11231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2862), - [11233] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 1, 0, 34), - [11235] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 1, 0, 34), - [11237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2811), - [11239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_val_binary_repeat1, 1, 0, 70), - [11241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7346), - [11243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5793), - [11245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2013), - [11247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5757), - [11249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4191), - [11251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4219), - [11253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4220), - [11255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4223), - [11257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4234), - [11259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4255), - [11261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4256), - [11263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4277), - [11265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6432), - [11267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6884), - [11269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5512), - [11271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5560), - [11273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5443), - [11275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1624), - [11277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2782), - [11279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1625), - [11281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1552), - [11283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2801), - [11285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2802), - [11287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2754), - [11289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2764), - [11291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2783), - [11293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2755), - [11295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2501), - [11297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2761), - [11299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), - [11301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), - [11303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5151), - [11305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7649), - [11307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5041), - [11309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5042), - [11311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5043), - [11313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5045), - [11315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__mutable_assignment_pattern_parenthesized, 3, 0, 82), - [11317] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__all_type, 1, 0, 95), - [11319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__all_type, 1, 0, 95), - [11321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5048), - [11323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5049), - [11325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5052), - [11327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7377), - [11329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4032), - [11331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), - [11333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), - [11335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5002), - [11337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5005), - [11339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5006), - [11341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5007), - [11343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5009), - [11345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5012), - [11347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5013), - [11349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4577), - [11351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4584), - [11353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5016), - [11355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6254), - [11357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(499), - [11359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1586), - [11361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(469), - [11363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(470), - [11365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(483), - [11367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7037), - [11369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(487), - [11371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1593), - [11373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(440), - [11375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(441), - [11377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1550), - [11379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5706), - [11381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(451), - [11383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5813), - [11385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7061), - [11387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2005), - [11389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7673), - [11391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(411), - [11393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5816), - [11395] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 1, 0, 19), - [11397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(414), - [11399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(415), - [11401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(416), - [11403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(418), - [11405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(421), - [11407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(422), - [11409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(426), - [11411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6150), - [11413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6152), - [11415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5828), - [11417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5482), - [11419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5490), - [11421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5831), - [11423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5540), - [11425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5963), - [11427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1980), - [11429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1981), - [11431] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_val_table_repeat1, 2, 0, 151), SHIFT_REPEAT(859), - [11434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1982), - [11436] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 3, 0, 105), - [11438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_alias_parenthesized, 4, 0, 91), - [11440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment_pattern_parenthesized, 3, 0, 92), - [11442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1569), - [11444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1254), - [11446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7369), - [11448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5843), - [11450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5845), - [11452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6582), - [11454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6611), - [11456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5741), - [11458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6090), - [11460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6144), - [11462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4614), - [11464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6437), - [11466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6465), - [11468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6266), - [11470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1969), - [11472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6546), - [11474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5568), - [11476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6581), - [11478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5510), - [11480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5500), - [11482] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 3, 0, 105), - [11484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_const_parenthesized, 3, 0, 41), - [11486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2008), - [11488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5774), - [11490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2009), - [11492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_alias_parenthesized, 5, 0, 135), - [11494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7274), - [11496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7275), - [11498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4059), - [11500] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 2, 0, 51), - [11502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5569), - [11504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7267), - [11506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1249), - [11508] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 2, 0, 52), - [11510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5705), - [11512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment_pattern_parenthesized, 4, 0, 140), - [11514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body_statement_parenthesized, 1, 0, 0), - [11516] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 2, 0, 51), - [11518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1273), - [11520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5593), - [11522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5668), - [11524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6766), - [11526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1831), - [11528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5530), - [11530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_parenthesized, 1, 0, 0), - [11532] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 2, 0, 52), - [11534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1852), - [11536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3433), - [11538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5976), - [11540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3434), - [11542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5680), - [11544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_let_parenthesized, 2, 0, 10), - [11546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5687), - [11548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5987), - [11550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5993), - [11552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5728), - [11554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_mut_parenthesized, 2, 0, 10), - [11556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5995), - [11558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5734), - [11560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5755), - [11562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5761), - [11564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6005), - [11566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5782), - [11568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6010), - [11570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5788), - [11572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_const_parenthesized, 2, 0, 10), - [11574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6012), - [11576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5703), - [11578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5580), - [11580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement_parenthesized, 1, 0, 0), - [11582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6047), - [11584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5592), - [11586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5597), - [11588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_parenthesized, 1, 0, 4), - [11590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5608), - [11592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5614), - [11594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5625), - [11596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5630), - [11598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 2, 0, 0), - [11600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5640), - [11602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5643), - [11604] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(7259), - [11607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5650), - [11609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2481), - [11611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5652), - [11613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5657), - [11615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5659), - [11617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4747), - [11619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5665), - [11621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5667), - [11623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5671), - [11625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5673), - [11627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4749), - [11629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5675), - [11631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5677), - [11633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_val_binary_repeat1, 2, 0, 129), - [11635] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_val_binary_repeat1, 2, 0, 129), SHIFT_REPEAT(6806), - [11638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4565), - [11640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4760), - [11642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4762), - [11644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4726), - [11646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4766), - [11648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1511), - [11650] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__one_type, 3, 0, 180), - [11652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__one_type, 3, 0, 180), - [11654] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__unquoted_in_list_with_expr_repeat1, 2, 0, 0), SHIFT_REPEAT(7287), - [11657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1847), - [11659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1580), - [11661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1581), - [11663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(589), - [11665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(590), - [11667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1653), - [11669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4384), - [11671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4374), - [11673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1663), - [11675] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__unquoted_in_record_with_expr_repeat1, 2, 0, 0), SHIFT_REPEAT(7217), - [11678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4504), - [11680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4505), - [11682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1583), - [11684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), - [11686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7541), - [11688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1584), - [11690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6388), - [11692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5520), - [11694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6407), - [11696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6586), - [11698] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__flags_parenthesized, 2, 0, 0), - [11700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__flags_parenthesized, 2, 0, 0), - [11702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1291), - [11704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6421), - [11706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4832), - [11708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7724), - [11710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1843), - [11712] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_entry, 1, 0, 18), - [11714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_entry, 1, 0, 18), - [11716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6418), - [11718] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__unquoted_with_expr_repeat1, 2, 0, 0), SHIFT_REPEAT(7226), - [11721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1673), - [11723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4509), - [11725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4511), - [11727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2256), - [11729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2257), - [11731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1678), - [11733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4286), - [11735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4288), - [11737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4225), - [11739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4291), - [11741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(553), - [11743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(526), - [11745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6228), - [11747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(527), - [11749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(528), - [11751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7513), - [11753] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_env_var, 2, 0, 35), - [11755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_env_var, 2, 0, 35), - [11757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1844), - [11759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6467), - [11761] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat1, 1, 0, 0), - [11763] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat1, 1, 0, 0), - [11765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4363), - [11767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4364), - [11769] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_val_binary_repeat1, 2, 0, 127), - [11771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2268), - [11773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2269), - [11775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(586), - [11777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(588), - [11779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1846), - [11781] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_default_arm, 3, 10, 199), - [11783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_arm, 3, 10, 199), - [11785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1301), - [11787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6245), - [11789] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 3, 10, 200), - [11791] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 3, 10, 200), - [11793] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_entry, 1, 0, 17), - [11795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_entry, 1, 0, 17), - [11797] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multiple_types, 3, 0, 94), - [11799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), - [11801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), - [11803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6011), - [11805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), - [11807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4757), - [11809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3896), - [11811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), - [11813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4831), - [11815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7484), - [11817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5494), - [11819] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_returns, 1, 0, 98), - [11821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5060), - [11823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), - [11825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), - [11827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4412), - [11829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7335), - [11831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1399), - [11833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1424), - [11835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4722), - [11837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4262), - [11839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2621), - [11841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), - [11843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5475), - [11845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2077), - [11847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5625), - [11849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6635), - [11851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), - [11853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1791), - [11855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5797), - [11857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4235), - [11859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6882), - [11861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), - [11863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), - [11865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3435), - [11867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5630), - [11869] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__unquoted_with_expr_repeat1, 2, 0, 0), - [11871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5692), - [11873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6440), - [11875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2776), - [11877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3125), - [11879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_rest, 3, 0, 0), - [11881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2749), - [11883] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multiple_types, 6, 0, 235), - [11885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4403), - [11887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5544), - [11889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2950), - [11891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4435), - [11893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3163), - [11895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), - [11897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), - [11899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6743), - [11901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), - [11903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2525), - [11905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3022), - [11907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1436), - [11909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5514), - [11911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5055), - [11913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), - [11915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), - [11917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), - [11919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3969), - [11921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), - [11923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7653), - [11925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4662), - [11927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2469), - [11929] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__unquoted_in_record_with_expr_repeat1, 2, 0, 0), - [11931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), - [11933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7535), - [11935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5893), - [11937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1372), - [11939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2681), - [11941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4077), - [11943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1827), - [11945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5167), - [11947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4018), - [11949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4232), - [11951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2562), - [11953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5617), - [11955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), - [11957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4977), - [11959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2142), - [11961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4400), - [11963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), - [11965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4024), - [11967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), - [11969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2603), - [11971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), - [11973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), - [11975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), - [11977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2722), - [11979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), - [11981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4800), - [11983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3291), - [11985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), - [11987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2898), - [11989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), - [11991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5551), - [11993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1839), - [11995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1841), - [11997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7067), - [11999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1651), - [12001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5593), - [12003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), - [12005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2888), - [12007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4528), - [12009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), - [12011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7197), - [12013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1832), - [12015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), - [12017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4835), - [12019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5565), - [12021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2016), - [12023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7425), - [12025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), - [12027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7447), - [12029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3073), - [12031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3189), - [12033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), - [12035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), - [12037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4335), - [12039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5497), - [12041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2453), - [12043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1855), - [12045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1824), - [12047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), - [12049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4054), - [12051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2728), - [12053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3985), - [12055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5499), - [12057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7735), - [12059] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__record_key, 2, 0, 0), - [12061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1346), - [12063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1755), - [12065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5173), - [12067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7650), - [12069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1525), - [12071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(293), - [12073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4096), - [12075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3415), - [12077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6644), - [12079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2565), - [12081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7470), - [12083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), - [12085] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multiple_types, 5, 0, 139), - [12087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5110), - [12089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), - [12091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1631), - [12093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), - [12095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), - [12097] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multiple_types, 5, 0, 235), - [12099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4055), - [12101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7483), - [12103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2685), - [12105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5708), - [12107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1561), - [12109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3908), - [12111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3151), - [12113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), - [12115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4731), - [12117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5875), - [12119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7574), - [12121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4030), - [12123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6276), - [12125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4701), - [12127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multiple_types, 5, 0, 213), - [12129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4743), - [12131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4098), - [12133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2172), - [12135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4470), - [12137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5549), - [12139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7532), - [12141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4404), - [12143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2736), - [12145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2397), - [12147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_returns, 2, 0, 94), - [12149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3961), - [12151] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multiple_types, 2, 0, 0), - [12153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5504), - [12155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7682), - [12157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4693), - [12159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5668), - [12161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1161), - [12163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5809), - [12165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4999), - [12167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), - [12169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), - [12171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4097), - [12173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1724), - [12175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7381), - [12177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4615), - [12179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2732), - [12181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1687), - [12183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2547), - [12185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4304), - [12187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2626), - [12189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5965), - [12191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5072), - [12193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7770), - [12195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5411), - [12197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3845), - [12199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6961), - [12201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4573), - [12203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), - [12205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(297), - [12207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3438), - [12209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6453), - [12211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multiple_types, 4, 0, 94), - [12213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7466), - [12215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multiple_types, 4, 0, 139), - [12217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3925), - [12219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2136), - [12221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1630), - [12223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1714), - [12225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), - [12227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3001), - [12229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3003), - [12231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4015), - [12233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1196), - [12235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2874), - [12237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7554), - [12239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), - [12241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2538), - [12243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6722), - [12245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), - [12247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), - [12249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7615), - [12251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7428), - [12253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multiple_types, 4, 0, 213), - [12255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2863), - [12257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6256), - [12259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3023), - [12261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6748), - [12263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6167), - [12265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7667), - [12267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), - [12269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2994), - [12271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7775), - [12273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4876), - [12275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), - [12277] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__unquoted_in_list_with_expr_repeat1, 2, 0, 0), - [12279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7723), - [12281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5172), - [12283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1309), - [12285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5730), - [12287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1426), - [12289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2644), - [12291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5200), - [12293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6746), - [12295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4742), - [12297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7424), - [12299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7663), - [12301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7444), - [12303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7520), - [12305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7573), - [12307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7636), - [12309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7659), - [12311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7695), - [12313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7385), - [12315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7400), - [12317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7410), - [12319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7423), - [12321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7433), - [12323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7441), - [12325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7449), - [12327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7465), - [12329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7480), - [12331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7506), - [12333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7512), - [12335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7518), - [12337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7524), - [12339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7533), - [12341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2121), - [12343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2023), - [12345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1632), - [12347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4805), - [12349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), - [12351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5697), - [12353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3970), - [12355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2139), - [12357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3971), - [12359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2146), - [12361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1166), - [12363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2449), - [12365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1429), - [12367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3065), - [12369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_guard, 2, 0, 0), - [12371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nu_script, 2, 0, 0), - [12373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1495), - [12375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), - [12377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5518), - [12379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3892), - [12381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4639), - [12383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4796), - [12385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1542), - [12387] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [12389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), - [12391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2100), - [12393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3952), - [12395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1814), - [12397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4537), - [12399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2988), - [12401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), - [12403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5790), - [12405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2141), - [12407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7366), - [12409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4056), - [12411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5578), - [12413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7733), - [12415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1718), - [12417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1719), - [12419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1603), - [12421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), - [12423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4421), - [12425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1788), - [12427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4768), - [12429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1857), - [12431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comment, 2, 0, 0), + [2757] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_do_parenthesized, 4, 0, 0), SHIFT(2904), + [2760] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_do_parenthesized, 4, 0, 0), + [2762] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_do_parenthesized, 5, 0, 0), SHIFT(2904), + [2765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_do_parenthesized, 5, 0, 0), + [2767] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(2904), + [2770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), + [2772] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(850), + [2775] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(46), + [2778] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(6332), + [2781] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1611), + [2784] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1609), + [2787] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(16), + [2790] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(5093), + [2793] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(5097), + [2796] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1598), + [2799] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1605), + [2802] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1241), + [2805] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1241), + [2808] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1327), + [2811] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1300), + [2814] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1750), + [2817] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1704), + [2820] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1648), + [2823] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(7774), + [2826] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1604), + [2829] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(6201), + [2832] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1786), + [2835] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(5923), + [2838] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(5619), + [2841] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(7251), + [2844] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(7251), + [2847] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1643), + [2850] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(7634), + [2853] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 3, 0, 0), + [2855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 3, 0, 0), + [2857] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_do_parenthesized, 3, 0, 0), SHIFT(2904), + [2860] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_do_parenthesized, 3, 0, 0), + [2862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(771), + [2864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), + [2866] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(844), + [2869] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(55), + [2872] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(6076), + [2875] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1675), + [2878] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1641), + [2881] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(11), + [2884] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(5133), + [2887] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(5144), + [2890] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1698), + [2893] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1701), + [2896] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1255), + [2899] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1255), + [2902] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1342), + [2905] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1326), + [2908] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1944), + [2911] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1805), + [2914] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1765), + [2917] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(7522), + [2920] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1669), + [2923] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(6111), + [2926] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1945), + [2929] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(5906), + [2932] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(5798), + [2935] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1710), + [2938] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(7595), + [2941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), + [2943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), + [2945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6076), + [2947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1675), + [2949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1641), + [2951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), + [2953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5133), + [2955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5144), + [2957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1698), + [2959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1701), + [2961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1255), + [2963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1255), + [2965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1342), + [2967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1326), + [2969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1944), + [2971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1805), + [2973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1765), + [2975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7522), + [2977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1669), + [2979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6111), + [2981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1945), + [2983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5906), + [2985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5798), + [2987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1710), + [2989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7595), + [2991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(798), + [2993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), + [2995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(792), + [2997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), + [2999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), + [3001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), + [3003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(796), + [3005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), + [3007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), + [3009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), + [3011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), + [3013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), + [3015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), + [3017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(801), + [3019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), + [3021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), + [3023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), + [3025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7755), + [3027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7755), + [3029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4506), + [3031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1359), + [3033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1387), + [3035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(869), + [3037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), + [3039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), + [3041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), + [3043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), + [3045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(826), + [3047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), + [3049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7386), + [3051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7386), + [3053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4778), + [3055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1477), + [3057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1509), + [3059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(868), + [3061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), + [3063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), + [3065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7479), + [3067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7479), + [3069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4532), + [3071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(866), + [3073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), + [3075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(871), + [3077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), + [3079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), + [3081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), + [3083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(879), + [3085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), + [3087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), + [3089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), + [3091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5670), + [3093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), + [3095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6179), + [3097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), + [3099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5122), + [3101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5128), + [3103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6093), + [3105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6210), + [3107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4900), + [3109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4900), + [3111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5124), + [3113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5026), + [3115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7071), + [3117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7014), + [3119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6411), + [3121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7561), + [3123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6108), + [3125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6186), + [3127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5129), + [3129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7047), + [3131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7519), + [3133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4031), + [3135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), + [3137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5855), + [3139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5567), + [3141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1491), + [3143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4100), + [3145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5449), + [3147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2711), + [3149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3974), + [3151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5170), + [3153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1422), + [3155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4283), + [3157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5078), + [3159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4997), + [3161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2026), + [3163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), + [3165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), + [3167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(893), + [3169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), + [3171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3962), + [3173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1652), + [3175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5848), + [3177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7507), + [3179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7507), + [3181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4437), + [3183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7402), + [3185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7402), + [3187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4590), + [3189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7769), + [3191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7769), + [3193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4547), + [3195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2824), + [3197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2921), + [3199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5101), + [3201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5104), + [3203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3252), + [3205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3253), + [3207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2934), + [3209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2934), + [3211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3074), + [3213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2999), + [3215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3267), + [3217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3251), + [3219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1893), + [3221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5085), + [3223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5091), + [3225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2091), + [3227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2122), + [3229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1474), + [3231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1474), + [3233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1597), + [3235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1536), + [3237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2298), + [3239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2096), + [3241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5090), + [3243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5094), + [3245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3534), + [3247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3532), + [3249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3421), + [3251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3421), + [3253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3478), + [3255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3439), + [3257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3567), + [3259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3542), + [3261] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(843), + [3264] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(53), + [3267] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(6179), + [3270] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(6), + [3273] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(5122), + [3276] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(90), + [3279] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(5128), + [3282] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(6093), + [3285] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(6210), + [3288] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(7391), + [3291] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(4900), + [3294] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(4900), + [3297] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(5124), + [3300] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(5026), + [3303] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(7071), + [3306] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(7014), + [3309] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(6411), + [3312] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(7561), + [3315] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(6108), + [3318] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(6186), + [3321] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(5129), + [3324] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(5941), + [3327] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(5745), + [3330] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(838), + [3333] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(7345), + [3336] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(7345), + [3339] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(7047), + [3342] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(7519), + [3345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2904), + [3347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5150), + [3349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5081), + [3351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2176), + [3353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2281), + [3355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1528), + [3357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1528), + [3359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1662), + [3361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1608), + [3363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2422), + [3365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2218), + [3367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2222), + [3369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5096), + [3371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5100), + [3373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3256), + [3375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3268), + [3377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3024), + [3379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3024), + [3381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3143), + [3383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3084), + [3385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3274), + [3387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3261), + [3389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5105), + [3391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5107), + [3393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3630), + [3395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3672), + [3397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3441), + [3399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3441), + [3401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3490), + [3403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3475), + [3405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3705), + [3407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3670), + [3409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_return, 1, 0, 0), + [3411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4870), + [3413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2145), + [3415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1229), + [3417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7348), + [3419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2088), + [3421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2153), + [3423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2948), + [3425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2948), + [3427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2900), + [3429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2861), + [3431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188), + [3433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1205), + [3435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4807), + [3437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2103), + [3439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1236), + [3441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7230), + [3443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2485), + [3445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2557), + [3447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2148), + [3449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6525), + [3451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5103), + [3453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5028), + [3455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5106), + [3457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4011), + [3459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3982), + [3461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3782), + [3463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3782), + [3465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3819), + [3467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3793), + [3469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4021), + [3471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4002), + [3473] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat1, 2, 0, 0), + [3475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1152), + [3477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1152), + [3479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat1, 2, 0, 0), + [3481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6400), + [3483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5156), + [3485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4989), + [3487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5102), + [3489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4107), + [3491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4057), + [3493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3792), + [3495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3792), + [3497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3829), + [3499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3817), + [3501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4295), + [3503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4035), + [3505] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat2, 2, 0, 0), + [3507] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat2, 2, 0, 0), SHIFT_REPEAT(1152), + [3510] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat2, 2, 0, 0), SHIFT_REPEAT(1152), + [3513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat2, 2, 0, 0), + [3515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2151), + [3517] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipe_element_repeat2, 2, 0, 0), + [3519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1158), + [3521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_element_repeat2, 2, 0, 0), + [3523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2150), + [3525] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipe_element_repeat1, 2, 0, 0), + [3527] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_element_repeat1, 2, 0, 0), SHIFT_REPEAT(1158), + [3530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_element_repeat1, 2, 0, 0), + [3532] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(7398), + [3535] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(1160), + [3538] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipe_element_repeat2, 2, 0, 0), SHIFT_REPEAT(7398), + [3541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat2, 1, 0, 0), + [3543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3175), + [3545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1211), + [3547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6570), + [3549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), + [3551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4631), + [3553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6674), + [3555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5077), + [3557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5079), + [3559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6454), + [3561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6272), + [3563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5037), + [3565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5037), + [3567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5262), + [3569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5039), + [3571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6106), + [3573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6433), + [3575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1176), + [3577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), + [3579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4825), + [3581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1167), + [3583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1195), + [3585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3097), + [3587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), + [3589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), + [3591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6350), + [3593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), + [3595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5089), + [3597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5095), + [3599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4519), + [3601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4398), + [3603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3844), + [3605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3844), + [3607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3924), + [3609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3893), + [3611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4672), + [3613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4679), + [3615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4520), + [3617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7583), + [3619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4397), + [3621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6226), + [3623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4074), + [3625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5917), + [3627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5603), + [3629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7354), + [3631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7354), + [3633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4682), + [3635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7647), + [3637] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipe_element_repeat1, 1, 0, 0), + [3639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_element_repeat1, 1, 0, 0), + [3641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1180), + [3643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1203), + [3645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4668), + [3647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1159), + [3649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1201), + [3651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1154), + [3653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1187), + [3655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4827), + [3657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1178), + [3659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1197), + [3661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1194), + [3663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1212), + [3665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1171), + [3667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1217), + [3669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1192), + [3671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1181), + [3673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1204), + [3675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1198), + [3677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1230), + [3679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), + [3681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), + [3683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), + [3685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5087), + [3687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5088), + [3689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), + [3691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), + [3693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(318), + [3695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), + [3697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), + [3699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), + [3701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), + [3703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), + [3705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(594), + [3707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7671), + [3709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), + [3711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6386), + [3713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), + [3715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5946), + [3717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5662), + [3719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(556), + [3721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7714), + [3723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5115), + [3725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5117), + [3727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6578), + [3729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6589), + [3731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5033), + [3733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5033), + [3735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5270), + [3737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5154), + [3739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6849), + [3741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6457), + [3743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6949), + [3745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), + [3747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), + [3749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6376), + [3751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), + [3753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5114), + [3755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5118), + [3757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), + [3759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), + [3761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(329), + [3763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), + [3765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), + [3767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), + [3769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), + [3771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), + [3773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(624), + [3775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7661), + [3777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), + [3779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6359), + [3781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), + [3783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5942), + [3785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5655), + [3787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(672), + [3789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7706), + [3791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1215), + [3793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1209), + [3795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1231), + [3797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1336), + [3799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1337), + [3801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1341), + [3803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1325), + [3805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1331), + [3807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1332), + [3809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1232), + [3811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1941), + [3813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), + [3815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7064), + [3817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), + [3819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6342), + [3821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), + [3823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4971), + [3825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5140), + [3827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3053), + [3829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3086), + [3831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2586), + [3833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2586), + [3835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2674), + [3837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2660), + [3839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3144), + [3841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3058), + [3843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3056), + [3845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7609), + [3847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3047), + [3849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6322), + [3851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3154), + [3853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3167), + [3855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7698), + [3857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), + [3859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), + [3861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6109), + [3863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), + [3865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5112), + [3867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5131), + [3869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7229), + [3871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7296), + [3873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5204), + [3875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5204), + [3877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5496), + [3879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5301), + [3881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7302), + [3883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7261), + [3885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3164), + [3887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4901), + [3889] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(1211), + [3892] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(49), + [3895] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(6570), + [3898] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(200), + [3901] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(6674), + [3904] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(5077), + [3907] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(5079), + [3910] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(6454), + [3913] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(6272), + [3916] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(5037), + [3919] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(5037), + [3922] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(5262), + [3925] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(5039), + [3928] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(1703), + [3931] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(6106), + [3934] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(1932), + [3937] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(7464), + [3940] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(6433), + [3943] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(6464), + [3946] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(1420), + [3949] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(7251), + [3952] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(7251), + [3955] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(1893), + [3958] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(7540), + [3961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1358), + [3963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1362), + [3965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1405), + [3967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1395), + [3969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), + [3971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1589), + [3973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1333), + [3975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1333), + [3977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1381), + [3979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1361), + [3981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), + [3983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1634), + [3985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1355), + [3987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1355), + [3989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457), + [3991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1390), + [3993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5367), + [3995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6290), + [3997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), + [3999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1427), + [4001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1427), + [4003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1596), + [4005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1548), + [4007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1733), + [4009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1397), + [4011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1397), + [4013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1526), + [4015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1471), + [4017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1242), + [4019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1324), + [4021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1272), + [4023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1322), + [4025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), + [4027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7771), + [4029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), + [4031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5801), + [4033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5803), + [4035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4331), + [4037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4351), + [4039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3828), + [4041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3888), + [4043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3862), + [4045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4797), + [4047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4540), + [4049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4379), + [4051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6527), + [4053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3997), + [4055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5878), + [4057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5721), + [4059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), + [4061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7378), + [4063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6327), + [4065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), + [4067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5749), + [4069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5751), + [4071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5628), + [4073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5737), + [4075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4972), + [4077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4972), + [4079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5126), + [4081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5027), + [4083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5992), + [4085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5629), + [4087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5847), + [4089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7509), + [4091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6080), + [4093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5771), + [4095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5772), + [4097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1794), + [4099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1799), + [4101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1320), + [4103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), + [4105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1393), + [4107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1354), + [4109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1815), + [4111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1793), + [4113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1849), + [4115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6337), + [4117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4810), + [4119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4810), + [4121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5155), + [4123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5021), + [4125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5954), + [4127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1833), + [4129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1448), + [4131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1448), + [4133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1629), + [4135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1533), + [4137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7434), + [4139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5669), + [4141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5672), + [4143] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5367), + [4146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), + [4148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1512), + [4150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1512), + [4152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1667), + [4154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1610), + [4156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1305), + [4158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1356), + [4160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6200), + [4162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6613), + [4164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4998), + [4166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4998), + [4168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5245), + [4170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5073), + [4172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6468), + [4174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6599), + [4176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1318), + [4178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1374), + [4180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1261), + [4182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1371), + [4184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), + [4186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7500), + [4188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), + [4190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5588), + [4192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5589), + [4194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6885), + [4196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6652), + [4198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5065), + [4200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5065), + [4202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5421), + [4204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5261), + [4206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4441), + [4208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7072), + [4210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6799), + [4212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6082), + [4214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3922), + [4216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5897), + [4218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5766), + [4220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), + [4222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7677), + [4224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6321), + [4226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), + [4228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5723), + [4230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5724), + [4232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2945), + [4234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2890), + [4236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2338), + [4238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2338), + [4240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2575), + [4242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2533), + [4244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3026), + [4246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2932), + [4248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2908), + [4250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7556), + [4252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2936), + [4254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6142), + [4256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3030), + [4258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5912), + [4260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5587), + [4262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2949), + [4264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7608), + [4266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1323), + [4268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4198), + [4270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4128), + [4272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3802), + [4274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3858), + [4276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3834), + [4278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4332), + [4280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4132), + [4282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7741), + [4284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5604), + [4286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5605), + [4288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1655), + [4290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1650), + [4292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1262), + [4294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1262), + [4296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1364), + [4298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), + [4300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1689), + [4302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1691), + [4304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1705), + [4306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), + [4308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7421), + [4310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6362), + [4312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), + [4314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5620), + [4316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5621), + [4318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5505), + [4320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5542), + [4322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4465), + [4324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4465), + [4326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4834), + [4328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4570), + [4330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5744), + [4332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5562), + [4334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5559), + [4336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7635), + [4338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5523), + [4340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6347), + [4342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5406), + [4344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5932), + [4346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5635), + [4348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5618), + [4350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7703), + [4352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), + [4354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7594), + [4356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6366), + [4358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), + [4360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5636), + [4362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5637), + [4364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5347), + [4366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5423), + [4368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4321), + [4370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4321), + [4372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4695), + [4374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4466), + [4376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5531), + [4378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5408), + [4380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5351), + [4382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7648), + [4384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5291), + [4386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6355), + [4388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5198), + [4390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5939), + [4392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5647), + [4394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5534), + [4396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7705), + [4398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1218), + [4400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7129), + [4402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4868), + [4404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1555), + [4406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1555), + [4408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1806), + [4410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1700), + [4412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), + [4414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1234), + [4416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1243), + [4418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1556), + [4420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1562), + [4422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1690), + [4424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3123), + [4426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4903), + [4428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1311), + [4430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), + [4432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5385), + [4434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1348), + [4436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1642), + [4438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1642), + [4440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1876), + [4442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1795), + [4444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1370), + [4446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1384), + [4448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1344), + [4450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1315), + [4452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1375), + [4454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5419), + [4456] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 197), SHIFT_REPEAT(1218), + [4459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 197), + [4461] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 197), SHIFT_REPEAT(47), + [4464] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 197), SHIFT_REPEAT(6342), + [4467] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 197), SHIFT_REPEAT(198), + [4470] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 197), SHIFT_REPEAT(5120), + [4473] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 197), SHIFT_REPEAT(5140), + [4476] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 197), SHIFT_REPEAT(3053), + [4479] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 197), SHIFT_REPEAT(3086), + [4482] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 197), SHIFT_REPEAT(2586), + [4485] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 197), SHIFT_REPEAT(2586), + [4488] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 197), SHIFT_REPEAT(2674), + [4491] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 197), SHIFT_REPEAT(2660), + [4494] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 197), SHIFT_REPEAT(3144), + [4497] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 197), SHIFT_REPEAT(3058), + [4500] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 197), SHIFT_REPEAT(3056), + [4503] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 197), SHIFT_REPEAT(7609), + [4506] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 197), SHIFT_REPEAT(3047), + [4509] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 197), SHIFT_REPEAT(6322), + [4512] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 197), SHIFT_REPEAT(3154), + [4515] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 197), SHIFT_REPEAT(7345), + [4518] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 197), SHIFT_REPEAT(7345), + [4521] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 197), SHIFT_REPEAT(3167), + [4524] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 197), SHIFT_REPEAT(7698), + [4527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1340), + [4529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1416), + [4531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1368), + [4533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1369), + [4535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1237), + [4537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1253), + [4539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1657), + [4541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1686), + [4543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1712), + [4545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1352), + [4547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1383), + [4549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5377), + [4551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), + [4553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2031), + [4555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1506), + [4557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1656), + [4559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1566), + [4561] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5385), + [4564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2080), + [4566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1394), + [4568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1366), + [4570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1465), + [4572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5432), + [4574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2155), + [4576] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5419), + [4579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1404), + [4581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1467), + [4583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5075), + [4585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5076), + [4587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6671), + [4589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6732), + [4591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5134), + [4593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5134), + [4595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5293), + [4597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5159), + [4599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7198), + [4601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6695), + [4603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), + [4605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5558), + [4607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5720), + [4609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1635), + [4611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1646), + [4613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1783), + [4615] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5377), + [4618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1875), + [4620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2106), + [4622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1984), + [4624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5226), + [4626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5226), + [4628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1473), + [4630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1964), + [4632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1451), + [4634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1452), + [4636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1796), + [4638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1797), + [4640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1850), + [4642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1412), + [4644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1540), + [4646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1239), + [4648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1239), + [4650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1419), + [4652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1468), + [4654] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5432), + [4657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6140), + [4659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), + [4661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2301), + [4663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1658), + [4665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1887), + [4667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1800), + [4669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1476), + [4671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1543), + [4673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5381), + [4675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1499), + [4677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1612), + [4679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1538), + [4681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1600), + [4683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1472), + [4685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1549), + [4687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5263), + [4689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5263), + [4691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1518), + [4693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1534), + [4695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1423), + [4697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1607), + [4699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1489), + [4701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1186), + [4703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1986), + [4705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2309), + [4707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2152), + [4709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1260), + [4711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1260), + [4713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1527), + [4715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1572), + [4717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1425), + [4719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1559), + [4721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1483), + [4723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1545), + [4725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2526), + [4727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2520), + [4729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2274), + [4731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5368), + [4733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(173), + [4735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), + [4737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1478), + [4739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500), + [4741] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5381), + [4744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1577), + [4746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1661), + [4748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1613), + [4750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1240), + [4752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1299), + [4754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1498), + [4756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1649), + [4758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 1, 0, 0), + [4760] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 1, 0, 0), + [4762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1535), + [4764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1679), + [4766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(165), + [4768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), + [4770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1306), + [4772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1306), + [4774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1290), + [4776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1290), + [4778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1297), + [4780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1297), + [4782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1592), + [4784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1531), + [4786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1671), + [4788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5223), + [4790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5223), + [4792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1616), + [4794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1681), + [4796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1621), + [4798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1688), + [4800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1623), + [4802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1351), + [4804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1407), + [4806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2086), + [4808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2087), + [4810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1906), + [4812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(174), + [4814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), + [4816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5432), + [4818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1248), + [4820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), + [4822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5207), + [4824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5207), + [4826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1628), + [4828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1807), + [4830] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), + [4832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 1, 0, 0), + [4834] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 1, 0, 0), + [4836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1676), + [4838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1312), + [4840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1312), + [4842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1313), + [4844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1313), + [4846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_with_expr, 3, 0, 0), + [4848] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_with_expr, 3, 0, 0), + [4850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_with_expr, 3, 0, 104), + [4852] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_with_expr, 3, 0, 104), + [4854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1314), + [4856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1314), + [4858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_with_expr, 4, 0, 0), + [4860] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_with_expr, 4, 0, 0), + [4862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_with_expr, 4, 0, 104), + [4864] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_with_expr, 4, 0, 104), + [4866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(176), + [4868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), + [4870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1696), + [4872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1680), + [4874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(162), + [4876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), + [4878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_short_flag, 1, 0, 0), + [4880] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_short_flag, 1, 0, 0), + [4882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1276), + [4884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1645), + [4886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1640), + [4888] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_flag, 1, 0, 0), + [4890] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_flag, 1, 0, 0), + [4892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1279), + [4894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1633), + [4896] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5368), + [4899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 1, 0, 31), + [4901] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 1, 0, 31), + [4903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1664), + [4905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1411), + [4907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1455), + [4909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2197), + [4911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2204), + [4913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2227), + [4915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1695), + [4917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1808), + [4919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5357), + [4921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1725), + [4923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1851), + [4925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_flag, 2, 0, 21), + [4927] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_flag, 2, 0, 21), + [4929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1281), + [4931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1292), + [4933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1811), + [4935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1670), + [4937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1880), + [4939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unquoted, 1, 0, 0), + [4941] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unquoted, 1, 0, 0), + [4943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_short_flag, 2, 0, 21), + [4945] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_short_flag, 2, 0, 21), + [4947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1278), + [4949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6731), + [4951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 186), + [4953] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 186), + [4955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1637), + [4957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1951), + [4959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3955), + [4961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3955), + [4963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_use, 3, 0, 43), + [4965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2175), + [4967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6499), + [4969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3517), + [4971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3675), + [4973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3547), + [4975] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5357), + [4978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1798), + [4980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1882), + [4982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_use, 2, 0, 15), + [4984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1707), + [4986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1256), + [4988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1748), + [4990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1749), + [4992] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 1, 0, 31), + [4994] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 1, 0, 31), + [4996] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unquoted, 2, 0, 0), + [4998] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unquoted, 2, 0, 0), + [5000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hide_mod, 2, 0, 29), + [5002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1809), + [5004] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(1941), + [5007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1258), + [5009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2, 0, 0), + [5011] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 2, 0, 0), + [5013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6169), + [5015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6169), + [5017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2160), + [5019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7168), + [5021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__flag, 1, 0, 0), + [5023] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__flag, 1, 0, 0), + [5025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), + [5027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_short_flag, 3, 0, 96), + [5029] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_short_flag, 3, 0, 96), + [5031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_short_flag, 3, 0, 97), + [5033] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_short_flag, 3, 0, 97), + [5035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), + [5037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_short_flag, 4, 0, 141), + [5039] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_short_flag, 4, 0, 141), + [5041] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_short_flag, 4, 0, 142), + [5043] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_short_flag, 4, 0, 142), + [5045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1868), + [5047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5220), + [5049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5220), + [5051] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_flag, 3, 0, 96), + [5053] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_flag, 3, 0, 96), + [5055] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_flag, 3, 0, 97), + [5057] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_flag, 3, 0, 97), + [5059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1378), + [5061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1378), + [5063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_flag, 4, 0, 141), + [5065] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_flag, 4, 0, 141), + [5067] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_flag, 4, 0, 142), + [5069] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_flag, 4, 0, 142), + [5071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7051), + [5073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1883), + [5075] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__blosure, 1, 10, 0), + [5077] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__blosure, 1, 10, 0), + [5079] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__blosure, 1, 0, 0), + [5081] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__blosure, 1, 0, 0), + [5083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1246), + [5085] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_block, 3, 0, 0), REDUCE(sym_val_closure, 3, 0, 0), + [5088] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 3, 0, 0), REDUCE(sym_val_closure, 3, 0, 0), + [5091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1898), + [5093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1899), + [5095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1398), + [5097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1398), + [5099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5214), + [5101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5214), + [5103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1469), + [5105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1469), + [5107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1985), + [5109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2129), + [5111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1872), + [5113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2123), + [5115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1, 0, 0), + [5117] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expr_binary_expression, 1, 0, 0), + [5119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expr_binary_expression, 1, 0, 0), + [5121] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1, 0, 0), + [5123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5274), + [5125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5274), + [5127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary, 3, 0, 83), + [5129] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary, 3, 0, 83), + [5131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1418), + [5133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418), + [5135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6750), + [5137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5168), + [5139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5168), + [5141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1386), + [5143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1386), + [5145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1388), + [5147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), + [5149] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression_parenthesized, 1, 0, 0), REDUCE(sym__expr_binary_expression_parenthesized, 1, 0, 0), + [5152] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_parenthesized, 1, 0, 0), + [5154] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expr_binary_expression_parenthesized, 1, 0, 0), + [5156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expr_binary_expression_parenthesized, 1, 0, 0), + [5158] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_parenthesized, 1, 0, 0), + [5160] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 156), + [5162] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 156), + [5164] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 3, 0, 83), + [5166] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 3, 0, 83), + [5168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2119), + [5170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2224), + [5172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 158), + [5174] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 158), + [5176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1498), + [5178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5357), + [5180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2133), + [5182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1957), + [5184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2210), + [5186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 193), + [5188] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 193), + [5190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5192), + [5192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5193), + [5194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3491), + [5196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3491), + [5198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5210), + [5200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5210), + [5202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5211), + [5204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5211), + [5206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_unary, 1, 0, 0), + [5208] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_unary, 1, 0, 0), + [5210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_unary, 2, 0, 0), + [5212] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_unary, 2, 0, 0), + [5214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary, 3, 0, 82), + [5216] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary, 3, 0, 82), + [5218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2171), + [5220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expr_unary_minus, 4, 0, 0), + [5222] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expr_unary_minus, 4, 0, 0), + [5224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1537), + [5226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1537), + [5228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1492), + [5230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1492), + [5232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1480), + [5234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1480), + [5236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1520), + [5238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520), + [5240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 192), + [5242] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 192), + [5244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6862), + [5246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6862), + [5248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3016), + [5250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6800), + [5252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 83), + [5254] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 83), + [5256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2852), + [5258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5372), + [5260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 3, 0, 82), + [5262] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 3, 0, 82), + [5264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6198), + [5266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 6, 0, 193), + [5268] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 6, 0, 193), + [5270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 6, 0, 192), + [5272] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 6, 0, 192), + [5274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 158), + [5276] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 158), + [5278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 156), + [5280] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 156), + [5282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), + [5284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2896), + [5286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2566), + [5288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2695), + [5290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2637), + [5292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 82), + [5294] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 82), + [5296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 155), + [5298] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 155), + [5300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 155), + [5302] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 155), + [5304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1637), + [5306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 157), + [5308] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 157), + [5310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 157), + [5312] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 157), + [5314] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 3, 0, 82), SHIFT(1941), + [5317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(899), + [5319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), + [5321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), + [5323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(895), + [5325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), + [5327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), + [5329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), + [5331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), + [5333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), + [5335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), + [5337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(897), + [5339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), + [5341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), + [5343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), + [5345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), + [5347] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 157), SHIFT(1941), + [5350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), + [5352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(978), + [5354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), + [5356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), + [5358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1033), + [5360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), + [5362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(902), + [5364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), + [5366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2450), + [5368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2599), + [5370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), + [5372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), + [5374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), + [5376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), + [5378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), + [5380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), + [5382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6373), + [5384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), + [5386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2794), + [5388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2915), + [5390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2823), + [5392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), + [5394] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 192), SHIFT(1941), + [5397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2322), + [5399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2585), + [5401] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 155), SHIFT(1941), + [5404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2470), + [5406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2576), + [5408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2388), + [5410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2573), + [5412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5354), + [5414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7153), + [5416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1059), + [5418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1061), + [5420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), + [5422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), + [5424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1059), + [5426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), + [5428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1058), + [5430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), + [5432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), + [5434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), + [5436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), + [5438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), + [5440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), + [5442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062), + [5444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), + [5446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), + [5448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3055), + [5450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2694), + [5452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2694), + [5454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2867), + [5456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2799), + [5458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3052), + [5460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2710), + [5462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2848), + [5464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2788), + [5466] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5372), + [5469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2569), + [5471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2577), + [5473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), + [5475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2238), + [5477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2325), + [5479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2943), + [5481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2944), + [5483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2973), + [5485] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5354), + [5488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), + [5490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1076), + [5492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1071), + [5494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), + [5496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1074), + [5498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1072), + [5500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1073), + [5502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1073), + [5504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), + [5506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057), + [5508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1126), + [5510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), + [5512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), + [5514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), + [5516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2593), + [5518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2594), + [5520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), + [5522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3187), + [5524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2796), + [5526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2796), + [5528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2922), + [5530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2834), + [5532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6358), + [5534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), + [5536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2913), + [5538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2913), + [5540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3076), + [5542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2966), + [5544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2891), + [5546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3101), + [5548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3027), + [5550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2671), + [5552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2651), + [5554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2698), + [5556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5394), + [5558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2640), + [5560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2561), + [5562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2697), + [5564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2946), + [5566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2946), + [5568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3169), + [5570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3060), + [5572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2654), + [5574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2654), + [5576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6572), + [5578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2601), + [5580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7569), + [5582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2893), + [5584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2895), + [5586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2981), + [5588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2613), + [5590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2676), + [5592] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_list_repeat1, 2, 0, 146), SHIFT_REPEAT(6862), + [5595] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_list_repeat1, 2, 0, 146), SHIFT_REPEAT(6862), + [5598] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_list_repeat1, 2, 0, 146), SHIFT_REPEAT(3517), + [5601] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_list_repeat1, 2, 0, 146), SHIFT_REPEAT(3675), + [5604] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_list_repeat1, 2, 0, 146), SHIFT_REPEAT(3547), + [5607] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_list_repeat1, 2, 0, 146), SHIFT_REPEAT(6186), + [5610] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_list_repeat1, 2, 0, 146), SHIFT_REPEAT(5129), + [5613] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_list_repeat1, 2, 0, 146), SHIFT_REPEAT(7519), + [5616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2581), + [5618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2675), + [5620] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5394), + [5623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5389), + [5625] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_name, 1, 0, 8), + [5627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__command_name, 1, 0, 8), + [5629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2677), + [5631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2692), + [5633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2692), + [5635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6233), + [5637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2723), + [5639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7461), + [5641] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cmd_identifier, 3, 0, 0), + [5643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cmd_identifier, 3, 0, 0), + [5645] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cmd_identifier, 3, 0, 50), + [5647] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cmd_identifier, 3, 0, 50), + [5649] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cmd_identifier, 4, 0, 50), + [5651] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cmd_identifier, 4, 0, 50), + [5653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2699), + [5655] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cmd_identifier, 1, 0, 0), + [5657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cmd_identifier, 1, 0, 0), + [5659] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cmd_identifier, 2, 0, 0), + [5661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cmd_identifier, 2, 0, 0), + [5663] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_name, 1, 0, 7), + [5665] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__command_name, 1, 0, 7), + [5667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5383), + [5669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5239), + [5671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5239), + [5673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2329), + [5675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2329), + [5677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), + [5679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5212), + [5681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5213), + [5683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7311), + [5685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7355), + [5687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7128), + [5689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2803), + [5691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2859), + [5693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2688), + [5695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2838), + [5697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7439), + [5699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7527), + [5701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2790), + [5703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2854), + [5705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2703), + [5707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2851), + [5709] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5389), + [5712] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 19), + [5714] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 4, 0, 105), + [5716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2772), + [5718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 19), + [5720] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 2, 0, 19), + [5722] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list, 2, 0, 0), + [5724] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__match_pattern_list, 2, 0, 0), REDUCE(sym_val_list, 2, 0, 0), + [5727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5360), + [5729] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_list, 2, 0, 0), + [5731] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__multiple_types_repeat1, 2, 0, 0), SHIFT_REPEAT(2772), + [5734] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 3, 0, 51), + [5736] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 3, 0, 52), + [5738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2792), + [5740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2793), + [5742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2415), + [5744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2532), + [5746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3061), + [5748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3062), + [5750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3168), + [5752] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 1, 0, 0), REDUCE(aux_sym_parameter_repeat2, 1, 0, 0), + [5755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_repeat2, 1, 0, 0), + [5757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), + [5759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6224), + [5761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5783), + [5763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5785), + [5765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7455), + [5767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5887), + [5769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5746), + [5771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2611), + [5773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5395), + [5775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3238), + [5777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3075), + [5779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3201), + [5781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3171), + [5783] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record, 2, 0, 0), + [5785] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__match_pattern_record, 2, 0, 0), REDUCE(sym_val_record, 2, 0, 0), + [5788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_record, 2, 0, 0), + [5790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2876), + [5792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2906), + [5794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), + [5796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6223), + [5798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5613), + [5800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5653), + [5802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7676), + [5804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5935), + [5806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5704), + [5808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2731), + [5810] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5383), + [5813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5387), + [5815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2827), + [5817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2918), + [5819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2865), + [5821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2866), + [5823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2842), + [5825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2925), + [5827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2855), + [5829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2779), + [5831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2916), + [5833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), + [5835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5710), + [5837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5711), + [5839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7581), + [5841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2784), + [5843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2924), + [5845] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(2824), + [5848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2818), + [5850] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_list_repeat1, 2, 0, 145), + [5852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6149), + [5854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2919), + [5856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_list_repeat1, 2, 0, 145), + [5858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2551), + [5860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2551), + [5862] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_decl_def_repeat1, 2, 0, 0), + [5864] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_decl_def_repeat1, 2, 0, 0), + [5866] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_decl_def_repeat1, 2, 0, 0), SHIFT_REPEAT(2852), + [5869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5391), + [5871] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(2904), + [5874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_record, 3, 0, 198), + [5876] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record, 3, 0, 198), + [5878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6755), + [5880] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(2921), + [5883] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_expression, 1, 0, 0), + [5885] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_entry, 1, 0, 16), + [5887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2423), + [5889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2539), + [5891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_entry, 1, 0, 16), + [5893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_expression, 1, 0, 0), + [5895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2920), + [5897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5202), + [5899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5202), + [5901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2927), + [5903] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_value, 1, 0, 0), + [5905] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__match_pattern_value, 1, 0, 0), REDUCE(sym__value, 1, 0, 0), + [5908] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_value, 1, 0, 0), + [5910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6771), + [5912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2928), + [5914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5229), + [5916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5229), + [5918] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__multiple_types_repeat1, 2, 0, 0), SHIFT_REPEAT(2919), + [5921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2541), + [5923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2541), + [5925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3257), + [5927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3130), + [5929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3211), + [5931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3200), + [5933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2926), + [5935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3217), + [5937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3246), + [5939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3233), + [5941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2931), + [5943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1296), + [5945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6257), + [5947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6273), + [5949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6462), + [5951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2911), + [5953] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5395), + [5956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2548), + [5958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2548), + [5960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2935), + [5962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6956), + [5964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2549), + [5966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2549), + [5968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7120), + [5970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3232), + [5972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3269), + [5974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3242), + [5976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5225), + [5978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5225), + [5980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2942), + [5982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3111), + [5984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2600), + [5986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2600), + [5988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2970), + [5990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3103), + [5992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2523), + [5994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2568), + [5996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2582), + [5998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2582), + [6000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6651), + [6002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2899), + [6004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3100), + [6006] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5391), + [6009] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_repeat1, 1, 0, 16), + [6011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3198), + [6013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 1, 0, 16), + [6015] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(3016), + [6018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1269), + [6020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3005), + [6022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3082), + [6024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2933), + [6026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3079), + [6028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3019), + [6030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3021), + [6032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2578), + [6034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2578), + [6036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3031), + [6038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3112), + [6040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2990), + [6042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3182), + [6044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2769), + [6046] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list, 1, 0, 0), + [6048] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list, 1, 0, 0), + [6050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3038), + [6052] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list, 2, 0, 0), + [6054] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list, 2, 0, 0), + [6056] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), + [6058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4869), + [6060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3069), + [6062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), + [6064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6778), + [6066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2757), + [6068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2846), + [6070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3250), + [6072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3235), + [6074] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__multiple_types_repeat1, 2, 0, 0), SHIFT_REPEAT(3069), + [6077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4898), + [6079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4899), + [6081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3121), + [6083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3188), + [6085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3078), + [6087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4617), + [6089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4619), + [6091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3080), + [6093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4634), + [6095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3083), + [6097] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_decl_def_repeat1, 1, 0, 0), + [6099] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_decl_def_repeat1, 1, 0, 0), + [6101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4637), + [6103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4926), + [6105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3093), + [6107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3155), + [6109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4652), + [6111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4653), + [6113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4927), + [6115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3012), + [6117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3149), + [6119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4871), + [6121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3113), + [6123] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(3097), + [6126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3128), + [6128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3196), + [6130] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record, 3, 0, 0), + [6132] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__match_pattern_record, 3, 0, 0), REDUCE(sym_val_record, 3, 0, 0), + [6135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_record, 3, 0, 0), + [6137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6754), + [6139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2840), + [6141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2882), + [6143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3258), + [6145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3259), + [6147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3043), + [6149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3195), + [6151] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(3175), + [6154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3194), + [6156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3127), + [6158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_list, 3, 0, 196), + [6160] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list, 3, 0, 196), + [6162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3245), + [6164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3244), + [6166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3202), + [6168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3173), + [6170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3212), + [6172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3198), + [6174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_value, 1, 0, 111), + [6176] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_value, 1, 0, 111), + [6178] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_value, 1, 0, 112), + [6180] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_value, 1, 0, 112), + [6182] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_list, 4, 0, 227), + [6184] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list, 4, 0, 227), + [6186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_record, 4, 0, 198), + [6188] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record, 4, 0, 198), + [6190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3203), + [6192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3213), + [6194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_list, 3, 0, 194), + [6196] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list, 3, 0, 194), + [6198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2844), + [6200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2844), + [6202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 195), + [6204] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 195), + [6206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5233), + [6208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5233), + [6210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3206), + [6212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3234), + [6214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3249), + [6216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3378), + [6218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3248), + [6220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5867), + [6222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5676), + [6224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5679), + [6226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), + [6228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5228), + [6230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5228), + [6232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2880), + [6234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2880), + [6236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3204), + [6238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3247), + [6240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3411), + [6242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3412), + [6244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), + [6246] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_block, 2, 0, 0), REDUCE(sym_val_record, 2, 0, 0), + [6249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3243), + [6251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3265), + [6253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3231), + [6255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3262), + [6257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3236), + [6259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3266), + [6261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3501), + [6263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7603), + [6265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1086), + [6267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), + [6269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), + [6271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1089), + [6273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1086), + [6275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), + [6277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), + [6279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1087), + [6281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), + [6283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), + [6285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), + [6287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), + [6289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5870), + [6291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2622), + [6293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_parens, 3, 0, 0), + [6295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4599), + [6297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_bracks, 4, 0, 0), + [6299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_parens, 4, 0, 0), + [6301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_bracks, 3, 0, 0), + [6303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), + [6305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(983), + [6307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), + [6309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), + [6311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(894), + [6313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), + [6315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(981), + [6317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), + [6319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), + [6321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), + [6323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), + [6325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), + [6327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), + [6329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), + [6331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), + [6333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6124), + [6335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), + [6337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1009), + [6339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), + [6341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), + [6343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1007), + [6345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), + [6347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1006), + [6349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), + [6351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), + [6353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), + [6355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), + [6357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), + [6359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), + [6361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), + [6363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), + [6365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_bracks, 2, 0, 0), + [6367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_parens, 2, 0, 0), + [6369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3545), + [6371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3480), + [6373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3499), + [6375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3492), + [6377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), + [6379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), + [6381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1091), + [6383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1077), + [6385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1084), + [6387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), + [6389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1119), + [6391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), + [6393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), + [6395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1124), + [6397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), + [6399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1084), + [6401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1125), + [6403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1128), + [6405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), + [6407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1130), + [6409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3514), + [6411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3554), + [6413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3522), + [6415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), + [6417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), + [6419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4572), + [6421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4446), + [6423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4448), + [6425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3671), + [6427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3494), + [6429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3510), + [6431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3498), + [6433] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__multiple_types_repeat2, 2, 0, 179), SHIFT_REPEAT(5867), + [6436] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__multiple_types_repeat2, 2, 0, 179), SHIFT_REPEAT(5676), + [6439] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__multiple_types_repeat2, 2, 0, 179), SHIFT_REPEAT(5679), + [6442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3515), + [6444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3598), + [6446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3529), + [6448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3426), + [6450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3483), + [6452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6109), + [6454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3440), + [6456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3471), + [6458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6077), + [6460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5905), + [6462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5907), + [6464] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__multiple_types_repeat1, 2, 0, 0), SHIFT_REPEAT(3477), + [6467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3379), + [6469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3405), + [6471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3539), + [6473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3524), + [6475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3590), + [6477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3473), + [6479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3442), + [6481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3487), + [6483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3479), + [6485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3485), + [6487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6400), + [6489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7645), + [6491] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__multiple_types_repeat2, 2, 0, 98), + [6493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3477), + [6495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7427), + [6497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3403), + [6499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3420), + [6501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3588), + [6503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3589), + [6505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3484), + [6507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3495), + [6509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3488), + [6511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3476), + [6513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3496), + [6515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7559), + [6517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7589), + [6519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3497), + [6521] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(3501), + [6524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3500), + [6526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3505), + [6528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3493), + [6530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3508), + [6532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3511), + [6534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3394), + [6536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3394), + [6538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5222), + [6540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5222), + [6542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3518), + [6544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3548), + [6546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3519), + [6548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3523), + [6550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5241), + [6552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5241), + [6554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3425), + [6556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3432), + [6558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3506), + [6560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3543), + [6562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3422), + [6564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3422), + [6566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3504), + [6568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3544), + [6570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3521), + [6572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3601), + [6574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3520), + [6576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3563), + [6578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3528), + [6580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3530), + [6582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3535), + [6584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3610), + [6586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3531), + [6588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3603), + [6590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4052), + [6592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3863), + [6594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), + [6596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6170), + [6598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), + [6600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4130), + [6602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4130), + [6604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3731), + [6606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3731), + [6608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3604), + [6610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3660), + [6612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3427), + [6614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3450), + [6616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3436), + [6618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3436), + [6620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5232), + [6622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5232), + [6624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3451), + [6626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3451), + [6628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3452), + [6630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3452), + [6632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3453), + [6634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3453), + [6636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5169), + [6638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5169), + [6640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7679), + [6642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7679), + [6644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6086), + [6646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3735), + [6648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3735), + [6650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(914), + [6652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), + [6654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), + [6656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(917), + [6658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), + [6660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), + [6662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), + [6664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), + [6666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(915), + [6668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), + [6670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), + [6672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), + [6674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), + [6676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(940), + [6678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), + [6680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), + [6682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(943), + [6684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), + [6686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), + [6688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), + [6690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), + [6692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), + [6694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(941), + [6696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), + [6698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), + [6700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), + [6702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), + [6704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), + [6706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), + [6708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), + [6710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3493), + [6712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3715), + [6714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3715), + [6716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7630), + [6718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7630), + [6720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2663), + [6722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3741), + [6724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3741), + [6726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3747), + [6728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3747), + [6730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7696), + [6732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7696), + [6734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7194), + [6736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3717), + [6738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3717), + [6740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7451), + [6742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7451), + [6744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3986), + [6746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3740), + [6748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3740), + [6750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7488), + [6752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7488), + [6754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2706), + [6756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3743), + [6758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3743), + [6760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), + [6762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element, 2, 0, 0), + [6764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7550), + [6766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7550), + [6768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), + [6770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), + [6772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), + [6774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), + [6776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), + [6778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), + [6780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element, 1, 0, 0), + [6782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109), + [6784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7415), + [6786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7415), + [6788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6760), + [6790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1101), + [6792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), + [6794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), + [6796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1104), + [6798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1101), + [6800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1108), + [6802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1104), + [6804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1102), + [6806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110), + [6808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1111), + [6810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), + [6812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), + [6814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), + [6816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1106), + [6818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1080), + [6820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), + [6822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1078), + [6824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1079), + [6826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), + [6828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), + [6830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), + [6832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), + [6834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), + [6836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1081), + [6838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), + [6840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1115), + [6842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), + [6844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), + [6846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), + [6848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7619), + [6850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7619), + [6852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7422), + [6854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7422), + [6856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6174), + [6858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized, 2, 0, 0), + [6860] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized, 1, 0, 0), + [6862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7753), + [6864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7753), + [6866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3998), + [6868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7694), + [6870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7694), + [6872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2627), + [6874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7426), + [6876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7426), + [6878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2724), + [6880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), + [6882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), + [6884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), + [6886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__predicate, 1, 0, 0), + [6888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1143), + [6890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1138), + [6892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1143), + [6894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1137), + [6896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), + [6898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), + [6900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1107), + [6902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1145), + [6904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1141), + [6906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1145), + [6908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1140), + [6910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6525), + [6912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3967), + [6914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3814), + [6916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3848), + [6918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3825), + [6920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3877), + [6922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3948), + [6924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3914), + [6926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4049), + [6928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3824), + [6930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3873), + [6932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3841), + [6934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), + [6936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4299), + [6938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3861), + [6940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3861), + [6942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3936), + [6944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3890), + [6946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3794), + [6948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3801), + [6950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3781), + [6952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3808), + [6954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3913), + [6956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4038), + [6958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4000), + [6960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4004), + [6962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4004), + [6964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4139), + [6966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4028), + [6968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4488), + [6970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3807), + [6972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3832), + [6974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3790), + [6976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3823), + [6978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3813), + [6980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3772), + [6982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3775), + [6984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3946), + [6986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3950), + [6988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), + [6990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4378), + [6992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3874), + [6994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3874), + [6996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3978), + [6998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3920), + [7000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3811), + [7002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3840), + [7004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4242), + [7006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4242), + [7008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3822), + [7010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3827), + [7012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3850), + [7014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3833), + [7016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3839), + [7018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4037), + [7020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4037), + [7022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4319), + [7024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4112), + [7026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3810), + [7028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3849), + [7030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3776), + [7032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3783), + [7034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4071), + [7036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4072), + [7038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4650), + [7040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4336), + [7042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4336), + [7044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3857), + [7046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3885), + [7048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3836), + [7050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3875), + [7052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3780), + [7054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3787), + [7056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4172), + [7058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4231), + [7060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4315), + [7062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3851), + [7064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3821), + [7066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3886), + [7068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3856), + [7070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3843), + [7072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3867), + [7074] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(3863), + [7077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6350), + [7079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), + [7081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4474), + [7083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3895), + [7085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3895), + [7087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4060), + [7089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3968), + [7091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3882), + [7093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3898), + [7095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3871), + [7097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3842), + [7099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3894), + [7101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5376), + [7103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4164), + [7105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4164), + [7107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4468), + [7109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4312), + [7111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4843), + [7113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5236), + [7115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5236), + [7117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3878), + [7119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3929), + [7121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3879), + [7123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3774), + [7125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3774), + [7127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3855), + [7129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3928), + [7131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3800), + [7133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3812), + [7135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4385), + [7137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4310), + [7139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4539), + [7141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4512), + [7143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4512), + [7145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5369), + [7147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5231), + [7149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5231), + [7151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3784), + [7153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3784), + [7155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3915), + [7157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3953), + [7159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3880), + [7161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3988), + [7163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3870), + [7165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3951), + [7167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3923), + [7169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3930), + [7171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4012), + [7173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3902), + [7175] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5376), + [7178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3838), + [7180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3846), + [7182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4530), + [7184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4535), + [7186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4585), + [7188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3918), + [7190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4061), + [7192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5343), + [7194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__predicate, 3, 0, 82), + [7196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3773), + [7198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3777), + [7200] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 1, 0, 62), + [7202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1157), + [7204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4952), + [7206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3404), + [7208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7333), + [7210] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 1, 0, 62), + [7212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4005), + [7214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4041), + [7216] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5369), + [7219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3958), + [7221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3965), + [7223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3906), + [7225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4039), + [7227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3954), + [7229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3789), + [7231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3789), + [7233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3973), + [7235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4062), + [7237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5217), + [7239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5217), + [7241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4003), + [7243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5254), + [7245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5254), + [7247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3785), + [7249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3785), + [7251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3786), + [7253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3786), + [7255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3778), + [7257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3778), + [7259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__predicate, 3, 0, 83), + [7261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4067), + [7263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3779), + [7265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3791), + [7267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5196), + [7269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5196), + [7271] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_list, 2, 0, 0), + [7273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_list, 2, 0, 0), + [7275] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_list, 3, 0, 0), + [7277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_list, 3, 0, 0), + [7279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3815), + [7281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3815), + [7283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4063), + [7285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4091), + [7287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4279), + [7289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5260), + [7291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5260), + [7293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3796), + [7295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3796), + [7297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3795), + [7299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3795), + [7301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3797), + [7303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3797), + [7305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4103), + [7307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4104), + [7309] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5343), + [7312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3980), + [7314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4203), + [7316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4042), + [7318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4079), + [7320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3788), + [7322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3809), + [7324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4561), + [7326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 1, 0, 59), + [7328] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 1, 0, 59), + [7330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4075), + [7332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4311), + [7334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5238), + [7336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5238), + [7338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, 0, 117), + [7340] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 3, 0, 117), + [7342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3854), + [7344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3854), + [7346] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate_lhs, 1, 0, 31), + [7348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate_lhs, 1, 0, 31), + [7350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4209), + [7352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4524), + [7354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3804), + [7356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3804), + [7358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3805), + [7360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3805), + [7362] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate_lhs, 1, 0, 0), + [7364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate_lhs, 1, 0, 0), + [7366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4298), + [7368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4173), + [7370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4377), + [7372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3806), + [7374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3806), + [7376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5218), + [7378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5218), + [7380] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cmd_arg, 1, 0, 74), + [7382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, 0, 74), + [7384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4251), + [7386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 2, 0, 59), + [7388] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 2, 0, 59), + [7390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 2, 0, 117), + [7392] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 2, 0, 117), + [7394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 2, 0, 62), + [7396] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 2, 0, 62), + [7398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4608), + [7400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4872), + [7402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5216), + [7404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5216), + [7406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 190), + [7408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3693), + [7410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3694), + [7412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 191), + [7414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 6, 0, 226), + [7416] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 226), SHIFT(1941), + [7419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 226), + [7421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3689), + [7423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3684), + [7425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3699), + [7427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 190), + [7429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 191), + [7431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3685), + [7433] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 191), SHIFT(1941), + [7436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_repeat1, 2, 0, 0), + [7438] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_repeat1, 2, 0, 0), SHIFT_REPEAT(1157), + [7441] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_repeat1, 2, 0, 0), SHIFT_REPEAT(3863), + [7444] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_repeat1, 2, 0, 0), SHIFT_REPEAT(3404), + [7447] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_parameter_repeat1, 2, 0, 0), + [7449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3714), + [7451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2769), + [7453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3690), + [7455] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 3, 0, 126), SHIFT(1941), + [7458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 3, 0, 126), + [7460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 126), + [7462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4210), + [7464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4472), + [7466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 2, 0, 32), + [7468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3691), + [7470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4371), + [7472] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 190), SHIFT(1941), + [7475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate, 3, 0, 126), + [7477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3695), + [7479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3818), + [7481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3835), + [7483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3762), + [7485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3753), + [7487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3766), + [7489] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate_lhs, 2, 0, 31), + [7491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate_lhs, 2, 0, 31), + [7493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4318), + [7495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4476), + [7497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3754), + [7499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 3, 0, 32), + [7501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3686), + [7503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3701), + [7505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 3, 0, 107), + [7507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3855), + [7509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 4, 0, 107), + [7511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7031), + [7513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(369), + [7515] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 1, 0, 3), + [7517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1205), + [7519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3831), + [7521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3831), + [7523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1188), + [7525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command, 2, 0, 32), + [7527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3752), + [7529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3820), + [7531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3820), + [7533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3757), + [7535] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cmd_arg, 1, 0, 80), + [7537] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, 0, 80), + [7539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4348), + [7541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1275), + [7543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3830), + [7545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3830), + [7547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1307), + [7549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4347), + [7551] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate_lhs, 2, 0, 0), + [7553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate_lhs, 2, 0, 0), + [7555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3751), + [7557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3759), + [7559] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 3, 0, 73), + [7561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), + [7563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4638), + [7565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5251), + [7567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3329), + [7569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7389), + [7571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7270), + [7573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7490), + [7575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7513), + [7577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4393), + [7579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1267), + [7581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3761), + [7583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3767), + [7585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3760), + [7587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5227), + [7589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5227), + [7591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4473), + [7593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4777), + [7595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4478), + [7597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4313), + [7599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4723), + [7601] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pipeline, 2, 0, 0), SHIFT(1941), + [7604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipeline, 2, 0, 0), + [7606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3884), + [7608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3884), + [7610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3889), + [7612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3889), + [7614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6139), + [7616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3865), + [7618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3865), + [7620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3365), + [7622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), + [7624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 3, 0, 0), + [7626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3880), + [7628] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(4638), + [7631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 2, 0, 0), + [7633] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(7389), + [7636] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(7270), + [7639] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(7490), + [7642] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_parameter_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(7513), + [7645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_value, 2, 0, 163), + [7647] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_value, 2, 0, 163), + [7649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3847), + [7651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3883), + [7653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3278), + [7655] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pipeline, 1, 0, 0), SHIFT(1941), + [7658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipeline, 1, 0, 0), + [7660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6126), + [7662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3763), + [7664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1274), + [7666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1277), + [7668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6680), + [7670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3273), + [7672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), + [7674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_value, 4, 0, 228), + [7676] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_value, 4, 0, 228), + [7678] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 2, 0, 36), + [7680] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 2, 0, 37), + [7682] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, 0, 81), + [7684] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 2, 0, 81), SHIFT_REPEAT(383), + [7687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6588), + [7689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_value, 3, 0, 201), + [7691] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_value, 3, 0, 201), + [7693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1264), + [7695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4428), + [7697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6204), + [7699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5575), + [7701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5575), + [7703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6524), + [7705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6435), + [7707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(35), + [7709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 2, 0, 81), + [7711] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 2, 0, 81), SHIFT_REPEAT(435), + [7714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1244), + [7716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7199), + [7718] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 187), SHIFT(1941), + [7721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 187), + [7723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), + [7725] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 4, 0, 57), SHIFT(1941), + [7728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 4, 0, 57), + [7730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), + [7732] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 2, 0, 24), SHIFT(1941), + [7735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 2, 0, 24), + [7737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5717), + [7739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(394), + [7741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), + [7743] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_parenthesized, 2, 0, 36), + [7745] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 3, 0, 73), + [7747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), + [7749] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pipeline_parenthesized, 1, 0, 0), SHIFT(1941), + [7752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipeline_parenthesized, 1, 0, 0), + [7754] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pipeline_parenthesized, 2, 0, 0), SHIFT(1941), + [7757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipeline_parenthesized, 2, 0, 0), + [7759] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_parenthesized, 2, 0, 37), + [7761] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cmd_arg, 1, 0, 75), + [7763] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, 0, 75), + [7765] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cmd_arg, 1, 0, 76), + [7767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, 0, 76), + [7769] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, 0, 77), + [7771] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 2, 0, 77), + [7773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1266), + [7775] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cmd_arg, 1, 0, 78), + [7777] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, 0, 78), + [7779] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cmd_arg, 1, 0, 79), + [7781] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, 0, 79), + [7783] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 4, 0, 153), SHIFT(1941), + [7786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 4, 0, 153), + [7788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), + [7790] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 4, 0, 154), SHIFT(1941), + [7793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 4, 0, 154), + [7795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), + [7797] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_flat_type, 1, 0, 93), + [7799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4890), + [7801] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_flat_type, 1, 0, 93), + [7803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4669), + [7805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4837), + [7807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3275), + [7809] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_type, 3, 0, 139), + [7811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2664), + [7813] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_type, 3, 0, 139), + [7815] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT(234), + [7818] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 153), SHIFT(1941), + [7821] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 153), + [7823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), + [7825] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 154), SHIFT(1941), + [7828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 154), + [7830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), + [7832] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 187), SHIFT(1941), + [7835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 187), + [7837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), + [7839] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT(5645), + [7842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 2, 0, 37), + [7844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4447), + [7846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4836), + [7848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4802), + [7850] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT(5707), + [7853] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 3, 0, 57), SHIFT(1941), + [7856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 3, 0, 57), + [7858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), + [7860] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 3, 0, 24), SHIFT(1941), + [7863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 3, 0, 24), + [7865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5607), + [7867] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 3, 0, 106), SHIFT(1941), + [7870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 3, 0, 106), + [7872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5646), + [7874] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT(243), + [7877] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_list, 4, 0, 0), + [7879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_list, 4, 0, 0), + [7881] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 4, 0, 106), SHIFT(1941), + [7884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 4, 0, 106), + [7886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5602), + [7888] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_parenthesized, 3, 0, 73), + [7890] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_repeat1, 2, 0, 81), SHIFT_REPEAT(394), + [7893] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__command_parenthesized_repeat1, 2, 0, 81), SHIFT_REPEAT(394), + [7896] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_repeat1, 2, 0, 81), + [7898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try, 2, 0, 24), + [7900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6452), + [7902] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT(276), + [7905] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_parenthesized, 1, 0, 3), + [7907] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT(245), + [7910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_type, 2, 0, 94), + [7912] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_type, 2, 0, 94), + [7914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_type, 4, 0, 178), + [7916] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_type, 4, 0, 178), + [7918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 2, 0, 36), + [7920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6706), + [7922] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_redirection, 3, 0, 130), + [7924] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_redirection, 3, 0, 130), + [7926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 1, 0, 3), + [7928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6484), + [7930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5160), + [7932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5566), + [7934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5431), + [7936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 5, 0, 205), + [7938] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 5, 0, 205), + [7940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if, 3, 0, 57), + [7942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), + [7944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), + [7946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if, 5, 0, 160), + [7948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if, 5, 0, 161), + [7950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ctrl_expression, 1, 0, 1), + [7952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 5, 0, 110), + [7954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5778), + [7956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6480), + [7958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5936), + [7960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ctrl_expression, 1, 0, 2), + [7962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 5, 0, 113), + [7964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3277), + [7966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 3, 0, 33), + [7968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 3, 0, 0), + [7970] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 3, 0, 0), + [7972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_type, 3, 0, 0), + [7974] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_type, 3, 0, 0), + [7976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6757), + [7978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5350), + [7980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5598), + [7982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5574), + [7984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6290), + [7986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5765), + [7988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5685), + [7990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), + [7992] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 3, 0, 108), + [7994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_annotation, 1, 0, 95), + [7996] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_annotation, 1, 0, 95), + [7998] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_repeat1, 2, 0, 77), + [8000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__command_parenthesized_repeat1, 2, 0, 77), + [8002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 4, 0, 205), + [8004] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 4, 0, 205), + [8006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 4, 0, 207), + [8008] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 4, 0, 207), + [8010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_type, 4, 0, 210), + [8012] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_type, 4, 0, 210), + [8014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_type, 4, 0, 211), + [8016] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_type, 4, 0, 211), + [8018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 6, 0, 110), + [8020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6116), + [8022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 6, 0, 113), + [8024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try, 4, 0, 124), + [8026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_return, 2, 0, 0), + [8028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), + [8030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6078), + [8032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5195), + [8034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5195), + [8036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5563), + [8038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5300), + [8040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6127), + [8042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6136), + [8044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element, 3, 0, 0), + [8046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 4, 0, 110), + [8048] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 7, 0, 110), + [8050] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_cmd, 2, 0, 13), + [8052] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_cmd, 2, 0, 13), + [8054] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 7, 0, 113), + [8056] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__param_name, 1, 0, 58), + [8058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4830), + [8060] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__param_name, 1, 0, 58), + [8062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5278), + [8064] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 4, 0, 108), + [8066] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 5, 0, 207), + [8068] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 5, 0, 207), + [8070] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 5, 0, 230), + [8072] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 5, 0, 230), + [8074] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 8, 0, 110), + [8076] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 8, 0, 113), + [8078] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 5, 0, 231), + [8080] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 5, 0, 231), + [8082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 5, 0, 232), + [8084] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 5, 0, 232), + [8086] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 5, 0, 233), + [8088] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 5, 0, 233), + [8090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6959), + [8092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5063), + [8094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5063), + [8096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5346), + [8098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5162), + [8100] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_type, 5, 0, 234), + [8102] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_type, 5, 0, 234), + [8104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5356), + [8106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5359), + [8108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5571), + [8110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 4, 0, 113), + [8112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4838), + [8114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 2, 0, 33), + [8116] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command, 2, 0, 33), + [8118] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ctrl_expression, 1, 0, 0), + [8120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), + [8122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element, 1, 0, 5), + [8124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6413), + [8126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 6, 0, 247), + [8128] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 6, 0, 247), + [8130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 6, 0, 249), + [8132] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 6, 0, 249), + [8134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), + [8136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), + [8138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), + [8140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), + [8142] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT(256), + [8145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), + [8147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), + [8149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), + [8151] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT(264), + [8154] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT(266), + [8157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), + [8159] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT(272), + [8162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 6, 0, 230), + [8164] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 6, 0, 230), + [8166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 6, 0, 231), + [8168] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 6, 0, 231), + [8170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 6, 0, 251), + [8172] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 6, 0, 251), + [8174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 6, 0, 252), + [8176] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 6, 0, 252), + [8178] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 6, 0, 232), + [8180] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 6, 0, 232), + [8182] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 6, 0, 233), + [8184] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 6, 0, 233), + [8186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), + [8188] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 7, 0, 262), + [8190] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 7, 0, 262), + [8192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 7, 0, 247), + [8194] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 7, 0, 247), + [8196] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 7, 0, 264), + [8198] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 7, 0, 264), + [8200] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 7, 0, 249), + [8202] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 7, 0, 249), + [8204] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 7, 0, 266), + [8206] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 7, 0, 266), + [8208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 7, 0, 267), + [8210] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 7, 0, 267), + [8212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 7, 0, 251), + [8214] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 7, 0, 251), + [8216] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 7, 0, 252), + [8218] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 7, 0, 252), + [8220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 7, 0, 268), + [8222] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 7, 0, 268), + [8224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 7, 0, 269), + [8226] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 7, 0, 269), + [8228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 8, 0, 262), + [8230] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 8, 0, 262), + [8232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 8, 0, 264), + [8234] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 8, 0, 264), + [8236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 8, 0, 276), + [8238] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 8, 0, 276), + [8240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 8, 0, 266), + [8242] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 8, 0, 266), + [8244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 8, 0, 277), + [8246] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 8, 0, 277), + [8248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 8, 0, 267), + [8250] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 8, 0, 267), + [8252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 8, 0, 278), + [8254] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 8, 0, 278), + [8256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 8, 0, 279), + [8258] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 8, 0, 279), + [8260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 8, 0, 280), + [8262] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 8, 0, 280), + [8264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 8, 0, 268), + [8266] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 8, 0, 268), + [8268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 8, 0, 281), + [8270] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 8, 0, 281), + [8272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 8, 0, 269), + [8274] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 8, 0, 269), + [8276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 9, 0, 276), + [8278] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 9, 0, 276), + [8280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 9, 0, 277), + [8282] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 9, 0, 277), + [8284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 9, 0, 284), + [8286] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 9, 0, 284), + [8288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 9, 0, 278), + [8290] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 9, 0, 278), + [8292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 9, 0, 285), + [8294] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 9, 0, 285), + [8296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 9, 0, 279), + [8298] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 9, 0, 279), + [8300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 9, 0, 280), + [8302] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 9, 0, 280), + [8304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 9, 0, 281), + [8306] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 9, 0, 281), + [8308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 10, 0, 284), + [8310] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 10, 0, 284), + [8312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 10, 0, 285), + [8314] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 10, 0, 285), + [8316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3276), + [8318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_long_flag, 2, 0, 0), + [8320] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_long_flag, 2, 0, 0), + [8322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_rest, 3, 0, 162), + [8324] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_rest, 3, 0, 162), + [8326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6080), + [8328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), + [8330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4986), + [8332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5068), + [8334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4809), + [8336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5074), + [8338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_type, 4, 0, 177), + [8340] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_type, 4, 0, 177), + [8342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized, 2, 0, 54), + [8344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 160), + [8346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 161), + [8348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 5, 0, 188), + [8350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 5, 0, 189), + [8352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7314), + [8354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5441), + [8356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5945), + [8358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5661), + [8360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized, 3, 0, 0), + [8362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5996), + [8364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5996), + [8366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5586), + [8368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5586), + [8370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6485), + [8372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5886), + [8374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__param_name, 1, 0, 60), + [8376] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__param_name, 1, 0, 60), + [8378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_opt, 2, 0, 115), + [8380] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_opt, 2, 0, 115), + [8382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__param_name, 2, 0, 116), + [8384] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__param_name, 2, 0, 116), + [8386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_rest, 2, 0, 21), + [8388] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_rest, 2, 0, 21), + [8390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__param_name, 1, 0, 61), + [8392] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__param_name, 1, 0, 61), + [8394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_short_flag, 2, 0, 21), + [8396] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_short_flag, 2, 0, 21), + [8398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_repeat1, 1, 0, 0), + [8400] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_parameter_repeat1, 1, 0, 0), + [8402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__param_name, 1, 0, 63), + [8404] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__param_name, 1, 0, 63), + [8406] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5278), + [8409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7350), + [8411] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate_lhs, 3, 0, 31), + [8413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate_lhs, 3, 0, 31), + [8415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3189), + [8417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7517), + [8419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2566), + [8421] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate_lhs, 3, 0, 0), + [8423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate_lhs, 3, 0, 0), + [8425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6960), + [8427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6342), + [8429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2867), + [8431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2799), + [8433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_flag_capsule, 3, 0, 0), + [8435] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_flag_capsule, 3, 0, 0), + [8437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_type, 5, 0, 212), + [8439] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_type, 5, 0, 212), + [8441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6309), + [8443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5713), + [8445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5997), + [8447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_type, 3, 0, 138), + [8449] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_type, 3, 0, 138), + [8451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 218), + [8453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 219), + [8455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 220), + [8457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 221), + [8459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 222), + [8461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 223), + [8463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 6, 0, 224), + [8465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 6, 0, 225), + [8467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5556), + [8469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5570), + [8471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5695), + [8473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6469), + [8475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4598), + [8477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5712), + [8479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5712), + [8481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6125), + [8483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5817), + [8485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ctrl_expression_parenthesized, 1, 0, 1), + [8487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ctrl_expression_parenthesized, 1, 0, 2), + [8489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 4, 0, 124), + [8491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4904), + [8493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5152), + [8495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3145), + [8497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4983), + [8499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5125), + [8501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized, 1, 0, 5), + [8503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ctrl_expression_parenthesized, 1, 0, 0), + [8505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 237), + [8507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 238), + [8509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5919), + [8511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6942), + [8513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6548), + [8515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 239), + [8517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 240), + [8519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 241), + [8521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 242), + [8523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 243), + [8525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 244), + [8527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 7, 0, 245), + [8529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 7, 0, 246), + [8531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized, 1, 0, 20), + [8533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5857), + [8535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6553), + [8537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6121), + [8539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 253), + [8541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 254), + [8543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 255), + [8545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 256), + [8547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 257), + [8549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 258), + [8551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 259), + [8553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 260), + [8555] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 8, 0, 261), + [8557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 9, 0, 270), + [8559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 9, 0, 271), + [8561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 9, 0, 272), + [8563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 9, 0, 273), + [8565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 9, 0, 274), + [8567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 9, 0, 275), + [8569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 10, 0, 282), + [8571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 10, 0, 283), + [8573] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_parameter_repeat2, 1, 0, 0), + [8575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), + [8577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), + [8579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), + [8581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), + [8583] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT(216), + [8586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), + [8588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), + [8590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), + [8592] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT(224), + [8595] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT(226), + [8598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), + [8600] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT(232), + [8603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5030), + [8605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5137), + [8607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7067), + [8609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4968), + [8611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5130), + [8613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), + [8615] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_repeat2, 2, 0, 0), + [8617] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_repeat2, 2, 0, 0), SHIFT_REPEAT(5121), + [8620] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_parameter_repeat2, 2, 0, 0), + [8622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5397), + [8624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7438), + [8626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat1, 2, 0, 0), + [8628] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat1, 2, 0, 0), SHIFT_REPEAT(5259), + [8631] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat1, 2, 0, 0), SHIFT_REPEAT(5209), + [8634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5082), + [8636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_use, 4, 0, 67), + [8638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5259), + [8640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5209), + [8642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2636), + [8644] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_use, 4, 0, 125), + [8646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2641), + [8648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5070), + [8650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7721), + [8652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6202), + [8654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7232), + [8656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6964), + [8658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6341), + [8660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 4, 0, 117), + [8662] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 4, 0, 117), + [8664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5149), + [8666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5250), + [8668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, 0, 62), + [8670] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 3, 0, 62), + [8672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4995), + [8674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5248), + [8676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5511), + [8678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5596), + [8680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5615), + [8682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5132), + [8684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5221), + [8686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, 0, 59), + [8688] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 3, 0, 59), + [8690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6277), + [8692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_use, 5, 0, 125), + [8694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2643), + [8696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5141), + [8698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6083), + [8700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), + [8702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5004), + [8704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5272), + [8706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5148), + [8708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5266), + [8710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_use, 3, 0, 67), + [8712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2631), + [8714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5034), + [8716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5264), + [8718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5396), + [8720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5267), + [8722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5428), + [8724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5683), + [8726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5689), + [8728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5863), + [8730] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(5251), + [8733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6654), + [8735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5683), + [8737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5689), + [8739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5113), + [8741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5425), + [8743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7009), + [8745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5057), + [8747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5424), + [8749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4699), + [8751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4953), + [8753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6425), + [8755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6426), + [8757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6715), + [8759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5342), + [8761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5281), + [8763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2645), + [8765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2794), + [8767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5365), + [8769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5350), + [8771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5598), + [8773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5574), + [8775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5919), + [8777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6942), + [8779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6548), + [8781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5160), + [8783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5566), + [8785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5431), + [8787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5778), + [8789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6480), + [8791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5936), + [8793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1986), + [8795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2309), + [8797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2152), + [8799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1506), + [8801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1656), + [8803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1566), + [8805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), + [8807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), + [8809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4060), + [8811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3968), + [8813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3480), + [8815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3499), + [8817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3492), + [8819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1875), + [8821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2106), + [8823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1984), + [8825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1381), + [8827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1361), + [8829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3514), + [8831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3554), + [8833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3522), + [8835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4468), + [8837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4312), + [8839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3130), + [8841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3211), + [8843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3200), + [8845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1596), + [8847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1548), + [8849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3232), + [8851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3269), + [8853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3242), + [8855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3075), + [8857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3201), + [8859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3171), + [8861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3913), + [8863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4038), + [8865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4000), + [8867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3814), + [8869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3848), + [8871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3825), + [8873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3217), + [8875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3246), + [8877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3233), + [8879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3494), + [8881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3510), + [8883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3498), + [8885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3877), + [8887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3948), + [8889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3914), + [8891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3515), + [8893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3598), + [8895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3529), + [8897] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5397), + [8900] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat1, 2, 0, 0), SHIFT_REPEAT(5342), + [8903] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat1, 2, 0, 0), SHIFT_REPEAT(5281), + [8906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5441), + [8908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5945), + [8910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5661), + [8912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5197), + [8914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5294), + [8916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(424), + [8918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(365), + [8920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7046), + [8922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6379), + [8924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(572), + [8926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(519), + [8928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4624), + [8930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4826), + [8932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6211), + [8934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6225), + [8936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5163), + [8938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5361), + [8940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6202), + [8942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7232), + [8944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6964), + [8946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5276), + [8948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1457), + [8950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1390), + [8952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5123), + [8954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5352), + [8956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6358), + [8958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3076), + [8960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2966), + [8962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1667), + [8964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1610), + [8966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2655), + [8968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2653), + [8970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2659), + [8972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5268), + [8974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5256), + [8976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1658), + [8978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1887), + [8980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1800), + [8982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3824), + [8984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3873), + [8986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3841), + [8988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5275), + [8990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5572), + [8992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5278), + [8994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5433), + [8996] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5396), + [8999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5279), + [9001] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5365), + [9004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5205), + [9006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5445), + [9008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6199), + [9010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4319), + [9012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4112), + [9014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5298), + [9016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5206), + [9018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5487), + [9020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5349), + [9022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5537), + [9024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5363), + [9026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5440), + [9028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6179), + [9030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5346), + [9032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5162), + [9034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1284), + [9036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5430), + [9038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3978), + [9040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3920), + [9042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6247), + [9044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4139), + [9046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4028), + [9048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3936), + [9050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3890), + [9052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6485), + [9054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5886), + [9056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6373), + [9058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2891), + [9060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3101), + [9062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3027), + [9064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4542), + [9066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4792), + [9068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6506), + [9070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6507), + [9072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6385), + [9074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), + [9076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), + [9078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), + [9080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2915), + [9082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2823), + [9084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), + [9086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), + [9088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6125), + [9090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5817), + [9092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6357), + [9094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6288), + [9096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6477), + [9098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6173), + [9100] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 2, 0, 209), SHIFT_REPEAT(7068), + [9103] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 2, 0, 209), SHIFT_REPEAT(6186), + [9106] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 2, 0, 209), SHIFT_REPEAT(5129), + [9109] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 2, 0, 209), SHIFT_REPEAT(7519), + [9112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6146), + [9114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6544), + [9116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5290), + [9118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1287), + [9120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6606), + [9122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6081), + [9124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5420), + [9126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5344), + [9128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5384), + [9130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5370), + [9132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5522), + [9134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1444), + [9136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3943), + [9138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5501), + [9140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1280), + [9142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5543), + [9144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5461), + [9146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 1, 0, 0), + [9148] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_parameter_parens_repeat1, 1, 0, 0), + [9150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6657), + [9152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6660), + [9154] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5279), + [9157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5502), + [9159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1288), + [9161] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_collection_type_repeat1, 4, 0, 248), + [9163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6014), + [9165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5541), + [9167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 4, 0, 248), + [9169] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_collection_type_repeat1, 4, 0, 250), + [9171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6029), + [9173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 4, 0, 250), + [9175] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_collection_type_repeat1, 2, 0, 206), + [9177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6067), + [9179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 2, 0, 206), + [9181] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_collection_type_repeat1, 2, 0, 208), + [9183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6070), + [9185] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 2, 0, 208), + [9187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5960), + [9189] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_collection_type_repeat1, 5, 0, 263), + [9191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5811), + [9193] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 5, 0, 263), + [9195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5525), + [9197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5624), + [9199] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_collection_type_repeat1, 5, 0, 265), + [9201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5812), + [9203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 5, 0, 265), + [9205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5815), + [9207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5819), + [9209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5830), + [9211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5836), + [9213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4601), + [9215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4910), + [9217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6758), + [9219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6773), + [9221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6434), + [9223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6441), + [9225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5841), + [9227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5842), + [9229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5844), + [9231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6514), + [9233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6520), + [9235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6549), + [9237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6566), + [9239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5846), + [9241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5852), + [9243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6597), + [9245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6612), + [9247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6622), + [9249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6438), + [9251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5853), + [9253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6271), + [9255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6575), + [9257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6143), + [9259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6176), + [9261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6461), + [9263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6474), + [9265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6479), + [9267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6542), + [9269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6550), + [9271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6596), + [9273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6092), + [9275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6114), + [9277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6118), + [9279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6123), + [9281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5858), + [9283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5859), + [9285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5470), + [9287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1283), + [9289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5962), + [9291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5973), + [9293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5467), + [9295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5303), + [9297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5616), + [9299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6827), + [9301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6248), + [9303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2583), + [9305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2559), + [9307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7660), + [9309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4549), + [9311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1817), + [9313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4648), + [9315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6270), + [9317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6068), + [9319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6027), + [9321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7670), + [9323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5448), + [9325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5536), + [9327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5980), + [9329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5280), + [9331] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat1, 2, 0, 0), SHIFT_REPEAT(5765), + [9334] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat1, 2, 0, 0), SHIFT_REPEAT(5685), + [9337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6291), + [9339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1308), + [9341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1334), + [9343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7680), + [9345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6307), + [9347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1702), + [9349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1682), + [9351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7689), + [9353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3994), + [9355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5495), + [9357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4728), + [9359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6328), + [9361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2534), + [9363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2502), + [9365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7699), + [9367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4736), + [9369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4739), + [9371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4741), + [9373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3909), + [9375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6333), + [9377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), + [9379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1475), + [9381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7700), + [9383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4748), + [9385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4750), + [9387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4753), + [9389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6343), + [9391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1558), + [9393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1595), + [9395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7702), + [9397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4754), + [9399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6351), + [9401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2871), + [9403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2829), + [9405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7704), + [9407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6363), + [9409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1413), + [9411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1385), + [9413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7707), + [9415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4758), + [9417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6367), + [9419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7196), + [9421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7003), + [9423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7708), + [9425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4759), + [9427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6371), + [9429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2768), + [9431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2780), + [9433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7709), + [9435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4761), + [9437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6374), + [9439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2980), + [9441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2991), + [9443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7710), + [9445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6377), + [9447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), + [9449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(466), + [9451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7711), + [9453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6380), + [9455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), + [9457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(581), + [9459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7712), + [9461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6383), + [9463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2679), + [9465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2741), + [9467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7713), + [9469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6629), + [9471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2885), + [9473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2937), + [9475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7715), + [9477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5362), + [9479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5269), + [9481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6390), + [9483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), + [9485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(141), + [9487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7716), + [9489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6392), + [9491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), + [9493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(514), + [9495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7717), + [9497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6394), + [9499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), + [9501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(395), + [9503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7718), + [9505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6396), + [9507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), + [9509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(366), + [9511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7719), + [9513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4763), + [9515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4767), + [9517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4772), + [9519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4776), + [9521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4782), + [9523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4784), + [9525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4786), + [9527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4787), + [9529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5850), + [9531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5854), + [9533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4788), + [9535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4789), + [9537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4790), + [9539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6172), + [9541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408), + [9543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1389), + [9545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7621), + [9547] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__multiple_types_repeat1, 2, 0, 0), SHIFT_REPEAT(5541), + [9550] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat1, 2, 0, 0), SHIFT_REPEAT(5596), + [9553] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat1, 2, 0, 0), SHIFT_REPEAT(5615), + [9556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1286), + [9558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7303), + [9560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7306), + [9562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5569), + [9564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6072), + [9566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5243), + [9568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5243), + [9570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5343), + [9572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1285), + [9574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4829), + [9576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4829), + [9578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__variable_name, 1, 0, 11), + [9580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5224), + [9582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5224), + [9584] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(5713), + [9587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__variable_name, 1, 0, 9), + [9589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2638), + [9591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5937), + [9593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2444), + [9595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2639), + [9597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2632), + [9599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2763), + [9601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4891), + [9603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4891), + [9605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5069), + [9607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5994), + [9609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5990), + [9611] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat2, 2, 0, 0), SHIFT_REPEAT(5575), + [9614] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat2, 2, 0, 0), SHIFT_REPEAT(5575), + [9617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7011), + [9619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6950), + [9621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), + [9623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5632), + [9625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5035), + [9627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5147), + [9629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4862), + [9631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4979), + [9633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7284), + [9635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7286), + [9637] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat1, 2, 0, 0), SHIFT_REPEAT(5994), + [9640] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat1, 2, 0, 0), SHIFT_REPEAT(5990), + [9643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4582), + [9645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4582), + [9647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1282), + [9649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), + [9651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4985), + [9653] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat1, 1, 0, 0), + [9655] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat1, 1, 0, 0), + [9657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4818), + [9659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4988), + [9661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7546), + [9663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6807), + [9665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5158), + [9667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5158), + [9669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5642), + [9671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5909), + [9673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), + [9675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3945), + [9677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4795), + [9679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4920), + [9681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(104), + [9683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6472), + [9685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7136), + [9687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5763), + [9689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6269), + [9691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2992), + [9693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2962), + [9695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5174), + [9697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1553), + [9699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7734), + [9701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2718), + [9703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6196), + [9705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5991), + [9707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1252), + [9709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5176), + [9711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), + [9713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4703), + [9715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4732), + [9717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), + [9719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5874), + [9721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6466), + [9723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2530), + [9725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4928), + [9727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4928), + [9729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), + [9731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1247), + [9733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5977), + [9735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1782), + [9737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1785), + [9739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2807), + [9741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6824), + [9743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), + [9745] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parenthesized_body, 3, 0, 0), + [9747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2820), + [9749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5633), + [9751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5583), + [9753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4160), + [9755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5902), + [9757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4192), + [9759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5555), + [9761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5437), + [9763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2791), + [9765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2786), + [9767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5885), + [9769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6526), + [9771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), + [9773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), + [9775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5136), + [9777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5153), + [9779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4822), + [9781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4822), + [9783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), + [9785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5273), + [9787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5273), + [9789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), + [9791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5000), + [9793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2118), + [9795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5003), + [9797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1627), + [9799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), + [9801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), + [9803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), + [9805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4879), + [9807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), + [9809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2078), + [9811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3272), + [9813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5948), + [9815] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_register, 2, 0, 27), + [9817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1245), + [9819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5903), + [9821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5979), + [9823] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 2, 0, 72), SHIFT_REPEAT(104), + [9826] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 2, 0, 72), SHIFT_REPEAT(6472), + [9829] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 2, 0, 72), + [9831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_register, 2, 0, 28), + [9833] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parenthesized_body, 2, 0, 0), + [9835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3942), + [9837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2701), + [9839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1973), + [9841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2037), + [9843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5654), + [9845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6180), + [9847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4724), + [9849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2642), + [9851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5884), + [9853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2414), + [9855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2610), + [9857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2614), + [9859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2785), + [9861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4647), + [9863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2713), + [9865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1493), + [9867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_module, 3, 0, 42), + [9869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1513), + [9871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2618), + [9873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6020), + [9875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5277), + [9877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5277), + [9879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4922), + [9881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4922), + [9883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4923), + [9885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4923), + [9887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4924), + [9889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4924), + [9891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5491), + [9893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6978), + [9895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2624), + [9897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_extern, 3, 0, 44), + [9899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4824), + [9901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4824), + [9903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2628), + [9905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5215), + [9907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5215), + [9909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4088), + [9911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4106), + [9913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5958), + [9915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6463), + [9917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4823), + [9919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4823), + [9921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5999), + [9923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1294), + [9925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4467), + [9927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_extern, 4, 0, 88), + [9929] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5360), + [9932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5439), + [9934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5609), + [9936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6249), + [9938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2483), + [9940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_module, 2, 0, 13), + [9942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4483), + [9944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2737), + [9946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2625), + [9948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4661), + [9950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4955), + [9952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2716), + [9954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2658), + [9956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6004), + [9958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2662), + [9960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6019), + [9962] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 2, 0, 0), REDUCE(sym_val_record, 2, 0, 0), + [9965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1902), + [9967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1909), + [9969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2668), + [9971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6064), + [9973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6497), + [9975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2648), + [9977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6504), + [9979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6617), + [9981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6621), + [9983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6079), + [9985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6112), + [9987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6213), + [9989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6231), + [9991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), + [9993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3413), + [9995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5387), + [9997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5953), + [9999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5957), + [10001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5275), + [10003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(101), + [10005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6711), + [10007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2113), + [10009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), + [10011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2147), + [10013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2529), + [10015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6294), + [10017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4716), + [10019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4706), + [10021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4707), + [10023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1367), + [10025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2081), + [10027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 1, 0, 0), + [10029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4645), + [10031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6120), + [10033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2652), + [10035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4751), + [10037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4752), + [10039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2623), + [10041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4755), + [10043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4756), + [10045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6567), + [10047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6953), + [10049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5036), + [10051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5036), + [10053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4460), + [10055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4764), + [10057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4765), + [10059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4482), + [10061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), + [10063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5208), + [10065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5208), + [10067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4930), + [10069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1901), + [10071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3292), + [10073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1908), + [10075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2959), + [10077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2955), + [10079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5255), + [10081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5255), + [10083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4702), + [10085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5894), + [10087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6948), + [10089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4727), + [10091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4994), + [10093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4994), + [10095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1781), + [10097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1784), + [10099] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_default_arm, 3, 0, 199), + [10101] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_arm, 3, 0, 199), + [10103] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 3, 0, 200), + [10105] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 3, 0, 200), + [10107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5762), + [10109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5579), + [10111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2700), + [10113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), + [10115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5554), + [10117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5436), + [10119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6975), + [10121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), + [10123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), + [10125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), + [10127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), + [10129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), + [10131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7132), + [10133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5527), + [10135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6403), + [10137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2667), + [10139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2669), + [10141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2712), + [10143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6536), + [10145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6034), + [10147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6060), + [10149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6071), + [10151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), + [10153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6073), + [10155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1304), + [10157] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5575), + [10160] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5575), + [10163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2482), + [10165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1257), + [10167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6498), + [10169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1298), + [10171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6519), + [10173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1263), + [10175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5113), + [10177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1295), + [10179] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 2, 0, 72), SHIFT_REPEAT(101), + [10182] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 2, 0, 72), SHIFT_REPEAT(6711), + [10185] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 2, 0, 72), + [10187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), + [10189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6598), + [10191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6600), + [10193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5820), + [10195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5821), + [10197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1347), + [10199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1505), + [10201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3903), + [10203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6699), + [10205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3428), + [10207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6442), + [10209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4978), + [10211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5064), + [10213] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_body, 1, 0, 0), + [10215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3921), + [10217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3464), + [10219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6446), + [10221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4303), + [10223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4330), + [10225] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat1, 2, 0, 0), SHIFT_REPEAT(6828), + [10228] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_val_table_repeat1, 2, 0, 150), + [10230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4016), + [10232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3963), + [10234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3937), + [10236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4008), + [10238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3947), + [10240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3949), + [10242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3964), + [10244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4001), + [10246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6828), + [10248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 6, 0, 175), + [10250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4947), + [10252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1823), + [10254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 6, 0, 176), + [10256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), + [10258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1828), + [10260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4343), + [10262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4326), + [10264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5177), + [10266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5181), + [10268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5183), + [10270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5184), + [10272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5187), + [10274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5188), + [10276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5190), + [10278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5191), + [10280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_loop, 2, 0, 12), + [10282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1665), + [10284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3028), + [10286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3465), + [10288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6449), + [10290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2964), + [10292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3466), + [10294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6451), + [10296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_list, 4, 0, 144), + [10298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_list, 4, 0, 181), + [10300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6729), + [10302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7304), + [10304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_list, 4, 0, 182), + [10306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 4, 0, 99), + [10308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5083), + [10310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5083), + [10312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5084), + [10314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5084), + [10316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5092), + [10318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5092), + [10320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1440), + [10322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1479), + [10324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1456), + [10326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1458), + [10328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1463), + [10330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1464), + [10332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1470), + [10334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1447), + [10336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4271), + [10338] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5387), + [10341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1415), + [10343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3469), + [10345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5964), + [10347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2004), + [10349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1410), + [10351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5142), + [10353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_extern, 4, 0, 100), + [10355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3431), + [10357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5966), + [10359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1567), + [10361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5099), + [10363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2822), + [10365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2847), + [10367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2850), + [10369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2857), + [10371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2864), + [10373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2808), + [10375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2816), + [10377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2821), + [10379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5460), + [10381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_list, 2, 0, 0), + [10383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3876), + [10385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1787), + [10387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6151), + [10389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7325), + [10391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_use, 6, 0, 202), + [10393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_use, 6, 0, 203), + [10395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1790), + [10397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 5, 0, 143), + [10399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3927), + [10401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 7, 0, 204), + [10403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4218), + [10405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4229), + [10407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4243), + [10409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4253), + [10411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4274), + [10413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4276), + [10415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4281), + [10417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4285), + [10419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2413), + [10421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2220), + [10423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4076), + [10425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5127), + [10427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4084), + [10429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2727), + [10431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5219), + [10433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5219), + [10435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2006), + [10437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2798), + [10439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2775), + [10441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2767), + [10443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2774), + [10445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2758), + [10447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2760), + [10449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2765), + [10451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2773), + [10453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3860), + [10455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2563), + [10457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1568), + [10459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5684), + [10461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5684), + [10463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2598), + [10465] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat2, 2, 0, 0), SHIFT_REPEAT(7031), + [10468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_list, 5, 0, 181), + [10470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5040), + [10472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5044), + [10474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5046), + [10476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5047), + [10478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5050), + [10480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5051), + [10482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5053), + [10484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5054), + [10486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_list, 5, 0, 214), + [10488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5479), + [10490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5956), + [10492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_list, 5, 0, 182), + [10494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5827), + [10496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__mutable_assignment_pattern, 3, 0, 82), + [10498] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_interpolated, 3, 0, 0), + [10500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_interpolated, 3, 0, 0), + [10502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3456), + [10504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4649), + [10506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2730), + [10508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3457), + [10510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4654), + [10512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5038), + [10514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5008), + [10516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5010), + [10518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5011), + [10520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5014), + [10522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5015), + [10524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5017), + [10526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5018), + [10528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3458), + [10530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4657), + [10532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1460), + [10534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1317), + [10536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1810), + [10538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1330), + [10540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3897), + [10542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3459), + [10544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4659), + [10546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(452), + [10548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(484), + [10550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(495), + [10552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(497), + [10554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(442), + [10556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(500), + [10558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(453), + [10560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(454), + [10562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_new, 3, 0, 69), + [10564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6074), + [10566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1636), + [10568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1644), + [10570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3437), + [10572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5952), + [10574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1816), + [10576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(413), + [10578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(417), + [10580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(419), + [10582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(420), + [10584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(423), + [10586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(425), + [10588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(428), + [10590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(437), + [10592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5986), + [10594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2750), + [10596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3178), + [10598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_source, 2, 0, 25), + [10600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3192), + [10602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6003), + [10604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5353), + [10606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2536), + [10608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_source, 2, 0, 26), + [10610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2543), + [10612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6006), + [10614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1310), + [10616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1435), + [10618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6008), + [10620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1438), + [10622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1183), + [10624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5288), + [10626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3070), + [10628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6024), + [10630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3081), + [10632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3445), + [10634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5856), + [10636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2607), + [10638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1560), + [10640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1564), + [10642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3446), + [10644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5860), + [10646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(381), + [10648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5410), + [10650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5422), + [10652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3905), + [10654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2873), + [10656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2875), + [10658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6041), + [10660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2590), + [10662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5199), + [10664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5201), + [10666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3447), + [10668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5864), + [10670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2845), + [10672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(731), + [10674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(734), + [10676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6048), + [10678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5056), + [10680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1392), + [10682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1409), + [10684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6065), + [10686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5019), + [10688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7209), + [10690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6649), + [10692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3448), + [10694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5872), + [10696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(137), + [10698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2753), + [10700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2789), + [10702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2800), + [10704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3033), + [10706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2953), + [10708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(356), + [10710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(461), + [10712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(463), + [10714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(443), + [10716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(554), + [10718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(596), + [10720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(336), + [10722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2680), + [10724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2682), + [10726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(402), + [10728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(664), + [10730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(666), + [10732] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list_with_expr, 4, 0, 0), + [10734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list_with_expr, 4, 0, 0), + [10736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2889), + [10738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(143), + [10740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(145), + [10742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(545), + [10744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(550), + [10746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(406), + [10748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(408), + [10750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(376), + [10752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(380), + [10754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5453), + [10756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5526), + [10758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3803), + [10760] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hide_env, 2, 0, 30), + [10762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1168), + [10764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3400), + [10766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_list, 2, 0, 0), + [10768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_alias, 5, 0, 135), + [10770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2007), + [10772] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list_with_expr, 3, 0, 0), + [10774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list_with_expr, 3, 0, 0), + [10776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1153), + [10778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5532), + [10780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1570), + [10782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6703), + [10784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5922), + [10786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5922), + [10788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 5, 0, 136), + [10790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body_statement, 1, 0, 0), + [10792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_use, 7, 0, 229), + [10794] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list_with_expr, 3, 0, 104), + [10796] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list_with_expr, 3, 0, 104), + [10798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration, 1, 0, 0), + [10800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement, 1, 0, 0), + [10802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 1, 0, 4), + [10804] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ctrl_statement, 1, 0, 0), + [10806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_list, 3, 0, 144), + [10808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1268), + [10810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6646), + [10812] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__stmt_hide, 1, 0, 0), + [10814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__stmt_overlay, 1, 0, 0), + [10816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1196), + [10818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1190), + [10820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parenthesized_body, 4, 0, 0), + [10822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1619), + [10824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1238), + [10826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2011), + [10828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_list, 6, 0, 214), + [10830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1428), + [10832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3454), + [10834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4612), + [10836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_const, 3, 0, 41), + [10838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3455), + [10840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4613), + [10842] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 1, 0, 0), + [10844] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 1, 0, 0), + [10846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2012), + [10848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1432), + [10850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3443), + [10852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5955), + [10854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3460), + [10856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4737), + [10858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2074), + [10860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3461), + [10862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4738), + [10864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5442), + [10866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5517), + [10868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6938), + [10870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2612), + [10872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2617), + [10874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5564), + [10876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1514), + [10878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1529), + [10880] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_extern, 5, 0, 137), + [10882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1546), + [10884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_module, 3, 0, 45), + [10886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1259), + [10888] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_wild_card, 1, 0, 0), + [10890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scope_pattern, 1, 0, 46), + [10892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1547), + [10894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1482), + [10896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1485), + [10898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_use, 3, 0, 47), + [10900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1487), + [10902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scope_pattern, 1, 0, 48), + [10904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scope_pattern, 1, 0, 49), + [10906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1488), + [10908] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 5, 0, 159), + [10910] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__str_double_quotes_repeat1, 2, 0, 0), + [10912] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__str_double_quotes_repeat1, 2, 0, 0), SHIFT_REPEAT(6699), + [10915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1155), + [10917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), + [10919] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 1, 0, 34), + [10921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 1, 0, 34), + [10923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1265), + [10925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1321), + [10927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5573), + [10929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7041), + [10931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1271), + [10933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3798), + [10935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3938), + [10937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5454), + [10939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment_pattern, 4, 0, 140), + [10941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_hide, 3, 0, 68), + [10943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_error, 3, 0, 55), + [10945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3976), + [10947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_let, 2, 0, 10), + [10949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3467), + [10951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6523), + [10953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_while, 3, 0, 56), + [10955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2015), + [10957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4082), + [10959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_error, 4, 0, 109), + [10961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3462), + [10963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6232), + [10965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4064), + [10967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3463), + [10969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6244), + [10971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4085), + [10973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1557), + [10975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1587), + [10977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1626), + [10979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4087), + [10981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4099), + [10983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4065), + [10985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4043), + [10987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4045), + [10989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3468), + [10991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6535), + [10993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6955), + [10995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_mut, 2, 0, 10), + [10997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_const, 2, 0, 10), + [10999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1377), + [11001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2647), + [11003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1979), + [11005] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_module, 4, 0, 89), + [11007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_export, 2, 0, 12), + [11009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1571), + [11011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_use, 4, 0, 90), + [11013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2615), + [11015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1184), + [11017] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list_with_expr, 4, 0, 104), + [11019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list_with_expr, 4, 0, 104), + [11021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_alias, 4, 0, 91), + [11023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment_pattern, 3, 0, 92), + [11025] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_use, 5, 0, 166), + [11027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2687), + [11029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2714), + [11031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2739), + [11033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2740), + [11035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2686), + [11037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2689), + [11039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2708), + [11041] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_register, 3, 0, 64), + [11043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2709), + [11045] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_register, 3, 0, 65), + [11047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hide_mod, 3, 0, 29), + [11049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hide_env, 3, 0, 66), + [11051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2886), + [11053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4769), + [11055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1515), + [11057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1519), + [11059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1524), + [11061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1541), + [11063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1516), + [11065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1481), + [11067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4783), + [11069] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(1367), + [11072] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_pattern_repeat1, 2, 0, 0), + [11074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1486), + [11076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4785), + [11078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1270), + [11080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2952), + [11082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6806), + [11084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3013), + [11086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4102), + [11088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4027), + [11090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4022), + [11092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4025), + [11094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4078), + [11096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4089), + [11098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4093), + [11100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4026), + [11102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2683), + [11104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4974), + [11106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4480), + [11108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7641), + [11110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7259), + [11112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4544), + [11114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2751), + [11116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2672), + [11118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2696), + [11120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2704), + [11122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2738), + [11124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2744), + [11126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2684), + [11128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2693), + [11130] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__str_double_quotes_repeat1, 1, 0, 0), + [11132] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__str_double_quotes_repeat1, 1, 0, 0), + [11134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern, 1, 0, 0), + [11136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6694), + [11138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4640), + [11140] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 1, 0, 0), + [11142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 1, 0, 0), + [11144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4596), + [11146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3941), + [11148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4017), + [11150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3939), + [11152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3944), + [11154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3966), + [11156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4009), + [11158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4010), + [11160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3957), + [11162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3397), + [11164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7268), + [11166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern, 1, 0, 31), + [11168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1756), + [11170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4896), + [11172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1758), + [11174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5175), + [11176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5178), + [11178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5179), + [11180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5180), + [11182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5182), + [11184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5185), + [11186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5186), + [11188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5189), + [11190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2030), + [11192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7566), + [11194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3129), + [11196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3193), + [11198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1437), + [11200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1441), + [11202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1442), + [11204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1443), + [11206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1450), + [11208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1459), + [11210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1462), + [11212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6013), + [11214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1466), + [11216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2041), + [11218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3071), + [11220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6022), + [11222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1618), + [11224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3092), + [11226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6984), + [11228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2819), + [11230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2825), + [11232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2830), + [11234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2839), + [11236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2849), + [11238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2860), + [11240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2862), + [11242] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 1, 0, 34), + [11244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 1, 0, 34), + [11246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2811), + [11248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_val_binary_repeat1, 1, 0, 70), + [11250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7346), + [11252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5793), + [11254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2013), + [11256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5757), + [11258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4191), + [11260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4219), + [11262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4220), + [11264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4223), + [11266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4234), + [11268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4255), + [11270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4256), + [11272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4277), + [11274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6432), + [11276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6884), + [11278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5512), + [11280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5560), + [11282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5443), + [11284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1624), + [11286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2782), + [11288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1625), + [11290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1552), + [11292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2801), + [11294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2802), + [11296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2754), + [11298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2764), + [11300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2783), + [11302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2755), + [11304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2501), + [11306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2761), + [11308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), + [11310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), + [11312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5151), + [11314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7649), + [11316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5041), + [11318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5042), + [11320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5043), + [11322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5045), + [11324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__mutable_assignment_pattern_parenthesized, 3, 0, 82), + [11326] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__all_type, 1, 0, 95), + [11328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__all_type, 1, 0, 95), + [11330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5048), + [11332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5049), + [11334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5052), + [11336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7377), + [11338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4032), + [11340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), + [11342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), + [11344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5002), + [11346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5005), + [11348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5006), + [11350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5007), + [11352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5009), + [11354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5012), + [11356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5013), + [11358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4577), + [11360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4584), + [11362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5016), + [11364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6254), + [11366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(499), + [11368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1586), + [11370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(469), + [11372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(470), + [11374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(483), + [11376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7037), + [11378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(487), + [11380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1593), + [11382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(440), + [11384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(441), + [11386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1550), + [11388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5706), + [11390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(451), + [11392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5813), + [11394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7061), + [11396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2005), + [11398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7673), + [11400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(411), + [11402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5816), + [11404] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 1, 0, 19), + [11406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(414), + [11408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(415), + [11410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(416), + [11412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(418), + [11414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(421), + [11416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(422), + [11418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(426), + [11420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6150), + [11422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6152), + [11424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5828), + [11426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5482), + [11428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5490), + [11430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5831), + [11432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5540), + [11434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5963), + [11436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1980), + [11438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1981), + [11440] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_val_table_repeat1, 2, 0, 151), SHIFT_REPEAT(859), + [11443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1982), + [11445] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 3, 0, 105), + [11447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_alias_parenthesized, 4, 0, 91), + [11449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment_pattern_parenthesized, 3, 0, 92), + [11451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1569), + [11453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1254), + [11455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7369), + [11457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5843), + [11459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5845), + [11461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6582), + [11463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6611), + [11465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5741), + [11467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6090), + [11469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6144), + [11471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4614), + [11473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6437), + [11475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6465), + [11477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6266), + [11479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1969), + [11481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6546), + [11483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5568), + [11485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6581), + [11487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5510), + [11489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5500), + [11491] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 3, 0, 105), + [11493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_const_parenthesized, 3, 0, 41), + [11495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2008), + [11497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5774), + [11499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2009), + [11501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_alias_parenthesized, 5, 0, 135), + [11503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7274), + [11505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7275), + [11507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4059), + [11509] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 2, 0, 51), + [11511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5569), + [11513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7267), + [11515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1249), + [11517] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 2, 0, 52), + [11519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5705), + [11521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment_pattern_parenthesized, 4, 0, 140), + [11523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body_statement_parenthesized, 1, 0, 0), + [11525] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 2, 0, 51), + [11527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1273), + [11529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5593), + [11531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5668), + [11533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6766), + [11535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1831), + [11537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5530), + [11539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_parenthesized, 1, 0, 0), + [11541] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 2, 0, 52), + [11543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1852), + [11545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3433), + [11547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5976), + [11549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3434), + [11551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5680), + [11553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_let_parenthesized, 2, 0, 10), + [11555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5687), + [11557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5987), + [11559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5993), + [11561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5728), + [11563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_mut_parenthesized, 2, 0, 10), + [11565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5995), + [11567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5734), + [11569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5755), + [11571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5761), + [11573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6005), + [11575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5782), + [11577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6010), + [11579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5788), + [11581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_const_parenthesized, 2, 0, 10), + [11583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6012), + [11585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5703), + [11587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5580), + [11589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement_parenthesized, 1, 0, 0), + [11591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6047), + [11593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5592), + [11595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5597), + [11597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_parenthesized, 1, 0, 4), + [11599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5608), + [11601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5614), + [11603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5625), + [11605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5630), + [11607] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 2, 0, 0), + [11609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5640), + [11611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5643), + [11613] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(7259), + [11616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5650), + [11618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2481), + [11620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5652), + [11622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5657), + [11624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5659), + [11626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4747), + [11628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5665), + [11630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5667), + [11632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5671), + [11634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5673), + [11636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4749), + [11638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5675), + [11640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5677), + [11642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_val_binary_repeat1, 2, 0, 129), + [11644] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_val_binary_repeat1, 2, 0, 129), SHIFT_REPEAT(6806), + [11647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4565), + [11649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4760), + [11651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4762), + [11653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4726), + [11655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4766), + [11657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1511), + [11659] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__one_type, 3, 0, 180), + [11661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__one_type, 3, 0, 180), + [11663] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__unquoted_in_list_with_expr_repeat1, 2, 0, 0), SHIFT_REPEAT(7287), + [11666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1847), + [11668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1580), + [11670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1581), + [11672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(589), + [11674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(590), + [11676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1653), + [11678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4384), + [11680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4374), + [11682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1663), + [11684] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__unquoted_in_record_with_expr_repeat1, 2, 0, 0), SHIFT_REPEAT(7217), + [11687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4504), + [11689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4505), + [11691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1583), + [11693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), + [11695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7541), + [11697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1584), + [11699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6388), + [11701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5520), + [11703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6407), + [11705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6586), + [11707] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__flags_parenthesized, 2, 0, 0), + [11709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__flags_parenthesized, 2, 0, 0), + [11711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1291), + [11713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6421), + [11715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4832), + [11717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7724), + [11719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1843), + [11721] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_entry, 1, 0, 18), + [11723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_entry, 1, 0, 18), + [11725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6418), + [11727] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__unquoted_with_expr_repeat1, 2, 0, 0), SHIFT_REPEAT(7226), + [11730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1673), + [11732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4509), + [11734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4511), + [11736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2256), + [11738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2257), + [11740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1678), + [11742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4286), + [11744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4288), + [11746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4225), + [11748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4291), + [11750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(553), + [11752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(526), + [11754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6228), + [11756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(527), + [11758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(528), + [11760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7513), + [11762] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_env_var, 2, 0, 35), + [11764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_env_var, 2, 0, 35), + [11766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1844), + [11768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6467), + [11770] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat1, 1, 0, 0), + [11772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat1, 1, 0, 0), + [11774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4363), + [11776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4364), + [11778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_val_binary_repeat1, 2, 0, 127), + [11780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2268), + [11782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2269), + [11784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(586), + [11786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(588), + [11788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1846), + [11790] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_default_arm, 3, 10, 199), + [11792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_arm, 3, 10, 199), + [11794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1301), + [11796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6245), + [11798] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 3, 10, 200), + [11800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 3, 10, 200), + [11802] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_entry, 1, 0, 17), + [11804] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_entry, 1, 0, 17), + [11806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multiple_types, 3, 0, 94), + [11808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), + [11810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), + [11812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6011), + [11814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), + [11816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4757), + [11818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3896), + [11820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), + [11822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4831), + [11824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7484), + [11826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5494), + [11828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_returns, 1, 0, 98), + [11830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5060), + [11832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), + [11834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), + [11836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4412), + [11838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7335), + [11840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1399), + [11842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1424), + [11844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4722), + [11846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4262), + [11848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2621), + [11850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), + [11852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5475), + [11854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2077), + [11856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5625), + [11858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6635), + [11860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), + [11862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1791), + [11864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5797), + [11866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4235), + [11868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6882), + [11870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), + [11872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), + [11874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3435), + [11876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5630), + [11878] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__unquoted_with_expr_repeat1, 2, 0, 0), + [11880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5692), + [11882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6440), + [11884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2776), + [11886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3125), + [11888] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_rest, 3, 0, 0), + [11890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2749), + [11892] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multiple_types, 6, 0, 235), + [11894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4403), + [11896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5544), + [11898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2950), + [11900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4435), + [11902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3163), + [11904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), + [11906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), + [11908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6743), + [11910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), + [11912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2525), + [11914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3022), + [11916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1436), + [11918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5514), + [11920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5055), + [11922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), + [11924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), + [11926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), + [11928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3969), + [11930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), + [11932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7653), + [11934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4662), + [11936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2469), + [11938] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__unquoted_in_record_with_expr_repeat1, 2, 0, 0), + [11940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), + [11942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7535), + [11944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5893), + [11946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1372), + [11948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2681), + [11950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4077), + [11952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1827), + [11954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5167), + [11956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4018), + [11958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4232), + [11960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2562), + [11962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5617), + [11964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), + [11966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4977), + [11968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2142), + [11970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4400), + [11972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), + [11974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4024), + [11976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), + [11978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2603), + [11980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), + [11982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), + [11984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), + [11986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2722), + [11988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), + [11990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4800), + [11992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3291), + [11994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), + [11996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2898), + [11998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), + [12000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5551), + [12002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1839), + [12004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1841), + [12006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7067), + [12008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1651), + [12010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5593), + [12012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), + [12014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2888), + [12016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4528), + [12018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), + [12020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7197), + [12022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1832), + [12024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), + [12026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4835), + [12028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5565), + [12030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2016), + [12032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7425), + [12034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), + [12036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7447), + [12038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3073), + [12040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3189), + [12042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), + [12044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), + [12046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4335), + [12048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5497), + [12050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2453), + [12052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1855), + [12054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1824), + [12056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), + [12058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4054), + [12060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2728), + [12062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3985), + [12064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5499), + [12066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7735), + [12068] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__record_key, 2, 0, 0), + [12070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1346), + [12072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1755), + [12074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5173), + [12076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7650), + [12078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1525), + [12080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(293), + [12082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4096), + [12084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3415), + [12086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6644), + [12088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2565), + [12090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7470), + [12092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), + [12094] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multiple_types, 5, 0, 139), + [12096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5110), + [12098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), + [12100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1631), + [12102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), + [12104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), + [12106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multiple_types, 5, 0, 235), + [12108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4055), + [12110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7483), + [12112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2685), + [12114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5708), + [12116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1561), + [12118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3908), + [12120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3151), + [12122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), + [12124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4731), + [12126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5875), + [12128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7574), + [12130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4030), + [12132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6276), + [12134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4701), + [12136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multiple_types, 5, 0, 213), + [12138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4743), + [12140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4098), + [12142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2172), + [12144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4470), + [12146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5549), + [12148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7532), + [12150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4404), + [12152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2736), + [12154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2397), + [12156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_returns, 2, 0, 94), + [12158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3961), + [12160] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multiple_types, 2, 0, 0), + [12162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5504), + [12164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7682), + [12166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4693), + [12168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5668), + [12170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1161), + [12172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5809), + [12174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4999), + [12176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), + [12178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), + [12180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4097), + [12182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1724), + [12184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7381), + [12186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4615), + [12188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2732), + [12190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1687), + [12192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2547), + [12194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4304), + [12196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2626), + [12198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5965), + [12200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5072), + [12202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7770), + [12204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5411), + [12206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3845), + [12208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6961), + [12210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4573), + [12212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), + [12214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(297), + [12216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3438), + [12218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6453), + [12220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multiple_types, 4, 0, 94), + [12222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7466), + [12224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multiple_types, 4, 0, 139), + [12226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3925), + [12228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2136), + [12230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1630), + [12232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1714), + [12234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), + [12236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3001), + [12238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3003), + [12240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4015), + [12242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1196), + [12244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2874), + [12246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7554), + [12248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), + [12250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2538), + [12252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6722), + [12254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), + [12256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), + [12258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7615), + [12260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7428), + [12262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multiple_types, 4, 0, 213), + [12264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2863), + [12266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6256), + [12268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3023), + [12270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6748), + [12272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6167), + [12274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7667), + [12276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), + [12278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2994), + [12280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7775), + [12282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4876), + [12284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), + [12286] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__unquoted_in_list_with_expr_repeat1, 2, 0, 0), + [12288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7723), + [12290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5172), + [12292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1309), + [12294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5730), + [12296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1426), + [12298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2644), + [12300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5200), + [12302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6746), + [12304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4742), + [12306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7424), + [12308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7663), + [12310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7444), + [12312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7520), + [12314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7573), + [12316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7636), + [12318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7659), + [12320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7695), + [12322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7385), + [12324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7400), + [12326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7410), + [12328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7423), + [12330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7433), + [12332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7441), + [12334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7449), + [12336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7465), + [12338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7480), + [12340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7506), + [12342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7512), + [12344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7518), + [12346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7524), + [12348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7533), + [12350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2121), + [12352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2023), + [12354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1632), + [12356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4805), + [12358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), + [12360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5697), + [12362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3970), + [12364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2139), + [12366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3971), + [12368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2146), + [12370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1166), + [12372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2449), + [12374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1429), + [12376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3065), + [12378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_guard, 2, 0, 0), + [12380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nu_script, 2, 0, 0), + [12382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1495), + [12384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), + [12386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5518), + [12388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3892), + [12390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4639), + [12392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4796), + [12394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1542), + [12396] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [12398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), + [12400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2100), + [12402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3952), + [12404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1814), + [12406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4537), + [12408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2988), + [12410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), + [12412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5790), + [12414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2141), + [12416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7366), + [12418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4056), + [12420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5578), + [12422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7733), + [12424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1718), + [12426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1719), + [12428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1603), + [12430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), + [12432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4421), + [12434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1788), + [12436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4768), + [12438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1857), + [12440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comment, 2, 0, 0), }; enum ts_external_scanner_symbol_identifiers { diff --git a/test/corpus/ctrl/do.nu b/test/corpus/ctrl/do.nu index a0e45d8..9e94393 100644 --- a/test/corpus/ctrl/do.nu +++ b/test/corpus/ctrl/do.nu @@ -114,6 +114,13 @@ unquoted; # string another_pipeline )' +( + do {|foo, bar| + $foo} + foo +bar +) + ----- (nu_script @@ -158,7 +165,25 @@ another_pipeline (pipeline (pipe_element (command - (cmd_identifier))))))))) + (cmd_identifier)))))))) + (pipeline + (pipe_element + (expr_parenthesized + (pipeline + (pipe_element + (ctrl_do + (val_closure + (parameter_pipes + (parameter + (identifier)) + (parameter + (identifier))) + (pipeline + (pipe_element + (val_variable + (identifier))))) + (val_string) + (val_string)))))))) ===== do-005-parenthesized-no-arguments